{"info":{"_postman_id":"9b9024b9-7b7d-476b-a715-2a8e583b99cc","name":"Platform API Documentation","description":"<html><head></head><body><img src=\"https://img.shields.io/badge/version-1.8-lightgrey.svg\" alt=\"Platform API Version\">\n\n<h1 id=\"1-overview\">1. Overview</h1>\n<p>This RESTful API empowers customers and partners to build custom applications that interact with Snap Finance.</p>\n<p>The reference documentation does not cover all scenarios or roles. Permission and client data will differ based on modules and integrations that interact with Snap Finance. Mock examples complete with requests, responses, and parameters are provided for general understanding. For advance assistance contact <a href=\"https://mailto:devsupport@snapfinance.com\">devsupport@snapfinance.com</a></p>\n<hr>\n<h1 id=\"2-authentication\">2. Authentication</h1>\n<p>Send a secure request to get an authorization token.</p>\n<p>Every REST API endpoint you access requires you to supply an access token in the header of your request to verify that you are an authorized user.</p>\n<p>Authorization involves the following three steps:</p>\n<ul>\n<li>Generate a client secret based on your client ID.</li>\n<li>Use the secret to get an access token.</li>\n<li>Include the access token in all API requests.</li>\n</ul>\n<hr>\n<h1 id=\"3-product-experiences\">3. Product Experiences</h1>\n<p>Customer personal identifying information (PII) information, bank information, income information, and purchase information are required for Snap Finance to make an approval decision on a lease application. Snap provides two product experiences depending on how the merchant gathers this information from the customer. After approval, customers must accept the Snap lease agreement. These agreements can be generated only after approval of the application.</p>\n<p><strong>(1) Snap Pre-qualification Application</strong></p>\n<p>Pre-qualification is an estimate of the amount a customer may be approved for. Customers can pre-qualify for a Snap Finance lease by providing only their PII. To formally apply for a lease and potentially be approved, they must also provide their bank and income information.</p>\n<p>The customer must be approved for a Snap Finance lease before the lease agreement will be generated and they can sign. At first the application will be created with the Create Application API call and the application will be in PREQUALIFIED status. This application then can be updated and moved to APPROVED status by using an updated application API call and providing bank and income information.</p>\n<p>There is a possibility that customers may be denied after they provide their bank and income information.</p>\n<p><strong>(2) Snap Full Application</strong></p>\n<p>If the merchant collects all the information before sending the application for decisioning, a full and final approval can be obtained just by calling the Create Application API.</p>\n<h1 id=\"4-response-messages\">4. Response Messages</h1>\n<p>Snap uses conventional HTTP response codes to indicate the success or failure of an API request. In general, codes in the 2xx range indicate success. Codes in the 4xx range indicate an error with the information provided (e.g., a required parameter was omitted, a charge failed, etc.). Codes in the 5xx range indicate an error with Snap's servers.</p>\n<h2 id=\"41-http-response-status-codes\">4.1 HTTP Response Status Codes</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>200 - OK</strong></td>\n<td>Everything worked as expected</td>\n</tr>\n<tr>\n<td><strong>400 - Bad Request</strong></td>\n<td>The request was unacceptable, often due to missing a required parameter or to an invalid parameter.</td>\n</tr>\n<tr>\n<td><strong>401 - Unauthorized</strong></td>\n<td>Invalid token provided.</td>\n</tr>\n<tr>\n<td><strong>402 - Request Failed</strong></td>\n<td>The parameters were valid, but the request failed.</td>\n</tr>\n<tr>\n<td><strong>403 - Forbidden</strong></td>\n<td>The provided token does not have permissions to perform the request.</td>\n</tr>\n<tr>\n<td><strong>404 - Not Found</strong></td>\n<td>The requested resource does not exist.</td>\n</tr>\n<tr>\n<td><strong>500, 504 - Server Errors</strong></td>\n<td>Something went wrong on Snap's end.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"42-error-response-types\">4.2 Error Response Types</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>api_error</strong></td>\n<td>Errors that occur in our servers (rare occurrences).</td>\n</tr>\n<tr>\n<td><strong>authentication_error</strong></td>\n<td>Failure during the authentication process.</td>\n</tr>\n<tr>\n<td><strong>authorization_error</strong></td>\n<td>Authorization errors occur when a token is reused on a request that does not match the first request API endpoint and parameters.</td>\n</tr>\n<tr>\n<td><strong>invalid_request_error</strong></td>\n<td>Invalid request errors arise when your request has invalid parameters.</td>\n</tr>\n<tr>\n<td><strong>validation_error</strong></td>\n<td>Errors triggered by our client-side libraries when failing to validate fields (e.g., when a card number or expiration date is invalid or incomplete).</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"5-idempotency-request\">5. Idempotency Request</h1>\n<p>For an operation to be idempotent, clients can make the same call many times while producing the same result. In other words, making multiple identical requests has the same effect as making a single request.</p>\n<p>To perform an idempotent request, provide an additional Idempotency-Key: header to the request. An idempotency key is a unique value generated by the client which the server uses to recognize subsequent retries of the same request.</p>\n<p>The way to create the keys is up to you, however we suggest that they be random keys that do not repeat themselves. For this it is recommended to use a Version 4 UUID that is a universally unique identifier that is generated using random numbers.</p>\n<p>The idempotency used by Snap works by saving the resulting status code and the body of the first request to create an application for any given idempotency key, regardless of whether it was successful or not. Subsequent requests using the same key in the header will get the response that was generated in the first instance.</p>\n<p>Using the idempotency key is possible to retry requests without accidentally performing the same operation twice and duplicate the applications. You can retry the request with the same idempotency key to ensure that no more than one application is created.</p>\n<p>Keys expire 24 hours after they are created, after that period of time they are removed from the system, therefore, if a request is sent with an expired key, it will be processed as a new request.</p>\n<p>Only POST requests to create applications accept idempotency. Sending idempotency keys in other requests will have no effect.</p>\n<h1 id=\"6-response-objects\">6. Response Objects</h1>\n<h2 id=\"61-success-object\">6.1 Success Object</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"success\": true,\n  \"data\": {...},\n  \"status\": 200\n}\n\n</code></pre><blockquote>\n<p>The <code>data</code> property is a JSON object which has the response from the endpoint. </p>\n</blockquote>\n<h2 id=\"62-failure-object\">6.2 Failure Object</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"success\": false,\n  \"error\": [\n      {...}\n  ],\n  \"status\": xxx\n}\n\n</code></pre><blockquote>\n<p>The <code>error</code> property is a JSON array with all errors. See details in section <strong>4.3 Error Object</strong>. </p>\n</blockquote>\n<h2 id=\"63-error-object\">6.3 Error Object</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"type\":\"\",\n  \"code\":\"\",\n  \"message\":\"\"\n}\n\n</code></pre><blockquote>\n<p><strong>type</strong> <em>String</em> </p>\n</blockquote>\n<blockquote>\n<p><strong>code</strong> <em>String</em> </p>\n</blockquote>\n<blockquote>\n<p><strong>message</strong> <em>String</em> </p>\n</blockquote>\n<h1 id=\"7-errors\">7. Errors</h1>\n<p>List of error codes and messages used by the APIs:</p>\n<ul>\n<li><blockquote>\n<p><strong>account_activity</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>application_canceled</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>application_denied</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>agreement_not_found</strong> - <em>(api_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>customer_not_found</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>routing_number_not_found</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>application_not_found</strong> - <em>(invalid_request_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>city_missing</strong> - <em>(invalid_request_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>city_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>drivers_license_state_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>email_address_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>language_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>merchant_not_found</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>order_id_missing</strong> - <em>(invalid_request_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>invalid_state</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>Ssn_missing</strong> - <em>(invalid_request_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>invalid_ssn</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>total_amt_missing</strong> - <em>(invalid_request_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>pay_day_missing</strong> - <em>(invalid_request_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>phone_number_missing</strong> - <em>(invalid_request_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>phone_number_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>rent_or_own_missing</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>state_missing</strong> - <em>(invalid_request_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>unauthorized_call</strong> - <em>(authorization_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>years_at_residence_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>zip_code_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>application_status_rule</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>bank_name_missing</strong> - <em>(invalid_request_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>bank_city_missing</strong> - <em>(invalid_request_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>bank_city_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>bank_state_missing</strong> - <em>(invalid_request_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>bank_direct_deposit_missing</strong> - <em>(invalid_request_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>customer_income_type_missing</strong> - <em>(invalid_request_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>employer_name_missing</strong> - <em>(invalid_request_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>position_held_missing</strong> - <em>(invalid_request_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>startdate_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>bank_routing_number_missing</strong> - <em>(invalid_request_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>bank_routing_number_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>checking_account_number_missing</strong> - <em>(invalid_request_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>checking_account_number_minimum_characters_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>Date_of_birth_missing</strong> - <em>(invalid_request_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>Date_of_birth_incorrect_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>driver_license_missing</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>driver_license_special_characters_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>email_address_missing</strong> - <em>(invalid_request_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>email_address_format_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>first_name_minimum_characters_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>last_name_missing</strong> - <em>(invalid_request_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>last_name_minimum_characters_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>mobile_phone_missing</strong> - <em>(invalid_request_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>mobile_phone_minimum_characters_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>street_address_missing</strong> - <em>(invalid_request_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>street_address_minimum_characters_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>verification_code_missing</strong> - <em>(invalid_request_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>verification_code_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>zip_code_missing</strong> - <em>(invalid_request_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>address_not_found</strong> - <em>(invalid_request_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>address_missing</strong> - <em>(invalid_request_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>ssn_format_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>email_invalid</strong> - <em>(invalid_request_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>email_not_validated</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>nextPaymentDate_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>lastPaymentDate_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>payDateInput_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>payDateMonthly_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>payDate_SM_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>secondPayDateAfter_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>secondPayDate_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>secondPayDateInput_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>customerInformation_missing</strong> - <em>(invalid_request_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>customerInformation_customerIdType_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>customerInformation_customerIdType_missing</strong> - <em>(invalid_request_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>customerInformation_customerId_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>customerInformation_customerId_missing</strong> - <em>(invalid_request_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>customerInformation_mobilePhoneCountry_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>customerInformation_mobilePhoneCountry_missing</strong> - <em>(invalid_request_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>customerInformation_suffix_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>customerInformation_suffix_missing</strong> - <em>(invalid_request_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>customerInformation_billingAddress_missing</strong> - <em>(invalid_request_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>customerInformation_billingAddress_streetAddress_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>customerInformation_billingAddress_state_missing</strong> - <em>(invalid_request_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>customerInformation_billingAddress_country_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>customerInformation_billingAddress_country_missing</strong> - <em>(invalid_request_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>customerInformation_billingAddress_postalCode_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>customerInformation_billingAddress_postalCode_missing</strong> - <em>(invalid_request_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>customerInformation_rentOwn_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>customerInformation_timeAddressYears_missing</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>customerInformation_timeAddressMonths_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>customerInformation_timeAddressMonths_missing</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>customerInformation_phoneOptIn_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>customerInformation_phoneOptIn_missing</strong> - <em>(invalid_request_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>customerInformation_driversLicenseState_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>cartInformation_missing</strong> - <em>(invalid_request_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>cartInformation_currencyCode_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>cartInformation_currencyCode_missing</strong> - <em>(invalid_request_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>cartInformation_totalAmount_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>cartInformation_totalAmount_minimum_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>cartInformation_total_amount_calculation_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>cartInformation_taxAmount_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>cartInformation_taxAmount_minimum_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>cartInformation_discountAmount_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>cartInformation_discountAmount_minimum_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>cartInformation_shippingAmount_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>cartInformation_shippingAmount_minimum_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>cartInformation_orderId_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>cartInformation_items_missing</strong> - <em>(invalid_request_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>cartInformation_items_price_missing</strong> - <em>(invalid_request_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>cartInformation_items_price_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>cartInformation_items_price_minimum_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>cartInformation_items_itemId_missing</strong> - <em>(invalid_request_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>cartInformation_items_itemId_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>cartInformation_items_description_missing</strong> - <em>(invalid_request_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>cartInformation_items_description_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>cartInformation_items_sku_missing</strong> - <em>(invalid_request_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>cartInformation_items_sku_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>cartInformation_items_quantity_missing</strong> - <em>(invalid_request_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>cartInformation_items_quantity_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>cartInformation_items_leasable_missing</strong> - <em>(invalid_request_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>cartInformation_items_leasable_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>cartInformation_items_leasable_not_accepted</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>cartInformation_shippingAddress_missing</strong> - <em>(invalid_request_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>cartInformation_shippingAddress_country_missing</strong> - <em>(invalid_request_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>cartInformation_shippingAddress_country_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>cartInformation_shippingAddress_postalCode_missing</strong> - <em>(invalid_request_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>cartInformation_shippingAddress_postalCode_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>cartInformation_shippingAddress_streetAddress_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>incomeInformation_missing</strong> - <em>(invalid_request_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>incomeInformation_allowed_items_exceeded</strong> - <em>(invalid_request_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>incomeInformation_employerName_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>incomeInformation_positionHeld_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>incomeInformation_frequency_missing</strong> - <em>(invalid_request_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>incomeInformation_frequency_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>incomeInformation_incomeAmount_missing</strong> - <em>(invalid_request_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>incomeInformation_incomeAmount_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>incomeInformation_incomeAmount_minimum_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>incomeInformation_phoneCountryCode_missing</strong> - <em>(invalid_request_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>incomeInformation_phoneCountryCode_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>incomeInformation_positionHeld_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>incomeInformation_type_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>incomeInformation_lastPayDate_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>incomeInformation_nextPayDate_missing</strong> - <em>(invalid_request_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>incomeInformation_nextPayDate_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>incomeInformation_not_provided</strong> - <em>(invalid_request_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>bankInformation_bankName_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>bankInformation_bankState_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>bankInformation_directDeposit_missing</strong> - <em>(invalid_request_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>bankInformation_directDeposit_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>termsConditions_acceptance_missing</strong> - <em>(invalid_request_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>termsConditions_acceptance_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>internal_server_error</strong> - <em>(internal_server_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>request_body_missing</strong> - <em>(invalid_request_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>invalid_body_request</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>invalid_patch_application_status</strong> - <em>(invalid_request_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>application_invalid_status</strong> - <em>(invalid_request_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>bankInformation_invalid</strong> - <em>(invalid_request_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>recipient_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>recipient_missing</strong> - <em>(invalid_request_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>channel_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>channel_missing</strong> - <em>(invalid_request_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>verificationResourceId_missing</strong> - <em>(invalid_request_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>verificationResourceId_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>invalid_payment_dates</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>shippingDate_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>deliveryDate_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>deliveryDate_already_set</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>deliveryDate_incorrect</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>amount_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>amount_missing</strong> - <em>(invalid_request_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>itemId_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>itemId_missing</strong> - <em>(invalid_request_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>quantity_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>quantity_missing</strong> - <em>(invalid_request_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>frequency_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>signedDate_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>signedDate_missing</strong> - <em>(invalid_request_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>signedMethod_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>signedMethod_missing</strong> - <em>(invalid_request_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>deviceIP_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>agreement_information_missing</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>payment_plan_information_missing</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>refund_product_price_missing</strong> - <em>(invalid_request_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>refund_product_price_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>refund_product_price_minimum_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>refunds_items_missing</strong> - <em>(invalid_request_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>refund_product_quantity_missing</strong> - <em>(invalid_request_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>refund_product_quantity_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>refund_product_itemId_missing</strong> - <em>(invalid_request_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>refund_product_itemId_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>lookup_cid_type_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>lookup_applications_not_found</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>lookup_cid_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>lookup_body_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>supplementalDataInformation_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>supplementalDataInformation_missing</strong> - <em>(invalid_request_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>invalid_patch_app_origin_channel</strong> - <em>(invalid_request_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>request_body_invalid</strong> - <em>(invalid_request_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>verificationCode_customerName_missing</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>preapproval_checkoutId_missing</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>preapproval_applicationId_missing</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>preapproval_checkoutId_notFound</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>invalid_experience_error</strong> - <em>(invalid_request_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>reporting_api_offset_invalid</strong> - <em>(reporting_api_offset_invalid)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>reporting_api_offset_missing</strong> - <em>(reporting_api_offset_missing)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>reporting_api_limit_invalid</strong> - <em>(reporting_api_limit_invalid)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>reporting_api_limit_missing</strong> - <em>(reporting_api_limit_missing)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>reporting_api_startDatetime_invalid</strong> - <em>(reporting_api_startDatetime_invalid)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>reporting_api_startDatetime_missing</strong> - <em>(reporting_api_startDatetime_missing)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>reporting_api_endDatetime_invalid</strong> - <em>(reporting_api_endDatetime_invalid)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>reporting_api_endDatetime_missing</strong> - <em>(reporting_api_endDatetime_missing)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>reporting_api_query_string_params_missing</strong> - <em>(reporting_api_query_string_params_missing)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>reporting_api_query_string_params_invalid</strong> - <em>(reporting_api_query_string_params_invalid)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>reporting_api_keyword_invalid</strong> - <em>(reporting_api_keyword_invalid)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>reporting_api_applicationId_invalid</strong> - <em>(reporting_api_applicationId_invalid)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>reporting_api_status_invalid</strong> - <em>(reporting_api_status_invalid)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>reporting_api_amount_invalid</strong> - <em>(reporting_api_amount_invalid)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>reporting_api_mobilePhone_invalid</strong> - <em>(reporting_api_mobilePhone_invalid)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>reporting_api_firstName_invalid</strong> - <em>(reporting_api_firstName_invalid)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>reporting_api_lastName_invalid</strong> - <em>(reporting_api_lastName_invalid)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>cardInfo_invalid</strong> - <em>(invalid_request_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>cardInfo_cardNumber_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>cardInfo_expirationMonth_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>cardInfo_expirationYear_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>cardInfo_expired</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>cardInfo_cvvCode_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>cardInfo_cardType_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>cardInfo_billingName_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>cardInfo_streetAddress_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>cardInfo_city_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>cardInfo_state_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>cardInfo_state_non_existent</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>cardInfo_zipcode_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>cardInfo_billingAddress_postalCode_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>cardInfo_phoneNumber_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>cardInfo_email_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>paymentMethodInfo_invalid</strong> - <em>(invalid_request_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>paymentMethodInfo_paymentType_invalid</strong> - <em>(validation_error)</em> </p>\n</blockquote>\n</li>\n<li><blockquote>\n<p><strong>paymethod_missing_card</strong> - <em>(validation_error)</em></p>\n</blockquote>\n</li>\n</ul>\n<h1 id=\"8-testing-data\">8. Testing Data</h1>\n<p>Use the following combinations to create applications as desired:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>CustomerIdType</th>\n<th>SSN</th>\n<th>DOB</th>\n<th>Result</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>SSN</td>\n<td>Any 9</td>\n<td>07-07-1977</td>\n<td>Application Approved</td>\n</tr>\n<tr>\n<td>SSN</td>\n<td>Any 9</td>\n<td>06-06-1966</td>\n<td>Application Denied</td>\n</tr>\n<tr>\n<td>SSN4</td>\n<td>Any 4</td>\n<td>07-07-1977</td>\n<td>Application Approved</td>\n</tr>\n<tr>\n<td>SSN4</td>\n<td>Any 4</td>\n<td>06-06-1966</td>\n<td>Application Denied</td>\n</tr>\n</tbody>\n</table>\n</div><p>To simulate the three bank account attempts scenario use a bank account following the next mask, XXXXXXXXX0; same value for the first 9 digits and a zero to complete 10 digits. Example:</p>\n<ul>\n<li>9999999990</li>\n<li>8888888880</li>\n<li>7777777770</li>\n<li>6666666660</li>\n</ul>\n<p>Using those numbers, the first two attempts will return an error:</p>\n<ul>\n<li><blockquote>\n<p><strong>bankInformation_invalid</strong> - <em>(invalid_request_error)</em></p>\n</blockquote>\n</li>\n</ul>\n<p>The third attempt will return DENIED application status.</p>\n<p><strong>Important:</strong> Change bank account number between calls. Using the same value will not increase the attempts count.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Test case scenario</th>\n<th>SSN</th>\n<th>DOB</th>\n<th>First Name</th>\n<th>Last Name</th>\n<th>Address</th>\n<th>Bank Routing</th>\n<th>Bank Account number</th>\n<th>Expected results</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Prequal Approval</td>\n<td>Any 9</td>\n<td>7-Jul-77</td>\n<td>Any</td>\n<td>Any</td>\n<td>Any</td>\n<td>Routing - 122000247</td>\n<td>Any</td>\n<td>Application Approved</td>\n<td></td>\n</tr>\n<tr>\n<td>Final Approval</td>\n<td>Any 9</td>\n<td>7-Jul-77</td>\n<td>Any</td>\n<td>Any</td>\n<td>Any</td>\n<td>Routing - 122000247</td>\n<td>Any</td>\n<td>Application Approved</td>\n<td></td>\n</tr>\n<tr>\n<td>Prequal Denial</td>\n<td>Any 9</td>\n<td>6-Jun-66</td>\n<td>Any</td>\n<td>Any</td>\n<td>Any</td>\n<td>Routing - 122000247</td>\n<td>Any</td>\n<td>Application Denied</td>\n<td></td>\n</tr>\n<tr>\n<td>Final Denial</td>\n<td>Any 9</td>\n<td>7-Jul-77</td>\n<td>Any</td>\n<td>Any</td>\n<td>Any</td>\n<td>Valid routing number - 122000247</td>\n<td>9999999990</td>\n<td>Application Denied</td>\n<td>Please check  <br><a href=\"https://platform.api-spec.snapfinance.com/#8-testing-data\">https://platform.api-spec.snapfinance.com/#8-testing-data</a>  <br>for additional details to simulate this scenario</td>\n</tr>\n<tr>\n<td>Pending - Credit Freeze(at the Prequal step)</td>\n<td>Any 9</td>\n<td>1/1/01</td>\n<td>Any</td>\n<td>Wilson</td>\n<td>Any</td>\n<td>Valid routing number - 122000247</td>\n<td>Any</td>\n<td>Application Pending due to Credit Freeze</td>\n<td>Use last name \"Wilson\" with the request. Application should go into Pending.</td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Test case scenario</th>\n<th>Expected results</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>STBS (Snap collects the taxes)</td>\n<td>CT, IL, PA, VA, TX, WI, MN, and NJ. *Include STBS disclosures.*Taxes will be excluded from the total cart amount.</td>\n<td>Collect the Taes and send it within the Taxes field of the API.  <br>  <br>Use the following address for testing : 822 Main St Wolfforth, Texas(TX), 79382</td>\n</tr>\n<tr>\n<td>Opt-In and T&amp;C (Terms and Conditions)</td>\n<td></td>\n<td>Test “TRUE” and “FALSE” values.</td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Test case scenario</th>\n<th>Expected results</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>T&amp;C Hyperlinks</td>\n<td></td>\n<td>Hyperlinks should redirect to right documents. Privacy Policy:PDF:  <br><a href=\"https://snap-app-docs-public.s3-us-west-2.amazonaws.com/Snap_Privacy_Policy.pdf\">https://snap-app-docs-public.s3-us-west-2.amazonaws.com/Snap_Privacy_Policy.pdf</a>  <br>Website:  <br><a href=\"https://snapfinance.com/legal/privacy\">https://snapfinance.com/legal/privacy</a>  <br>Terms and Conditions:PDF:  <br><a href=\"https://snap-app-docs-public.s3-us-west-2.amazonaws.com/Snap_Terms_and_Conditions.pdf\">https://snap-app-docs-public.s3-us-west-2.amazonaws.com/Snap_Terms_and_Conditions.pdf</a>  <br>E-Consent disclosure (Clause inside of the T&amp;Cs):PDF:  <br><a href=\"https://snap-app-docs-public.s3-us-west-2.amazonaws.com/Snap_Terms_and_Conditions.pdf\">https://snap-app-docs-public.s3-us-west-2.amazonaws.com/Snap_Terms_and_Conditions.pdf</a></td>\n</tr>\n<tr>\n<td>CANCEL</td>\n<td>Successful Void</td>\n<td></td>\n</tr>\n<tr>\n<td>CAPTURE</td>\n<td>Successful Capture</td>\n<td></td>\n</tr>\n<tr>\n<td>REFUND</td>\n<td>Successful Refund</td>\n<td></td>\n</tr>\n<tr>\n<td>MIN AMOUNT 150</td>\n<td>Error handling</td>\n<td></td>\n</tr>\n<tr>\n<td>CART AMOUNT IS LOWER THAN APPROVAL AMOUNT</td>\n<td>Error handling</td>\n<td></td>\n</tr>\n<tr>\n<td>Invalid Data Decline on Paycheck Details</td>\n<td>Error handling</td>\n<td></td>\n</tr>\n<tr>\n<td>Invalid Data Decline on Bank Account Details</td>\n<td>Error handling</td>\n<td></td>\n</tr>\n<tr>\n<td>OTP Retries</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>OTP Failure</td>\n<td>Error handling</td>\n<td></td>\n</tr>\n<tr>\n<td>Non-leasable Item</td>\n<td>Error handling</td>\n<td></td>\n</tr>\n<tr>\n<td>Non-leasable State</td>\n<td>Error handling</td>\n<td>Use Wisconsin, Minnesota, or New Jersey</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"9-support\"><strong>9. Support</strong></h1>\n<p>Contact <a href=\"https://mailto:devsupport@snapfinance.com\">devsupport@snapfinance.com</a> for assistance.</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"1. Overview","slug":"1-overview"},{"content":"2. Authentication","slug":"2-authentication"},{"content":"3. Product Experiences","slug":"3-product-experiences"},{"content":"4. Response Messages","slug":"4-response-messages"},{"content":"5. Idempotency Request","slug":"5-idempotency-request"},{"content":"6. Response Objects","slug":"6-response-objects"},{"content":"7. Errors","slug":"7-errors"},{"content":"8. Testing Data","slug":"8-testing-data"},{"content":"9. Support","slug":"9-support"}],"owner":"5518752","collectionId":"9b9024b9-7b7d-476b-a715-2a8e583b99cc","publishedId":"2sBXqFM2of","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"67b25e"},"publishDate":"2026-05-19T15:25:19.000Z"},"item":[{"name":"API","item":[{"name":"LTO","item":[{"name":"Get Token","event":[{"listen":"test","script":{"exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","    ","    var jsonData = pm.response.json();","    pm.environment.set(\"bearerToken\", jsonData.access_token);","});","","pm.environment.set(\"social_4\", _.random(1000, 9999));","pm.environment.set(\"social_9\", _.random(100000000, 999999999));","pm.environment.set(\"account_number\", _.random(1000000000, 9999999999));"],"type":"text/javascript","id":"b219927f-fd31-4229-b235-80b3caef5c07"}}],"id":"1fd3eeb6-1008-4331-9b6a-76768a82f2a4","protocolProfileBehavior":{"disabledSystemHeaders":{"accept":true,"accept-encoding":true,"connection":true,"user-agent":true},"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"client_id\": \"{{authClientId}}\",\r\n\t\"client_secret\": \"{{authClientSecret}}\",\r\n\t\"audience\": \"{{authClientAudience}}\",\r\n\t\"grant_type\": \"client_credentials\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{authHostUrl}}/oauth/token","description":"<h1 id=\"get-token\">Get Token</h1>\n<p>This endpoint gets the token to make Snap Finance API calls.</p>\n<h2 id=\"environment-information\">Environment information</h2>\n<ul>\n<li><p>Sandbox base URL: <a href=\"https://api-sandbox.snapfinance.com/platform/v1\">https://api-sandbox.snapfinance.com/platform/v1</a></p>\n</li>\n<li><p>Production base URL:  <a href=\"https://api.snapfinance.com/platform/v1\">https://api.snapfinance.com/platform/v1</a></p>\n</li>\n</ul>\n<p><strong>Note:</strong> Production credentials will be provided after the integration is ready and tested in sandbox.</p>\n<h2 id=\"request-object\">Request Object</h2>\n<blockquote>\n<h4 id=\"client_idstring\"><code>client_id:string</code></h4>\n<ul>\n<li>Required</li>\n<li>Is the client ID provided by Snap</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"client_secretstring\"><code>client_secret:string</code></h4>\n<ul>\n<li>Required</li>\n<li>Is the client secret provided by Snap</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"audiencestring\"><code>audience:string</code></h4>\n<ul>\n<li>Required</li>\n<li>Value must be <a href=\"https://api-release.snapfinance.com/platform/v1\">https://api-release.snapfinance.com/platform/v1</a> for sandbox environment</li>\n<li>Value must be <a href=\"https://api.snapfinance.com/platform/v1\">https://api.snapfinance.com/platform/v1</a> for production environment</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"grant_typestring\"><code>grant_type:string</code></h4>\n<ul>\n<li>Required</li>\n<li>Value must be <code>client_credentials</code></li>\n</ul>\n</blockquote>\n","urlObject":{"path":["oauth","token"],"host":["{{authHostUrl}}"],"query":[],"variable":[]}},"response":[{"id":"70a2d49a-8a30-4300-af24-fe2f5c6ea3f2","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"client_id\": \"{{authClientId}}\",\r\n\t\"client_secret\": \"{{authClientSecret}}\",\r\n\t\"audience\": \"{{authClientAudience}}\",\r\n\t\"grant_type\": \"client_credentials\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{authHostUrl}}/oauth/token"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"openresty"},{"key":"Date","value":"Thu, 30 Jul 2020 14:37:07 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"ot-tracer-spanid","value":"362f5d543a9ee2b1"},{"key":"ot-tracer-traceid","value":"37f1cde43a952051"},{"key":"ot-tracer-sampled","value":"true"},{"key":"ot-baggage-auth0-request-id","value":"8822-1596119827.955-34.218.23.159-518-277619999-1-0.000"},{"key":"X-Auth0-RequestId","value":"78e01254a6018eab26a6"},{"key":"X-RateLimit-Limit","value":"1000000"},{"key":"X-RateLimit-Remaining","value":"999999"},{"key":"X-RateLimit-Reset","value":"1596119828"},{"key":"Cache-Control","value":"no-store"},{"key":"Pragma","value":"no-cache"},{"key":"X-Robots-Tag","value":"noindex, nofollow, nosnippet, noarchive"},{"key":"Content-Encoding","value":"gzip"},{"key":"Strict-Transport-Security","value":"max-age=15768000"}],"cookie":[],"responseTime":null,"body":"{\n    \"access_token\": \"{{bearerToken}}\",\n    \"scope\": \"array of scopes\",\n    \"expires_in\": 86400,\n    \"token_type\": \"Bearer\"\n}"},{"id":"330a479c-b9f8-4623-8a36-799b563cd911","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"client_id\": \"{{authClientId}}\",\r\n\t\"client_secret\": \"{{authClientSecret}}\",\r\n\t\"audience\": \"{{authClientAudience}}\",\r\n\t\"grant_type\": \"client_credentials\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{authHostUrl}}/oauth/token"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"openresty"},{"key":"Date","value":"Thu, 30 Jul 2020 14:37:56 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"60"},{"key":"Connection","value":"keep-alive"},{"key":"ot-tracer-spanid","value":"49376030724ae640"},{"key":"ot-tracer-traceid","value":"778c6f7b38c6efa2"},{"key":"ot-tracer-sampled","value":"true"},{"key":"ot-baggage-auth0-request-id","value":"8822-1596119876.679-34.218.23.159-518-277619999-2-0.000"},{"key":"X-Auth0-RequestId","value":"b202aa024e7109101a82"},{"key":"X-RateLimit-Limit","value":"1000000"},{"key":"X-RateLimit-Remaining","value":"999999"},{"key":"X-RateLimit-Reset","value":"1596119877"},{"key":"cache-control","value":"private, no-store, no-cache, must-revalidate, post-check=0, pre-check=0, no-transform"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"access_denied\",\n    \"error_description\": \"Unauthorized\"\n}"},{"id":"f8255c00-6ca0-4724-b507-feca0a101f41","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"client_id\": \"{{authClientId}}\",\r\n\t\"client_secret\": \"{{authClientSecret}}\",\r\n\t\"audience\": \"{{authClientAudience}}\",\r\n\t\"grant_type\": \"client_credentials\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{authHostUrl}}/oauth/token"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"openresty"},{"key":"Date","value":"Thu, 30 Jul 2020 14:37:07 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"ot-tracer-spanid","value":"362f5d543a9ee2b1"},{"key":"ot-tracer-traceid","value":"37f1cde43a952051"},{"key":"ot-tracer-sampled","value":"true"},{"key":"ot-baggage-auth0-request-id","value":"8822-1596119827.955-34.218.23.159-518-277619999-1-0.000"},{"key":"X-Auth0-RequestId","value":"78e01254a6018eab26a6"},{"key":"X-RateLimit-Limit","value":"1000000"},{"key":"X-RateLimit-Remaining","value":"999999"},{"key":"X-RateLimit-Reset","value":"1596119828"},{"key":"Cache-Control","value":"no-store"},{"key":"Pragma","value":"no-cache"},{"key":"X-Robots-Tag","value":"noindex, nofollow, nosnippet, noarchive"},{"key":"Content-Encoding","value":"gzip"},{"key":"Strict-Transport-Security","value":"max-age=15768000"}],"cookie":[],"responseTime":null,"body":"{\n    \"access_token\": \"{{bearerToken}}\",\n    \"scope\": \"array of scopes\",\n    \"expires_in\": 86400,\n    \"token_type\": \"Bearer\"\n}"},{"id":"0c2ebdf5-abbd-4141-acb2-a8997897abe6","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"client_id\": \"{{authClientId}}\",\r\n\t\"client_secret\": \"{{authClientSecret}}\",\r\n\t\"audience\": \"{{authClientAudience}}\",\r\n\t\"grant_type\": \"client_credentials\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{authHostUrl}}/oauth/token"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"openresty"},{"key":"Date","value":"Thu, 30 Jul 2020 14:37:56 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"60"},{"key":"Connection","value":"keep-alive"},{"key":"ot-tracer-spanid","value":"49376030724ae640"},{"key":"ot-tracer-traceid","value":"778c6f7b38c6efa2"},{"key":"ot-tracer-sampled","value":"true"},{"key":"ot-baggage-auth0-request-id","value":"8822-1596119876.679-34.218.23.159-518-277619999-2-0.000"},{"key":"X-Auth0-RequestId","value":"b202aa024e7109101a82"},{"key":"X-RateLimit-Limit","value":"1000000"},{"key":"X-RateLimit-Remaining","value":"999999"},{"key":"X-RateLimit-Reset","value":"1596119877"},{"key":"cache-control","value":"private, no-store, no-cache, must-revalidate, post-check=0, pre-check=0, no-transform"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"access_denied\",\n    \"error_description\": \"Unauthorized\"\n}"}],"_postman_id":"1fd3eeb6-1008-4331-9b6a-76768a82f2a4"},{"name":"Create Application","event":[{"listen":"test","script":{"exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","pm.test(\"Success message\", function () {","    pm.expect(pm.response.text()).to.include(\"success\");","});","","pm.test(\"Set the application ID\", function () {","    var jsonData = pm.response.json();","    pm.environment.set(\"applicationId\", jsonData.data.applicationId);","});"],"type":"text/javascript","packages":{},"id":"a5b8cef6-c883-475a-8ce2-a018ec74e83a"}}],"id":"c48a8bff-9a68-4e8c-ae2a-df76fb54b8cc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"<p>(optional - ID generated by the client)</p>\n","type":"text"},{"key":"Idempotency-Key","value":"","description":"<p>(optional - Idempotency key generated by the client)</p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"customerInformation\": {\r\n\t\t\"dobDate\": \"1977-07-07\",\r\n\t\t\"customerId\": \"{{social_4}}\",\r\n\t\t\"customerIdType\": \"SSN4\",\r\n\t\t\"mobilePhone\": \"1000000019\",\r\n\t\t\"mobilePhoneCountry\": \"US\",\r\n\t\t\"email\": \"test@test.com\",\r\n\t\t\"firstName\": \"John\",\r\n\t\t\"lastName\": \"Smith\",\r\n\t\t\"salutation\": \"MR\",\r\n\t\t\"billingAddress\": {\r\n\t\t\t\"streetAddress\": \"123MainSt\",\r\n\t\t\t\"city\": \"SaltLakeCity\",\r\n\t\t\t\"state\": \"UT\",\r\n\t\t\t\"country\": \"US\",\r\n\t\t\t\"postalCode\": \"84001\"\r\n\t\t},\r\n\t\t\"driversLicenseNumber\": \"123456879\",\r\n\t\t\"driversLicenseState\": \"FL\",\r\n\t\t\"language\": \"EN\",\r\n\t\t\"rentOwn\": \"OWN\",\r\n\t\t\"timeAddressYears\": 0,\r\n\t\t\"timeAddressMonths\": 2,\r\n\t\t\"phoneOptIn\": true\r\n\t},\r\n\t\"supplementalDataInformation\": {\r\n\t\t\"customerPastApps\": \"2\",\r\n\t\t\"customerIP\": \"127.X.0.1\"\r\n\t},\r\n\t\"cartInformation\": {\r\n\t\t\"currencyCode\": \"USD\",\r\n\t\t\"taxAmount\": \"35.00\",\r\n\t\t\"shippingAmount\": \"15.00\",\r\n\t\t\"totalAmount\": \"320.00\",\r\n\t\t\"discountAmount\": \"0.00\",\r\n\t\t\"orderId\": \"041299\",\r\n\t\t\"items\": [\r\n\t\t\t{\r\n\t\t\t\t\"price\": \"150.00\",\r\n\t\t\t\t\"itemId\": \"ABC\",\r\n\t\t\t\t\"description\": \"Mattress\",\r\n\t\t\t\t\"sku\": \"D1234\",\r\n\t\t\t\t\"quantity\": 1,\r\n\t\t\t\t\"leasable\":true\r\n\t\t\t},\r\n            \t\t\t{\r\n\t\t\t\t\"price\": \"100.00\",\r\n\t\t\t\t\"itemId\": \"DEF\",\r\n\t\t\t\t\"description\": \"TV\",\r\n\t\t\t\t\"sku\": \"D1235\",\r\n\t\t\t\t\"quantity\": 1,\r\n\t\t\t\t\"leasable\":true,\r\n                \"itemType\": \"PRODUCT\"\r\n\t\t\t},\r\n            \t\t\t{\r\n\t\t\t\t\"price\": \"20.00\",\r\n\t\t\t\t\"itemId\": \"LMN\",\r\n\t\t\t\t\"description\": \"Misc Fee\",\r\n\t\t\t\t\"sku\": \"A0001\",\r\n\t\t\t\t\"quantity\": 1,\r\n\t\t\t\t\"leasable\":true,\r\n                \"itemType\": \"SERVICE\"\r\n\t\t\t}\r\n\t\t],\r\n\t\t\"shippingAddress\": {\r\n\t\t\t\"streetAddress\": \"456BroadwaySt\",\r\n\t\t\t\"city\": \"SaltLakeCity\",\r\n\t\t\t\"state\": \"UT\",\r\n\t\t\t\"country\": \"US\",\r\n\t\t\t\"postalCode\": \"84001\"\r\n\t\t}\r\n\t},\r\n\t\"bankInformation\": {\r\n\t\t\"bankName\": \"superBank\",\r\n\t\t\"bankCity\": \"miami\",\r\n\t\t\"bankState\": \"FL\",\r\n\t\t\"routingNumber\": \"051501451\",\r\n\t\t\"accountNumber\": \"{{account_number}}\",\r\n\t\t\"directDeposit\": true\r\n\t},\r\n\t\"incomeInformation\": [{\r\n\t\t\"employerName\": \"AcmeCorporation\",\r\n\t\t\"frequency\": \"BI_WEEKLY\",\r\n\t\t\"incomeAmount\": \"5000.00\",\r\n\t\t\"phone\": \"1234567890\",\r\n\t\t\"phoneCountryCode\": \"US\",\r\n\t\t\"positionHeld\": \"Associate\",\r\n\t\t\"type\": \"FULL_TIME\",\r\n\t\t\"lastPayDate\": \"2020-02-07\",\r\n\t\t\"nextPayDate\": \"2020-02-21\"\r\n\t}],\r\n    \"complianceDisclosures\": {\r\n        \"termsConditions\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"electronicTransaction\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"prequalifiedTermsConditions\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"eConsent\": {\r\n            \"timestamp\": \"10/23/2022\"\r\n        }\r\n    }\r\n}"},"url":"{{baseUrl}}/platform/v1/application","description":"<h1 id=\"create-application\">Create Application</h1>\n<p>This endpoint creates an application and returns the decision on the application. It returns an applicationId if the application is approved and marks the application status as PREQUALIFIED/APPROVED/DENIED. Check the example requests to get one for each scenario.</p>\n<p><strong>Note</strong>: incomeInformation, cartInformation, and bankInformation objects are <strong>MANDATORY</strong> for a final approval (You can send those using the PATCH endpoint). If you are enrolled for a prequalification experience the customer can get PREQUALIFIED with customerInformation only. Check with your integrator for the experience selected.</p>\n<h1 id=\"request-object\">Request Object</h1>\n<h2 id=\"customerinformationhash\"><code>customerInformation:hash</code></h2>\n<h4 id=\"dobdatestring\"><code>dobDate:string</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Date should be in YYYY-MM-DD format. The customer should be older than 18 years to apply. Date of birth in ISO format</p>\n</li>\n</ul>\n<h4 id=\"customeridstring\"><code>customerId:string</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>SSN number of the customer, four digits for SSN4 or 9 digits for SSN</p>\n</li>\n</ul>\n<h4 id=\"customeridtypestring\"><code>customerIdType:string</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Customer identification type in the country. Supported types are SSN or SSN4</p>\n</li>\n</ul>\n<h4 id=\"mobilephonestring\"><code>mobilePhone:string</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Verified customer phone number 10 digits</p>\n</li>\n</ul>\n<h4 id=\"mobilephonecountrystring\"><code>mobilePhoneCountry:string</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Country code in ISO 3166-1 alpha-2. Only US carriers are supported for now</p>\n</li>\n</ul>\n<h4 id=\"emailstring\"><code>email:string</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Properly formatted valid email address</p>\n</li>\n</ul>\n<h4 id=\"firstnamestring\"><code>firstName:string</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Can not be null or blank. It needs to be more than two characters</p>\n</li>\n</ul>\n<h4 id=\"lastnamestring\"><code>lastName:string</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Can not be null or blank. It needs to be more than two characters</p>\n</li>\n</ul>\n<h4 id=\"salutationstring\"><code>salutation:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Customer salutation. Supported values are MR, MRS, MISS or NONE</p>\n</li>\n</ul>\n<h4 id=\"driverslicensenumberstring\"><code>driversLicenseNumber:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Customer drivers license number. Valid driver license number</p>\n</li>\n</ul>\n<h4 id=\"driverslicensestatestring\"><code>driversLicenseState:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Customer drivers license state. Valid US state in two characters</p>\n</li>\n</ul>\n<h4 id=\"languagestring\"><code>language:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Language code preference of the customer. Supported values are EN or ES</p>\n</li>\n</ul>\n<h4 id=\"rentownstring\"><code>rentOwn:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Customers current residential type whether it is rental or owned. Supported values are RENT or OWN</p>\n</li>\n</ul>\n<h4 id=\"timeaddressyearsstring\"><code>timeAddressYears:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Positive number | Number of years the customer has lived at his or her current residential address</p>\n</li>\n</ul>\n<h4 id=\"timeaddressmonthsstring\"><code>timeAddressMonths:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Positive number. Number of months the customer has lived at his or her current address</p>\n</li>\n</ul>\n<h4 id=\"phoneoptinboolean\"><code>phoneOptIn:boolean</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Phone communication opt in for the customer. The customer must explicitly agree or disagree with phone communication</p>\n</li>\n</ul>\n<h4 id=\"billingaddresshash\"><code>billingAddress:hash</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Billing address of customer. Mostly will be his or her current residential address. Billing address used for lease agreement</p>\n<h4 id=\"billingaddressstreetaddressstring\"><code>billingAddress.streetAddress:string</code></h4>\n<blockquote>\n<p>&lt;ul &gt;&lt;li &gt;&lt;div&gt;Required&lt;/div&gt;&lt;/li&gt;&lt;li &gt;&lt;div&gt;Street address of customer&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt;</p>\n</blockquote>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>#### `billingAddress.city:string`\n&gt; &lt;ul class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;Required&lt;/div&gt;&lt;/li&gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;Any valid US city within LTO/SLN supported state&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; \n#### `billingAddress.state:string`\n&gt; &lt;ul class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;Required&lt;/div&gt;&lt;/li&gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;State or province of the customer. LTO/SLN supported states (NJ, MN and WI are non LTO states) &lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; \n#### `billingAddress.country:string`\n&gt; &lt;ul class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;Required&lt;/div&gt;&lt;/li&gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;Residence country of the customer. Only US is supported &lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; \n#### `billingAddress.postalCode:string`\n&gt; &lt;ul class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;Required&lt;/div&gt;&lt;/li&gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;Valid US zip code five digits &lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; \n#### `billingAddress.unit :string`\n&gt; &lt;ul class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;Optional&lt;/div&gt;&lt;/li&gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;Unit number of the customer address &lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; \n\n</code></pre><h2 id=\"cartinformationhash--conditional\"><code>cartInformation:hash</code> * Conditional</h2>\n<h4 id=\"currencycodestring\"><code>currencyCode:string</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Currency code of the cart only USD is allowed. Allowed value is USD only</p>\n</li>\n</ul>\n<h4 id=\"taxamountstring-numeric\"><code>taxAmount:string (Numeric)</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Valid amount. Sales tax as per the customer and merchant state. Funding will be done accordingly for states where snap must collect sales tax</p>\n</li>\n</ul>\n<h4 id=\"shippingamountstring-numeric\"><code>shippingAmount:string (Numeric)</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Valid shipping amount can be zero for free shipping product. Shipping amount for all the items within the cart</p>\n</li>\n</ul>\n<h4 id=\"totalamountstring-numeric\"><code>totalAmount:string (Numeric)</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Total amount of the cart Information. (ItemPrice * Qty) + taxAmount + shippingAmount - discount</p>\n</li>\n</ul>\n<h4 id=\"discountamountstring-numeric\"><code>discountAmount:string (Numeric)</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Discount amount of the cart information. Valid positive amount</p>\n</li>\n</ul>\n<h4 id=\"orderidstring\"><code>orderId:string</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Order ID within merchant's order management system. Any alpha numeric value</p>\n</li>\n</ul>\n<h4 id=\"itemshash-array\"><code>items:hash array</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>An array with at least one item. Leasable (for LTO) items within the cart</p>\n<h4 id=\"itemspricestring-numeric\"><code>items.price:string (Numeric)</code></h4>\n<blockquote>\n<p>&lt;ul &gt;&lt;li &gt;&lt;div&gt;Required&lt;/div&gt;&lt;/li&gt;&lt;li &gt;&lt;div&gt;Positive value. Unit price of an Item&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt;</p>\n</blockquote>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>#### `items.itemId:string`\n&gt; &lt;ul class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;Required&lt;/div&gt;&lt;/li&gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;Within the same Order can not have two items with the same item ID. Unique item ID within customer order management system&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; \n#### `items.description:string`\n&gt; &lt;ul class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;Required&lt;/div&gt;&lt;/li&gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;Title of the item&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; \n#### `items.sku:string`\n&gt; &lt;ul class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;Optional&lt;/div&gt;&lt;/li&gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;SKU number associated with the item &lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; \n#### `items.quantity:Integer`\n&gt; &lt;ul class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;Required&lt;/div&gt;&lt;/li&gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;Quantity of each item&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; \n#### `items.leasable:boolean`\n&gt; &lt;ul class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;Required for LTO and optional for SLN&lt;/div&gt;&lt;/li&gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;All the items within the cart should be leasable for LTO. Indicator flag provided by the merchant as agreed with Snap Finance&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; \n#### `items.itemType:string`\n&gt; &lt;ul class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;Optional&lt;/div&gt;&lt;/li&gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;Item type indicates whether the item is a physical product or not. Accepted values PRODUCT | SERVICE. Default value: PRODUCT&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; \n\n</code></pre><h4 id=\"shippingaddresshash\"><code>shippingAddress:hash</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Shipping address object</p>\n<h4 id=\"shippingaddressstreetaddressstring\"><code>shippingAddress.streetAddress:string</code></h4>\n<blockquote>\n<p>&lt;ul &gt;&lt;li &gt;&lt;div&gt;Required&lt;/div&gt;&lt;/li&gt;&lt;li &gt;&lt;div&gt;P.O boxes are not allowed. Street address where the item will be shipped&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt;</p>\n</blockquote>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>#### `shippingAddress.city:string`\n&gt; &lt;ul class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;Required&lt;/div&gt;&lt;/li&gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;P.O boxes are not allowed. City where the items will be shipped&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; \n#### `shippingAddress.state:string`\n&gt; &lt;ul class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;Required&lt;/div&gt;&lt;/li&gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;Valid US state. US state where the item will be shipped &lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; \n#### `shippingAddress.country:string`\n&gt; &lt;ul class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;Required&lt;/div&gt;&lt;/li&gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;Only US is supported &lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; \n#### `shippingAddress.postalCode:string`\n&gt; &lt;ul class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;Required&lt;/div&gt;&lt;/li&gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;Valid US zip code. Postal code of the shipping address&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; \n#### `shippingAddress.unit :string`\n&gt; &lt;ul class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;Optional&lt;/div&gt;&lt;/li&gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;Unit number of the customer address &lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; \n\n</code></pre><h2 id=\"bankinformationhash--conditional\"><code>bankInformation:hash</code> * Conditional</h2>\n<h4 id=\"routingnumberstring\"><code>routingNumber:string</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Nine digits routing number | Customers bank routing number</p>\n</li>\n</ul>\n<h4 id=\"accountnumberstring\"><code>accountNumber:string</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Four to fifteen digits account number | Customers bank account number</p>\n</li>\n</ul>\n<h4 id=\"banknamestring\"><code>bankName:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Customers bank name</p>\n</li>\n</ul>\n<h4 id=\"bankcitystring\"><code>bankCity:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>City of the customers banking branch</p>\n</li>\n</ul>\n<h4 id=\"bankstatestring\"><code>bankState:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>State of the customers banking branch</p>\n</li>\n</ul>\n<h4 id=\"directdepositboolean\"><code>directDeposit:boolean</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Whether the account has a direct deposit of the customer's salary</p>\n</li>\n</ul>\n<h2 id=\"incomeinformationhash-array--conditional\"><code>incomeInformation:hash array</code> * Conditional</h2>\n<h4 id=\"frequencystring\"><code>frequency:string</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Frequency of the customer's earnings. Allowed values are WEEKLY, BI_WEEKLY, SEMI_MONTHLY or MONTHLY</p>\n</li>\n</ul>\n<h4 id=\"incomeamountstring\"><code>incomeAmount:string</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Income per frequency specified. Positive amount</p>\n</li>\n</ul>\n<h4 id=\"lastpaydatestring-date\"><code>lastPayDate:string (Date)</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Last pay date of the customer. Format YYYY-MM-DD</p>\n</li>\n</ul>\n<h4 id=\"nextpaydatestring-date\"><code>nextPayDate:string (Date)</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Next pay date of the customer. Format YYYY-MM-DD</p>\n</li>\n</ul>\n<h4 id=\"typestring\"><code>type:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Type of customer income. Allowed values are FULL_TIME, PART_TIME, SELF_EMPLOYMENT, BENEFITS or OTHER</p>\n</li>\n</ul>\n<h4 id=\"positionheldstring\"><code>positionHeld:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Position held of the income information</p>\n</li>\n</ul>\n<h4 id=\"phonestring\"><code>phone:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Customers employer phone number. Ten digits string number</p>\n</li>\n</ul>\n<h4 id=\"phonecountrycodestring\"><code>phoneCountryCode:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Employers' phone country code. Only US phone numbers are supported</p>\n</li>\n</ul>\n<h4 id=\"employernamestring\"><code>employerName:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Employer name of the income information</p>\n</li>\n</ul>\n<h2 id=\"supplementaldatainformationhash\"><code>supplementalDataInformation:hash</code></h2>\n<h4 id=\"annualincomestring\"><code>annualIncome:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Annual income amount. Positive amount</p>\n</li>\n</ul>\n<h4 id=\"customeripstring\"><code>customerIP:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Customer IP Address</p>\n</li>\n</ul>\n<h4 id=\"customerpastappsstring\"><code>customerPastApps:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Customer number of past applications</p>\n</li>\n</ul>\n<h2 id=\"partnerinformationhash\"><code>partnerInformation:hash</code></h2>\n<h4 id=\"uniqueidentifierstring\"><code>uniqueIdentifier:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Partner Store Id</p>\n</li>\n</ul>\n<h4 id=\"uniqueapplicationidstring\"><code>uniqueApplicationId:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Partner Application Id</p>\n</li>\n</ul>\n<h4 id=\"uniquetransactionidstring\"><code>uniqueTransactionId:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Partner Transaction Id / API unique Request Id</p>\n</li>\n</ul>\n<h2 id=\"compliancedisclosureshash\"><code>complianceDisclosures:hash</code></h2>\n<h4 id=\"termsconditionshash\"><code>termsConditions:hash</code></h4>\n<h5 id=\"version--string\"><code>version : string</code></h5>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Disclosure version</p>\n</li>\n</ul>\n<h5 id=\"timestamp--string\"><code>timestamp : string</code></h5>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Date of acceptance of the terms and conditions</p>\n</li>\n</ul>\n<h4 id=\"electronictransactionhash\"><code>electronicTransaction:hash</code></h4>\n<h5 id=\"version--string-1\"><code>version : string</code></h5>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Disclosure version</p>\n</li>\n</ul>\n<h5 id=\"timestamp--string-1\"><code>timestamp : string</code></h5>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Date of electronic transaction</p>\n</li>\n</ul>\n<h4 id=\"prequalifiedtermsconditionshash\"><code>prequalifiedTermsConditions:hash</code></h4>\n<h5 id=\"version--string-2\"><code>version : string</code></h5>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Disclosure version</p>\n</li>\n</ul>\n<h5 id=\"timestamp--string-2\"><code>timestamp : string</code></h5>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Date of acceptance of the terms and conditions for prequal apps</p>\n</li>\n</ul>\n<h4 id=\"econsenthash\"><code>eConsent:hash</code></h4>\n<h5 id=\"version--string-3\"><code>version : string</code></h5>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Disclosure version</p>\n</li>\n</ul>\n<h5 id=\"timestamp--string-3\"><code>timestamp : string</code></h5>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>E-consent date signed</p>\n</li>\n</ul>\n<h1 id=\"response-object\">Response Object</h1>\n<h2 id=\"datahash\"><code>data:hash</code></h2>\n<h4 id=\"applicationstatusstring\"><code>applicationStatus:string</code></h4>\n<ul>\n<li>Status of the application</li>\n</ul>\n<h4 id=\"applicationsubstatusstring\"><code>applicationSubStatus:string</code></h4>\n<ul>\n<li>Sub-status of the application</li>\n</ul>\n<h4 id=\"applicationidstring\"><code>applicationId:string</code></h4>\n<ul>\n<li>Application ID</li>\n</ul>\n<h4 id=\"messagestring\"><code>message:string</code></h4>\n<ul>\n<li>Application information</li>\n</ul>\n<h4 id=\"applicationtypestring\"><code>applicationType:string</code></h4>\n<ul>\n<li>Application type. Posibble values are LTO for lease merchants and SLN for loan merchants</li>\n</ul>\n<h4 id=\"processingfeestring\"><code>processingFee:string</code></h4>\n<ul>\n<li>Processing fee amount</li>\n</ul>\n<h4 id=\"currencycodestring-1\"><code>currencyCode:string</code></h4>\n<ul>\n<li>Currency code</li>\n</ul>\n<h4 id=\"approvedamountstring\"><code>approvedAmount:string</code></h4>\n<ul>\n<li>Approved amount</li>\n</ul>\n<h4 id=\"applicationcreatetimestring\"><code>applicationCreateTime:string</code></h4>\n<ul>\n<li>Application creation time in UTC Standard. Example 2020-02-21T18:00:00Z</li>\n</ul>\n<h4 id=\"applicationupdatetimestring\"><code>applicationUpdateTime:string</code></h4>\n<ul>\n<li>Application update time in UTC Standard. Example 2020-02-21T18:00:00Z</li>\n</ul>\n<h4 id=\"stbsboolean\"><code>stbs:boolean</code></h4>\n<ul>\n<li>Sales tax by snap flag</li>\n</ul>\n<h4 id=\"additionalinformationhash\"><code>additionalInformation:hash</code></h4>\n<ul>\n<li><p>Information of the application</p>\n<h4 id=\"additionalinformationcustomerinformationstring\"><code>additionalInformation.customerInformation:string</code></h4>\n<blockquote>\n<p>&lt;ul &gt;&lt;li &gt;&lt;div&gt;Status of the customer information. Possible values are VERIFIED or PENDING&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt;</p>\n</blockquote>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>#### `additionalInformation.bankInformation:string`\n&gt; &lt;ul class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;Status of the bank information. Possible values are VERIFIED or PENDING&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; \n#### `additionalInformation.incomeInformation:string`\n&gt; &lt;ul class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;Status of the income information. Possible values are VERIFIED or PENDING&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; \n#### `additionalInformation.cartInformation:string`\n&gt; &lt;ul class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;Status of the cart information. Possible values are VERIFIED or PENDING&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; \n\n</code></pre><h2 id=\"successboolean\"><code>success:boolean</code></h2>\n<blockquote>\n<p>&lt;ul &gt;&lt;li &gt;&lt;div&gt;Value with the result of the request. Possible values are TRUE or FALSE&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; </p>\n</blockquote>\n<h2 id=\"statusinteger\"><code>status:integer</code></h2>\n<blockquote>\n<p>&lt;ul &gt;&lt;li &gt;&lt;div&gt;Value with status code of the request. For example: 200, 400, 404&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt;</p>\n</blockquote>\n","urlObject":{"path":["platform","v1","application"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"88a7f2aa-a475-4591-97a4-57fbdd0d8cca","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCIsImtpZCI6IlJqRkJNa1JETlRVME1FTXpORU5GTWtNeE1UQkJPVE5DUlRjNE9UWTJORVJFTmtZNU1VSXpNZyJ9","type":"text"},{"key":"Request-Id","value":"123","type":"text"},{"key":"Idempotency-Key","value":"f18fc09a-450d-4ad8-a429-4b1d632fbb64","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"customerInformation\": {\r\n\t\t\"dobDate\": \"1977-07-07\",\r\n\t\t\"customerId\": \"{{social_4}}\",\r\n\t\t\"customerIdType\": \"SSN4\",\r\n\t\t\"mobilePhone\": \"1000000019\",\r\n\t\t\"mobilePhoneCountry\": \"US\",\r\n\t\t\"email\": \"test@test.com\",\r\n\t\t\"firstName\": \"John\",\r\n\t\t\"lastName\": \"Smith\",\r\n\t\t\"salutation\": \"MR\",\r\n\t\t\"billingAddress\": {\r\n\t\t\t\"streetAddress\": \"123MainSt\",\r\n\t\t\t\"city\": \"SaltLakeCity\",\r\n\t\t\t\"state\": \"UT\",\r\n\t\t\t\"country\": \"US\",\r\n\t\t\t\"postalCode\": \"84001\"\r\n\t\t},\r\n\t\t\"driversLicenseNumber\": \"123456879\",\r\n\t\t\"driversLicenseState\": \"FL\",\r\n\t\t\"language\": \"EN\",\r\n\t\t\"rentOwn\": \"OWN\",\r\n\t\t\"timeAddressYears\": 0,\r\n\t\t\"timeAddressMonths\": 2,\r\n\t\t\"phoneOptIn\": true\r\n\t},\r\n\t\"supplementalDataInformation\": {\r\n\t\t\"customerPastApps\": \"2\",\r\n\t\t\"customerIP\": \"127.X.0.1\",\r\n        \"annualIncome\": \"50000.00\"\r\n\t},\r\n\t\"cartInformation\": {\r\n\t\t\"currencyCode\": \"USD\",\r\n\t\t\"taxAmount\": \"35.00\",\r\n\t\t\"shippingAmount\": \"15.00\",\r\n\t\t\"totalAmount\": \"320.00\",\r\n\t\t\"discountAmount\": \"0.00\",\r\n\t\t\"orderId\": \"041299\",\r\n\t\t\"items\": [\r\n\t\t\t{\r\n\t\t\t\t\"price\": \"150.00\",\r\n\t\t\t\t\"itemId\": \"ABC\",\r\n\t\t\t\t\"description\": \"Mattress\",\r\n\t\t\t\t\"sku\": \"D1234\",\r\n\t\t\t\t\"quantity\": 1,\r\n\t\t\t\t\"leasable\":true\r\n\t\t\t},\r\n            \t\t\t{\r\n\t\t\t\t\"price\": \"100.00\",\r\n\t\t\t\t\"itemId\": \"DEF\",\r\n\t\t\t\t\"description\": \"TV\",\r\n\t\t\t\t\"sku\": \"D1235\",\r\n\t\t\t\t\"quantity\": 1,\r\n\t\t\t\t\"leasable\":true,\r\n                \"itemType\": \"PRODUCT\"\r\n\t\t\t},\r\n            \t\t\t{\r\n\t\t\t\t\"price\": \"20.00\",\r\n\t\t\t\t\"itemId\": \"LMN\",\r\n\t\t\t\t\"description\": \"Misc Fee\",\r\n\t\t\t\t\"sku\": \"A0001\",\r\n\t\t\t\t\"quantity\": 1,\r\n\t\t\t\t\"leasable\":true,\r\n                \"itemType\": \"SERVICE\"\r\n\t\t\t}\r\n\t\t],\r\n\t\t\"shippingAddress\": {\r\n\t\t\t\"streetAddress\": \"456BroadwaySt\",\r\n\t\t\t\"city\": \"SaltLakeCity\",\r\n\t\t\t\"state\": \"UT\",\r\n\t\t\t\"country\": \"US\",\r\n\t\t\t\"postalCode\": \"84001\"\r\n\t\t}\r\n\t},\r\n\t\"bankInformation\": {\r\n\t\t\"bankName\": \"superBank\",\r\n\t\t\"bankCity\": \"miami\",\r\n\t\t\"bankState\": \"FL\",\r\n\t\t\"routingNumber\": \"051501451\",\r\n\t\t\"accountNumber\": \"{{account_number}}\",\r\n\t\t\"directDeposit\": true\r\n\t},\r\n\t\"incomeInformation\": [{\r\n\t\t\"employerName\": \"AcmeCorporation\",\r\n\t\t\"frequency\": \"BI_WEEKLY\",\r\n\t\t\"incomeAmount\": \"5000.00\",\r\n\t\t\"phone\": \"1234567890\",\r\n\t\t\"phoneCountryCode\": \"US\",\r\n\t\t\"positionHeld\": \"Associate\",\r\n\t\t\"type\": \"FULL_TIME\",\r\n\t\t\"lastPayDate\": \"2020-02-07\",\r\n\t\t\"nextPayDate\": \"2020-02-21\"\r\n\t}],\r\n        \"complianceDisclosures\": {\r\n        \"termsConditions\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"electronicTransaction\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"prequalifiedTermsConditions\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"eConsent\": {\r\n            \"timestamp\": \"10/23/2022\"\r\n        }\r\n    }\r\n}"},"url":"https://api-training.snapfinance.com/platform/v1/application"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"501"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:22:59 GMT"},{"key":"x-amzn-RequestId","value":"e23d261c-bd07-4f18-a450-563b74cffb98"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P01-cF-yvHcFqOA="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d05c-8ca7863001e6343c261bb0c4"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"oIqDWJQfKIdYPDwb0_5KbpoIfWv8EZUOWffcIB1Ac026PPjmaSAwWQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"applicationId\": \"{{applicationId}}\",\n        \"applicationStatus\": \"APPROVED\",\n        \"applicationSubStatus\": \"\",\n        \"message\": \"Application Approved\",\n        \"approvedAmount\": \"1810.00\",\n        \"applicationType\": \"LTO\",\n        \"currencyCode\": \"USD\",\n        \"applicationCreateTime\": \"2021-01-04T14:48:43.364Z\",\n        \"applicationUpdateTime\": \"2021-01-04T14:48:43.366Z\",\n  \"stbs\": false,\n       \"additionalInformation\": {\n            \"customerInformation\": \"Verified\",\n            \"cartInformation\": \"Verified\",\n            \"bankInformation\": \"Verified\",\n            \"incomeInformation\": \"Verified\"\n        }\n            },\n    \"status\": 200\n}"},{"id":"97771833-cae1-424a-a646-674267b791cf","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-Id","value":"123","type":"text"},{"key":"Idempotency-Key","value":"f18fc09a-450d-4ad8-a429-4b1d632fbb64","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"customerInformation\": {\r\n\t\t\"dobDate\": \"1977-07-07\",\r\n\t\t\"customerId\": \"{{social_4}}\",\r\n\t\t\"customerIdType\": \"SSN4\",\r\n\t\t\"mobilePhone\": \"1000000019\",\r\n\t\t\"firstName\": \"John\",\r\n\t\t\"lastName\": \"Smith\",\r\n\t\t\"salutation\": \"MR\",\r\n\t\t\"billingAddress\": {\r\n\t\t\t\"streetAddress\": \"123MainSt\",\r\n\t\t\t\"city\": \"SaltLakeCity\",\r\n\t\t\t\"state\": \"UT\",\r\n\t\t\t\"country\": \"US\",\r\n\t\t\t\"postalCode\": \"84001\",\r\n\t\t\t\"unit\": \"12\"\r\n\t\t},\r\n\t\t\"driversLicenseNumber\": \"123456879\",\r\n\t\t\"driversLicenseState\": \"FL\",\r\n\t\t\"language\": \"EN\",\r\n\t\t\"rentOwn\": \"OWN\",\r\n\t\t\"timeAddressYears\": 0,\r\n\t\t\"timeAddressMonths\": 2,\r\n\t\t\"phoneOptIn\": true\r\n\t},\r\n\t\"supplementalDataInformation\": {\r\n\t\t\"customerPastApps\": \"2\",\r\n\t\t\"customerIP\": \"127.X.0.1\"\r\n\t},\r\n\t\"cartInformation\": {\r\n\t\t\"currencyCode\": \"USD\",\r\n\t\t\"taxAmount\": \"86.03\",\r\n\t\t\"shippingAmount\": \"15.00\",\r\n\t\t\"totalAmount\": \"3872.00\",\r\n\t\t\"discountAmount\": \"0.00\",\r\n\t\t\"orderId\": \"041299\",\r\n\t\t\"items\": [\r\n\t\t\t{\r\n\t\t\t\t\"price\": \"1.00\",\r\n\t\t\t\t\"itemId\": \"ABC\",\r\n\t\t\t\t\"description\": \"Mattress\",\r\n\t\t\t\t\"sku\": \"D1234\",\r\n\t\t\t\t\"quantity\": 1,\r\n\t\t\t\t\"leasable\":true\r\n\t\t\t}\r\n\t\t],\r\n\t\t\"shippingAddress\": {\r\n\t\t\t\"streetAddress\": \"456BroadwaySt\",\r\n\t\t\t\"city\": \"SaltLakeCity\",\r\n\t\t\t\"state\": \"UT\",\r\n\t\t\t\"country\": \"US\",\r\n\t\t\t\"postalCode\": \"84001\",\r\n\t\t\t\"unit\": \"12\"\r\n\t\t}\r\n\t},\r\n\t\"bankInformation\": {\r\n\t\t\"bankName\": \"superBank\",\r\n\t\t\"bankCity\": \"miami\",\r\n\t\t\"bankState\": \"FL\",\r\n\t\t\"routingNumber\": \"051501451\",\r\n\t\t\"accountNumber\": \"{{account_number}}\",\r\n\t\t\"directDeposit\": true\r\n\t},\r\n\t\"incomeInformation\": [{\r\n\t\t\"employerName\": \"AcmeCorporation\",\r\n\t\t\"frequency\": \"BI_WEEKLY\",\r\n\t\t\"incomeAmount\": \"5000.00\",\r\n\t\t\"phone\": \"1234567890\",\r\n\t\t\"phoneCountryCode\": \"US\",\r\n\t\t\"positionHeld\": \"Associate\",\r\n\t\t\"type\": \"FULL_TIME\",\r\n\t\t\"lastPayDate\": \"2020-02-07\",\r\n\t\t\"nextPayDate\": \"2020-02-21\"\r\n\t}],\r\n        \"complianceDisclosures\": {\r\n        \"termsConditions\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"electronicTransaction\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"prequalifiedTermsConditions\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"eConsent\": {\r\n            \"timestamp\": \"10/23/2022\"\r\n        }\r\n    }\r\n}"},"url":"{{baseUrl}}/platform/v1/application"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"309"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 21:55:44 GMT"},{"key":"x-amzn-RequestId","value":"851d86b2-205d-459f-ab0a-0ae317f87cb7"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P1mvCFRMPHcFV3Q="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f121e60-2d34f3d0a424dff4c50cfdbc"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 880eb84cefca849ee159a7c4d89c31ea.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"_llfqhKZaTjGHP6IrWAtmfcMgvxflPD5-FleE3Gjzn2GzoII_mblWA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"status\": 400,\n    \"error\": [\n        {\n            \"code\": \"customerInformation_mobilePhoneCountry_missing\",\n            \"type\": \"invalid_request_error\",\n            \"message\": \"Customer mobile phone country code is missing\"\n        },\n        {\n            \"code\": \"customerInformation_email_missing\",\n            \"type\": \"invalid_request_error\",\n            \"message\": \"Customer email address is missing\"\n        }\n    ]\n}"},{"id":"f7575e1b-cfa0-4afe-8f83-d875c23e0c52","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-Id","value":"123","type":"text"},{"key":"Idempotency-Key","value":"f18fc09a-450d-4ad8-a429-4b1d632fbb64","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"customerInformation\": {\r\n\t\t\"dobDate\": \"1977-07-07\",\r\n\t\t\"customerId\": \"{{social_4}}\",\r\n\t\t\"customerIdType\": \"SSN4\",\r\n\t\t\"mobilePhone\": \"1000000019\",\r\n\t\t\"firstName\": \"John\",\r\n\t\t\"lastName\": \"Smith\",\r\n\t\t\"salutation\": \"MR\",\r\n\t\t\"billingAddress\": {\r\n\t\t\t\"streetAddress\": \"123MainSt\",\r\n\t\t\t\"city\": \"SaltLakeCity\",\r\n\t\t\t\"state\": \"UT\",\r\n\t\t\t\"country\": \"US\",\r\n\t\t\t\"postalCode\": \"84001\",\r\n\t\t\t\"unit\": \"12\"\r\n\t\t},\r\n\t\t\"driversLicenseNumber\": \"123456879\",\r\n\t\t\"driversLicenseState\": \"FL\",\r\n\t\t\"language\": \"EN\",\r\n\t\t\"rentOwn\": \"OWN\",\r\n\t\t\"timeAddressYears\": 0,\r\n\t\t\"timeAddressMonths\": 2,\r\n\t\t\"phoneOptIn\": true\r\n\t},\r\n\t\"supplementalDataInformation\": {\r\n\t\t\"customerPastApps\": \"2\",\r\n\t\t\"customerIP\": \"127.X.0.1\"\r\n\t},\r\n\t\"cartInformation\": {\r\n\t\t\"currencyCode\": \"USD\",\r\n\t\t\"taxAmount\": \"86.03\",\r\n\t\t\"shippingAmount\": \"15.00\",\r\n\t\t\"totalAmount\": \"3872.00\",\r\n\t\t\"discountAmount\": \"0.00\",\r\n\t\t\"orderId\": \"041299\",\r\n\t\t\"items\": [\r\n\t\t\t{\r\n\t\t\t\t\"price\": \"1.00\",\r\n\t\t\t\t\"itemId\": \"ABC\",\r\n\t\t\t\t\"description\": \"Mattress\",\r\n\t\t\t\t\"sku\": \"D1234\",\r\n\t\t\t\t\"quantity\": 1,\r\n\t\t\t\t\"leasable\":true\r\n\t\t\t}\r\n\t\t],\r\n\t\t\"shippingAddress\": {\r\n\t\t\t\"streetAddress\": \"456BroadwaySt\",\r\n\t\t\t\"city\": \"SaltLakeCity\",\r\n\t\t\t\"state\": \"UT\",\r\n\t\t\t\"country\": \"US\",\r\n\t\t\t\"postalCode\": \"84001\",\r\n\t\t\t\"unit\": \"12\"\r\n\t\t}\r\n\t},\r\n\t\"bankInformation\": {\r\n\t\t\"bankName\": \"superBank\",\r\n\t\t\"bankCity\": \"miami\",\r\n\t\t\"bankState\": \"FL\",\r\n\t\t\"routingNumber\": \"051501451\",\r\n\t\t\"accountNumber\": \"{{account_number}}\",\r\n\t\t\"directDeposit\": true\r\n\t},\r\n\t\"incomeInformation\": [{\r\n\t\t\"employerName\": \"AcmeCorporation\",\r\n\t\t\"frequency\": \"BI_WEEKLY\",\r\n\t\t\"incomeAmount\": \"5000.00\",\r\n\t\t\"phone\": \"1234567890\",\r\n\t\t\"phoneCountryCode\": \"US\",\r\n\t\t\"positionHeld\": \"Associate\",\r\n\t\t\"type\": \"FULL_TIME\",\r\n\t\t\"lastPayDate\": \"2020-02-07\",\r\n\t\t\"nextPayDate\": \"2020-02-21\"\r\n\t}],\r\n        \"complianceDisclosures\": {\r\n        \"termsConditions\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"electronicTransaction\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"prequalifiedTermsConditions\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"eConsent\": {\r\n            \"timestamp\": \"10/23/2022\"\r\n        }\r\n    }\r\n}"},"url":"{{baseUrl}}/platform/v1/application"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"309"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 21:55:44 GMT"},{"key":"x-amzn-RequestId","value":"851d86b2-205d-459f-ab0a-0ae317f87cb7"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P1mvCFRMPHcFV3Q="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f121e60-2d34f3d0a424dff4c50cfdbc"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 880eb84cefca849ee159a7c4d89c31ea.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"_llfqhKZaTjGHP6IrWAtmfcMgvxflPD5-FleE3Gjzn2GzoII_mblWA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"status\": 400,\n    \"error\": [\n        {\n            \"code\": \"customerInformation_mobilePhoneCountry_missing\",\n            \"type\": \"invalid_request_error\",\n            \"message\": \"Customer mobile phone country code is missing\"\n        },\n        {\n            \"code\": \"customerInformation_email_missing\",\n            \"type\": \"invalid_request_error\",\n            \"message\": \"Customer email address is missing\"\n        }\n    ]\n}"},{"id":"6b47f74b-b9ed-4958-b2b1-9155adb1477e","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCIsImtpZCI6IlJqRkJNa1JETlRVME1FTXpORU5GTWtNeE1UQkJPVE5DUlRjNE9UWTJORVJFTmtZNU1VSXpNZyJ9","type":"text"},{"key":"Request-Id","value":"123","type":"text"},{"key":"Idempotency-Key","value":"f18fc09a-450d-4ad8-a429-4b1d632fbb64","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"customerInformation\": {\r\n\t\t\"dobDate\": \"1977-07-07\",\r\n\t\t\"customerId\": \"{{social_4}}\",\r\n\t\t\"customerIdType\": \"SSN4\",\r\n\t\t\"mobilePhone\": \"1000000019\",\r\n\t\t\"mobilePhoneCountry\": \"US\",\r\n\t\t\"email\": \"test@test.com\",\r\n\t\t\"firstName\": \"John\",\r\n\t\t\"lastName\": \"Smith\",\r\n\t\t\"salutation\": \"MR\",\r\n\t\t\"billingAddress\": {\r\n\t\t\t\"streetAddress\": \"123MainSt\",\r\n\t\t\t\"city\": \"SaltLakeCity\",\r\n\t\t\t\"state\": \"UT\",\r\n\t\t\t\"country\": \"US\",\r\n\t\t\t\"postalCode\": \"84001\"\r\n\t\t},\r\n\t\t\"driversLicenseNumber\": \"123456879\",\r\n\t\t\"driversLicenseState\": \"FL\",\r\n\t\t\"language\": \"EN\",\r\n\t\t\"rentOwn\": \"OWN\",\r\n\t\t\"timeAddressYears\": 0,\r\n\t\t\"timeAddressMonths\": 2,\r\n\t\t\"phoneOptIn\": true\r\n\t},\r\n\t\"supplementalDataInformation\": {\r\n\t\t\"customerPastApps\": \"2\",\r\n\t\t\"customerIP\": \"127.X.0.1\",\r\n        \"annualIncome\": \"50000.00\"\r\n\t},\r\n\t\"cartInformation\": {\r\n\t\t\"currencyCode\": \"USD\",\r\n\t\t\"taxAmount\": \"35.00\",\r\n\t\t\"shippingAmount\": \"15.00\",\r\n\t\t\"totalAmount\": \"320.00\",\r\n\t\t\"discountAmount\": \"0.00\",\r\n\t\t\"orderId\": \"041299\",\r\n\t\t\"items\": [\r\n\t\t\t{\r\n\t\t\t\t\"price\": \"150.00\",\r\n\t\t\t\t\"itemId\": \"ABC\",\r\n\t\t\t\t\"description\": \"Mattress\",\r\n\t\t\t\t\"sku\": \"D1234\",\r\n\t\t\t\t\"quantity\": 1,\r\n\t\t\t\t\"leasable\":true\r\n\t\t\t},\r\n            \t\t\t{\r\n\t\t\t\t\"price\": \"100.00\",\r\n\t\t\t\t\"itemId\": \"DEF\",\r\n\t\t\t\t\"description\": \"TV\",\r\n\t\t\t\t\"sku\": \"D1235\",\r\n\t\t\t\t\"quantity\": 1,\r\n\t\t\t\t\"leasable\":true,\r\n                \"itemType\": \"PRODUCT\"\r\n\t\t\t},\r\n            \t\t\t{\r\n\t\t\t\t\"price\": \"20.00\",\r\n\t\t\t\t\"itemId\": \"LMN\",\r\n\t\t\t\t\"description\": \"Misc Fee\",\r\n\t\t\t\t\"sku\": \"A0001\",\r\n\t\t\t\t\"quantity\": 1,\r\n\t\t\t\t\"leasable\":true,\r\n                \"itemType\": \"SERVICE\"\r\n\t\t\t}\r\n\t\t],\r\n\t\t\"shippingAddress\": {\r\n\t\t\t\"streetAddress\": \"456BroadwaySt\",\r\n\t\t\t\"city\": \"SaltLakeCity\",\r\n\t\t\t\"state\": \"UT\",\r\n\t\t\t\"country\": \"US\",\r\n\t\t\t\"postalCode\": \"84001\"\r\n\t\t}\r\n\t},\r\n\t\"bankInformation\": {\r\n\t\t\"bankName\": \"superBank\",\r\n\t\t\"bankCity\": \"miami\",\r\n\t\t\"bankState\": \"FL\",\r\n\t\t\"routingNumber\": \"051501451\",\r\n\t\t\"accountNumber\": \"{{account_number}}\",\r\n\t\t\"directDeposit\": true\r\n\t},\r\n\t\"incomeInformation\": [{\r\n\t\t\"employerName\": \"AcmeCorporation\",\r\n\t\t\"frequency\": \"BI_WEEKLY\",\r\n\t\t\"incomeAmount\": \"5000.00\",\r\n\t\t\"phone\": \"1234567890\",\r\n\t\t\"phoneCountryCode\": \"US\",\r\n\t\t\"positionHeld\": \"Associate\",\r\n\t\t\"type\": \"FULL_TIME\",\r\n\t\t\"lastPayDate\": \"2020-02-07\",\r\n\t\t\"nextPayDate\": \"2020-02-21\"\r\n\t}],\r\n        \"complianceDisclosures\": {\r\n        \"termsConditions\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"electronicTransaction\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"prequalifiedTermsConditions\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"eConsent\": {\r\n            \"timestamp\": \"10/23/2022\"\r\n        }\r\n    }\r\n}"},"url":"https://api-training.snapfinance.com/platform/v1/application"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"501"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:22:59 GMT"},{"key":"x-amzn-RequestId","value":"e23d261c-bd07-4f18-a450-563b74cffb98"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P01-cF-yvHcFqOA="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d05c-8ca7863001e6343c261bb0c4"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"oIqDWJQfKIdYPDwb0_5KbpoIfWv8EZUOWffcIB1Ac026PPjmaSAwWQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"applicationId\": \"{{applicationId}}\",\n        \"applicationStatus\": \"APPROVED\",\n        \"applicationSubStatus\": \"\",\n        \"message\": \"Application Approved\",\n        \"approvedAmount\": \"1810.00\",\n        \"applicationType\": \"LTO\",\n        \"currencyCode\": \"USD\",\n        \"applicationCreateTime\": \"2021-01-04T14:48:43.364Z\",\n        \"applicationUpdateTime\": \"2021-01-04T14:48:43.366Z\",\n  \"stbs\": false,\n       \"additionalInformation\": {\n            \"customerInformation\": \"Verified\",\n            \"cartInformation\": \"Verified\",\n            \"bankInformation\": \"Verified\",\n            \"incomeInformation\": \"Verified\"\n        }\n            },\n    \"status\": 200\n}"}],"_postman_id":"c48a8bff-9a68-4e8c-ae2a-df76fb54b8cc"},{"name":"Create Partner Application","event":[{"listen":"test","script":{"exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","pm.test(\"Success message\", function () {","    pm.expect(pm.response.text()).to.include(\"success\");","});","","pm.test(\"Set the application ID\", function () {","    var jsonData = pm.response.json();","    pm.environment.set(\"applicationId\", jsonData.data.applicationId);","});"],"type":"text/javascript","id":"67696d65-93d7-4c65-b11c-f10dd55269e2"}}],"id":"a814f873-f5ee-49f7-af3b-ff5c1ab5b042","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"<p>(optional - ID generated by the client)</p>\n","type":"text"},{"key":"Idempotency-Key","value":"","description":"<p>(optional - Idempotency key generated by the client)</p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"customerInformation\": {\r\n        \"dobDate\": \"1977-07-07\",\r\n        \"customerId\": \"{{social_4}}\",\r\n        \"customerIdType\": \"SSN4\",\r\n        \"mobilePhone\": \"1000000019\",\r\n        \"mobilePhoneCountry\": \"US\",\r\n        \"email\": \"test@test.com\",\r\n        \"firstName\": \"John\",\r\n        \"lastName\": \"Smith\",\r\n        \"salutation\": \"MR\",\r\n        \"billingAddress\": {\r\n            \"streetAddress\": \"123MainSt\",\r\n            \"city\": \"SaltLakeCity\",\r\n            \"state\": \"UT\",\r\n            \"country\": \"US\",\r\n            \"postalCode\": \"84001\"\r\n        },\r\n        \"driversLicenseNumber\": \"123456879\",\r\n        \"driversLicenseState\": \"FL\",\r\n        \"language\": \"EN\",\r\n        \"rentOwn\": \"OWN\",\r\n        \"timeAddressYears\": 0,\r\n        \"timeAddressMonths\": 2,\r\n        \"phoneOptIn\": true\r\n    },\r\n    \"supplementalDataInformation\": {\r\n        \"customerPastApps\": \"2\",\r\n        \"customerIP\": \"127.X.0.1\"\r\n    },\r\n    \"cartInformation\": {\r\n        \"currencyCode\": \"USD\",\r\n        \"taxAmount\": \"35.00\",\r\n        \"shippingAmount\": \"15.00\",\r\n        \"totalAmount\": \"320.00\",\r\n        \"discountAmount\": \"0.00\",\r\n        \"orderId\": \"041299\",\r\n        \"items\": [\r\n            {\r\n                \"price\": \"150.00\",\r\n                \"itemId\": \"ABC\",\r\n                \"description\": \"Mattress\",\r\n                \"sku\": \"D1234\",\r\n                \"quantity\": 1,\r\n                \"leasable\":true\r\n            },\r\n                        {\r\n                \"price\": \"100.00\",\r\n                \"itemId\": \"DEF\",\r\n                \"description\": \"TV\",\r\n                \"sku\": \"D1235\",\r\n                \"quantity\": 1,\r\n                \"leasable\":true,\r\n                \"itemType\": \"PRODUCT\"\r\n            },\r\n                        {\r\n                \"price\": \"20.00\",\r\n                \"itemId\": \"LMN\",\r\n                \"description\": \"Misc Fee\",\r\n                \"sku\": \"A0001\",\r\n                \"quantity\": 1,\r\n                \"leasable\":true,\r\n                \"itemType\": \"SERVICE\"\r\n            }\r\n        ],\r\n        \"shippingAddress\": {\r\n            \"streetAddress\": \"456BroadwaySt\",\r\n            \"city\": \"SaltLakeCity\",\r\n            \"state\": \"UT\",\r\n            \"country\": \"US\",\r\n            \"postalCode\": \"84001\"\r\n        }\r\n    },\r\n    \"bankInformation\": {\r\n        \"bankName\": \"superBank\",\r\n        \"bankCity\": \"miami\",\r\n        \"bankState\": \"FL\",\r\n        \"routingNumber\": \"051501451\",\r\n        \"accountNumber\": \"{{account_number}}\",\r\n        \"directDeposit\": true\r\n    },\r\n    \"incomeInformation\": [{\r\n        \"employerName\": \"AcmeCorporation\",\r\n        \"frequency\": \"BI_WEEKLY\",\r\n        \"incomeAmount\": \"5000.00\",\r\n        \"phone\": \"1234567890\",\r\n        \"phoneCountryCode\": \"US\",\r\n        \"positionHeld\": \"Associate\",\r\n        \"type\": \"FULL_TIME\",\r\n        \"lastPayDate\": \"2020-02-07\",\r\n        \"nextPayDate\": \"2020-02-21\"\r\n    }]\r\n}"},"url":"{{baseUrl}}/platform/v1/partner/application","description":"<h1 id=\"create-partner-application\">Create Partner Application</h1>\n<p>This endpoint creates an partner application and returns the decision on the application. It returns an applicationId if the application is approved and marks the application status as PREQUALIFIED/APPROVED/DENIED. Check the example requests to get one for each scenario.</p>\n<p><strong>Note</strong>: incomeInformation, cartInformation, and bankInformation objects are <strong>MANDATORY</strong> for a final approval (You can send those using the PATCH endpoint). If you are enrolled for a prequalification experience the customer can get PREQUALIFIED with customerInformation only.  Check with your integrator for the experience selected.</p>\n<h1 id=\"request-object\">Request Object</h1>\n<h2 id=\"customerinformationhash\"><code>customerInformation:hash</code></h2>\n<blockquote>\n<h4 id=\"dobdatestring\"><code>dobDate:string</code></h4>\n<ul>\n<li>Required</li>\n<li>Date should be in YYYY-MM-DD format. The customer should be older than 18 years to apply. Date of birth in ISO format</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"customeridstring\"><code>customerId:string</code></h4>\n<ul>\n<li>Required</li>\n<li>SSN number of the customer, four digits for SSN4 or 9 digits for SSN</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"customeridtypestring\"><code>customerIdType:string</code></h4>\n<ul>\n<li>Required</li>\n<li>Customer identification type in the country. Supported types are SSN or SSN4</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"mobilephonestring\"><code>mobilePhone:string</code></h4>\n<ul>\n<li>Required</li>\n<li>Verified customer phone number 10 digits</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"mobilephonecountrystring\"><code>mobilePhoneCountry:string</code></h4>\n<ul>\n<li>Required</li>\n<li>Country code in ISO 3166-1 alpha-2. Only US carriers are supported for now</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"emailstring\"><code>email:string</code></h4>\n<ul>\n<li>Required</li>\n<li>Properly formatted valid email address</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"firstnamestring\"><code>firstName:string</code></h4>\n<ul>\n<li>Required</li>\n<li>Can not be null or blank. It needs to be more than two characters</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"lastnamestring\"><code>lastName:string</code></h4>\n<ul>\n<li>Required</li>\n<li>Can not be null or blank. It needs to be more than two characters</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"salutationstring\"><code>salutation:string</code></h4>\n<ul>\n<li>Optional</li>\n<li>Customer salutation. Supported values are MR, MRS, MISS or NONE</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"driverslicensenumberstring\"><code>driversLicenseNumber:string</code></h4>\n<ul>\n<li>Optional</li>\n<li>Customer drivers license number. Valid driver license number</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"driverslicensestatestring\"><code>driversLicenseState:string</code></h4>\n<ul>\n<li>Optional</li>\n<li>Customer drivers license state. Valid US state in two characters</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"languagestring\"><code>language:string</code></h4>\n<ul>\n<li>Optional</li>\n<li>Language code preference of the customer. Supported values are EN or ES</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"rentownstring\"><code>rentOwn:string</code></h4>\n<ul>\n<li>Optional</li>\n<li>Customers current residential type whether it is rental or owned. Supported values are RENT or OWN</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"timeaddressyearsstring\"><code>timeAddressYears:string</code></h4>\n<ul>\n<li>Optional</li>\n<li>Positive number | Number of years the customer has lived at his or her current residential address</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"timeaddressmonthsstring\"><code>timeAddressMonths:string</code></h4>\n<ul>\n<li>Optional</li>\n<li>Positive number. Number of months the customer has lived at his or her current address</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"phoneoptinboolean\"><code>phoneOptIn:boolean</code></h4>\n<ul>\n<li>Optional</li>\n<li>Phone communication opt in for the customer. The customer must explicitly agree or disagree with phone communication</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"billingaddresshash\"><code>billingAddress:hash</code></h4>\n<ul>\n<li>Required</li>\n<li>Billing address of customer. Mostly will be his or her current residential address. Billing address used for lease agreement</li>\n</ul>\n<h4 id=\"billingaddressstreetaddressstring\"><code>billingAddress.streetAddress:string</code></h4>\n<blockquote>\n<ul>\n<li>Required</li>\n<li>Street address of customer</li>\n</ul>\n</blockquote>\n<h4 id=\"billingaddresscitystring\"><code>billingAddress.city:string</code></h4>\n<blockquote>\n<ul>\n<li>Required</li>\n<li>Any valid US city within LTO/SLN supported state</li>\n</ul>\n</blockquote>\n<h4 id=\"billingaddressstatestring\"><code>billingAddress.state:string</code></h4>\n<blockquote>\n<ul>\n<li>Required</li>\n<li>State or province of the customer. LTO/SLN supported states (NJ, MN and WI are non LTO states)</li>\n</ul>\n</blockquote>\n<h4 id=\"billingaddresscountrystring\"><code>billingAddress.country:string</code></h4>\n<blockquote>\n<ul>\n<li>Required</li>\n<li>Residence country of the customer. Only US is supported</li>\n</ul>\n</blockquote>\n<h4 id=\"billingaddresspostalcodestring\"><code>billingAddress.postalCode:string</code></h4>\n<blockquote>\n<ul>\n<li>Required</li>\n<li>Valid US zip code five digits</li>\n</ul>\n</blockquote>\n<h4 id=\"billingaddressunit-string\"><code>billingAddress.unit :string</code></h4>\n<blockquote>\n<ul>\n<li>Optional</li>\n<li>Unit number of the customer address</li>\n</ul>\n</blockquote>\n</blockquote>\n<h2 id=\"cartinformationhash--conditional\"><code>cartInformation:hash</code> * Conditional</h2>\n<blockquote>\n<h4 id=\"currencycodestring\"><code>currencyCode:string</code></h4>\n<ul>\n<li>Required</li>\n<li>Currency code of the cart only USD is allowed. Allowed value is USD only</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"taxamountstring-numeric\"><code>taxAmount:string (Numeric)</code></h4>\n<ul>\n<li>Optional</li>\n<li>Valid amount. Sales tax as per the customer and merchant state. Funding will be done accordingly for states where snap must collect sales tax</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"shippingamountstring-numeric\"><code>shippingAmount:string (Numeric)</code></h4>\n<ul>\n<li>Optional</li>\n<li>Valid shipping amount can be zero for free shipping product. Shipping amount for all the items within the cart</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"totalamountstring-numeric\"><code>totalAmount:string (Numeric)</code></h4>\n<ul>\n<li>Required</li>\n<li>Total amount of the cart Information. (ItemPrice * Qty) + taxAmount + shippingAmount - discount</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"discountamountstring-numeric\"><code>discountAmount:string (Numeric)</code></h4>\n<ul>\n<li>Optional</li>\n<li>Discount amount of the cart information. Valid positive amount</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"orderidstring\"><code>orderId:string</code></h4>\n<ul>\n<li>Required</li>\n<li>Order ID within merchant's order management system. Any alpha numeric value</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"itemshash-array\"><code>items:hash array</code></h4>\n<ul>\n<li>Required</li>\n<li>An array with at least one item. Leasable (for LTO) items within the cart</li>\n</ul>\n<h4 id=\"itemspricestring-numeric\"><code>items.price:string (Numeric)</code></h4>\n<blockquote>\n<ul>\n<li>Required</li>\n<li>Positive value. Unit price of an Item</li>\n</ul>\n</blockquote>\n<h4 id=\"itemsitemidstring\"><code>items.itemId:string</code></h4>\n<blockquote>\n<ul>\n<li>Required</li>\n<li>Within the same Order can not have two items with the same item ID. Unique item ID within customer order management system</li>\n</ul>\n</blockquote>\n<h4 id=\"itemsdescriptionstring\"><code>items.description:string</code></h4>\n<blockquote>\n<ul>\n<li>Required</li>\n<li>Title of the item</li>\n</ul>\n</blockquote>\n<h4 id=\"itemsskustring\"><code>items.sku:string</code></h4>\n<blockquote>\n<ul>\n<li>Optional</li>\n<li>SKU number associated with the item</li>\n</ul>\n</blockquote>\n<h4 id=\"itemsquantityinteger\"><code>items.quantity:Integer</code></h4>\n<blockquote>\n<ul>\n<li>Required</li>\n<li>Quantity of each item</li>\n</ul>\n</blockquote>\n<h4 id=\"itemsleasableboolean\"><code>items.leasable:boolean</code></h4>\n<blockquote>\n<ul>\n<li>Required for LTO and optional for SLN</li>\n<li>All the items within the cart should be leasable for LTO. Indicator flag provided by the merchant as agreed with Snap Finance</li>\n</ul>\n</blockquote>\n<h4 id=\"itemsitemtypestring\"><code>items.itemType:string</code></h4>\n<blockquote>\n<ul>\n<li>Optional</li>\n<li>Item type indicates whether the item is a physical product or not. Accepted values PRODUCT | SERVICE. Default value: PRODUCT</li>\n</ul>\n</blockquote>\n</blockquote>\n<blockquote>\n<h4 id=\"shippingaddresshash\"><code>shippingAddress:hash</code></h4>\n<ul>\n<li>Required</li>\n<li>Shipping address object</li>\n</ul>\n<h4 id=\"shippingaddressstreetaddressstring\"><code>shippingAddress.streetAddress:string</code></h4>\n<blockquote>\n<ul>\n<li>Required</li>\n<li>P.O boxes are not allowed. Street address where the item will be shipped</li>\n</ul>\n</blockquote>\n<h4 id=\"shippingaddresscitystring\"><code>shippingAddress.city:string</code></h4>\n<blockquote>\n<ul>\n<li>Required</li>\n<li>P.O boxes are not allowed. City where the items will be shipped</li>\n</ul>\n</blockquote>\n<h4 id=\"shippingaddressstatestring\"><code>shippingAddress.state:string</code></h4>\n<blockquote>\n<ul>\n<li>Required</li>\n<li>Valid US state. US state where the item will be shipped</li>\n</ul>\n</blockquote>\n<h4 id=\"shippingaddresscountrystring\"><code>shippingAddress.country:string</code></h4>\n<blockquote>\n<ul>\n<li>Required</li>\n<li>Only US is supported</li>\n</ul>\n</blockquote>\n<h4 id=\"shippingaddresspostalcodestring\"><code>shippingAddress.postalCode:string</code></h4>\n<blockquote>\n<ul>\n<li>Required</li>\n<li>Valid US zip code. Postal code of the shipping address</li>\n</ul>\n</blockquote>\n<h4 id=\"shippingaddressunit-string\"><code>shippingAddress.unit :string</code></h4>\n<blockquote>\n<ul>\n<li>Optional</li>\n<li>Unit number of the customer address</li>\n</ul>\n</blockquote>\n</blockquote>\n<h2 id=\"bankinformationhash--conditional\"><code>bankInformation:hash</code> * Conditional</h2>\n<blockquote>\n<h4 id=\"routingnumberstring\"><code>routingNumber:string</code></h4>\n<ul>\n<li>Required</li>\n<li>Nine digits routing number | Customers bank routing number</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"accountnumberstring\"><code>accountNumber:string</code></h4>\n<ul>\n<li>Required</li>\n<li>Four to fifteen digits account number | Customers bank account number</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"banknamestring\"><code>bankName:string</code></h4>\n<ul>\n<li>Optional</li>\n<li>Customers bank name</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"bankcitystring\"><code>bankCity:string</code></h4>\n<ul>\n<li>Optional</li>\n<li>City of the customers banking branch</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"bankstatestring\"><code>bankState:string</code></h4>\n<ul>\n<li>Optional</li>\n<li>State of the customers banking branch</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"directdepositboolean\"><code>directDeposit:boolean</code></h4>\n<ul>\n<li>Optional</li>\n<li>Whether the account has a direct deposit of the customer's salary</li>\n</ul>\n</blockquote>\n<h2 id=\"incomeinformationhash-array--conditional\"><code>incomeInformation:hash array</code> * Conditional</h2>\n<blockquote>\n<h4 id=\"frequencystring\"><code>frequency:string</code></h4>\n<ul>\n<li>Required</li>\n<li>Frequency of the customer's earnings. Allowed values are WEEKLY, BI_WEEKLY, SEMI_MONTHLY or MONTHLY</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"incomeamountstring\"><code>incomeAmount:string</code></h4>\n<ul>\n<li>Required</li>\n<li>Income per frequency specified. Positive amount</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"lastpaydatestring-date\"><code>lastPayDate:string (Date)</code></h4>\n<ul>\n<li>Required</li>\n<li>Last pay date of the customer. Format YYYY-MM-DD</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"nextpaydatestring-date\"><code>nextPayDate:string (Date)</code></h4>\n<ul>\n<li>Required</li>\n<li>Next pay date of the customer. Format YYYY-MM-DD</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"typestring\"><code>type:string</code></h4>\n<ul>\n<li>Optional</li>\n<li>Type of customer income. Allowed values are FULL_TIME, PART_TIME, SELF_EMPLOYMENT, BENEFITS or OTHER</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"positionheldstring\"><code>positionHeld:string</code></h4>\n<ul>\n<li>Optional</li>\n<li>Position held of the income information</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"phonestring\"><code>phone:string</code></h4>\n<ul>\n<li>Optional</li>\n<li>Customers employer phone number. Ten digits string number</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"phonecountrycodestring\"><code>phoneCountryCode:string</code></h4>\n<ul>\n<li>Optional</li>\n<li>Employers' phone country code. Only US phone numbers are supported</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"employernamestring\"><code>employerName:string</code></h4>\n<ul>\n<li>Optional</li>\n<li>Employer name of the income information</li>\n</ul>\n</blockquote>\n<h2 id=\"supplementaldatainformationhash\"><code>supplementalDataInformation:hash</code></h2>\n<blockquote>\n<h4 id=\"annualincomestring\"><code>annualIncome:string</code></h4>\n<ul>\n<li>Optional</li>\n<li>Annual income amount. Positive amount</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"customeripstring\"><code>customerIP:string</code></h4>\n<ul>\n<li>Optional</li>\n<li>Customer IP Address</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"customerpastappsstring\"><code>customerPastApps:string</code></h4>\n<ul>\n<li>Optional</li>\n<li>Customer number of past applications</li>\n</ul>\n</blockquote>\n<h2 id=\"partnerinformationhash\"><code>partnerInformation:hash</code></h2>\n<blockquote>\n<h4 id=\"uniqueidentifierstring\"><code>uniqueIdentifier:string</code></h4>\n<ul>\n<li>Optional</li>\n<li>Partner Store Id</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"uniqueapplicationidstring\"><code>uniqueApplicationId:string</code></h4>\n<ul>\n<li>Optional</li>\n<li>Partner Application Id</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"uniquetransactionidstring\"><code>uniqueTransactionId:string</code></h4>\n<ul>\n<li>Optional</li>\n<li>Partner Transaction Id / API unique Request Id</li>\n</ul>\n</blockquote>\n<h1 id=\"response-object\">Response Object</h1>\n<h2 id=\"datahash\"><code>data:hash</code></h2>\n<blockquote>\n<h4 id=\"applicationstatusstring\"><code>applicationStatus:string</code></h4>\n<ul>\n<li>Status of the application</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"applicationsubstatusstring\"><code>applicationSubStatus:string</code></h4>\n<ul>\n<li>Sub-status of the application</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"applicationidstring\"><code>applicationId:string</code></h4>\n<ul>\n<li>Application ID</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"messagestring\"><code>message:string</code></h4>\n<ul>\n<li>Application information</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"applicationtypestring\"><code>applicationType:string</code></h4>\n<ul>\n<li>Application type. Posibble values are LTO for lease merchants and SLN for loan merchants</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"processingfeestring\"><code>processingFee:string</code></h4>\n<ul>\n<li>Processing fee amount</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"currencycodestring-1\"><code>currencyCode:string</code></h4>\n<ul>\n<li>Currency code</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"approvedamountstring\"><code>approvedAmount:string</code></h4>\n<ul>\n<li>Approved amount</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"applicationcreatetimestring\"><code>applicationCreateTime:string</code></h4>\n<ul>\n<li>Application creation time in UTC Standard. Example 2020-02-21T18:00:00Z</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"applicationupdatetimestring\"><code>applicationUpdateTime:string</code></h4>\n<ul>\n<li>Application update time in UTC Standard. Example 2020-02-21T18:00:00Z</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"stbsboolean\"><code>stbs:boolean</code></h4>\n<ul>\n<li>Sales tax by snap flag</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"additionalinformationhash\"><code>additionalInformation:hash</code></h4>\n<ul>\n<li>Information of the application</li>\n</ul>\n<h4 id=\"additionalinformationcustomerinformationstring\"><code>additionalInformation.customerInformation:string</code></h4>\n<blockquote>\n<ul>\n<li>Status of the customer information. Possible values are  VERIFIED or PENDING</li>\n</ul>\n</blockquote>\n<h4 id=\"additionalinformationbankinformationstring\"><code>additionalInformation.bankInformation:string</code></h4>\n<blockquote>\n<ul>\n<li>Status of the bank information. Possible values are  VERIFIED or PENDING</li>\n</ul>\n</blockquote>\n<h4 id=\"additionalinformationincomeinformationstring\"><code>additionalInformation.incomeInformation:string</code></h4>\n<blockquote>\n<ul>\n<li>Status of the income information. Possible values are  VERIFIED or PENDING</li>\n</ul>\n</blockquote>\n<h4 id=\"additionalinformationcartinformationstring\"><code>additionalInformation.cartInformation:string</code></h4>\n<blockquote>\n<ul>\n<li>Status of the cart information. Possible values are  VERIFIED or PENDING</li>\n</ul>\n</blockquote>\n</blockquote>\n<h2 id=\"successboolean\"><code>success:boolean</code></h2>\n<blockquote>\n<ul>\n<li>Value with the result of the request. Possible values are TRUE or FALSE</li>\n</ul>\n</blockquote>\n<h2 id=\"statusinteger\"><code>status:integer</code></h2>\n<blockquote>\n<ul>\n<li>Value with status code of the request. For example: 200, 400, 404</li>\n</ul>\n</blockquote>\n","urlObject":{"path":["platform","v1","partner","application"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"ece6c00c-5942-4454-9fd3-4fb67d2a7758","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCIsImtpZCI6IlJqRkJNa1JETlRVME1FTXpORU5GTWtNeE1UQkJPVE5DUlRjNE9UWTJORVJFTmtZNU1VSXpNZyJ9","type":"text"},{"key":"Request-Id","value":"123","type":"text"},{"key":"Idempotency-Key","value":"f18fc09a-450d-4ad8-a429-4b1d632fbb64","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"customerInformation\": {\r\n\t\t\"dobDate\": \"1977-07-07\",\r\n\t\t\"customerId\": \"{{social_4}}\",\r\n\t\t\"customerIdType\": \"SSN4\",\r\n\t\t\"mobilePhone\": \"1000000019\",\r\n\t\t\"mobilePhoneCountry\": \"US\",\r\n\t\t\"email\": \"test@test.com\",\r\n\t\t\"firstName\": \"John\",\r\n\t\t\"lastName\": \"Smith\",\r\n\t\t\"salutation\": \"MR\",\r\n\t\t\"billingAddress\": {\r\n\t\t\t\"streetAddress\": \"123MainSt\",\r\n\t\t\t\"city\": \"SaltLakeCity\",\r\n\t\t\t\"state\": \"UT\",\r\n\t\t\t\"country\": \"US\",\r\n\t\t\t\"postalCode\": \"84001\"\r\n\t\t},\r\n\t\t\"driversLicenseNumber\": \"123456879\",\r\n\t\t\"driversLicenseState\": \"FL\",\r\n\t\t\"language\": \"EN\",\r\n\t\t\"rentOwn\": \"OWN\",\r\n\t\t\"timeAddressYears\": 0,\r\n\t\t\"timeAddressMonths\": 2,\r\n\t\t\"phoneOptIn\": true\r\n\t},\r\n\t\"supplementalDataInformation\": {\r\n\t\t\"customerPastApps\": \"2\",\r\n\t\t\"customerIP\": \"127.X.0.1\",\r\n        \"annualIncome\": \"50000.00\"\r\n\t},\r\n\t\"cartInformation\": {\r\n\t\t\"currencyCode\": \"USD\",\r\n\t\t\"taxAmount\": \"35.00\",\r\n\t\t\"shippingAmount\": \"15.00\",\r\n\t\t\"totalAmount\": \"320.00\",\r\n\t\t\"discountAmount\": \"0.00\",\r\n\t\t\"orderId\": \"041299\",\r\n\t\t\"items\": [\r\n\t\t\t{\r\n\t\t\t\t\"price\": \"150.00\",\r\n\t\t\t\t\"itemId\": \"ABC\",\r\n\t\t\t\t\"description\": \"Mattress\",\r\n\t\t\t\t\"sku\": \"D1234\",\r\n\t\t\t\t\"quantity\": 1,\r\n\t\t\t\t\"leasable\":true\r\n\t\t\t},\r\n            \t\t\t{\r\n\t\t\t\t\"price\": \"100.00\",\r\n\t\t\t\t\"itemId\": \"DEF\",\r\n\t\t\t\t\"description\": \"TV\",\r\n\t\t\t\t\"sku\": \"D1235\",\r\n\t\t\t\t\"quantity\": 1,\r\n\t\t\t\t\"leasable\":true,\r\n                \"itemType\": \"PRODUCT\"\r\n\t\t\t},\r\n            \t\t\t{\r\n\t\t\t\t\"price\": \"20.00\",\r\n\t\t\t\t\"itemId\": \"LMN\",\r\n\t\t\t\t\"description\": \"Misc Fee\",\r\n\t\t\t\t\"sku\": \"A0001\",\r\n\t\t\t\t\"quantity\": 1,\r\n\t\t\t\t\"leasable\":true,\r\n                \"itemType\": \"SERVICE\"\r\n\t\t\t}\r\n\t\t],\r\n\t\t\"shippingAddress\": {\r\n\t\t\t\"streetAddress\": \"456BroadwaySt\",\r\n\t\t\t\"city\": \"SaltLakeCity\",\r\n\t\t\t\"state\": \"UT\",\r\n\t\t\t\"country\": \"US\",\r\n\t\t\t\"postalCode\": \"84001\"\r\n\t\t}\r\n\t},\r\n\t\"bankInformation\": {\r\n\t\t\"bankName\": \"superBank\",\r\n\t\t\"bankCity\": \"miami\",\r\n\t\t\"bankState\": \"FL\",\r\n\t\t\"routingNumber\": \"051501451\",\r\n\t\t\"accountNumber\": \"{{account_number}}\",\r\n\t\t\"directDeposit\": true\r\n\t},\r\n\t\"incomeInformation\": [{\r\n\t\t\"employerName\": \"AcmeCorporation\",\r\n\t\t\"frequency\": \"BI_WEEKLY\",\r\n\t\t\"incomeAmount\": \"5000.00\",\r\n\t\t\"phone\": \"1234567890\",\r\n\t\t\"phoneCountryCode\": \"US\",\r\n\t\t\"positionHeld\": \"Associate\",\r\n\t\t\"type\": \"FULL_TIME\",\r\n\t\t\"lastPayDate\": \"2020-02-07\",\r\n\t\t\"nextPayDate\": \"2020-02-21\"\r\n\t}]\r\n}"},"url":"https://api-training.snapfinance.com/platform/v1/partner/application"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"501"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:22:59 GMT"},{"key":"x-amzn-RequestId","value":"e23d261c-bd07-4f18-a450-563b74cffb98"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P01-cF-yvHcFqOA="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d05c-8ca7863001e6343c261bb0c4"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"oIqDWJQfKIdYPDwb0_5KbpoIfWv8EZUOWffcIB1Ac026PPjmaSAwWQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"applicationId\": \"{{applicationId}}\",\n        \"applicationStatus\": \"APPROVED\",\n        \"applicationSubStatus\": \"\",\n        \"message\": \"Application Approved\",\n        \"approvedAmount\": \"1810.00\",\n        \"applicationType\": \"LTO\",\n        \"currencyCode\": \"USD\",\n        \"applicationCreateTime\": \"2021-01-04T14:48:43.364Z\",\n        \"applicationUpdateTime\": \"2021-01-04T14:48:43.366Z\",\n  \"stbs\": false,\n       \"additionalInformation\": {\n            \"customerInformation\": \"Verified\",\n            \"cartInformation\": \"Verified\",\n            \"bankInformation\": \"Verified\",\n            \"incomeInformation\": \"Verified\"\n        }\n            },\n    \"status\": 200\n}"},{"id":"4bd648c4-8e84-4254-800e-d759e71afb8c","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-Id","value":"123","type":"text"},{"key":"Idempotency-Key","value":"f18fc09a-450d-4ad8-a429-4b1d632fbb64","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"customerInformation\": {\r\n\t\t\"dobDate\": \"1977-07-07\",\r\n\t\t\"customerId\": \"{{social_4}}\",\r\n\t\t\"customerIdType\": \"SSN4\",\r\n\t\t\"mobilePhone\": \"1000000019\",\r\n\t\t\"firstName\": \"John\",\r\n\t\t\"lastName\": \"Smith\",\r\n\t\t\"salutation\": \"MR\",\r\n\t\t\"billingAddress\": {\r\n\t\t\t\"streetAddress\": \"123MainSt\",\r\n\t\t\t\"city\": \"SaltLakeCity\",\r\n\t\t\t\"state\": \"UT\",\r\n\t\t\t\"country\": \"US\",\r\n\t\t\t\"postalCode\": \"84001\",\r\n\t\t\t\"unit\": \"12\"\r\n\t\t},\r\n\t\t\"driversLicenseNumber\": \"123456879\",\r\n\t\t\"driversLicenseState\": \"FL\",\r\n\t\t\"language\": \"EN\",\r\n\t\t\"rentOwn\": \"OWN\",\r\n\t\t\"timeAddressYears\": 0,\r\n\t\t\"timeAddressMonths\": 2,\r\n\t\t\"phoneOptIn\": true\r\n\t},\r\n\t\"supplementalDataInformation\": {\r\n\t\t\"customerPastApps\": \"2\",\r\n\t\t\"customerIP\": \"127.X.0.1\"\r\n\t},\r\n\t\"cartInformation\": {\r\n\t\t\"currencyCode\": \"USD\",\r\n\t\t\"taxAmount\": \"86.03\",\r\n\t\t\"shippingAmount\": \"15.00\",\r\n\t\t\"totalAmount\": \"3872.00\",\r\n\t\t\"discountAmount\": \"0.00\",\r\n\t\t\"orderId\": \"041299\",\r\n\t\t\"items\": [\r\n\t\t\t{\r\n\t\t\t\t\"price\": \"1.00\",\r\n\t\t\t\t\"itemId\": \"ABC\",\r\n\t\t\t\t\"description\": \"Mattress\",\r\n\t\t\t\t\"sku\": \"D1234\",\r\n\t\t\t\t\"quantity\": 1,\r\n\t\t\t\t\"leasable\":true\r\n\t\t\t}\r\n\t\t],\r\n\t\t\"shippingAddress\": {\r\n\t\t\t\"streetAddress\": \"456BroadwaySt\",\r\n\t\t\t\"city\": \"SaltLakeCity\",\r\n\t\t\t\"state\": \"UT\",\r\n\t\t\t\"country\": \"US\",\r\n\t\t\t\"postalCode\": \"84001\",\r\n\t\t\t\"unit\": \"12\"\r\n\t\t}\r\n\t},\r\n\t\"bankInformation\": {\r\n\t\t\"bankName\": \"superBank\",\r\n\t\t\"bankCity\": \"miami\",\r\n\t\t\"bankState\": \"FL\",\r\n\t\t\"routingNumber\": \"051501451\",\r\n\t\t\"accountNumber\": \"{{account_number}}\",\r\n\t\t\"directDeposit\": true\r\n\t},\r\n\t\"incomeInformation\": [{\r\n\t\t\"employerName\": \"AcmeCorporation\",\r\n\t\t\"frequency\": \"BI_WEEKLY\",\r\n\t\t\"incomeAmount\": \"5000.00\",\r\n\t\t\"phone\": \"1234567890\",\r\n\t\t\"phoneCountryCode\": \"US\",\r\n\t\t\"positionHeld\": \"Associate\",\r\n\t\t\"type\": \"FULL_TIME\",\r\n\t\t\"lastPayDate\": \"2020-02-07\",\r\n\t\t\"nextPayDate\": \"2020-02-21\"\r\n\t}]\r\n}"},"url":"{{baseUrl}}/platform/v1/partner/application"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"309"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 21:55:44 GMT"},{"key":"x-amzn-RequestId","value":"851d86b2-205d-459f-ab0a-0ae317f87cb7"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P1mvCFRMPHcFV3Q="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f121e60-2d34f3d0a424dff4c50cfdbc"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 880eb84cefca849ee159a7c4d89c31ea.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"_llfqhKZaTjGHP6IrWAtmfcMgvxflPD5-FleE3Gjzn2GzoII_mblWA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"status\": 400,\n    \"error\": [\n        {\n            \"code\": \"customerInformation_mobilePhoneCountry_missing\",\n            \"type\": \"invalid_request_error\",\n            \"message\": \"Customer mobile phone country code is missing\"\n        },\n        {\n            \"code\": \"customerInformation_email_missing\",\n            \"type\": \"invalid_request_error\",\n            \"message\": \"Customer email address is missing\"\n        }\n    ]\n}"},{"id":"21169532-7b79-4985-bd90-359a19da5552","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-Id","value":"123","type":"text"},{"key":"Idempotency-Key","value":"f18fc09a-450d-4ad8-a429-4b1d632fbb64","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"customerInformation\": {\r\n\t\t\"dobDate\": \"1977-07-07\",\r\n\t\t\"customerId\": \"{{social_4}}\",\r\n\t\t\"customerIdType\": \"SSN4\",\r\n\t\t\"mobilePhone\": \"1000000019\",\r\n\t\t\"firstName\": \"John\",\r\n\t\t\"lastName\": \"Smith\",\r\n\t\t\"salutation\": \"MR\",\r\n\t\t\"billingAddress\": {\r\n\t\t\t\"streetAddress\": \"123MainSt\",\r\n\t\t\t\"city\": \"SaltLakeCity\",\r\n\t\t\t\"state\": \"UT\",\r\n\t\t\t\"country\": \"US\",\r\n\t\t\t\"postalCode\": \"84001\",\r\n\t\t\t\"unit\": \"12\"\r\n\t\t},\r\n\t\t\"driversLicenseNumber\": \"123456879\",\r\n\t\t\"driversLicenseState\": \"FL\",\r\n\t\t\"language\": \"EN\",\r\n\t\t\"rentOwn\": \"OWN\",\r\n\t\t\"timeAddressYears\": 0,\r\n\t\t\"timeAddressMonths\": 2,\r\n\t\t\"phoneOptIn\": true\r\n\t},\r\n\t\"supplementalDataInformation\": {\r\n\t\t\"customerPastApps\": \"2\",\r\n\t\t\"customerIP\": \"127.X.0.1\"\r\n\t},\r\n\t\"cartInformation\": {\r\n\t\t\"currencyCode\": \"USD\",\r\n\t\t\"taxAmount\": \"86.03\",\r\n\t\t\"shippingAmount\": \"15.00\",\r\n\t\t\"totalAmount\": \"3872.00\",\r\n\t\t\"discountAmount\": \"0.00\",\r\n\t\t\"orderId\": \"041299\",\r\n\t\t\"items\": [\r\n\t\t\t{\r\n\t\t\t\t\"price\": \"1.00\",\r\n\t\t\t\t\"itemId\": \"ABC\",\r\n\t\t\t\t\"description\": \"Mattress\",\r\n\t\t\t\t\"sku\": \"D1234\",\r\n\t\t\t\t\"quantity\": 1,\r\n\t\t\t\t\"leasable\":true\r\n\t\t\t}\r\n\t\t],\r\n\t\t\"shippingAddress\": {\r\n\t\t\t\"streetAddress\": \"456BroadwaySt\",\r\n\t\t\t\"city\": \"SaltLakeCity\",\r\n\t\t\t\"state\": \"UT\",\r\n\t\t\t\"country\": \"US\",\r\n\t\t\t\"postalCode\": \"84001\",\r\n\t\t\t\"unit\": \"12\"\r\n\t\t}\r\n\t},\r\n\t\"bankInformation\": {\r\n\t\t\"bankName\": \"superBank\",\r\n\t\t\"bankCity\": \"miami\",\r\n\t\t\"bankState\": \"FL\",\r\n\t\t\"routingNumber\": \"051501451\",\r\n\t\t\"accountNumber\": \"{{account_number}}\",\r\n\t\t\"directDeposit\": true\r\n\t},\r\n\t\"incomeInformation\": [{\r\n\t\t\"employerName\": \"AcmeCorporation\",\r\n\t\t\"frequency\": \"BI_WEEKLY\",\r\n\t\t\"incomeAmount\": \"5000.00\",\r\n\t\t\"phone\": \"1234567890\",\r\n\t\t\"phoneCountryCode\": \"US\",\r\n\t\t\"positionHeld\": \"Associate\",\r\n\t\t\"type\": \"FULL_TIME\",\r\n\t\t\"lastPayDate\": \"2020-02-07\",\r\n\t\t\"nextPayDate\": \"2020-02-21\"\r\n\t}]\r\n}"},"url":"{{baseUrl}}/platform/v1/partner/application"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"309"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 21:55:44 GMT"},{"key":"x-amzn-RequestId","value":"851d86b2-205d-459f-ab0a-0ae317f87cb7"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P1mvCFRMPHcFV3Q="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f121e60-2d34f3d0a424dff4c50cfdbc"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 880eb84cefca849ee159a7c4d89c31ea.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"_llfqhKZaTjGHP6IrWAtmfcMgvxflPD5-FleE3Gjzn2GzoII_mblWA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"status\": 400,\n    \"error\": [\n        {\n            \"code\": \"customerInformation_mobilePhoneCountry_missing\",\n            \"type\": \"invalid_request_error\",\n            \"message\": \"Customer mobile phone country code is missing\"\n        },\n        {\n            \"code\": \"customerInformation_email_missing\",\n            \"type\": \"invalid_request_error\",\n            \"message\": \"Customer email address is missing\"\n        }\n    ]\n}"},{"id":"44efe158-4021-4a29-95e2-ef97b5688c3a","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCIsImtpZCI6IlJqRkJNa1JETlRVME1FTXpORU5GTWtNeE1UQkJPVE5DUlRjNE9UWTJORVJFTmtZNU1VSXpNZyJ9","type":"text"},{"key":"Request-Id","value":"123","type":"text"},{"key":"Idempotency-Key","value":"f18fc09a-450d-4ad8-a429-4b1d632fbb64","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"customerInformation\": {\r\n\t\t\"dobDate\": \"1977-07-07\",\r\n\t\t\"customerId\": \"{{social_4}}\",\r\n\t\t\"customerIdType\": \"SSN4\",\r\n\t\t\"mobilePhone\": \"1000000019\",\r\n\t\t\"mobilePhoneCountry\": \"US\",\r\n\t\t\"email\": \"test@test.com\",\r\n\t\t\"firstName\": \"John\",\r\n\t\t\"lastName\": \"Smith\",\r\n\t\t\"salutation\": \"MR\",\r\n\t\t\"billingAddress\": {\r\n\t\t\t\"streetAddress\": \"123MainSt\",\r\n\t\t\t\"city\": \"SaltLakeCity\",\r\n\t\t\t\"state\": \"UT\",\r\n\t\t\t\"country\": \"US\",\r\n\t\t\t\"postalCode\": \"84001\"\r\n\t\t},\r\n\t\t\"driversLicenseNumber\": \"123456879\",\r\n\t\t\"driversLicenseState\": \"FL\",\r\n\t\t\"language\": \"EN\",\r\n\t\t\"rentOwn\": \"OWN\",\r\n\t\t\"timeAddressYears\": 0,\r\n\t\t\"timeAddressMonths\": 2,\r\n\t\t\"phoneOptIn\": true\r\n\t},\r\n\t\"supplementalDataInformation\": {\r\n\t\t\"customerPastApps\": \"2\",\r\n\t\t\"customerIP\": \"127.X.0.1\",\r\n        \"annualIncome\": \"50000.00\"\r\n\t},\r\n\t\"cartInformation\": {\r\n\t\t\"currencyCode\": \"USD\",\r\n\t\t\"taxAmount\": \"35.00\",\r\n\t\t\"shippingAmount\": \"15.00\",\r\n\t\t\"totalAmount\": \"320.00\",\r\n\t\t\"discountAmount\": \"0.00\",\r\n\t\t\"orderId\": \"041299\",\r\n\t\t\"items\": [\r\n\t\t\t{\r\n\t\t\t\t\"price\": \"150.00\",\r\n\t\t\t\t\"itemId\": \"ABC\",\r\n\t\t\t\t\"description\": \"Mattress\",\r\n\t\t\t\t\"sku\": \"D1234\",\r\n\t\t\t\t\"quantity\": 1,\r\n\t\t\t\t\"leasable\":true\r\n\t\t\t},\r\n            \t\t\t{\r\n\t\t\t\t\"price\": \"100.00\",\r\n\t\t\t\t\"itemId\": \"DEF\",\r\n\t\t\t\t\"description\": \"TV\",\r\n\t\t\t\t\"sku\": \"D1235\",\r\n\t\t\t\t\"quantity\": 1,\r\n\t\t\t\t\"leasable\":true,\r\n                \"itemType\": \"PRODUCT\"\r\n\t\t\t},\r\n            \t\t\t{\r\n\t\t\t\t\"price\": \"20.00\",\r\n\t\t\t\t\"itemId\": \"LMN\",\r\n\t\t\t\t\"description\": \"Misc Fee\",\r\n\t\t\t\t\"sku\": \"A0001\",\r\n\t\t\t\t\"quantity\": 1,\r\n\t\t\t\t\"leasable\":true,\r\n                \"itemType\": \"SERVICE\"\r\n\t\t\t}\r\n\t\t],\r\n\t\t\"shippingAddress\": {\r\n\t\t\t\"streetAddress\": \"456BroadwaySt\",\r\n\t\t\t\"city\": \"SaltLakeCity\",\r\n\t\t\t\"state\": \"UT\",\r\n\t\t\t\"country\": \"US\",\r\n\t\t\t\"postalCode\": \"84001\"\r\n\t\t}\r\n\t},\r\n\t\"bankInformation\": {\r\n\t\t\"bankName\": \"superBank\",\r\n\t\t\"bankCity\": \"miami\",\r\n\t\t\"bankState\": \"FL\",\r\n\t\t\"routingNumber\": \"051501451\",\r\n\t\t\"accountNumber\": \"{{account_number}}\",\r\n\t\t\"directDeposit\": true\r\n\t},\r\n\t\"incomeInformation\": [{\r\n\t\t\"employerName\": \"AcmeCorporation\",\r\n\t\t\"frequency\": \"BI_WEEKLY\",\r\n\t\t\"incomeAmount\": \"5000.00\",\r\n\t\t\"phone\": \"1234567890\",\r\n\t\t\"phoneCountryCode\": \"US\",\r\n\t\t\"positionHeld\": \"Associate\",\r\n\t\t\"type\": \"FULL_TIME\",\r\n\t\t\"lastPayDate\": \"2020-02-07\",\r\n\t\t\"nextPayDate\": \"2020-02-21\"\r\n\t}]\r\n}"},"url":"https://api-training.snapfinance.com/platform/v1/partner/application"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"501"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:22:59 GMT"},{"key":"x-amzn-RequestId","value":"e23d261c-bd07-4f18-a450-563b74cffb98"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P01-cF-yvHcFqOA="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d05c-8ca7863001e6343c261bb0c4"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"oIqDWJQfKIdYPDwb0_5KbpoIfWv8EZUOWffcIB1Ac026PPjmaSAwWQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"applicationId\": \"{{applicationId}}\",\n        \"applicationStatus\": \"APPROVED\",\n        \"applicationSubStatus\": \"\",\n        \"message\": \"Application Approved\",\n        \"approvedAmount\": \"1810.00\",\n        \"applicationType\": \"LTO\",\n        \"currencyCode\": \"USD\",\n        \"applicationCreateTime\": \"2021-01-04T14:48:43.364Z\",\n        \"applicationUpdateTime\": \"2021-01-04T14:48:43.366Z\",\n  \"stbs\": false,\n       \"additionalInformation\": {\n            \"customerInformation\": \"Verified\",\n            \"cartInformation\": \"Verified\",\n            \"bankInformation\": \"Verified\",\n            \"incomeInformation\": \"Verified\"\n        }\n            },\n    \"status\": 200\n}"}],"_postman_id":"a814f873-f5ee-49f7-af3b-ff5c1ab5b042"},{"name":"Application Status","event":[{"listen":"test","script":{"exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});\r","pm.test(\"Success message\", function () {\r","    pm.expect(pm.response.text()).to.include(\"success\");\r","});"],"type":"text/javascript","id":"5bd9fb19-0604-4a9d-9a08-9f193b174642"}}],"id":"02f9f6fc-8435-4f6a-b017-502efe6f546b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"<p>(optional - ID generated by the client)</p>\n","type":"text"}],"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/status","description":"<h1 id=\"application-status\">Application Status</h1>\n<p>This endpoint gets the current status of the application.</p>\n<h2 id=\"path-params\">PATH PARAMS</h2>\n<blockquote>\n<h2 id=\"applicationidstring\"><code>applicationId:string</code></h2>\n<ul>\n<li>Required</li>\n<li>ApplicationId is returned when calling the create application endpoint</li>\n</ul>\n</blockquote>\n<h2 id=\"possible-status-values\">Possible Status Values</h2>\n<ul>\n<li>PREQUALIFIED : Application was prequalified</li>\n<li>PENDING : Application is being created </li>\n<li>APPROVED : Application approved</li>\n<li>PENDING_SIGNED_DOCS : Customer needs to sign the agreement </li>\n<li>PENDING_DEL : Agreement was signed, pending product delivery</li>\n<li>COMPLETE : Product delivered. Application ready</li>\n<li>DENIED : Application denied</li>\n<li>WITHDRAWN : Application withdrawn</li>\n</ul>\n<h2 id=\"possible-sub-status-values\">Possible Sub-status Values</h2>\n<ul>\n<li>PENDING_SHIPPING : Pending product shipping</li>\n<li>SHIPPED : Product(s) shipped</li>\n<li>PARTIALLY_REFUNDED : Canceled item within an originated order</li>\n<li>REFUNDED : Products totally refunded</li>\n<li>PENDING_CART_ADJUSTMENT : Cart amount higher than the approved amount</li>\n</ul>\n<h1 id=\"response-object\">Response Object</h1>\n<h2 id=\"datahash\"><code>data:hash</code></h2>\n<blockquote>\n<h4 id=\"applicationstatusstring\"><code>applicationStatus:string</code></h4>\n<ul>\n<li>Status of the application</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"applicationsubstatusstring\"><code>applicationSubStatus:string</code></h4>\n<ul>\n<li>Sub-status of the application</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"applicationidstring-1\"><code>applicationId:string</code></h4>\n<ul>\n<li>Application ID</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"applicationtypestring\"><code>applicationType:string</code></h4>\n<ul>\n<li>Application type. Possible values are LTO for lease merchants and SLN for loan merchants</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"approvedamountstring\"><code>approvedAmount:string</code></h4>\n<ul>\n<li>Approved amount</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"applicationcreatetimestring\"><code>applicationCreateTime:string</code></h4>\n<ul>\n<li>Application creation time in UTC Standard. Example 2020-02-21T18:00:00Z</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"applicationupdatetimestring\"><code>applicationUpdateTime:string</code></h4>\n<ul>\n<li>Application update time in UTC Standard. Example 2020-02-21T18:00:00Z</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"additionalinformationhash\"><code>additionalInformation:hash</code></h4>\n<ul>\n<li>Information of the application</li>\n</ul>\n<h4 id=\"additionalinformationcustomerinformationstring\"><code>additionalInformation.customerInformation:string</code></h4>\n<blockquote>\n<ul>\n<li>Status of the customer information. Possible values are  VERIFIED or PENDING</li>\n</ul>\n</blockquote>\n<h4 id=\"additionalinformationbankinformationstring\"><code>additionalInformation.bankInformation:string</code></h4>\n<blockquote>\n<ul>\n<li>Status of the bank information. Possible values are  VERIFIED or PENDING</li>\n</ul>\n</blockquote>\n<h4 id=\"additionalinformationincomeinformationstring\"><code>additionalInformation.incomeInformation:string</code></h4>\n<blockquote>\n<ul>\n<li>Status of the income information. Possible values are  VERIFIED or PENDING</li>\n</ul>\n</blockquote>\n<h4 id=\"additionalinformationcartinformationstring\"><code>additionalInformation.cartInformation:string</code></h4>\n<blockquote>\n<ul>\n<li>Status of the cart information. Possible values are  VERIFIED or PENDING</li>\n</ul>\n</blockquote>\n</blockquote>\n<blockquote>\n<h4 id=\"reapplydatestring\"><code>reApplyDate:string</code></h4>\n<ul>\n<li>Only with DENIED status, it indicates the date when the customer can reapply. Example 2020-02-21</li>\n</ul>\n</blockquote>\n<h2 id=\"successboolean\"><code>success:boolean</code></h2>\n<blockquote>\n<ul>\n<li>Value with the result of the request. Possible values are TRUE or FALSE</li>\n</ul>\n</blockquote>\n<h2 id=\"statusinteger\"><code>status:integer</code></h2>\n<blockquote>\n<ul>\n<li>Value with status code of the request. For example: 200, 400, 404</li>\n</ul>\n</blockquote>\n","urlObject":{"path":["platform","v1","application","{{applicationId}}","status"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"19d9ed52-3899-48ce-a87d-48e761ad9e74","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCIsImtpZCI6IlJqRkJNa1JETlRVME1FTXpORU5GTWtNeE1UQkJPVE5DUlRjNE9UWTJORVJFTmtZNU1VSXpNZyJ9","type":"text"},{"key":"Request-Id","value":"","description":"(optional)","type":"text"},{"key":"Content-Type","value":"application/json"}],"url":"https://api-training.snapfinance.com/platform/v1/application/200331000GUT/status"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"403"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:24:00 GMT"},{"key":"x-amzn-RequestId","value":"930f2434-ec1e-4ebf-8b33-b06582917abb"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P02InFzZPHcFSJg="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d09d-a8df3630a441a87823d4b3c0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"KpjwnZUscUgG94UQBRc9j34v_i47NHzBaMUa6weVzDo_UA3YrLRLlQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"status\": 200,\n    \"data\": {\n        \"applicationStatus\": \"APPROVED\",\n        \"applicationSubStatus\": \"\",\n        \"applicationId\": \"{{applicationId}}\",\n        \"approvedAmount\": \"3520.00\",\n        \"applicationCreateTime\": \"2020-07-17T10:22:55.105Z\",\n        \"applicationUpdateTime\": \"2020-07-17T10:23:28.493Z\",\n        \"additionalInformation\": {\n            \"customerInformation\": \"Verified\",\n            \"bankInformation\": \"Verified\",\n            \"incomeInformation\": \"Verified\",\n            \"cartInformation\": \"Verified\"\n        }\n    }\n}"},{"id":"9dc7b488-cf72-4f0f-b1ed-f6643c961106","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-Id","value":"","description":"(optional)","type":"text"},{"key":"Content-Type","value":"application/json"}],"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/status"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"133"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 16 Jul 2020 15:49:56 GMT"},{"key":"x-amzn-RequestId","value":"10aaa6ec-e54a-4307-a5a7-1f23473556db"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"PxeNfEZcvHcFaYw="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f107723-680f497015e9048e20a08d84"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 f9c5e5b9a4e739792ecd46afc5cf785d.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"Sj04b1p_EZavyRj0_bQt4EyExO4i4UGB5zNIhMnksgqCstwp1UptFw=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"error\": [\n        {\n            \"code\": \"application_not_found\",\n            \"type\": \"validation_error\",\n            \"message\": \"Application not found\"\n        }\n    ],\n    \"status\": 404\n}"},{"id":"f34b484a-e811-4d60-ad84-4b40d0c3470b","name":"Application Status","originalRequest":{"method":"GET","header":[{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-Id","value":"","description":"(optional)","type":"text"},{"key":"Content-Type","value":"application/json"}],"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/status"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 20 Dec 2023 14:53:33 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"154"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"4b5b5a69-e41a-404d-bb68-b2c52a6e69f6"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"x-amzn-ErrorType","value":"AccessDeniedException"},{"key":"x-amz-apigw-id","value":"QPztMHoZvHcECMQ="},{"key":"X-Amzn-Trace-Id","value":"Root=1-6582ffed-3b5050953e2416d2403a4b3f"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 112c6b3f9aea37a6cb00b7d933e5af6e.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"HIO50-C1"},{"key":"X-Amz-Cf-Id","value":"u51BKoqXpGTZvEQD97OmrL9ojt2r2fJ42p02pvlo6Kc9pwV5ulwxqg=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"error\": [\n        {\n            \"type\": \"authorization_error\",\n            \"code\": \"access_denied\",\n            \"message\": \"Invalid Token\"\n        }\n    ],\n    \"status\": 401\n}"},{"id":"6459b58e-bdb2-4548-b1a7-4273ea211815","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCIsImtpZCI6IlJqRkJNa1JETlRVME1FTXpORU5GTWtNeE1UQkJPVE5DUlRjNE9UWTJORVJFTmtZNU1VSXpNZyJ9","type":"text"},{"key":"Request-Id","value":"","description":"(optional)","type":"text"},{"key":"Content-Type","value":"application/json"}],"url":"https://api-training.snapfinance.com/platform/v1/application/200331000GUT/status"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"403"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:24:00 GMT"},{"key":"x-amzn-RequestId","value":"930f2434-ec1e-4ebf-8b33-b06582917abb"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P02InFzZPHcFSJg="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d09d-a8df3630a441a87823d4b3c0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"KpjwnZUscUgG94UQBRc9j34v_i47NHzBaMUa6weVzDo_UA3YrLRLlQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"status\": 200,\n    \"data\": {\n        \"applicationStatus\": \"APPROVED\",\n        \"applicationSubStatus\": \"\",\n        \"applicationId\": \"{{applicationId}}\",\n        \"approvedAmount\": \"3520.00\",\n        \"applicationCreateTime\": \"2020-07-17T10:22:55.105Z\",\n        \"applicationUpdateTime\": \"2020-07-17T10:23:28.493Z\",\n        \"additionalInformation\": {\n            \"customerInformation\": \"Verified\",\n            \"bankInformation\": \"Verified\",\n            \"incomeInformation\": \"Verified\",\n            \"cartInformation\": \"Verified\"\n        }\n    }\n}"},{"id":"2ac4f03c-b4d6-497a-aef9-3b958850715a","name":"Application Status","originalRequest":{"method":"GET","header":[{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-Id","value":"","description":"(optional)","type":"text"},{"key":"Content-Type","value":"application/json"}],"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/status"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 20 Dec 2023 14:53:33 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"154"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"4b5b5a69-e41a-404d-bb68-b2c52a6e69f6"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"x-amzn-ErrorType","value":"AccessDeniedException"},{"key":"x-amz-apigw-id","value":"QPztMHoZvHcECMQ="},{"key":"X-Amzn-Trace-Id","value":"Root=1-6582ffed-3b5050953e2416d2403a4b3f"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 112c6b3f9aea37a6cb00b7d933e5af6e.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"HIO50-C1"},{"key":"X-Amz-Cf-Id","value":"u51BKoqXpGTZvEQD97OmrL9ojt2r2fJ42p02pvlo6Kc9pwV5ulwxqg=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"error\": [\n        {\n            \"type\": \"authorization_error\",\n            \"code\": \"access_denied\",\n            \"message\": \"Invalid Token\"\n        }\n    ],\n    \"status\": 401\n}"},{"id":"54b0a4aa-3496-4a35-b2af-54040f5bbf98","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-Id","value":"","description":"(optional)","type":"text"},{"key":"Content-Type","value":"application/json"}],"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/status"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"133"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 16 Jul 2020 15:49:56 GMT"},{"key":"x-amzn-RequestId","value":"10aaa6ec-e54a-4307-a5a7-1f23473556db"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"PxeNfEZcvHcFaYw="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f107723-680f497015e9048e20a08d84"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 f9c5e5b9a4e739792ecd46afc5cf785d.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"Sj04b1p_EZavyRj0_bQt4EyExO4i4UGB5zNIhMnksgqCstwp1UptFw=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"error\": [\n        {\n            \"code\": \"application_not_found\",\n            \"type\": \"validation_error\",\n            \"message\": \"Application not found\"\n        }\n    ],\n    \"status\": 404\n}"}],"_postman_id":"02f9f6fc-8435-4f6a-b017-502efe6f546b"},{"name":"Payment Plan","event":[{"listen":"test","script":{"exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});\r","pm.test(\"Success message\", function () {\r","    pm.expect(pm.response.text()).to.include(\"success\");\r","});"],"type":"text/javascript","id":"932ccc9a-5a80-4444-b3c1-c3ed5d953c65"}}],"id":"ab8e33e8-af6b-46a2-a57a-913bb91ba28c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"<p>(optional - ID generated by the client)</p>\n","type":"text"}],"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/paymentPlan","description":"<h1 id=\"payment-plan\">Payment Plan</h1>\n<p>This endpoint gets the payment schedule. Read the fields as leaseField or loanField depending on the merchant type</p>\n<h2 id=\"path-params\">PATH PARAMS</h2>\n<blockquote>\n<h2 id=\"applicationidstring\"><code>applicationId:string</code></h2>\n<ul>\n<li>Required</li>\n<li>ApplicationId is returned when calling the create application endpoint</li>\n</ul>\n</blockquote>\n<h1 id=\"response-object\">Response Object</h1>\n<h2 id=\"datahash\"><code>data:hash</code></h2>\n<blockquote>\n<h3 id=\"documentshash\"><code>documents:hash</code></h3>\n<ul>\n<li>Documents details<blockquote>\n<h4 id=\"documentsdocumentstring\"><code>documents.document:string</code></h4>\n</blockquote>\n</li>\n</ul>\n<blockquote>\n<ul>\n<li>Document type agreement/addendum</li>\n</ul>\n<h4 id=\"documentssignstring\"><code>documents.sign:string</code></h4>\n<ul>\n<li>Sign document url</li>\n</ul>\n<h4 id=\"documentsprioritystring\"><code>documents.priority:string</code></h4>\n<ul>\n<li>priority</li>\n</ul>\n<h4 id=\"documentsrenderstring\"><code>documents.render:string</code></h4>\n<ul>\n<li>Get agreement url</li>\n</ul>\n</blockquote>\n</blockquote>\n<blockquote>\n<h3 id=\"paymentplansummaryhash\"><code>paymentPlanSummary:hash</code></h3>\n<ul>\n<li>Payment plan details<blockquote>\n<h4 id=\"paymentplansummarylastpaymentamountstring\"><code>paymentPlanSummary.lastPaymentAmount:string</code></h4>\n</blockquote>\n</li>\n</ul>\n<blockquote>\n<ul>\n<li>Last payment amount</li>\n</ul>\n<h4 id=\"paymentplansummarypaymentamountstring\"><code>paymentPlanSummary.paymentAmount:string</code></h4>\n<ul>\n<li>Regular payment amount</li>\n</ul>\n<h4 id=\"paymentplansummaryleaseterminmonthsstring\"><code>paymentPlanSummary.leaseTermInMonths:string</code></h4>\n<ul>\n<li>Lease/Loan term</li>\n</ul>\n<h4 id=\"paymentplansummaryprocessingfeestring\"><code>paymentPlanSummary.processingFee:string</code></h4>\n<ul>\n<li>Processing fee amount</li>\n</ul>\n<h4 id=\"paymentplansummaryleaseamountstring\"><code>paymentPlanSummary.leaseAmount:string</code></h4>\n<ul>\n<li>Lease/Loan amount</li>\n</ul>\n<h4 id=\"paymentplansummaryleasecoststring\"><code>paymentPlanSummary.leaseCost:string</code></h4>\n<ul>\n<li>Lease/Loan cost</li>\n</ul>\n<h4 id=\"paymentplansummaryleasetotalamountstring\"><code>paymentPlanSummary.leaseTotalAmount:string</code></h4>\n<ul>\n<li>Lease/Loan total amount</li>\n</ul>\n<h4 id=\"paymentplansummarypaymentfrequencystring\"><code>paymentPlanSummary.paymentFrequency:string</code></h4>\n<ul>\n<li>Payment frequency</li>\n</ul>\n<h4 id=\"paymentplansummarycurrencycodestring\"><code>paymentPlanSummary.currencyCode:string</code></h4>\n<ul>\n<li>Currency code</li>\n</ul>\n<h4 id=\"paymentplansummarystbsboolean\"><code>paymentPlanSummary.stbs:boolean</code></h4>\n<ul>\n<li>Sales tax by snap flag</li>\n</ul>\n<h4 id=\"paymentplansummarystbssalestaxpercentstring\"><code>paymentPlanSummary.stbsSalesTaxPercent:string</code></h4>\n<ul>\n<li>Sales tax percent</li>\n</ul>\n<h4 id=\"paymentplansummarycpodatestring\"><code>paymentPlanSummary.cpoDate:string</code></h4>\n<ul>\n<li>Cash payoff date</li>\n</ul>\n<h4 id=\"paymentplansummarycpoamountstring\"><code>paymentPlanSummary.cpoAmount:string</code></h4>\n<ul>\n<li>Cash payoff amount</li>\n</ul>\n<h4 id=\"paymentplansummarycponumberofpaymentsstring\"><code>paymentPlanSummary.cpoNumberOfPayments:string</code></h4>\n<ul>\n<li>Cash payoff number of payments</li>\n</ul>\n<h4 id=\"paymentplansummarycpopaymentsamountstring\"><code>paymentPlanSummary.cpoPaymentsAmount:string</code></h4>\n<ul>\n<li>Cash payoff payment amount</li>\n</ul>\n<h4 id=\"paymentplansummarycpolastpaymentamountstring\"><code>paymentPlanSummary.cpoLastPaymentAmount:string</code></h4>\n<ul>\n<li>Cash payoff last payment amount</li>\n</ul>\n<h4 id=\"paymentplansummarycpoleasecoststring\"><code>paymentPlanSummary.cpoLeaseCost:string</code></h4>\n<ul>\n<li>Cash payoff least cost</li>\n</ul>\n<h4 id=\"paymentplansummaryinitialpaymentstring\"><code>paymentPlanSummary.initialPayment:string</code></h4>\n<ul>\n<li>Initial payment amount</li>\n</ul>\n<h4 id=\"paymentplansummarynumberofpaymentswithsameamountstring\"><code>paymentPlanSummary.numberOfPaymentsWithSameAmount:string</code></h4>\n<ul>\n<li>Number of payments with same amount</li>\n<li>Initial payment amount</li>\n</ul>\n<h4 id=\"paymentplansummarytotalnumberofpaymentsstring\"><code>paymentPlanSummary.totalNumberOfPayments:string</code></h4>\n<ul>\n<li>Total number of payments</li>\n</ul>\n<h4 id=\"paymentplansummarylastpaymentdatestring\"><code>paymentPlanSummary.lastPaymentDate:string</code></h4>\n<ul>\n<li>Last payment date</li>\n</ul>\n</blockquote>\n</blockquote>\n<h2 id=\"successboolean\"><code>success:boolean</code></h2>\n<blockquote>\n<ul>\n<li>Value with the result of the request. Possible values are TRUE or False</li>\n</ul>\n</blockquote>\n<h2 id=\"statusinteger\"><code>status:integer</code></h2>\n<blockquote>\n<ul>\n<li>Value with status code of the request. For example: 200, 400, 404</li>\n</ul>\n</blockquote>\n","urlObject":{"path":["platform","v1","application","{{applicationId}}","paymentPlan"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"d5163737-8cb3-4895-8691-dc5a7f869bed","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCIsImtpZCI6IlJqRkJNa1JETlRVME1FTXpORU5GTWtNeE1UQkJPVE5DUlRjNE9UWTJORVJFTmtZNU1VSXpNZyJ9","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Content-Type","value":"application/json"},{"key":"Request-Id","value":"123"}],"url":"https://api-training.snapfinance.com/platform/v1/application/200331000GUT/paymentPlan"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"244"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:24:19 GMT"},{"key":"x-amzn-RequestId","value":"f42aea7e-5211-4753-a26a-e8db4014d312"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P02LeGszvHcFsxg="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d0af-3504dad84d30e4d08259a3b0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"jen45MDpH8DQoOEaPFvDVJdGipmCzTuiyeN1iMqlvOUBQG5Kixtyow=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"cpoDays\": 100,\n        \"documents\": [\n            {\n                \"document\": \"agreement\",\n                \"priority\": 1,\n                \"render\": \"https://api-qa.snapfinance.com/platform/v1/application/2410280079UT/agreement?renderType=html&document=agreement\",\n                \"sign\": \"https://api-qa.snapfinance.com/platform/v1/application/2410280079UT/signed?document=agreement\"\n            }\n        ],\n        \"paymentPlanSummary\": {\n            \"cpoAmount\": \"330.00\",\n            \"cpoDate\": \"2025-05-05\",\n            \"cpoLastPaymentAmount\": \"47.16\",\n            \"cpoLeaseCost\": \"0.00\",\n            \"cpoNumberOfPayments\": \"6\",\n            \"cpoPaymentsAmount\": \"47.14\",\n            \"currencyCode\": \"USD\",\n            \"finalNumberOfPayments\": \"39\",\n            \"firstPaymentDate\": \"2025-02-14\",\n            \"hangtagState\": false,\n            \"initialPayment\": \"0.00\",\n            \"lastPaymentAmount\": \"19.48\",\n            \"lastPaymentDate\": \"2026-07-31\",\n            \"leaseAmount\": \"320.00\",\n            \"leaseCost\": \"442.00\",\n            \"leaseTermInMonths\": \"18\",\n            \"leaseTotalAmount\": \"762.00\",\n            \"numberOfPaymentsWithSameAmount\": \"38\",\n            \"paymentAmount\": \"19.54\",\n            \"paymentFrequency\": \"BI_WEEKLY\",\n            \"processingFee\": \"10.00\",\n            \"propertyCondition\": \"New\",\n            \"stbs\": false,\n            \"stbsSalesTaxPercent\": \"0.00\",\n            \"summaryAcceptanceRequired\": false,\n            \"totalNumberOfPayments\": \"39\"\n        }\n    },\n    \"status\": 200,\n    \"success\": true\n}"},{"id":"99eebc8b-20c1-4890-b096-58e6bef596b6","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Content-Type","value":"application/json"},{"key":"Request-Id","value":"123"}],"url":{"raw":"{{baseUrl}}/platform/v1/application/{{applicationId}}/paymentPlan?frequency=BW","host":["{{baseUrl}}"],"path":["platform","v1","application","{{applicationId}}","paymentPlan"],"query":[{"key":"frequency","value":"BW"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"136"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 15:58:33 GMT"},{"key":"x-amzn-RequestId","value":"e686de7a-4a8b-472a-99bb-c3810ca266ad"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P0yadGxZPHcFgJQ="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11caa9-a9e85c6759f66b046f148f15"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 4c6f3dc807d213a0da966381e4886b08.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"YxjE8a_vRBiTtIchTjpRj97HIPvHhb2UFEne1JzTFnB4twNJS3u6QA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"status\": 404,\n    \"error\": [\n        {\n            \"code\": \"application_invalid\",\n            \"type\": \"invalid_request_error\",\n            \"message\": \"Application not found\"\n        }\n    ]\n}"},{"id":"bedfecec-7add-420a-b46a-7c19e6f281a4","name":"Oklahoma","originalRequest":{"method":"GET","header":[{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"}],"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/paymentPlan"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1298"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Mon, 28 Oct 2024 05:49:08 GMT"},{"key":"X-Amzn-Trace-Id","value":"Root=1-671f25d3-71b827a74d0ce4ea2c443859"},{"key":"x-amzn-RequestId","value":"a495ab78-002c-4fa2-879c-193e421f9a10"},{"key":"X-XSS-Protection","value":"0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"AWLZIGy1vHcEv5Q="},{"key":"Cache-Control","value":"no-store"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 09a1a54fdbf13d19927a903f4a7d5186.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"SEA900-P2"},{"key":"X-Amz-Cf-Id","value":"jKBBVOPfk0QQWLHUEXf79MNyBoYph7MLZLGoRj7xY5c80hxih3gAPA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"documents\": [\n            {\n                \"document\": \"addendum\",\n                \"sign\": \"https://api-qa.snapfinance.com/platform/v1/application/241027000MOK/signed?document=addendum\",\n                \"priority\": 1,\n                \"render\": \"https://api-qa.snapfinance.com/platform/v1/application/241027000MOK/agreement?renderType=html&document=addendum\"\n            },\n            {\n                \"document\": \"agreement\",\n                \"sign\": \"https://api-qa.snapfinance.com/platform/v1/application/241027000MOK/signed?document=agreement\",\n                \"priority\": 2,\n                \"render\": \"https://api-qa.snapfinance.com/platform/v1/application/241027000MOK/agreement?renderType=html&document=agreement\"\n            }\n        ],\n        \"paymentPlanSummary\": {\n            \"lastPaymentAmount\": \"19.48\",\n            \"paymentAmount\": \"19.54\",\n            \"leaseTermInMonths\": \"18\",\n            \"processingFee\": \"10.00\",\n            \"leaseAmount\": \"320.00\",\n            \"leaseCost\": \"442.00\",\n            \"leaseTotalAmount\": \"762.00\",\n            \"paymentFrequency\": \"BI_WEEKLY\",\n            \"currencyCode\": \"USD\",\n            \"stbs\": false,\n            \"summaryAcceptanceRequired\": false,\n            \"hangtagState\": false,\n            \"stbsSalesTaxPercent\": \"0.00\",\n            \"cpoDate\": \"2025-05-05\",\n            \"cpoAmount\": \"330.00\",\n            \"cpoNumberOfPayments\": \"6\",\n            \"cpoPaymentsAmount\": \"47.14\",\n            \"cpoLastPaymentAmount\": \"47.16\",\n            \"cpoLeaseCost\": \"0.00\",\n            \"initialPayment\": \"0.00\",\n            \"totalNumberOfPayments\": \"39\",\n            \"lastPaymentDate\": \"2026-07-31\",\n            \"firstPaymentDate\": \"2025-02-14\",\n            \"propertyCondition\": \"New\",\n            \"finalNumberOfPayments\": \"39\",\n            \"numberOfPaymentsWithSameAmount\": \"38\"\n        },\n        \"cpoDays\": 100\n    },\n    \"success\": true,\n    \"status\": 200\n}"},{"id":"48d84904-1042-4a8e-bb82-57cc3f393160","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCIsImtpZCI6IlJqRkJNa1JETlRVME1FTXpORU5GTWtNeE1UQkJPVE5DUlRjNE9UWTJORVJFTmtZNU1VSXpNZyJ9","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Content-Type","value":"application/json"},{"key":"Request-Id","value":"123"}],"url":"https://api-training.snapfinance.com/platform/v1/application/200331000GUT/paymentPlan"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"244"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:24:19 GMT"},{"key":"x-amzn-RequestId","value":"f42aea7e-5211-4753-a26a-e8db4014d312"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P02LeGszvHcFsxg="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d0af-3504dad84d30e4d08259a3b0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"jen45MDpH8DQoOEaPFvDVJdGipmCzTuiyeN1iMqlvOUBQG5Kixtyow=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"cpoDays\": 100,\n        \"documents\": [\n            {\n                \"document\": \"agreement\",\n                \"priority\": 1,\n                \"render\": \"https://api-qa.snapfinance.com/platform/v1/application/2410280079UT/agreement?renderType=html&document=agreement\",\n                \"sign\": \"https://api-qa.snapfinance.com/platform/v1/application/2410280079UT/signed?document=agreement\"\n            }\n        ],\n        \"paymentPlanSummary\": {\n            \"cpoAmount\": \"330.00\",\n            \"cpoDate\": \"2025-05-05\",\n            \"cpoLastPaymentAmount\": \"47.16\",\n            \"cpoLeaseCost\": \"0.00\",\n            \"cpoNumberOfPayments\": \"6\",\n            \"cpoPaymentsAmount\": \"47.14\",\n            \"currencyCode\": \"USD\",\n            \"finalNumberOfPayments\": \"39\",\n            \"firstPaymentDate\": \"2025-02-14\",\n            \"hangtagState\": false,\n            \"initialPayment\": \"0.00\",\n            \"lastPaymentAmount\": \"19.48\",\n            \"lastPaymentDate\": \"2026-07-31\",\n            \"leaseAmount\": \"320.00\",\n            \"leaseCost\": \"442.00\",\n            \"leaseTermInMonths\": \"18\",\n            \"leaseTotalAmount\": \"762.00\",\n            \"numberOfPaymentsWithSameAmount\": \"38\",\n            \"paymentAmount\": \"19.54\",\n            \"paymentFrequency\": \"BI_WEEKLY\",\n            \"processingFee\": \"10.00\",\n            \"propertyCondition\": \"New\",\n            \"stbs\": false,\n            \"stbsSalesTaxPercent\": \"0.00\",\n            \"summaryAcceptanceRequired\": false,\n            \"totalNumberOfPayments\": \"39\"\n        }\n    },\n    \"status\": 200,\n    \"success\": true\n}"},{"id":"69c4bf2f-7b72-4e58-b09d-befcd04b9565","name":"Oklahoma","originalRequest":{"method":"GET","header":[{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"}],"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/paymentPlan"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1298"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Mon, 28 Oct 2024 05:49:08 GMT"},{"key":"X-Amzn-Trace-Id","value":"Root=1-671f25d3-71b827a74d0ce4ea2c443859"},{"key":"x-amzn-RequestId","value":"a495ab78-002c-4fa2-879c-193e421f9a10"},{"key":"X-XSS-Protection","value":"0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"AWLZIGy1vHcEv5Q="},{"key":"Cache-Control","value":"no-store"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 09a1a54fdbf13d19927a903f4a7d5186.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"SEA900-P2"},{"key":"X-Amz-Cf-Id","value":"jKBBVOPfk0QQWLHUEXf79MNyBoYph7MLZLGoRj7xY5c80hxih3gAPA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"documents\": [\n            {\n                \"document\": \"addendum\",\n                \"sign\": \"https://api-qa.snapfinance.com/platform/v1/application/241027000MOK/signed?document=addendum\",\n                \"priority\": 1,\n                \"render\": \"https://api-qa.snapfinance.com/platform/v1/application/241027000MOK/agreement?renderType=html&document=addendum\"\n            },\n            {\n                \"document\": \"agreement\",\n                \"sign\": \"https://api-qa.snapfinance.com/platform/v1/application/241027000MOK/signed?document=agreement\",\n                \"priority\": 2,\n                \"render\": \"https://api-qa.snapfinance.com/platform/v1/application/241027000MOK/agreement?renderType=html&document=agreement\"\n            }\n        ],\n        \"paymentPlanSummary\": {\n            \"lastPaymentAmount\": \"19.48\",\n            \"paymentAmount\": \"19.54\",\n            \"leaseTermInMonths\": \"18\",\n            \"processingFee\": \"10.00\",\n            \"leaseAmount\": \"320.00\",\n            \"leaseCost\": \"442.00\",\n            \"leaseTotalAmount\": \"762.00\",\n            \"paymentFrequency\": \"BI_WEEKLY\",\n            \"currencyCode\": \"USD\",\n            \"stbs\": false,\n            \"summaryAcceptanceRequired\": false,\n            \"hangtagState\": false,\n            \"stbsSalesTaxPercent\": \"0.00\",\n            \"cpoDate\": \"2025-05-05\",\n            \"cpoAmount\": \"330.00\",\n            \"cpoNumberOfPayments\": \"6\",\n            \"cpoPaymentsAmount\": \"47.14\",\n            \"cpoLastPaymentAmount\": \"47.16\",\n            \"cpoLeaseCost\": \"0.00\",\n            \"initialPayment\": \"0.00\",\n            \"totalNumberOfPayments\": \"39\",\n            \"lastPaymentDate\": \"2026-07-31\",\n            \"firstPaymentDate\": \"2025-02-14\",\n            \"propertyCondition\": \"New\",\n            \"finalNumberOfPayments\": \"39\",\n            \"numberOfPaymentsWithSameAmount\": \"38\"\n        },\n        \"cpoDays\": 100\n    },\n    \"success\": true,\n    \"status\": 200\n}"},{"id":"2c74c06e-6aca-49d9-8801-c525fbaeef25","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Content-Type","value":"application/json"},{"key":"Request-Id","value":"123"}],"url":{"raw":"{{baseUrl}}/platform/v1/application/{{applicationId}}/paymentPlan?frequency=BW","host":["{{baseUrl}}"],"path":["platform","v1","application","{{applicationId}}","paymentPlan"],"query":[{"key":"frequency","value":"BW"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"136"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 15:58:33 GMT"},{"key":"x-amzn-RequestId","value":"e686de7a-4a8b-472a-99bb-c3810ca266ad"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P0yadGxZPHcFgJQ="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11caa9-a9e85c6759f66b046f148f15"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 4c6f3dc807d213a0da966381e4886b08.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"YxjE8a_vRBiTtIchTjpRj97HIPvHhb2UFEne1JzTFnB4twNJS3u6QA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"status\": 404,\n    \"error\": [\n        {\n            \"code\": \"application_invalid\",\n            \"type\": \"invalid_request_error\",\n            \"message\": \"Application not found\"\n        }\n    ]\n}"}],"_postman_id":"ab8e33e8-af6b-46a2-a57a-913bb91ba28c"},{"name":"Payment Estimate","id":"9ddf70fa-b22a-4a0f-bc69-e44414276c3f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"items\": [\n    {\n      \"price\": 1250,\n      \"itemId\": \"ABC\"\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/hangtag/paymentestimate?frequency=W","description":"<h1 id=\"payment-estimate\">Payment Estimate</h1>\n<p>Returns a payment estimate for hangtag items.</p>\n<h2 id=\"query-parameters\">Query parameters</h2>\n<h3 id=\"frequency-string-required\">frequency (string, required)</h3>\n<p>Payment schedule frequency for the estimate. Allowed values:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>BW</td>\n<td>Bi-Weekly</td>\n</tr>\n<tr>\n<td>W</td>\n<td>Weekly</td>\n</tr>\n<tr>\n<td>M</td>\n<td>Monthly</td>\n</tr>\n<tr>\n<td>MW</td>\n<td>Monthly Weekly</td>\n</tr>\n<tr>\n<td>SM</td>\n<td>Semi-Monthly</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"request-body\">Request body</h2>\n<p>Send a JSON body with an <code>items</code> array. Each element includes <code>price</code> and <code>itemId</code> (see example).</p>\n","urlObject":{"path":["platform","v1","hangtag","paymentestimate"],"host":["{{baseUrl}}"],"query":[{"disabled":true,"description":{"content":"<p>Bi-Weekly</p>\n","type":"text/plain"},"key":"frequency","value":"BW"},{"description":{"content":"<p>Weekly</p>\n","type":"text/plain"},"key":"frequency","value":"W"},{"disabled":true,"description":{"content":"<p>Monthly</p>\n","type":"text/plain"},"key":"frequency","value":"M"},{"disabled":true,"description":{"content":"<p>Monthly Weekly</p>\n","type":"text/plain"},"key":"frequency","value":"MW"},{"disabled":true,"description":{"content":"<p>Semi-Monthly</p>\n","type":"text/plain"},"key":"frequency","value":"SM"}],"variable":[]}},"response":[{"id":"0addcf32-eb62-4584-bbf8-af95e9920941","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"items\": [\n    {\n      \"price\": 1250,\n      \"itemId\": \"ABC\"\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{baseUrl}}/platform/v1/hangtag/paymentestimate?frequency=W","host":["{{baseUrl}}"],"path":["platform","v1","hangtag","paymentestimate"],"query":[{"key":"frequency","value":"BW","description":"Bi-Weekly","disabled":true},{"key":"frequency","value":"W","description":"Weekly"},{"key":"frequency","value":"M","description":"Monthly","disabled":true},{"key":"frequency","value":"MW","description":"Monthly Weekly","disabled":true},{"key":"frequency","value":"SM","description":"Semi-Monthly","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"price\": 1250,\n        \"itemId\": \"ABC\",\n        \"paymentScheduleAmount\": 51.48,\n        \"lastPaymentAmount\": 51.02,\n        \"frequency\": \"W\",\n        \"totalCost\": 2487.5,\n        \"costOfLease\": 1237.5,\n        \"salesTaxAmount\": 199,\n        \"totalPayments\": 2686.5,\n        \"hundredDayPaymentDueDate\": \"2025-04-17\",\n        \"hundredDayPaymentAmount\": 1431\n    },\n    \"status\": 200\n}"},{"id":"677e99a7-b04a-4fc9-9f43-8c8d9a27ae15","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"items\": [\n    {\n      \"price\": 1250,\n      \"itemId\": \"ABC\"\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{baseUrl}}/platform/v1/hangtag/paymentestimate?frequency=W","host":["{{baseUrl}}"],"path":["platform","v1","hangtag","paymentestimate"],"query":[{"key":"frequency","value":"BW","description":"Bi-Weekly","disabled":true},{"key":"frequency","value":"W","description":"Weekly"},{"key":"frequency","value":"M","description":"Monthly","disabled":true},{"key":"frequency","value":"MW","description":"Monthly Weekly","disabled":true},{"key":"frequency","value":"SM","description":"Semi-Monthly","disabled":true}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n  \"success\": false,\n  \"status\": 400,\n  \"error\": [\n    {\n      \"type\": \"validation_error\",\n      \"code\": \"payment_estimate_price_missing\",\n      \"message\": \"Price in product item is missing\"\n    }\n  ]\n}"}],"_postman_id":"9ddf70fa-b22a-4a0f-bc69-e44414276c3f"},{"name":"Customer Communication Preferences","id":"a27cb4a9-5730-4689-8d25-ffe109fec1af","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"app-origin-id","value":"originations","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"customerId\": \"1234567890\",\n  \"communicationChannel\": \"EMAIL\",\n  \"consentType\": \"SDLR_ECONSENT\",\n  \"consentStatus\": true\n}"},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/comm-preferences","description":"<h1 id=\"create-customer-communication-preferences\">Create Customer Communication Preferences</h1>\n<p>This endpoint creates or updates a customer's communication preferences for regulatory and marketing consents.</p>\n<h2 id=\"request-body\">Request Body</h2>\n<ul>\n<li><code>customerId</code> (string, required if applicationId not in header): Unique id of the Customer.</li>\n<li><code>communicationChannel</code> (string, required for most consent types): One of <code>EMAIL</code>, <code>SMS</code>, <code>PUSH_NOTIFICATION</code>, <code>CALL</code>, <code>NOT_APPLICABLE</code>.</li>\n<li><code>consentType</code> (string, required): Consent type, e.g. <code>SDLR_ECONSENT</code>, <code>NO_EMAIL</code>, <code>DO_NOT_SHARE_GLBA</code>, etc.</li>\n<li><code>consentStatus</code> (boolean, required): Consent status, true or false.</li>\n</ul>\n<h2 id=\"example-request\">Example Request</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"customerId\": \"1234567890\",\n  \"communicationChannel\": \"EMAIL\",\n  \"consentType\": \"SDLR_ECONSENT\",\n  \"consentStatus\": true\n}\n</code></pre>\n<h2 id=\"success-response\">Success Response</h2>\n<ul>\n<li><code>200 OK</code></li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"success\": true,\n  \"message\": \"Preferences updated successfully\"\n}\n</code></pre>\n<h2 id=\"error-response\">Error Response</h2>\n<ul>\n<li><code>400 Bad Request</code></li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"errors\": [\n    { \"code\": \"4105\", \"message\": \"customerId is mandatory in case applicationId is not provided in the header\" },\n    { \"code\": \"4106\", \"message\": \"communicationChannel can't be null and value should be any one these : [CALL, EMAIL, PUSH_NOTIFICATION, SMS]\" },\n    { \"code\": \"4107\", \"message\": \"consentType can't be null and value should be any one these : [SDLR_ECONSENT, NO_EMAIL, NO_SMS, NO_CALL, NEGATIVE_OPTIONRULE_ECONSENT]\" },\n    { \"code\": \"4108\", \"message\": \"app-origin-id header shouldn't be null or empty and value should be any one these : [originations]\" },\n    { \"code\": \"4178\", \"message\": \"application-id header is missing\" }\n  ]\n}\n</code></pre>\n","urlObject":{"path":["platform","v1","application","{{applicationId}}","comm-preferences"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"642650a0-ccca-4684-b46a-0c5a5397f18c","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCIsImtpZCI6IlJqRkJNa1JETlRVME1FTXpORU5GTWtNeE1UQkJPVE5DUlRjNE9UWTJORVJFTmtZNU1VSXpNZyJ9"},{"key":"app-origin-id","value":"originations"}],"body":{"mode":"raw","raw":"{\n  \"customerId\": \"1234567890\",\n  \"communicationChannel\": \"EMAIL\",\n  \"consentType\": \"SDLR_ECONSENT\",\n  \"consentStatus\": true\n}"},"url":"https://api-training.snapfinance.com/platform/v1/application/200331000GUT/comm-preferences"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"success\": true,\n  \"message\": \"Preferences updated successfully\"\n}"},{"id":"c34d6236-11c6-4f0b-9bf7-469bfd9b6eac","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{bearerToken}}"},{"key":"app-origin-id","value":"originations"}],"body":{"mode":"raw","raw":"{\n  \"customerId\": \"\",\n  \"communicationChannel\": \"\",\n  \"consentType\": \"\",\n  \"consentStatus\": false\n}"},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/comm-preferences"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"errors\": [\n    { \"code\": \"4105\", \"message\": \"customerId is mandatory in case applicationId is not provided in the header\" },\n    { \"code\": \"4106\", \"message\": \"communicationChannel can't be null and value should be any one these : [CALL, EMAIL, PUSH_NOTIFICATION, SMS]\" },\n    { \"code\": \"4107\", \"message\": \"consentType can't be null and value should be any one these : [SDLR_ECONSENT, NO_EMAIL, NO_SMS, NO_CALL, NEGATIVE_OPTIONRULE_ECONSENT]\" },\n    { \"code\": \"4108\", \"message\": \"app-origin-id header shouldn't be null or empty and value should be any one these : [originations]\" },\n    { \"code\": \"4178\", \"message\": \"application-id header is missing\" }\n  ]\n}"},{"id":"16dd8c1b-ec7a-486b-a30c-2edb963f485c","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{bearerToken}}"},{"key":"app-origin-id","value":"originations"}],"body":{"mode":"raw","raw":"{\n  \"customerId\": \"\",\n  \"communicationChannel\": \"\",\n  \"consentType\": \"\",\n  \"consentStatus\": false\n}"},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/comm-preferences"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"errors\": [\n    { \"code\": \"4105\", \"message\": \"customerId is mandatory in case applicationId is not provided in the header\" },\n    { \"code\": \"4106\", \"message\": \"communicationChannel can't be null and value should be any one these : [CALL, EMAIL, PUSH_NOTIFICATION, SMS]\" },\n    { \"code\": \"4107\", \"message\": \"consentType can't be null and value should be any one these : [SDLR_ECONSENT, NO_EMAIL, NO_SMS, NO_CALL, NEGATIVE_OPTIONRULE_ECONSENT]\" },\n    { \"code\": \"4108\", \"message\": \"app-origin-id header shouldn't be null or empty and value should be any one these : [originations]\" },\n    { \"code\": \"4178\", \"message\": \"application-id header is missing\" }\n  ]\n}"},{"id":"76ff1371-c4a6-4edd-9d35-d21b433b950c","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCIsImtpZCI6IlJqRkJNa1JETlRVME1FTXpORU5GTWtNeE1UQkJPVE5DUlRjNE9UWTJORVJFTmtZNU1VSXpNZyJ9"},{"key":"app-origin-id","value":"originations"}],"body":{"mode":"raw","raw":"{\n  \"customerId\": \"1234567890\",\n  \"communicationChannel\": \"EMAIL\",\n  \"consentType\": \"SDLR_ECONSENT\",\n  \"consentStatus\": true\n}"},"url":"https://api-training.snapfinance.com/platform/v1/application/200331000GUT/comm-preferences"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"success\": true,\n  \"message\": \"Preferences updated successfully\"\n}"}],"_postman_id":"a27cb4a9-5730-4689-8d25-ffe109fec1af"},{"name":"Agreement Details","event":[{"listen":"test","script":{"exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});\r","pm.test(\"Success message\", function () {\r","    pm.expect(pm.response.text()).to.include(\"success\");\r","});"],"type":"text/javascript","packages":{},"id":"8651bc4d-1d96-4f44-8b2c-7f06cf028a2b"}}],"id":"c0b1f4b6-9d44-4d3a-a1d9-0e0ad60bded0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"<p>(optional - ID generated by the client)</p>\n","type":"text"}],"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/agreement?renderType=html&document=agreement","description":"<h1 id=\"agreement-details\">Agreement Details</h1>\n<p>This endpoint fetches the agreement details which the consumer needs to accept and sign.</p>\n<h2 id=\"path-params\">PATH PARAMS</h2>\n<blockquote>\n<h2 id=\"applicationidstring\"><code>applicationId:string</code></h2>\n<ul>\n<li>Required</li>\n<li>ApplicationId is returned when calling the create application endpoint</li>\n</ul>\n</blockquote>\n<h2 id=\"query-parameters\">QUERY PARAMETERS</h2>\n<blockquote>\n<h2 id=\"rendertype\"><code>renderType</code></h2>\n<ul>\n<li>Optional</li>\n<li>Render type</li>\n</ul>\n</blockquote>\n<blockquote>\n<h2 id=\"document\"><code>document</code></h2>\n<ul>\n<li>Optional</li>\n<li>agreement/addendum</li>\n</ul>\n</blockquote>\n<blockquote>\n<h2 id=\"svgonly\"><code>svgonly</code></h2>\n<ul>\n<li>Optional</li>\n<li>Generate HTML agreement version</li>\n</ul>\n</blockquote>\n<blockquote>\n<h2 id=\"language\"><code>language</code></h2>\n<ul>\n<li>Optional</li>\n<li>Agreement language EN(English) / ES(Spanish)</li>\n</ul>\n</blockquote>\n<blockquote>\n<h2 id=\"summaryacceptance\"><code>summaryAcceptance</code></h2>\n<ul>\n<li>Mandatory, send true value</li>\n<li>Acceptance viewed and acknowledge agreement terms</li>\n</ul>\n</blockquote>\n<h1 id=\"response-object\">Response Object</h1>\n<h2 id=\"datahash\"><code>data:hash</code></h2>\n<blockquote>\n<h4 id=\"agreementinformationhash\"><code>agreementInformation:hash</code></h4>\n<ul>\n<li>Payment plan details</li>\n</ul>\n<h4 id=\"agreementinformationapplicationidstring\"><code>agreementInformation.applicationId:string</code></h4>\n<blockquote>\n<ul>\n<li>Application ID</li>\n</ul>\n</blockquote>\n<h4 id=\"agreementinformationcustomerinformationhash\"><code>agreementInformation.customerInformation:hash</code></h4>\n<blockquote>\n<ul>\n<li>Customer information details</li>\n</ul>\n<h4 id=\"customerinformationdobdatestring\"><code>customerInformation.dobDate:string</code></h4>\n<blockquote>\n<ul>\n<li>Date of birth</li>\n</ul>\n</blockquote>\n<h4 id=\"customerinformationcustomeridstring\"><code>customerInformation.customerId:string</code></h4>\n<blockquote>\n<ul>\n<li>Customer ID</li>\n</ul>\n</blockquote>\n<h4 id=\"customerinformationcustomeridtypestring\"><code>customerInformation.customerIdType:string</code></h4>\n<blockquote>\n<ul>\n<li>Customer ID type</li>\n</ul>\n</blockquote>\n<h4 id=\"customerinformationmobilephonestring\"><code>customerInformation.mobilePhone:string</code></h4>\n<blockquote>\n<ul>\n<li>Mobile phone</li>\n</ul>\n</blockquote>\n<h4 id=\"customerinformationmobilephonecountrystring\"><code>customerInformation.mobilePhoneCountry:string</code></h4>\n<blockquote>\n<ul>\n<li>Mobile phone country</li>\n</ul>\n</blockquote>\n<h4 id=\"customerinformationemailstring\"><code>customerInformation.email:string</code></h4>\n<blockquote>\n<ul>\n<li>Email</li>\n</ul>\n</blockquote>\n<h4 id=\"customerinformationfirstnamestring\"><code>customerInformation.firstName:string</code></h4>\n<blockquote>\n<ul>\n<li>First name</li>\n</ul>\n</blockquote>\n<h4 id=\"customerinformationlastnamestring\"><code>customerInformation.lastName:string</code></h4>\n<blockquote>\n<ul>\n<li>Last name</li>\n</ul>\n</blockquote>\n<h4 id=\"customerinformationbillingaddresshash\"><code>customerInformation.billingAddress:hash</code></h4>\n<blockquote>\n<ul>\n<li>Snap address</li>\n</ul>\n<h4 id=\"billingaddressstreetaddressstring\"><code>billingAddress.streetAddress:string</code></h4>\n<blockquote>\n<ul>\n<li>Street address</li>\n</ul>\n</blockquote>\n<h4 id=\"billingaddresscitystring\"><code>billingAddress.city:string</code></h4>\n<blockquote>\n<ul>\n<li>City</li>\n</ul>\n</blockquote>\n<h4 id=\"billingaddressstatestring\"><code>billingAddress.state:string</code></h4>\n<blockquote>\n<ul>\n<li>State</li>\n</ul>\n</blockquote>\n<h4 id=\"billingaddresscountrystring\"><code>billingAddress.country:string</code></h4>\n<blockquote>\n<ul>\n<li>Country</li>\n</ul>\n</blockquote>\n<h4 id=\"billingaddresspostalcodestring\"><code>billingAddress.postalCode:string</code></h4>\n<blockquote>\n<ul>\n<li>Postal code</li>\n</ul>\n</blockquote>\n</blockquote>\n</blockquote>\n<h4 id=\"agreementinformationsnapfinanceinformationhash\"><code>agreementInformation.snapFinanceInformation:hash</code></h4>\n<blockquote>\n<ul>\n<li>Snap information details</li>\n</ul>\n<h4 id=\"agreementinformationsnapfinanceinformationbusinessnamestring\"><code>agreementInformation.snapFinanceInformation.businessName:string</code></h4>\n<blockquote>\n<ul>\n<li>Business name</li>\n</ul>\n</blockquote>\n<h4 id=\"snapfinanceinformationemailstring\"><code>snapFinanceInformation.email:string</code></h4>\n<blockquote>\n<ul>\n<li>Email</li>\n</ul>\n</blockquote>\n<h4 id=\"snapfinanceinformationphonenumberstring\"><code>snapFinanceInformation.phoneNumber:string</code></h4>\n<blockquote>\n<ul>\n<li>Phone number</li>\n</ul>\n</blockquote>\n<h4 id=\"snapfinanceinformationphonenumbercodestring\"><code>snapFinanceInformation.phoneNumberCode:string</code></h4>\n<blockquote>\n<ul>\n<li>Phone number code</li>\n</ul>\n</blockquote>\n<h4 id=\"snapfinanceinformationsnapaddresshash\"><code>snapFinanceInformation.snapAddress:hash</code></h4>\n<blockquote>\n<ul>\n<li>Snap address</li>\n</ul>\n<h4 id=\"snapaddressstreetaddressstring\"><code>snapAddress.streetAddress:string</code></h4>\n<blockquote>\n<ul>\n<li>Street address</li>\n</ul>\n</blockquote>\n<h4 id=\"snapaddresscitystring\"><code>snapAddress.city:string</code></h4>\n<blockquote>\n<ul>\n<li>City</li>\n</ul>\n</blockquote>\n<h4 id=\"snapaddressstatestring\"><code>snapAddress.state:string</code></h4>\n<blockquote>\n<ul>\n<li>State</li>\n</ul>\n</blockquote>\n<h4 id=\"snapaddresscountrystring\"><code>snapAddress.country:string</code></h4>\n<blockquote>\n<ul>\n<li>Country</li>\n</ul>\n</blockquote>\n<h4 id=\"snapaddresspostalcodestring\"><code>snapAddress.postalCode:string</code></h4>\n<blockquote>\n<ul>\n<li>Postal code</li>\n</ul>\n</blockquote>\n</blockquote>\n</blockquote>\n<h4 id=\"agreementinformationagreementdetailsstring\"><code>agreementInformation.agreementDetails:string</code></h4>\n<blockquote>\n<ul>\n<li>Agreement information using HTML format</li>\n</ul>\n</blockquote>\n</blockquote>\n","urlObject":{"path":["platform","v1","application","{{applicationId}}","agreement"],"host":["{{baseUrl}}"],"query":[{"key":"renderType","value":"html"},{"key":"document","value":"agreement"}],"variable":[]}},"response":[{"id":"46eff896-00f5-494c-8f20-5a792a65c3dd","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCIsImtpZCI6IlJqRkJNa1JETlRVME1FTXpORU5GTWtNeE1UQkJPVE5DUlRjNE9UWTJORVJFTmtZNU1VSXpNZyJ9","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Content-Type","value":"application/json"},{"key":"Request-Id","value":"123"}],"url":{"raw":"https://api-training.snapfinance.com/platform/v1/application/200331000GUT/agreement?renderType=html&document=agreement","protocol":"https","host":["api-training","snapfinance","com"],"path":["platform","v1","application","200331000GUT","agreement"],"query":[{"key":"renderType","value":"html"},{"key":"document","value":"agreement"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"136"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 16 Jul 2020 17:02:21 GMT"},{"key":"x-amzn-RequestId","value":"7bdbe015-ee4e-47a5-a8c5-70f56a2cde04"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"Pxo0aFo-PHcFy6A="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f10881c-f4d45cc21e4bc05a15184b31"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 0a72bb7be10458e1aefa37a097f21894.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"Zcwg0uNr6gJ8ilLNW9-r5krSpR6T7Z-LLnNpLYvub6tAYp-Dx30msw=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"status\": 404,\n    \"error\": [\n        {\n            \"code\": \"application_invalid\",\n            \"type\": \"invalid_request_error\",\n            \"message\": \"Application not found\"\n        }\n    ]\n}"},{"id":"3ffa044e-dfa8-410f-bb34-fbb57bafb1de","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Content-Type","value":"application/json"},{"key":"Request-Id","value":"123"}],"url":{"raw":"{{baseUrl}}/platform/v1/application/{{applicationId}}/agreement?renderType=html&document=agreement","host":["{{baseUrl}}"],"path":["platform","v1","application","{{applicationId}}","agreement"],"query":[{"key":"renderType","value":"html"},{"key":"document","value":"agreement"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1825083"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:24:43 GMT"},{"key":"x-amzn-RequestId","value":"40b52282-2a30-4df6-8cdf-82aa447ca6b3"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P02OxEfnPHcF9yw="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d0c4-8b923ff4b1bf11f48fb3b3b8"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"OcTSGzIIqa3esIfeYqbdx2iywfRfpBgLnbSAPl3aJcuDg_Vl84kX2A=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"agreementInformation\": {\n            \"applicationId\": \"{{applicationId}}\",\n            \"customerInformation\": {\n                \"dobDate\": \"1977-07-07\",\n                \"customerId\": \"000007777\",\n                \"customerIdType\": \"SSN4\",\n                \"mobilePhone\": \"1000000019\",\n                \"mobilePhoneCountry\": \"US\",\n                \"email\": \"test@test.com\",\n                \"firstName\": \"John\",\n                \"lastName\": \"Smith\",\n                \"billingAddress\": {\n                    \"streetAddress\": \"123mainst\",\n                    \"city\": \"Saltlakecity\",\n                    \"state\": \"UT\",\n                    \"country\": \"US\",\n                    \"postalCode\": \"84001\"\n                }\n            },\n            \"snapFinanceInformation\": {\n                \"businessName\": \"Snap RTO LLC\",\n                \"snapAddress\": {\n                    \"streetAddress\": \"Any street in town\",\n                    \"city\": \"Salt Lake City\",\n                    \"state\": \"UT\",\n                    \"country\": \"US\",\n                    \"postalCode\": \"84126\"\n                },\n                \"email\": \"test@test.com\",\n                \"phoneNumber\": \"1000000007\",\n                \"phoneNumberCode\": \"US\"\n            },\n            \"agreementDetails\": \"<!DOCTYPE html>\\n<html>\\n\\t<head>\\n\\t\\t<meta charset=\\\"utf-8\\\">\\n\\t\\t<style type=\\\"text/css\\\">\\n\\t\\t\\tbody {background-color:lightgray; text-align:center;}\\n\\t\\t\\t.qoppa_pageborder {fill:white;}\\n\\t\\t\\t#qoppa_document {padding:5px; margin:auto;}\\n\\t\\t</style>\\n\\t</head>\\n\\t<body>\\n<?xml version='1.0' encoding='UTF-8'?><svg id=\\\"qoppa_document\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" version=\\\"1.1\\\" xmlns=\\\"http://www.w3.org/2000/svg\\\" xmlns:xlink=\\\"http://www.w3.org/1999/xlink\\\"><!-- jPDFWeb v2019R1.03 - Demo Version --><style>title p { display: block; }</style><g id=\\\"qoppa_viewxform\\\" transform=\\\"matrix(1 0 0 1 0 0)\\\"><style type=\\\"text/css\\\">@font-face {font-family:f0-0;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f0-1;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f0-2;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}</style><svg id=\\\"qoppa_page_p0\\\" class=\\\"qoppa_page\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\"><rect class=\\\"qoppa_pageborder\\\" x=\\\"0.5pt\\\" y=\\\"0.5pt\\\" width=\\\"611pt\\\" height=\\\"791pt\\\" fill=\\\"none\\\" /><svg class=\\\"qoppa_pagecontents\\\" x=\\\"0pt\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" viewBox=\\\"0 0 612 792\\\" ><g class=\\\"qoppa_contentstream\\\" transform=\\\"matrix(1 0 0 -1 0 792)\\\" fill=\\\"black\\\" stroke=\\\"black\\\" stroke-width=\\\"1\\\" stroke-linecap=\\\"butt\\\" stroke-linejoin=\\\"miter\\\" stroke-miterlimit=\\\"10\\\"><clipPath id=\\\"clip0-1\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><g clip-path=\\\"url(#clip0-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:8.25pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 213.8098 759.5594)\\\" x=\\\"0 7.942 15.279 23.221 29.942 37.279 43.395 47.058 54.395 62.337 70.279 78.221 86.163 93.5 100.837 108.174 111.1 118.437 126.995 134.937 142.274 149.611 158.774 166.111 174.053\\\">RENTAL-PURCHASE AGREEMENT</text></g><clipPath id=\\\"clip0-2\\\"><path d=\\\"M 35 701 L 285 701 L 285 758 L 35 758 L 35 701 z \\\"/></clipPath><g clip-path=\\\"url(#clip0-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 745.5311)\\\" x=\\\"0 5.56 11.12 16.68 21.68 27.24 29.9 37.12 42.68 51.01 56.57 62.13 67.69 72.69 75.35 78.68 84.24 89.8 94.8 99.8 105.36 108.69 112.02 114.8 117.46 124.13 131.35 138.02 144.69 147.35 154.57 160.68 168.46 171.12 176.68 182.24\\\">Lease Company (Lessor): SNAP RTO LLC</text></g><g clip-path=\\\"url(#clip0-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 732.2127)\\\" x=\\\"0 6.67 9.45 17.23 20.01 22.67 29.34 34.9 39.9 42.56 48.12 53.68 59.24 64.8\\\">P.O. Box 26561</text></g><g clip-path=\\\"url(#clip0-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 718.8943)\\\" x=\\\"0 6.67 12.23 14.51 17.29 19.95 25.51 31.07 36.07 41.63 44.29 51.51 53.79 56.57 61.57 64.35 67.01 74.23 80.34 83 88.56 94.12 99.68 105.24\\\">Salt Lake City, UT 84126</text></g><g clip-path=\\\"url(#clip0-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 705.576)\\\" x=\\\"0 6.67 12.23 17.79 23.35 28.91 31.69 34.35 37.68 43.24 48.8 54.36 57.69 60.35 65.91 71.47 77.03 80.36 85.92 91.48 97.04\\\">Phone: (877) 557-3769</text></g><clipPath id=\\\"clip0-3\\\"><path d=\\\"M 284 701 L 574 701 L 574 758 L 284 758 L 284 701 z \\\"/></clipPath><g clip-path=\\\"url(#clip0-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.225 745.5311)\\\" x=\\\"0 5.56 11.12 16.12 21.12 26.68 32.24 35.02 37.68 42.68 48.24 53.8 59.36 62.02 64.68 71.35 79.68 81.96 84.74\\\">Lessee: John  Smith</text></g><g clip-path=\\\"url(#clip0-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 290.225 732.2127)\\\" x=\\\"0 5.56 11.12 16.68 25.01 30.57 32.85 38.41 43.41\\\">123mainst</text></g><g clip-path=\\\"url(#clip0-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.225 718.8943)\\\" x=\\\"0 6.67 12.23 14.51 17.29 19.57 25.13 30.13 35.69 40.69 42.97 45.75 50.75 53.53 56.19 63.41 69.52 72.18 77.74 83.3 88.86 94.42\\\">Saltlakecity, UT 84001</text></g><g clip-path=\\\"url(#clip0-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 290.225 705.576)\\\" x=\\\"0 2.28 7.84 13.4 15.68 21.24 26.8 32.36 37.36 47.51 53.07 58.07 66.4 71.96 74.74 79.74 85.3\\\">jbolanos@acme.com</text></g><clipPath id=\\\"clip0-4\\\"><path d=\\\"M 35 674 L 285 674 L 285 702 L 35 702 L 35 674 z \\\"/></clipPath><g clip-path=\\\"url(#clip0-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 689.7576)\\\" x=\\\"0 6.67 12.23 17.79 20.07 22.35 27.35 32.91 35.69 37.97 43.53 49.09 51.75 54.53 61.75 64.53 67.19 72.75 78.31 83.87 89.43 94.99 100.55 106.11 111.67 117.23 126.67 133.89\\\">Application ID: 200717000WUT</text></g><clipPath id=\\\"clip0-5\\\"><path d=\\\"M 284 674 L 428 674 L 428 702 L 284 702 L 284 674 z \\\"/></clipPath><g clip-path=\\\"url(#clip0-5)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.225 689.7576)\\\" x=\\\"0 5.56 11.12 16.68 21.68 27.24 29.9 37.12 42.68 45.46 51.02 53.8 56.46 62.02 67.58 70.36 75.92 81.48 84.26 89.82 95.38 100.94\\\">Lease Date: 07/17/2020</text></g><g clip-path=\\\"url(#clip0-5)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.225 678.4393)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 27.68 34.35\\\">10:22 AM</text></g><clipPath id=\\\"clip0-6\\\"><path d=\\\"M 427 674 L 574 674 L 574 702 L 427 702 L 427 674 z \\\"/></clipPath><g clip-path=\\\"url(#clip0-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 433.375 689.7576)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79 40.45 47.67 53.23 58.79 64.35 66.63 69.41 71.69 77.25 82.81 85.59 88.25 95.47 101.03\\\">Property Condition: New</text></g><clipPath id=\\\"clip0-7\\\"><path d=\\\"M 35 631 L 574 631 L 574 675 L 35 675 L 35 631 z \\\"/></clipPath><g clip-path=\\\"url(#clip0-7)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 662.6209)\\\" x=\\\"0 7.22 12.78 17.78 22.78 26.11 28.39 33.95 36.73 39.01 44.57 50.13 52.79 58.35 61.13 63.79 69.35 74.91 80.47 86.03 91.03 93.69 99.25 104.81 107.09 112.65 118.21 120.87 126.43 131.99 135.32 140.32 145.88 151.44 156.44 162 167.56 170.22 173 176.33 181.89 190.22 192.88 195.66 201.22 206.78 209.44 216.66 222.22 225 230.56 232.84 235.12 240.68 244.01 246.67 250 252.78 258.34 263.9 266.56 269.89 276.56 279.89 285.45 291.01 296.57 299.9 302.68 307.68 311.01 314.34 317 319.78 325.34 328.67 331.45 337.01 342.57 345.9 348.56 354.12 359.12 364.68 366.96 372.52 374.8 380.36 385.92 391.48 394.14 396.42 401.98 404.64 411.31 416.31 421.87 424.15 429.71 431.99 434.77 437.43 444.1\\\">Description of goods being purchased from th* D E M O *(the “Property”) further explained in Exhibit A:</text></g><g clip-path=\\\"url(#clip0-7)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 649.3025)\\\" x=\\\"0 6.67 12.23 15.56 20.56 22.84 27.84 33.4 38.4 41.06 46.62 52.18 57.74 60.4 66.51 72.07 77.63 82.63 85.41 88.07 96.4 101.96 104.74 107.52 110.85 116.41 121.41\\\">Services and Fees, Mattress</text></g><clipPath id=\\\"clip0-8\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.025 757.4998 L 285.075 757.4998 L 285.075 756.9998 L 35.025 756.9998 L 35.025 757.4998 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.025 756.9998 L 35.525 756.9998 L 35.525 701.7264 L 35.025 701.7264 L 35.025 756.9998 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 285.075 757.4998 L 573.375 757.4998 L 573.375 756.9998 L 285.075 756.9998 L 285.075 757.4998 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.875 756.9998 L 573.375 756.9998 L 573.375 701.7264 L 572.875 701.7264 L 572.875 756.9998 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 284.575 756.9998 L 285.075 756.9998 L 285.075 701.7264 L 284.575 701.7264 L 284.575 756.9998 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.025 701.7264 L 285.075 701.7264 L 285.075 701.2264 L 35.025 701.2264 L 35.025 701.7264 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.025 701.2264 L 35.525 701.2264 L 35.525 674.5897 L 35.025 674.5897 L 35.025 701.2264 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 285.075 701.7264 L 428.225 701.7264 L 428.225 701.2264 L 285.075 701.2264 L 285.075 701.7264 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 284.575 701.2264 L 285.075 701.2264 L 285.075 674.5897 L 284.575 674.5897 L 284.575 701.2264 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 428.225 701.7264 L 573.375 701.7264 L 573.375 701.2264 L 428.225 701.2264 L 428.225 701.7264 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.875 701.2264 L 573.375 701.2264 L 573.375 674.5897 L 572.875 674.5897 L 572.875 701.2264 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 427.725 701.2264 L 428.225 701.2264 L 428.225 674.5897 L 427.725 674.5897 L 427.725 701.2264 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.025 674.5897 L 573.375 674.5897 L 573.375 674.0897 L 35.025 674.0897 L 35.025 674.5897 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.025 632.1346 L 573.375 632.1346 L 573.375 631.6346 L 35.025 631.6346 L 35.025 632.1346 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.875 674.0897 L 573.375 674.0897 L 573.375 632.1346 L 572.875 632.1346 L 572.875 674.0897 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.025 674.0897 L 35.525 674.0897 L 35.525 632.1346 L 35.025 632.1346 L 35.025 674.0897 z \\\"/><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 620.1658)\\\" x=\\\"0 6.11 13.89 21.11 29.44 36.11 42.22 45 52.78\\\">FORMATION</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 93.0951 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 97.0295 620.1658)\\\" x=\\\"0 7.78\\\">OF</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 110.9162 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 114.8506 620.1658)\\\" x=\\\"0 6.67 14.45 21.67 28.34 35.01 43.34 50.01 57.23 63.34\\\">AGREEMENT.</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 180.9688 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 184.9032 620.1658)\\\" x=\\\"0 6.67\\\">By</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 196.5731 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 200.5075 620.1658)\\\" x=\\\"0 5 7.28 12.84 18.4 20.68 26.24\\\">signing</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 232.3141 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 236.2485 620.1658)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 251.8686 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 255.803 620.1658)\\\" x=\\\"0 7.22 12.78 18.34 21.12 26.68 28.96 32.29 38.96 44.52 47.85 52.85 58.41 63.97 68.97\\\">Rental-Purchase</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 330.344 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 334.2784 620.1658)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement,</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 385.9727 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 389.9071 620.1658)\\\" x=\\\"0 5.56 7.84 12.84\\\">also</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 408.3105 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 412.2448 620.1658)\\\" x=\\\"0 5 10.56 16.12 23.34\\\">known</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 441.1511 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 445.0855 620.1658)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 455.647 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 459.5814 620.1658)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 465.1429 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 469.0773 620.1658)\\\" x=\\\"0 5.56 11.12 16.68 21.68\\\">Lease</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 496.3234 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 500.2578 620.1658)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.1738 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.1082 620.1658)\\\" x=\\\"0 7.22 9.5 12.28\\\">with</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 608.8475)\\\" x=\\\"0 7.78 13.34 16.12 18.4 23.96\\\">Option</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 62.6215 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 66.5575 608.8475)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 74.8974 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 78.8334 608.8475)\\\" x=\\\"0 6.67 12.23 15.56 20.56 26.12 31.68 36.68\\\">Purchase</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 121.0795 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 125.0155 608.8475)\\\" x=\\\"0 3.33 6.11 11.67 13.95\\\">(this</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 143.9657 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 147.9017 608.8475)\\\" x=\\\"0 3.33 10 15.56 18.89 24.45 30.01 38.34 43.9 49.46 52.24 55.57 58.9\\\">“Agreement”),</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.5863 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 213.5223 608.8475)\\\" x=\\\"0 5 10.56 16.12\\\">you,</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 232.4237 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 236.3597 608.8475)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 250.2611 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 254.1971 608.8475)\\\" x=\\\"0 7.22 12.78 17.78 20.56 26.12 34.45 40.01 43.34 46.67 51.67\\\">Customer(s)</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 309.202 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 313.138 608.8475)\\\" x=\\\"0 3.33 6.66 11.66 17.22 22.78\\\">(“you”</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 339.2513 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 343.1873 608.8475)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.8719 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 363.8079 608.8475)\\\" x=\\\"0 3.33 8.33 13.89 19.45 22.78 26.11\\\">“your”)</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.2513 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 397.1873 608.8475)\\\" x=\\\"0 5 10.56 16.12 21.68 26.68\\\">choose</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 429.4334 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 433.3695 608.8475)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 441.7093 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 445.6453 608.8475)\\\" x=\\\"0 2.28 7.84 13.4 18.4\\\">lease</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 469.6102 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 473.5462 608.8475)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 487.4476 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 491.3836 608.8475)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.1766 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 533.1126 608.8475)\\\" x=\\\"0 2.78 6.11 11.67\\\">from</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.1126 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0486 608.8475)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 597.5291)\\\" x=\\\"0 5.56 11.12 16.68 21.68\\\">Lease</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.3461 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 63.7235 597.5291)\\\" x=\\\"0 7.22 12.78 21.11 26.67 32.23 37.79\\\">Company</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 106.5213 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 109.8987 597.5291)\\\" x=\\\"0 3.33 6.66 13.88 19.44 22.22\\\">(“we,”</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 135.4505 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 138.8278 597.5291)\\\" x=\\\"0 3.33 8.89 13.89 16.67\\\">“us,”</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 158.8278 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 162.2052 597.5291)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 178.8898 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 182.2672 597.5291)\\\" x=\\\"0 3.33 8.89 14.45 17.78 21.11\\\">“our”)</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 206.7105 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.0879 597.5291)\\\" x=\\\"0 5.56 10.56 15.56 21.12 24.45 30.01 32.29 37.85\\\">according</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 253.5059 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 256.8832 597.5291)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 265.2231 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 268.6005 597.5291)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 282.5018 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 285.8792 597.5291)\\\" x=\\\"0 2.78 8.34 11.67 20\\\">terms</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 310.8792 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 314.2566 597.5291)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 322.5964 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 325.9738 597.5291)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 341.5939 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 344.9713 597.5291)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement.</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 396.6656 597.5291)\\\" x=\\\"0 3.3774\\\">  </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 403.4204 597.5291)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 420.6518 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 424.0292 597.5291)\\\" x=\\\"0 2.78 8.34 11.67\\\">term</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 444.0292 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 447.4066 597.5291)\\\" x=\\\"0 3.33 10.55 16.11 18.89 24.45 26.73 29.01 34.57 37.9\\\">“Retailer”</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 488.6419 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 492.0193 597.5291)\\\" x=\\\"0 8.33 13.89 19.45 25.01 30.01 36.68 42.24 47.8 52.8 57.8 61.13 67.8 73.36\\\">meansEbaycrYou</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 586.2107)\\\" x=\\\"0 5.56 11.12 16.12 21.68 24.34 27.12 32.68 38.24 40.9 44.23 46.51 52.07 57.63 60.41 63.19 65.85 71.41 76.97 79.75 82.41 87.97 93.53 96.31 98.97 101.75 107.31 112.87 115.53 121.09 126.65 128.93 131.21 136.77 142.33 145.11 147.39 152.95 158.51 161.29 163.95 166.73 172.29 174.95 180.51 185.51 191.07 196.63 198.91 202.24 207.8 210.46 216.02 223.24 228.8 234.36 237.69 242.69 248.25 250.53 256.09 258.75 264.31 267.09 269.75 272.53 278.09 283.65 286.31 292.98 296.31 301.87 307.43 312.99 316.32 319.1 324.1 326.76 332.32 337.32 339.98 345.54 351.1 356.1 361.1 364.43 366.71 372.27 377.83 383.39 386.05 391.61 397.17 400.5 406.06 408.34 413.9\\\">have the right, but not the obligation, to acquire ownership of the Property as described herein.</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 572.8924)\\\" x=\\\"0 6.67 13.89 21.67 28.89 31.67 38.34 41.12 47.23 50.01 57.79\\\">ACQUISITION</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 98.1049 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 101.7037 572.8924)\\\" x=\\\"0 7.78\\\">OF</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 115.5905 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 119.1893 572.8924)\\\" x=\\\"0 6.67 13.89 21.67 28.34 35.01 42.23 48.34\\\">PROPERTY</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 174.1991 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 177.798 572.8924)\\\" x=\\\"0 6.67\\\">AS</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 191.1378 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 194.7367 572.8924)\\\" x=\\\"0 6.67 14.45 21.12 28.34 34.45\\\">AGENT;</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.9632 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 235.5621 572.8924)\\\" x=\\\"0 7.22 13.89\\\">NEW</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 258.8922 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 262.4911 572.8924)\\\" x=\\\"0 7.22 15 22.22 29.44 32.22 38.33 41.11 48.89 56.11\\\">CONDITION;</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 321.3778 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 324.9766 572.8924)\\\" x=\\\"0 7.22 13.89 20.56 27.78 35 37.78 44.45 50.56 53.34 61.12 68.34\\\">DESCRIPTION.</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 396.0948 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 399.6937 572.8924)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 417.4866 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 421.0855 572.8924)\\\" x=\\\"0 5.56 8.89\\\">are</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 435.5386 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 439.1375 572.8924)\\\" x=\\\"0 5.56 11.12 13.9 19.46 21.74 27.3 29.58 35.14\\\">obtaining</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 479.8455 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 483.4444 572.8924)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 497.3458 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 500.9446 572.8924)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 538.7376 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 542.3365 572.8924)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.898 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 556.4968 572.8924)\\\" x=\\\"0 5.56 11.12\\\">our</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 561.574)\\\" x=\\\"0 5.56 11.12 16.68 22.24 25.02\\\">agent.</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.9027 561.574)\\\" x=\\\"0 4.0087\\\">  </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 68.9202 561.574)\\\" x=\\\"0 9.44\\\">We</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 83.9202 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 87.9288 561.574)\\\" x=\\\"0 5.56 12.78\\\">own</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 106.2736 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 110.2823 561.574)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 124.1837 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 128.1924 561.574)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 165.9853 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 169.994 561.574)\\\" x=\\\"0 5.56 11.12 13.4 18.96 23.96\\\">unless</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 198.9589 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 202.9676 561.574)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 219.6522 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 223.6609 561.574)\\\" x=\\\"0 5.56 11.12 13.9 16.18\\\">until</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 242.1228 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 246.1315 561.574)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.2545 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 266.2632 561.574)\\\" x=\\\"0 8.33 13.89 18.89\\\">make</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.7163 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 294.7251 561.574)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.6264 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 312.6351 561.574)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57 38.35\\\">payments</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.9896 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 359.9983 561.574)\\\" x=\\\"0 5.56 11.12 16.12 21.68 26.68 31.68 37.24 40.57\\\">necessary</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 405.5745 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 409.5832 561.574)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 417.923 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 421.9318 561.574)\\\" x=\\\"0 5.56 10.56 16.12 21.68 23.96 27.29\\\">acquire</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.7882 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 458.7969 561.574)\\\" x=\\\"0 5.56 12.78 18.34 23.9 27.23 32.23 37.79 40.07 45.63\\\">ownership.</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 507.2149 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 511.2236 561.574)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.0165 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 533.0253 561.574)\\\" x=\\\"0 5.56 11.12 14.45 20.01\\\">agree</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 558.6014 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 562.6101 561.574)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 550.2557)\\\" x=\\\"0 5.56 11.12 13.9 19.46 21.74 27.3 29.96 32.74 36.07 41.63 49.96 52.62 55.4 60.96 66.52 69.18 76.4 81.96 84.74 90.3 92.58 94.86 100.42 103.75 106.41 111.97 117.53 119.81 124.81 127.47 133.03 138.59 145.81 148.47 154.03 159.59 165.15 170.71 175.71 178.37 181.15 186.71 190.04 192.7 198.26 203.82 207.15 212.15 217.71 223.27 228.83 231.11 233.89 236.55 239.33 244.89 253.22 255.5 257.78 262.78 265.44 271 274.33 276.99 282.55 288.11 293.67 298.67 304.23 309.79 315.35 317.63 323.19 325.85 331.41 336.97 340.3 345.86 351.42 356.42 361.98 366.98\\\">obtain from the Retailer only new goods for personal, family or household purposes.</text></g><clipPath id=\\\"clip0-9\\\"><path d=\\\"M 35 529 L 574 529 L 574 547 L 35 547 L 35 529 z \\\"/></clipPath><path clip-path=\\\"url(#clip0-9)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 35.3 546.1561 L 573.1 546.1561 L 573.1 529.8377 L 35.3 529.8377 L 35.3 546.1561 z \\\"/><path clip-path=\\\"url(#clip0-9)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 40.7 543.1561 L 555.4 543.1561 L 555.4 531.8377 L 40.7 531.8377 L 40.7 543.1561 z \\\"/><path clip-path=\\\"url(#clip0-9)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 96.7096 543.1561 L 499.7096 543.1561 L 499.7096 531.1561 L 96.7096 531.1561 L 96.7096 543.1561 z \\\"/><g clip-path=\\\"url(#clip0-9)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 96.7096 533.9373)\\\" x=\\\"0 2.78 11.11 17.78 25.56 32.78 38.89 45.56 52.78 58.89 61.55 68.77 75.44 82.66 88.77 95.44 101 104.33 111 118.22 125.44 132.66 139.88 146.55 153.22 159.89 162.55 169.77 172.55 179.22 186.44 192 199.78 206.45 213.67 220.89 227.56 234.23 236.89 239.82 242.48 245.26 252.48 259.7 265.26 272.48 279.7 282.48 289.7 297.48 300.14 307.36 315.14 321.81 327.92 330.58 337.25 344.47 351.69 354.35 361.02 367.69 374.36 382.69 389.36 396.58\\\">IMPORTANT RENTAL-PURCHASE DISCLOSURES – INCLUDING COST AND PAYMENT</text></g><clipPath id=\\\"clip0-10\\\"><path d=\\\"M 35 81 L 574 81 L 574 530 L 35 530 L 35 81 z \\\"/></clipPath><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 517.619)\\\" x=\\\"0 6.11 13.33 16.11\\\">THIS</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 63.4783 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 68.7771 517.619)\\\" x=\\\"0 6.11 13.33 20 27.22 33.89 40.56 47.78 53.89 56.67 64.45\\\">TRANSACTION</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 140.447 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 145.7457 517.619)\\\" x=\\\"0 2.78\\\">IS</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 155.194 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 160.4927 517.619)\\\" x=\\\"0\\\">A</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 167.1627 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 172.4614 517.619)\\\" x=\\\"0 5.56 12.23 18.9 25.57\\\">LEASE</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 204.7026 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.0014 517.619)\\\" x=\\\"0 6.67 14.45 21.67 28.34 35.01 43.34 50.01 57.23\\\">AGREEMENT</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 273.3412 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 278.64 517.619)\\\" x=\\\"0 9.44 12.22 18.33\\\">WITH</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 304.1868 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 309.4856 517.619)\\\" x=\\\"0 7.78 14.45 20.56 23.34 31.12\\\">OPTION</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 347.8206 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 353.1193 517.619)\\\" x=\\\"0 6.11\\\">TO</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 367.006 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 372.3048 517.619)\\\" x=\\\"0 6.67 13.89 21.11 28.33 35.55 42.22 48.89 55.56\\\">PURCHASE.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.6495 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 435.9483 517.619)\\\" x=\\\"0 6.67 14.45\\\">YOU</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 457.6182 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 462.9169 517.619)\\\" x=\\\"0 9.44 12.22 17.78\\\">WILL</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.2568 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 491.5555 517.619)\\\" x=\\\"0 7.22 15\\\">NOT</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.6639 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 517.9627 517.619)\\\" x=\\\"0 7.78 17.22\\\">OWN</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 542.4012 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 547.6999 517.619)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 506.3006)\\\" x=\\\"0 6.67 13.89 21.67 28.34 35.01 42.23 48.34\\\">PROPERTY</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 95.7098 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 100.6852 506.3006)\\\" x=\\\"0 7.22 14.44 20.55 23.33\\\">UNTIL</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 129.5768 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 134.5522 506.3006)\\\" x=\\\"0 6.67 14.45\\\">YOU</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 156.2221 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 161.1975 506.3006)\\\" x=\\\"0 7.22 13.89 20.56\\\">HAVE</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 188.429 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 193.4044 506.3006)\\\" x=\\\"0 6.67 13.34 16.12\\\">PAID</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 216.7442 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 221.7197 506.3006)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 241.7197 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 246.6951 506.3006)\\\" x=\\\"0 6.11 13.89 20 26.67\\\">TOTAL</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 278.9216 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 283.8971 506.3006)\\\" x=\\\"0 6.67 13.34 20.01 28.34 35.01 42.23 48.34\\\">PAYMENTS</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.9068 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 343.8822 506.3006)\\\" x=\\\"0 7.22 13.89 21.11 27.78 34.45 41.12 47.79 55.01\\\">NECESSARY</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 405.5668 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 410.5422 506.3006)\\\" x=\\\"0 6.11\\\">TO</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 424.4289 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 429.4044 506.3006)\\\" x=\\\"0 6.67 13.89 21.67 28.89 31.67 38.89\\\">ACQUIRE</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.9659 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 479.9413 506.3006)\\\" x=\\\"0 7.78 17.22 24.44 31.11 38.33 45 52.22 55\\\">OWNERSHIP</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 541.6112 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 546.5866 506.3006)\\\" x=\\\"0 6.67 13.89\\\">AND</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 494.9822)\\\" x=\\\"0 7.22 15 23.33 30 35.56\\\">COMPLY</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 82.9314 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 86.988 494.9822)\\\" x=\\\"0 9.44 12.22 18.33\\\">WITH</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 112.5348 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 116.5913 494.9822)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.5913 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 140.6478 494.9822)\\\" x=\\\"0 7.78 17.22 24.44 31.11 38.33 45 52.22 55\\\">OWNERSHIP</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 202.3178 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 206.3743 494.9822)\\\" x=\\\"0 6.11 12.78 20 28.33 35\\\">TERMS.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 244.1526 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 248.2091 494.9822)\\\" x=\\\"0 6.67 14.45\\\">YOU</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 269.879 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 273.9355 494.9822)\\\" x=\\\"0 6.67 13.89\\\">ARE</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 294.497 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 298.5535 494.9822)\\\" x=\\\"0 7.22 15\\\">NOT</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.6619 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 323.7184 494.9822)\\\" x=\\\"0 7.78 14.45 20.01 22.79 30.57 37.24 43.35 50.02\\\">OBLIGATED</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.9548 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 385.0113 494.9822)\\\" x=\\\"0 6.11\\\">TO</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 398.898 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 402.9545 494.9822)\\\" x=\\\"0 6.67 13.34\\\">PAY</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 422.9643 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 427.0208 494.9822)\\\" x=\\\"0\\\">A</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 433.6907 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 437.7472 494.9822)\\\" x=\\\"0 6.67 13.89\\\">SUM</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 459.9689 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 464.0254 494.9822)\\\" x=\\\"0 7.78 15 21.67 28.34 34.45 41.12\\\">GREATER</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.3652 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 516.4217 494.9822)\\\" x=\\\"0 6.11 13.33 20\\\">THAN</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 543.6434 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 547.6999 494.9822)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 483.6639)\\\" x=\\\"0 6.11 13.89 20 26.67 32.23 34.89 41.56 48.23 54.9 63.23 69.9 77.12 83.23 89.9 92.56 98.67 106.45 113.67 116.33 123 125.66 132.33 135.11 142.33 150.11 155.67 162.34 165 170.56 177.23 183.9 190.57 197.24 199.9 206.01 212.68 219.9 228.23\\\">TOTAL PAYMENTS FOR A SINGLE LEASE TERM.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 470.3455)\\\" x=\\\"0 7.22 12.78 17.78\\\">Cash</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 64.0447 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 67.2085 470.3455)\\\" x=\\\"0 6.67 10 12.28 17.28\\\">Price</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 90.0503 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 93.214 470.3455)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 101.5539 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 104.7176 470.3455)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 145.2889 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.4527 470.3455)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 165.6841 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 168.8478 470.3455)\\\" x=\\\"0 7.22 12.78 17.78\\\">Cash</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 192.1926 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 195.3563 470.3455)\\\" x=\\\"0 6.67 10 12.28 17.28\\\">Price</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 218.1981 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 221.3619 470.3455)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 229.7017 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 232.8655 470.3455)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 246.7668 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 249.9306 470.3455)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 287.7235 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 290.8873 470.3455)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 298.1676 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 301.3313 470.3455)\\\" x=\\\"0\\\">$</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 306.8928 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 310.0566 470.3455)\\\" x=\\\"0 5.56 8.34 13.9 19.46 25.02 27.8 33.36 38.92\\\">3,872.00,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.7607 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 354.9244 470.3455)\\\" x=\\\"0 7.22 12.78 15.06 20.06\\\">which</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.5494 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 383.7132 470.3455)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 390.9935 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 394.1572 470.3455)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 408.0586 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 411.2223 470.3455)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 444.5768 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 447.7406 470.3455)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 463.8636 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 467.0274 470.3455)\\\" x=\\\"0 7.22 12.78 18.34 20.62\\\">would</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 493.2139 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 496.3776 470.3455)\\\" x=\\\"0 5.56 11.12 16.12\\\">have</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 518.0622 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 521.226 470.3455)\\\" x=\\\"0 5.56 11.12 13.4\\\">paid</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 540.1908 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 543.3545 470.3455)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 548.4131 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 551.5769 470.3455)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 459.0271)\\\" x=\\\"0 5.56 11.12\\\">had</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 57.3846 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 60.336 459.0271)\\\" x=\\\"0 5.56 11.12 14.45 19.45 25.01 30.57 35.57 41.13\\\">purchased</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 107.0352 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 109.9866 459.0271)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 123.888 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 126.8394 459.0271)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 164.6324 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 167.5838 459.0271)\\\" x=\\\"0 2.78 6.11 11.67\\\">from</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 187.5838 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 190.5352 459.0271)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 204.4366 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 207.388 459.0271)\\\" x=\\\"0 7.22 12.78 15.56 21.12 23.4 25.68 31.24\\\">Retailer</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 241.9632 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 244.9147 459.0271)\\\" x=\\\"0 7.22 9.5 12.28\\\">with</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.7565 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 265.7079 459.0271)\\\" x=\\\"0 5 10.56 15.56\\\">cash</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 286.8309 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 289.7824 459.0271)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 300.9054 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 303.8568 459.0271)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 317.7582 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 320.7096 459.0271)\\\" x=\\\"0 5.56 11.12\\\">day</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 336.8327 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 339.7841 459.0271)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.1239 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 351.0754 459.0271)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 366.6955 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 369.6469 459.0271)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 421.3412 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 424.2927 459.0271)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 25.68 27.96 32.96\\\">inclusive</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 462.8181 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 465.7695 459.0271)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.1093 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 477.0607 459.0271)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 493.1838 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 496.1352 459.0271)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64\\\">applicable</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 541.3452 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 544.2966 459.0271)\\\" x=\\\"0 5 10.56 12.84 18.4\\\">sales</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 447.7088)\\\" x=\\\"0 5.56 8.89 11.55 17.11 22.11 27.67 30.33 33.11 38.67 43.67\\\">or use tax.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 434.3904)\\\" x=\\\"0 6.11 11.67 14.45 20.01\\\">Total</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 62.99 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 66.9187 434.3904)\\\" x=\\\"0 7.22 12.78 17.78\\\">Cost</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 87.4803 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 91.409 434.3904)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 99.7488 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 103.6775 434.3904)\\\" x=\\\"0 5.56 11.12 16.68 21.68 27.24\\\">Lease;</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 133.7019 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 137.6306 434.3904)\\\" x=\\\"0 6.67 12.23 15.56 17.84 23.4 28.96 31.24\\\">Periodic</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 173.8758 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 177.8045 434.3904)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46 44.46\\\">Payments;</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.0457 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 228.9744 434.3904)\\\" x=\\\"0 6.67 10 15.56 20.56 26.12 31.12 36.12 38.4 43.96\\\">Processing</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 278.5007 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 282.4295 434.3904)\\\" x=\\\"0 6.11 11.67 17.23\\\">Fee;</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.4392 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 306.3679 434.3904)\\\" x=\\\"0 2.78 8.34 10.62 13.4 15.68 21.24\\\">Initial</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.8884 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 333.8171 434.3904)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46\\\">Payment;</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 376.0584 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 379.9871 434.3904)\\\" x=\\\"0 7.22 12.78 17.78\\\">Cost</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 400.5486 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 404.4773 434.3904)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 412.8171 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 416.7459 434.3904)\\\" x=\\\"0 7.22 12.78 18.34 21.12 26.68 28.96\\\">Rental.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 448.489 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 452.4177 434.3904)\\\" x=\\\"0 7.22 12.78 15.06 20.62 25.62\\\">Unless</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 483.0427 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 486.9714 434.3904)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 503.0945 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 507.0232 434.3904)\\\" x=\\\"0 5.56 10.56 16.12 19.45 24.45 26.73 31.73\\\">exercise</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 544.3181 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 548.2468 434.3904)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 423.0721)\\\" x=\\\"0 5.56 11.12 16.68 20.01 27.23 32.79\\\">100-Day</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 78.4979 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.2541 423.0721)\\\" x=\\\"0 7.78 13.34 16.12 18.4 23.96\\\">Option</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 110.7756 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 113.5318 423.0721)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 122.4234 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 125.1797 423.0721)\\\" x=\\\"0 6.67 12.23 15.56 17.84\\\">Early</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 148.0215 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 150.7777 423.0721)\\\" x=\\\"0 6.67 12.23 17.23 20.56 28.34 33.9\\\">Buy-Out</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 187.4574 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 190.2136 423.0721)\\\" x=\\\"0 7.78 13.34 16.12 18.4 23.96\\\">Option</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 219.7351 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 222.4914 423.0721)\\\" x=\\\"0 5 10.56\\\">set</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 235.8312 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 238.5875 423.0721)\\\" x=\\\"0 2.78 8.34 11.67 14.45\\\">forth</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 258.5972 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 261.3535 423.0721)\\\" x=\\\"0 5.56 11.12 13.4 18.96 26.18\\\">below,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.3183 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 293.0746 423.0721)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 306.9759 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 309.7322 423.0721)\\\" x=\\\"0 3.33 9.44 15 17.78 23.34\\\">“Total</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.3523 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.1086 423.0721)\\\" x=\\\"0 7.22 12.78 17.78 20.56\\\">Cost”</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 362.0002 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 364.7564 423.0721)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 373.0962 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 375.8525 423.0721)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 389.7539 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 392.5101 423.0721)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.3031 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 433.0593 423.0721)\\\" x=\\\"0 5.56 11.12 16.68 22.24\\\">under</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 458.6355 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 461.3917 423.0721)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 477.0119 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 479.7681 423.0721)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 528.6841 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 531.4404 423.0721)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 545.5029 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 548.2591 423.0721)\\\" x=\\\"0 5.56\\\">be</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.3822 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 562.1384 423.0721)\\\" x=\\\"0\\\">$</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 411.7537)\\\" x=\\\"0 5.56 8.34 13.9 19.46 25.02 27.8 33.36 38.92\\\">3,965.32.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 82.4041 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 85.187 411.7537)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 102.4184 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 105.2013 411.7537)\\\" x=\\\"0 6.11 11.67 14.45 20.01\\\">Total</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 127.4913 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 130.2742 411.7537)\\\" x=\\\"0 7.22 12.78 17.78\\\">Cost</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 150.8357 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 153.6186 411.7537)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.8989 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 163.6817 411.7537)\\\" x=\\\"0 5.56 11.12 16.12 21.68\\\">based</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 190.9279 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 193.7107 411.7537)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 204.8338 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 207.6166 411.7537)\\\" x=\\\"0 5.56\\\">an</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 218.7397 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 221.5226 411.7537)\\\" x=\\\"0 2.78 8.34 10.62 13.4 15.68 21.24\\\">Initial</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.0431 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 247.8259 411.7537)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68\\\">Payment</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 287.2888 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 290.0717 411.7537)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 298.4115 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 301.1944 411.7537)\\\" x=\\\"0\\\">$</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 306.7559 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 309.5388 411.7537)\\\" x=\\\"0 5.56 8.34 13.9\\\">0.00</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.0017 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 331.7846 411.7537)\\\" x=\\\"0 5.56 11.12 16.12 21.68 27.24 29.52\\\">payable</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 366.8725 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 369.6554 411.7537)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.7784 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 383.5613 411.7537)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 397.4626 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 400.2455 411.7537)\\\" x=\\\"0 5.56 11.12 13.9\\\">date</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.7084 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 422.4913 411.7537)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.8311 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 433.614 411.7537)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 449.2341 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 452.017 411.7537)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 500.933 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 503.7159 411.7537)\\\" x=\\\"0 3.33 6.11 11.67\\\">(the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 520.9473 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 523.7302 411.7537)\\\" x=\\\"0 3.33 10.55 16.11 21.67 27.23 29.51 32.84 38.4\\\">“Required</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 400.4353)\\\" x=\\\"0 2.78 8.34 10.62 13.4 15.68 21.24\\\">Initial</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 64.2205 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 68.4622 400.4353)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46 42.79 46.12\\\">Payment”),</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 117.3635 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 121.6052 400.4353)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 126.6638 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 130.9055 400.4353)\\\" x=\\\"0 5.56 11.12 16.12\\\">any,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 149.8068 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 154.0485 400.4353)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 159.61 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 163.8517 400.4353)\\\" x=\\\"0 5.56 8.89 14.45 19.45 25.01 30.01 35.01 37.29 42.85\\\">processing</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 212.2697 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 216.5114 400.4353)\\\" x=\\\"0 2.78 8.34\\\">fee</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 230.4127 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 234.6544 400.4353)\\\" x=\\\"0 3.33 10.55 16.11 18.39 23.39\\\">(which</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 263.6095 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 267.8511 400.4353)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.1314 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 279.3731 400.4353)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 293.2745 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 297.5161 400.4353)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 303.0777 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 307.3193 400.4353)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 345.6738 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 349.9155 400.4353)\\\" x=\\\"0 2.78 8.34 15.56 21.12 24.45 30.01\\\">towards</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 384.9301 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 389.1718 400.4353)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.0732 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.3149 400.4353)\\\" x=\\\"0 5 10.56 15.56\\\">cost</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 425.6547 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 429.8964 400.4353)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 438.2362 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 442.4779 400.4353)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 461.931 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 466.1727 400.4353)\\\" x=\\\"0 3.33 8.89 14.45 17.23 22.79 25.07\\\">rental)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 494.576 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 498.8177 400.4353)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 507.1575 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 511.3992 400.4353)\\\" x=\\\"0\\\">$</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 516.9607 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 521.2024 400.4353)\\\" x=\\\"0 5.56 11.12 13.9 19.46\\\">10.00</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 546.2268 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 550.4685 400.4353)\\\" x=\\\"0 3.33 6.11 11.67\\\">(the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 389.117)\\\" x=\\\"0 3.33 10 13.33 18.89 23.89 29.45 34.45 39.45 41.73 47.29\\\">“Processing</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 93.5564 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 97.3241 389.117)\\\" x=\\\"0 6.11 11.67 17.23 20.56 23.89\\\">Fee”),</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 123.9941 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 127.7617 389.117)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 132.8203 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 136.588 389.117)\\\" x=\\\"0 5.56 11.12 16.12\\\">any,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 155.4894 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 159.2571 389.117)\\\" x=\\\"0 5.56\\\">26</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 170.3801 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 174.1478 389.117)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.74 24.02 29.58 35.14 40.7\\\">additional</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 217.1361 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 220.9038 389.117)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57 38.35\\\">payments</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 264.2583 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 268.026 389.117)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.3658 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 280.1335 389.117)\\\" x=\\\"0\\\">$</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 285.695 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 289.4627 389.117)\\\" x=\\\"0 5.56 8.34 13.9\\\">6.97</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.9256 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 312.6933 389.117)\\\" x=\\\"0 3.33 8.89\\\">(as</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 326.5849 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 330.3526 389.117)\\\" x=\\\"0 5.56 11.12 13.4 18.96 23.96 26.74 32.3 37.86\\\">adjusted,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 370.9971 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 374.7648 389.117)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.3263 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 384.094 389.117)\\\" x=\\\"0 3.33 10.55 16.11 21.67 27.23 29.51 35.07\\\">“Regular</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 422.5022 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 426.2699 389.117)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46 42.79\\\">Payment”)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 472.393 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 476.1607 389.117)\\\" x=\\\"0 5.56 11.12 16.12 21.68\\\">each,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 500.6235 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 504.3912 389.117)\\\" x=\\\"0 5.56 11.12 16.12 21.68 27.24 29.52\\\">payable</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 539.4791 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 543.2468 389.117)\\\" x=\\\"0 5.56 10.56 16.12 19.45\\\">every</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 377.7986)\\\" x=\\\"0 5.56 8.34 13.9 19.46\\\">other</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 63.493 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 66.4195 377.7986)\\\" x=\\\"0 7.22 12.78 18.34 23.34\\\">week.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 92.5426 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 95.4692 377.7986)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 112.7006 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 115.6272 377.7986)\\\" x=\\\"0 6.11 11.67 14.45 20.01\\\">Total</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 137.9172 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 140.8438 377.7986)\\\" x=\\\"0 7.22 12.78 17.78\\\">Cost</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 161.4053 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 164.3319 377.7986)\\\" x=\\\"0 5.56 7.84 12.84\\\">also</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 182.7352 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 185.6617 377.7986)\\\" x=\\\"0 3.33 8.89 11.67 13.95 19.51 24.51 27.29\\\">reflects</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 217.9518 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 220.8784 377.7986)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 237.0014 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 239.928 377.7986)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.74 24.02 29.58 35.14 40.7\\\">additional</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 282.9163 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 285.8428 377.7986)\\\" x=\\\"0 5 10.56 15.56\\\">cash</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 306.9659 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 309.8924 377.7986)\\\" x=\\\"0 5.56 11.12 13.4\\\">paid</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 328.8573 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 331.7839 377.7986)\\\" x=\\\"0 2.78 8.34 13.9 19.46 24.46\\\">today,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.0251 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 361.9516 377.7986)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 367.0102 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 369.9368 377.7986)\\\" x=\\\"0 5.56 11.12 16.12\\\">any.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.8382 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 391.7647 377.7986)\\\" x=\\\"0 6.67 12.23 17.79\\\">Your</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 412.8878 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 415.8143 377.7986)\\\" x=\\\"0 2.78 8.34 11.12 16.68\\\">total</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.7743 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 437.7009 377.7986)\\\" x=\\\"0 2.28 7.84 10.12 12.9 15.18 20.74\\\">initial</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 460.7233 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 463.6499 377.7986)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 502.0044 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 504.931 377.7986)\\\" x=\\\"0 5.56 11.12\\\">due</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.6155 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 524.5421 377.7986)\\\" x=\\\"0 2.78 8.34 13.9 19.46\\\">today</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.005 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 551.9316 377.7986)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.2118 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 562.1384 377.7986)\\\" x=\\\"0\\\">$</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 366.4803)\\\" x=\\\"0 5.56 8.34 13.9 19.46\\\">0.00,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 62.9412 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 66.7951 366.4803)\\\" x=\\\"0 7.22 12.78 15.06 20.06\\\">which</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 92.4201 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 96.274 366.4803)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 103.5543 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 107.4082 366.4803)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 121.3096 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 125.1635 366.4803)\\\" x=\\\"0 5 10.56\\\">sum</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 144.0551 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 147.909 366.4803)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 156.2488 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 160.1027 366.4803)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 174.0041 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 177.858 366.4803)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 29.51 35.07\\\">Required</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 218.4976 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 222.3515 366.4803)\\\" x=\\\"0 2.78 8.34 10.62 13.4 15.68 21.24\\\">Initial</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.872 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 249.7259 366.4803)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46\\\">Payment,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.9672 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 295.8211 366.4803)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 300.8797 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 304.7336 366.4803)\\\" x=\\\"0 5.56 11.12 16.12\\\">any,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 323.6349 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 327.4888 366.4803)\\\" x=\\\"0 6.67 10 15.56 20.56 26.12 31.12 36.12 38.4 43.96\\\">Processing</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 377.0152 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 380.8691 366.4803)\\\" x=\\\"0 6.11 11.67 17.23\\\">Fee,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 400.8789 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 404.7328 366.4803)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 409.7914 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 413.6453 366.4803)\\\" x=\\\"0 5.56 11.12 16.12\\\">any,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 432.5466 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 436.4005 366.4803)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 453.0851 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 456.939 366.4803)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 473.062 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 476.916 366.4803)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.74 24.02 29.58 35.14 40.7\\\">additional</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 519.9042 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 523.7581 366.4803)\\\" x=\\\"0 5 10.56 15.56\\\">cash</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 544.8812 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 548.7351 366.4803)\\\" x=\\\"0 5.56 11.12 13.4\\\">paid</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 355.1619)\\\" x=\\\"0 2.78 8.34 13.9 19.46 24.46\\\">today.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 67.9412 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 70.9372 355.1619)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 76.4938 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 79.4898 355.1619)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 95.6128 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 98.6088 355.1619)\\\" x=\\\"0 5.56\\\">do</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 109.7318 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 112.7278 355.1619)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 126.6291 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 129.6251 355.1619)\\\" x=\\\"0 3.33 8.89 17.22 19.5\\\">remit</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 151.9054 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 154.9013 355.1619)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 171.0244 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 174.0203 355.1619)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64\\\">applicable</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 219.2303 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 222.2262 355.1619)\\\" x=\\\"0 6.67 10 15.56 20.56 26.12 31.12 36.12 38.4 43.96\\\">Processing</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 271.7526 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 274.7486 355.1619)\\\" x=\\\"0 6.11 11.67\\\">Fee</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.98 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 294.976 355.1619)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 303.8676 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 306.8635 355.1619)\\\" x=\\\"0 2.78 8.34 10.62 13.4 15.68 21.24\\\">Initial</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 330.3841 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 333.38 355.1619)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68\\\">Payment</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 372.8429 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 375.8388 355.1619)\\\" x=\\\"0 5.56\\\">at</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 384.1787 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 387.1747 355.1619)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 401.076 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 404.072 355.1619)\\\" x=\\\"0 2.78 5.06 13.39\\\">time</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 423.0222 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 426.0181 355.1619)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.358 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 437.3539 355.1619)\\\" x=\\\"0 5.56 11.12 14.45 19.45 25.01 30.57 35.57 41.13\\\">purchase,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 481.2699 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 484.2659 355.1619)\\\" x=\\\"0 2.28\\\">it</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.3245 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 492.3205 355.1619)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.6007 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 502.5967 355.1619)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24 31.8\\\">included</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 539.9649 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 542.9608 355.1619)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 550.8026 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.7986 355.1619)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 343.8436)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 75.7781 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 78.9772 343.8436)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46\\\">Payments</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 123.44 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 126.6391 343.8436)\\\" x=\\\"0 5 10.56\\\">set</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 139.9789 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 143.1779 343.8436)\\\" x=\\\"0 2.78 8.34 11.67 14.45\\\">forth</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 163.1877 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 166.3868 343.8436)\\\" x=\\\"0 5.56 11.12 16.68 21.68 27.24\\\">above.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 196.4112 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 199.6102 343.8436)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 216.8416 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 220.0407 343.8436)\\\" x=\\\"0 6.11 11.67 14.45 20.01\\\">Total</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 242.3307 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 245.5297 343.8436)\\\" x=\\\"0 7.22 12.78 17.78\\\">Cost</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 266.0913 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 269.2903 343.8436)\\\" x=\\\"0 5.56 11.12 16.68\\\">does</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.9749 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 294.1739 343.8436)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.0753 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 311.2743 343.8436)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24\\\">include</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 343.0809 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 346.28 343.8436)\\\" x=\\\"0 2.28 7.84 10.62\\\">late</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 362.4616 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 365.6606 343.8436)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57 38.35\\\">payment,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 406.7935 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 409.9925 343.8436)\\\" x=\\\"0 5.56 11.12 16.68 21.68 27.24 30.02 32.8 35.08 40.08 42.36 47.92 53.48\\\">nonsufficient</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.2571 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 469.4562 343.8436)\\\" x=\\\"0 2.78 8.34 13.9 19.46 24.46\\\">funds,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 496.6974 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 499.8964 343.8436)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 27.3 30.08\\\">default,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 532.7577 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 535.9568 343.8436)\\\" x=\\\"0 5.56 7.84 12.84 17.84 23.4 28.96\\\">pickup,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 332.5252)\\\" x=\\\"0 3.33 8.89 11.17 16.73 21.73 24.51 30.07 32.85 38.41 46.74 52.3 57.86 60.64\\\">reinstatement,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 104.1228 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 108.8966 332.5252)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 117.7882 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 122.5619 332.5252)\\\" x=\\\"0 5.56 8.34 13.9 19.46\\\">other</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 145.3549 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 150.1286 332.5252)\\\" x=\\\"0 2.78 8.34 13.9 18.9\\\">fees,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 171.8083 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 176.5821 332.5252)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 181.6407 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 186.4144 332.5252)\\\" x=\\\"0 5.56 11.12 16.12\\\">any,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 205.3158 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.0895 332.5252)\\\" x=\\\"0 5.56 7.84 12.84 17.84 20.12 25.68 30.68 36.24\\\">disclosed</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 251.8962 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 256.6699 332.5252)\\\" x=\\\"0 5.56 11.12 13.4 18.96 26.18\\\">below.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 285.6347 332.5252)\\\" x=\\\"0 4.7737\\\">  </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 295.1822 332.5252)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.4137 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 317.1874 332.5252)\\\" x=\\\"0 5 10.56 15.56\\\">cost</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.5273 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 340.301 332.5252)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.6409 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 353.4146 332.5252)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 372.8677 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 377.6415 332.5252)\\\" x=\\\"0 3.33 8.89 14.45 17.23 22.79\\\">rental</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.7147 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.4884 332.5252)\\\" x=\\\"0 3.33 6.66 13.88 19.44 24.44\\\">(“Cost</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.7101 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 439.4839 332.5252)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.8237 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 452.5975 332.5252)\\\" x=\\\"0 7.22 12.78 18.34 21.12 26.68 28.96 32.29\\\">Rental”)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 488.2225 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 492.9962 332.5252)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 500.2765 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 505.0502 332.5252)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 518.9516 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 523.7253 332.5252)\\\" x=\\\"0 5.56 7.84 10.62 13.4 18.96 22.29 27.85 33.41 38.41\\\">difference</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 321.2068)\\\" x=\\\"0 5.56 11.12 13.9 21.12 26.68 32.24 37.8 40.46 43.24 48.8 54.36 57.02 63.13 68.69 71.47 77.03 79.31 81.97 89.19 94.75 99.75 102.53 105.19 110.75 116.31 121.87 124.53 131.75 137.31 142.31 147.87 150.53 157.2 160.53 162.81 167.81 173.37 176.15 178.81 184.37 189.93 195.49 198.15 205.37 207.65 209.93 212.21 214.87 220.43 225.99 228.65 234.21 236.87 242.43 247.99 250.77 256.33 261.89\\\">between the Total Cost and Cash Price, and will be $ 93.32.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 309.8885)\\\" x=\\\"0 6.67 11.67 17.23 22.79 27.79 30.57 36.13\\\">Expected</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 82.3943 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 86.3823 309.8885)\\\" x=\\\"0 7.22 12.78 15.06 17.34 22.34 27.9 31.23\\\">Delivery</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 122.6177 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 126.6057 309.8885)\\\" x=\\\"0 7.22 12.78 15.56 21.12\\\">Date;</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 150.507 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 154.495 309.8885)\\\" x=\\\"0 6.11 8.39 11.72 16.72\\\">First</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 173.9921 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 177.9801 309.8885)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 213.0582 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 217.0462 309.8885)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46\\\">Payment.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.2874 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 263.2754 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 267.2634 309.8885)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 284.4948 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 288.4828 309.8885)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 29.51 35.07\\\">Required</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.1225 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 333.1105 309.8885)\\\" x=\\\"0 2.78 8.34 10.62 13.4 15.68 21.24\\\">Initial</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 356.631 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 360.619 309.8885)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46\\\">Payment,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.8602 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 406.8482 309.8885)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 411.9068 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 415.8947 309.8885)\\\" x=\\\"0 5.56 11.12 16.12\\\">any,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.7961 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 438.7841 309.8885)\\\" x=\\\"0 5 10.56 15.56 21.12 24.45\\\">covers</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.2372 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 472.2252 309.8885)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.1266 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 490.1146 309.8885)\\\" x=\\\"0 3.33 8.89 14.45 17.23 22.79\\\">rental</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 515.1878 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 519.1758 309.8885)\\\" x=\\\"0 5.56 11.12 14.45 16.73 22.29\\\">period</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 547.0323 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 551.0202 309.8885)\\\" x=\\\"0 2.78 8.34 13.9\\\">that</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 298.5701)\\\" x=\\\"0 5.56 11.12 16.68 18.96 24.52\\\">begins</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 70.2264 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 73.3394 298.5701)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 84.4625 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 87.5755 298.5701)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 101.4769 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 104.59 298.5701)\\\" x=\\\"0 5.56 11.12 13.9\\\">date</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 124.0529 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 127.166 298.5701)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 143.289 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 146.4021 298.5701)\\\" x=\\\"0 3.33 8.89 13.89 19.45 21.73 26.73\\\">receive</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 178.697 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 181.8101 298.5701)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 195.7114 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 198.8245 298.5701)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 236.6175 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 239.7305 298.5701)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.4151 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 259.5282 298.5701)\\\" x=\\\"0 5.56 11.12 16.68\\\">ends</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.2128 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 284.3258 298.5701)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 295.4489 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 298.562 298.5701)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 318.0151 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 321.1281 298.5701)\\\" x=\\\"0 2.78 5.06 8.39 13.39\\\">first</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 337.2951 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 340.4082 298.5701)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.4863 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 378.5994 298.5701)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68\\\">Payment</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 418.0623 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 421.1754 298.5701)\\\" x=\\\"0 5.56 11.12 13.9 19.46\\\">date.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 443.4166 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 446.5297 298.5701)\\\" x=\\\"0 6.67 12.23 17.79\\\">Your</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.6527 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 470.7658 298.5701)\\\" x=\\\"0 2.78 5.06 8.39 13.39\\\">first</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.9328 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 490.0459 298.5701)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 525.124 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 528.237 298.5701)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68\\\">Payment</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 287.2518)\\\" x=\\\"0 5.56 11.12 13.9\\\">date</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.1629 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 63.9277 287.2518)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 77.9902 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.7549 287.2518)\\\" x=\\\"0 5.56\\\">be</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 92.878 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 96.6428 287.2518)\\\" x=\\\"0 5.56\\\">at</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 104.9826 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 108.7474 287.2518)\\\" x=\\\"0 2.28 7.84 13.4 18.4\\\">least</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 129.929 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 133.6938 287.2518)\\\" x=\\\"0 5 10.56 15.56 21.12\\\">seven</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.3784 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 164.1432 287.2518)\\\" x=\\\"0 5.56 11.12 16.12\\\">days</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 185.2662 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 189.031 287.2518)\\\" x=\\\"0 5.56 8.34 11.12 16.68\\\">after</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.0407 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 212.8055 287.2518)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 226.7069 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 230.4717 287.2518)\\\" x=\\\"0 2.28 7.84 10.62 16.18\\\">later</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 249.9834 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 253.7482 287.2518)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.088 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 265.8528 287.2518)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 27.8 33.36 38.92 44.48\\\">07/24/2020</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 315.9016 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 319.6664 287.2518)\\\" x=\\\"0 3.33 5.61\\\">(i)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 328.6068 287.2518)\\\" x=\\\"0 3.7648\\\">  </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 336.1364 287.2518)\\\" x=\\\"0 3.33 6.11 11.67\\\">(the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 353.3678 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 357.1326 287.2518)\\\" x=\\\"0 3.33 10 15 20.56 26.12 31.12 33.9 39.46\\\">“Expected</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.157 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 405.9218 287.2518)\\\" x=\\\"0 7.22 12.78 15.06 17.34 22.34 27.9 31.23\\\">Delivery</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 442.1572 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 445.9219 287.2518)\\\" x=\\\"0 7.22 12.78 15.56 21.12 24.45 27.78\\\">Date”),</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 476.4835 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 480.2482 287.2518)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 496.9328 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 500.6976 287.2518)\\\" x=\\\"0 3.33 5.61 7.89\\\">(ii)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 511.9183 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 515.6831 287.2518)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.5844 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 533.3492 287.2518)\\\" x=\\\"0 5.56 11.12 13.9\\\">date</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.8121 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 556.5769 287.2518)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 275.9334)\\\" x=\\\"0 7.22 12.78 15.06 20.06 25.62 28.28 31.06 36.62 42.18 44.84 51.51 54.84 60.4 65.96 71.52 74.85 77.63 82.63 85.29 87.57 92.57 95.23 100.79 104.12 109.68 114.68 116.96 122.52 128.08 133.64 136.3 141.86 145.19 147.85 153.41 158.97 161.25 163.53 168.53 174.09 177.42 182.98 188.54 191.2 193.98 199.54 202.2 207.2 212.76 218.32\\\">which the Property is provided or delivered to you.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 264.615)\\\" x=\\\"0 5.56 11.12 16.68 20.01 27.23 32.79\\\">100-Day</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 78.4979 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.9917 264.615)\\\" x=\\\"0 7.78 13.34 16.12 18.4 23.96 29.52\\\">Option.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 114.2915 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 117.7853 264.615)\\\" x=\\\"0 6.67\\\">At</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 127.2335 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 130.7273 264.615)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.8504 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 150.3442 264.615)\\\" x=\\\"0 2.78 5.06 13.39\\\">time</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 169.2944 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 172.7882 264.615)\\\" x=\\\"0 5.56 11.12 14.45 16.73 22.29\\\">during</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 200.6446 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 204.1385 264.615)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 218.0398 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 221.5336 264.615)\\\" x=\\\"0 2.78 5.06 8.39 13.39\\\">first</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 237.7006 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 241.1944 264.615)\\\" x=\\\"0 5.56 11.12\\\">100</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.879 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 261.3728 264.615)\\\" x=\\\"0 2.78 6.11 11.67\\\">from</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.3728 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 284.8666 264.615)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 298.768 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 302.2618 264.615)\\\" x=\\\"0 6.67 11.67 17.23 22.79 27.79 30.57 36.13\\\">Expected</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 343.9561 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 347.45 264.615)\\\" x=\\\"0 7.22 12.78 15.06 17.34 22.34 27.9 31.23\\\">Delivery</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.6853 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 387.1791 264.615)\\\" x=\\\"0 7.22 12.78 15.56 21.12\\\">Date,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 411.0805 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 414.5743 264.615)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 428.4757 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 431.9695 264.615)\\\" x=\\\"0 3.33 8.89 14.45 20.01 23.34 30.56 36.12\\\">“100-Day</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 473.0974 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 476.5912 264.615)\\\" x=\\\"0 7.78 13.34 16.12 18.4 23.96 29.52\\\">Option”</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.4428 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 512.9366 264.615)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.8 31.8\\\">applies,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 547.5215 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 551.0154 264.615)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 253.2967)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 56.823 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 59.7295 253.2967)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 78.6211 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.5276 253.2967)\\\" x=\\\"0 5.56 10.56 16.12 21.68 23.96 27.29\\\">acquire</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 114.384 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 117.2905 253.2967)\\\" x=\\\"0 5.56 12.78 18.34 23.9 27.23 32.23 37.79 40.07\\\">ownership</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 162.9301 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 165.8366 253.2967)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 174.1764 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 177.0829 253.2967)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 190.9843 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 193.8907 253.2967)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.6837 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 234.5901 253.2967)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.1517 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 248.0581 253.2967)\\\" x=\\\"0 5.56 11.12 16.12 18.4 23.96\\\">paying</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 277.5845 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 280.4909 253.2967)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.0525 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 293.9589 253.2967)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 307.8603 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 310.7667 253.2967)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 344.1212 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 347.0277 253.2967)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 357.5892 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 360.4957 253.2967)\\\" x=\\\"0 7.22 12.78 15.06 20.06\\\">which</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 386.1207 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 389.0271 253.2967)\\\" x=\\\"0 3.33 5.61\\\">(i)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 397.9676 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 400.874 253.2967)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 414.7754 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 417.6819 253.2967)\\\" x=\\\"0 5 10.56\\\">sum</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 436.5735 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 439.4799 253.2967)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.8198 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 450.7262 253.2967)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 464.6276 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 467.5341 253.2967)\\\" x=\\\"0 5.56 11.12\\\">100</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.2186 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 487.1251 253.2967)\\\" x=\\\"0\\\">–</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 490.0548 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 492.9612 253.2967)\\\" x=\\\"0 7.22 12.78\\\">Day</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 510.7444 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 513.6509 253.2967)\\\" x=\\\"0 6.67 15 20.56 26.12 31.68 34.46\\\">Amount,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 550.8921 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.7986 253.2967)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 241.9783)\\\" x=\\\"0 6.67 10 15.56 20.56 26.12 31.12 36.12 38.4 43.96\\\">Processing</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 90.2264 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 92.924 241.9783)\\\" x=\\\"0 6.11 11.67 17.23\\\">Fee,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 112.9338 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 115.6314 241.9783)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 120.69 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 123.3877 241.9783)\\\" x=\\\"0 5.56 11.12 16.12\\\">any,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 142.289 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 144.9867 241.9783)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64\\\">applicable</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 190.1967 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 192.8943 241.9783)\\\" x=\\\"0 5 10.56 12.84 18.4\\\">sales</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 216.2976 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 218.9953 241.9783)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 227.8869 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 230.5845 241.9783)\\\" x=\\\"0 5.56 10.56\\\">use</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 246.7076 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 249.4052 241.9783)\\\" x=\\\"0 2.78 8.34 13.34 18.9 23.9\\\">taxes,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.0849 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 278.7826 241.9783)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 295.4672 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 298.1648 241.9783)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 314.2879 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 316.9855 241.9783)\\\" x=\\\"0 5.56 11.12 16.68 22.24 24.52\\\">unpaid</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 347.0734 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 349.771 241.9783)\\\" x=\\\"0 2.78 8.34 13.9\\\">fees</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 368.6724 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 371.3701 241.9783)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 384.1533 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 386.8509 241.9783)\\\" x=\\\"0 5.56 11.12 16.12\\\">have</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 408.5355 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 411.2331 241.9783)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01 30.57 36.13\\\">charged,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 450.1492 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 452.8468 241.9783)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.68 32.24\\\">exceeds</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 490.0929 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 492.7906 241.9783)\\\" x=\\\"0 3.33 5.61 7.89\\\">(ii)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 504.0113 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 506.7089 241.9783)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 520.6103 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 523.3079 241.9783)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 556.6624 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 559.3601 241.9783)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 230.66)\\\" x=\\\"0 5.56 11.12 16.12 18.78 21.56 27.12 29.4 32.18 34.46 40.02 42.3 44.96 51.63 57.19 62.19 70.52 76.08 81.64 84.42 87.08 92.64 98.2 103.76 106.42 113.64 119.2 124.76 130.32 132.6 138.16 141.49 144.15 150.82 156.38 161.38 169.71 175.27 180.83 183.61 188.61 191.27 196.27 201.83 207.39 210.05 215.61 221.17 226.17 231.73 234.39 242.72 248.28 253.84 259.4 262.18 264.84 270.95 276.51 282.07 284.73 290.29 295.85 301.41 304.07 311.29 316.85 321.85 324.51 331.18 339.51 345.07 350.63 356.19 358.97 361.63 363.91 368.91 371.57 377.13 379.79 385.35 390.91 393.69 399.25 404.81\\\">any Initial Payment and Regular Payments you have made. The 100 Day Amount is $ 97.70.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 219.3416)\\\" x=\\\"0 6.67 12.23 15.56 17.84\\\">Early</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 63.5418 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 66.4605 219.3416)\\\" x=\\\"0 6.67 12.23 17.23 20.56 28.34 33.9\\\">Buy-Out</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 103.1401 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 106.0588 219.3416)\\\" x=\\\"0 7.78 13.34 16.12 18.4 23.96 29.52\\\">Option.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 138.3586 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 141.2772 219.3416)\\\" x=\\\"0 6.67 9.45 12.23 17.79\\\">After</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 162.3954 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 165.3141 219.3416)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 184.7672 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 187.6858 219.3416)\\\" x=\\\"0 5.56 11.12 16.68 20.01 27.23 32.79\\\">100-Day</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.4837 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 228.4024 219.3416)\\\" x=\\\"0 7.22 12.78 17.78\\\">Cash</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 251.7471 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 254.6657 219.3416)\\\" x=\\\"0 6.67 12.23 17.23 22.79 25.57\\\">Payoff</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 283.0153 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 285.934 219.3416)\\\" x=\\\"0 7.78 13.34 16.12 18.4 23.96\\\">Option</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 315.4555 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 318.3741 219.3416)\\\" x=\\\"0 5.56 11.12\\\">has</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 334.4972 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 337.4158 219.3416)\\\" x=\\\"0 5.56 10.56 16.12 18.4 21.73 27.29 32.85\\\">expired,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 373.0506 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 375.9693 219.3416)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 389.8706 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 392.7893 219.3416)\\\" x=\\\"0 3.33 10 15.56 18.89 21.17\\\">“Early</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 418.9611 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 421.8798 219.3416)\\\" x=\\\"0 6.67 12.23 17.23 20.56 28.34 33.9\\\">Buy-Out</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 458.5595 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 461.4781 219.3416)\\\" x=\\\"0 7.78 13.34 16.12 18.4 23.96 29.52\\\">Option”</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 494.3297 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 497.2484 219.3416)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.8\\\">applies</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.055 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 531.9737 219.3416)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 548.6582 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 551.5769 219.3416)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 208.0232)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 59.5916 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 63.2372 208.0232)\\\" x=\\\"0 5.56 11.12 14.45 19.45 25.01 30.57 35.57\\\">purchase</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 104.3748 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 108.0204 208.0232)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 121.9218 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 125.5673 208.0232)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 163.3603 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 167.0058 208.0232)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 177.5674 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 181.2129 208.0232)\\\" x=\\\"0 5.56 11.12 16.12 18.4 23.96\\\">paying</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 210.7393 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 214.3849 208.0232)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 224.9464 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 228.5919 208.0232)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 242.4933 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 246.1389 208.0232)\\\" x=\\\"0 5 10.56\\\">sum</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 265.0305 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 268.676 208.0232)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 277.0159 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 280.6614 208.0232)\\\" x=\\\"0 3.33 8.89\\\">(1)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 292.8831 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 296.5286 208.0232)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.6517 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 316.2972 208.0232)\\\" x=\\\"0 5.56 11.12 16.12\\\">past</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.1986 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.8442 208.0232)\\\" x=\\\"0 5.56 11.12\\\">due</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.5287 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 359.1743 208.0232)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 394.2524 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 397.898 208.0232)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46 44.46\\\">Payments,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 445.1392 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 448.7847 208.0232)\\\" x=\\\"0 5.56 11.12 16.68 22.24 24.52\\\">unpaid</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 478.8726 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 482.5182 208.0232)\\\" x=\\\"0 2.78 8.34 13.9\\\">fees</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.4196 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 505.0651 208.0232)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.7497 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 525.3952 208.0232)\\\" x=\\\"0 5 10.56 12.84 18.4 23.4 26.18 31.74 36.74\\\">sales/use</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 196.7049)\\\" x=\\\"0 2.78 8.34 13.34 18.9 23.9\\\">taxes,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 67.3797 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 70.748 196.7049)\\\" x=\\\"0 3.33 8.89\\\">(2)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 82.9697 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 86.338 196.7049)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02\\\">70.00%</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 120.254 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 123.6223 196.7049)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 131.9621 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 135.3305 196.7049)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 149.2318 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 152.6001 196.7049)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 185.9546 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 189.3229 196.7049)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 199.8845 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 203.2528 196.7049)\\\" x=\\\"0 7.22 12.78 15.06 20.06\\\">which</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 228.8778 196.7049)\\\" x=\\\"0 3.3683\\\">  </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 235.6144 196.7049)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 249.5157 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 252.8841 196.7049)\\\" x=\\\"0 6.11 11.67 14.45 20.01\\\">Total</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.1741 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 278.5424 196.7049)\\\" x=\\\"0 7.22 12.78 17.78\\\">Cost</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.1039 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 302.4722 196.7049)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.68 32.24\\\">exceeds</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 339.7183 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 343.0866 196.7049)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 356.988 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 360.3563 196.7049)\\\" x=\\\"0 2.78 8.34 10.62 13.4 15.68 21.24\\\">Initial</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.8768 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 387.2451 196.7049)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46\\\">Payment,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 429.4863 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 432.8546 196.7049)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 437.9132 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 441.2815 196.7049)\\\" x=\\\"0 5.56 11.12 16.12\\\">any,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 460.1829 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 463.5512 196.7049)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 480.2358 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 483.6041 196.7049)\\\" x=\\\"0 5 10 15.56 21.12 26.68 32.24 34.52 40.08\\\">scheduled</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.2535 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 532.6218 196.7049)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 185.3865)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46 44.46 47.12 49.9 55.46 58.79 64.35 69.91 75.47 81.03 83.69 86.47 92.03 97.59 100.25 105.81 111.37 114.15 119.71 122.37 127.37 132.93 138.49 141.15 146.71 151.71 157.27 160.6 165.6 167.88 172.88 178.44 181.1 186.1 191.66 197.22 200.55 203.21 208.77 214.33 217.11 219.39 224.95 230.51 233.17 238.73 244.29 249.85 252.51 255.84 261.4 264.73 267.39 272.95 278.51 284.07 286.35 288.63 293.63 299.19 304.75 307.03 312.59 315.25 320.25 325.81 328.09 333.65 338.65 341.31 346.87 350.2 352.86 358.42 363.42 368.98 371.64 374.42 379.98 384.98 390.54 395.54\\\">Payments through the date you exercise your option and (3) applicable sales or use taxes.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 174.0682)\\\" x=\\\"0 7.22 12.78 15.44 22.11 27.67 32.67 38.23 41.56 43.84 46.62 51.62 54.28 61.5 67.06 72.62 78.18 83.18 85.46 88.24 90.9 98.12 103.68 109.24 114.8 117.08 120.41 125.97 131.53 134.31 136.97 144.19 149.75 152.41 157.41 162.97 167.97 173.53 176.86 179.14 181.92 186.92 189.58 195.14 200.7 206.26 211.82 216.82 219.1 221.88 224.54 226.82 231.82 234.48 237.81 243.37 248.93 254.49 256.77 260.1 265.66 271.22 273.88 279.44 285 290.56 296.12 299.45 302.11 304.89 310.45 312.73 317.73 320.39 327.06 332.62 335.95 341.51 347.07 355.4 360.96 366.52 369.3\\\">No Security Deposit Required. No security deposit is required under this Agreement.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 162.7498)\\\" x=\\\"0 5.56 11.12 16.68 21.68\\\">Lease</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 67.9461 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 72.4996 162.7498)\\\" x=\\\"0 6.11 11.67 15 23.33\\\">Term,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 98.608 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 103.1616 162.7498)\\\" x=\\\"0 6.67 12.23 17.79 22.79 28.35 33.91 39.47 45.03 50.59\\\">Subsequent</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 156.5405 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 161.094 162.7498)\\\" x=\\\"0 6.11 11.67 15 23.33 28.33\\\">Terms;</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 192.2024 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 196.7559 162.7498)\\\" x=\\\"0 7.22 12.78 18.34 23.9 31.12 36.68 38.96\\\">Renewal.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.504 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 243.0575 162.7498)\\\" x=\\\"0 6.67 12.23 17.79\\\">Your</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 264.1806 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 268.7341 162.7498)\\\" x=\\\"0 2.28 7.84 10.12 12.9 15.18 20.74\\\">initial</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.7566 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 296.3101 162.7498)\\\" x=\\\"0 2.28 7.84 13.4 18.4\\\">lease</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 320.2749 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 324.8285 162.7498)\\\" x=\\\"0 2.78 8.34 11.67\\\">term</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 344.8285 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 349.382 162.7498)\\\" x=\\\"0 5.56 10.56 16.12 18.4 21.73 27.29\\\">expires</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 381.6769 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 386.2305 162.7498)\\\" x=\\\"0 5.56\\\">60</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 397.3535 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 401.907 162.7498)\\\" x=\\\"0 5.56 11.12 16.12\\\">days</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 423.0301 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 427.5836 162.7498)\\\" x=\\\"0 2.78 6.11 11.67\\\">from</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.5836 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 452.1372 162.7498)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.0385 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 470.5921 162.7498)\\\" x=\\\"0 2.28 7.84 10.62 16.18\\\">later</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 490.1038 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 494.6573 162.7498)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 502.9972 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 507.5507 162.7498)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.4521 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 526.0056 162.7498)\\\" x=\\\"0 6.67 11.67 17.23 22.79 27.79 30.57 36.13\\\">Expected</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 151.4315)\\\" x=\\\"0 7.22 12.78 15.06 17.34 22.34 27.9 31.23\\\">Delivery</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 76.9353 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.1545 151.4315)\\\" x=\\\"0 7.22 12.78 15.56\\\">Date</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 102.2775 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 106.4967 151.4315)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 115.3883 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 119.6074 151.4315)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 133.5088 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 137.7279 151.4315)\\\" x=\\\"0 5.56 11.12 13.9\\\">date</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 157.1908 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 161.4099 151.4315)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 172.533 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 176.7521 151.4315)\\\" x=\\\"0 7.22 12.78 15.06 20.06\\\">which</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 202.3771 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 206.5963 151.4315)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 220.4976 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 224.7168 151.4315)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.5097 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 266.7289 151.4315)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 274.0091 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 278.2283 151.4315)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29 32.85\\\">provided</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 316.6463 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 320.8654 151.4315)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.757 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 333.9761 151.4315)\\\" x=\\\"0 5.56 11.12 13.4 15.68 20.68 26.24 29.57 35.13\\\">delivered</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 374.6744 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 378.8935 151.4315)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 387.2334 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 391.4525 151.4315)\\\" x=\\\"0 5 10.56 16.12\\\">you.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 410.3539 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 414.573 151.4315)\\\" x=\\\"0 7.22 12.78 15.56 17.84\\\">Until</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.6951 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 438.9142 151.4315)\\\" x=\\\"0 3.33 5.61\\\">(i)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.8546 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 452.0738 151.4315)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.1968 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 472.416 151.4315)\\\" x=\\\"0 5.56 11.12 13.9 19.46 21.74\\\">obtain</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.7206 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 503.9398 151.4315)\\\" x=\\\"0 5.56 12.78 18.34 23.9 27.23 32.23 37.79 40.07\\\">ownership</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.5794 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.7986 151.4315)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 140.1131)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 78.493 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 82.2535 140.1131)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 92.815 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 96.5756 140.1131)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29 32.85\\\">provided</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 134.9936 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 138.7541 140.1131)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.5959 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 150.3565 140.1131)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 165.9766 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 169.7371 140.1131)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 221.4315 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 225.192 140.1131)\\\" x=\\\"0 3.33 5.61 7.89\\\">(ii)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 236.4127 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 240.1733 140.1131)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.2963 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 260.0569 140.1131)\\\" x=\\\"0 2.78 8.34 11.67 20 22.28 27.84 33.4 36.18\\\">terminate</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 301.8001 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 305.5606 140.1131)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 321.1807 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 324.9413 140.1131)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 373.8573 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 377.6179 140.1131)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.1794 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 391.9399 140.1131)\\\" x=\\\"0 5.56 11.12 14.45 22.78 25.06 27.84 30.62 36.18\\\">permitted</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 433.6831 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 437.4437 140.1131)\\\" x=\\\"0 5.56 11.12 14.45 20.01 25.57 31.13 36.69 42.25\\\">hereunder</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 483.0345 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 486.795 140.1131)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 503.4796 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 507.2402 140.1131)\\\" x=\\\"0 5 10.56 13.89 17.22 22.78 28.34 33.9 39.46\\\">surrender</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 550.038 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.7986 140.1131)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 128.7947)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 78.493 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.5631 128.7947)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 89.4049 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 92.4749 128.7947)\\\" x=\\\"0 2.28 5.06\\\">its</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 102.5335 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 105.6036 128.7947)\\\" x=\\\"0 5.56 8.89 11.17 16.73 19.01 24.57 30.13\\\">original</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 138.0206 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 141.0907 128.7947)\\\" x=\\\"0 5 10.56 16.12 21.68 23.96 26.74 29.02 34.58 40.14\\\">condition,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 184.0155 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 187.0856 128.7947)\\\" x=\\\"0 2.28 7.84 12.84\\\">less</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 204.9274 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 207.9975 128.7947)\\\" x=\\\"0 3.33 8.89 14.45 19.45 25.01 30.57 36.13 41.69 43.97\\\">reasonable</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.5385 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 260.6086 128.7947)\\\" x=\\\"0 7.22 12.78 18.34\\\">wear</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 282.2834 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 285.3535 128.7947)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.038 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 305.1081 128.7947)\\\" x=\\\"0 2.78 8.34 13.9 17.23\\\">tear,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 325.1179 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 328.188 128.7947)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.7495 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 341.8196 128.7947)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 350.1594 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 353.2295 128.7947)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 367.1309 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 370.201 128.7947)\\\" x=\\\"0 5.56 11.12\\\">end</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 386.8855 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 389.9556 128.7947)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 398.2955 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 401.3656 128.7947)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 406.9271 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 409.9972 128.7947)\\\" x=\\\"0 2.28 7.84 13.4 18.4\\\">lease</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 433.962 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 437.0321 128.7947)\\\" x=\\\"0 2.78 8.34 11.67 20\\\">term,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 459.8104 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 462.8805 128.7947)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 471.7721 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 474.8422 128.7947)\\\" x=\\\"0 3.33 5.61 7.89 10.17\\\">(iii)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 488.3432 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 491.4133 128.7947)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 504.1965 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 507.2666 128.7947)\\\" x=\\\"0 2.78 8.34 11.67 20 22.28 27.84 33.4 36.18\\\">terminate</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.0097 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 552.0798 128.7947)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 117.4764)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 89.616 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 93.7725 117.4764)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 101.6143 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 105.7709 117.4764)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 111.3324 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 115.4889 117.4764)\\\" x=\\\"0 8.33 13.89 19.45 25.01 30.57\\\">manner</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 149.3952 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 153.5517 117.4764)\\\" x=\\\"0 5.56 11.12 14.45 22.78 25.06 27.84 30.62 36.18\\\">permitted</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 195.2948 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 199.4514 117.4764)\\\" x=\\\"0 5.56 11.12 14.45 20.01 25.57 31.13 36.69 42.25 45.58\\\">hereunder,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.8205 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 251.977 117.4764)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 267.5971 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 271.7537 117.4764)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 320.6697 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 324.8262 117.4764)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.8887 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 343.0452 117.4764)\\\" x=\\\"0 5.56 11.12 13.9 19.46 27.79 33.35 36.13 38.41 43.41 48.97 51.25 53.53\\\">automatically</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 401.5804 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 405.7369 117.4764)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 422.4215 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 426.578 117.4764)\\\" x=\\\"0 3.33 8.89 14.45 20.01 25.57 28.35 33.91 39.47 41.75\\\">repeatedly</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 473.3358 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 477.4923 117.4764)\\\" x=\\\"0 3.33 8.89 14.45 20.01\\\">renew</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 504.7287 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 508.8852 117.4764)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 520.5551 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 524.7116 117.4764)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.74 24.02 29.58 35.14 40.7\\\">additional</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 106.158)\\\" x=\\\"0 2.28 7.84 13.4 18.4 23.96 26.62 29.4 34.96 38.29 46.62 51.62 54.4 57.06 62.62 68.18 73.18 78.74 81.4 86.96 92.52 95.18 100.74 106.3 111.3 116.3 118.96 121.24 126.8 129.46 131.74 137.3 142.86 148.42 151.2 156.76\\\">lease terms, each 60 days in length.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 94.8397)\\\" x=\\\"0 8.33 13.89 16.17 21.73 24.51 30.07 35.63 41.19 46.75 51.75\\\">Maintenance</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 98.0193 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 101.2487 94.8397)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 109.5885 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 112.8178 94.8397)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 126.7192 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 129.9485 94.8397)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 170.5198 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 173.7491 94.8397)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 191.5421 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 194.7714 94.8397)\\\" x=\\\"0 5.56 8.89\\\">are</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.2246 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 212.4539 94.8397)\\\" x=\\\"0 3.33 8.89 13.89 19.45 25.01 30.57 35.57 37.85 43.41 45.69\\\">responsible</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 263.7136 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 266.943 94.8397)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 278.6129 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 281.8422 94.8397)\\\" x=\\\"0 8.33 13.89 16.17 21.73 24.51 30.07 32.35 37.91 40.19 45.75\\\">maintaining</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 333.1606 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 336.3899 94.8397)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 345.2815 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 348.5108 94.8397)\\\" x=\\\"0 5 10.56 13.89 18.89 21.17 26.17 28.45 34.01\\\">servicing</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.086 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 391.3154 94.8397)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 405.2167 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 408.446 94.8397)\\\" x=\\\"0 5.56 8.89 14.45 20.01 25.57 28.9 31.68\\\">property</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 445.1306 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 448.3599 94.8397)\\\" x=\\\"0 7.22 12.78 15.06 17.34\\\">while</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 471.2652 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 474.4945 94.8397)\\\" x=\\\"0 2.28\\\">it</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 479.5531 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 482.7825 94.8397)\\\" x=\\\"0 2.28 5.06\\\">its</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 492.8411 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 496.0704 94.8397)\\\" x=\\\"0 5.56 11.12 13.4 18.96\\\">being</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 520.5968 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 523.8261 94.8397)\\\" x=\\\"0 2.28 7.84 13.4 18.4 23.96 29.52\\\">leased.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 556.1308 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 559.3601 94.8397)\\\" x=\\\"0 2.78\\\">In</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 83.5213)\\\" x=\\\"0 5.56 10.56 15.56 21.12 24.45 30.01 35.57 41.13 46.13\\\">accordance</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 92.3992 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 95.7041 83.5213)\\\" x=\\\"0 7.22 9.5 12.28\\\">with</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 113.5459 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 116.8509 83.5213)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 132.471 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 135.7759 83.5213)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 187.4702 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 190.7752 83.5213)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 206.8982 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.2031 83.5213)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 224.2656 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 227.5706 83.5213)\\\" x=\\\"0 5 10.56 16.12 21.68 27.24 32.24\\\">conduct</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.595 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 265.8999 83.5213)\\\" x=\\\"0 5.56 7.84\\\">all</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.022 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 279.3269 83.5213)\\\" x=\\\"0 8.33 13.89 16.17 21.73 24.51 30.07 35.63 41.19 46.75 51.75 57.31\\\">maintenance,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 339.4246 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 342.7295 83.5213)\\\" x=\\\"0 3.33 8.89 14.45 20.01 22.29 25.62 30.62\\\">repairs,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 376.1328 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 379.4377 83.5213)\\\" x=\\\"0 5.56 11.12 16.12 21.68 27.24\\\">upkeep</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 412.2454 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 415.5503 83.5213)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 432.2349 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 435.5398 83.5213)\\\" x=\\\"0 5 10.56 13.89 19.45\\\">care.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 457.7712 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 461.0762 83.5213)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.6328 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 469.9377 83.5213)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.0608 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 489.3657 83.5213)\\\" x=\\\"0 8.33 13.89 19.45 25.01 27.79 33.35 38.35 41.13 46.69 50.02 55.58 58.91 61.13\\\">manufacturer’s</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 555.5034 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 558.8083 83.5213)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 83.5213)\\\" x=\\\"0\\\"> </text></g><clipPath id=\\\"clip0-11\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip0-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 546.6561 L 573.6 546.6561 L 573.6 545.6561 L 34.8 545.6561 L 34.8 546.6561 z \\\"/><path clip-path=\\\"url(#clip0-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.6 545.6561 L 573.6 545.6561 L 573.6 530.3377 L 572.6 530.3377 L 572.6 545.6561 z \\\"/><path clip-path=\\\"url(#clip0-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 545.6561 L 35.8 545.6561 L 35.8 530.3377 L 34.8 530.3377 L 34.8 545.6561 z \\\"/><path clip-path=\\\"url(#clip0-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 530.3377 L 573.6 530.3377 L 573.6 529.3377 L 34.8 529.3377 L 34.8 530.3377 z \\\"/><path clip-path=\\\"url(#clip0-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 81.9217 L 573.6 81.9217 L 573.6 80.9217 L 34.8 80.9217 L 34.8 81.9217 z \\\"/><path clip-path=\\\"url(#clip0-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.6 529.3377 L 573.6 529.3377 L 573.6 81.9217 L 572.6 81.9217 L 572.6 529.3377 z \\\"/><path clip-path=\\\"url(#clip0-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 529.3377 L 35.8 529.3377 L 35.8 81.9217 L 34.8 81.9217 L 34.8 529.3377 z \\\"/><g clip-path=\\\"url(#clip0-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 36.5264)\\\" x=\\\"0 6.498 11.997 14.391 16.785 21.789 26.793 29.295 34.299 39.303 44.307 504 506.3906 508.7812 511.1719 513.5625 515.9531 518.3438 520.7344 523.125 525.5156\\\">UT  07/2019          </text></g><g clip-path=\\\"url(#clip0-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 26.3398)\\\" x=\\\"0 6.003 11.007 16.011 21.015\\\">Page </text></g><g clip-path=\\\"url(#clip0-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 55.8097 26.3398)\\\" x=\\\"0\\\">1</text></g><g clip-path=\\\"url(#clip0-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.815 26.3398)\\\" x=\\\"0 2.394 7.398 9.9\\\"> of </text></g><g clip-path=\\\"url(#clip0-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 73.1021 26.3398)\\\" x=\\\"0\\\">7</text></g><g clip-path=\\\"url(#clip0-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#d9d9d9\\\" style=\\\"font-family:f0-0; font-size:54pt; white-space:pre\\\" transform=\\\"matrix(0.707 0.707 0.707 -0.707 135.6027 198.5094)\\\" x=\\\"0 56.016 96.048 136.08 176.112 216.144 236.16 284.184 324.216 344.232 364.248 416.232 456.264 480.24\\\">Qoppa Software</text></g><g clip-path=\\\"url(#clip0-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#002ba6\\\" style=\\\"font-family:f0-0; font-size:9pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.932 772)\\\" x=\\\"0 9.336 16.008 22.68 29.352 36.024 39.36 47.364 54.036 57.372 60.708 69.372 76.044 80.04 86.712 90.048 94.044 97.38 104.712 111.384 115.38 118.716 126.72 132.72 139.392 142.056 148.728 155.4 158.736 161.4 168.072 174.744 178.08 187.416 194.088 196.752 202.752 206.088 210.084 213.42 220.092 223.428 226.764 233.436 239.436 242.772 246.108 249.444 258.108 266.772 275.436 278.772 285.444 292.116 298.788 305.46 312.132 315.468 321.468 328.14\\\">Qoppa Software - For Evaluation Only - https://www.qoppa.com</text></g></g></svg></svg></g></svg><br>\\n<?xml version='1.0' encoding='UTF-8'?><svg id=\\\"qoppa_document\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" version=\\\"1.1\\\" xmlns=\\\"http://www.w3.org/2000/svg\\\" xmlns:xlink=\\\"http://www.w3.org/1999/xlink\\\"><!-- jPDFWeb v2019R1.03 - Demo Version --><style>title p { display: block; }</style><g id=\\\"qoppa_viewxform\\\" transform=\\\"matrix(1 0 0 1 0 0)\\\"><style type=\\\"text/css\\\">@font-face {font-family:f1-0;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f1-1;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f1-2;src:url(\\\"data:application/font-woff;charset=utf-8;base64,d09GRgABAAAAAAW8AAoAAAAABzQAAQABAAAAAAAAAAAAAAAAAAAAAAAAAABPUy8yAAAA9AAAADcAAABWWalZZmNtYXAAAAEsAAAAUwAAAGwBegIKZ2x5ZgAAAYAAAALfAAADgId/tkZoZWFkAAAEYAAAADMAAAA2GHlkumhoZWEAAASUAAAAIAAAACQGIAKxaG10eAAABLQAAAA0AAAARCRzAuxsb2NhAAAE6AAAACQAAAAkBYYGdm1heHAAAAUMAAAAGAAAACAAFAAzbmFtZQAABSQAAACMAAABPhepMhlwb3N0AAAFsAAAAAwAAAAgAAMAAHicY2Bk8mKcwMDKwMDUxbSbARlwMeogc/8DATI/MCDAkUEBCG8y3fifzBDFdINhLkwOAMp0DLgAeJxjYGBgZGAGYgYGHgYWhgQgLcIgABRhYVBgcGRwZXBn8GTwZwhmCGWI//8fKAsSdQaL+sBE/z/+f/j/of8H/x/4v+//7v+7/m8Em4cBADR/GXUAeJx9kk1ME0EYhmcGu42lUTZQQEgKy5oWQktLt0vbAG20WwJ0m1YskKalbKG7EH7CQYkajAnFGIrCRaUGEE1MxL+bBw/ECzdT0YsHUG8cvZDozXTrbFuMJ2eyySQz7/e+37MfQAAvtImyAAENALAcQtpIqWnIwL1b1+Hnqcvyl+A4JCV4Hgbkt/L3w0P8Fj8EbflfaBsdAAoAVZPRwNodHYytprqGNhgNdJOa0FXVVDM2R4eDIdQEXMhE8crMDwxoEgTLXpr14DUdttvVCU0wpB1PvnqdTHo8E97m5n7/vRU/39ISuOJ241QhnO8J9iQACUAl00hWULRDKczajYZWGDqCM/KDo/jSpsvlcm4toay8LWfCfb23F3t6lJyKXsT6cgBaIEnpShuJuR9IJUfgXXkevkPZwa+DP//29QH3Rf+/L5ZmKZI2EjC9KQijoxuLQ4PlY4TLFZvjvBw3t8G/h7Xe2j5tUnzxUhQ97kmf0ejnV9I8L80Oyff9w4pXFDvu4mxlADA0yewKggK3mFmDj6pCZoakkEbuicMYyubSJ/fH+F4LAEWTZXQZidX1kEHHkf3wfmRtb28NCbmnhS+be4PCJU0Ka04rGqgIcGWUGpPTEQFeiyJ77iN+m0UsZq4w+IYZnAUN2A53r6tSE3SJRmWJ/QkMeGcdAxDWM0IiIaxP+ziOm5rx+TgfOpCknR1RFKXnO5KUmwnwy7h9nk8v8wFQYG3CPhPYp73I2shUF2dGKa/sf+CfuBW3kgfGH/n9p2Lqzq5wsN1qsy0ssB09vqs3+vtVI2eeBU2tdJMw6nLigerTermpkMHQSDk76+vr6ixtgWGn0+WUUnp9uxlX0+mqWk29I91dCiecSeF0rpTJwOIfUJrlwlGtzPPkTbe7oiJutURjFovQ0OBxa63WCxeH4LacXDWbTOZVuCWPpbrdej2A+d/5cWTOP1T+s4piKWTOfUK2xzYA/gBtBuJcAHicY2BkYGAA4rxdv17H89t8ZeBmfgEUYbhtLnAWRv///T+Z6QPTDaA6DgYmkCgAl1oOtgB4nGNgZGBguvE/mSGK2fH/7/+/mT4wAEVQgCAAvv0H1HicY2CAAEZfCGaaDcSXGPSAOADIDmDmYtBjFGOIZtIBsh2BYpcgYkA5HbAajf+/AR7DC3wAAAAAAAAAAAAAABwAUABwAIgAvgDKANoA9AEKAT4BiAGyAcB4nGNgZGBgEGQwYmBiAAFGBjQAAAcrAEh4nJWOMQ6CUBBEH4KKrZUlpRURQkUptZWJhZ1RURPiJ0BD41E8BudzhH8AyGaTN7OTyQJLzrg43gpYawd22EoNPMMntewSsrfsiUvLczZ8LS/kd2QYXVsqXjx40nAQXaUNtTaXE3Dkwlv6T/c+m6vfUHAbnf+QEE9Mn3pdyzFKBET6eaeZ1PIDR/8t33icY2BmwAsAAH0ABA==\\\");}@font-face {font-family:f1-3;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}</style><svg id=\\\"qoppa_page_p1\\\" class=\\\"qoppa_page\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\"><rect class=\\\"qoppa_pageborder\\\" x=\\\"0.5pt\\\" y=\\\"0.5pt\\\" width=\\\"611pt\\\" height=\\\"791pt\\\" fill=\\\"none\\\" /><svg class=\\\"qoppa_pagecontents\\\" x=\\\"0pt\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" viewBox=\\\"0 0 612 792\\\" ><g class=\\\"qoppa_contentstream\\\" transform=\\\"matrix(1 0 0 -1 0 792)\\\" fill=\\\"black\\\" stroke=\\\"black\\\" stroke-width=\\\"1\\\" stroke-linecap=\\\"butt\\\" stroke-linejoin=\\\"miter\\\" stroke-miterlimit=\\\"10\\\"><clipPath id=\\\"clip1-1\\\"><path d=\\\"M 35 487 L 574 487 L 574 770 L 35 770 L 35 487 z \\\"/></clipPath><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 759.4812)\\\" x=\\\"0 5 10.56 12.84 15.12 20.68 24.01 26.23\\\">seller’s</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 71.9353 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 75.2187 759.4812)\\\" x=\\\"0 7.22 12.78 16.11 19.44 25 30.56 33.34\\\">warranty</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 113.5635 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 116.8468 759.4812)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 124.1271 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 127.4105 759.4812)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 135.2523 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 138.5357 759.4812)\\\" x=\\\"0 2.78 8.34 11.67 16.67\\\">force</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.7671 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 164.0505 759.4812)\\\" x=\\\"0 7.22 12.78 18.34\\\">when</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 187.9567 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 191.2401 759.4812)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 207.3631 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.6465 759.4812)\\\" x=\\\"0 5.56 10.56 16.12 21.68 23.96 27.29\\\">acquire</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 243.503 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 246.7863 759.4812)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 260.6877 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 263.9711 759.4812)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 304.5424 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 307.8258 759.4812)\\\" x=\\\"0 2.28\\\">it</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.8844 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 316.1677 759.4812)\\\" x=\\\"0 5 10.56 16.12 18.4\\\">shall</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 336.8513 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 340.1347 759.4812)\\\" x=\\\"0 5.56\\\">be</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.2578 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 354.5411 759.4812)\\\" x=\\\"0 2.78 6.11 11.67 17.23 22.23 25.01 30.57 33.9 37.23 42.79\\\">transferred</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.8956 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 406.179 759.4812)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 414.5188 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 417.8022 759.4812)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 433.9253 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 437.2086 759.4812)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 442.2672 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 445.5506 759.4812)\\\" x=\\\"0 5.56 7.84 10.12 15.68 22.9 28.46\\\">allowed</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 479.5789 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 482.8623 759.4812)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 493.4238 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 496.7072 759.4812)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 510.6086 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 513.892 759.4812)\\\" x=\\\"0 2.78 8.34 11.67 20\\\">terms</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 538.892 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 542.1754 759.4812)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 550.5152 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.7986 759.4812)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 748.1629)\\\" x=\\\"0 7.22 12.78 16.11 19.44 25 30.56 33.34 38.34\\\">warranty.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 736.8445)\\\" x=\\\"0 5.56 11.12 16.12 18.9\\\">Lost,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 62.3797 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 65.5493 736.8445)\\\" x=\\\"0 6.67 9.45 15.01 17.29 22.85 28.41\\\">Stolen,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 96.7407 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 99.9104 736.8445)\\\" x=\\\"0 7.22 12.78 21.11 26.67 32.23 37.79 43.35\\\">Damaged,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.0481 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 149.2177 736.8445)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 158.1093 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 161.279 736.8445)\\\" x=\\\"0 7.22 12.78 17.78 20.56 23.89 29.45 34.45 40.01\\\">Destroyed</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 206.8552 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.0248 736.8445)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 250.5961 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 253.7657 736.8445)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.3224 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 262.492 736.8445)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.3934 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 279.563 736.8445)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 317.356 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 320.5256 736.8445)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 327.8059 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 330.9756 736.8445)\\\" x=\\\"0 2.28 7.84 12.84 15.62\\\">lost,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 349.374 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 352.5437 736.8445)\\\" x=\\\"0 5 7.78 13.34 15.62 21.18 26.74\\\">stolen,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 382.0651 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 385.2348 736.8445)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57 36.13\\\">damaged</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 426.934 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 430.1037 736.8445)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 438.9952 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 442.1649 736.8445)\\\" x=\\\"0 5.56 11.12 16.12 18.9 22.23 27.79 32.79 38.35 43.91\\\">destroyed,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 488.8592 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 492.0289 736.8445)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 508.1519 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 511.3216 736.8445)\\\" x=\\\"0 5.56 11.12 14.45 20.01\\\">agree</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 536.8977 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 540.0674 736.8445)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 548.4072 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 551.5769 736.8445)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 725.5262)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 51.2615 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 55.736 725.5262)\\\" x=\\\"0 5.56\\\">at</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 64.0758 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 68.5503 725.5262)\\\" x=\\\"0 5.56 11.12 16.12\\\">once</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 90.2349 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 94.7094 725.5262)\\\" x=\\\"0 5.56\\\">an</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 105.8324 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 110.3069 725.5262)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 143.6614 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.1359 725.5262)\\\" x=\\\"0 5.56 11.12 16.68 22.24\\\">equal</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 172.6622 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 177.1367 725.5262)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 185.4766 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 189.951 725.5262)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 203.8524 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 208.3269 725.5262)\\\" x=\\\"0 2.28 7.84 12.84 17.84 23.4\\\">lesser</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 235.0603 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 239.5348 725.5262)\\\" x=\\\"0 5.56 8.34\\\">of:</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 250.6529 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 255.1274 725.5262)\\\" x=\\\"0 3.33 8.89\\\">(1)</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 267.3491 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 271.8236 725.5262)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 285.7249 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 290.1994 725.5262)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79 40.01\\\">Property’s</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.2141 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 339.6885 725.5262)\\\" x=\\\"0 2.78 8.34 10.62\\\">fair</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 353.6387 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 358.1132 725.5262)\\\" x=\\\"0 8.33 13.89 17.22 22.22 27.78\\\">market</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.6747 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 393.1492 725.5262)\\\" x=\\\"0 5 10.56 12.84 18.4 23.96\\\">value,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.8924 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 424.3669 725.5262)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.9284 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 439.4029 725.5262)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.7427 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 452.2172 725.5262)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.1185 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 470.593 725.5262)\\\" x=\\\"0 2.78 5.06 13.39\\\">time</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.5432 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 494.0177 725.5262)\\\" x=\\\"0 2.28\\\">it</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.0763 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 503.5508 725.5262)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 510.831 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 515.3055 725.5262)\\\" x=\\\"0 2.28 7.84 12.84 15.62\\\">lost,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 533.704 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 538.1785 725.5262)\\\" x=\\\"0 5 7.78 13.34 15.62 21.18 26.74\\\">stolen,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 714.2078)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57 36.13\\\">damaged</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 82.3992 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 86.9016 714.2078)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 95.7932 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 100.2955 714.2078)\\\" x=\\\"0 5.56 11.12 16.12 18.9 22.23 27.79 32.79 38.35\\\">destroyed</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 144.2115 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.7139 714.2078)\\\" x=\\\"0 3.33 8.89 14.45 17.23 22.79 26.12 34.45 36.73 42.29 47.85\\\">(determined</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 202.1319 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 206.6342 714.2078)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 217.1958 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 221.6981 714.2078)\\\" x=\\\"0 5.56 10.56\\\">us,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 235.038 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 239.5403 714.2078)\\\" x=\\\"0 5.56 10.56 12.84 18.4\\\">using</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 263.5052 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 268.0075 714.2078)\\\" x=\\\"0 5.56\\\">an</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 279.1306 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 283.6329 714.2078)\\\" x=\\\"0 2.28 7.84 13.4 18.96 23.96 26.74 30.07\\\">industry</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 318.7062 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 323.2085 714.2078)\\\" x=\\\"0 5 10.56 12.84 18.4\\\">value</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 347.1734 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 351.6758 714.2078)\\\" x=\\\"0 5.56 11.12 13.4 18.96\\\">guide</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 376.2021 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 380.7045 714.2078)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.4877 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 397.99 714.2078)\\\" x=\\\"0 5 10.56 12.84 18.4 23.4 26.18\\\">select,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 426.95 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 431.4524 714.2078)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 436.511 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 441.0133 714.2078)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 457.1364 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 461.6387 714.2078)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.919 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 473.4214 714.2078)\\\" x=\\\"0 5.56 10.56 16.12 18.4 20.68 26.24 31.8 34.08 39.64 42.97\\\">available);</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 519.1782 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 523.6806 714.2078)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 532.5722 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 537.0745 714.2078)\\\" x=\\\"0 3.33 8.89\\\">(2)</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.2962 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.7986 714.2078)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 702.8895)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57 33.35 36.01 41.01 46.57 52.13 54.79 62.01 67.57 73.13 75.41 80.97 83.63 89.19 94.75 100.31 105.87 108.53 111.31 116.87 119.53 125.09 130.65 135.65 138.31 143.87 146.65 149.31 154.31 159.87 164.87 170.43 173.09 175.87 178.15 186.48 192.04 194.7 197.48 203.04 205.7 211.26 216.26 221.82 225.15 230.15 232.43 237.43 242.99 245.65 248.43 253.99 259.55 262.21 267.77 273.33 278.89 282.22 289.44 295 300 302.66 310.44 316 318.78 321.06 326.62 332.18 334.84 340.4 343.73 346.39 353.06 358.62 361.95 364.23 369.23 371.89 378.56 384.12 389.12 392.45 400.23 405.79 408.57 411.23 419.01 424.57 427.35 429.63 435.19 440.75 443.53 446.19 451.75 456.75 459.41 464.97 470.53 476.09 478.37 480.65 485.65 491.21 496.77 499.05 504.61\\\">amount you would need to pay at such time to exercise the 100-Day Option or Early Buy-Out Option, as applicable.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 691.5711)\\\" x=\\\"0 7.22 12.78 15.06 20.62 25.62 28.4 33.96 36.74 42.3 50.63 56.19 61.75\\\">Reinstatement</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 105.2361 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 108.6807 691.5711)\\\" x=\\\"0 7.22 9.5 15.06 20.62 23.4 28.4\\\">Rights.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 139.8623 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 143.3069 691.5711)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 148.8635 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 152.3081 691.5711)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 168.4311 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 171.8757 691.5711)\\\" x=\\\"0 5.56 8.89\\\">are</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 186.3288 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 189.7734 691.5711)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 197.6152 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 201.0597 691.5711)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 27.3\\\">default</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.1428 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 234.5873 691.5711)\\\" x=\\\"0 5.56 11.12 16.68 19.46 25.02\\\">and/or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.9418 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 266.3864 691.5711)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.2877 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 283.7323 691.5711)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 321.5253 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 324.9698 691.5711)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 332.2501 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 335.6947 691.5711)\\\" x=\\\"0 5 10.56 13.89 17.22 22.78 28.34 33.9 39.46 42.79 48.35\\\">surrendered</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 389.6156 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 393.0601 691.5711)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 401.9517 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 405.3963 691.5711)\\\" x=\\\"0 3.33 8.89 14.45 20.01 25.01 30.01 35.57 40.57 45.57 51.13 56.69\\\">repossessed,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 464.8738 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 468.3184 691.5711)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.4414 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 487.886 691.5711)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 506.7776 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 510.2222 691.5711)\\\" x=\\\"0 3.33 8.89 11.17 16.73 21.73 24.51 30.07 32.85\\\">reinstate</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 548.6353 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 552.0798 691.5711)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 680.2527)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 89.616 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 92.7055 680.2527)\\\" x=\\\"0 7.22 9.5 12.28 17.84 23.4 28.96\\\">without</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 124.4487 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 127.5382 680.2527)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68\\\">losing</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 153.7833 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 156.8728 680.2527)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 172.9958 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 176.0853 680.2527)\\\" x=\\\"0 3.33 5.61 11.17 16.73 19.51\\\">rights</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 200.597 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 203.6865 680.2527)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 212.5781 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 215.6676 680.2527)\\\" x=\\\"0 5.56 11.12 13.9 16.18 21.74 27.3\\\">options</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.9723 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 251.0618 680.2527)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 261.6234 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 264.7129 680.2527)\\\" x=\\\"0 5.56 11.12 16.12 18.4 23.96 29.52\\\">paying:</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 297.0175 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 300.1071 680.2527)\\\" x=\\\"0 3.33 5.61\\\">(i)</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 309.0475 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 312.137 680.2527)\\\" x=\\\"0 5.56 7.84\\\">all</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 322.2591 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 325.3485 680.2527)\\\" x=\\\"0 5.56 11.12 16.12\\\">past</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 344.2499 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 347.3394 680.2527)\\\" x=\\\"0 5.56 11.12\\\">due</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 364.024 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 367.1135 680.2527)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01 30.57 35.57\\\">charges;</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 405.468 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 408.5575 680.2527)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 425.242 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 428.3315 680.2527)\\\" x=\\\"0 3.33 5.61 7.89\\\">(ii)</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 439.5523 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 442.6418 680.2527)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.7003 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 450.7898 680.2527)\\\" x=\\\"0 5.56 7.84 10.12 15.68 22.9 28.46\\\">allowed</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.8182 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 487.9077 680.2527)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 498.4692 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 501.5587 680.2527)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64\\\">applicable</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 546.7686 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 549.8581 680.2527)\\\" x=\\\"0 2.28 7.84 15.06\\\">law,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 668.9344)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 54.6014 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 59.0196 668.9344)\\\" x=\\\"0 3.33 8.89 14.45 19.45 25.01 30.57 36.13 41.69 43.97\\\">reasonable</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 108.5606 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 112.9789 668.9344)\\\" x=\\\"0 5 10.56 15.56 18.34\\\">costs</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.3187 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 140.737 668.9344)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 149.0768 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 153.4951 668.9344)\\\" x=\\\"0 5.56 7.84 12.84 17.84 23.4\\\">pickup</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 182.4599 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 186.8782 668.9344)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 203.5627 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 207.981 668.9344)\\\" x=\\\"0 3.33 8.89 14.45 20.01 22.29 24.57 29.57 35.13 38.46 43.46\\\">redelivery.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 254.2261 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 258.6444 668.9344)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.4373 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 280.8556 668.9344)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.7472 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 304.1654 668.9344)\\\" x=\\\"0 5.56 10.56 16.12 19.45 24.45 26.73 31.73\\\">exercise</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 341.4604 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 345.8786 668.9344)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 365.3317 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 369.75 668.9344)\\\" x=\\\"0 3.33 8.89 11.17 16.73 21.73 24.51 30.07 32.85 38.41 46.74 52.3 57.86\\\">reinstatement</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.3945 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 434.8128 668.9344)\\\" x=\\\"0 3.33 5.61 11.17 16.73\\\">right</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.3245 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 458.7428 668.9344)\\\" x=\\\"0 7.22 9.5 12.28 17.84 20.12\\\">within</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.4263 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 488.8446 668.9344)\\\" x=\\\"0 5.56 11.12\\\">180</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 505.5292 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 509.9474 668.9344)\\\" x=\\\"0 5.56 11.12 16.12\\\">days</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 531.0705 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 535.4887 668.9344)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 543.8286 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 548.2468 668.9344)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 657.616)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 27.3 30.08 32.74 38.3 41.63 44.29 49.29 54.85 58.18 61.51 67.07 72.63 78.19 83.75 87.08 89.86 93.19 98.75 104.31 109.87 114.87 119.87 125.43 130.43 135.43 137.71 143.27 148.83 151.49 157.05 159.83 162.49 165.27 170.83 176.39 179.05 185.72 189.05 194.61 200.17 205.73 209.06 211.84 216.84 219.5 225.06 228.39 231.05 236.05 241.61 246.61 252.17 254.83 257.11 262.67 268.23 273.79 279.35 282.68 285.34 290.9 296.46 299.79 302.07 307.63 313.19 315.85 321.41 324.74 330.3 335.3 337.58 343.14 348.7 354.26 356.92 359.7 365.26 367.92 372.92 378.48 384.04 386.7 392.26 397.82 403.38 408.94 412.27 414.93 420.49 426.05 431.61 433.89 436.17 441.17 446.73 452.29 454.57 460.13 462.79 465.07 470.63 477.85\\\">default or surrender/repossession of the Property or such longer period provided to you under applicable law.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 646.2977)\\\" x=\\\"0 7.22 9.5 15.06 20.62\\\">Right</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 64.1033 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 66.9139 646.2977)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 75.2537 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 78.0643 646.2977)\\\" x=\\\"0 6.11 11.67 15 23.33 25.61 31.17 36.73 39.51 45.07\\\">Terminate.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 125.9158 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 128.7263 646.2977)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.5193 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 149.3299 646.2977)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 168.2215 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 171.032 646.2977)\\\" x=\\\"0 2.78 8.34 11.67 20 22.28 27.84 33.4 36.18\\\">terminate</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 212.7752 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 215.5857 646.2977)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 235.0388 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 237.8494 646.2977)\\\" x=\\\"0 2.28 7.84 13.4 18.4\\\">lease</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 261.8142 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 264.6248 646.2977)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.9793 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 305.7898 646.2977)\\\" x=\\\"0 5.56 11.12 13.4 15.68 21.24 26.8 29.58 31.86 37.42 42.98\\\">obligations</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 353.7781 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 356.5886 646.2977)\\\" x=\\\"0 5.56 11.12 16.68 22.24\\\">under</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 382.1648 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 384.9753 646.2977)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 400.5955 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 403.406 646.2977)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 452.322 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 455.1326 646.2977)\\\" x=\\\"0 7.22 9.5 12.28 17.84 23.4 28.96\\\">without</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.8757 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 489.6863 646.2977)\\\" x=\\\"0 5.56 11.12 16.68 22.24 24.52 27.3\\\">penalty</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.991 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 524.8015 646.2977)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 535.363 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 538.1736 646.2977)\\\" x=\\\"0 5.56 11.12 16.12 18.4 23.96\\\">paying</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 634.9793)\\\" x=\\\"0 5.56 7.84\\\">all</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 50.8221 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 53.7614 634.9793)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 88.8395 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 91.7789 634.9793)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46 44.46\\\">Payments,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 139.0201 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 141.9594 634.9793)\\\" x=\\\"0 2.78 8.34 13.9\\\">fees</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.8608 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 163.8001 634.9793)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 180.4847 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 183.424 634.9793)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01 30.57\\\">charges</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 219.0002 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 221.9396 634.9793)\\\" x=\\\"0 2.78 8.34 13.9\\\">that</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.6192 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 241.5586 634.9793)\\\" x=\\\"0 5.56 8.89\\\">are</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.0117 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 258.951 634.9793)\\\" x=\\\"0 5.56 11.12\\\">due</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.6356 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 278.575 634.9793)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 287.4666 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 290.4059 634.9793)\\\" x=\\\"0 5.56 11.12 16.12\\\">past</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 309.3073 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 312.2466 634.9793)\\\" x=\\\"0 5.56 11.12\\\">due</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 328.9312 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 331.8705 634.9793)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.5551 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 351.4944 634.9793)\\\" x=\\\"0 5 10.56 12.84 18.4 23.96 26.74 32.3 35.63 37.91 40.19\\\">voluntarily</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 396.6898 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 399.6291 634.9793)\\\" x=\\\"0 5 10.56 13.89 17.22 22.78 28.34 33.9 39.46 42.79 45.07 50.63\\\">surrendering</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 455.8303 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 458.7696 634.9793)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.6612 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 470.6005 634.9793)\\\" x=\\\"0 3.33 8.89 11.67 17.23 20.56 26.12 28.4 33.96\\\">returning</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 510.1269 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 513.0663 634.9793)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.9676 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 529.907 634.9793)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 623.6609)\\\" x=\\\"0 2.28 7.84 10.5 12.78 15.56 20.56 23.22 28.78 32.11 34.39 39.95 42.23 47.79 53.35 55.63 58.29 63.29 68.85 74.41 79.97 82.25 85.03 87.31 92.87 98.43 101.21 103.87 106.15 111.71 116.71 121.71 124.37 127.7 133.26 138.82 143.82 149.38 154.94 160.5 166.06 168.34 173.9 176.56 183.78 189.34 194.9 198.23 200.89 206.45 212.01 217.57 220.23 223.01 228.57 234.13 237.46 240.12 245.68 248.46 251.12 253.9 259.46 265.02 267.68 273.24 278.24 283.8 286.08 289.41 294.97 297.75 300.03 305.59 311.15 313.81 319.37 322.15 324.81 330.37 335.93 340.93 343.59 345.87 351.43 356.99 361.99 367.55 370.21 372.99 378.55 381.88 390.21\\\">in its original condition, less reasonable wear and tear at the expiration of any lease term.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 612.3426)\\\" x=\\\"0 5.56 11.12 13.9\\\">Late</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.1629 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 63.3819 612.3426)\\\" x=\\\"0 6.11 11.67 17.23 22.23\\\">Fees.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 88.3917 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 91.6107 612.3426)\\\" x=\\\"0 9.44\\\">We</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 106.6107 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 109.8297 612.3426)\\\" x=\\\"0 3.33 8.89 13.89 19.45 22.78 27.78\\\">reserve</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 143.1744 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 146.3934 612.3426)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.2948 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 163.5138 612.3426)\\\" x=\\\"0 3.33 5.61 11.17 16.73\\\">right</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 183.0255 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 186.2445 612.3426)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 194.5844 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 197.8034 612.3426)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01\\\">charge</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 228.3796 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 231.5986 612.3426)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 237.1601 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 240.3791 612.3426)\\\" x=\\\"0 2.28 7.84 10.62\\\">late</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.5608 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 259.7798 612.3426)\\\" x=\\\"0 2.78 8.34\\\">fee</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 273.6811 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 276.9002 612.3426)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 288.5701 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 291.7891 612.3426)\\\" x=\\\"0 5.56 11.12 16.12\\\">past</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 310.6905 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 313.9095 612.3426)\\\" x=\\\"0 5.56 11.12\\\">due</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 330.594 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 333.8131 612.3426)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57 38.35 43.35\\\">payments,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 379.9459 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 383.1649 612.3426)\\\" x=\\\"0 5.56 8.34 11.12 16.68\\\">after</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.1747 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 406.3937 612.3426)\\\" x=\\\"0 5.56 7.84 10.12 15.68 22.9 25.18 30.74\\\">allowing</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 442.7023 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 445.9213 612.3426)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 457.5912 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 460.8102 612.3426)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 476.9333 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 480.1523 612.3426)\\\" x=\\\"0 5.56 8.89 14.45 19.45\\\">grace</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 505.1669 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 508.3859 612.3426)\\\" x=\\\"0 5.56 11.12 14.45 16.73 22.29 27.85\\\">period,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 539.0207 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 542.2397 612.3426)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 550.5796 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.7986 612.3426)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 601.0242)\\\" x=\\\"0 2.28 7.84 12.84 17.84 23.4\\\">lesser</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 67.4334 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 70.2009 601.0242)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 78.5407 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.3082 601.0242)\\\" x=\\\"0 3.33 5.61\\\">(i)</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 90.2486 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 93.0161 601.0242)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 106.9175 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 109.6849 601.0242)\\\" x=\\\"0 3.33 8.89 11.67\\\">rate</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 126.9164 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 129.6839 601.0242)\\\" x=\\\"0 5.56 7.84 10.12 15.68 22.9 28.46\\\">allowed</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 163.7122 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 166.4797 601.0242)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 177.0412 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 179.8087 601.0242)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64\\\">applicable</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.0186 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 227.7861 601.0242)\\\" x=\\\"0 2.28 7.84\\\">law</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 242.8496 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 245.6171 601.0242)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 254.5087 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 257.2761 601.0242)\\\" x=\\\"0 3.33 5.61 7.89\\\">(ii)</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 268.4968 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 271.2643 601.0242)\\\" x=\\\"0 5.56 11.12 13.9 19.46\\\">$2.00</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 296.2887 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 299.0562 601.0242)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 310.7261 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 313.4936 601.0242)\\\" x=\\\"0 7.22 12.78 18.34 23.34 25.62 30.62\\\">weekly,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 346.8969 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 349.6644 601.0242)\\\" x=\\\"0 5.56 7.84 15.06 20.62 26.18 31.18 33.46 38.46\\\">biweekly,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 390.9095 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 393.677 601.0242)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.5686 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 405.3361 601.0242)\\\" x=\\\"0 5 10.56 18.89 21.17 24.5 32.83 38.39 43.95 46.73 52.29 54.57\\\">semi-monthly</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 464.9113 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 467.6787 601.0242)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57 38.35 43.35\\\">payments,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 513.8116 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 516.579 601.0242)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 525.4706 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 528.2381 601.0242)\\\" x=\\\"0 5.56 11.12 13.9 19.46\\\">$5.00</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.2625 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 556.03 601.0242)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 589.7059)\\\" x=\\\"0 8.33 13.89 19.45 22.23 27.79 30.07 35.07 37.73 43.29 48.85 53.85 62.18 67.74 73.3 76.08 81.08\\\">monthly payments.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 578.3875)\\\" x=\\\"0 7.7783 10.5566 16.1182 21.6797\\\">Other</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 65.7098 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 68.366 578.3875)\\\" x=\\\"0 2.7783 11.1084 16.6699 22.2315 25.5615 28.3398 33.9014 39.4629\\\">Important</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 110.6072 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 113.2635 578.3875)\\\" x=\\\"0 6.1084 11.6699 15 23.3301 28.3301\\\">Terms.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 144.3719 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 147.0281 578.3875)\\\" x=\\\"0 6.6699 12.2314\\\">See</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 164.8211 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 167.4773 578.3875)\\\" x=\\\"0 2.7783 8.3398\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 181.3787 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 184.035 578.3875)\\\" x=\\\"0 5.5615 8.3398 13.9014 19.4629\\\">other</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 206.8279 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 209.4842 578.3875)\\\" x=\\\"0 5.5615 11.123 14.4531 17.2314\\\">parts</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.7156 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 234.3719 578.3875)\\\" x=\\\"0 5.5615\\\">of</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 242.7117 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 245.368 578.3875)\\\" x=\\\"0 2.7783 8.3398 10.6201\\\">this</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 260.9881 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 263.6443 578.3875)\\\" x=\\\"0 6.6699 12.2314 15.5615 21.123 26.6846 35.0147 40.5762 46.1377\\\">Agreement</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.5603 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 315.2166 578.3875)\\\" x=\\\"0 2.7783 8.3398\\\">for</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 326.8865 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 329.5428 578.3875)\\\" x=\\\"0 5.5615 11.1231 16.6846 18.9648 21.7432 24.0234 29.585 35.1465 40.708\\\">additional</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 372.531 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 375.1873 578.3875)\\\" x=\\\"0 2.2803 10.6103 16.1719 21.7334 25.0635 27.8418 33.4033 38.9648\\\">important</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 416.9305 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 419.5867 578.3875)\\\" x=\\\"0 2.2803 7.8418 10.6201 16.1816 19.5117 27.8418 33.4033 36.1816 38.4619 44.0234\\\">information</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 469.1717 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 471.8279 578.3875)\\\" x=\\\"0 5.5615\\\">on</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 482.951 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 485.6072 578.3875)\\\" x=\\\"0 2.7783 8.3398 11.6699 20 22.2803 27.8418 33.4033 36.1816 38.4619 44.0234\\\">termination</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 567.0691)\\\" x=\\\"0 5.5615 8.8916 14.4531 19.4531 25.0146 30.5762 36.1377 39.4678 45.0293 50.0293\\\">procedures,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 93.5076 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 96.1639 567.0691)\\\" x=\\\"0 5.5615 11.1231 14.4531 19.4531 25.0146 30.5762 35.5762\\\">purchase</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 137.3016 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 139.9578 567.0691)\\\" x=\\\"0 5.5615 11.123 13.9014 16.1816 21.7432\\\">option</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 167.2625 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 169.9187 567.0691)\\\" x=\\\"0 3.4301 5.8103 11.4719 17.1334 20.0117 25.1117\\\">rights,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 197.9088 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 200.665 567.0691)\\\" x=\\\"0 3.3801 8.9916 14.0416 19.6531 25.2646 30.8762 35.9262 38.2565 43.868 46.1983 48.5285 50.8588 53.6871 56.0174 61.6289\\\">responsibilities</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 267.3439 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 270.0502 567.0691)\\\" x=\\\"0 3.0283 8.8399\\\">for</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 282.4701 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 285.3764 567.0691)\\\" x=\\\"0 2.4303 8.1418 13.2918 18.4418\\\">loss,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 306.7465 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 309.5527 567.0691)\\\" x=\\\"0 5.6615 11.3231 19.7531 25.4146 31.0762\\\">damage</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 346.2904 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 349.0467 567.0691)\\\" x=\\\"0 5.8615\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 358.5383 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 361.4945 567.0691)\\\" x=\\\"0 5.6115 11.2231 16.2731 19.1014 22.4814 28.093 33.143 35.9713 38.3016 43.9131\\\">destruction</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 411.0191 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 413.7254 567.0691)\\\" x=\\\"0 5.8615\\\">of</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 422.6652 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 425.6215 567.0691)\\\" x=\\\"0 3.0283 8.8398\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 440.2729 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 443.1791 567.0691)\\\" x=\\\"0 6.7699 10.2 15.8615 21.523 27.1846 30.6146 33.493 38.593\\\">Property,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.6504 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 487.4066 567.0691)\\\" x=\\\"0 5.6615 10.7615 13.6398 19.3014 24.9629\\\">actual</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 514.7498 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 517.506 567.0691)\\\" x=\\\"0 5.6615\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.5976 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 529.3539 567.0691)\\\" x=\\\"0 2.3803 10.8103 16.4719 18.8522 21.2324 26.894\\\">implied</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 555.7508)\\\" x=\\\"0 7.2717 12.8832 16.2633 19.6434 25.2549 30.8664 33.6947 36.025 41.6365 46.6865\\\">warranties,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 90.2148 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 92.9211 555.7508)\\\" x=\\\"0 2.8283 8.4398 13.4898 19.1014 24.1514\\\">taxes,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 119.9008 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 122.607 555.7508)\\\" x=\\\"0 5.7115 8.6398 14.3514 20.0629\\\">other</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.15 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.9563 555.7508)\\\" x=\\\"0 5.1 10.7615 16.423 19.8531 25.5146 31.1762\\\">charges</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 185.2324 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 187.9887 555.7508)\\\" x=\\\"0 5.6115 11.223\\\">and</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 204.8232 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 207.5295 555.7508)\\\" x=\\\"0 5.5615 11.1231 16.6846 22.2461 24.5264 27.3047 29.585 35.1465\\\">penalties</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.676 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 250.3322 555.7508)\\\" x=\\\"0 5 10.5615\\\">you</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 266.4553 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 269.1115 555.7508)\\\" x=\\\"0 8.3301 13.8916\\\">may</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 288.0031 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 290.6594 555.7508)\\\" x=\\\"0 2.2803 7.8418 12.8418 18.4033 21.7334\\\">incur,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 315.1711 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 317.8273 555.7508)\\\" x=\\\"0 5.5615 11.123\\\">and</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 334.5119 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 337.1682 555.7508)\\\" x=\\\"0 5.5615 8.3398 13.9014 19.4629\\\">other</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.9611 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 362.6174 555.7508)\\\" x=\\\"0 2.2803 10.6103 16.1719 21.7334 25.0635 27.8418 33.4033 38.9648\\\">important</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 404.3605 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.0168 555.7508)\\\" x=\\\"0 2.2803 7.8418 10.6201 16.1816 19.5117 27.8418 33.4033 36.1816 38.4619 44.0234 49.585\\\">information.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 459.3801 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 462.0363 555.7508)\\\" x=\\\"0 6.6699 12.2314\\\">You</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 479.8293 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 482.4855 555.7508)\\\" x=\\\"0 5.5615 10.5615 15.5615 21.1231 26.6846 33.9063 36.1865 41.7481 47.3096 52.8711\\\">acknowledge</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 540.9182 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 543.5744 555.7508)\\\" x=\\\"0 2.7783 8.3398 13.9014\\\">that</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 544.4324)\\\" x=\\\"0 7.2717\\\">we</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 53.5832 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 56.2895 544.4324)\\\" x=\\\"0 5.5615 8.8916 14.4531 19.4531 21.7334 27.2949 32.8564\\\">provided</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 94.7074 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 97.3637 544.4324)\\\" x=\\\"0 5 10.5615\\\">you</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 113.4867 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 116.143 544.4324)\\\" x=\\\"0 7.2217 9.502 12.2803\\\">with</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 133.9848 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 136.641 544.4324)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 142.4525 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 145.3588 544.4324)\\\" x=\\\"0 5 10.5615 18.8916 24.4531 26.7334 32.2949 35.0733 40.6348\\\">completed</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 191.5551 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 194.2113 544.4324)\\\" x=\\\"0 5 10.5615 16.1231\\\">copy</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 215.3344 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 217.9906 544.4324)\\\" x=\\\"0 5.6115\\\">of</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 226.4305 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 229.1367 544.4324)\\\" x=\\\"0 2.7783 8.3398 10.6201\\\">this</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 244.7568 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 247.4131 544.4324)\\\" x=\\\"0 6.6699 12.2315 15.5615 21.123 26.6846 35.0146 40.5762 46.1377 48.916\\\">Agreement.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.1074 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 301.7637 544.4324)\\\" x=\\\"0 6.6699 12.2314\\\">You</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.5566 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 322.2129 544.4324)\\\" x=\\\"0 5.5615 10.5615 15.5615 21.123 26.6846 33.9062 36.1865 41.748 47.3096 52.8711\\\">acknowledge</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.6455 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 383.3017 544.4324)\\\" x=\\\"0 2.7783 8.3399 13.9014\\\">that</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 399.9814 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 402.6377 544.4324)\\\" x=\\\"0 7.2717\\\">we</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 415.5209 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 418.2271 544.4324)\\\" x=\\\"0 8.3301 13.8916 19.4531\\\">made</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 443.2418 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 445.898 544.4324)\\\" x=\\\"0 2.7783 8.3399\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 459.7994 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 462.8557 544.4324)\\\" x=\\\"0 5.5615 7.8418 12.8418 17.8418 20.1221 25.6836 30.6836 36.2451 39.5752 45.1367\\\">disclosures</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.9924 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 516.0486 544.4324)\\\" x=\\\"0 5.6115\\\">at</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 524.4885 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 527.5447 544.4324)\\\" x=\\\"0 5.6115\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 533.1141)\\\" x=\\\"0 5.5615 11.123 13.9014 19.4629 22.793\\\">before</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 69.0545 533.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 72.1107 533.1141)\\\" x=\\\"0 2.7783 8.3398\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 86.0121 533.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 89.0684 533.1141)\\\" x=\\\"0 5 10.5615 16.123 21.123 26.6846 35.0146 43.3447 48.9062 51.6846 53.9648 59.5264\\\">consummation</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 154.1562 533.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 157.2125 533.1141)\\\" x=\\\"0 5.6115\\\">of</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 165.6523 533.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 168.7086 533.1141)\\\" x=\\\"0 2.7783 8.3398\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 182.61 533.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 185.6662 533.1141)\\\" x=\\\"0 6.6699 12.2314 15.5615 21.123 26.6846 35.0146 40.5762 46.1377 48.916\\\">Agreement.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 519.7957)\\\" x=\\\"0 6.67 8.95 11.23 13.89 19.45 22.23 27.79 33.35 36.68 39.34 42.12 47.68 53.24 58.24 60.9 68.12 73.68 75.96 80.96 86.52 89.18 97.51 103.07 108.07 110.73 116.29 121.85 124.51 129.51 135.07 140.63 143.96 149.52 155.08 160.64 163.42 166.08 168.36 173.92 178.92 181.2 186.76 192.32 197.88 200.54 203.32 208.88 214.44 219.44 222.1 224.88 230.44 233.77\\\">All other fees which may be charged, include fees for:</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 22.7 506.4773)\\\" x=\\\"0 3.33 8.89\\\">(1)</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 506.4773)\\\" x=\\\"0 3.33 8.89 12.22 14.88 22.1 27.66 30.44 36 39.33 44.89 50.45 56.01 58.67 65.34 70.9 75.9 84.23 89.79 95.35 98.13 103.13 105.79 111.35 114.68 117.34 124.56 130.12 135.68 140.68 146.24 149.02 151.8 154.08 159.08 161.36 166.92 172.48 175.26 177.92 184.03 189.59 195.15 200.71 205.71 208.37 214.48 220.04 225.6 228.38 231.04 236.6 239.26 244.82 250.38 253.16 258.72\\\">(1) Returned Payments or Nonsufficient Funds Fee: $ 20.00</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:8.25pt\\\" transform=\\\"matrix(1 0 0 -1 22.7 495.159)\\\" x=\\\"0 3.663 9.779\\\">(2)</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 495.159)\\\" x=\\\"0 3.33 8.89 12.22 14.88 22.1 27.66 29.94 35.5 40.5 43.28 48.84 51.62 57.18 65.51 71.07 76.63 79.41 82.07 88.18 93.74 99.3 104.3 107.08 109.74 116.96 122.52 128.08 133.64 136.3 139.63 145.19 147.97 153.53 159.09 162.42 165.08 167.86 173.42 178.98 184.54 187.2 192.76 195.04 200.04 205.04 210.6 216.16 218.82 224.38 229.94 235.5 238.16 241.49 247.05 252.61 258.17 260.45 262.73 267.73 273.29 276.62 281.62 284.28 289.28 294.84 300.4 303.73 309.29 314.85 319.85 322.51 328.07 330.35 332.63 338.19 345.41 350.97 356.53 359.19 364.75 369.75 372.41 374.69 380.25 387.47\\\">(2) Reinstatement Fees: None (other than pickup and redelivery charges allowed by law)</text></g><clipPath id=\\\"clip1-2\\\"><path d=\\\"M 35 448 L 574 448 L 574 488 L 35 488 L 35 448 z \\\"/></clipPath><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 35.3 487.0594 L 573.1 487.0594 L 573.1 448.1043 L 35.3 448.1043 L 35.3 487.0594 z \\\"/><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 40.7 484.0594 L 567.7 484.0594 L 567.7 450.1043 L 40.7 450.1043 L 40.7 484.0594 z \\\"/><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 40.7 484.0594 L 52.7 484.0594 L 52.7 472.0594 L 40.7 472.0594 L 40.7 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 474.8406)\\\" x=\\\"0 6.67\\\">By</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 52.3699 484.0594 L 55.3699 484.0594 L 55.3699 472.0594 L 52.3699 472.0594 L 52.3699 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 52.3699 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 55.339 484.0594 L 90.339 484.0594 L 90.339 472.0594 L 55.339 472.0594 L 55.339 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 55.339 474.8406)\\\" x=\\\"0 5 7.28 12.84 18.4 20.68 26.24 31.8\\\">signing,</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 89.924 484.0594 L 92.924 484.0594 L 92.924 472.0594 L 89.924 472.0594 L 89.924 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 89.924 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 92.8931 484.0594 L 109.8931 484.0594 L 109.8931 472.0594 L 92.8931 472.0594 L 92.8931 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 92.8931 474.8406)\\\" x=\\\"0 5 10.56\\\">you</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 109.0162 484.0594 L 112.0162 484.0594 L 112.0162 472.0594 L 109.0162 472.0594 L 109.0162 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 109.0162 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 111.9853 484.0594 L 137.9853 484.0594 L 137.9853 472.0594 L 111.9853 472.0594 L 111.9853 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 111.9853 474.8406)\\\" x=\\\"0 5.56 11.12 14.45 20.01\\\">agree</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 137.5614 484.0594 L 140.5614 484.0594 L 140.5614 472.0594 L 137.5614 472.0594 L 137.5614 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 137.5615 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 140.5306 484.0594 L 157.5306 484.0594 L 157.5306 472.0594 L 140.5306 472.0594 L 140.5306 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 140.5306 474.8406)\\\" x=\\\"0 2.78 8.34 13.9\\\">that</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 157.2103 484.0594 L 160.2103 484.0594 L 160.2103 472.0594 L 157.2103 472.0594 L 157.2103 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 157.2103 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 160.1794 484.0594 L 177.1794 484.0594 L 177.1794 472.0594 L 160.1794 472.0594 L 160.1794 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 160.1794 474.8406)\\\" x=\\\"0 5 10.56\\\">you</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 176.3024 484.0594 L 179.3024 484.0594 L 179.3024 472.0594 L 176.3024 472.0594 L 176.3024 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 176.3024 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 179.2715 484.0594 L 217.2715 484.0594 L 217.2715 472.0594 L 179.2715 472.0594 L 179.2715 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 179.2715 474.8406)\\\" x=\\\"0 3.33 8.89 13.89 19.45 21.73 26.73 32.29\\\">received</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 217.128 484.0594 L 220.128 484.0594 L 220.128 472.0594 L 217.128 472.0594 L 217.128 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 217.128 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 220.0971 484.0594 L 226.0971 484.0594 L 226.0971 472.0594 L 220.0971 472.0594 L 220.0971 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 220.0971 474.8406)\\\" x=\\\"0\\\">a</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 225.6586 484.0594 L 228.6586 484.0594 L 228.6586 472.0594 L 225.6586 472.0594 L 225.6586 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.6586 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 228.6277 484.0594 L 258.6277 484.0594 L 258.6277 472.0594 L 228.6277 472.0594 L 228.6277 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 228.6277 474.8406)\\\" x=\\\"0 2.28 7.84 13.4 15.68 21.24 23.52\\\">legible</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 257.7147 484.0594 L 260.7147 484.0594 L 260.7147 472.0594 L 257.7147 472.0594 L 257.7147 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.7147 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 260.6838 484.0594 L 282.6838 484.0594 L 282.6838 472.0594 L 260.6838 472.0594 L 260.6838 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 260.6838 474.8406)\\\" x=\\\"0 5 10.56 16.12\\\">copy</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 281.8068 484.0594 L 284.8068 484.0594 L 284.8068 472.0594 L 281.8068 472.0594 L 281.8068 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.8068 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 284.7759 484.0594 L 293.7759 484.0594 L 293.7759 472.0594 L 284.7759 472.0594 L 284.7759 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 284.7759 474.8406)\\\" x=\\\"0 5.56\\\">of</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 293.1158 484.0594 L 296.1158 484.0594 L 296.1158 472.0594 L 293.1158 472.0594 L 293.1158 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 293.1158 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 296.0849 484.0594 L 312.0849 484.0594 L 312.0849 472.0594 L 296.0849 472.0594 L 296.0849 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 296.0849 474.8406)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 311.705 484.0594 L 314.705 484.0594 L 314.705 472.0594 L 311.705 472.0594 L 311.705 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 311.705 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 314.6742 484.0594 L 366.6742 484.0594 L 366.6742 472.0594 L 314.6742 472.0594 L 314.6742 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 314.6741 474.8406)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement.</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 366.3685 484.0594 L 369.3685 484.0594 L 369.3685 472.0594 L 366.3685 472.0594 L 366.3685 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 366.3685 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 369.3376 484.0594 L 387.3376 484.0594 L 387.3376 472.0594 L 369.3376 472.0594 L 369.3376 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 369.3376 474.8406)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 387.1306 484.0594 L 390.1306 484.0594 L 390.1306 472.0594 L 387.1306 472.0594 L 387.1306 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 387.1306 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 390.0997 484.0594 L 416.0997 484.0594 L 416.0997 472.0594 L 390.0997 472.0594 L 390.0997 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 390.0997 474.8406)\\\" x=\\\"0 5.56 11.12 14.45 20.01\\\">agree</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 415.6759 484.0594 L 418.6759 484.0594 L 418.6759 472.0594 L 415.6759 472.0594 L 415.6759 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 415.6759 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 418.645 484.0594 L 427.645 484.0594 L 427.645 472.0594 L 418.645 472.0594 L 418.645 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 418.645 474.8406)\\\" x=\\\"0 2.78\\\">to</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 426.9848 484.0594 L 429.9848 484.0594 L 429.9848 472.0594 L 426.9848 472.0594 L 426.9848 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 426.9848 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 429.9539 484.0594 L 443.9539 484.0594 L 443.9539 472.0594 L 429.9539 472.0594 L 429.9539 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 429.9539 474.8406)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 443.8553 484.0594 L 446.8553 484.0594 L 446.8553 472.0594 L 443.8553 472.0594 L 443.8553 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 443.8553 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 446.8244 484.0594 L 471.8244 484.0594 L 471.8244 472.0594 L 446.8244 472.0594 L 446.8244 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 446.8244 474.8406)\\\" x=\\\"0 2.78 8.34 11.67 20\\\">terms</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 471.8244 484.0594 L 474.8244 484.0594 L 474.8244 472.0594 L 471.8244 472.0594 L 471.8244 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 471.8244 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 474.7935 484.0594 L 483.7935 484.0594 L 483.7935 472.0594 L 474.7935 472.0594 L 474.7935 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 474.7935 474.8406)\\\" x=\\\"0 5.56\\\">of</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 483.1334 484.0594 L 486.1334 484.0594 L 486.1334 472.0594 L 483.1334 472.0594 L 483.1334 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 483.1334 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 486.1025 484.0594 L 502.1025 484.0594 L 502.1025 472.0594 L 486.1025 472.0594 L 486.1025 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 486.1025 474.8406)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 501.7226 484.0594 L 504.7226 484.0594 L 504.7226 472.0594 L 501.7226 472.0594 L 501.7226 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.7226 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 504.6917 484.0594 L 553.6918 484.0594 L 553.6918 472.0594 L 504.6917 472.0594 L 504.6917 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 504.6917 474.8406)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 553.6078 484.0594 L 556.6078 484.0594 L 556.6078 472.0594 L 553.6078 472.0594 L 553.6078 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.6078 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 556.5769 484.0594 L 568.5769 484.0594 L 568.5769 472.0594 L 556.5769 472.0594 L 556.5769 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 556.5769 474.8406)\\\" x=\\\"0 5.56\\\">on</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 567.7 484.0594 L 570.7 484.0594 L 570.7 472.0594 L 567.7 472.0594 L 567.7 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 40.7 472.741 L 51.7 472.741 L 51.7 460.741 L 40.7 460.741 L 40.7 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 463.5223)\\\" x=\\\"0 5.56 7.84\\\">all</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 50.8221 472.741 L 54.8221 472.741 L 54.8221 460.741 L 50.8221 460.741 L 50.8221 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 50.8221 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 54.1471 472.741 L 60.1471 472.741 L 60.1471 460.741 L 54.1471 460.741 L 54.1471 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 54.1471 463.5223)\\\" x=\\\"0\\\">6</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 59.7087 472.741 L 63.7087 472.741 L 63.7087 460.741 L 59.7087 460.741 L 59.7087 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 59.7087 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 63.0337 472.741 L 94.0337 472.741 L 94.0337 460.741 L 63.0337 460.741 L 63.0337 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 63.0337 463.5223)\\\" x=\\\"0 5.56 11.12 16.68 22.24 27.24\\\">pages,</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 93.0582 472.741 L 97.0582 472.741 L 97.0582 460.741 L 93.0582 460.741 L 93.0582 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 93.0582 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 96.3832 472.741 L 136.3832 472.741 L 136.3832 460.741 L 96.3832 460.741 L 96.3832 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 96.3832 463.5223)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24 28.52 34.08\\\">including</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 136.0317 472.741 L 140.0317 472.741 L 140.0317 460.741 L 136.0317 460.741 L 136.0317 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.0317 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 139.3568 472.741 L 153.3568 472.741 L 153.3568 460.741 L 139.3568 460.741 L 139.3568 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 139.3568 463.5223)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 153.2581 472.741 L 157.2581 472.741 L 157.2581 460.741 L 153.2581 460.741 L 153.2581 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 153.2581 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 156.5832 472.741 L 203.5832 472.741 L 203.5832 460.741 L 156.5832 460.741 L 156.5832 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 156.5832 463.5223)\\\" x=\\\"0 3.55 10.77 16.33 21.33 24.11 29.67 38 43.56\\\">&quot;Customer</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 203.4777 472.741 L 207.4777 472.741 L 207.4777 460.741 L 203.4777 460.741 L 203.4777 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 203.4777 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 206.8028 472.741 L 265.8028 472.741 L 265.8028 460.741 L 206.8028 460.741 L 206.8028 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 206.8028 463.5223)\\\" x=\\\"0 6.67 12.23 15.01 20.57 26.13 29.46 31.74 36.74 42.3 45.08 47.36 52.92\\\">Authorization</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 265.2891 472.741 L 269.2891 472.741 L 269.2891 460.741 L 265.2891 460.741 L 265.2891 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 265.2891 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 268.6142 472.741 L 280.6142 472.741 L 280.6142 460.741 L 268.6142 460.741 L 268.6142 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 268.6142 463.5223)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 280.2841 472.741 L 284.2841 472.741 L 284.2841 460.741 L 280.2841 460.741 L 280.2841 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.2841 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 283.6092 472.741 L 328.6092 472.741 L 328.6092 460.741 L 283.6092 460.741 L 283.6092 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 283.6092 463.5223)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46\\\">Payments</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 328.0721 472.741 L 332.0721 472.741 L 332.0721 460.741 L 328.0721 460.741 L 328.0721 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 328.0721 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 331.3972 472.741 L 344.3972 472.741 L 344.3972 460.741 L 331.3972 460.741 L 331.3972 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 331.3972 463.5223)\\\" x=\\\"0 5 7.28\\\">via</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 344.239 472.741 L 348.239 472.741 L 348.239 460.741 L 344.239 460.741 L 344.239 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 344.239 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 347.564 472.741 L 375.564 472.741 L 375.564 460.741 L 347.564 460.741 L 347.564 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 347.564 463.5223)\\\" x=\\\"0 6.67 13.89 21.11 23.89\\\">ACH,&quot;</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 375.0055 472.741 L 379.0055 472.741 L 379.0055 460.741 L 375.0055 460.741 L 375.0055 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.0054 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 378.3305 472.741 L 392.3305 472.741 L 392.3305 460.741 L 378.3305 460.741 L 378.3305 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 378.3305 463.5223)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 392.2319 472.741 L 396.2319 472.741 L 396.2319 460.741 L 392.2319 460.741 L 392.2319 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 392.2319 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 395.557 472.741 L 445.557 472.741 L 445.557 460.741 L 395.557 460.741 L 395.557 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 395.557 463.5223)\\\" x=\\\"0 3.55 10.22 13.55 19.11 21.39 24.17 27.5 33.06 35.84 38.12 43.68\\\">&quot;Arbitration</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 444.8001 472.741 L 448.8001 472.741 L 448.8001 460.741 L 444.8001 460.741 L 444.8001 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 444.8001 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 448.1252 472.741 L 480.1252 472.741 L 480.1252 460.741 L 448.1252 460.741 L 448.1252 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 448.1252 463.5223)\\\" x=\\\"0 7.22 9.5 15.06 20.62 25.62\\\">Clause</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 479.3117 472.741 L 483.3117 472.741 L 483.3117 460.741 L 479.3117 460.741 L 479.3117 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 479.3117 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 482.6368 472.741 L 499.6368 472.741 L 499.6368 460.741 L 482.6368 460.741 L 482.6368 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 482.6368 463.5223)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 499.3214 472.741 L 503.3214 472.741 L 503.3214 460.741 L 499.3214 460.741 L 499.3214 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.3214 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 502.6465 472.741 L 534.6465 472.741 L 534.6465 460.741 L 502.6465 460.741 L 502.6465 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 502.6465 463.5223)\\\" x=\\\"0 9.44 15 17.28 22.28 27.84\\\">Waiver</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 533.8184 472.741 L 537.8184 472.741 L 537.8184 460.741 L 533.8184 460.741 L 533.8184 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 533.8183 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 537.1434 472.741 L 546.1434 472.741 L 546.1434 460.741 L 537.1434 460.741 L 537.1434 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 537.1434 463.5223)\\\" x=\\\"0 5.56\\\">of</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 545.4833 472.741 L 549.4833 472.741 L 549.4833 460.741 L 545.4833 460.741 L 545.4833 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 545.4833 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 548.8083 472.741 L 567.8083 472.741 L 567.8083 460.741 L 548.8083 460.741 L 548.8083 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 548.8083 463.5223)\\\" x=\\\"0 5 10.56 13.89\\\">Jury</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 567.7 472.741 L 570.7 472.741 L 570.7 460.741 L 567.7 460.741 L 567.7 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 40.7 461.4227 L 187.7 461.4227 L 187.7 449.4227 L 40.7 449.4227 L 40.7 461.4227 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 452.2039)\\\" x=\\\"0 6.11 9.44 11.72 17.28 19.56 22.34 25.89 28.55 34.11 39.67 45.23 47.89 50.67 56.23 61.79 64.45 70.01 72.79 78.35 83.91 87.24 89.9 92.68 98.24 101.57 109.9 114.9 117.56 123.12 128.68 130.96 136.52 143.74\\\">Trial,&quot; and the other terms below.</text></g><clipPath id=\\\"clip1-3\\\"><path d=\\\"M 35 404 L 574 404 L 574 449 L 35 449 L 35 404 z \\\"/></clipPath><g clip-path=\\\"url(#clip1-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 435.7132)\\\" x=\\\"0 7.22 12.78 17.78 20.56 26.12 34.45 40.01 43.34 46 52.67 54.95 60.51 66.07 71.63 74.41 79.97 83.3 88.86\\\">Customer Signature:</text></g><clipPath id=\\\"clip1-4\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip1-4)\\\" fill=\\\"#fff\\\" stroke=\\\"none\\\" d=\\\"M 409.8 425.0359 L 439.8433 425.0359 L 439.8433 417.0244 L 409.8 417.0244 L 409.8 425.0359 z \\\"/><clipPath id=\\\"clip1-5\\\"><path d=\\\"M 409 417 L 440 417 L 440 426 L 409 426 L 409 417 z \\\"/></clipPath><path clip-path=\\\"url(#clip1-5)\\\" fill=\\\"#fff\\\" stroke=\\\"none\\\" d=\\\"M 409.8 425.0359 L 439.55 425.0359 L 439.55 423.9041 L 409.8 423.9041 L 409.8 425.0359 z \\\"/><path clip-path=\\\"url(#clip1-5)\\\" fill=\\\"#fff\\\" stroke=\\\"none\\\" d=\\\"M 409.8 425.0359 L 416.8 425.0359 L 416.8 423.0359 L 409.8 423.0359 L 409.8 425.0359 z \\\"/><g clip-path=\\\"url(#clip1-5)\\\"><text stroke=\\\"none\\\" fill=\\\"#fff\\\" style=\\\"font-family:f1-2; font-size:0.75pt\\\" transform=\\\"matrix(1 0 0 -1 409.8 424.1141)\\\" x=\\\"0 0.722 1.5 2.222 2.944 3.496 4.163 4.996 5.663 5.941\\\">DOCU_EMAIL</text></g><clipPath id=\\\"clip1-6\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip1-6)\\\" fill=\\\"#fff\\\" stroke=\\\"none\\\" d=\\\"M 164.15 417.4676 L 192.2025 417.4676 L 192.2025 406.447 L 164.15 406.447 L 164.15 417.4676 z \\\"/><clipPath id=\\\"clip1-7\\\"><path d=\\\"M 164 407 L 192 407 L 192 418 L 164 418 L 164 407 z \\\"/></clipPath><g clip-path=\\\"url(#clip1-7)\\\"><text stroke=\\\"none\\\" fill=\\\"#fff\\\" style=\\\"font-family:f1-2; font-size:0.75pt\\\" transform=\\\"matrix(1 0 0 -1 164.15 416.5457)\\\" x=\\\"0 0.722 1.5 2.222 2.944 3.496 4.163 4.441 5.219\\\">DOCU_SIGN</text></g><clipPath id=\\\"clip1-8\\\"><path d=\\\"M 35 343 L 389 343 L 389 405 L 35 405 L 35 343 z \\\"/></clipPath><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 392.5858)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 57.9314 392.5858)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 62.5791 392.5858)\\\" x=\\\"0 5.56 11.12 16.68 21.68\\\">Lease</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 89.8252 392.5858)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 94.4728 392.5858)\\\" x=\\\"0 7.22 12.78 21.11 26.67 32.23 37.79 42.79 44.7\\\">Company&apos;s</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 144.1798 392.5858)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.8275 392.5858)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 28.35 30.63 35.63 41.19\\\">authorized</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 195.5853 392.5858)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 200.2329 392.5858)\\\" x=\\\"0 5 7.28 12.84 18.4 23.96 26.74 32.3 35.63\\\">signature</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 241.4292 392.5858)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 246.0768 392.5858)\\\" x=\\\"0 2.28 7.84 13.4 15.68 20.68 26.24 29.02 34.58\\\">indicates</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 285.6618 392.5858)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 290.3094 392.5858)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 304.2108 392.5858)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 308.8584 392.5858)\\\" x=\\\"0 5.56 11.12 16.68 21.68\\\">Lease</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 336.1045 392.5858)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 340.7521 392.5858)\\\" x=\\\"0 7.22 12.78 21.11 26.67 32.23 37.79\\\">Company</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.55 392.5858)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 381.2675)\\\" x=\\\"0 5.56 11.12\\\">has</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 56.823 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 59.5613 381.2675)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.68 29.46 35.02\\\">accepted</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 100.1472 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 102.8854 381.2675)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 116.7868 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 119.525 381.2675)\\\" x=\\\"0 2.78 8.34 11.67 20 25\\\">terms,</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 147.3033 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 150.0416 381.2675)\\\" x=\\\"0 5 10.56 16.12 21.68 23.96 26.74 29.02 34.58 40.14\\\">conditions</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 195.1881 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 197.9263 381.2675)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 214.6109 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 217.3491 381.2675)\\\" x=\\\"0 5.56 11.12 13.4 15.68 21.24 26.8 29.58 31.86 37.42 42.98\\\">obligations</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 265.3374 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 268.0756 381.2675)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.4154 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 279.1537 381.2675)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 293.055 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 295.7933 381.2675)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 344.7093 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 347.4475 381.2675)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 364.1321 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 366.8703 381.2675)\\\" x=\\\"0 2.78 8.34 13.9\\\">that</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.55 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 369.9491)\\\" x=\\\"0 2.78 8.34 13.9 16.56 22.12 27.68 33.24 38.24 43.8 46.46 53.68 59.24 67.57 73.13 78.69 84.25 89.25 91.91 97.47 103.03 106.36 111.92 117.48 122.48 125.14 127.92 133.48 136.14 138.92 144.48 146.76 151.76 154.42 161.09 166.65 169.98 175.54 181.1 189.43 194.99 200.55 203.33\\\">the Lease Company agrees to this Agreement.</text></g><clipPath id=\\\"clip1-10\\\"><path d=\\\"M 388 343 L 574 343 L 574 405 L 388 405 L 388 343 z \\\"/></clipPath><g clip-path=\\\"url(#clip1-10)\\\"><g transform=\\\"matrix(0.75 0 0 -0.7619 416.525 401.8046)\\\"><image xlink:href=\\\"data:image/png;base64,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\\\" width=\\\"172\\\" height=\\\"42\\\" id=\\\"img43-0-9\\\"/></g></g><g clip-path=\\\"url(#clip1-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 394.35 359.0858)\\\" x=\\\"0 6.67 12.23 17.79 23.35 26.01 33.23 39.34 47.12 49.78 55.34 60.9 68.12 70.78 77.45 82.45 85.23 87.89 96.22 101.78 104.56 107.34 110 116.67 120 125.56 132.78 138.34 140.62 146.18\\\">Snap RTO LLC By: Matt Browning</text></g><g clip-path=\\\"url(#clip1-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 394.35 347.7675)\\\" x=\\\"0 6.11 8.39 11.17 13.45 19.01 21.79 24.45 31.67 39.45\\\">Title: COO</text></g><clipPath id=\\\"clip1-11\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 770.2 L 573.6 770.2 L 573.6 769.2 L 34.8 769.2 L 34.8 770.2 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.6 769.2 L 573.6 769.2 L 573.6 487.5594 L 572.6 487.5594 L 572.6 769.2 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 769.2 L 35.8 769.2 L 35.8 487.5594 L 34.8 487.5594 L 34.8 769.2 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 487.5594 L 573.6 487.5594 L 573.6 486.5594 L 34.8 486.5594 L 34.8 487.5594 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.6 486.5594 L 573.6 486.5594 L 573.6 448.6043 L 572.6 448.6043 L 572.6 486.5594 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 486.5594 L 35.8 486.5594 L 35.8 448.6043 L 34.8 448.6043 L 34.8 486.5594 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 448.6043 L 573.6 448.6043 L 573.6 447.6043 L 34.8 447.6043 L 34.8 448.6043 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.6 447.6043 L 573.6 447.6043 L 573.6 405.3046 L 572.6 405.3046 L 572.6 447.6043 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 447.6043 L 35.8 447.6043 L 35.8 405.3046 L 34.8 405.3046 L 34.8 447.6043 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 405.3046 L 389.45 405.3046 L 389.45 404.3046 L 34.8 404.3046 L 34.8 405.3046 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 344.1679 L 389.45 344.1679 L 389.45 343.1679 L 34.8 343.1679 L 34.8 344.1679 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 404.3046 L 35.8 404.3046 L 35.8 344.1679 L 34.8 344.1679 L 34.8 404.3046 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 389.45 405.3046 L 573.6 405.3046 L 573.6 404.3046 L 389.45 404.3046 L 389.45 405.3046 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 389.45 344.1679 L 573.6 344.1679 L 573.6 343.1679 L 389.45 343.1679 L 389.45 344.1679 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.6 404.3046 L 573.6 404.3046 L 573.6 344.1679 L 572.6 344.1679 L 572.6 404.3046 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 388.45 404.3046 L 389.45 404.3046 L 389.45 344.1679 L 388.45 344.1679 L 388.45 404.3046 z \\\"/><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 331.4491)\\\" x=\\\"0 7.22 15 21.11 23.89 31.11\\\">NOTICE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 70.8783 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 73.8798 331.4491)\\\" x=\\\"0 6.11\\\">TO</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 87.7666 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 90.7681 331.4491)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 110.7681 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 113.7696 331.4491)\\\" x=\\\"0 7.22 15 22.22 28.89 36.11 44.44 51.11 58.33\\\">CONSUMER:</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 174.8829 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 177.8844 331.4491)\\\" x=\\\"0 6.67 14.45\\\">YOU</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 199.5543 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 202.5558 331.4491)\\\" x=\\\"0 7.22 13.89 20.56\\\">HAVE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 229.7873 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 232.7888 331.4491)\\\" x=\\\"0 7.22\\\">NO</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.7888 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 250.7903 331.4491)\\\" x=\\\"0 7.78 17.22 24.44 31.11 38.33 45 52.22 55\\\">OWNERSHIP</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.4603 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 315.4618 331.4491)\\\" x=\\\"0 7.22 10 17.78 25 31.11\\\">RIGHTS</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 353.2401 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 356.2416 331.4491)\\\" x=\\\"0 2.78\\\">IN</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 366.2416 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 369.2431 331.4491)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 389.2431 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 392.2447 331.4491)\\\" x=\\\"0 6.67 13.89 21.67 28.34 35.01 42.23 48.34\\\">PROPERTY</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.2544 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 450.256 331.4491)\\\" x=\\\"0 7.22 14.44 20 26.67 33.34\\\">UNLESS</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 490.2706 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 493.2721 331.4491)\\\" x=\\\"0 6.67 13.89\\\">AND</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 514.3854 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 517.3869 331.4491)\\\" x=\\\"0 7.22 14.44 20.55 23.33\\\">UNTIL</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 546.2785 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 549.2801 331.4491)\\\" x=\\\"0 6.67 14.45\\\">YOU</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 320.1308)\\\" x=\\\"0 6.67 12.23 18.9 26.12\\\">ELECT</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 65.3315 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 71.359 320.1308)\\\" x=\\\"0 6.11\\\">TO</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 85.2457 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 91.2732 320.1308)\\\" x=\\\"0 6.67 13.34 20.56 28.34 36.67\\\">BECOME</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 134.613 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 140.6406 320.1308)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.6406 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 166.6681 320.1308)\\\" x=\\\"0 7.78 17.22 24.44 31.11\\\">OWNER</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 204.9982 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 211.0257 320.1308)\\\" x=\\\"0 7.78\\\">OF</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 224.9124 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 230.9399 320.1308)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 250.9399 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 256.9675 320.1308)\\\" x=\\\"0 6.67 13.89 21.67 28.34 35.01 42.23 48.34\\\">PROPERTY</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 311.9772 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 318.0048 320.1308)\\\" x=\\\"0 6.67 12.78 18.89 25.56\\\">AFTER</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 350.7831 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 356.8106 320.1308)\\\" x=\\\"0 8.33 15 21.67 24.45 31.67\\\">MAKING</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 396.2588 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 402.2864 320.1308)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 422.2864 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 428.3139 320.1308)\\\" x=\\\"0 7.22 13.89 21.11 27.78 34.45 41.12 47.79 55.01\\\">NECESSARY</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.9984 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 496.026 320.1308)\\\" x=\\\"0 6.67 13.34 20.01 28.34 35.01 42.23 48.34\\\">PAYMENTS</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.0357 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0633 320.1308)\\\" x=\\\"0 6.11\\\">TO</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 308.8124)\\\" x=\\\"0 6.67 13.89 21.67 28.89 31.67 38.89\\\">ACQUIRE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 78.6615 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 82.9084 308.8124)\\\" x=\\\"0 7.78 17.22 24.44 31.11 38.33 45 52.22 55 61.67\\\">OWNERSHIP,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 147.3567 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 151.6035 308.8124)\\\" x=\\\"0 6.67 13.89\\\">AND</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 172.7168 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 176.9637 308.8124)\\\" x=\\\"0 6.67 14.45\\\">YOU</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 198.6336 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 202.8805 308.8124)\\\" x=\\\"0 7.22 13.89 20.56\\\">HAVE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 230.112 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 234.3589 308.8124)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 254.3589 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 258.6057 308.8124)\\\" x=\\\"0 5.56 12.23 20.01 26.68\\\">LEGAL</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.8469 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 295.0938 308.8124)\\\" x=\\\"0 6.67 13.89 20 27.22 35 42.22 45 51.11\\\">AUTHORITY</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 352.8722 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 357.119 308.8124)\\\" x=\\\"0 6.11\\\">TO</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.0058 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 375.2527 308.8124)\\\" x=\\\"0 6.67 13.89 21.11 27.78 34.45\\\">ACCEPT</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 415.8142 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 420.0611 308.8124)\\\" x=\\\"0 6.11 8.89 15 20.56\\\">TITLE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.2876 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 451.5345 308.8124)\\\" x=\\\"0 6.11\\\">TO</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 465.4212 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 469.6681 308.8124)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.6681 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 493.915 308.8124)\\\" x=\\\"0 6.67 13.89 21.67 28.34 35.01 42.23 48.34 55.01\\\">PROPERTY.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.7031 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 555.95 308.8124)\\\" x=\\\"0 7.22\\\">DO</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 297.494)\\\" x=\\\"0 7.22 15\\\">NOT</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 54.2084 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 57.2636 297.494)\\\" x=\\\"0 6.67 9.45 17.23\\\">SIGN</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 81.7118 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 84.767 297.494)\\\" x=\\\"0 6.11 13.33 16.11\\\">THIS</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 107.5453 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 110.6005 297.494)\\\" x=\\\"0 6.67 14.45 21.67 28.34 35.01 43.34 50.01 57.23\\\">AGREEMENT</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 173.9404 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 176.9956 297.494)\\\" x=\\\"0 6.67 13.34 19.45 27.23 34.45\\\">BEFORE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 218.1137 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 221.1689 297.494)\\\" x=\\\"0 6.67 14.45\\\">YOU</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 242.8389 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 245.8941 297.494)\\\" x=\\\"0 7.22 13.89 20.56\\\">READ</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 273.6773 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 276.7325 297.494)\\\" x=\\\"0 6.67 12.23\\\">ALL</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 294.5254 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 297.5806 297.494)\\\" x=\\\"0 6.67 13.34 21.12 27.79\\\">PAGES</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 332.0386 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 335.0938 297.494)\\\" x=\\\"0 7.78\\\">OF</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.9805 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 352.0357 297.494)\\\" x=\\\"0 2.78\\\">IT</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 360.9225 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 363.9777 297.494)\\\" x=\\\"0 7.78\\\">OR</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 378.9777 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 382.0329 297.494)\\\" x=\\\"0 2.78\\\">IF</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 390.9196 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 393.9748 297.494)\\\" x=\\\"0 2.78\\\">IT</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.8615 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 405.9167 297.494)\\\" x=\\\"0 7.22 15 22.22 28.33 35 37.78 45\\\">CONTAINS</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 457.5866 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 460.6418 297.494)\\\" x=\\\"0 6.67 13.89\\\">ANY</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 481.2033 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 484.2585 297.494)\\\" x=\\\"0 6.67 12.23 18.9 26.12\\\">BLANK</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 517.0515 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 520.1067 297.494)\\\" x=\\\"0 6.67 13.34 20.01 27.23\\\">SPACE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 554.0081 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0633 297.494)\\\" x=\\\"0 6.11\\\">TO</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 286.1757)\\\" x=\\\"0 6.67\\\">BE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 46.4398 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 49.3908 286.1757)\\\" x=\\\"0 6.11 8.89 14.45 20.01 26.68\\\">FILLED</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 83.2922 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 86.2431 286.1757)\\\" x=\\\"0 2.78 10\\\">IN.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 99.0214 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 101.9724 286.1757)\\\" x=\\\"0 6.67 14.45\\\">YOU</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 123.6423 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 126.5933 286.1757)\\\" x=\\\"0 6.67 13.89\\\">ARE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 147.1548 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 150.1057 286.1757)\\\" x=\\\"0 6.67 13.89 20 22.78 28.89 34.45 41.12\\\">ENTITLED</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 198.4456 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 201.3965 286.1757)\\\" x=\\\"0 6.11\\\">TO</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 215.2832 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 218.2342 286.1757)\\\" x=\\\"0\\\">A</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 224.9041 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 227.8551 286.1757)\\\" x=\\\"0 7.22 15 23.33 30 35.56 42.23 48.34 55.01 60.57\\\">COMPLETELY</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 295.0963 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 298.0472 286.1757)\\\" x=\\\"0 6.11 8.89 14.45 20.01 26.68 33.9 37.23 40.01\\\">FILLED-IN</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 345.2787 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 348.2296 286.1757)\\\" x=\\\"0 7.22 15 21.67\\\">COPY</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 376.5695 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 379.5204 286.1757)\\\" x=\\\"0 7.78\\\">OF</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.4071 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 396.3581 286.1757)\\\" x=\\\"0 6.11 13.33 16.11\\\">THIS</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.1364 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 422.0874 286.1757)\\\" x=\\\"0 6.67 14.45 21.67 28.34 35.01 43.34 50.01 57.23\\\">AGREEMENT</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 485.4272 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 488.3781 286.1757)\\\" x=\\\"0 9.44 16.66 23.33\\\">WHEN</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 518.9299 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 521.8809 286.1757)\\\" x=\\\"0 6.67 14.45\\\">YOU</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 543.5508 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 546.5017 286.1757)\\\" x=\\\"0 6.67 9.45 17.23\\\">SIGN</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 274.8573)\\\" x=\\\"0 2.78 8.89\\\">IT.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 261.539)\\\" x=\\\"0 6.11 12.78 20 28.33 31.11 38.33 45 51.11 53.89 61.67 68.89\\\">TERMINATION.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 104.765 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 108.0706 261.539)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 125.8636 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 129.1692 261.539)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 148.0608 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 151.3663 261.539)\\\" x=\\\"0 2.78 8.34 11.67 20 22.28 27.84 33.4 36.18\\\">terminate</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 193.1095 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 196.4151 261.539)\\\" x=\\\"0 3.33 8.89 14.45 20.01\\\">(end)</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 219.7598 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 223.0654 261.539)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.6855 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 241.9911 261.539)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.9071 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 294.2127 261.539)\\\" x=\\\"0 5.56\\\">at</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.5525 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 305.8581 261.539)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.7595 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 323.065 261.539)\\\" x=\\\"0 5.56 11.12\\\">end</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 339.7496 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 343.0552 261.539)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.395 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 354.7006 261.539)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 370.8236 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 374.1292 261.539)\\\" x=\\\"0 2.28 7.84 13.4 18.4\\\">lease</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 398.0941 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 401.3996 261.539)\\\" x=\\\"0 2.78 8.34 11.67\\\">term</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 421.3996 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 424.7052 261.539)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 435.2667 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 438.5723 261.539)\\\" x=\\\"0 5 10.56 13.34 15.62 20.62 23.4 28.4 30.68 36.24\\\">satisfying</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 480.3741 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 483.6796 261.539)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 497.581 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 500.8866 261.539)\\\" x=\\\"0 3.33 8.89 14.45 20.01 22.29 25.62 31.18 39.51 45.07 50.63 53.41\\\">requirements</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.3046 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 562.6101 261.539)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 250.2206)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 48.7201 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 51.7761 250.2206)\\\" x=\\\"0 5.56 11.12 14.45 20.01 25.57 28.9 34.46 40.02 45.58\\\">paragraph.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 100.1453 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 103.2013 250.2206)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 120.9943 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 124.0503 250.2206)\\\" x=\\\"0 8.33 13.89 18.89\\\">must</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 145.7202 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.7762 250.2206)\\\" x=\\\"0 5.56 8.89 14.45 22.78 28.34 31.12 33.4\\\">promptly</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 187.1795 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 190.2355 250.2206)\\\" x=\\\"0 3.33 8.89 11.67 17.23 20.56\\\">return</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 216.3586 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 219.4146 250.2206)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.3159 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 236.3719 250.2206)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 274.1649 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 277.2209 250.2206)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 285.5608 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 288.6168 250.2206)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.1783 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 302.2343 250.2206)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 310.0761 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 313.1321 250.2206)\\\" x=\\\"0 5.56 10.56 15.56 21.12 24.45 30.01 35.57 41.13 46.13\\\">accordance</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 364.8313 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 367.8874 250.2206)\\\" x=\\\"0 7.22 9.5 12.28\\\">with</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 385.7291 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 388.7852 250.2206)\\\" x=\\\"0 5.56 11.12\\\">our</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.2383 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 406.2943 250.2206)\\\" x=\\\"0 5.56 7.84 11.17 16.73 21.73 24.51 26.79 32.35 37.91\\\">directions</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 449.2093 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 452.2653 250.2206)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.9499 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 472.0059 250.2206)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 488.129 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 491.185 250.2206)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57 33.35\\\">amounts</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.5395 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 532.5955 250.2206)\\\" x=\\\"0 5.56 10.56 15.56 18.89 24.45 30.01 35.57\\\">accrued.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 238.9022)\\\" x=\\\"0 9.44\\\">We</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 48.1 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 51.2677 238.9022)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 70.1593 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 73.327 238.9022)\\\" x=\\\"0 2.78 8.34 11.67 20 22.28 27.84 33.4 36.18\\\">terminate</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 115.0702 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 118.2379 238.9022)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 133.858 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 137.0257 238.9022)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 185.9417 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 189.1094 238.9022)\\\" x=\\\"0 5.56\\\">at</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 197.4493 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 200.617 238.9022)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 216.74 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 219.9077 238.9022)\\\" x=\\\"0 2.78 5.06 13.39\\\">time</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.8579 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 242.0256 238.9022)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.0842 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 250.2519 238.9022)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 266.375 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 269.5427 238.9022)\\\" x=\\\"0 5.56 8.89\\\">are</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 283.9958 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 287.1635 238.9022)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 295.0053 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 298.173 238.9022)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 27.3\\\">default</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 328.256 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 331.4237 238.9022)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 339.7636 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 342.9313 238.9022)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 362.3844 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 365.5521 238.9022)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.9066 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.0743 238.9022)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 415.9659 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 419.1336 238.9022)\\\" x=\\\"0 5.56 8.34 13.9 19.46\\\">other</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 441.9266 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 445.0943 238.9022)\\\" x=\\\"0 5.56 11.12 13.4 15.68 21.24 26.8 29.58 31.86 37.42 42.98 47.98\\\">obligations.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 495.8609 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 499.0286 238.9022)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 516.8216 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 519.9893 238.9022)\\\" x=\\\"0 8.33 13.89 18.89\\\">must</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 541.6592 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 544.8269 238.9022)\\\" x=\\\"0 3.33 8.89 11.67 17.23 20.56\\\">return</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 227.5839)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.0014 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 50.6007 227.5839)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 88.3937 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 91.9931 227.5839)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 100.3329 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 103.9323 227.5839)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 117.8336 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 121.433 227.5839)\\\" x=\\\"0 5.56 7.84 13.4 18.4\\\">place</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 145.3978 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.9972 227.5839)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 161.7804 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 165.3797 227.5839)\\\" x=\\\"0 5.56 11.12 16.12 18.4 23.96 29.52 35.08 37.86 43.42\\\">designate.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 211.5858 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 215.1852 227.5839)\\\" x=\\\"0 7.22 12.78 18.34\\\">Upon</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 239.0914 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 242.6908 227.5839)\\\" x=\\\"0 2.78 8.34 11.67 20 22.28 27.84 33.4 36.18 38.46 44.02 49.58\\\">termination,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 295.0541 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 298.6534 227.5839)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 314.7765 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 318.3758 227.5839)\\\" x=\\\"0 5.56 11.12 14.45 20.01\\\">agree</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 343.952 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 347.5513 227.5839)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.8912 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 359.4905 227.5839)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.6136 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 379.2129 227.5839)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.1143 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 396.7137 227.5839)\\\" x=\\\"0 2.78 8.34 10.62 12.9 18.46 25.68 27.96 33.52\\\">following</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 435.8006 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 439.3999 227.5839)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01 30.57 35.57\\\">charges:</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 477.7544 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 481.3538 227.5839)\\\" x=\\\"0 6.67 12.23\\\">Any</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 498.5852 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 502.1846 227.5839)\\\" x=\\\"0 5.56 11.12 16.68 22.24 24.52\\\">unpaid</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 532.2725 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 535.8718 227.5839)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 216.2655)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46 44.46\\\">Payments,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 80.3412 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 83.8455 216.2655)\\\" x=\\\"0 2.78 8.34 13.9\\\">fees</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 102.7469 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 106.2512 216.2655)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 122.9358 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 126.4401 216.2655)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01 30.57 35.57\\\">charges,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 164.7946 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 168.299 216.2655)\\\" x=\\\"0 5.56 7.84 13.4\\\">plus</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 186.7023 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 190.2066 216.2655)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 206.3297 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 209.834 216.2655)\\\" x=\\\"0 5.56 8.34 11.12 13.4 18.4 20.68 26.24\\\">official</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.3545 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 241.8588 216.2655)\\\" x=\\\"0 2.78 8.34 13.9\\\">fees</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 260.7602 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 264.2645 216.2655)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.9491 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 284.4534 216.2655)\\\" x=\\\"0 2.78 8.34 13.34 18.9\\\">taxes</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.3548 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 311.8591 216.2655)\\\" x=\\\"0 2.28 10.61 16.17 21.73 26.73 32.29\\\">imposed</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 349.7156 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 353.2199 216.2655)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 361.0617 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 364.566 216.2655)\\\" x=\\\"0 5 10.56 16.12 21.68 27.24 32.24 35.02 37.3 42.86\\\">connection</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 412.9938 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 416.4981 216.2655)\\\" x=\\\"0 7.22 9.5 12.28\\\">with</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.3399 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 437.8442 216.2655)\\\" x=\\\"0 2.78 8.34 11.67 20 22.28 27.84 33.4 36.18 38.46 44.02 49.58\\\">termination,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 490.2075 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 493.7118 216.2655)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24 28.52 34.08 39.64\\\">including,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 536.1386 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 539.6429 216.2655)\\\" x=\\\"0 5.56 11.12\\\">but</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.5443 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0486 216.2655)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 204.9472)\\\" x=\\\"0 2.28 4.56 12.89 15.17 17.95 23.51\\\">limited</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 62.1723 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 64.9349 204.9472)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 73.2747 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 76.0373 204.9472)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 92.1604 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 94.923 204.9472)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64\\\">applicable</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 140.133 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 142.8956 204.9472)\\\" x=\\\"0 2.78 5.06 10.62 16.18 21.18\\\">fines,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 166.8555 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 169.6182 204.9472)\\\" x=\\\"0 5 10.56 13.89 18.89 24.45 30.01 33.34 38.9 44.46 49.46\\\">surcharges,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 221.8642 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 224.6269 204.9472)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 241.3114 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 244.0741 204.9472)\\\" x=\\\"0 2.78 8.34 13.34 18.9 23.9\\\">taxes.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 270.7537 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 273.5164 204.9472)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.3093 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 294.0719 204.9472)\\\" x=\\\"0 8.33 13.89 18.89\\\">must</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 315.7419 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 318.5045 204.9472)\\\" x=\\\"0 5.56 7.84 12.84\\\">also</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 336.9078 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 339.6704 204.9472)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.7935 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 358.5561 204.9472)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 374.6791 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 377.4417 204.9472)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.12 31.12 33.4 38.4\\\">excessive</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 421.4066 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 424.1692 204.9472)\\\" x=\\\"0 7.22 12.78 18.34\\\">wear</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 445.844 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 448.6066 204.9472)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 465.2912 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 468.0538 204.9472)\\\" x=\\\"0 5.56 10.56\\\">use</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.1769 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 486.9395 204.9472)\\\" x=\\\"0 2.78 8.34 13.9\\\">fees</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 505.8408 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 508.6035 204.9472)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 519.165 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 521.9276 204.9472)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29 32.85\\\">provided</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 560.3456 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 563.1082 204.9472)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 193.6288)\\\" x=\\\"0 2.78 8.34 10.62 15.62 18.28 24.95 30.51 33.84 39.4 44.96 53.29 58.85 64.41 67.19 69.97 72.63 77.63 83.19 88.75 91.03 96.59 101.59 104.37 107.03 109.81 115.37 118.03 120.31 122.59 130.92 133.2 135.98 141.54 144.32 146.6 152.16 157.72 162.72 165.38 170.94 173.72 176.38 181.94 187.5 193.06 195.34 197.62 202.62 208.18 213.74 216.02 221.58 224.24 226.52 232.08 239.3\\\">this Agreement, subject to limitations of applicable law.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 180.3105)\\\" x=\\\"0 8.33 15 17.78 25 31.11 37.78 45 51.67 58.89 66.11 72.78\\\">MAINTENANCE.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 108.6615 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 111.6829 180.3105)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 129.4758 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 132.4972 180.3105)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.5597 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 149.581 180.3105)\\\" x=\\\"0 5 10.56 16.12\\\">keep</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 171.2656 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 174.287 180.3105)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 188.1883 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 191.2097 180.3105)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 229.0026 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 232.024 180.3105)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 239.8658 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 242.8871 180.3105)\\\" x=\\\"0 5.56 11.12 16.68\\\">good</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 265.1332 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 268.1546 180.3105)\\\" x=\\\"0 7.22 12.78 16.11 21.11 23.39 28.95\\\">working</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.6712 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 305.6925 180.3105)\\\" x=\\\"0 5.56 8.89 14.45 20.01\\\">order</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.0373 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 332.0586 180.3105)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.7432 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 351.7645 180.3105)\\\" x=\\\"0 3.33 8.89 14.45 20.01 22.29 25.62\\\">repair.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.1679 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 383.1892 180.3105)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 400.9822 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 404.0035 180.3105)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 418.066 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 421.0874 180.3105)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 437.2104 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 440.2318 180.3105)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.3548 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 459.3762 180.3105)\\\" x=\\\"0 5.56 11.12 16.68 20.01 25.57 28.35 30.63 36.19\\\">operating</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.134 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 504.1553 180.3105)\\\" x=\\\"0 5 10.56 15.56 18.34 23.34\\\">costs.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 530.2735 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 533.2948 180.3105)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.0878 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 554.1092 180.3105)\\\" x=\\\"0 7.22 9.5 11.78 14.06\\\">will,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 168.9921)\\\" x=\\\"0 5.56\\\">at</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 41.4398 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 44.1473 168.9921)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 63.6004 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 66.3078 168.9921)\\\" x=\\\"0 5.56 10.56 16.12 21.68 27.24 32.24 37.8\\\">expense,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 106.8938 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 109.6012 168.9921)\\\" x=\\\"0 5 10.56 13.89 18.89 21.17 26.17\\\">service</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 141.3346 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 144.042 168.9921)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 157.9434 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 160.6508 168.9921)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 198.4438 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 201.1512 168.9921)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 208.993 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 211.7005 168.9921)\\\" x=\\\"0 5.56 10.56 15.56 21.12 24.45 30.01 35.57 41.13 46.13\\\">accordance</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 263.3997 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 266.1071 168.9921)\\\" x=\\\"0 7.22 9.5 12.28\\\">with</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 283.9489 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 286.6563 168.9921)\\\" x=\\\"0 8.33 13.89 19.45 25.01 27.79 33.35 38.35 41.13 46.69 50.02 55.58\\\">manufacturer</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 345.5723 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 348.2798 168.9921)\\\" x=\\\"0 5 7.78 13.34 18.9 24.46 30.02 33.35 38.91 43.91\\\">standards.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 394.9741 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 397.6815 168.9921)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.2382 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 405.9456 168.9921)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.847 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 422.5544 168.9921)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 460.3474 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 463.0548 168.9921)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 470.3351 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 473.0425 168.9921)\\\" x=\\\"0 3.33 8.89 13.89 19.45 21.73 24.01 29.57 35.13\\\">recalled,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 510.9576 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 513.665 168.9921)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.788 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 532.4955 168.9921)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 546.558 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 549.2654 168.9921)\\\" x=\\\"0 5.56 11.12 16.12\\\">have</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 157.6738)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.0014 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 51.506 157.6738)\\\" x=\\\"0 3.33 8.89 13.89 19.45 21.73\\\">recall</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 75.5196 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 80.0242 157.6738)\\\" x=\\\"0 3.33 8.89 14.45 20.01 22.29 25.62\\\">repairs</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 110.6492 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 115.1538 157.6738)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 124.0454 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 128.5499 157.6738)\\\" x=\\\"0 5 10.56 13.89 18.89 21.17 26.17\\\">service</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.2833 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 164.7879 157.6738)\\\" x=\\\"0 5.56 11.12 14.45 17.23 22.79 26.12 34.45 40.01 45.57\\\">performed.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 213.1424 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 217.647 157.6738)\\\" x=\\\"0 2.78\\\">In</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.9868 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 230.4914 157.6738)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 244.3928 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 248.8974 157.6738)\\\" x=\\\"0 5.56 10.56 16.12 21.68\\\">event</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 273.3603 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 277.8648 157.6738)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.7662 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 296.2708 157.6738)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 334.0637 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.5683 157.6738)\\\" x=\\\"0 5.56 11.12\\\">has</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 354.6914 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 359.1959 157.6738)\\\" x=\\\"0 8.33 13.89 18.89 24.45 30.01 35.57 37.85 42.85 48.41\\\">mechanical</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 409.8942 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 414.3988 157.6738)\\\" x=\\\"0 5.56 8.89 14.45 20.01 22.29 27.85 36.18 41.18\\\">problems,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 458.3636 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 462.8682 157.6738)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 478.9912 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 483.4958 157.6738)\\\" x=\\\"0 5.56 11.12 14.45 20.01\\\">agree</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.072 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 513.5766 157.6738)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.9164 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 526.421 157.6738)\\\" x=\\\"0 3.33 8.89 11.67 17.23 20.56\\\">return</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.544 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0486 157.6738)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 146.3554)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79 40.45 43.23 48.79 51.45 57.01 62.01 64.67 67.45 73.01 76.34 79 84.56 89.56 95.12 97.4 102.96 108.52 111.3 113.58 119.14 124.7 127.48 130.14 135.7 141.26 146.82 149.6 152.26 154.54 157.32 159.98 165.54 171.1 176.1 181.66 186.66 191.66 197.22 200.55 205.55 208.33 210.99 214.32 219.88 225.44 231 233.28 236.61\\\">Property to us for evaluation, and, if necessary, repair.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 133.037)\\\" x=\\\"0 6.67 12.78 19.45 26.67 33.89 40.56 47.78 55\\\">STANDARDS</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 94.7748 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 97.7681 133.037)\\\" x=\\\"0 6.11 13.89\\\">FOR</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 118.8765 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 121.8699 133.037)\\\" x=\\\"0 9.44 16.11 22.78\\\">WEAR</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 151.8699 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 154.8632 133.037)\\\" x=\\\"0 6.67 13.89\\\">AND</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 175.9765 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 178.9698 133.037)\\\" x=\\\"0 7.22 13.89 20.56\\\">USE.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 202.3096 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 205.303 133.037)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 223.0959 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 226.0893 133.037)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 244.9809 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 247.9742 133.037)\\\" x=\\\"0 5.56\\\">be</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.0972 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 262.0906 133.037)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01 30.57\\\">charged</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 298.2283 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 301.2216 133.037)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.8915 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 315.8849 133.037)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.12\\\">excess</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 347.0079 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 350.0012 133.037)\\\" x=\\\"0 7.22 12.78 18.34\\\">wear</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.676 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 374.6694 133.037)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 391.3539 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 394.3473 133.037)\\\" x=\\\"0 5.56 10.56\\\">use</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 410.4703 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 413.4636 133.037)\\\" x=\\\"0 7.22 12.78 18.34\\\">when</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 437.3699 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 440.3632 133.037)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.4863 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 459.4796 133.037)\\\" x=\\\"0 3.33 8.89 11.67 17.23 20.56\\\">return</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 485.6026 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 488.596 133.037)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 502.4973 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 505.4907 133.037)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 543.2836 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 546.277 133.037)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 554.6168 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.6101 133.037)\\\" x=\\\"0 5.56 10.56\\\">us.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 121.7187)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 50.3314 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 54.7254 121.7187)\\\" x=\\\"0 2.78 8.34 10.62 12.9 18.46 25.68 27.96 33.52\\\">following</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 93.8123 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 98.2062 121.7187)\\\" x=\\\"0 5 7.78 13.34 18.9 24.46 30.02 33.35 38.91\\\">standards</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 142.1222 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 146.5161 121.7187)\\\" x=\\\"0 5.56 11.12 16.68 18.96\\\">apply</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 170.4809 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 174.8748 121.7187)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 186.5447 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 190.9386 121.7187)\\\" x=\\\"0 5.56 11.12 13.9 19.46 22.79 31.12 33.4 38.96 41.24 46.8\\\">determining</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 243.3068 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 247.7007 121.7187)\\\" x=\\\"0 5.56 11.12 14.45 20.01 25.57 30.57 36.13 41.69 47.25 52.81 55.09\\\">unreasonable</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.3648 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 312.7587 121.7187)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 321.6503 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 326.0442 121.7187)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.12\\\">excess</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 357.1672 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 361.5611 121.7187)\\\" x=\\\"0 7.22 12.78 18.34\\\">wear</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.2359 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 387.6298 121.7187)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 404.3144 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 408.7083 121.7187)\\\" x=\\\"0 5.56 10.56 16.12\\\">use:</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 427.6097 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 432.0036 121.7187)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 449.7965 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 454.1904 121.7187)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.2529 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 472.6468 121.7187)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.5482 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 490.9421 121.7187)\\\" x=\\\"0 5.56 11.12 13.4 18.96\\\">paint</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.6853 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 517.0792 121.7187)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 525.9708 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 530.3647 121.7187)\\\" x=\\\"0 2.28 7.84 10.62 13.4 18.96\\\">letter</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.6547 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0486 121.7187)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 110.4003)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 70.893 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 75.8495 110.4003)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 84.7411 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 89.6976 110.4003)\\\" x=\\\"0 8.33 13.89 19.45 21.73 24.51\\\">modify</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 119.2094 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 124.1659 110.4003)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 140.2889 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 145.2455 110.4003)\\\" x=\\\"0 2.28 7.84 13.4 18.96 21.74 24.02 26.8 29.08 34.08 39.64 42.42 44.7 50.26\\\">identification</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 201.0707 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 206.0272 110.4003)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57\\\">number</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 239.9335 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 244.89 110.4003)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 253.2298 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 258.1864 110.4003)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 272.0877 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 277.0443 110.4003)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 317.6156 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 322.5721 110.4003)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 340.3651 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 345.3216 110.4003)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.3841 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 364.3407 110.4003)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 378.242 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 383.1985 110.4003)\\\" x=\\\"0 5.56 11.12 16.68\\\">add,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.6614 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.618 110.4003)\\\" x=\\\"0 3.33 8.89 17.22 22.78 27.78\\\">remove</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 440.9627 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 445.9192 110.4003)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.8108 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 459.7674 110.4003)\\\" x=\\\"0 8.33 13.89 19.45 21.73 24.51\\\">modify</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.2791 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 494.2356 110.4003)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 510.3587 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 515.3152 110.4003)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.12 31.12 36.68 40.01 42.29 47.85 52.85\\\">accessories,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 99.082)\\\" x=\\\"0 5.56 11.12 16.68 18.96 24.52 32.85 38.41 43.97\\\">equipment</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 79.8578 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 83.9642 99.082)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 92.8558 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 96.9621 99.082)\\\" x=\\\"0 5.56 11.12 14.45 17.23\\\">parts</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 119.1936 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 123.2999 99.082)\\\" x=\\\"0 7.22 9.5 12.28 17.84 23.4 28.96\\\">without</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 155.0431 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 159.1494 99.082)\\\" x=\\\"0 5.56 11.12\\\">our</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 173.6025 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 177.7089 99.082)\\\" x=\\\"0 5.56 8.89 11.17 16.73\\\">prior</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 197.7724 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 201.8787 99.082)\\\" x=\\\"0 7.22 10.55 12.83 15.61 18.39 23.95\\\">written</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.3904 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 235.4968 99.082)\\\" x=\\\"0 5.56 11.12 14.45 22.78 25.06 30.06 35.06 37.34 42.9 48.46\\\">permission.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 286.7419 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 290.8482 99.082)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.0797 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 312.186 99.082)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 349.979 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 354.0853 99.082)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 368.1478 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 372.2542 99.082)\\\" x=\\\"0 5.56 11.12 13.9\\\">not:</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.9339 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 393.0402 99.082)\\\" x=\\\"0 7.22 12.78 17.78\\\">Have</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 416.3849 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 420.4913 99.082)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57 36.13\\\">damage,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 459.4073 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 463.5136 99.082)\\\" x=\\\"0 8.33 13.89 18.89 24.45 30.01 35.57 37.85 42.85 48.41\\\">mechanical</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 514.2119 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 518.3182 99.082)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 527.2098 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 531.3162 99.082)\\\" x=\\\"0 5.56 7.84 13.4 18.4 21.18 24.51 26.79 31.79 37.35\\\">electrical</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 87.7636)\\\" x=\\\"0 8.33 13.89 16.17 18.95 24.51 30.07 35.07 37.85 40.13 45.69\\\">malfunction</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 84.3549 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 87.8075 87.7636)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 98.369 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 101.8216 87.7636)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64 45.2\\\">applicable;</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 149.8099 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 153.2625 87.7636)\\\" x=\\\"0 5.56\\\">be</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 164.3855 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 167.8382 87.7636)\\\" x=\\\"0 2.78 8.34 11.67 17.23\\\">torn,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 187.8479 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 191.3005 87.7636)\\\" x=\\\"0 5.56 11.12 14.45 20.01 25.57 31.13\\\">burned,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.2165 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 228.6691 87.7636)\\\" x=\\\"0 5 7.78 13.34 15.62 21.18 26.74\\\">stained</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 260.9738 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 264.4264 87.7636)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 273.318 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 276.7706 87.7636)\\\" x=\\\"0 5 10.56 13.89 19.45 25.01 30.57 36.13 41.69\\\">shredded;</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 321.2482 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 324.7008 87.7636)\\\" x=\\\"0 5.56 11.12 16.12\\\">have</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 346.3853 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 349.8379 87.7636)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 365.961 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 369.4136 87.7636)\\\" x=\\\"0 5.56 11.12 16.68 19.46 24.46\\\">dents,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 396.6548 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 400.1074 87.7636)\\\" x=\\\"0 8.33 13.89 16.17 21.73\\\">mold,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 424.6191 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 428.0717 87.7636)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 436.9633 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 440.4159 87.7636)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57\\\">damage</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 476.5536 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 480.0062 87.7636)\\\" x=\\\"0 2.78 6.11 11.67\\\">from</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 500.0062 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 503.4588 87.7636)\\\" x=\\\"0 7.22 12.78 15.56 21.12 24.45\\\">water,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 530.6903 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 534.1429 87.7636)\\\" x=\\\"0 5 10.56 16.12 21.68\\\">sand,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 558.6058 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 562.0584 87.7636)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 76.4452)\\\" x=\\\"0 2.78 6.11 11.67 17.23 22.23 24.51 30.07 35.63 38.41 41.07 46.63 49.96 52.62 58.18 63.74 68.74 74.3 76.96 79.24 84.8 90.36 95.92 101.48 104.81 110.37 115.93 118.21 123.77 126.43 131.99 137.55 140.88 143.66 148.66 151.44 154.1 160.77 166.33 171.89 174.55 182.88 188.44 193.44 196.22 198.88 202.21 207.77 210.55 216.11 219.44 225 227.66 230.44 236 241.56 244.22 250.89 254.22 259.78 265.34 270.9 274.23 277.01 282.01 284.67 291.89 294.17 296.95 302.51 305.17 310.73 313.01 315.29 317.95 323.51 326.29 328.95 331.23 334.01 339.01 341.67 347.23 350.56 352.84 358.4 360.68 366.24 371.8 374.08 376.74 382.3 387.86 391.19 393.97 398.97\\\">freezing; or have inoperable parts. You must return the Property with all of its original parts.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 36.5264)\\\" x=\\\"0 6.498 11.997 14.391 16.785 21.789 26.793 29.295 34.299 39.303 44.307 504 506.3906 508.7812 511.1719 513.5625 515.9531 518.3438 520.7344 523.125 525.5156\\\">UT  07/2019          </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 26.3398)\\\" x=\\\"0 6.003 11.007 16.011 21.015\\\">Page </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 55.8097 26.3398)\\\" x=\\\"0\\\">2</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.815 26.3398)\\\" x=\\\"0 2.394 7.398 9.9\\\"> of </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 73.1021 26.3398)\\\" x=\\\"0\\\">7</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#d9d9d9\\\" style=\\\"font-family:f1-0; font-size:54pt; white-space:pre\\\" transform=\\\"matrix(0.707 0.707 0.707 -0.707 135.6027 198.5094)\\\" x=\\\"0 56.016 96.048 136.08 176.112 216.144 236.16 284.184 324.216 344.232 364.248 416.232 456.264 480.24\\\">Qoppa Software</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#002ba6\\\" style=\\\"font-family:f1-0; font-size:9pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.932 772)\\\" x=\\\"0 9.336 16.008 22.68 29.352 36.024 39.36 47.364 54.036 57.372 60.708 69.372 76.044 80.04 86.712 90.048 94.044 97.38 104.712 111.384 115.38 118.716 126.72 132.72 139.392 142.056 148.728 155.4 158.736 161.4 168.072 174.744 178.08 187.416 194.088 196.752 202.752 206.088 210.084 213.42 220.092 223.428 226.764 233.436 239.436 242.772 246.108 249.444 258.108 266.772 275.436 278.772 285.444 292.116 298.788 305.46 312.132 315.468 321.468 328.14\\\">Qoppa Software - For Evaluation Only - https://www.qoppa.com</text></g></g></svg></svg></g></svg><br>\\n<?xml version='1.0' encoding='UTF-8'?><svg id=\\\"qoppa_document\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" version=\\\"1.1\\\" xmlns=\\\"http://www.w3.org/2000/svg\\\" xmlns:xlink=\\\"http://www.w3.org/1999/xlink\\\"><!-- jPDFWeb v2019R1.03 - Demo Version --><style>title p { display: block; }</style><g id=\\\"qoppa_viewxform\\\" transform=\\\"matrix(1 0 0 1 0 0)\\\"><style type=\\\"text/css\\\">@font-face {font-family:f2-0;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f2-1;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f2-2;src:url(\\\"data:application/font-woff;charset=utf-8;base64,d09GRgABAAAAAAp4AAoAAAAADawAAQABAAAAAAAAAAAAAAAAAAAAAAAAAABPUy8yAAAA9AAAADcAAABWWd9ZMmNtYXAAAAEsAAAAbAAAAIwCiwM0Z2x5ZgAAAZgAAAdLAAAJ6ArdyapoZWFkAAAI5AAAADEAAAA2GI9khmhoZWEAAAkYAAAAIAAAACQGNwJvaG10eAAACTgAAABeAAAAgDkXBShsb2NhAAAJmAAAAEIAAABCI1gg9G1heHAAAAncAAAAGAAAACAAIwA9bmFtZQAACfQAAAB3AAAA1A1JKK1wb3N0AAAKbAAAAAwAAAAgAAMAAHicY2Bk8mKcwMDKwMDUxbSbARlwMeogc/8DATI/MCDAkUEBCG8y3fyvxxDFdJPhEkwOAMlSDLoAeJxjYGBgZGAGYgYGHgYWhgYgLcMgABThYVBg0GewYnBj8GcIZAhmSGRIZkhjyGQoZ6j8/x+oSoFBFyjriiSbypDBkAOS/f/4//X/Z/8f/r/7/67/O/+v+b/6/6r/K/8v/78MbA9OAAAj1iOqeJxtVktsG9cVnXuHpChTEr/DjyRSHI44/IlUpeGQkvgTbepPkZJlUTQlWVLNWq2h2rHrohsv4iJo4P6SOqmRxIukDYqiWRTtJmgBN0CCBu1CRhZd1E5bdFOgdtuVG7SAAY16Z0gmClAOMPPmzX33nnfueUdigPEzf4QEjDIswwDHy5BQnsJovc7QK9Og+3tMU/2W5gT5vSb91Hnm+DE48VCd5+wS+9HcR27829EgRWNrDRroWxfD2GWJs9LKRrMJP242lQ9a66sUeInWm7SancuK68p5+K5yA3519AQP1/+0/nSdgih+heIlGnZ/Gm8VrCgpN2FF+cUOHtb+sq7cV0OpfuL4E/wzPmTMzBBFO11Ol6HL0CWG6EqntDHNSal0Kk0z8P07W9usbnfv7t3tbYT6xtuXTxcRSzPPXcvnAUslfIjN5i/f2bmA7MUv/fT1y5fLUC7f+db8Aq6svvjCwgKj1Rw9/j0+wUfMIDN5oqb61ArTi6A+qahLpA8G+jDeAhBKq1EqmpSK5m5jk0WfL+Hz+Ya80aAoJKKR9A8IIjQ2X9uanWMxm7k96HSa3S63yxUIBPiwkwPIZvCRbn//JxdmZkdcVktP0eLiBtzdp/Bi890fXrq0DDMzr3/93DnWoDeaTaf0M91Wa38glz17ZW1N63P8+N+4T5yN0QuBEsQ2+vZOQoE20LSzjbq9m/Q4BcB/DInEcm58nGUnJ4vNtbN6Q21j58ZGravRVSisnU4m2e7trYWyLCMuLlz9yuKCEZ7N8Ty43cW009nriMZuXB/7AkxMPW/cCooIPt9M2eOxcpHIxs7YGMjyV1WOReqrHh1MjMmQrlQqCVAXp3IpnCBZ1rikS1YnA7QRvdoL9XK0+i5zxenaQSIBaDDYt7r1OhhNJKbOjcQwl6vFQyEv+PlMjueNoIv4+WhUFNE7OLoXDML1XZ5HiEaXngwT82arxRK22TASmykHg106o7FbjLuc4HInL/ZRPb3VIosODrNZjePg8SfwT7QxfItjFa8GXsV6UqKaIOB7vT6fND88jEP+hsz7DRuWqUztQNXk1OTzSxNpC+xJA/2AqfTGcjbLQnB4wrRNJMLs3IsHy2UdRCKrLW2Kx0+JNydjZAKfVTarIpXG26UFQ7u0yim8g+HwdCESBoMhFpsfDQSs5/vzhfWtuXkdCe3WfLWCIBcjEcRYLDdfH4l7vWOmRljEfOHefqWi1+VzP6f9GqlamjQ1cEJTnMQJdHIFWZLFjnqiRrPZ1s85oNmsVyokigtWj9uGt1hA6O2LT5WUPHxQWuXjCT2yekbj8gzd/kHn3UVKsKbanFHiTstpeM8nhqS1xCjUYdA7nhdFqOOhcszbbQAj8fPKj2Az7vPRVteVv1ImVHMy9zRPU32LgKoJz9Tph4fNLx49I0vr1G7HMZJVogg8PErSfJFhCLKNiWrzXAfVCXSpdtdpmGwNXdZidUAU87IgWAbEYHExHCK8dkc6z/vrDk6a9fpIpQthpxPA7YlEPG7A+Mhp5TtQj/F+xFAorbwPF8PeQWRHR/PKI8JR0rixadxwn+dGaHPzylAonKvSCagD9S4fVLkxLERUJ4kn1pU3YSXj84rBivIHbdPI8HT2uinn5zxVOOGpXOdsqZ7qvZHNqN555WqhAJjJ3FwUxXB4aWVYgHAIbexS+ca3z5yBublvXl1eLmEqtbGblNlsZrmRkluaLR1PooHqOZjhzi7GTxg5iUgduxwtfmUi9lUuGJzYzuVZmMo8N8LzzvrH84EAHYvZJf8Q+P1oKAVIbKXS7YNqRQc2u1fBB5O6YrFSkyRgC/nyYjbTPi+T8LhTWy/I7aKqr0jqzmVJc/DO0aVOwuO6i+dj1zJTmM9dSAeDzpWPV6gkDPnLM8FhCAR+p3hJd7pK9eB2qQQuZ6A0qctkF8v5AguSVKsUiy1tTdOtQbW5k73r/AlRdfMyN9Af8zg4u89iMXMJj4caV4263QBGo2lV9TI2FksrD7W+ATNEnvOA8pGv25NtErs6Qjhh8F3/z+DjSWmvkkxa6jreH40KAqLb4/za3CySo+3WJib6NrqDQXlEGEb9VGY6GwrDC9lwGHm+2pOwO/r6Iv6eXt2gb6i2Go1AKFzvzbvdCA7HWNRitph5P+GzHv8XevG+6hF2zRscbQgaKNWVNK/4Wb1u7uNOdRtNPY4+s308IMD0NN5/t6S8HzxlQgBgqyw90OOpwmLpVotL2vvfiQfNI9RuqXnpwH7a0bT1DXS6StZ0yliv9ofDU3uRKKJB+XWSrN4w0H8TBo6eVUIeD7CSVIFNytlLiR9TTmJ3ACVWYC+//Grjt2c/pFW78NZnHqEjIT2glx4tbgAo1AQCu3P9SmP/G7W3N/e/vPUWrbkEbyjX4KWjZ/CScq2z1nKcgH+1cNO6NtZRaP/TUiAwdnjl/CNOGC5ZTD193b09Jotot5u4D3fuoOHoN7lYDIFl2TUdIthtQxNUaOt/bprEGQB4nGNgZGBgAOKDhy+vj+e3+crAzfwCKMJw21zgLIL+r8fMyHQTqI6DgQkkCgBlUwuTAAAAeJxjYGRgYLr5X48hitmRgeH/fWZGBqAIClAAAHbABKt4nGNggABGXyAWA9MKQDoKzAbSTLMZ/JmSGQKYuRj0QRjI12XSYVBj/MKgDqTVgWo4gLQzwz0IZnZkcATyXYBYGUqrAc10AKqXB6oVBPKdgGxepksMLEBaAABlFhBuAAAAAAAAAAAAAAAAAA4AGgAoADoAUgBoAKIBAgFUAbQB8AIsAloChAKYAqQC6AMSA0oDiAPGA+4EPgRsBJYEqgTIBPQAAHicY2BkYGBQYLBhYGIAAUYGNAAACboAYXicbco9C4IAEMbxv6/Z6tTo4BhRX8ChFkcnB7ewMEE0VIK+vQ94m3Lc8bvnDjhQ4eH4RyBWr3bk2OwSkZo9pWezL2fmgBOFOVT+4cHAlz8jLY32mZw3HT/NWVnNk7t+Ol47l21SyiOTtoGehBsXrqrN5wJrcRoTAHicY2BmwAsAAH0ABA==\\\");}</style><svg id=\\\"qoppa_page_p2\\\" class=\\\"qoppa_page\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\"><rect class=\\\"qoppa_pageborder\\\" x=\\\"0.5pt\\\" y=\\\"0.5pt\\\" width=\\\"611pt\\\" height=\\\"791pt\\\" fill=\\\"none\\\" /><svg class=\\\"qoppa_pagecontents\\\" x=\\\"0pt\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" viewBox=\\\"0 0 612 792\\\" ><g class=\\\"qoppa_contentstream\\\" transform=\\\"matrix(1 0 0 -1 0 792)\\\" fill=\\\"black\\\" stroke=\\\"black\\\" stroke-width=\\\"1\\\" stroke-linecap=\\\"butt\\\" stroke-linejoin=\\\"miter\\\" stroke-miterlimit=\\\"10\\\"><clipPath id=\\\"clip2-1\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 758.4812)\\\" x=\\\"0 9.44 16.11 23.33 30.55 37.22 44.44 50.55 53.33 60 66.67\\\">WARRANTIES.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 102.5482 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 106.2624 758.4812)\\\" x=\\\"0 9.44\\\">We</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 121.2624 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 124.9766 758.4812)\\\" x=\\\"0 8.33 13.89 18.89\\\">make</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 149.4298 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 153.1439 758.4812)\\\" x=\\\"0 5.56\\\">no</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 164.267 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 167.9812 758.4812)\\\" x=\\\"0 5.56 10.56 16.12 19.45 25.01 30.01\\\">express</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 202.9958 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 206.71 758.4812)\\\" x=\\\"0 7.22 12.78 16.11 19.44 25 30.56 33.34\\\">warranty</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.0548 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 248.769 758.4812)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.892 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 263.6062 758.4812)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 277.5076 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 281.2218 758.4812)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 321.7931 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 325.5072 758.4812)\\\" x=\\\"0 5.56 11.12 16.68\\\">and,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 344.9701 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 348.6843 758.4812)\\\" x=\\\"0 5.56 11.12 13.4 18.96 23.96\\\">unless</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 377.6492 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 381.3634 758.4812)\\\" x=\\\"0 5.56 8.89 14.45 20.01 22.29 27.85 30.13 32.91 38.47\\\">prohibited</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 425.4015 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 429.1157 758.4812)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 439.6772 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 443.3914 758.4812)\\\" x=\\\"0 2.28 7.84 15.06\\\">law,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 461.2332 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 464.9474 758.4812)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 478.8487 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 482.5629 758.4812)\\\" x=\\\"0 2.78 8.34 10.62 12.9 18.46 25.68 27.96 33.52\\\">following</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.6498 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 525.364 758.4812)\\\" x=\\\"0 5 10.56 16.12 18.9 24.46 30.02 35.02 40.58\\\">sentences</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 747.1629)\\\" x=\\\"0 5.56 11.12 16.68 18.96 23.96\\\">apply.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 59.8432 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 63.102 747.1629)\\\" x=\\\"0 6.67 14.45\\\">YOU</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 84.772 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 88.0308 747.1629)\\\" x=\\\"0 6.67 13.89\\\">ARE</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 108.5924 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 111.8512 747.1629)\\\" x=\\\"0 5.56 12.23 18.9 25.57 28.35 35.57\\\">LEASING</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 155.2008 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 158.4597 747.1629)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 178.4597 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 181.7186 747.1629)\\\" x=\\\"0 6.67 13.89 21.67 28.34 35.01 42.23 48.34\\\">PROPERTY</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 236.7284 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 239.9872 747.1629)\\\" x=\\\"0 3.33 10\\\">“AS</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.6572 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 259.916 747.1629)\\\" x=\\\"0 2.78 9.45 12.78\\\">IS”.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.4727 747.1629)\\\" x=\\\"0 3.2589\\\">  </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 281.9904 747.1629)\\\" x=\\\"0 9.44\\\">WE</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 298.0988 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 301.3577 747.1629)\\\" x=\\\"0 8.33 15 21.67\\\">MAKE</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.6975 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 332.9564 747.1629)\\\" x=\\\"0 7.22\\\">NO</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 347.9564 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 351.2153 747.1629)\\\" x=\\\"0 6.67 13.34 20.01 27.23 33.9 40.57\\\">EXPRESS</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 398.4565 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 401.7153 747.1629)\\\" x=\\\"0 9.44 16.11 23.33 30.55 37.22 44.44 50.55 53.33 60\\\">WARRANTIES</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.3853 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 471.6442 747.1629)\\\" x=\\\"0 7.78\\\">ON</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.6442 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 489.903 747.1629)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.903 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 513.1619 747.1629)\\\" x=\\\"0 6.67 13.89 21.67 28.34 35.01 42.23 48.34 55.01\\\">PROPERTY.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 735.8445)\\\" x=\\\"0 9.44\\\">WE</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 49.2084 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 59.5638 735.8445)\\\" x=\\\"0 7.22 10 16.67 23.89 29.45 36.12 38.9\\\">DISCLAIM</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 106.7953 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 117.1507 735.8445)\\\" x=\\\"0 6.67 13.89\\\">ANY</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 137.7122 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.0676 735.8445)\\\" x=\\\"0 9.44 16.11 23.33 30.55 37.22 44.44 50.55 53.33 60\\\">WARRANTIES</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 214.7375 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 225.0929 735.8445)\\\" x=\\\"0 2.78 11.11 17.78 23.34 26.12 32.79\\\">IMPLIED</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 265.1027 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 275.4581 735.8445)\\\" x=\\\"0 6.67\\\">BY</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 288.798 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 299.1534 735.8445)\\\" x=\\\"0 5.56 12.23 21.67\\\">LAW,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 323.6016 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 333.957 735.8445)\\\" x=\\\"0 2.78 10 17.22 22.78 30 37.22 40 47.22\\\">INCLUDING</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.9619 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 399.3173 735.8445)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.3173 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 429.6728 735.8445)\\\" x=\\\"0 2.78 11.11 17.78 23.34 26.12 32.79\\\">IMPLIED</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 469.6825 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 480.0379 735.8445)\\\" x=\\\"0 9.44 16.11 23.33 30.55 37.22 44.44 50.55 53.33 60\\\">WARRANTIES</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 546.7079 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0633 735.8445)\\\" x=\\\"0 7.78\\\">OF</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 724.5262)\\\" x=\\\"0 8.33 15 22.22 29.44 36.66 43.33 50.55 56.66 63.33 70 72.78 78.34 81.12 87.23 93.9 96.56 103.23 110.45 117.67 120.33 126.44 129.22 135.33 142.55 149.22 155.89 162.56 165.22 171.33 179.11 186.33 188.99 195.66 202.88 209.55 212.21 218.88 225.55 232.77 238.88 241.66 248.88 256.1 261.66 268.33 275.55 278.21 284.88 292.1 299.32 305.99 313.77 320.44 327.11\\\">MERCHANTABILITY AND FITNESS FOR ANY PARTICULAR PURPOSE.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 711.2078)\\\" x=\\\"0 7.22 13.89 20 26.67 33.89 39.45 45.56 48.34 51 58.22 64.89 71.56 79.34 86.01 92.68 99.35 106.02 112.69 115.47 123.25 130.47 133.25 135.91 142.58 149.8 157.02 159.68 167.46 173.57 180.79 187.46 194.68 197.34 204.56 211.23 219.56 226.23 233.45 236.23 242.9 249.57 252.35 255.01 261.68 267.24 272.8 275.46 282.68 284.96 287.24 289.52 292.18 297.74 303.3 305.96 308.24 313.8 316.46 322.02 327.58 330.36 335.92 341.48 343.76 346.54 349.2 354.76 357.54 360.2 362.98 368.54 370.82 375.82 378.48 385.15 390.71 394.04 399.6 405.16 413.49 419.05 424.61 427.39 430.05 432.33 435.11\\\">DEFAULT, REPOSSESSION, AND OTHER REMEDIES. You will be in default of this Agreement if:</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 697.8895)\\\" x=\\\"0 3.33 5.99 12.66 18.22 23.78 26.44 32 37.56 40.22 45.78 51.34 54.12 56.78 62.34 67.9 72.9 75.56 81.12 86.68 91.68 94.34 99.9 105.46 110.46 118.79 124.35 129.91 132.69 135.35 140.91 144.24 146.9 152.46 155.24 160.8 166.36 169.69 172.35 177.91 186.24 191.8 197.36 202.92 205.7 208.36 213.92 219.48 225.04 230.6 233.93 236.59 239.37 244.93 250.49 253.15 259.82 265.38 268.71 274.27 279.83 288.16 293.72 299.28 302.06 304.72 310.28 315.28 317.94 323.5 326.83 332.39 337.39 339.67 345.23 350.79 356.35 359.01 364.57 367.9 370.56 377.78 383.34 388.9 394.46 397.12 404.34 409.9 412.56 420.89 426.45 431.45 437.01 439.67 445.23 450.79 459.12 464.68 470.24 475.8\\\">- You do not pay any payment or other amount under the Agreement as provided or when we make demand.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 684.5711)\\\" x=\\\"0 3.33 5.99 12.66 18.22 23.78 26.44 32 34.28 39.28 44.84 47.5 53.06 58.06 60.72 66.28 71.84 76.84 79.5 82.28 87.84 90.12 95.12 100.68 103.34 108.9 112.23 114.89 123.22 125.5 130.5 132.78 138.34 143.9 149.46 151.74 157.3 162.86 165.52 167.8 173.36 176.14 181.7 185.03 193.36 198.92 201.7 203.98 209.54 215.1\\\">- You give us any false or misleading information.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 671.2527)\\\" x=\\\"0\\\">-</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 36.4301 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.1823 671.2527)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 57.9753 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 61.7275 671.2527)\\\" x=\\\"0 2.28 7.84 12.84\\\">lose</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 80.1308 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 83.883 671.2527)\\\" x=\\\"0 5.56 11.12 16.12 21.12 26.68 31.68 36.68 38.96 44.52\\\">possession</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 133.9709 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 137.7231 671.2527)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.0629 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 149.8151 671.2527)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 163.7165 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 167.4687 671.2527)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 205.2617 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 209.0139 671.2527)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 219.5754 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 223.3276 671.2527)\\\" x=\\\"0 5 10.56 16.12 18.9 21.18 26.18 31.18 36.74 39.52 41.8 47.36 52.92\\\">confiscation,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 279.0307 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 282.7829 671.2527)\\\" x=\\\"0 2.78 8.34 11.67 14.45 20.01 22.29 25.07 30.63 33.96\\\">forfeiture</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 322.3044 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 326.0566 671.2527)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 334.9482 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.7004 671.2527)\\\" x=\\\"0 5.56 8.34 13.9 19.46\\\">other</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 361.4934 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 365.2456 671.2527)\\\" x=\\\"0 2.28 7.84 12.84 18.4 20.68 26.24 31.8 34.58 40.14 43.47\\\">involuntary</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 413.7222 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 417.4744 671.2527)\\\" x=\\\"0 2.78 6.11 11.67 17.23 22.23 25.01 30.57\\\">transfer</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 451.3757 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 455.1279 671.2527)\\\" x=\\\"0 3.33 8.89 14.45 20.01 23.34 28.9 31.18 36.74 41.74\\\">regardless</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.876 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 505.6282 671.2527)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 513.968 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 517.7202 671.2527)\\\" x=\\\"0 7.22 12.78 18.34 21.12 26.68 32.24\\\">whether</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.2964 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0486 671.2527)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 659.9344)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79 40.45 42.73 47.73 50.39 53.17 58.73 64.29 66.95 71.95 77.51 83.07 85.35 90.91 95.91 98.69 101.35 106.91 109.69 112.35 114.63 120.19 125.75 128.03 133.03 135.31 140.87 143.15 145.81 151.37 154.7 157.36 162.92 168.48 176.81 179.09 184.65 186.93 191.93 194.71 198.04 203.6 206.38 208.66 213.66 219.22 221.88 227.44 230.77 236.33 241.33 246.89 252.45 258.01 260.29 265.85 271.41 276.41\\\">Property is the subject of judicial or administrative proceedings.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 646.616)\\\" x=\\\"0 3.33 5.99 12.66 18.22 23.78 26.44 32 34.28 39.84 42.5 48.06 53.62 59.18 61.84 64.62 70.18 75.74 79.07 84.63 87.29 89.57 94.57 97.23 102.79 108.35 111.01 116.01 121.57 124.9 129.9 132.18 137.18 139.46 145.02 150.58 153.24 158.24 163.8 168.8 171.58 177.14 185.47 191.03 194.36\\\">- You die and there is no surviving customer.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 633.2977)\\\" x=\\\"0 3.33 5.99 12.1 17.66 23.22 25.88 32.55 35.88 41.44 47 52.56 55.89 58.67 63.67 66.33 68.61 73.61 76.27 78.55 84.11 89.11 91.89 94.67 97.33 102.33 105.11 110.67 112.95 118.51 124.07 126.73 132.29 135.62 138.28 143.84 149.4 157.73 163.29 168.85 174.41 179.97 182.63 188.19 193.75 198.75 204.31 209.87 215.43 218.09 221.42 226.98 232.54 238.1 240.38 243.71\\\">- The Property is lost, stolen or damaged beyond repair.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 619.9793)\\\" x=\\\"0 3.33 5.99 12.66 18.22 23.78 26.44 32 37 42 44.28 49.84 55.4 58.06 60.84 66.4 71.96 74.62 81.29 86.85 90.18 95.74 101.3 109.63 115.19 120.75 123.53 126.19 131.75 135.08 137.74 140.52 143.85 149.41 154.97 159.97 162.75 168.31 171.64 174.3 177.08 182.64 188.2 190.86 197.53 200.86 206.42 211.98 217.54 220.87 223.65 228.65\\\">- You assign the Agreement or transfer the Property.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 606.6609)\\\" x=\\\"0 3.33 5.99 13.21 18.77 21.05 26.61 31.61 36.61 39.27 44.83 48.16 53.72 59.28 61.56 67.12 69.4 72.18 77.74 83.3 85.96 91.52 96.52 99.18 101.46 107.02 114.24 117.02 119.68 124.68 130.24 135.8 138.46 143.46 145.74 151.3 153.58 159.14 161.92 167.48 170.14 175.7 181.26 186.26 188.92 195.59 201.15 204.48 210.04 215.6 223.93 229.49 235.05 237.83 240.49 243.27 248.83 252.16 260.49\\\">- Unless prohibited by law, you violate any Agreement term.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 593.3426)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 38.6566 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 41.5168 593.3426)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 57.1369 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 59.9971 593.3426)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 108.9131 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 111.7732 593.3426)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 119.0535 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 121.9136 593.3426)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 129.7554 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 132.6156 593.3426)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 27.3 30.08\\\">default,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 165.4769 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 168.3371 593.3426)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 181.1202 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 183.9804 593.3426)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 202.872 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 205.7321 593.3426)\\\" x=\\\"0 5.56\\\">at</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 214.072 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 216.9321 593.3426)\\\" x=\\\"0 5.56 11.12\\\">our</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.3853 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 234.2454 593.3426)\\\" x=\\\"0 5.56 7.84 13.4 18.4 21.18 23.46 29.02 34.58\\\">election,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 271.6087 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 274.4688 593.3426)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.1534 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 294.0135 593.3426)\\\" x=\\\"0 5 10.56 16.12 18.4 23.96 28.96\\\">subject</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 325.7567 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 328.6169 593.3426)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 336.9567 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 339.8168 593.3426)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.9399 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 358.8 593.3426)\\\" x=\\\"0 7.22 12.78 15.06 17.84 20.12 25.68\\\">waiting</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 390.0452 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 392.9053 593.3426)\\\" x=\\\"0 5.56 11.12 14.45 16.73 22.29\\\">period</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 420.7618 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 423.6219 593.3426)\\\" x=\\\"0 2.28 10.61 16.17 21.73 26.73 32.29\\\">imposed</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 461.4783 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 464.3385 593.3426)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.9 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 477.7602 593.3426)\\\" x=\\\"0 2.28 7.84 15.06\\\">law,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 495.602 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 498.4621 593.3426)\\\" x=\\\"0 2.78 8.34 13.34\\\">take</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 517.3635 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 520.2236 593.3426)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 536.3467 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 539.2068 593.3426)\\\" x=\\\"0 5.56 10.56 13.34 15.62 21.18 26.74\\\">actions</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 582.0242)\\\" x=\\\"0 5.56 11.12 14.45 22.78 25.06 27.84 30.62 36.18 41.74 44.4 49.96 54.96 57.62 59.9 65.46 72.68 75.46 78.12 80.4 85.96 90.96 93.24 98.8 104.36 106.64 112.2 117.76 120.42 127.64 129.92 132.7 138.26 143.82 149.38 152.16 154.82 157.1 159.38 167.71 169.99 172.77 178.33 181.11 183.39 188.95 194.51 197.17 202.73 208.29 213.85 216.51 222.07 224.85 227.51 230.29 235.85 241.41 244.07 246.85 252.41 254.69 256.97 262.53 269.75 272.03 277.59 283.15 285.81 291.37 296.37 299.15 301.43 306.99 312.55 317.55 320.33 322.99 328.55 334.11 339.67 345.23 347.89 353.45 356.23 358.89 366.11 371.67 373.95 378.95 384.51 387.17 394.39 396.67 398.95 401.23 403.89 408.89 414.45 417.78 423.34 426 431 436.56 442.12 445.45 448.11 453.67 459.23 462.01 467.57 473.13 475.41 478.19\\\">permitted by law, including without limitation one of the following actions, none of which will cure your default:</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 568.7059)\\\" x=\\\"0 3.33 10.55 16.11 18.89 21.17\\\">-Until</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 56.5522 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 59.9757 568.7059)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 76.0988 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 79.5223 568.7059)\\\" x=\\\"0 5.56 11.12 14.45 19.45 25.01 30.57 35.57\\\">purchase</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 120.66 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 124.0836 568.7059)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 137.985 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 141.4086 568.7059)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 179.2015 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 182.6251 568.7059)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 193.1866 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 196.6102 568.7059)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29 32.85\\\">provided</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 235.0282 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 238.4518 568.7059)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 246.2936 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 249.7171 568.7059)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 265.3372 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 268.7608 568.7059)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 320.4552 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 323.8787 568.7059)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 332.7703 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 336.1939 568.7059)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 350.0953 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 353.5189 568.7059)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 391.3118 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 394.7354 568.7059)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.0157 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 405.4393 568.7059)\\\" x=\\\"0 3.33 8.89 14.45 20.01 25.01 30.01 35.57 40.57 45.57 51.13\\\">repossessed</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 462.1385 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 465.5621 568.7059)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.4537 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 477.8772 568.7059)\\\" x=\\\"0 5 10.56 13.89 17.22 22.78 28.34 33.9 39.46 42.79 48.35 53.91\\\">surrendered,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 534.5765 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 538 568.7059)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 545.8418 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 549.2654 568.7059)\\\" x=\\\"0 5.56 11.12 16.12\\\">each</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 557.3875)\\\" x=\\\"0 5 10.56 15.56\\\">case</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 54.2231 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 56.9386 557.3875)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 67.5001 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 70.2156 557.3875)\\\" x=\\\"0 5.56 11.12 14.45 22.78 25.06 27.84 30.62 36.18\\\">permitted</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 111.9588 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 114.6743 557.3875)\\\" x=\\\"0 5.56 11.12 16.68 22.24\\\">under</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 140.2505 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 142.966 557.3875)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 158.5862 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 161.3017 557.3875)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 212.996 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 215.7115 557.3875)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.3317 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 234.0472 557.3875)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 282.9632 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 285.6787 557.3875)\\\" x=\\\"0 5 10.56 16.12 18.4\\\">shall</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 306.3623 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 309.0779 557.3875)\\\" x=\\\"0 5 10.56 16.12 18.9 21.18 26.74 32.3\\\">continue</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 346.9441 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 349.6596 557.3875)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 357.9994 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 360.715 557.3875)\\\" x=\\\"0 3.33 8.89 14.45 20.01 27.23\\\">renew,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 390.7296 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 393.4452 557.3875)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 410.1297 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 412.8453 557.3875)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 425.6285 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 428.344 557.3875)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.2356 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 449.9511 557.3875)\\\" x=\\\"0 5 10.56 16.12 18.9 21.18 26.74 32.3\\\">continue</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 487.8173 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 490.5329 557.3875)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 498.8727 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 501.5882 557.3875)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01\\\">charge</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 532.1644 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 534.88 557.3875)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.003 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.7185 557.3875)\\\" x=\\\"0 3.33 8.89 14.45\\\">rent</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 546.0691)\\\" x=\\\"0 5.56 11.12 16.68 22.24 25.57 28.23 31.01 36.57 42.13 44.79 47.57 53.13 56.46 64.79 69.79 72.45 78.01 80.79 83.45 86.23 91.79 94.07 99.07 101.73 108.4 113.96 117.29 122.85 128.41 136.74 142.3 147.86 150.64\\\">under the terms of this Agreement.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 532.7508)\\\" x=\\\"0 3.33 12.77 18.33 20.99 29.32 34.88 39.88 42.54 45.32 50.88 55.88 61.44 64.1 69.66 75.22 80.22 82.88 88.44 93.44 96.22 98.5 104.06 109.62 112.28 119.5 125.06 127.72 133.28 138.84 141.12 143.4 148.96 153.96 159.52 162.18 164.96 170.52 173.18 178.74 184.3 186.96 192.52 198.08 203.08 208.64 213.64 218.64 224.2 227.53 232.53 235.19 240.75 244.08 246.74 252.3 257.86 262.86 265.14 270.14 275.7 281.26 283.54 289.1 291.76 294.54 300.1 302.76 308.32 311.65 317.21 319.99 325.55 330.55 333.33 335.99 341.55 347.11 350.44 353.1 355.38 360.94 363.72 369.28 372.61 378.17 383.17 385.95 388.61 390.89 396.45 399.11 401.89 407.45 413.01 415.67 422.34 425.67 431.23 436.79 442.35 445.68 448.46 453.46\\\">-We may take any action we believe to be necessary or advisable to protect our interest in the Property.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 519.4324)\\\" x=\\\"0 3.33 12.77\\\">-We</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 51.4301 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 54.7506 519.4324)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 73.6422 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 76.9627 519.4324)\\\" x=\\\"0 5.56 11.12 16.68 21.68 27.24 30.02 35.58 37.86 40.14\\\">peacefully</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 122.1092 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 125.4297 519.4324)\\\" x=\\\"0 3.33 8.89 14.45 20.01 25.01 30.01 35.57 40.57\\\">repossess</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 171.0058 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 174.3263 519.4324)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 188.2277 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 191.5482 519.4324)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 229.3411 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 232.6616 519.4324)\\\" x=\\\"0 7.22 12.78 18.34 21.67 27.23 32.23 37.79\\\">wherever</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 273.7896 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 277.1101 519.4324)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 289.8933 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 293.2138 519.4324)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.1054 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 315.4259 519.4324)\\\" x=\\\"0 2.78 5.06 10.62\\\">find</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 331.6075 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 334.928 519.4324)\\\" x=\\\"0 2.28 5.06\\\">it.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 342.7649 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 346.0854 519.4324)\\\" x=\\\"0 9.44\\\">We</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 361.0854 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 364.4059 519.4324)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 378.4684 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 381.7889 519.4324)\\\" x=\\\"0 5.56 7.84 12.84\\\">give</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 400.1922 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 403.5127 519.4324)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.6358 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 422.9563 519.4324)\\\" x=\\\"0 3.33 8.89 14.45 20.01 25.01 30.01 35.57 40.57 45.57 47.85 53.41\\\">repossession</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 481.9358 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 485.2562 519.4324)\\\" x=\\\"0 5.56 11.12 13.9 16.18 21.18 26.74\\\">notices</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 516.9994 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 520.3199 519.4324)\\\" x=\\\"0 3.33 8.89 14.45 20.01 22.29 25.62 31.18\\\">required</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 557.068 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 560.3885 519.4324)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 508.1141)\\\" x=\\\"0 2.28 7.84 15.06\\\">law.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 50.9418 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 53.8695 508.1141)\\\" x=\\\"0 6.67 9.45 12.23 17.79\\\">After</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 74.9876 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 77.9153 508.1141)\\\" x=\\\"0 3.33 8.89 14.45 20.01 25.01 30.01 35.57 40.57 45.57 47.85 53.41\\\">repossession</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.8948 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 139.8224 508.1141)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 148.714 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 151.6417 508.1141)\\\" x=\\\"0 5 10.56 13.89 17.22 22.78 28.34 33.9 39.46 42.79\\\">surrender,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 197.2178 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 200.1455 508.1141)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 212.9287 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 215.8564 508.1141)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 229.9189 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 232.8465 508.1141)\\\" x=\\\"0 5.56 11.12 13.4\\\">hold</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 251.8114 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 254.739 508.1141)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 268.6404 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 271.568 508.1141)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.1393 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 315.067 508.1141)\\\" x=\\\"0 5 10.56 16.12 18.4 23.96 28.96\\\">subject</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 346.8101 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 349.7378 508.1141)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 358.0776 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 361.0053 508.1141)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 377.1283 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 380.056 508.1141)\\\" x=\\\"0 3.33 5.61 11.17 16.73\\\">right</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 399.5677 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 402.4954 508.1141)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 418.6184 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 421.5461 508.1141)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 440.4377 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 443.3653 508.1141)\\\" x=\\\"0 5.56 11.12 16.12\\\">have</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 465.0499 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 467.9776 508.1141)\\\" x=\\\"0 5.56 11.12 16.68 22.24\\\">under</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 493.5537 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 496.4814 508.1141)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64\\\">applicable</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 541.6914 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 544.619 508.1141)\\\" x=\\\"0 2.28 7.84\\\">law</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.6825 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 562.6101 508.1141)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 496.7957)\\\" x=\\\"0 5 10.56 13.89 19.45 22.11 24.89 30.45 36.01 38.67 44.23 49.79 52.57 58.13 63.69 65.97 68.75 71.41 76.97 80.3 82.96 86.29 91.85 96.85 102.41 107.41 112.97 116.3 118.96 121.74 127.3 132.86 135.52 142.19 145.52 151.08 156.64 162.2 165.53 168.31 173.31\\\">cure the default or recover the Property.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 483.4773)\\\" x=\\\"0 3.33 10 15.56 23.89 28.89 31.55 38.77 44.33 46.99 51.99 57.55 63.11 68.67 74.23 76.89 79.67 85.23 90.23 92.51 98.07 103.63 106.29 111.85 117.41 122.41 125.07 130.63 136.19 139.52 147.85 150.13 152.91 155.69 161.25 166.81 169.47 175.03 180.03 182.81 185.09 190.65 196.21 198.87 206.09 208.37 210.65 212.93 215.59 221.15 226.71 229.37 234.93 240.49 246.05 251.61 257.17 259.83 262.61 268.17 270.83 273.61 279.17 284.73 287.39 292.95 301.28 306.84 312.4 317.96 320.74 323.4 328.96 333.96 338.96 342.29 347.85 353.41 358.97 361.75 364.41 369.97 375.53 377.81 383.37 388.37 393.37 396.03 401.59 404.92 410.48 416.04 418.32 423.88 426.16 428.94 434.5 440.06 442.72 448.28 453.28 455.94 458.22 463.78 471\\\">-Sums we spend taking any permitted action will be added to the amount accrued, unless prohibited by law.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 456.8406)\\\" x=\\\"0 6.11 12.78 19.45 26.12 32.79\\\">TAXES.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 68.6664 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 72.5196 456.8406)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 90.3126 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 94.1658 456.8406)\\\" x=\\\"0 8.33 13.89 18.89\\\">must</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 115.8357 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 119.689 456.8406)\\\" x=\\\"0 2.28 10.61 18.94 24.5 30.06 32.34 37.9 40.68 46.24 48.52\\\">immediately</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 173.2144 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 177.0676 456.8406)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 193.1906 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 197.0439 456.8406)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 205.9355 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 209.7887 456.8406)\\\" x=\\\"0 3.33 8.89 11.17 19.5 25.06 30.62 33.95 38.95\\\">reimburse</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 254.3053 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 258.1585 456.8406)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 268.72 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 272.5733 456.8406)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 277.6319 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 281.4851 456.8406)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 294.2683 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 298.1215 456.8406)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 314.2446 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 318.0978 456.8406)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.7677 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 333.6209 456.8406)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 349.744 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 353.5972 456.8406)\\\" x=\\\"0 5.56 7.84\\\">all</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 363.7193 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 367.5725 456.8406)\\\" x=\\\"0 5.56 11.12 16.12 21.68 25.01 30.57 38.9 44.46 50.02\\\">government</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 420.3801 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 424.2334 456.8406)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01 30.57\\\">charges</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 459.8095 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 463.6628 456.8406)\\\" x=\\\"0 3.33 8.89 11.17 16.73 19.51 21.79 27.35\\\">relating</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 496.5778 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 500.431 456.8406)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 508.7709 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 512.6241 456.8406)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.5255 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 530.3787 456.8406)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 445.5223)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24 28.52 34.08 39.64\\\">including,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 75.5268 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 78.3573 445.5223)\\\" x=\\\"0 5.56 11.12\\\">but</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 92.2586 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 95.0891 445.5223)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 108.9905 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 111.8209 445.5223)\\\" x=\\\"0 2.28 4.56 12.89 15.17 17.95 23.51\\\">limited</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 140.8932 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 143.7237 445.5223)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 152.0635 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 154.894 445.5223)\\\" x=\\\"0 2.78 8.34 13.9 18.9\\\">fees,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 176.5737 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 179.4042 445.5223)\\\" x=\\\"0 2.78 8.34 13.34 18.9 23.9\\\">taxes,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 206.0839 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 208.9144 445.5223)\\\" x=\\\"0 2.78 5.06 10.62 16.18\\\">fines</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 230.096 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 232.9265 445.5223)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 249.6111 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 252.4416 445.5223)\\\" x=\\\"0 5 10.56 13.89 18.89 24.45 30.01 33.34 38.9 44.46 49.46\\\">surcharges,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 304.6877 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 307.5181 445.5223)\\\" x=\\\"0 7.22 12.78 18.34 21.12 26.68 32.24\\\">whether</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 343.0943 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 345.9248 445.5223)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.12 31.12 36.68\\\">assessed</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.1709 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 391.0014 445.5223)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.1244 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 404.9549 445.5223)\\\" x=\\\"0 5 10.56 16.12\\\">you,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 423.8563 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 426.6868 445.5223)\\\" x=\\\"0 5.56 10.56\\\">us,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 440.0266 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 442.8571 445.5223)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 451.7487 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 454.5792 445.5223)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.4806 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 471.311 445.5223)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 511.8823 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 514.7128 445.5223)\\\" x=\\\"0 9.44\\\">We</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.7128 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 532.5433 445.5223)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.4349 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 554.2654 445.5223)\\\" x=\\\"0 5.56 11.12\\\">add</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 434.2039)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.0014 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 50.123 434.2039)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 83.4775 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 86.5991 434.2039)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 94.9389 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 98.0606 434.2039)\\\" x=\\\"0 7.22 12.78 18.34\\\">what</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 119.1836 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 122.3052 434.2039)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 138.4283 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 141.5499 434.2039)\\\" x=\\\"0 5.56 12.78\\\">owe</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 159.8946 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 163.0162 434.2039)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 173.5777 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 176.6994 434.2039)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 181.758 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 184.8796 434.2039)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 201.0026 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 204.1242 434.2039)\\\" x=\\\"0 5.56\\\">do</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 215.2473 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 218.3689 434.2039)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 232.2703 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 235.3919 434.2039)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 251.5149 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 254.6365 434.2039)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 265.1981 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 268.3197 434.2039)\\\" x=\\\"0 7.22 12.78 18.34\\\">when</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 292.2259 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 295.3476 434.2039)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.1307 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 311.2524 434.2039)\\\" x=\\\"0 8.33 13.89 18.89\\\">make</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.7055 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.8271 434.2039)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57 36.13\\\">demand.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 377.7431 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 380.8647 434.2039)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 386.4214 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 389.543 434.2039)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 405.666 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 408.7877 434.2039)\\\" x=\\\"0 5.56\\\">do</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.9107 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 423.0323 434.2039)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 436.9337 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 440.0553 434.2039)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.1783 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 459.3 434.2039)\\\" x=\\\"0 5 10.56 15.56\\\">such</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 480.423 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 483.5446 434.2039)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57 33.35\\\">amounts</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.8991 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 525.0207 434.2039)\\\" x=\\\"0 7.22 12.78 18.34\\\">when</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 548.927 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 552.0486 434.2039)\\\" x=\\\"0 2.78 8.34 13.9\\\">they</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 422.8855)\\\" x=\\\"0 5.56 8.89\\\">are</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.5531 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 50.576 422.8855)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.12 31.12 36.68\\\">assessed</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 92.8221 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 95.845 422.8855)\\\" x=\\\"0 3.33 8.89 14.45 16.73 22.29 27.29\\\">(unless</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 128.1399 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 131.1627 422.8855)\\\" x=\\\"0 5 10.56 15.56\\\">such</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 152.2858 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 155.3087 422.8855)\\\" x=\\\"0 3.33 8.89 13.89 19.45 21.73 24.51\\\">results</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 184.8204 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 187.8433 422.8855)\\\" x=\\\"0 2.78 6.11 11.67\\\">from</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 207.8433 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.8661 422.8855)\\\" x=\\\"0 5.56 11.12\\\">our</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.3192 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 228.3421 422.8855)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.8 32.36 37.92 42.92 48.48 51.81\\\">negligence),</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 282.9417 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 285.9646 422.8855)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.0876 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 305.1105 422.8855)\\\" x=\\\"0 8.33 13.89 18.89\\\">must</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 326.7804 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 329.8033 422.8855)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 345.9264 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 348.9492 422.8855)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 365.0723 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 368.0951 422.8855)\\\" x=\\\"0 5.56 11.12 16.68 22.24 24.52 27.3 29.58 35.14\\\">penalties</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 408.2416 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 411.2645 422.8855)\\\" x=\\\"0 7.22 12.78 18.34\\\">when</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 435.1707 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 438.1936 422.8855)\\\" x=\\\"0 5.56 11.12\\\">due</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.8782 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 457.9011 422.8855)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.7927 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 469.8155 422.8855)\\\" x=\\\"0 3.33 8.89 11.17 19.5 25.06 30.62 33.95 38.95\\\">reimburse</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 514.3321 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 517.355 422.8855)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 527.9165 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 530.9394 422.8855)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 535.998 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 539.0209 422.8855)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.8041 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 554.8269 422.8855)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 411.5672)\\\" x=\\\"0 2.78 8.34 13.9 22.23\\\">them.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 58.1098 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 61.0597 411.5672)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 78.8527 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.8026 411.5672)\\\" x=\\\"0 8.33 13.89 18.89\\\">must</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 103.4725 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 106.4225 411.5672)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 122.5455 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 125.4955 411.5672)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 139.3968 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 142.3467 411.5672)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01 30.57\\\">charges</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 177.9229 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 180.8729 411.5672)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 188.7147 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 191.6646 411.5672)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 207.2847 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.2346 411.5672)\\\" x=\\\"0 5.56 11.12 14.45 20.01 25.57 28.9 34.46 40.02\\\">paragraph</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 255.8255 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 258.7754 411.5672)\\\" x=\\\"0 5.56 10.56 16.12\\\">even</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.46 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 283.4099 411.5672)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 288.4685 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 291.4184 411.5672)\\\" x=\\\"0 5 10.56 15.56\\\">such</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.5415 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 315.4914 411.5672)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01 30.57\\\">charges</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.0676 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 354.0175 411.5672)\\\" x=\\\"0 5.56 8.89\\\">are</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 368.4707 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 371.4206 411.5672)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 385.322 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 388.2719 411.5672)\\\" x=\\\"0 5.56 7.84 10.12 12.4 17.96\\\">billed</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 411.7973 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 414.7472 411.5672)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 423.0871 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 426.037 411.5672)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 436.5985 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 439.5485 411.5672)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 448.4401 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 451.39 411.5672)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 459.7298 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 462.6798 411.5672)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 478.8028 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 481.7528 411.5672)\\\" x=\\\"0 5.56 11.12 13.9 16.18\\\">until</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 500.2147 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 503.1646 411.5672)\\\" x=\\\"0 5.56 8.34 11.12 16.68\\\">after</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 523.1744 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 526.1243 411.5672)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 540.0257 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 542.9756 411.5672)\\\" x=\\\"0 5.56 11.12\\\">end</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.6602 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 562.6101 411.5672)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 400.2488)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.0014 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 49.7259 400.2488)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 98.6419 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 101.3665 400.2488)\\\" x=\\\"0 2.78 8.34 11.67 20\\\">term,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 124.1448 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 126.8693 400.2488)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 137.4308 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 140.1554 400.2488)\\\" x=\\\"0 2.28 7.84 13.4\\\">long</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 159.1202 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 161.8448 400.2488)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 172.4063 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 175.1308 400.2488)\\\" x=\\\"0 5 10.56 15.56\\\">such</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 196.2539 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 198.9784 400.2488)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01 30.57\\\">charges</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 234.5546 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 237.2791 400.2488)\\\" x=\\\"0 5.56 8.89\\\">are</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 251.7322 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 254.4568 400.2488)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64\\\">applicable</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.6667 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 302.3913 400.2488)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 310.7311 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 313.4556 400.2488)\\\" x=\\\"0 5 10.56 18.89\\\">some</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 337.9088 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 340.6333 400.2488)\\\" x=\\\"0 5.56 11.12 14.45\\\">part</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 357.8648 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 360.5893 400.2488)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 368.9291 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 371.6537 400.2488)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 385.555 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 388.2796 400.2488)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 437.1956 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 439.9201 400.2488)\\\" x=\\\"0 2.78 8.34 11.67 20\\\">term.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 462.6985 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 465.423 400.2488)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 483.216 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 485.9405 400.2488)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 500.003 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 502.7275 400.2488)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 516.6289 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 519.3534 400.2488)\\\" x=\\\"0 5.56 11.12 16.12\\\">have</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 541.038 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 543.7625 400.2488)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.1024 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 554.8269 400.2488)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 388.9305)\\\" x=\\\"0 5.56 11.12 14.45 17.11 19.39 24.95 29.95 35.51 43.84 49.4 52.06 54.84 60.4 65.4 70.96 75.96\\\">our income taxes.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 375.6121)\\\" x=\\\"0 6.11 8.89 15 20.56 27.23 30.01 32.67 42.11 47.67 50.33 53.66 59.22 62 67.56 69.84 75.4 78.06 80.84 83.12 85.9 88.18 93.74 96.4 99.18 104.74 107.4 110.18 115.74 121.3 123.96 130.63 133.96 139.52 145.08 150.64 153.97 156.75 161.75 164.41 167.19 172.75 176.08 178.74 181.52 187.08 192.64 195.3 198.08 203.64 206.97 215.3 217.96 223.52 226.3 228.96 231.74 237.3 242.86 245.52 247.8 253.36 258.92 263.92 269.48 272.14 277.7 283.26 288.82 291.48 297.04 302.6 305.38 307.66 309.94 312.6 317.6 323.16 328.72 331.38 336.94 341.94 347.5 353.06 355.34 358.67 364.23 366.89 372.45 379.67 385.23 390.79 394.12 399.12 404.68 406.96 412.52\\\">TITLE. We retain title to the Property for the term of the lease and until you acquire ownership.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 362.2937)\\\" x=\\\"0 6.67 13.34 20.01 28.34 35.01 42.23 48.34 55.01 57.79 60.45 69.89 75.45 78.11 83.67 89.23 94.23 99.79 102.45 107.45 112.45 118.01 123.57 129.13 134.69 136.97 142.53 148.09 150.75 156.31 161.87 167.43 169.71 172.49 177.49 180.15 182.93 186.26 191.82 200.15 202.81 207.81 213.37 218.93 222.26 224.92 229.92 235.48 241.04 246.04 251.04 253.32 258.88 264.44 267.1 272.66 277.66 282.66 288.22 293.78 299.34 302.12 304.9 307.56 313.12 318.12 320.78 326.34 329.67 335.23 340.23 342.51 348.07 353.63 359.19 361.85 367.41 372.97 375.25 380.81 388.03\\\">PAYMENTS. We have scheduled debits from your checking account, as provided below:</text></g><clipPath id=\\\"clip2-2\\\"><path d=\\\"M 35 328 L 574 328 L 574 345 L 35 345 L 35 328 z \\\"/></clipPath><g clip-path=\\\"url(#clip2-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.2825 332.657)\\\" x=\\\"0 7.22 15 22.22 28.89 36.11 44.44 51.11 58.33 60.99 67.66 74.88 80.99 88.21 95.99 103.21 105.99 112.1 118.77 124.88 127.66 135.44 142.66 145.32 151.43 159.21 166.43 169.09 175.76 182.43 189.1 197.43 204.1 211.32 217.43 224.1 226.76 233.43 236.21 242.88 245.54 252.21 259.43 266.65 269.31 272.64 279.31 286.53 293.75 296.41 303.63 310.3 316.97 319.75 325.86 332.53\\\">CONSUMER AUTHORIZATION FOR PAYMENTS VIA ACH (ACH DEBITS)</text></g><clipPath id=\\\"clip2-3\\\"><path d=\\\"M 35 79 L 574 79 L 574 329 L 35 329 L 35 79 z \\\"/></clipPath><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 316.3387)\\\" x=\\\"0 6.67 13.89\\\">ACH</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 61.7883 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 66.1692 316.3387)\\\" x=\\\"0 7.22 12.78 18.34 20.62 23.4\\\">Debits</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 94.5725 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 98.9533 316.3387)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 110.6233 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 115.0041 316.3387)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46 42.79 47.79\\\">Payment(s)</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 166.1272 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 170.508 316.3387)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 187.1926 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 191.5735 316.3387)\\\" x=\\\"0 7.22 12.78 18.34 23.9\\\">Range</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 221.0412 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 225.4221 316.3387)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.762 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 238.1428 316.3387)\\\" x=\\\"0 7.22 12.78 18.34 20.62 23.4 28.4\\\">Debits.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 269.3245 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 273.7053 316.3387)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.4983 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 295.8792 316.3387)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 28.35 30.63 35.63\\\">authorize</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 337.0754 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 341.4563 316.3387)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 352.0178 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 356.3987 316.3387)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 364.7385 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 369.1194 316.3387)\\\" x=\\\"0 5.56 11.12 16.68 18.96\\\">debit</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 390.8626 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 395.2434 316.3387)\\\" x=\\\"0 2.78 8.34 13.9 19.46\\\">funds</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.7063 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 424.0872 316.3387)\\\" x=\\\"0 2.78 6.11 11.67\\\">from</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 444.0872 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 448.4681 316.3387)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.9212 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 472.3021 316.3387)\\\" x=\\\"0 5.56 11.12 16.68\\\">bank</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 493.9866 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 498.3675 316.3387)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.68 32.24\\\">account</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 533.3919 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 537.7728 316.3387)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.4427 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.8236 316.3387)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.7249 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 305.0203)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 74.0295 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 77.2781 305.0203)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 85.6179 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 88.8665 305.0203)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 102.7678 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 106.0164 305.0203)\\\" x=\\\"0 2.28 7.84 13.4 18.4\\\">lease</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 129.9813 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 133.2298 305.0203)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57 38.35\\\">payments</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 176.5843 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 179.8329 305.0203)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 196.5174 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 199.766 305.0203)\\\" x=\\\"0 5.56 7.84\\\">all</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.8881 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 213.1366 305.0203)\\\" x=\\\"0 5.56 8.34 13.9 19.46\\\">other</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 235.9296 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 239.1782 305.0203)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57 33.35\\\">amounts</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 277.5327 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 280.7812 305.0203)\\\" x=\\\"0 5.56 10.56 15.56 18.89 24.45 30.01\\\">accrued</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 316.3574 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 319.606 305.0203)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 330.1675 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 333.4161 305.0203)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29 32.85\\\">provided</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.834 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 375.0826 305.0203)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 382.9244 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 386.173 305.0203)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 401.7931 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 405.0417 305.0203)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement,</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.736 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 459.9846 305.0203)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.8264 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 471.0749 305.0203)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.9763 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 488.2249 305.0203)\\\" x=\\\"0 2.78 8.34 10.62 12.9 18.46 25.68 27.96 33.52\\\">following</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 527.3118 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 530.5603 305.0203)\\\" x=\\\"0 3.33 8.89 14.45 20.01\\\">range</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 556.1365 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 559.3851 305.0203)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.7249 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 293.7019)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57 33.35\\\">amounts</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 79.0295 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.706 293.7019)\\\" x=\\\"0 5.56 11.12 13.9 19.46\\\">$1.00</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 106.7305 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 109.407 293.7019)\\\" x=\\\"0\\\">-</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 112.7371 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 115.4136 293.7019)\\\" x=\\\"0 5.56 11.12 16.68 22.24 25.02 30.58 36.14\\\">$500.00.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 154.3394 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 157.016 293.7019)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 174.8089 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 177.4855 293.7019)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 28.35 30.63 35.63\\\">authorize</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 218.6818 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 221.3583 293.7019)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.9198 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 234.5964 293.7019)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 242.9362 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 245.6128 293.7019)\\\" x=\\\"0 5.56 11.12 16.68 18.96\\\">debit</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 267.3559 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 270.0325 293.7019)\\\" x=\\\"0 2.28 7.84 12.84 17.84 23.4\\\">lesser</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 296.7659 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 299.4424 293.7019)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57 33.35\\\">amounts</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 337.7969 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 340.4735 293.7019)\\\" x=\\\"0 2.78 8.34 13.9\\\">than</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.9364 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 362.6129 293.7019)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 382.066 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 384.7426 293.7019)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57 38.35\\\">payment,</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 425.8754 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 428.5519 293.7019)\\\" x=\\\"0 5.56 11.12 16.12 21.68\\\">based</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 455.798 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 458.4746 293.7019)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 469.5976 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 472.2742 293.7019)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 491.7273 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 494.4038 293.7019)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 532.7583 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 535.4349 293.7019)\\\" x=\\\"0 5.56 7.84 12.84 15.62 21.18 24.51 29.51\\\">history.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.7249 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 282.3836)\\\" x=\\\"0 7.78 13.34 16.67 19.33 24.89 30.45 36.01 38.29 41.07 46.07 48.73 55.95 58.23 60.51 62.79 65.45 71.01 76.57 79.23 81.51 87.07 89.73 94.73 100.29 105.29 110.85 113.51 116.84 122.4 127.96 133.52 139.08 141.86 144.52 150.08 155.64 157.92 163.48 168.48 173.48 176.14 183.36 188.92 191.58 197.14 202.7 205.48 207.76 210.54 215.54 218.2 223.2 228.76 234.32\\\">Our debits will be in such range, unless we notify you.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 269.0652)\\\" x=\\\"0 6.67 13.89 21.11 23.77 30.99 36.55 42.11 44.39 47.17 52.17 54.83 57.61 63.17 66.5 69.16 76.38 81.94 84.72 90.28 93.61 99.17 104.73 110.29 112.95 119.62 125.18 130.18 138.51 144.07 149.63 152.41 155.07 161.18 166.74 172.3 175.08 177.74 184.41 189.97 195.53 198.19 203.75 209.31 212.09 217.65 223.21 226.54 228.82 233.82 239.38 242.04 247.6 252.6 255.26 258.04 263.6 266.26 271.82 277.38 282.94 285.22 288 290.66 296.22 298.88 304.44 310 312.78 318.34 323.9 326.56 329.34 334.9 338.23 340.89 346.45 352.01 357.01 359.67 363 368.56 371.34 376.9 380.23 385.79 391.35 396.91 399.57 405.13 410.69 415.69 424.02 429.58 435.14 437.92 440.58 443.36 448.92 454.48\\\">ACH Debits for Returned Payment Fee. You authorize us to debit $ 20.00 for an* D E M O *payment fee.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 255.7469)\\\" x=\\\"0 7.22 12.78 15.56 17.84 22.84\\\">Notice</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 69.0783 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 72.6034 255.7469)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 80.9433 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 84.4684 255.7469)\\\" x=\\\"0 6.67 12.23 15.56 17.84 23.4 26.18 28.46 34.02 39.58\\\">Variation.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 126.8317 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 130.3568 255.7469)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 135.9135 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 139.4386 255.7469)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 145.0001 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.5253 255.7469)\\\" x=\\\"0 5.56 11.12 16.68 18.96\\\">debit</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 170.2684 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 173.7935 255.7469)\\\" x=\\\"0 2.78 8.34 10.62 12.9\\\">falls</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 191.6939 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 195.2191 255.7469)\\\" x=\\\"0 5.56 11.12 13.9 18.9 21.18 26.74\\\">outside</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 227.5238 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 231.0489 255.7469)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 244.9503 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 248.4754 255.7469)\\\" x=\\\"0 5 10.56 16.12 21.12 23.4 26.18 28.46 34.02\\\">specified</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 288.0603 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 291.5855 255.7469)\\\" x=\\\"0 3.33 8.89 14.45 20.01 25.57\\\">range,</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.94 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 323.4651 255.7469)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 336.2483 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 339.7734 255.7469)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 353.8359 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 357.3611 255.7469)\\\" x=\\\"0 5.56 13.89 19.45 21.73\\\">email</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 381.3747 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 384.8999 255.7469)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 401.0229 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 404.548 255.7469)\\\" x=\\\"0 5.56 11.12 13.9 16.18 21.18\\\">notice</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 431.2912 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 434.8163 255.7469)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 443.1562 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 446.6813 255.7469)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 460.5827 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 464.1078 255.7469)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 497.4623 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 500.9874 255.7469)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 517.672 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 521.1971 255.7469)\\\" x=\\\"0 5.56 11.12 13.9\\\">date</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 540.66 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 544.1852 255.7469)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 555.3082 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 558.8333 255.7469)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.7249 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 244.4285)\\\" x=\\\"0 5.56 8.34 11.12 16.68 20.01 22.67 29.89 35.45 37.73 42.73 48.29 50.95 58.17 63.73 66.39 73.61 75.89 78.17 80.45 83.11 88.67 94.23 99.79 102.07 104.85 107.51 112.51 118.07 123.07 128.63 131.29 136.85 145.18 150.74 156.3 161.86 164.64 167.42 170.08 176.75 182.31 187.87 190.53 197.75 200.03 202.31 204.59 207.25 212.81 218.37 221.15 223.81 229.37 232.15 234.81 237.09 242.65 248.21 253.21 255.99 258.65 264.21 269.77 272.43 277.43 282.99 285.27 290.83 296.39 301.95 307.51 310.84 313.5 319.06 324.62 329.62 334.62 336.53 339.19 344.75 350.31 353.09 355.37 360.37 365.93\\\">after which we will debit such amount. You will get at least 10 calendar days&apos; notice.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 231.1102)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68\\\">Payment</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 80.1379 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 85.2907 231.1102)\\\" x=\\\"0 7.22 12.78 15.56 21.12 26.12\\\">Dates.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 114.192 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 119.3448 231.1102)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 137.1377 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 142.2905 231.1102)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 28.35 30.63 35.63\\\">authorize</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 183.4868 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 188.6395 231.1102)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.74\\\">debits</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 215.3827 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 220.5354 231.1102)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.6585 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 236.8113 231.1102)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.7028 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 250.8556 231.1102)\\\" x=\\\"0 5.56 8.34 11.12 16.68\\\">after</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 270.8654 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 276.0181 231.1102)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 289.9195 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 295.0722 231.1102)\\\" x=\\\"0 5.56 11.12 13.9 19.46\\\">dates</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.5351 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 324.6879 231.1102)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 336.3578 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 341.5106 231.1102)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 379.865 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 385.0178 231.1102)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29 32.85\\\">provided</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 423.4358 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 428.5885 231.1102)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 436.4303 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 441.5831 231.1102)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 455.4844 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 460.6372 231.1102)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement,</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.3315 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 517.4843 231.1102)\\\" x=\\\"0 5.56 11.12 13.4 18.96 23.96\\\">unless</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 546.4491 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 551.6019 231.1102)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.7249 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 219.7918)\\\" x=\\\"0 5.56 8.34 13.9 19.46 22.79 30.01 32.29 37.29\\\">otherwise</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 83.5315 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 86.8927 219.7918)\\\" x=\\\"0 5.56 7.84 11.17 16.73 21.73\\\">direct</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 111.4044 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 114.7656 219.7918)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 125.3271 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 128.6884 219.7918)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.5302 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 139.8914 219.7918)\\\" x=\\\"0 7.22 10.55 12.83 15.61 17.89 23.45 29.01\\\">writing.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 171.6834 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 175.0446 219.7918)\\\" x=\\\"0 9.44\\\">We</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 190.0446 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 193.4058 219.7918)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 207.4683 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.8296 219.7918)\\\" x=\\\"0 5.56 11.12 16.68 18.96\\\">debit</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 232.5727 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 235.9339 219.7918)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.057 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 250.4182 219.7918)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.3098 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 262.671 219.7918)\\\" x=\\\"0 5.56 8.34 11.12 16.68\\\">after</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 282.6808 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 286.0421 219.7918)\\\" x=\\\"0 5.56 10.56 16.12 19.45\\\">every</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 310.4952 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 313.8564 219.7918)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 352.2109 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 355.5721 219.7918)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29 32.85\\\">provided</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.9901 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 397.3513 219.7918)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 405.1931 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 408.5543 219.7918)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 424.1745 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 427.5357 219.7918)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement;</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 479.23 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 482.5912 219.7918)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29 32.85 38.41\\\">provided,</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 523.7875 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 527.1488 219.7918)\\\" x=\\\"0 5.56 11.12 18.34 23.9 28.9 34.46 37.79\\\">however,</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.7249 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 208.4734)\\\" x=\\\"0 2.78 8.34 13.9\\\">that</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 57.3547 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 60.5776 208.4734)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 73.3608 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 76.5836 208.4734)\\\" x=\\\"0 3.33 8.89 13.89 19.45 22.78 27.78\\\">reserve</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 109.9284 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 113.1512 208.4734)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 127.0526 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 130.2755 208.4734)\\\" x=\\\"0 3.33 5.61 11.17 16.73\\\">right</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 149.7872 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 153.01 208.4734)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 161.3499 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 164.5728 208.4734)\\\" x=\\\"0 5.56 11.12 16.68 18.96\\\">debit</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 186.3159 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 189.5388 208.4734)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 200.6618 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 203.8847 208.4734)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 217.7861 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 221.0089 208.4734)\\\" x=\\\"0 5.56 11.12 16.68 21.68 23.96 29.52\\\">banking</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.0968 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 259.3197 208.4734)\\\" x=\\\"0 5.56 11.12\\\">day</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.4427 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 278.6656 208.4734)\\\" x=\\\"0 2.28 10.61 18.94 24.5 30.06 32.34 37.9 40.68 46.24 48.52\\\">immediately</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 332.191 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 335.4139 208.4734)\\\" x=\\\"0 5.56 8.89 14.45 19.45 25.01 30.57 32.85 38.41\\\">preceding</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 379.3934 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 382.6162 208.4734)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.0694 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 405.2922 208.4734)\\\" x=\\\"0 3.33 8.89 14.45 20.01 22.29 27.85\\\">regular</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 436.4787 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 439.7016 208.4734)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 478.0561 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 481.279 208.4734)\\\" x=\\\"0 5.56 11.12 13.9\\\">date</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 500.7419 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 503.9647 208.4734)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.0233 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 512.2462 208.4734)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.1476 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 529.3704 208.4734)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.7249 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 197.1551)\\\" x=\\\"0 5.56 11.12 13.9 19.46 22.12 24.9 30.46 32.74 35.02 40.02 42.68 48.24 53.8 56.46 62.02 64.68 70.24 75.8 81.36 84.69 90.25 95.81 101.37 106.37 108.65 114.21 119.77 122.43 127.99 133.55 138.55 141.21 144.54 146.82 149.6 155.16 157.94 160.72 163.38 168.94 171.6 177.16 182.72 185 187.28 192.84 198.4 203.4 206.06 211.62 214.95 217.61 224.83 230.39 235.95 240.95 246.51 252.07 257.63 260.29 265.85 271.41 276.41 279.74\\\">date falls on a non-banking day (i.e., a holiday or weekend day).</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 183.8367)\\\" x=\\\"0 7.22 12.78 16.11 19.44 25 30 32.78 35.06 40.62 46.18 51.18 53.96 56.62 63.29 68.85 74.41 77.07 82.63 88.19 90.97 96.53 102.09 105.42 107.7 112.7 118.26 120.92 126.48 131.48 134.14 136.92 142.48 145.14 150.7 156.26 161.82 164.1 166.88 169.54 175.1 180.66 186.22 188.88 193.88 197.21 202.77 208.33 210.61 213.39 216.05 221.05 226.61 232.17 235.5 238.16 243.72 248.72 253.72 259.28 264.84 270.4 273.18 275.84 278.62 284.18 286.84 291.84 297.4 300.73 304.06 309.62 314.62 317.4 320.06 325.62 328.95 332.28 337.84 341.17 346.17\\\">Corrections. You authorize us to debit and credit your* D E M O * correct errors.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 170.5184)\\\" x=\\\"0 6.67 9.45 12.23 17.79 22.79 25.57 27.85 32.85 38.41 41.07 48.29 53.85 56.63 62.19 64.97 67.63 73.74 79.3 84.86 87.52 90.3 93.63 99.19 104.75 109.75 115.31 120.31 123.09 125.37 130.93 136.49 138.4 143.4 146.06 151.62 154.4 157.18 162.74 167.74 170.52 172.8 177.8 183.36 186.02 191.58 197.14 199.92 205.48 208.14 210.42 215.42 218.08 220.86 226.42 231.98 234.64 241.31 246.87 250.2 255.76 261.32 269.65 275.21 280.77 283.55 286.21 293.43 298.99 301.77 307.33 309.99 315.55 318.88 324.44 329.44 331.72 337.28 342.84 348.4 351.06 356.62 362.18 367.74 372.74 378.3\\\">Effective Date. The transaction&apos;s effective date is the Agreement Date provided above.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 157.2)\\\" x=\\\"0 6.67 11.67 16.67 22.23 27.79 33.35 36.13 38.79 44.35 49.91 55.47 58.13 65.35 70.91 76.47 79.25 81.53 87.09 92.65 95.43 98.09 104.76 110.32 115.88 118.54 124.1 129.66 132.44 138 143.56 146.89 149.17 154.17 159.73 162.39 165.17 170.73 176.29 178.95 184.51 190.07 195.63 197.91 200.69 205.69 208.35 211.13 216.69 219.35 222.13 227.69 229.97 234.97 237.63 243.19 248.19 253.19 258.75 264.31 269.87 272.65 275.43 278.09 285.31 290.87 299.2 304.76 310.32 313.65 316.31 320.2 324.09 327.98 331.87 335.76 341.32 346.88 352.44 358 360.66 367.88 373.44 379 381.78 384.06 389.62 395.18 397.84 405.06 410.62 418.95 424.51 430.07 433.4 436.06 439.95 443.84 447.73 451.62 455.51 461.07 466.63 472.19 477.75\\\">Account and Routing. You authorize the debits to this account: Number *****3968 Routing Number *****1451.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 143.8816)\\\" x=\\\"0 7.22 12.78 18.34 23.9 29.46\\\">Change</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 75.7043 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 78.8745 143.8816)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 86.7163 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 89.8865 143.8816)\\\" x=\\\"0 6.67 11.67 16.67 22.23 27.79 33.35\\\">Account</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 126.0193 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 129.1895 143.8816)\\\" x=\\\"0 2.78 8.34 11.12 16.68 20.01 28.34 33.9 36.68 38.96 44.52 50.08\\\">Information:</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 182.0508 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 185.221 143.8816)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 203.0139 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 206.1841 143.8816)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 28.35 30.63 35.63\\\">authorize</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.3804 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 250.5506 143.8816)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 261.1121 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 264.2823 143.8816)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 272.6222 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 275.7923 143.8816)\\\" x=\\\"0 5.56 11.12 16.68 18.96\\\">debit</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 297.5355 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 300.7057 143.8816)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 316.8287 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 319.9989 143.8816)\\\" x=\\\"0 5.56 11.12\\\">new</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.3437 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 341.5138 143.8816)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.68 32.24\\\">account</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 376.5382 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 379.7084 143.8816)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 395.8315 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 399.0017 143.8816)\\\" x=\\\"0 5.56 7.84 12.84\\\">give</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 417.405 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 420.5752 143.8816)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 431.1367 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 434.3069 143.8816)\\\" x=\\\"0 2.28 7.84 10.62 16.18 19.51 27.84 33.4 36.18 38.46 44.02\\\">information</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 483.8918 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 487.062 143.8816)\\\" x=\\\"0 2.78 8.34 11.67\\\">for.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.5103 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 504.6805 143.8816)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 510.2371 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 513.4073 143.8816)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.5303 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 532.7005 143.8816)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.68 32.24\\\">account</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.7249 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 132.5633)\\\" x=\\\"0 2.28 7.28 9.94 13.27 18.83 21.11 26.67 31.67 34.45 40.01 45.57 48.23 55.45 61.01 63.67 70.89 73.17 75.45 77.73 80.39 85.95 91.51 97.07 99.35 102.13 104.79 110.35 115.91 120.91 123.57 129.13 134.13 139.13 144.69 150.25 155.81 158.59 161.25 168.47 174.03 176.69 182.25 187.81 192.81 198.37 201.03 206.59 212.15 214.81 217.59 219.87 222.15 227.71\\\">is re* D E M O *ill debit any account we have on file.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 119.2449)\\\" x=\\\"0 6.67 9.45 15.01 20.57 23.23 29.9 35.46 40.46 48.79 54.35 59.91 62.69 67.69 70.47 73.13 79.8 85.36 90.92 93.58 101.91 107.47 112.47 115.13 120.13 122.91 128.47 134.03 136.69 142.25 147.81 152.81 161.14 166.7 172.26 175.04 177.7 183.26 186.04 188.7 190.98 196.54 202.1 207.1 209.88 212.54 215.32 220.88 224.21 229.77 235.33 237.99 243.55 249.11 254.67 259.67 261.95 267.51 273.07 275.73 281.29 286.85 291.85 296.85 299.51 305.07 310.63 313.41 318.97 322.3 327.86 330.52 336.08 338.74 344.3 349.86 354.86 363.19 368.75 374.31 377.09\\\">Stop Payments. You may stop payment at least three banking days before a payment.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 105.9266)\\\" x=\\\"0 7.22 12.78 17.78 23.34 28.34 33.9 36.68 38.96 44.52 50.08\\\">Revocation,</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 93.5412 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 97.2277 105.9266)\\\" x=\\\"0 7.22 12.78 18.34 23.34 28.9 31.18 33.46 39.02 41.8 44.08 49.64 55.2\\\">Cancellation,</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 155.216 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 158.9024 105.9266)\\\" x=\\\"0 6.11 11.67 15 23.33 25.61 31.17 36.73 39.51 41.79 47.35 52.91\\\">Termination.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 214.5958 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 218.2823 105.9266)\\\" x=\\\"0 6.11 11.67 13.95\\\">This</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 237.2325 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 240.9189 105.9266)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 28.35 30.63 35.63 41.19 43.97 46.25 51.81\\\">authorization</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 298.2968 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 301.9833 105.9266)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.8\\\">applies</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 333.7899 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 337.4764 105.9266)\\\" x=\\\"0 5.56 11.12 13.9 16.18\\\">until</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.9383 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 359.6248 105.9266)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.7478 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 379.4343 105.9266)\\\" x=\\\"0 3.33 8.89 13.89 19.45 24.45\\\">revoke</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 409.449 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 413.1354 105.9266)\\\" x=\\\"0 2.28 5.06\\\">it.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 420.9723 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 424.6588 105.9266)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 442.4518 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 446.1382 105.9266)\\\" x=\\\"0 8.33 13.89 18.89\\\">must</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.8082 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 471.4946 105.9266)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29\\\">provide</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 504.3511 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 508.0375 105.9266)\\\" x=\\\"0 5.56\\\">at</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 516.3774 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 520.0639 105.9266)\\\" x=\\\"0 2.28 7.84 13.4 18.4\\\">least</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 541.2455 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 544.932 105.9266)\\\" x=\\\"0 2.78 8.34 11.67 17.23\\\">three</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.7249 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 94.6082)\\\" x=\\\"0 5.56 11.12 16.12 21.12 23.03 25.69 31.25 36.81 39.59 41.87 46.87 52.43 55.09 57.87 63.43 66.09 71.09 76.65 82.21 87.21 92.77 95.05 97.83 100.49 107.71 113.27 115.55 117.83 120.49 126.05 128.83 131.49 134.82 140.38 145.94 151.5 154.83 157.49 163.05 168.61 174.17 177.5 183.06 188.62 194.18 199.74 202.4 207.96 210.74 213.4 215.68 221.24 226.8 231.8 234.58 237.24 240.02 245.58 248.91 254.47 260.03 262.69 268.25 273.81 278.81 283.81 286.47 292.03 297.59 300.37 305.93 309.26 314.82 317.48 320.26 325.82 331.38 334.04 339.6 342.93 348.49 354.05 359.61 364.61 370.17 375.73 378.39 383.95 386.73 389.51 395.07 400.07 402.85 405.13 410.13 415.69 418.35 423.91 429.47 432.25 437.81 440.47 446.03 448.81 451.47 454.25 459.81 465.37 468.03 470.81 476.37 479.7 488.03 490.31 495.87 501.43 504.21 506.49 512.05 517.61\\\">days&apos; notice to cancel. Call at (100) 000-0006 at least three days before the proposed effective date of the termination.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 81.2898)\\\" x=\\\"0 7.78 10.56 16.12 21.68 25.01 27.67 34.89 40.45 46.01 51.57 57.13 62.69 67.69 70.47 73.13 80.35 85.91 88.69 90.97 93.75 98.75 101.41 106.97 111.97 114.63 120.19 122.97 125.63 127.91 133.47 139.03 144.03 146.81 149.47 152.25 154.53 159.53 165.09 167.75 173.31 178.87 183.87 186.15 191.71 197.27 202.27 207.27 209.93 215.49 221.05 226.05 231.05 233.71 239.27 244.83 247.61 253.17 256.5 262.06 264.72 267.5 273.06 278.62 281.28 286.84 292.4 297.4 300.18 302.84 308.4 310.68 312.96 315.24 317.52 323.08 328.64 331.3 336.86 342.42 345.2 350.76 353.42 355.7 358.48 361.14 366.14 371.7 377.26 380.59 383.25 388.81 393.81 398.81 404.37 409.93 415.49 418.27 420.93 423.21 428.77 431.55 437.11 440.44 448.77 454.33 457.11 459.39 464.95 470.51 473.17 478.17 483.73 489.29 494.85 500.41 505.97 510.97\\\">Other Changes. Notify us at least five business days before the next billing date if your account information changes.</text></g><clipPath id=\\\"clip2-4\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip2-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.775 345.3758 L 573.625 345.3758 L 573.625 344.3758 L 34.775 344.3758 L 34.775 345.3758 z \\\"/><path clip-path=\\\"url(#clip2-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.625 344.3758 L 573.625 344.3758 L 573.625 329.0574 L 572.625 329.0574 L 572.625 344.3758 z \\\"/><path clip-path=\\\"url(#clip2-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.775 344.3758 L 35.775 344.3758 L 35.775 329.0574 L 34.775 329.0574 L 34.775 344.3758 z \\\"/><path clip-path=\\\"url(#clip2-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.775 329.0574 L 573.625 329.0574 L 573.625 328.0574 L 34.775 328.0574 L 34.775 329.0574 z \\\"/><path clip-path=\\\"url(#clip2-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.775 79.6902 L 573.625 79.6902 L 573.625 78.6902 L 34.775 78.6902 L 34.775 79.6902 z \\\"/><path clip-path=\\\"url(#clip2-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.625 328.0574 L 573.625 328.0574 L 573.625 79.6902 L 572.625 79.6902 L 572.625 328.0574 z \\\"/><path clip-path=\\\"url(#clip2-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.775 328.0574 L 35.775 328.0574 L 35.775 79.6902 L 34.775 79.6902 L 34.775 328.0574 z \\\"/><g clip-path=\\\"url(#clip2-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 36.5264)\\\" x=\\\"0 6.498 11.997 14.391 16.785 21.789 26.793 29.295 34.299 39.303 44.307 504 506.3906 508.7812 511.1719 513.5625 515.9531 518.3438 520.7344 523.125 525.5156\\\">UT  07/2019          </text></g><g clip-path=\\\"url(#clip2-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 26.3398)\\\" x=\\\"0 6.003 11.007 16.011 21.015\\\">Page </text></g><g clip-path=\\\"url(#clip2-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 55.8097 26.3398)\\\" x=\\\"0\\\">3</text></g><g clip-path=\\\"url(#clip2-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.815 26.3398)\\\" x=\\\"0 2.394 7.398 9.9\\\"> of </text></g><g clip-path=\\\"url(#clip2-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 73.1021 26.3398)\\\" x=\\\"0\\\">7</text></g><g clip-path=\\\"url(#clip2-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#d9d9d9\\\" style=\\\"font-family:f2-0; font-size:54pt; white-space:pre\\\" transform=\\\"matrix(0.707 0.707 0.707 -0.707 135.6027 198.5094)\\\" x=\\\"0 56.016 96.048 136.08 176.112 216.144 236.16 284.184 324.216 344.232 364.248 416.232 456.264 480.24\\\">Qoppa Software</text></g><g clip-path=\\\"url(#clip2-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#002ba6\\\" style=\\\"font-family:f2-0; font-size:9pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.932 772)\\\" x=\\\"0 9.336 16.008 22.68 29.352 36.024 39.36 47.364 54.036 57.372 60.708 69.372 76.044 80.04 86.712 90.048 94.044 97.38 104.712 111.384 115.38 118.716 126.72 132.72 139.392 142.056 148.728 155.4 158.736 161.4 168.072 174.744 178.08 187.416 194.088 196.752 202.752 206.088 210.084 213.42 220.092 223.428 226.764 233.436 239.436 242.772 246.108 249.444 258.108 266.772 275.436 278.772 285.444 292.116 298.788 305.46 312.132 315.468 321.468 328.14\\\">Qoppa Software - For Evaluation Only - https://www.qoppa.com</text></g></g></svg></svg></g></svg><br>\\n<?xml version='1.0' encoding='UTF-8'?><svg id=\\\"qoppa_document\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" version=\\\"1.1\\\" xmlns=\\\"http://www.w3.org/2000/svg\\\" xmlns:xlink=\\\"http://www.w3.org/1999/xlink\\\"><!-- jPDFWeb v2019R1.03 - Demo Version --><style>title p { display: block; }</style><g id=\\\"qoppa_viewxform\\\" transform=\\\"matrix(1 0 0 1 0 0)\\\"><style type=\\\"text/css\\\">@font-face {font-family:f3-0;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f3-1;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f3-2;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}</style><svg id=\\\"qoppa_page_p3\\\" class=\\\"qoppa_page\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\"><rect class=\\\"qoppa_pageborder\\\" x=\\\"0.5pt\\\" y=\\\"0.5pt\\\" width=\\\"611pt\\\" height=\\\"791pt\\\" fill=\\\"none\\\" /><svg class=\\\"qoppa_pagecontents\\\" x=\\\"0pt\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" viewBox=\\\"0 0 612 792\\\" ><g class=\\\"qoppa_contentstream\\\" transform=\\\"matrix(1 0 0 -1 0 792)\\\" fill=\\\"black\\\" stroke=\\\"black\\\" stroke-width=\\\"1\\\" stroke-linecap=\\\"butt\\\" stroke-linejoin=\\\"miter\\\" stroke-miterlimit=\\\"10\\\"><clipPath id=\\\"clip3-1\\\"><path d=\\\"M 35 730 L 574 730 L 574 770 L 35 770 L 35 730 z \\\"/></clipPath><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 757.4812)\\\" x=\\\"0 6.6699 11.6699 16.6699 22.2314 27.793 35.0146 37.2949 42.8565 48.418 53.9795 62.3096 67.8711 73.4326 76.2109 81.2109\\\">Acknowledgments.</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 124.6643 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 127.3205 757.4812)\\\" x=\\\"0 6.6699 12.2314\\\">You</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 145.1135 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 147.7697 757.4812)\\\" x=\\\"0 3.3301 8.8916 14.4531\\\">read</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 167.7844 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 170.4406 757.4812)\\\" x=\\\"0 2.7783 8.3398 10.6201\\\">this</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 186.0607 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 188.717 757.4812)\\\" x=\\\"0 5.5615 11.1231 13.9014 19.4629 25.0244 28.3545 30.6348 35.6348 41.1963 43.9746 46.2549 51.8164\\\">authorization</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 246.0949 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 248.7512 757.4812)\\\" x=\\\"0 2.2803\\\">in</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.593 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 259.2492 757.4812)\\\" x=\\\"0 5.5615 8.8916 11.1719 16.7334 19.5117\\\">print,</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.5393 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 284.1955 757.4812)\\\" x=\\\"0 5.5615\\\">on</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 295.3186 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 297.9748 757.4812)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 303.5363 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 306.1926 757.4812)\\\" x=\\\"0 5 10.5615 18.8916 24.4531 30.0146 32.793 38.3545\\\">computer</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 347.8771 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 350.5334 757.4812)\\\" x=\\\"0 5 10 13.3301 18.8916 24.4531 30.0147\\\">screen,</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.3264 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 385.9826 757.4812)\\\" x=\\\"0 5.5615\\\">or</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 394.8742 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 397.5305 757.4812)\\\" x=\\\"0 5.5615 8.3398 13.9014 19.4629\\\">other</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 420.3234 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 422.9797 757.4812)\\\" x=\\\"0 5 7.2803 12.2803 17.8418 23.4033\\\">visual</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 448.6633 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 451.3195 757.4812)\\\" x=\\\"0 5.5615 7.8418 12.8418 18.4033 20.6836 26.2451 31.2451\\\">display.</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 485.343 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 487.9992 757.4812)\\\" x=\\\"0 6.6699 12.2314\\\">You</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 505.7922 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 508.4484 757.4812)\\\" x=\\\"0 5.5615 10.5615 15.5615 21.1231 26.6846 33.9062 36.1865 41.7481 47.3096 52.8711\\\">acknowledge</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 566.8811 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 746.1629)\\\" x=\\\"0 5.5615 11.1231\\\">and</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 57.3596 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 60.0158 746.1629)\\\" x=\\\"0 5.5615 11.123 14.4531 20.0146\\\">agree</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 85.592 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 88.2482 746.1629)\\\" x=\\\"0 2.7783\\\">to</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 96.5881 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 99.2443 746.1629)\\\" x=\\\"0 2.7783 8.3398\\\">the</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 113.1457 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 115.802 746.1629)\\\" x=\\\"0 2.7783 8.3398 10.6201 12.9004 18.4619 25.6836 27.9639 33.5254 39.0869\\\">following:</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 157.6672 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 160.3234 746.1629)\\\" x=\\\"0 2.7783 8.3398 10.6201\\\">this</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 175.9436 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 178.5998 746.1629)\\\" x=\\\"0 6.6699 13.8916\\\">ACH</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 199.7131 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 202.0693 746.1629)\\\" x=\\\"0 7.2217 12.7832 18.3447 20.625\\\">Debit</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.4727 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 227.8289 746.1629)\\\" x=\\\"0 6.6699 12.2314 15.0098 20.5713 26.1328 29.4629 31.7432 36.7432 42.3047 45.083 47.3633 52.9248\\\">Authorization</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 286.3152 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 288.6715 746.1629)\\\" x=\\\"0 2.2803\\\">is</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 295.9518 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 298.308 746.1629)\\\" x=\\\"0 5.5615 11.123\\\">not</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.2094 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 314.5656 746.1629)\\\" x=\\\"0 5.5615\\\">an</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 325.6887 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 328.0449 746.1629)\\\" x=\\\"0 2.2803 7.8418 12.8418 15.6201 18.9502 24.5117 32.8418 38.4033 43.9648\\\">instrument</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 374.7881 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 377.1443 746.1629)\\\" x=\\\"0 5.5615 11.123 16.123 21.6846 25.0146 30.5762 36.1377\\\">governed</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 418.8436 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 421.1998 746.1629)\\\" x=\\\"0 5.5615\\\">by</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 431.7613 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 434.1176 746.1629)\\\" x=\\\"0 6.6699 10 12.7783 15.0586 20.0586 22.3389\\\">Article</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 462.018 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 464.3742 746.1629)\\\" x=\\\"0\\\">3</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 469.9357 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 472.292 746.1629)\\\" x=\\\"0 5.5615\\\">of</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 480.6318 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 482.9881 746.1629)\\\" x=\\\"0 2.7783 8.3398\\\">the</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 496.8895 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 499.2457 746.1629)\\\" x=\\\"0 7.2217 12.7832 15.0635 17.8418 23.4033 26.7334\\\">Uniform</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 734.8445)\\\" x=\\\"0 7.2217 12.7832 21.1133 29.4434 35.0049 38.335 43.335 45.6152 51.1768\\\">Commercial</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 94.132 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 96.4883 734.8445)\\\" x=\\\"0 7.2217 12.7832 18.3447 23.9062\\\">Code.</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 123.1728 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 125.5291 734.8445)\\\" x=\\\"0 6.6699 10 12.2803 17.8418\\\">Print</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.1492 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.5055 734.8445)\\\" x=\\\"0 5.5615 11.1231\\\">and</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 165.19 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 167.5463 734.8445)\\\" x=\\\"0 3.3301 8.8916 11.6699 17.2314 19.5117\\\">retain</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 192.6195 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 194.9758 734.8445)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 200.5373 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 202.8936 734.8445)\\\" x=\\\"0 5.5615 11.123 14.4531\\\">hard</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 222.9082 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 225.2645 734.8445)\\\" x=\\\"0 5 10.5615 16.123\\\">copy</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 246.3875 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 248.7437 734.8445)\\\" x=\\\"0 5.5615\\\">or</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.6353 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 259.9916 734.8445)\\\" x=\\\"0 5.5615 7.8418 13.4033 18.4033 21.1816 24.5117 30.0733 35.6348 37.915\\\">electronic</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.9066 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 305.5629 734.8445)\\\" x=\\\"0 5 10.5615 16.123\\\">copy</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 326.6859 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 329.3422 734.8445)\\\" x=\\\"0 5.5615\\\">of</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 337.682 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 340.3383 734.8445)\\\" x=\\\"0 2.7783 8.3398 10.6201\\\">this</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.9584 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 358.6147 734.8445)\\\" x=\\\"0 6.6699 13.8916\\\">ACH</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 379.7279 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 382.0842 734.8445)\\\" x=\\\"0 7.2217 12.7832 18.3447 20.625\\\">Debit</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 405.4875 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.8438 734.8445)\\\" x=\\\"0 6.6699 12.2314 15.0098 20.5713 26.1328 29.4629 31.7432 36.7432 42.3047 45.083 47.3633 52.9248 58.4863\\\">Authorization.</text></g><clipPath id=\\\"clip3-2\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip3-2)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.775 770.2 L 573.625 770.2 L 573.625 769.2 L 34.775 769.2 L 34.775 770.2 z \\\"/><path clip-path=\\\"url(#clip3-2)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.775 731.2449 L 573.625 731.2449 L 573.625 730.2449 L 34.775 730.2449 L 34.775 731.2449 z \\\"/><path clip-path=\\\"url(#clip3-2)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.625 769.2 L 573.625 769.2 L 573.625 731.2449 L 572.625 731.2449 L 572.625 769.2 z \\\"/><path clip-path=\\\"url(#clip3-2)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.775 769.2 L 35.775 769.2 L 35.775 731.2449 L 34.775 731.2449 L 34.775 769.2 z \\\"/><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 718.5262)\\\" x=\\\"0 7.22 15 22.22 25.55 34.99 41.66 44.44 51.11 57.78 65 67.78 70.44 79.88 85.44 88.1 93.66 99.22 101.88 107.44 113 115.78 118.44 125.66 131.22 133.5 138.5 144.06 146.72 152.28 157.84 161.17 163.83 167.16 169.44 175 180.56 183.34 188.34 191 196.56 199.89 202.55 205.88 211.44 219.77 225.33 230.89 233.17 238.73 243.73 246.39 251.95 257.51 263.07 268.63 271.96 274.62 277.4 282.96 285.24 290.24 292.9 299.57 305.13 308.46 314.02 319.58 327.91 333.47 339.03 341.81 344.47 350.03 355.03 357.69 360.47 366.03 368.31 370.59 372.87 378.43 383.99 386.65 389.43 394.99 397.65 403.21 408.21 413.77 417.1 422.1 424.38 429.38 434.94 437.6 440.38 445.94 451.5 459.83 462.49 468.05 470.83 473.49 479.05 484.61 489.61 492.27 495.05 497.33 505.66 511.22\\\">NON-WAIVER. We do not waive our rights or remedies under this Agreement by failing to exercise them at any time.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 705.2078)\\\" x=\\\"0 7.22 15 23.33 31.66 38.88 46.1 48.88 56.1 62.77 68.88 71.66 78.88 86.66 89.32 98.76 101.54 107.65 114.87 117.53 124.2 131.98 139.2 141.98 144.64 151.86 158.53 164.09 169.65 172.31 179.53 186.2 193.42 201.2 208.42 215.64 218.42 225.64 233.42 236.2 238.86 242.19 247.75 253.31 258.87 262.2 264.86 270.42 275.98 281.54 284.87 290.43 295.99 301.55\\\">COMMUNICATING WITH YOU; CALL RECORDING: (100) 000-0006</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 691.8895)\\\" x=\\\"0 6.67 13.89 20 22.78 30\\\">ENTIRE</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 69.7699 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 74.2589 691.8895)\\\" x=\\\"0 6.67 14.45 21.67 28.34 35.01 43.34 50.01 57.23 63.34\\\">AGREEMENT,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 140.377 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 144.866 691.8895)\\\" x=\\\"0 7.22\\\">NO</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 159.866 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 164.3549 691.8895)\\\" x=\\\"0 6.67 13.89 21.11 23.89 30 32.78 40.56 47.78 54.45\\\">ADDITIONAL</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 224.3647 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 228.8536 691.8895)\\\" x=\\\"0 6.67 13.89 21.67 30 32.78 39.45 46.12 52.79\\\">PROMISES,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 284.42 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 288.9089 691.8895)\\\" x=\\\"0 9.44 16.66 19.44 25.55 31.66 38.33\\\">WRITTEN</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 334.4558 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.9447 691.8895)\\\" x=\\\"0 6.67 13.89\\\">AND</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 360.058 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 364.547 691.8895)\\\" x=\\\"0 6.67 9.45 17.23 24.45 31.12\\\">SIGNED</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.8868 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.3757 691.8895)\\\" x=\\\"0 7.22 14.44 21.11 28.33 36.11 42.78\\\">CHANGES</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.8289 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 461.3178 691.8895)\\\" x=\\\"0 7.78 15 20.56 27.23\\\">ONLY.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 491.3276 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 495.8165 691.8895)\\\" x=\\\"0 6.11 11.67 13.95\\\">This</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 514.7667 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 519.2556 691.8895)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 680.5711)\\\" x=\\\"0 2.78 8.34 13.9 19.46 22.24 27.8 33.36\\\">together</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 69.7943 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 72.8324 680.5711)\\\" x=\\\"0 7.22 9.5 12.28\\\">with</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 90.6742 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 93.7124 680.5711)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 107.6137 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 110.6518 680.5711)\\\" x=\\\"0 5.56 8.34 13.9 19.46\\\">other</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 133.4448 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 136.4829 680.5711)\\\" x=\\\"0 5.56 11.12 16.12 21.68 30.01 35.57 41.13 43.91\\\">documents</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 185.3989 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 188.437 680.5711)\\\" x=\\\"0 3.33 8.89 11.67 17.23 20.56 23.89 29.45\\\">referred</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 223.4517 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 226.4898 680.5711)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 234.8296 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 237.8677 680.5711)\\\" x=\\\"0 5.56 11.12 14.45 20.01 22.29 27.85\\\">herein,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 268.5025 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 271.5406 680.5711)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24 28.52 34.08\\\">including</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 311.189 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 314.2271 680.5711)\\\" x=\\\"0 5.56 11.12\\\">but</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 328.1285 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 331.1666 680.5711)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 345.068 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 348.1061 680.5711)\\\" x=\\\"0 2.28 4.56 12.89 15.17 17.95 23.51\\\">limited</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 377.1783 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 380.2165 680.5711)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.5563 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 391.5944 680.5711)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 411.0475 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 414.0856 680.5711)\\\" x=\\\"0 5.56 11.12 14.45 19.45 25.01 30.57 35.57\\\">purchase</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 455.2233 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 458.2614 680.5711)\\\" x=\\\"0 3.33 8.89 13.89 19.45 21.73 27.29\\\">receipt</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 488.3347 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 491.3728 680.5711)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 508.0574 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 511.0955 680.5711)\\\" x=\\\"0 2.78 5.06 10.62 16.18\\\">final</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.5574 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 532.5955 680.5711)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 669.2527)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 66.4545 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 69.6146 669.2527)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 86.2991 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 89.4592 669.2527)\\\" x=\\\"0 5 10 15.56 21.12 26.68 32.24 34.52 40.08\\\">schedule,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 132.3254 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 135.4855 669.2527)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 142.7658 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 145.9259 669.2527)\\\" x=\\\"0 5.56 11.12\\\">our</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.379 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 163.5391 669.2527)\\\" x=\\\"0 5.56 11.12 13.9 16.18 19.51\\\">entire</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 188.6123 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 191.7724 669.2527)\\\" x=\\\"0 5.56 11.12 14.45 20.01 25.57 33.9 39.46 45.02 47.8\\\">agreement.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 242.3583 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 245.5184 669.2527)\\\" x=\\\"0 9.44\\\">We</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 260.5184 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 263.6785 669.2527)\\\" x=\\\"0 5.56 11.12 16.12\\\">have</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 285.363 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 288.5231 669.2527)\\\" x=\\\"0 8.33 13.89 19.45\\\">made</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 313.5378 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 316.6978 669.2527)\\\" x=\\\"0 5.56\\\">no</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 327.8209 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 330.981 669.2527)\\\" x=\\\"0 5.56 8.89 14.45 22.78 25.06 30.06 35.62\\\">promises</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.606 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 374.766 669.2527)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.1059 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 386.266 669.2527)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.389 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 405.5491 669.2527)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.4504 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 422.6105 669.2527)\\\" x=\\\"0 5 10.56 16.12 18.9 24.46 26.74 32.3 37.86\\\">contained</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.0383 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 469.1983 669.2527)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 477.0401 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 480.2002 669.2527)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 495.8203 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 498.9804 669.2527)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 547.8964 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 551.0565 669.2527)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.9481 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 563.1082 669.2527)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 657.9344)\\\" x=\\\"0 5 10.56 15.56 21.12 23.78 29.34 32.12 37.68 43.24 46.57 49.23 54.79 60.35 65.35 70.91 79.24 84.8 90.36 93.14 98.14 100.92 103.58 110.25 115.81 120.81 123.47 128.47 134.03 139.59 145.15 150.71 156.27 158.93 161.71 167.27 169.93 172.71 178.27 180.55 185.55 188.21 194.88 200.44 203.77 209.33 214.89 223.22 228.78 234.34 237.12 239.78 248.11 253.67 258.67 261.45 264.11 269.67 275.23 277.89 285.11 288.44 290.72 293.5 296.28 301.84 307.4 310.06 315.62 321.18 326.74 329.4 334.4 336.68 342.24 347.8 353.36 358.92 361.58 367.14 372.14 374.8 379.8 385.36 390.92 393.58 399.14 404.7 410.26 412.92 418.48 423.48\\\">such other documents. Any change to this Agreement must be written and signed by you and us.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 644.616)\\\" x=\\\"0 7.22 14.44 21.11 27.22 35 43.33 50\\\">CUSTOMER</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 90.3217 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 93.5458 644.616)\\\" x=\\\"0 8.33 16.11 23.33 26.11 32.22 35 41.67\\\">MODIFIED</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 142.4325 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 145.6566 644.616)\\\" x=\\\"0 6.67 13.34 20.01 28.34 35.01 42.23\\\">PAYMENT</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 193.9964 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 197.2205 644.616)\\\" x=\\\"0 7.22 13.89 20 26.67\\\">DATES</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 230.5603 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 233.7844 644.616)\\\" x=\\\"0 6.67 13.89\\\">AND</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 254.8977 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 258.1218 644.616)\\\" x=\\\"0 6.11 13.33 20 27.78 35 41.67 48.89 56.11 62.78\\\">FREQUENCY.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 323.6833 644.616)\\\" x=\\\"0 3.2241\\\">  </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 330.1315 644.616)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 347.3629 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 350.587 644.616)\\\" x=\\\"0 5.56 11.12 13.9 19.46\\\">dates</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.0499 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 378.274 644.616)\\\" x=\\\"0 2.78 8.34 11.67\\\">for,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 392.7222 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 395.9463 644.616)\\\" x=\\\"0 2.78 6.11 11.67 17.23 22.79 28.35 33.91 38.91\\\">frequency</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 439.8623 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 443.0864 644.616)\\\" x=\\\"0 5.56 8.34\\\">of,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.2046 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 457.4286 644.616)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57\\\">number</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 491.3349 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 494.559 644.616)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 502.8988 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 506.1229 644.616)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 522.8075 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 526.0316 644.616)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.386 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 562.6101 644.616)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 633.2977)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 68.1781 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 72.0521 633.2977)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46\\\">Payments</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 116.515 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 120.389 633.2977)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 128.2308 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 132.1048 633.2977)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 147.7249 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 151.5989 633.2977)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 200.5149 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 204.3889 633.2977)\\\" x=\\\"0 5.56 8.89\\\">are</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 218.842 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 222.716 633.2977)\\\" x=\\\"0 5.56 11.12 16.12 21.68\\\">based</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 249.9621 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 253.8361 633.2977)\\\" x=\\\"0 5.56 11.12 16.68\\\">upon</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.0822 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 279.9562 633.2977)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 293.8575 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 297.7315 633.2977)\\\" x=\\\"0 5.56 11.12 16.12 21.68 27.24\\\">payday</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.9776 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 333.8516 633.2977)\\\" x=\\\"0 2.28 7.84 10.62 16.18 19.51 27.84 33.4 36.18 38.46 44.02\\\">information</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.4366 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 387.3105 633.2977)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.4336 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.3076 633.2977)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29 32.85\\\">provided</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 445.7255 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 449.5995 633.2977)\\\" x=\\\"0 7.22 9.5 12.28\\\">with</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.4413 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 471.3153 633.2977)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 490.7684 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 494.6424 633.2977)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 34.58 36.86 42.42 47.98\\\">application.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 545.409 633.2977)\\\" x=\\\"0 3.874\\\">  </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.157 633.2977)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 621.9793)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 51.9916 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 55.3463 621.9793)\\\" x=\\\"0 5 10.56 16.12 18.9 24.46 29.46\\\">contact</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 87.5875 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 90.9422 621.9793)\\\" x=\\\"0 5.56 11.12\\\">our</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 105.3953 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 108.75 621.9793)\\\" x=\\\"0 5 10.56 15.56 18.34 23.9 32.23 37.79\\\">customer</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 149.873 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 153.2277 621.9793)\\\" x=\\\"0 5 10.56 13.89 18.89 21.17 26.17\\\">service</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 184.9611 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 188.3158 621.9793)\\\" x=\\\"0 5.56 11.12 16.68 22.24 25.57 28.35 36.68 42.24 47.8\\\">department</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.9017 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 242.2564 621.9793)\\\" x=\\\"0 5.56 8.89\\\">or,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 253.9263 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 257.281 621.9793)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.3396 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 265.6942 621.9793)\\\" x=\\\"0 5.56 10.56 16.12 18.4 20.68 26.24 31.8 34.08\\\">available</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 305.3427 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 308.6973 621.9793)\\\" x=\\\"0 5.56 10.56\\\">use</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 324.8204 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 328.1751 621.9793)\\\" x=\\\"0 5.56 11.12 13.9 19.46 27.79 33.35 36.13 41.69\\\">automated</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.4309 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 378.7856 621.9793)\\\" x=\\\"0 8.33 13.89 19.45 25.01 30.01\\\">means,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 411.5786 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 414.9332 621.9793)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.9918 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 423.3465 621.9793)\\\" x=\\\"0 5.56 10.56 16.12 18.4 20.68 26.24 31.8 34.08 39.64\\\">available,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 465.7733 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 469.128 621.9793)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 477.4678 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 480.8225 621.9793)\\\" x=\\\"0 3.33 8.89 14.45 20.01 25.57 30.57\\\">request</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 514.177 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 517.5316 621.9793)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 523.0932 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 526.4478 621.9793)\\\" x=\\\"0 5 10.56 16.12 21.68 27.24\\\">change</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.2555 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 562.6101 621.9793)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 610.6609)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.0014 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 51.6173 610.6609)\\\" x=\\\"0 5 10 15.56 21.12 26.68 32.24 34.52 40.08\\\">scheduled</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 97.2667 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 101.8826 610.6609)\\\" x=\\\"0 5.56 11.12 13.9 19.46\\\">dates</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 126.3454 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 130.9613 610.6609)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 142.6313 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 147.2471 610.6609)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 163.9317 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 168.5476 610.6609)\\\" x=\\\"0 2.78 6.11 11.67 17.23 22.79 28.35 33.91 38.91\\\">frequency</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 212.4636 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 217.0795 610.6609)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.4193 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 230.0352 610.6609)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 265.1134 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 269.7292 610.6609)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46 44.46\\\">Payments.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 316.9705 610.6609)\\\" x=\\\"0 4.6159\\\">  </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 326.2022 610.6609)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 331.7589 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 336.3748 610.6609)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 349.158 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 353.7739 610.6609)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.68\\\">accept</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.2367 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 387.8526 610.6609)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.4142 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 398.03 610.6609)\\\" x=\\\"0 5 10.56 16.12 21.68 27.24\\\">change</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.8377 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 435.4535 610.6609)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 443.2953 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 447.9112 610.6609)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 461.8126 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 466.4285 610.6609)\\\" x=\\\"0 5 10 15.56 21.12 26.68 32.24 34.52 40.08\\\">scheduled</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.0779 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 516.6938 610.6609)\\\" x=\\\"0 5.56 11.12 13.9 19.46\\\">dates</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 541.1567 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 545.7726 610.6609)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 557.4425 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 562.0584 610.6609)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 599.3426)\\\" x=\\\"0 2.78 6.11 11.67 17.23 22.79 28.35 33.91 38.91\\\">frequency</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 77.016 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 80.7576 599.3426)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 89.0974 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 92.839 599.3426)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 127.9171 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 131.6587 599.3426)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46 44.46\\\">Payments,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 178.8999 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 182.6415 599.3426)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 196.5429 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 200.2844 599.3426)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.6389 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 237.3805 599.3426)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.7204 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 249.4619 599.3426)\\\" x=\\\"0 5.56 11.12 16.12\\\">each</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 271.1465 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 274.8881 599.3426)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 309.9662 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 313.7078 599.3426)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68\\\">Payment</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 353.1707 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 356.9123 599.3426)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 370.9748 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 374.7163 599.3426)\\\" x=\\\"0 5.56 11.12 13.9 19.46 27.79 33.35 36.13 38.41 43.41 48.97 51.25 53.53\\\">automatically</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 433.2515 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 436.9931 599.3426)\\\" x=\\\"0 5.56\\\">be</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 448.1161 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 451.8577 599.3426)\\\" x=\\\"0 8.33 13.89 19.45 21.73 24.51 26.79 32.35\\\">modified</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.7727 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 493.5143 599.3426)\\\" x=\\\"0 5\\\">so</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 504.0758 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 507.8174 599.3426)\\\" x=\\\"0 2.78 8.34 13.9\\\">that</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 524.4971 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 528.2387 599.3426)\\\" x=\\\"0 2.78 8.34 13.9\\\">that</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 544.9184 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 548.6599 599.3426)\\\" x=\\\"0 6.11 11.67 14.45 20.01\\\">Total</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 588.0242)\\\" x=\\\"0 7.22 12.78 17.78 20.56\\\">Cost,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 56.4398 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 60.6221 588.0242)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 77.3067 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.489 588.0242)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 95.3903 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 99.5726 588.0242)\\\" x=\\\"0 5.56 11.12 14.45 16.73 22.29\\\">period</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 127.4291 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 131.6113 588.0242)\\\" x=\\\"0 5.56 10.56 16.12\\\">over</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 151.0645 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 155.2467 588.0242)\\\" x=\\\"0 7.22 12.78 15.06 20.06\\\">which</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 180.8717 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 185.054 588.0242)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 198.9554 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 203.1377 588.0242)\\\" x=\\\"0 6.11 11.67 14.45 20.01\\\">Total</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.4277 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 229.61 588.0242)\\\" x=\\\"0 7.22 12.78 17.78\\\">Cost</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 250.1715 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 254.3538 588.0242)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 261.6341 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 265.8163 588.0242)\\\" x=\\\"0 5.56 11.12 13.4 18.96\\\">paid,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 287.5595 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 291.7418 588.0242)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 305.8043 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 309.9866 588.0242)\\\" x=\\\"0 3.33 8.89 17.22 22.78 25.06\\\">remain</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 340.6116 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 344.7938 588.0242)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 358.6952 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 362.8775 588.0242)\\\" x=\\\"0 5 10.56 18.89\\\">same</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 387.3306 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 391.5129 588.0242)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.0744 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 406.2567 588.0242)\\\" x=\\\"0 5.56 8.89 11.17 16.73\\\">prior</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 426.3202 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 430.5025 588.0242)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 438.8423 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 443.0246 588.0242)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.9259 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 461.1082 588.0242)\\\" x=\\\"0 3.33 8.89 14.45 20.01 25.57 30.57 33.35 38.91\\\">requested</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 505.5858 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 509.768 588.0242)\\\" x=\\\"0 5 10.56 16.12 21.68 27.24 32.8\\\">change.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 545.354 588.0242)\\\" x=\\\"0 4.1823\\\">  </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.7185 588.0242)\\\" x=\\\"0 6.67 12.23\\\">Any</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 576.7059)\\\" x=\\\"0 3.33 8.89 11.67 17.23 22.79 27.79 33.35\\\">refences</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 71.4545 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 75.2825 576.7059)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 83.1243 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 86.9523 576.7059)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 102.5725 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 106.4005 576.7059)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 155.3165 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 159.1445 576.7059)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 167.4844 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 171.3124 576.7059)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 185.2138 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 189.0418 576.7059)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57 33.9\\\">number,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.7264 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 229.5544 576.7059)\\\" x=\\\"0 2.78 6.11 11.67 17.23 22.79 28.35 33.91 38.91 43.91\\\">frequency,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.2488 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 280.0768 576.7059)\\\" x=\\\"0 2.78 5.06 13.39 15.67 21.23\\\">timing</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 306.8688 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 310.6968 576.7059)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 327.3814 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 331.2094 576.7059)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 364.5639 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 368.3919 576.7059)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 376.7318 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 380.5598 576.7059)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 415.6379 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 419.466 576.7059)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46\\\">Payments</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 463.9289 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 467.7569 576.7059)\\\" x=\\\"0 3.33 8.89 11.67 17.23 20.56\\\">refers</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 493.3184 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 497.1465 576.7059)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 505.4863 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 509.3143 576.7059)\\\" x=\\\"0 5 10.56 15.56\\\">such</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 530.4374 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 534.2654 576.7059)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57 33.9\\\">number,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 565.3875)\\\" x=\\\"0 2.78 6.11 11.67 17.23 22.79 28.35 33.91 38.91 43.91 46.69 49.35 52.13 54.41 62.74 68.3 70.96 76.52 82.08 87.64 90.3 95.86 104.19 109.75 115.31 120.87 123.65 126.31 131.87 136.87 139.53 147.86 153.42 158.42 161.08 166.64 172.2 174.86 183.19 188.75 194.31 196.59 199.37 201.65 207.21 212.77 215.43 220.99 225.99 228.65 235.32 240.88 246.44 252 254.66 260.22 263 265.66 270.66 276.22 281.78 285.11 287.77 291.1 296.66 302.22 307.78 313.34 318.34 321.12\\\">frequency, time and amount as may be modified by Snap at your request.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 552.0691)\\\" x=\\\"0 6.67 13.34 20.01 26.68 33.9 40.57 47.24 50.02 55.58 58.36 64.47 71.14\\\">SEVERABILITY.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 107.016 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 110.2288 552.0691)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 115.7855 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 118.9983 552.0691)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 124.5598 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 127.7726 552.0691)\\\" x=\\\"0 5 10.56 16.12 19.45\\\">court</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 150.004 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 153.2169 552.0691)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 162.1085 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 165.3213 552.0691)\\\" x=\\\"0 5.56 8.34 13.9 19.46\\\">other</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 188.1142 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 191.327 552.0691)\\\" x=\\\"0 5.56 7.84 12.84 18.4 23.96 26.74\\\">dispute</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 223.6317 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 226.8445 552.0691)\\\" x=\\\"0 3.33 8.89 13.89 19.45 21.73 27.29 30.07 32.35 37.91\\\">resolution</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 270.3211 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 273.5339 552.0691)\\\" x=\\\"0 5.56 11.12 16.68\\\">body</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 295.2185 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 298.4313 552.0691)\\\" x=\\\"0 2.78 5.06 10.62 16.18\\\">finds</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.6129 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 322.8257 552.0691)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.9488 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 342.1616 552.0691)\\\" x=\\\"0 5.56 11.12 14.45\\\">part</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.393 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 362.6058 552.0691)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 370.9457 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 374.1585 552.0691)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 389.7786 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 392.9914 552.0691)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 441.9074 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 445.1202 552.0691)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 453.4601 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 456.6729 552.0691)\\\" x=\\\"0 5.56\\\">be</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.7959 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 471.0087 552.0691)\\\" x=\\\"0 5 10.56 12.84\\\">void</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.4121 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 492.6249 552.0691)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.5165 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 504.7293 552.0691)\\\" x=\\\"0 5.56 11.12 16.68 22.24 25.02 30.58 33.91 38.91 44.47 50.03 55.59 57.87 63.43\\\">u* D E M O *e,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 540.7508)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 48.7201 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 53.1394 540.7508)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 102.0554 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 106.4747 540.7508)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 113.755 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 118.1743 540.7508)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 126.5142 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 130.9335 540.7508)\\\" x=\\\"0 5.56\\\">be</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 142.0565 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 146.4758 540.7508)\\\" x=\\\"0 3.33 8.89 14.45\\\">read</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 166.4905 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 170.9097 540.7508)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 181.4713 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 185.8906 540.7508)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 190.9492 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 195.3685 540.7508)\\\" x=\\\"0 2.78 8.34 13.9\\\">that</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 212.0482 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 216.4675 540.7508)\\\" x=\\\"0 5.56 11.12 14.45\\\">part</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.6989 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 238.1182 540.7508)\\\" x=\\\"0 7.22 12.78 16.11\\\">were</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.793 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 264.2123 540.7508)\\\" x=\\\"0 5.56 11.12 16.12 21.68\\\">never</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 289.227 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 293.6463 540.7508)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.2078 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 303.6271 540.7508)\\\" x=\\\"0 5.56 11.12 14.45\\\">part</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 320.8585 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 325.2778 540.7508)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 333.6177 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.037 540.7508)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 353.6571 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 358.0764 540.7508)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 409.7707 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 414.19 540.7508)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 431.4215 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 435.8408 540.7508)\\\" x=\\\"0 3.33 8.89 13.89\\\">rest</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 452.5107 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 456.93 540.7508)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 465.2699 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 469.6891 540.7508)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 483.5905 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 488.0098 540.7508)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 536.9258 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 541.3451 540.7508)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 555.4076 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 559.8269 540.7508)\\\" x=\\\"0 5.56\\\">be</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 529.4324)\\\" x=\\\"0 5.56 11.12 13.9 19.46 22.79 27.79 33.35 38.91 44.47 46.75 52.31\\\">enforceable.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 516.1141)\\\" x=\\\"0 6.67 13.89 21.67 28.89 31.67 38.34 41.12 47.23 53.9\\\">PROHIBITED</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 94.2182 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 97.4569 516.1141)\\\" x=\\\"0 6.67 13.89 20 26.67\\\">ACTS.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 126.9051 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 130.1438 516.1141)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 147.9368 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 151.1754 516.1141)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 165.2379 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 168.4766 516.1141)\\\" x=\\\"0 5 10.56 16.12\\\">keep</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 190.1612 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 193.3999 516.1141)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 207.3013 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.5399 516.1141)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 248.3329 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 251.5716 516.1141)\\\" x=\\\"0 2.78 6.11 11.67\\\">free</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 268.8031 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 272.0417 516.1141)\\\" x=\\\"0 2.78 6.11 11.67\\\">from</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 292.0417 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 295.2804 516.1141)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 311.4035 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 314.6422 516.1141)\\\" x=\\\"0 2.28 4.56 10.12 15.68\\\">liens</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.3258 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.5645 516.1141)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 347.4561 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 350.6947 516.1141)\\\" x=\\\"0 5 7.28 12.84 15.12 23.45 28.45\\\">claims.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 381.9252 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 385.1639 516.1141)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.9569 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 406.1956 516.1141)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 420.2581 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 423.4968 516.1141)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 437.3981 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 440.6368 516.1141)\\\" x=\\\"0 5.56 11.12 18.34\\\">pawn</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 464.5431 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 467.7818 516.1141)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 476.6734 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 479.912 516.1141)\\\" x=\\\"0 5.56 7.84 13.4 18.96 24.52\\\">pledge</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.9999 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 513.2386 516.1141)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 527.14 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 530.3787 516.1141)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 504.7957)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 50.893 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 55.1549 504.7957)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 69.2174 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 73.4794 504.7957)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 87.3807 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 91.6427 504.7957)\\\" x=\\\"0 8.33 13.89 18.89\\\">move</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 116.0958 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 120.3578 504.7957)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 134.2592 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 138.5211 504.7957)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 176.3141 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 180.576 504.7957)\\\" x=\\\"0 5.56 11.12 13.9 18.9 21.18 26.74\\\">outside</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 212.8807 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 217.1427 504.7957)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.4825 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 229.7445 504.7957)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 243.6458 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 247.9078 504.7957)\\\" x=\\\"0 5.56 11.12 16.68 20.01 25.57 30.57\\\">address</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 283.484 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 287.7459 504.7957)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 303.869 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 308.1309 504.7957)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29 32.85\\\">provided</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 346.5489 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 350.8109 504.7957)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.1507 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 363.4127 504.7957)\\\" x=\\\"0 5.56 10.56\\\">us,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 376.7525 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 381.0145 504.7957)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 397.699 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 401.961 504.7957)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 412.5225 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 416.7845 504.7957)\\\" x=\\\"0 5.56 11.12 16.68 22.24 25.02 30.58 36.14\\\">updated,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 455.7103 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 459.9722 504.7957)\\\" x=\\\"0 5.56 11.12 13.4 18.96 23.96\\\">unless</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 488.9371 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 493.199 504.7957)\\\" x=\\\"0 2.28\\\">it</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 498.2576 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 502.5196 504.7957)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.7998 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 514.0618 504.7957)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 522.4016 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 526.6636 504.7957)\\\" x=\\\"0 3.33 8.89 11.67 17.23 20.56\\\">return</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.7867 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0486 504.7957)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 493.4773)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 70.893 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 74.775 493.4773)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 83.1148 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 86.9968 493.4773)\\\" x=\\\"0 5.56 10.56\\\">us,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 100.3367 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 104.2187 493.4773)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 113.1103 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 116.9923 493.4773)\\\" x=\\\"0 5.56 11.12\\\">our</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 131.4454 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 135.3274 493.4773)\\\" x=\\\"0 5.56 11.12 16.12 18.4 23.96 29.52 35.08 40.64\\\">designee.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 178.7551 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 182.6371 493.4773)\\\" x=\\\"0 6.11\\\">To</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 194.307 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 198.189 493.4773)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 212.0904 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 215.9724 493.4773)\\\" x=\\\"0 5.56 10.56 13.34 18.9 24.46\\\">extent</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 243.2136 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 247.0956 493.4773)\\\" x=\\\"0 5.56 10.56\\\">use</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 263.2187 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 267.1007 493.4773)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.4405 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 279.3225 493.4773)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 293.2239 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 297.1059 493.4773)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 334.8988 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.7808 493.4773)\\\" x=\\\"0 3.33 8.89 14.45 20.01 22.29 25.62 31.18\\\">requires</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 374.9674 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 378.8494 493.4773)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 394.9724 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 398.8544 493.4773)\\\" x=\\\"0 8.33 10.61 16.17 18.45 26.78 32.34\\\">minimum</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 439.5282 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 443.4102 493.4773)\\\" x=\\\"0 5 8.33 10.61 13.39 18.95 22.28 24.56\\\">criteria</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 473.5323 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 477.4143 493.4773)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.0842 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 492.9662 493.4773)\\\" x=\\\"0 5.56 10.56 16.12\\\">use,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 511.8676 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 515.7496 493.4773)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24 28.52 34.08\\\">including</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 555.3981 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 559.2801 493.4773)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 482.159)\\\" x=\\\"0 5.56 10.56 16.12 24.45 30.01 32.29\\\">example</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 70.9565 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 74.5435 482.159)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 80.105 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 83.6921 482.159)\\\" x=\\\"0 5.56 11.12 14.45 22.78 25.06 27.84\\\">permit,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 114.3123 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 117.8993 482.159)\\\" x=\\\"0 2.28 4.56 9.56 15.12 20.68 25.68 31.24\\\">license,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 151.9228 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 155.5098 482.159)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 164.4014 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 167.9885 482.159)\\\" x=\\\"0 8.33 10.61 16.17 18.45 26.78 32.34\\\">minimum</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 208.6624 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 212.2494 482.159)\\\" x=\\\"0 5.56 11.12 16.68\\\">age,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.7123 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 235.2994 482.159)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 251.4224 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 255.0095 482.159)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 269.072 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 272.6591 482.159)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 286.5605 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 290.1476 482.159)\\\" x=\\\"0 5.56 7.84 10.12 15.68\\\">allow</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 313.0528 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 316.6399 482.159)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 332.7629 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 336.35 482.159)\\\" x=\\\"0 2.28 10.61 16.17 19.5 25.06 30.62 36.18\\\">improper</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.8666 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 379.4537 482.159)\\\" x=\\\"0 5.56 10.56\\\">use</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 395.5767 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 399.1638 482.159)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 407.5037 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 411.0907 482.159)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 424.9921 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 428.5792 482.159)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 469.1505 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 472.7376 482.159)\\\" x=\\\"0 6.67\\\">As</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.4075 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 487.9946 482.159)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64 45.2\\\">applicable,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 535.9828 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 539.5699 482.159)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.2399 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 554.8269 482.159)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 470.8406)\\\" x=\\\"0 5.56 11.12 16.68 19.46\\\">boat,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 55.3412 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 60.5175 470.8406)\\\" x=\\\"0 8.33 13.89 16.67 22.23 25.56 27.84 32.84 38.4\\\">motorized</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 104.4823 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 109.6586 470.8406)\\\" x=\\\"0 5 10.56 16.12 18.4 23.4 25.68 31.24\\\">vehicle,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 143.6821 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.8584 470.8406)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 157.75 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 162.9263 470.8406)\\\" x=\\\"0 5.56 8.34 13.9 19.46 22.79 30.01 32.29 37.29\\\">otherwise</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 205.7827 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.959 470.8406)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64 45.2\\\">applicable,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 258.9473 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 264.1236 470.8406)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.2466 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 285.4229 470.8406)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.4854 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 304.6617 470.8406)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 318.5631 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 323.7394 470.8406)\\\" x=\\\"0 5.56 11.12 14.45 22.78 25.06\\\">permit</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.5812 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 356.7575 470.8406)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 372.8805 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 378.0568 470.8406)\\\" x=\\\"0 5.56 11.12 14.45 19.45 25.01 30.57\\\">person,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 411.4113 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 416.5876 470.8406)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24 28.52 34.08\\\">including</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.236 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 461.4123 470.8406)\\\" x=\\\"0 5 10.56 16.12 19.45 24.45 30.01 32.29 35.07\\\">yourself,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.2639 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 504.4402 470.8406)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.78 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 517.9563 470.8406)\\\" x=\\\"0 5.56 11.12 16.68 20.01 25.57 28.35\\\">operate</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.8723 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0486 470.8406)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 459.5223)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 70.893 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 75.2445 459.5223)\\\" x=\\\"0 7.22 12.78 15.06 17.34\\\">while</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 98.1497 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 102.5012 459.5223)\\\" x=\\\"0 5 10.56 15.56\\\">such</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 123.6243 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 127.9757 459.5223)\\\" x=\\\"0 5.56 11.12 14.45 19.45 25.01\\\">person</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 158.5519 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 162.9034 459.5223)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 170.1837 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 174.5351 459.5223)\\\" x=\\\"0 2.28 10.61 16.17 21.73 24.01 27.34 32.9\\\">impaired</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 213.0019 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 217.3534 459.5223)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 227.915 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 232.2664 459.5223)\\\" x=\\\"0 5.56 8.89 14.45 20.01 25.01\\\">drugs,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 260.0594 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 264.4109 459.5223)\\\" x=\\\"0 5.56 7.84 12.84 18.4 23.96 29.52\\\">alcohol</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 296.2175 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 300.569 459.5223)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 309.4606 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 313.8121 459.5223)\\\" x=\\\"0 2.78 6.11 11.67\\\">from</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 333.8121 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.1636 459.5223)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 354.2866 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 358.6381 459.5223)\\\" x=\\\"0 5.56 8.34 13.9 19.46\\\">other</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 381.4311 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 385.7826 459.5223)\\\" x=\\\"0 5 10.56 16.12 21.12 26.68\\\">cause.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 415.2455 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 419.5969 459.5223)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 437.3899 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 441.7414 459.5223)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 455.8039 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 460.1554 459.5223)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.0567 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 478.4082 459.5223)\\\" x=\\\"0 5.56 10.56\\\">use</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 494.5313 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 498.8828 459.5223)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.7841 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 517.1356 459.5223)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 554.9286 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 559.2801 459.5223)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 448.2039)\\\" x=\\\"0 5 10.56 18.89 27.22 32.78 36.11 41.11 43.39 48.95 51.23 53.89 59.45 65.01 68.34 73.9 79.46 84.46 90.02 95.02\\\">commercial purposes.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 434.8855)\\\" x=\\\"0 9.44 16.11 23.33 30.55 33.33 40.55 48.33\\\">WARNING:</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 84.2084 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 87.8242 434.8855)\\\" x=\\\"0 7.22 12.78 15.06 20.62 25.62\\\">Unless</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 118.4492 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 122.065 434.8855)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 138.188 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 141.8038 434.8855)\\\" x=\\\"0 5.56 11.12 16.12\\\">have</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 163.4883 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 167.1041 434.8855)\\\" x=\\\"0 5.56 10.56 16.12 21.68 23.96 27.29 32.85\\\">acquired</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 205.5221 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 209.1378 434.8855)\\\" x=\\\"0 5.56 12.78 18.34 23.9 27.23 32.23 37.79 40.07\\\">ownership</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 254.7775 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 258.3933 434.8855)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 266.7331 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 270.3489 434.8855)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 284.2503 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 287.866 434.8855)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 328.4373 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 332.0531 434.8855)\\\" x=\\\"0 5.56 8.34 11.12 16.68 25.01 30.57 33.35 35.63 41.19\\\">attempting</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 378.806 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 382.4218 434.8855)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 390.7616 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 394.3774 434.8855)\\\" x=\\\"0 5 10.56 12.84 15.12\\\">sell,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 412.2778 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 415.8936 434.8855)\\\" x=\\\"0 5.56 11.12 18.34 23.9\\\">pawn,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 442.5781 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 446.1939 434.8855)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 455.0855 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 458.7013 434.8855)\\\" x=\\\"0 2.28 4.56 10.12\\\">lien</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.3849 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 478.0007 434.8855)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 491.902 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 495.5178 434.8855)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 533.3108 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 536.9265 434.8855)\\\" x=\\\"0 5 7.28 12.84 15.12 20.68 23.46 29.02\\\">violates</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 423.5672)\\\" x=\\\"0 5 7.78 13.34 16.12 21.68 24.34 26.62 32.18 39.4\\\">state law.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 410.2488)\\\" x=\\\"0 6.67 13.34 20.01 22.79 30.57 37.79 46.12 52.79 60.01 66.12\\\">ASSIGNMENT.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 101.9965 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 104.9066 410.2488)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 122.6995 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 125.6096 410.2488)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 144.5012 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 147.4112 410.2488)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 161.3126 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 164.2227 410.2488)\\\" x=\\\"0 5.56 10.56 15.56 17.84 23.4\\\">assign</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 193.1875 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 196.0976 410.2488)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 211.7177 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 214.6278 410.2488)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 263.5438 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 266.4538 410.2488)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.3454 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 278.2555 410.2488)\\\" x=\\\"0 2.78 6.11 11.67 17.23 22.23 25.01 30.57\\\">transfer</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.1569 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 315.0669 410.2488)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 328.9683 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 331.8784 410.2488)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 369.6713 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 372.5814 410.2488)\\\" x=\\\"0 7.22 9.5 12.28 17.84 23.4 28.96\\\">without</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 404.3246 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.2346 410.2488)\\\" x=\\\"0 5.56 11.12\\\">our</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 421.6877 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 424.5978 410.2488)\\\" x=\\\"0 5.56 8.89 11.17 16.73\\\">prior</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 444.6613 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 447.5713 410.2488)\\\" x=\\\"0 7.22 10.55 12.83 15.61 18.39 23.95\\\">written</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 477.0831 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 479.9931 410.2488)\\\" x=\\\"0 5.56 11.12 14.45 22.78 25.06 30.06 35.06 37.34 42.9 48.46\\\">permission.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 531.2382 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 534.1483 410.2488)\\\" x=\\\"0 9.44\\\">We</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.1483 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 552.0584 410.2488)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 398.9305)\\\" x=\\\"0 5.56 10.56 15.56 17.84 23.4 28.96 31.62 37.18 39.46 41.74 44.4 49.96 52.74 55.4 60.96 66.52 69.85 72.51 75.84 78.12 83.68 89.24 92.02 97.02 99.68 105.24 110.8 116.36 121.92 125.25 127.91 130.69 136.25 138.53 143.53 146.19 152.86 158.42 161.75 167.31 172.87 181.2 186.76 192.32 195.1 197.88 200.54 207.21 212.77 217.77 220.43 225.99 231.55 234.88 239.88 245.44 251 253.66 260.88 266.44 269.1 274.66 279.66 284.66 286.94 292.5 298.06 300.72 303 305.78 308.44 311.22 316.78 319.44 327.77 333.33 338.33 340.99 344.32 349.88 355.44 360.44 365.44 367.72 373.28 378.84 381.5 383.78 386.56\\\">assign all of our ri* D E M O *this Agreement. Any person we assign it to may reassign it.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 385.6121)\\\" x=\\\"0 6.67 13.89 21.11 28.89 36.11\\\">ACCORD</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 76.435 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 79.3433 385.6121)\\\" x=\\\"0 6.67 13.89\\\">AND</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 100.4566 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 103.3649 385.6121)\\\" x=\\\"0 6.67 13.34 19.45 22.23 28.9 35.01 41.68 48.9 55.01 57.79 65.57 72.79\\\">SATISFACTION.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 178.9265 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 181.8348 385.6121)\\\" x=\\\"0 6.67 12.23\\\">Any</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 199.0662 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 201.9746 385.6121)\\\" x=\\\"0 5 7.78 13.34 16.12 21.68 30.01 35.57 41.13\\\">statement</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.8857 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 248.794 385.6121)\\\" x=\\\"0 5.56 10.56 15.56 21.12 29.45 35.01 40.57 46.13 51.13 53.41 58.97\\\">accompanying</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 313.3351 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 316.2434 385.6121)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.6965 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.6049 385.6121)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 376.9593 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 379.8677 385.6121)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.2075 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 391.1159 385.6121)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 405.0172 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.9256 385.6121)\\\" x=\\\"0 5.56 8.34 11.12 16.68 21.68\\\">effect</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 432.3836 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 435.2919 385.6121)\\\" x=\\\"0 2.78 8.34 13.9\\\">that</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 451.9716 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 454.88 385.6121)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.3331 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 477.2414 385.6121)\\\" x=\\\"0 5.56 11.12 13.4 18.96 24.52 29.52\\\">balance</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.3293 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 515.2376 385.6121)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 522.5179 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 525.4263 385.6121)\\\" x=\\\"0 5.56 11.12 13.4\\\">paid</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 544.3911 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 547.2995 385.6121)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 555.1412 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 558.0496 385.6121)\\\" x=\\\"0 2.78 8.34 10.62\\\">full</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 374.2937)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.1625 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 50.8231 374.2937)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 64.7245 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 68.3851 374.2937)\\\" x=\\\"0 5.56 7.84 13.4\\\">bind</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 87.35 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 91.0106 374.2937)\\\" x=\\\"0 5.56 10.56\\\">us.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 104.3505 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 108.0111 374.2937)\\\" x=\\\"0 7.78 13.34\\\">Our</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 124.681 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 128.3417 374.2937)\\\" x=\\\"0 5.56 11.12 16.68 22.24 27.24 29.52\\\">deposit</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.6464 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 164.307 374.2937)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 172.6468 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 176.3075 374.2937)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 192.4305 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 196.0912 374.2937)\\\" x=\\\"0 5 10.56 15.56\\\">such</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 217.2142 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 220.8748 374.2937)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.2293 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 262.89 374.2937)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.9525 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 280.6131 374.2937)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 294.5145 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 298.1751 374.2937)\\\" x=\\\"0 5 10.56 16.12 21.12 23.9 26.18 28.96 34.52 37.3\\\">constitute</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 341.0365 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 344.6971 374.2937)\\\" x=\\\"0 5.56\\\">an</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.8201 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 359.4808 374.2937)\\\" x=\\\"0 5.56 10.56 15.56 21.12 24.45\\\">accord</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 389.4954 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 393.1561 374.2937)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 409.8406 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 413.5013 374.2937)\\\" x=\\\"0 5 10.56 13.34 15.62 20.62 23.4 28.96 33.96 36.74 39.02 44.58 50.14\\\">satisfaction,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.4212 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 470.0818 374.2937)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.7664 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 490.427 374.2937)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 503.2102 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 506.8709 374.2937)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 525.7625 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 529.4231 374.2937)\\\" x=\\\"0 5.56 11.12 16.68 18.96\\\">apply</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.388 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0486 374.2937)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 362.9754)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57 38.35 41.01 43.79 49.35 52.01 57.01 62.57 68.13 71.46 74.12 79.68 84.68 89.68 95.24 100.8 106.36 109.14\\\">payment to your account.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 349.657)\\\" x=\\\"0 2.78 10 16.67 23.89 31.11 37.78 45 52.22 58.89 61.67 64.33 73.77 79.33 81.99 87.55 93.11 95.77 101.33 106.89 109.67 112.33 115.66 121.22 126.78 132.34 134.62 137.95 143.51 146.17 151.17 156.73 162.29 164.95 167.73 173.29 175.95 181.51 187.07 190.4 195.4 200.96 206.52 211.52 217.08 219.74 222.02 227.58 232.58 238.14 241.47 247.03 252.59 257.59 263.15 265.81 268.59 271.92 277.48 285.81 288.47 294.03 299.03 301.69 307.25 312.81 318.37 321.03 328.25 333.81 336.47 342.03 347.59 352.59 358.15 360.81 366.37 371.93 374.71 377.37 382.93 386.26 391.82 396.82 399.1 404.66 410.22 415.78 418.44 424 429.56 434.56 437.22 439.5 445.06 450.06 455.62 458.95 464.51 470.07 475.07 480.63 483.29 486.07 491.63 494.29 499.29 504.85 510.41\\\">INSURANCE. We do not require you to purchase insurance from us and we have not provided any insurance to you.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 336.3387)\\\" x=\\\"0 7.22 13.89 21.11 27.78 30.56 37.23 43.34 46.12 48.78 56 61.56 67.12 72.68 75.34 80.34 85.9 91.46 94.79 97.45 100.78 106.34 111.9 117.46 123.02 128.02 130.8 133.58 136.24 143.46 149.02 151.68 157.24 160.57 166.13 168.79 172.12 177.68 183.24 188.8 191.08 194.41 199.97 205.53 208.19 210.97 216.53 219.19 224.75 228.08 233.64 238.64 240.92 246.48 252.04 254.7 259.7 265.26 270.82 273.48 280.7 282.98 285.76 291.32 293.98 299.54 302.2 309.42 312.75 315.03 317.81 320.59 326.15 331.71 334.37 337.7 343.26 348.26 353.82 356.1 361.66 364.44 367.1 369.88 375.44 378.77 381.43 386.99 392.55 397.55 403.11 405.77 411.33 416.89 421.89 430.22 435.78 441.34 444.12 446.78 455.11 460.67 466.23 471.79\\\">RECEIPT. Upon your request, we are required to provide you with a written receipt for each payment made.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 323.0203)\\\" x=\\\"0 7.78 15.56 22.23 28.9 36.12 43.34 46.12 53.34\\\">GOVERNING</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 94.2182 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 97.2444 323.0203)\\\" x=\\\"0 5.56 12.23 21.67\\\">LAW.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 121.6926 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 124.7189 323.0203)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 141.9503 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 144.9765 323.0203)\\\" x=\\\"0 2.28 7.84\\\">law</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.04 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 163.0663 323.0203)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 171.4061 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 174.4323 323.0203)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 188.3337 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 191.3599 323.0203)\\\" x=\\\"0 5 7.78 13.34 16.12\\\">state</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 213.0396 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 216.0658 323.0203)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 223.9076 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 226.9339 323.0203)\\\" x=\\\"0 7.22 12.78 15.06 20.06\\\">which</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 252.5589 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 255.5851 323.0203)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 271.7082 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 274.7344 323.0203)\\\" x=\\\"0 3.33 8.89 13.89 16.17 21.73\\\">reside</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.0293 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 305.0555 323.0203)\\\" x=\\\"0 7.22 12.78 18.34\\\">when</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 328.9618 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 331.988 323.0203)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.1111 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 351.1373 323.0203)\\\" x=\\\"0 5 7.28 12.84 18.4 23.96\\\">signed</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.6637 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 383.6899 323.0203)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 399.31 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 402.3363 323.0203)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 451.2523 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 454.2785 323.0203)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 470.9631 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 473.9893 323.0203)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64\\\">applicable</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 519.1993 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 522.2255 323.0203)\\\" x=\\\"0 2.78 8.34 13.9 19.46 22.79 28.35\\\">federal</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.8603 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 555.8865 323.0203)\\\" x=\\\"0 2.28 7.84\\\">law</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 311.7019)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.1625 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 50.5142 311.7019)\\\" x=\\\"0 5.56 11.12 16.12 21.68 25.01\\\">govern</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 81.0904 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 84.4421 311.7019)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 98.3434 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 101.6951 311.7019)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 150.6111 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 153.9628 311.7019)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 170.6474 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 173.9991 311.7019)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 187.9005 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 191.2521 311.7019)\\\" x=\\\"0 2.28 7.84 10.62 16.18 19.51 25.07 28.4 33.96 36.74 42.3 45.08 47.36 52.92\\\">interpretation</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 249.7385 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 253.0902 311.7019)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 261.43 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 264.7817 311.7019)\\\" x=\\\"0 2.28 5.06\\\">it,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 272.6186 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 275.9703 311.7019)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.68\\\">except</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 305.4332 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 308.7849 311.7019)\\\" x=\\\"0 2.78 8.34 13.9\\\">that</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 325.4646 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 328.8163 311.7019)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 342.7176 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 346.0693 311.7019)\\\" x=\\\"0 6.11 11.67 17.23 22.79 26.12 31.68\\\">Federal</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.0342 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 383.3859 311.7019)\\\" x=\\\"0 6.67 10 15.56 17.84 20.62 23.95 29.51 32.29 34.57 40.13\\\">Arbitration</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 429.0792 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 432.4309 311.7019)\\\" x=\\\"0 6.67 11.67\\\">Act</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 446.8791 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 450.2308 311.7019)\\\" x=\\\"0 5.56 10.56 16.12 19.45 25.01 30.01 35.01 37.29\\\">expressly</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 492.5258 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 495.8775 311.7019)\\\" x=\\\"0 5.56 11.12 16.12 21.68 25.01 30.57\\\">governs</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 531.4536 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 534.8053 311.7019)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 548.7067 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 552.0584 311.7019)\\\" x=\\\"0 5 10.56 13.89\\\">Jury</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 300.3836)\\\" x=\\\"0 6.11 9.44 11.72 17.28 19.56 22.22 31.66 37.22 39.5 44.5 50.06 53.39 56.05 61.61 67.17 72.73 75.39 82.06 85.39 90.95 93.23 96.01 99.34 104.9 107.68 109.96 115.52 121.08 123.74 130.96 133.24 138.8 144.36 149.36 154.92 157.7 160.36 167.03 172.59 178.15 180.81 186.37 191.37 196.37 201.93 207.49 214.71 216.99 222.55 228.11 233.67 239.23 241.89 244.67 250.23 255.79 258.57 261.23 266.23 271.79 277.35 280.01 283.34 288.9 293.9 296.18 301.74 307.3 309.96 315.52 318.3 320.96 323.74 329.3 334.86 337.52 343.08 348.64 354.2 357.53 363.09 368.09 373.09 375.75 378.03 380.31 385.31 388.09 393.65 399.21 401.87 407.43 412.99 418.55 423.55 429.11 431.77 437.33 442.89 445.55 448.33 453.89 459.45 462.11 468.78 474.34 477.67 483.23 488.79 497.12 502.68 508.24 511.02 513.68 520.9 526.46 529.24 534.8\\\">Trial Waiver and Arbitration Clause. You acknowledge that you reside at the address listed above on the Agreement Date.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 287.0652)\\\" x=\\\"0 7.22 15 22.22 28.89 36.11 44.44 51.11\\\">CONSUMER</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 91.435 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 94.8938 287.0652)\\\" x=\\\"0 7.22 13.89 20.56 28.34 35.56 41.67\\\">REPORT.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 139.3421 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 142.8009 287.0652)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.5939 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 164.0527 287.0652)\\\" x=\\\"0 5.56 11.12 16.12\\\">have</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 185.7373 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 189.1961 287.0652)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 28.35 30.63 35.63 41.19\\\">authorized</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 235.9539 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 239.4128 287.0652)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 249.9743 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 253.4331 287.0652)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 261.773 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 265.2318 287.0652)\\\" x=\\\"0 5.56 11.12 13.9 19.46 21.74\\\">obtain</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 292.5365 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 295.9953 287.0652)\\\" x=\\\"0 5.56 11.12\\\">one</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.6799 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 316.1388 287.0652)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 325.0304 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 328.4892 287.0652)\\\" x=\\\"0 8.33 13.89 17.22\\\">more</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.2724 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 354.7312 287.0652)\\\" x=\\\"0 5 10.56 16.12 21.12 26.68 35.01 40.57\\\">consumer</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 398.6375 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 402.0963 287.0652)\\\" x=\\\"0 3.33 8.89 14.45 20.01 23.34 26.12\\\">reports</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 433.2194 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 436.6782 287.0652)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.8013 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 451.2601 287.0652)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.3832 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 470.842 287.0652)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 478.6838 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 482.1427 287.0652)\\\" x=\\\"0 5 10.56 16.12 21.68 27.24 32.24 35.02 37.3 42.86\\\">connection</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 530.5704 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 534.0292 287.0652)\\\" x=\\\"0 7.22 9.5 12.28\\\">with</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.871 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 555.3299 287.0652)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 275.7469)\\\" x=\\\"0 2.78 6.11 11.67 17.23 22.23 27.79 32.79 35.57 37.85 43.41 48.97\\\">transaction.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 262.4285)\\\" x=\\\"0 7.22 14.44 21.11 28.33 31.11\\\">CREDIT</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 70.3217 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 73.874 262.4285)\\\" x=\\\"0 7.22 13.89 20.56 28.34 35.56 41.67 44.45 51.67 59.45\\\">REPORTING.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.1005 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 139.6529 262.4285)\\\" x=\\\"0 9.44\\\">We</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 154.6529 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 158.2051 262.4285)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 177.0967 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 180.6491 262.4285)\\\" x=\\\"0 3.33 8.89 14.45 20.01 23.34\\\">report</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 206.7721 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.3244 262.4285)\\\" x=\\\"0 2.28 7.84 10.62 16.18 19.51 27.84 33.4 36.18 38.46 44.02\\\">information</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.9094 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 263.4617 262.4285)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 271.8015 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 275.3538 262.4285)\\\" x=\\\"0 5 8.33 13.89 19.45 21.73\\\">credit</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.8655 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 303.4178 262.4285)\\\" x=\\\"0 5.56 11.12 14.45 20.01 25.57 31.13\\\">bureaus</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 339.5555 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 343.1078 262.4285)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.9994 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 355.5517 262.4285)\\\" x=\\\"0 5.56 8.34 13.9 19.46\\\">other</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 378.3447 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 381.897 262.4285)\\\" x=\\\"0 2.78 8.34 10.62 13.95 19.51 22.84 28.4 33.96 37.29 40.07 42.35 47.91\\\">third-parties</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.812 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 438.3644 262.4285)\\\" x=\\\"0 5.56 11.12 16.68 22.24\\\">about</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 463.3888 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 466.9411 262.4285)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.3942 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 489.9465 262.4285)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.68 32.24 35.02\\\">account,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 527.7492 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 531.3015 262.4285)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24 28.52 34.08\\\">including</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 251.1102)\\\" x=\\\"0 2.28 7.84 10.62 16.18 18.84 24.4 27.73 30.39 38.72 41 46 51 56.56 62.12 64.78 70.34 75.9 80.9 89.23 94.79 100.35 103.13 108.13 110.91 113.57 119.13 124.69 130.25 132.91 138.47 144.03 149.03 151.69 157.25 162.81 167.81 170.09 172.87 175.15 180.15 185.71 188.37 193.93 197.26 199.92 205.48 211.04 216.6 222.16 224.94 227.22 232.22 237.78 240.44 246 251 256 261.56 267.12 272.68 275.46 278.12 280.4 285.96 288.74 294.3 297.63 305.96 311.52 314.3 316.58 322.14 327.7 330.36 338.69 344.25 349.25 351.91 357.47 363.03 365.69 369.02 374.58 377.36 379.64 385.2 390.2 392.98 398.54 404.1 406.76 409.04 414.6 417.26 422.26 427.82 433.38 436.71 439.37 444.37 447.7 453.26 458.82 461.1 463.88 466.54 469.87 475.43 480.99 486.55 489.88 492.66\\\">late or missed payments, and any positive or negative account information may be reflected in your credit report.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 237.7918)\\\" x=\\\"0 2.78 10 17.22 23.89 32.22 39.44 42.22 48.33 51.11 58.33 65 71.11 73.89 81.67 88.89\\\">INDEMNIFICATION.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 124.765 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 128.29 237.7918)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.083 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 149.608 237.7918)\\\" x=\\\"0 5.56 11.12 14.45 20.01\\\">agree</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 175.1842 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 178.7092 237.7918)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 187.0491 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 190.5741 237.7918)\\\" x=\\\"0 2.28 7.84 13.4 18.96 27.29 32.85 35.13 37.91\\\">indemnify</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.4891 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 237.0141 237.7918)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.5756 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 251.1006 237.7918)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 267.7852 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 271.3102 237.7918)\\\" x=\\\"0 5.56 11.12 13.4\\\">hold</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.2751 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 293.8001 237.7918)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 304.3616 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 307.8866 237.7918)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 324.5712 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 328.0962 237.7918)\\\" x=\\\"0 5.56 11.12\\\">our</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 342.5493 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 346.0743 237.7918)\\\" x=\\\"0 5.56 10.56 15.56 17.84 23.4 28.96 34.52 40.08 45.08\\\">assignees,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.9405 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 397.4655 237.7918)\\\" x=\\\"0 5.56 11.12 16.68 22.24 25.02 30.02\\\">agents,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.2683 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 433.7933 237.7918)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 450.4779 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 454.0029 237.7918)\\\" x=\\\"0 2.28 7.84 12.84 18.4 21.73 27.29 30.62\\\">insurers</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.6279 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 493.1529 237.7918)\\\" x=\\\"0 5.56 11.12 14.45 22.78 25.06 30.62 35.62\\\">harmless</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 533.7779 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 537.3029 237.7918)\\\" x=\\\"0 2.78 6.11 11.67\\\">from</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 557.3029 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 560.8279 237.7918)\\\" x=\\\"0 5.56 7.84\\\">all</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 226.4734)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57 36.13 41.13\\\">damages,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 77.016 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 80.4241 226.4734)\\\" x=\\\"0 2.28 7.84 10.12 15.68 19.01 21.29 26.85 31.85\\\">injuries,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 115.0579 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 118.466 226.4734)\\\" x=\\\"0 5 7.28 12.84 15.12 23.45 28.45\\\">claims,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 149.6965 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 153.1046 226.4734)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57 36.13 41.13\\\">demands,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 197.0206 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 200.4287 226.4734)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 217.1132 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 220.5214 226.4734)\\\" x=\\\"0 5.56 10.56 16.12 21.68 27.24 32.24 37.8 42.8\\\">expenses,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 266.1073 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 269.5154 226.4734)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24 28.52 34.08\\\">including</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 309.1638 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 312.5719 226.4734)\\\" x=\\\"0 3.33 8.89 14.45 19.45 25.01 30.57 36.13 41.69 43.97\\\">reasonable</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 362.1129 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 365.521 226.4734)\\\" x=\\\"0 5.56 8.34 11.12 16.68 20.01 25.57 31.13 36.13 38.04\\\">attorney&apos;s</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 408.563 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 411.9711 226.4734)\\\" x=\\\"0 2.78 8.34 13.9\\\">fees</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.8725 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 434.2806 226.4734)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 442.6204 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 446.0285 226.4734)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 459.9299 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 463.338 226.4734)\\\" x=\\\"0 5.56 10.56 13.34 18.9 24.46\\\">extent</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 490.5792 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 493.9873 226.4734)\\\" x=\\\"0 5.56 11.12 14.45 22.78 25.06 27.84 30.62 36.18\\\">permitted</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 535.7305 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 539.1386 226.4734)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.7001 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.1082 226.4734)\\\" x=\\\"0 2.28 7.84 15.06\\\">law,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 215.1551)\\\" x=\\\"0 5.56 8.89 11.17 16.17 18.45 24.01\\\">arising</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 62.6752 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 67.1149 215.1551)\\\" x=\\\"0 5.56 11.12\\\">out</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 81.0163 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 85.4561 215.1551)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 93.7959 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 98.2356 215.1551)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 112.137 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 116.5767 215.1551)\\\" x=\\\"0 5 10.56 16.12 21.68 23.96 26.74 29.02 34.58 40.14\\\">condition,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 159.5016 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 163.9413 215.1551)\\\" x=\\\"0 8.33 13.89 16.17 21.73 24.51 30.07 35.63 41.19 46.75 51.75 57.31\\\">maintenance,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 224.039 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 228.4787 215.1551)\\\" x=\\\"0 5.56 10.56\\\">use</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 244.6017 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 249.0415 215.1551)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.9331 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 262.3728 215.1551)\\\" x=\\\"0 5.56 11.12 16.68 20.01 25.57 28.35 30.63 36.19\\\">operation</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 304.1307 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 308.5704 215.1551)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 316.9102 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 321.35 215.1551)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.2514 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 339.6911 215.1551)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.2624 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 384.7021 215.1551)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24 28.52 34.08\\\">including</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 424.3506 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 428.7903 215.1551)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.3518 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 438.7916 215.1551)\\\" x=\\\"0 5 7.28 12.84 15.12\\\">claim</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 462.2437 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 466.6835 215.1551)\\\" x=\\\"0 5.56 11.12 16.68 22.24\\\">under</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 492.2597 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 496.6994 215.1551)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 510.6008 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 515.0405 215.1551)\\\" x=\\\"0 5 7.78 11.11 13.39 18.39\\\">strict</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 536.2075 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 540.6472 215.1551)\\\" x=\\\"0 2.28 4.56 10.12 15.68 17.96 20.24 22.52 25.3\\\">liability</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 203.8367)\\\" x=\\\"0 5.56 11.12 16.12 18.9 22.23 24.51 30.07 35.63\\\">doctrine.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 190.5184)\\\" x=\\\"0 7.2217 15 21.1084 23.8867 31.1084 37.7783 44.4482\\\">NOTICES.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 80.3266 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 82.9828 190.5184)\\\" x=\\\"0 7.2217 12.7832 15.5615 17.8418 22.8418 28.4033\\\">Notices</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 116.3861 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 119.0424 190.5184)\\\" x=\\\"0 8.3301 13.8916\\\">may</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 137.934 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 140.5902 190.5184)\\\" x=\\\"0 5.5615\\\">be</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 151.7133 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 154.3695 190.5184)\\\" x=\\\"0 5.5615 7.8418 12.8418 18.4033\\\">given</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 178.3344 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 180.9906 190.5184)\\\" x=\\\"0 5.5615 11.123 14.4531 19.4531 25.0146 30.5762 36.1377 38.418 40.6982\\\">personally</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 226.6889 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 229.3451 190.5184)\\\" x=\\\"0 5.5615\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.2367 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 240.893 190.5184)\\\" x=\\\"0 5 10.5615 16.123\\\">sent</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.7943 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 262.4506 190.5184)\\\" x=\\\"0 5.5615\\\">by</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 273.0121 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 275.6684 190.5184)\\\" x=\\\"0 2.7783 5.0586 8.3887 13.3887\\\">first</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.8353 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 294.4916 190.5184)\\\" x=\\\"0 5 7.2803 12.8418 17.8418\\\">class</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 317.3334 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 319.9896 190.5184)\\\" x=\\\"0 8.3301 13.8916 16.1719 18.4522\\\">mail.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 341.2201 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 343.8764 190.5184)\\\" x=\\\"0 7.2217 12.7832 15.5615 17.8418 22.8418\\\">Notice</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 372.2797 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 374.9359 190.5184)\\\" x=\\\"0 8.3301 13.8916 16.1719 18.4522 24.0137\\\">mailed</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 404.5111 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.1674 190.5184)\\\" x=\\\"0 2.7783\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 415.5072 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 418.1635 190.5184)\\\" x=\\\"0 5.5615\\\">us</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 428.725 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 431.3812 190.5184)\\\" x=\\\"0 8.3301 13.8916 18.8916\\\">must</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 453.0512 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 455.7074 190.5184)\\\" x=\\\"0 5.5615\\\">be</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.8305 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 469.4867 190.5184)\\\" x=\\\"0 5 10.5615 16.1231\\\">sent</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 488.3881 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 491.0443 190.5184)\\\" x=\\\"0 2.7783\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.3842 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 502.0404 190.5184)\\\" x=\\\"0 2.7783 8.3398\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 515.9418 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 518.5981 190.5184)\\\" x=\\\"0 5.5615 11.123 16.6846 20.0146 25.5762 30.5762\\\">address</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 179.2)\\\" x=\\\"0 5 10.5615 16.1231 23.3447\\\">shown</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 62.0063 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 64.6625 179.2)\\\" x=\\\"0 2.2803\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 72.5043 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 75.1606 179.2)\\\" x=\\\"0 2.7783 8.3398 10.6201\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 90.7807 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 93.4369 179.2)\\\" x=\\\"0 6.6699 12.2314 15.5615 21.123 26.6846 35.0146 40.5762 46.1377 48.916\\\">Agreement,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 145.1312 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 147.7875 179.2)\\\" x=\\\"0 5.6115\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 156.7791 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 159.4854 179.2)\\\" x=\\\"0 5.6115\\\">as</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 170.1469 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 172.8531 179.2)\\\" x=\\\"0 7.2717\\\">we</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 185.7363 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 188.4426 179.2)\\\" x=\\\"0 5.5615 8.3398 13.9014 19.4629 22.793 30.0147 32.2949 37.2949\\\">otherwise</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.299 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 233.9553 179.2)\\\" x=\\\"0 5.5615 7.8418 11.1719 16.7334 21.7334\\\">direct</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 258.467 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 261.1232 179.2)\\\" x=\\\"0 2.7783 6.1084 11.6699\\\">from</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.1232 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 283.7795 179.2)\\\" x=\\\"0 2.7783 5.0586 13.3887\\\">time</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.7297 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 305.3859 179.2)\\\" x=\\\"0 2.8283\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 313.8258 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 316.532 179.2)\\\" x=\\\"0 2.7783 5.0586 13.3887 18.9502\\\">time.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.2605 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 340.9168 179.2)\\\" x=\\\"0 7.2217 12.7832 15.5615 17.8418 22.8418 28.4033\\\">Notices</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 374.3201 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 376.9764 179.2)\\\" x=\\\"0 2.8283\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 385.4162 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 388.1225 179.2)\\\" x=\\\"0 5.6115\\\">us</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 398.784 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 401.4902 179.2)\\\" x=\\\"0 5.5615 8.8916\\\">are</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 415.9434 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 418.5996 179.2)\\\" x=\\\"0 5.5615 11.1231 16.6846 25.0147 30.5762\\\">deemed</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.7373 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 457.3936 179.2)\\\" x=\\\"0 5.5615 7.8418 12.8418 18.4033\\\">given</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 481.3584 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 484.0147 179.2)\\\" x=\\\"0 7.2217 12.7832 18.3447\\\">when</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 507.9209 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 510.5771 179.2)\\\" x=\\\"0 2.7783 8.3398 13.9014\\\">they</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.4785 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 532.1348 179.2)\\\" x=\\\"0 5.5615 8.8916\\\">are</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 167.8816)\\\" x=\\\"0 5.5615 11.1231 14.4531 19.4531 25.0146 30.5762 36.1377 38.418 40.6982\\\">personally</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 78.7982 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.4545 167.8816)\\\" x=\\\"0 5.5615 7.8418 12.8418 18.4033\\\">given</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 105.4193 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 108.0756 167.8816)\\\" x=\\\"0 5.5615\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 116.9672 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 119.6234 167.8816)\\\" x=\\\"0 5.5615 10.5615 13.3398 18.9014 24.4629 26.7432 29.0234\\\">actually</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 153.6469 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 156.3031 167.8816)\\\" x=\\\"0 3.3301 8.8916 13.8916 19.4531 21.7334 26.7334 32.2949\\\">received</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 194.1596 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 196.8158 167.8816)\\\" x=\\\"0 5.6615\\\">at</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 205.3557 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 208.1119 167.8816)\\\" x=\\\"0 5.6115 11.223\\\">our</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 222.715 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 225.4213 167.8816)\\\" x=\\\"0 5.5615 11.123 16.6846 20.0146 25.5762 30.5762 35.5762\\\">address.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 263.7758 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 266.432 167.8816)\\\" x=\\\"0 7.2217 12.7832 15.5615 17.8418 22.8418 28.4033\\\">Notices</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.8353 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 302.4916 167.8816)\\\" x=\\\"0 5.6115 8.9916\\\">are</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 317.0947 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 319.801 167.8816)\\\" x=\\\"0 5.5615 11.123 16.6846 25.0146 30.5762\\\">deemed</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.9387 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 358.5949 167.8816)\\\" x=\\\"0 5.5615 7.8418 12.8418 18.4033\\\">given</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 382.5598 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 385.216 167.8816)\\\" x=\\\"0 2.8783\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.7559 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 396.5121 167.8816)\\\" x=\\\"0 5.05 10.6615\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 412.7852 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 415.4914 167.8816)\\\" x=\\\"0 7.2717 12.8832 18.4947\\\">when</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 439.5977 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 442.3039 167.8816)\\\" x=\\\"0 2.8283 8.4398 14.0514\\\">they</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 461.4053 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 464.1115 167.8816)\\\" x=\\\"0 5.6115 8.9916\\\">are</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 478.7147 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 481.4209 167.8816)\\\" x=\\\"0 5.5615 11.1231 14.4531 19.4531 25.0146 30.5762 36.1377 38.418 40.6982\\\">personally</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 527.1191 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 529.7754 167.8816)\\\" x=\\\"0 5.5615 7.8418 12.8418 18.4033\\\">given</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.7402 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 556.3965 167.8816)\\\" x=\\\"0 5.6615\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 156.5633)\\\" x=\\\"0 7.2717 12.8832 18.4947\\\">when</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 57.2063 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 59.9125 156.5633)\\\" x=\\\"0 5.5615 7.8418 13.4033 18.4033 23.9648\\\">placed</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 89.4389 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 92.0951 156.5633)\\\" x=\\\"0 2.3803\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 100.1369 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 102.8932 156.5633)\\\" x=\\\"0 2.8283 8.4398\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 116.9445 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 119.6508 156.5633)\\\" x=\\\"0 8.3301 13.8916 16.1719 18.4522\\\">mail,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 140.8813 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 143.5375 156.5633)\\\" x=\\\"0 5.5615 11.123 16.6846 20.0147 25.5762 30.5762 35.5762 41.1377\\\">addressed</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 190.2367 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 192.893 156.5633)\\\" x=\\\"0 2.7783\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 201.2328 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 203.8891 156.5633)\\\" x=\\\"0 5 10.5615\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 220.0121 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 222.6684 156.5633)\\\" x=\\\"0 5.5615\\\">at</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.0082 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 233.6645 156.5633)\\\" x=\\\"0 5 10.5615 16.123\\\">your</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 253.1176 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 255.7738 156.5633)\\\" x=\\\"0 5.5615 11.1231 16.6846 20.0147 25.5762 30.5762\\\">address</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.35 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 294.0062 156.5633)\\\" x=\\\"0 2.7783 8.3399 13.9014\\\">then</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 313.4691 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 316.1254 156.5633)\\\" x=\\\"0 5 10.5615 16.1231 23.3447\\\">shown</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 345.0316 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 347.6879 156.5633)\\\" x=\\\"0 5.5615\\\">on</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 358.8109 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 361.4672 156.5633)\\\" x=\\\"0 5.5615 11.1231\\\">our</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.9203 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 378.5766 156.5633)\\\" x=\\\"0 3.3301 8.8916 13.8916 19.4531 22.7832 28.3447 33.3447\\\">records,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 414.6996 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 417.3559 156.5633)\\\" x=\\\"0 5.5615 10.5615 16.123\\\">even</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 439.0404 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 441.6967 156.5633)\\\" x=\\\"0 2.7783 8.3398 13.9014 19.4629 25.0244\\\">though</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 472.2826 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 474.9389 156.5633)\\\" x=\\\"0 5 10.5615\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 491.0619 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 493.7182 156.5633)\\\" x=\\\"0 8.3301 10.6104 16.1719 21.7334\\\">might</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 518.2299 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 520.8861 156.5633)\\\" x=\\\"0 5.5615 11.123\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 145.2449)\\\" x=\\\"0 5.5615 10.5615 13.3398 18.9014 24.4629 26.7432 29.0234\\\">actually</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 67.1234 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 69.7797 145.2449)\\\" x=\\\"0 3.3301 8.8916 13.8916 19.4531 21.7334 26.7334\\\">receive</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 102.0746 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 104.7309 145.2449)\\\" x=\\\"0 5.5615 11.123\\\">our</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 119.184 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 121.8402 145.2449)\\\" x=\\\"0 8.3301 13.8916 16.1719 18.4521 24.0137\\\">mailed</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 151.4154 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 154.0717 145.2449)\\\" x=\\\"0 5.5615 11.1231 13.9014 16.1816 21.1816 26.7432\\\">notice.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 183.5932 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 186.2494 145.2449)\\\" x=\\\"0 6.6699 12.2314\\\">You</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 204.0424 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 206.6986 145.2449)\\\" x=\\\"0 5.8115 11.6231 15.2031 21.0146\\\">agree</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.5248 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 236.4311 145.2449)\\\" x=\\\"0 2.9283 8.6398 14.3514\\\">that</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 253.7107 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 256.517 145.2449)\\\" x=\\\"0 5.8615\\\">30</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 268.24 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 271.1963 145.2449)\\\" x=\\\"0 5.7115 11.4231 16.5731 21.7231\\\">days&apos;</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 294.9785 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 297.7848 145.2449)\\\" x=\\\"0 5.6615 11.3231 14.2014 16.5816 21.6816\\\">notice</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 325.1279 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 327.8842 145.2449)\\\" x=\\\"0 2.5803\\\">is</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.7645 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.7207 145.2449)\\\" x=\\\"0 3.4301 9.0916 14.7531 19.8531 25.5146 31.1762 36.8377 42.4992 44.8795 50.541\\\">reasonable,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 392.14 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 394.8963 145.2449)\\\" x=\\\"0 5.6615 11.3231 13.7033 19.3648 24.4648\\\">unless</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 424.4611 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 427.2174 145.2449)\\\" x=\\\"0 5.15 8.0783 13.7899 16.7182\\\">state</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 449.6471 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 452.4533 145.2449)\\\" x=\\\"0 2.5303 8.3418\\\">law</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.2668 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 471.173 145.2449)\\\" x=\\\"0 3.4301 9.0916 14.7531 20.4146 22.7949 26.225 31.8865\\\">requires</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 508.1596 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 510.9158 145.2449)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 517.0773 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 520.3336 145.2449)\\\" x=\\\"0 2.3803 8.0418 13.7033 19.3649 25.0264\\\">longer</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 133.9266)\\\" x=\\\"0 5.6615 11.3231 14.7531 17.1334 22.7949 28.4564\\\">period,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 64.4348 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 67.191 133.9266)\\\" x=\\\"0 2.5803\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 75.6328 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 78.5891 133.9266)\\\" x=\\\"0 7.3717 13.0832 15.5135 20.6635\\\">which</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 104.9641 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 107.7703 133.9266)\\\" x=\\\"0 5.15 10.8615 16.0115\\\">case</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 129.4934 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 132.2996 133.9266)\\\" x=\\\"0 5.25 11.0615\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 149.1727 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 152.0789 133.9266)\\\" x=\\\"0 5.7115 11.423 14.9031 20.6146\\\">agree</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 178.4051 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 181.2113 133.9266)\\\" x=\\\"0 2.9283 8.6398 14.3514\\\">that</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 198.491 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 201.2973 133.9266)\\\" x=\\\"0 3.0283 8.8398\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 215.9486 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 218.8549 133.9266)\\\" x=\\\"0 5.05 7.8783 13.4898 16.3182 21.9297 25.3098 28.7898 34.5014 40.2129 45.9244 48.3547 51.8348 57.5463\\\">state-required</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 282.1127 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 284.9189 133.9266)\\\" x=\\\"0 5.6615 11.3231 14.7531 17.1334 22.7949\\\">period</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 313.3754 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 316.1316 133.9266)\\\" x=\\\"0 2.5803\\\">is</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 324.0119 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 329.5182 133.9266)\\\" x=\\\"0 3.3301 8.8916 14.4531 19.4531 25.0147 30.5762 36.1377 41.6992 43.9795 49.541\\\">reasonable.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 381.8375 133.9266)\\\" x=\\\"0 2.6562\\\">  </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 387.15 133.9266)\\\" x=\\\"0 6.6699 12.2314\\\">You</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 404.943 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.5992 133.9266)\\\" x=\\\"0 5.5615 11.123 13.9014 19.4629 25.0244 28.3545 30.6348 35.6348\\\">authorize</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 448.7955 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 451.4518 133.9266)\\\" x=\\\"0 5.5615\\\">us</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 462.0133 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 464.6695 133.9266)\\\" x=\\\"0 2.7783\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 473.0094 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 475.6656 133.9266)\\\" x=\\\"0 5 10.5615 16.123\\\">send</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 497.3502 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 500.0064 133.9266)\\\" x=\\\"0 5.5615 11.1231 13.9014 16.1816 21.1816 26.7432\\\">notices</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 531.7496 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 534.4059 133.9266)\\\" x=\\\"0 2.7783\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 542.7457 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 545.402 133.9266)\\\" x=\\\"0 5 10.5615 16.123\\\">your</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 122.6082)\\\" x=\\\"0 5.56 13.89 19.45 21.73 24.01 26.67 32.23 37.79 43.35 46.68 52.24 57.24 62.24 64.9 70.46 76.02 78.3 83.86 88.86 93.86 96.52 102.08 105.41 110.97 116.53 118.81 124.37 126.65 129.43 134.99 140.55 143.21 148.77 153.77 156.43 158.71 164.27 171.49\\\">email address unless prohibited by law.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 109.2898)\\\" x=\\\"0 5 12.22 19.44\\\">JURY</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 59.2133 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 63.5195 109.2898)\\\" x=\\\"0 6.11 13.33 16.11 22.78\\\">TRIAL</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 91.8594 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 96.1656 109.2898)\\\" x=\\\"0 9.44 16.11 18.89 25.56 32.23\\\">WAIVER</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 135.6138 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 139.9201 109.2898)\\\" x=\\\"0 6.67 13.89\\\">AND</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 161.0334 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 165.3396 109.2898)\\\" x=\\\"0 6.67 13.89 20.56 23.34 29.45 36.67 43.34 49.45 52.23 60.01\\\">ARBITRATION</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 232.5662 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 236.8724 109.2898)\\\" x=\\\"0 7.22 12.78 19.45 26.67 33.34 40.01\\\">CLAUSE.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 279.6654 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 283.9716 109.2898)\\\" x=\\\"0 6.67\\\">By</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 295.6415 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 299.9478 109.2898)\\\" x=\\\"0 5 7.28 12.84 18.4 20.68 26.24 31.8\\\">signing,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 334.5327 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.8389 109.2898)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 354.962 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 359.2682 109.2898)\\\" x=\\\"0 5.56 11.12 14.45 20.01\\\">agree</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 384.8444 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 389.1507 109.2898)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 397.4905 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 401.7967 109.2898)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 417.4168 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 421.7231 109.2898)\\\" x=\\\"0 5 10.56 13.89\\\">Jury</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 440.6147 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 444.9209 109.2898)\\\" x=\\\"0 6.11 9.44 11.72 17.28\\\">Trial</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 464.4815 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 468.7877 109.2898)\\\" x=\\\"0 9.44 15 17.28 22.28 27.84\\\">Waiver</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.9596 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 504.2658 109.2898)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 520.9504 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 525.2566 109.2898)\\\" x=\\\"0 6.67 10 15.56 17.84 20.62 23.95 29.51 32.29 34.57 40.13\\\">Arbitration</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 97.9715)\\\" x=\\\"0 7.22 9.5 15.06 20.62 25.62 31.18 33.84 37.17 40.5 47.72 50 55.56 61.12 66.12 71.68 75.01 78.34\\\">Clause (“Clause”).</text></g><clipPath id=\\\"clip3-3\\\"><path d=\\\"M 35 76 L 573 76 L 573 94 L 35 94 L 35 76 z \\\"/></clipPath><path clip-path=\\\"url(#clip3-3)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 93.8719 L 572.95 93.8719 L 572.95 76.8719 L 35.45 76.8719 L 35.45 93.8719 z \\\"/><path clip-path=\\\"url(#clip3-3)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.15 91.8719 L 572.45 91.8719 L 572.45 80.5535 L 39.15 80.5535 L 39.15 91.8719 z \\\"/><path clip-path=\\\"url(#clip3-3)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 253.9396 91.8719 L 357.9396 91.8719 L 357.9396 79.8719 L 253.9396 79.8719 L 253.9396 91.8719 z \\\"/><g clip-path=\\\"url(#clip3-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 253.9396 82.6531)\\\" x=\\\"0 6.67 12.23 17.23 22.23 27.79 31.12 36.68 42.24 47.8 53.36 56.02 61.58 67.14 72.7 75.36 82.03 87.03 92.59 98.15\\\">Background and Scope</text></g><clipPath id=\\\"clip3-4\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip3-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 94.3719 L 573.45 94.3719 L 573.45 93.3719 L 34.95 93.3719 L 34.95 94.3719 z \\\"/><path clip-path=\\\"url(#clip3-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 77.3719 L 573.45 77.3719 L 573.45 76.3719 L 34.95 76.3719 L 34.95 77.3719 z \\\"/><path clip-path=\\\"url(#clip3-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 93.3719 L 573.45 93.3719 L 573.45 77.3719 L 572.45 77.3719 L 572.45 93.3719 z \\\"/><path clip-path=\\\"url(#clip3-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 93.3719 L 35.95 93.3719 L 35.95 77.3719 L 34.95 77.3719 L 34.95 93.3719 z \\\"/><g clip-path=\\\"url(#clip3-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 36.5264)\\\" x=\\\"0 6.498 11.997 14.391 16.785 21.789 26.793 29.295 34.299 39.303 44.307 504 506.3906 508.7812 511.1719 513.5625 515.9531 518.3438 520.7344 523.125 525.5156\\\">UT  07/2019          </text></g><g clip-path=\\\"url(#clip3-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 26.3398)\\\" x=\\\"0 6.003 11.007 16.011 21.015\\\">Page </text></g><g clip-path=\\\"url(#clip3-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 55.8097 26.3398)\\\" x=\\\"0\\\">4</text></g><g clip-path=\\\"url(#clip3-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.815 26.3398)\\\" x=\\\"0 2.394 7.398 9.9\\\"> of </text></g><g clip-path=\\\"url(#clip3-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 73.1021 26.3398)\\\" x=\\\"0\\\">7</text></g><g clip-path=\\\"url(#clip3-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#d9d9d9\\\" style=\\\"font-family:f3-0; font-size:54pt; white-space:pre\\\" transform=\\\"matrix(0.707 0.707 0.707 -0.707 135.6027 198.5094)\\\" x=\\\"0 56.016 96.048 136.08 176.112 216.144 236.16 284.184 324.216 344.232 364.248 416.232 456.264 480.24\\\">* D E M O *are</text></g><g clip-path=\\\"url(#clip3-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#002ba6\\\" style=\\\"font-family:f3-0; font-size:9pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.932 772)\\\" x=\\\"0 9.336 16.008 22.68 29.352 36.024 39.36 47.364 54.036 57.372 60.708 69.372 76.044 80.04 86.712 90.048 94.044 97.38 104.712 111.384 115.38 118.716 126.72 132.72 139.392 142.056 148.728 155.4 158.736 161.4 168.072 174.744 178.08 187.416 194.088 196.752 202.752 206.088 210.084 213.42 220.092 223.428 226.764 233.436 239.436 242.772 246.108 249.444 258.108 266.772 275.436 278.772 285.444 292.116 298.788 305.46 312.132 315.468 321.468 328.14\\\">Qoppa Software - For Evaluation Only - https://www.qoppa.com</text></g></g></svg></svg></g></svg><br>\\n<?xml version='1.0' encoding='UTF-8'?><svg id=\\\"qoppa_document\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" version=\\\"1.1\\\" xmlns=\\\"http://www.w3.org/2000/svg\\\" xmlns:xlink=\\\"http://www.w3.org/1999/xlink\\\"><!-- jPDFWeb v2019R1.03 - Demo Version --><style>title p { display: block; }</style><g id=\\\"qoppa_viewxform\\\" transform=\\\"matrix(1 0 0 1 0 0)\\\"><style type=\\\"text/css\\\">@font-face {font-family:f4-0;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f4-1;src:url(\\\"data:application/font-woff;charset=utf-8;base64,d09GRgABAAAAABJAAAoAAAAAGXAAAQABAAAAAAAAAAAAAAAAAAAAAAAAAABPUy8yAAAA9AAAADcAAABWXq1b6mNtYXAAAAEsAAAAbwAAAIwCTwMmZ2x5ZgAAAZwAAA5HAAAUJJG2JE9oZWFkAAAP5AAAADEAAAA2HL9rVmhoZWEAABAYAAAAIAAAACQOWQX9aG10eAAAEDgAAAC5AAABGBjqGZNsb2NhAAAQ9AAAAJAAAACQp5asOG1heHAAABGEAAAAGAAAACAASwA1bmFtZQAAEZwAAACYAAABdhyGNgFwb3N0AAASNAAAAAwAAAAgAAMAAHicY2Bk8mKcwMDKwMDUxbSbARlwMeogc/8DATI/MCDAkUEBCG+y5f4LYtjBlsu4DiYHAMOSDEgAeJx1jTEKwgAUQ5/o2MEDOEgRiuAJXMRFpDiIUMSx13DygG5qWwcR60Genzo3EAJ5gQADhmFIGHGJnDCOJmFKyow5S1ZsyNlTcOTEWWP1pxmLoGu27Dh0tFS/tn58+/JpY23lw7s3r91Pr37FPSNgAHiclVcLVFRXln33vqriq6HEgtBI9FEWhKCiPApEAY0CFkj4i2ATfpEC+aj8YoBW5I8iKoqKNH5GbZtls6rVGNQSumPhmKQVxRiXiQxxEsempR11OU7ahqrrnPteFcGsdK+ey6rHq3r33HvOvvvscx6DmUT2LK6W6hkpY8cwSKlw5B1VwhVxAws2zEUZ9CrVPyUjyOWpcGVgsEz0q2iJs6yQkTFTmLlg6eTspJhuxXp4eqj9ApydnHmsUisVMiuZwkEq9/BUTpMqeLV/gL/az9PDExdu8/EZyU9bvOh2/jmHfiXpzNevL0T7/sPJMAO1539eVJSS8hLvn71wYS5xw0Nv8vzGQRV20aNY144OeUHBGXI1znRLNUY+nHvw13bVNb/vysziqV+ISWXPIi8hHnM0yGtSBOKcShKPM6S3GRv6Re6AlPSCM8gd5F1NOtFaEo/uo+/Q9+g+8SVTyFTiK9pFgp2PaOdITXh6iUTe5E41GHVKbxOOvEVmEg7dQM/R/6AbYNND7qNaZoCxZRjAlZ+uVPgCCKh2IDs7289vYOByRkxMLcxbhi7gXFwIyDKIU3A413QPe+DCT+i+PXCha7DiGmAMA36HgQMhVvjdBvEIdZHkVtQl1Y+Fw48MZlJfjUicwd83GGewdPf0kDsE+PO+zk5yBysZO0vuwMEHB27XwNjeTK/NRImG0beVDQ0oEa1qbGpqJL8j3Q0N0mSTtckev8AvqT8PKAFgXWuKMeYgIjnPMq08+e3T4l5A4Ye2qPEqmLeEYSS2MI+D3Tl/1Wzx9JXuVjIr3l/0BDgjo38KTmJrCpIiKZIlJ2/aNHSjaotDv2109Pqq8PD4+G+HExLYa7ql9+5VVB49U/ZhacnlpvDw8LDyxvy8j89WVDSI57MG4nWF/ebDF//XNhO34gA8855KQEOtBNLyvuJEVpLry5eWXjlTXq4w/OI/C4OCyBNvTWdcfEx0XVNERL9tTc3NG83NERpWNSchMa0rLz8rU/9o8eINxr0rI7c3rloVHV2gLyqqqrrWlJ0N2M+E2KdLB+BuCrAFyTmlXIkUnJyX8zeRAdVebTNl4+K+q1iCj5oy2C+MASfJMZQmxJEEcXBwhO6UC2qO5f0nu+052W2ID+XhIuOTkLbCQ9uSklYlNuW/F+XQr6ir0z9o2tbUdP54odReZxwrT0npaM/JWfpu/fWcnLZ9339dXZNs4YgbYDaFeZuiNnkjdppwRjzktBKIMnlT5NL2682RKyMiKpoTEvAbCYmNt1wMLsXFvzGN1dU9Gdy8pWrLhV5cfzg9vW1PVlZjI9qJ7Hbu+uaT1FTjEOm6cH7P3ls36htorFmAkzPEKhN5DzSWOBtX4mem4dtYIdXrxl5I1ZRuSWY/32BcGUh1ZDlDvwD/AMADCXdm7ydOXjHdWQIfs+PsmtiYmpqYmLCw/QfCwsj9keCQgsLgEPXfyso+/eOHZS/JzfqGr7+pb0D1v1oB41fpoWHLl4eFooLc09mBMLJP9+y6e0QL48jdXS3PLpYUF5dcfAYYJpnzTMRwwi/qjSMW/BSODDCccAtcYtcAhisjzRg6JCQ0fvmm4c3ikhPYimK4BUA838eqD6WJGDaQYvJi106KIatCKefP791z60ZDPT1DQR8kKkDJSlA9Xj6hEhLVgKmMshCYJXEAH1lGaVaRaa/lH0+BnJw0+PDAAKl951llVNSMGaUl3t6nZ8yorJwzt6bm9mc11XJY2htNXxlZsljtl5W1OknfEhSs1SYmZuk2FpUU91NpekUYRpoMZ2tF1Q8pEe/IOfLIEbH4lmlg4BjWnhoyRv6AMFUs9AeyDCfjLlOyWF9OgL+PwdYapHY25YbgrBckkoWhHKKlRHSYk3OzAvyRFmm+io0jJ8gR5Hc+MjIq6t+Inm1YEb7zdkPDqOkHrEJ2O3bgk8FBtUZJWoB/wUd+PEmqzMicrf1Kt3btWPj69UL+ZbwakaaJuiUF5gQoZSLZLPJpTgkrGU0K1vbvx48rPp+al9c9XF1dU3P/NwWF9p8rurqeki/0Fy/qXbZuHe1MTOzoQDOQ28GO+Pjm29XVA9fJcXJ84Log4TRWaQbEasvIaaSzRIH2QlZUn70QhGWHlpaUlpaSy+R/DegW/qtJQXyk9rt3k7+T5/vadPghvgN+U8wewTp2VG/loBziR/LIuJn1Mt5lM8eHJWE69EyHPtWNhYuaSW1o/ae1kKqTaFFtVBrwGVMM60rPBrfr0FVxrlQpro+Uck6upPPlvFTZb5IZDHisX6o3ncRrwOCsKRrm98K8KrE+wXweVfX30+WEfQNejbCp8Gya8EzIZmCtOVflbKph4cJ1n/Xn5fVcy82V6o3yPy5ejOw9ezZs2FiEppj99hHrvIp6wkl8TAEGtlkntYcdhOcyGTy3p3HZCKGBtsh5mYwMkyJSQoYvoGM6dOyCVD++SHJ1LFxyf5yjn0lx2gi+UdfBVqq8aGKuXmCZz8CiUlIPFvXjlcL5Ub4MCdo08+fqrMgTSlAqAKzbvZaWlp3D3+zY0bLjHrn27zCQGvldgdHSeQg5ozc7YZC/kL90dkrDBwfJKfK7W4ODgygJJQ0OmvkiMQqxuZozw5ISLC8kgtBkQVYAczZULQ+dMyc25hJpMRhQEbJraVmxoqL8nGlYaj9tWmhocl14uMkaR5aUfLt9w0bO3cLHPCH3OIGP5nTz8Jxo4GjG8UIqOkNGa9FNtCg+7hMSwxbFHjyYnBwaWlBwyrTJgHI2JiWptn8pdRnbERhI1n+9QDJTq22vz8vjOGBJybJluaTc3LeBhj4GDBeIOSfu4ulhVtJZjkLKmbVzIl5LNcQDz/cfiI8vKbnSr1mRknIMxbj12bS3v3y8a2fh+nFjTs7aD453V5S/ccn6YIfL5s19+5JT3nnH23vevNTs4GDyw5clIOVnoVj5qwMCykuWL4+OOXGvuVnwC3pbSY+gYUJ9olFLesY3oe/60UOxPNmLeQQcoJxxMWuGvwvwxkH0kd4KbuMHl7duXbK0PzPz0qXMTAPnvqXKJWTJli3Ilo01fkzu/xIG4tj3jKfPNDR88AFdF9azKhd5bIOVNlRFaa8n6yZDpOcR6SFD19E+PcpEGXq0H5iZJDlFP8DOsXHKf7oGqK80SjhPugaidJZkkCgS+RgvNeClkLXv4+PGj017cSH7Hpx/NOTmiCSY+QXjwTAcL6cKO8vchQDy0AyIeaqWWYowx7PevcXF18lKRa+18aOAAHv7VFOVVnv4wW7f1avf1wYFoY5qrPvvuDhy8Zy7ux9fTHY0Jq1qOKWBc5gTd1/UwWbggLcQq9tPehEqNWpRGsxNj6b6UEVoqEZTcai8r+/DbkPV1uLiwTNb8IsebfaVm+tyqyV/GAuPzz/QjqTje9sOCDhoIK6HENdPdd1SrJ0tJKP5igN1pWUKgyR0eXpjIozG9OWhEoOirFT3fVNjY5NLcvLJNF9fbc6frmlzfH3TTyYnt7aSv5GXe1qFWOheIxCLA40FMFTKxZUtyE3aF6Dr3dR9eWuVEEH14fKwUE1E+aEKqZ645LUfIMbxtrb2sz3Z2is3c9dVi2tLvCEOa1rLkbmTdkaTQ/Lk1A4/xoIcnOLiikpjY53JaM+WKqd+SWzMB7VrUuzZmU2ND77dvm3nTlzesTIqKuqgaX1Kyon3ed+UlAtzkU1ra9teYiRje/dQ/BwgsCzIUQV8USvN3qtpc6igTQcvxwu+4NzDFi30/SW529nZy7a2paZ7eNqesCen09qMG9hW8Zw1JF7glz3j9ZN+KUCpmAyTePpq5XShe2K9f8RmMmIaTd1of0np5/DWtcCCkjF+Ajn1V5oI3d7Vq7HAAchqlvYVcrEmyUWWwY0DR1nV17d7d948nz5y8HSLUPpengoMrDHF4x7UeETgKNhphJpm7rUUtLKBXV+fVH/9i/Eh6HsukETzHMeJOSKPFWIrKsx3cgrh/X3fq9ZoBMOTdd5zph611az4rwk/X4q1lia9UGsDEI+D0Z4nJAcoj1K+wx2omSSxS6B7OllmemixM+8t1lwN9ctcc+GZTAW4z4IvNFyZFQVb/RoMlhuZiuhXREbmLX10vKGvr3bbGg+P3rptKR4efRQKd27zp0cax4cAnoUL6wAe83/mR4xhn38BY4lKWOR1jC38nqink3p7GWvmtCAGwHEcKKaneBVy8/sH9M21UszNHO21P+VoWYMlO1v3IGtKbHqWJFfY5+f1Rv7/0xvWa2w5Gp0kOJTnuWaeu/1znsPr8z/gdu/PUtr0yIIzPgvrwxsmeu0k8dl5bx/a1NeXs3vl2xK1dXcbgPzkAG2FmCWgS6fBxuv1Omv2i8fcT2vsLE/lNCyD/Ep7//Kn8+eHLEm/a9trQ9LPFeQnrb7UGxQUElxGxnDfdJf0jNb2kJB5Pq4zQsJmz96PvFYn1e1ZtMjH5y03TcSC+QZyCvZXvnqOPaVzaV1TiYiAssO7MX1lEYsk4IE95y6YP8O1u7u3tnbKFH//0oiQFmu3twrx2jZkTV62mU5ufPfdd7zsYb1GoVapKNcElTWvCbWX8w2gylp7OG/evD6UQ7lmsqZMwzpTJPnoqMhV6KCgJqjo+yetjTxiXcgIGbmOWrtQq0RlNLAh40Pw3FJHe+GeAmmHlHa0GLvSN9bH/c+6n/bfQkvPPfzzObQEzO4KDbfX+BBrb3whmIP9VNjrOXwRcxrMbYRijvPQutFHj0bROvLRKJDTehR7ISNpQSUEm75Bh0kW9RM0k/oJ/bKjRUfgDwktAf5s3hx+Rfq7y972WoRar5sDSHnFTNVNDVyYEN9uCeSV4AecPXsH1rKhvTNS09duBcfeMUXifcZOvN6Uz3YfxQ+PHjW5Akj/B9Q9F2wAeJxjYGRgYADibRP2s8fz23xl4OZgAIHb5gJnYfT/Hf+C2CvZcoHqOBiYQKIAPcQLpAAAAHicY2BkYGDL/RfEsIO99/+O/zfYKxmAIijAFQCxGgdleJwtjjEKwkAQRX9CopBCbCWFgpWFtaQKWImFlWwhQcQj2HqAFMFbbBMPIBbWHsDGA+QexrebLDz+n50/syt1J7zDDL7aRxftglJFWOsK2zDTA117zST6BTSQwwGmYPr7c++Ny6PH2LS/2MjGb53AOh81vrZkXpG0ImcHdXc3yMh1eZctyC6dH940oU7c/6BiboN62DPufRV8HO2TvvfsrXy+7/t87edz5ubUJT7ljQQdKdXiD42+PXQAAAAAAAAAAAAAAAAAABwAaAB6AJYAsADEANIA3gDuARoBLgFmAawBygIAAkACVAKiAuIC9AMuA0wDigPCA+YEAAQWBC4EPARcBGwEigSiBNoFCgVEBZAFpAXQBfIGCgZGBnYGrAbaBxYHOgd4B5gHqgfMB+gH9ggqCEoIfgiuCN4I+Ak4CWAJgAmWCbYJ1An6ChJ4nGNgZGBgcGcwYWBmAAFGBjQAAA0mAIF4nKWMPQrCYBBEX0z8a60s0wuiEaystFAQiSBIsBM1MSB+YmxsPIEH8xgexUnyncCwDLzZ2VmgyQ4Xx2sDHalkh7FcyTVaLCy7TFhb9sRvy3W6fCw3tP8yw3DjyZ2UhDMPQiKWas9Z0ZNSDkoNmRQr99mw5yqf06loxkyVXjj+2X4xIqjU3RY+08bowmdIn4Gmws8fDdE2pHicY2BmwAsAAH0ABA==\\\");}@font-face {font-family:f4-2;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}</style><svg id=\\\"qoppa_page_p4\\\" class=\\\"qoppa_page\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\"><rect class=\\\"qoppa_pageborder\\\" x=\\\"0.5pt\\\" y=\\\"0.5pt\\\" width=\\\"611pt\\\" height=\\\"791pt\\\" fill=\\\"none\\\" /><svg class=\\\"qoppa_pagecontents\\\" x=\\\"0pt\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" viewBox=\\\"0 0 612 792\\\" ><g class=\\\"qoppa_contentstream\\\" transform=\\\"matrix(1 0 0 -1 0 792)\\\" fill=\\\"black\\\" stroke=\\\"black\\\" stroke-width=\\\"1\\\" stroke-linecap=\\\"butt\\\" stroke-linejoin=\\\"miter\\\" stroke-miterlimit=\\\"10\\\"><clipPath id=\\\"clip4-1\\\"><path d=\\\"M 35 748 L 130 748 L 130 770 L 35 770 L 35 748 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-1)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 769.7 L 129.35 769.7 L 129.35 748.5906 L 35.45 748.5906 L 35.45 769.7 z \\\"/><path clip-path=\\\"url(#clip4-1)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 767.7 L 125.25 767.7 L 125.25 758.6453 L 39.55 758.6453 L 39.55 767.7 z \\\"/><path clip-path=\\\"url(#clip4-1)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 47.9683 767.7 L 116.9684 767.7 L 116.9684 757.7 L 47.9683 757.7 L 47.9683 767.7 z \\\"/><g clip-path=\\\"url(#clip4-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.9684 760.325)\\\" x=\\\"0 7.552 12 16.448 18.672 20.8 22.624 26.624 28.752 33.2 35.864 40.312 42.136 44.36 47.024 51.472 53.696 55.52 59.968 64.416\\\">What is arbitration?</text></g><clipPath id=\\\"clip4-2\\\"><path d=\\\"M 129 748 L 206 748 L 206 770 L 129 770 L 129 748 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 138.6945 760.325)\\\" x=\\\"0 5.336 9.784 11.912 16.36 18.184 20.408 24.856 27.52 31.968 36.416 38.64 40.464 44.464 48.912 51.04 53.264\\\">An alternative to</text></g><g clip-path=\\\"url(#clip4-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 157.5461 751.2703)\\\" x=\\\"0 4 8.448 12.896 15.56 17.784\\\">court.</text></g><clipPath id=\\\"clip4-3\\\"><path d=\\\"M 205 748 L 573 748 L 573 770 L 205 770 L 205 748 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 760.325)\\\" x=\\\"0 2.224\\\">In</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 216.5219 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 220.3852 760.325)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 26.768 31.216 35.664\\\">arbitration,</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 258.2758 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 262.139 760.325)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 266.5883 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 270.4515 760.325)\\\" x=\\\"0 2.224 6.672 8.496 11.16\\\">third</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 286.0609 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 289.9242 760.325)\\\" x=\\\"0 4.448 8.896 11.56 13.784\\\">party</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 307.7094 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 311.5727 760.325)\\\" x=\\\"0 2.664 5.504 10.84 13.504 17.952 19.776 22 26.448 29.112 31.952\\\">(&quot;Arbiter&quot;)</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 346.1898 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 350.0531 760.325)\\\" x=\\\"0 4 8.448 10.272 14.272 18.72\\\">solves</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 372.7758 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 376.639 760.325)\\\" x=\\\"0 5.776 7.6 11.6 16.048 20.496 22.72 27.168\\\">Disputes</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 407.8109 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 411.6742 760.325)\\\" x=\\\"0 1.824\\\">in</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 417.9477 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 421.8109 760.325)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 426.2601 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 430.1234 760.325)\\\" x=\\\"0 4.448 8.896 13.344 16.008 17.832 22.28\\\">hearing</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.8578 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 460.7211 760.325)\\\" x=\\\"0 2.664 5.504 9.952 14.4 18.848 21.512 23.336 27.784 32.232 35.072 37.736\\\">(&quot;hearing&quot;).</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 500.6859 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 504.5492 760.325)\\\" x=\\\"0 5.336 9.784 14.232\\\">You,</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.0062 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 524.8695 760.325)\\\" x=\\\"0 2.664 7.112 8.936 13.384 15.608 20.056\\\">related</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.3773 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 553.2406 760.325)\\\" x=\\\"0 2.224 6.672 8.496 11.16\\\">third</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 751.2703)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056 24.056 26.28 28.408 32.856 37.304 41.752 43.88 49.656 54.104 56.328 58.456 64.232 68.68 70.504 74.504 78.952 81.08 83.304 87.752 92.2 94.328 96.992 98.816 103.264 107.712 109.936 112.064 114.288 118.736 120.864 125.312 129.76 131.888 134.112 138.56 140.688 144.688 149.136 153.584 156.248 158.472 160.696 162.824 168.16 172.608 176.608 181.056 183.184 186.024 190.472 194.92 197.584 199.808 201.632 206.08 210.08 212.92 215.048 217.272 221.72 224.384 228.832 233.28 235.408 237.232 241.68 244.344 248.344 250.472 252.696 255.36 257.184 261.632 263.456 267.456\\\">parties, and we, waive the right to go to court. Such &quot;parties&quot; forgo jury trials.</text></g><clipPath id=\\\"clip4-4\\\"><path d=\\\"M 35 727 L 130 727 L 130 749 L 35 749 L 35 727 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-4)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 748.5906 L 129.35 748.5906 L 129.35 727.4813 L 35.45 727.4813 L 35.45 748.5906 z \\\"/><path clip-path=\\\"url(#clip4-4)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 746.5906 L 125.25 746.5906 L 125.25 728.4813 L 39.55 728.4813 L 39.55 746.5906 z \\\"/><path clip-path=\\\"url(#clip4-4)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 41.6461 746.5906 L 123.6461 746.5906 L 123.6461 736.5906 L 41.6461 736.5906 L 41.6461 746.5906 z \\\"/><g clip-path=\\\"url(#clip4-4)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 41.6461 739.2156)\\\" x=\\\"0 2.224 6.224 8.352 10.176 12.4 14.528 18.976 20.8 23.024 25.248 29.696 32.36 36.808 41.256 43.48 45.608 47.832 50.496 54.944 61.608 63.736 67.736 72.184 76.632 79.296\\\">Is it different from court</text></g><path clip-path=\\\"url(#clip4-4)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 56.4156 737.5359 L 108.4156 737.5359 L 108.4156 727.5359 L 56.4156 727.5359 L 56.4156 737.5359 z \\\"/><g clip-path=\\\"url(#clip4-4)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 56.4156 730.1609)\\\" x=\\\"0 4.448 8.896 13.344 15.472 17.296 21.744 24.408 28.408 30.536 32.76 35.424 37.248 41.696 43.52 47.52\\\">and jury trials?</text></g><clipPath id=\\\"clip4-5\\\"><path d=\\\"M 129 727 L 206 727 L 206 749 L 129 749 L 129 727 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-5)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 159.5461 739.2156)\\\" x=\\\"0 5.336 9.784 13.784\\\">Yes.</text></g><clipPath id=\\\"clip4-6\\\"><path d=\\\"M 205 727 L 573 727 L 573 749 L 205 749 L 205 727 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 739.2156)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 223.6351 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 226.6552 739.2156)\\\" x=\\\"0 4.448 8.896 13.344 16.008 17.832 22.28\\\">hearing</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 253.3896 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 256.4096 739.2156)\\\" x=\\\"0 1.824\\\">is</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.2338 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 265.2539 739.2156)\\\" x=\\\"0 4.448 7.112 8.936 12.936 17.384 19.608\\\">private</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 289.3125 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 292.3325 739.2156)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 305.6802 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 308.7002 739.2156)\\\" x=\\\"0 1.824 6.272 10.272\\\">less</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 322.9737 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 325.9937 739.2156)\\\" x=\\\"0 2.224 6.672 9.336 16 20.448\\\">formal</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.2672 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 351.2872 739.2156)\\\" x=\\\"0 2.224 6.672 11.12\\\">than</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 366.8575 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 369.8776 739.2156)\\\" x=\\\"0 4 8.448 12.896 15.56 17.784\\\">court.</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 389.8854 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 392.9055 739.2156)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608\\\">Arbiters</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 420.5148 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 423.5349 739.2156)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 438.6482 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 441.6682 739.2156)\\\" x=\\\"0 1.824 3.648 10.312 12.136\\\">limit</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.0276 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 459.0477 739.2156)\\\" x=\\\"0 4.448 7.112 11.56 14.224 18.672 23.12 27.568 30.232 32.056 36.504\\\">pre-hearing</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 500.0086 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 503.0286 739.2156)\\\" x=\\\"0 2.224 6.672 10.672\\\">fact</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 515.9232 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 518.9432 739.2156)\\\" x=\\\"0 2.224 4.048 8.496 12.944 14.768 19.216 23.664\\\">finding,</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 544.8338 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 547.8539 739.2156)\\\" x=\\\"0 4 8.448 10.272 12.096 16.544\\\">called</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 730.1609)\\\" x=\\\"0 2.84 7.288 9.112 13.112 17.112 21.56 25.56 30.008 32.672 36.672 38.896 41.736 43.864 48.752 53.2 57.648 59.776 64.224 68.672 72.672 74.496 78.496 80.32 84.768 89.216 91.344 93.168 97.168 99.296 101.52 103.344 107.792 112.24 114.064 116.288 118.416 124.192 128.64 133.088 135.752 137.976 141.976 144.104 146.768 151.216 153.88 158.328 160.152 164.152 166.28 170.728 174.728 179.176 181.84 184.064 188.512 191.176 195.624 197.752 203.088 205.752 210.2 212.024 214.248 218.696 221.36 225.36\\\">&quot;discovery.&quot; The decision is final. Courts rarely overturn Arbiters.</text></g><clipPath id=\\\"clip4-7\\\"><path d=\\\"M 35 706 L 130 706 L 130 728 L 35 728 L 35 706 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-7)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 727.4813 L 129.35 727.4813 L 129.35 706.3719 L 35.45 706.3719 L 35.45 727.4813 z \\\"/><path clip-path=\\\"url(#clip4-7)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 725.4813 L 125.25 725.4813 L 125.25 707.3719 L 39.55 707.3719 L 39.55 725.4813 z \\\"/><path clip-path=\\\"url(#clip4-7)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 44.2789 725.4813 L 121.2789 725.4813 L 121.2789 715.4813 L 44.2789 715.4813 L 44.2789 725.4813 z \\\"/><g clip-path=\\\"url(#clip4-7)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 44.2789 718.1062)\\\" x=\\\"0 7.552 12 16.448 18.576 23.024 27.472 31.92 35.92 38.048 40.272 44.72 49.168 51.296 57.072 58.896 63.344 67.792 71.792\\\">Who does the Clause</text></g><path clip-path=\\\"url(#clip4-7)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 70.3941 716.4266 L 95.3941 716.4266 L 95.3941 706.4266 L 70.3941 706.4266 L 70.3941 716.4266 z \\\"/><g clip-path=\\\"url(#clip4-7)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 70.3941 709.0516)\\\" x=\\\"0 4 8.448 12.448 16.896 19.56\\\">cover?</text></g><clipPath id=\\\"clip4-8\\\"><path d=\\\"M 129 706 L 206 706 L 206 728 L 129 728 L 129 706 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 144.5226 718.1062)\\\" x=\\\"0 5.336 9.784 14.232 16.456 18.584 24.36 28.36 30.584 32.712 37.16 41.608\\\">You, Us, and</text></g><g clip-path=\\\"url(#clip4-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 154.4348 709.0516)\\\" x=\\\"0 6.224 8.448 12.896 17.344 20.008 24.008\\\">Others.</text></g><clipPath id=\\\"clip4-9\\\"><path d=\\\"M 205 706 L 573 706 L 573 728 L 205 728 L 205 706 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 718.1062)\\\" x=\\\"0 4.888 9.336 11.16\\\">This</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.0101 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 228.5163 718.1062)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496\\\">Clause</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 253.4655 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 256.9716 718.1062)\\\" x=\\\"0 4.448 8.896 12.896 17.344 20.008 24.456\\\">governs</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 285.4326 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 288.9387 718.1062)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 300.0598 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 303.5659 718.1062)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056 24.056\\\">parties,</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.8472 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 333.3533 718.1062)\\\" x=\\\"0 2.224 6.672 11.12 12.944\\\">their</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.9627 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 352.4688 718.1062)\\\" x=\\\"0 4.448 8.896 10.72 13.384 17.384\\\">heirs,</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 372.0782 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 375.5844 718.1062)\\\" x=\\\"0 4 8.448 12.448 16.448 20.896 24.896 28.896 33.344 36.008 40.008\\\">successors,</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 417.8187 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 421.3249 718.1062)\\\" x=\\\"0 4.448 8.448 12.448 14.272 18.72 23.168 27.168\\\">assigns,</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 450.7194 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 454.2255 718.1062)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.5732 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 471.0793 718.1062)\\\" x=\\\"0 2.224 6.672 8.496 11.16\\\">third</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.6887 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 490.1949 718.1062)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056\\\">parties</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 514.2535 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 517.7596 718.1062)\\\" x=\\\"0 2.664 7.112 8.936 13.384 15.608 20.056\\\">related</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 542.2674 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 545.7735 718.1062)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.4454 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 555.9515 718.1062)\\\" x=\\\"0 4.448 8.896\\\">any</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 709.0516)\\\" x=\\\"0 5.776 7.6 11.6 16.048 20.496 22.72 27.168\\\">Dispute.</text></g><clipPath id=\\\"clip4-10\\\"><path d=\\\"M 35 630 L 130 630 L 130 707 L 35 707 L 35 630 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-10)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 706.3719 L 129.35 706.3719 L 129.35 630.9344 L 35.45 630.9344 L 35.45 706.3719 z \\\"/><path clip-path=\\\"url(#clip4-10)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 704.3719 L 125.25 704.3719 L 125.25 686.2625 L 39.55 686.2625 L 39.55 704.3719 z \\\"/><path clip-path=\\\"url(#clip4-10)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 47.7711 704.3719 L 117.7711 704.3719 L 117.7711 694.3719 L 47.7711 694.3719 L 47.7711 704.3719 z \\\"/><g clip-path=\\\"url(#clip4-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.7711 696.9969)\\\" x=\\\"0 7.552 12 13.824 17.824 22.272 24.4 30.176 32 36 40.448 44.896 47.12 51.568 55.568 57.696 62.144 64.808\\\">Which Disputes are</text></g><path clip-path=\\\"url(#clip4-10)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 65.9449 695.3172 L 98.9449 695.3172 L 98.9449 685.3172 L 65.9449 685.3172 L 65.9449 695.3172 z \\\"/><g clip-path=\\\"url(#clip4-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 65.9449 687.9422)\\\" x=\\\"0 4 8.448 12.448 16.896 19.56 24.008 28.456\\\">covered?</text></g><clipPath id=\\\"clip4-11\\\"><path d=\\\"M 129 630 L 206 630 L 206 707 L 129 707 L 129 630 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 145.298 696.9969)\\\" x=\\\"0 5.336 7.16 8.984 11.112 16.888 18.712 22.712 27.16 31.608 33.832 38.28 42.28\\\">All Disputes.</text></g><clipPath id=\\\"clip4-12\\\"><path d=\\\"M 205 630 L 573 630 L 573 707 L 205 707 L 205 630 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 696.9969)\\\" x=\\\"0 2.224\\\">In</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 216.5219 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 220.3165 696.9969)\\\" x=\\\"0 2.224 6.672 8.496\\\">this</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 232.8126 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 236.6072 696.9969)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496 24.944\\\">Clause,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 263.7791 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 267.5738 696.9969)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 278.6949 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 282.4895 696.9969)\\\" x=\\\"0 5.776 10.224 12.888\\\">word</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.8293 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 303.624 696.9969)\\\" x=\\\"0 2.84 8.616 10.44 14.44 18.888 23.336 25.56 30.008 34.008\\\">&quot;Disputes&quot;</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 340.4755 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 344.2702 696.9969)\\\" x=\\\"0 4.448 8.896\\\">has</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 357.1686 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 360.9633 696.9969)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 372.0844 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 375.879 696.9969)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456 24.904 28.904\\\">broadest</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 407.0118 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 410.8065 696.9969)\\\" x=\\\"0 4.448 8.896 12.896 16.896 18.72 23.168 24.992\\\">possible</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 440.2518 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 444.0464 696.9969)\\\" x=\\\"0 6.664 11.112 15.56 20.008 21.832 26.28 30.728\\\">meaning.</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 477.0034 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 480.7981 696.9969)\\\" x=\\\"0 4.888 9.336 11.16\\\">This</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 495.9582 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 499.7529 696.9969)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496\\\">Clause</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 524.7021 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 528.4968 696.9969)\\\" x=\\\"0 4.448 8.896 12.896 17.344 20.008 24.456\\\">governs</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 556.9577 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 560.7523 696.9969)\\\" x=\\\"0 4.448 6.272\\\">all</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 687.9422)\\\" x=\\\"0 2.84 8.616 10.44 14.44 18.888 23.336 25.56 30.008 34.008\\\">&quot;Disputes&quot;</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 246.7015 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 248.8785 687.9422)\\\" x=\\\"0 1.824 6.272 10.272 14.72 16.544 20.544 22.368 26.816\\\">involving</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.148 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 282.3249 687.9422)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 293.446 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 295.6229 687.9422)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056 24.056\\\">parties.</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 321.9041 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 324.081 687.9422)\\\" x=\\\"0 4.888 9.336 11.16\\\">This</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 339.2412 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 341.4181 687.9422)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44\\\">includes</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 370.8634 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 373.0403 687.9422)\\\" x=\\\"0 4.448 6.272\\\">all</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 381.1379 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 383.3148 687.9422)\\\" x=\\\"0 4 5.824 10.272 12.096 18.76\\\">claims</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 406.0765 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 408.2534 687.9422)\\\" x=\\\"0 4.448 8.448 12.896\\\">even</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 425.6011 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 427.778 687.9422)\\\" x=\\\"0 1.824 6.272 10.72 12.544 15.208 19.656 23.656 25.88 27.704\\\">indirectly</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 459.485 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 461.6619 687.9422)\\\" x=\\\"0 2.664 7.112 8.936 13.384 15.608 20.056\\\">related</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.1698 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 488.3466 687.9422)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 495.0185 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 497.1954 687.9422)\\\" x=\\\"0 4 8.448 12.896\\\">your</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.7579 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 514.9348 687.9422)\\\" x=\\\"0 4.448 8.896 13.344 15.168 16.992 20.992 25.44 27.664 29.488 33.936\\\">application</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.3254 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 555.5023 687.9422)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 678.8875)\\\" x=\\\"0 4.448 8.896 11.56 16.008 20.456 27.12 31.568 36.016 38.24\\\">agreements</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 252.0961 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 254.4013 678.8875)\\\" x=\\\"0 5.776 7.6 9.824\\\">with</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 268.6747 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 270.9799 678.8875)\\\" x=\\\"0 4.448 8.448\\\">us.</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.6518 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 283.957 678.8875)\\\" x=\\\"0 4.888 9.336 11.16\\\">This</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.1172 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 301.4224 678.8875)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44\\\">includes</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 330.8677 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 333.1729 678.8875)\\\" x=\\\"0 4 5.824 10.272 12.096 18.76\\\">claims</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.9346 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 358.2398 678.8875)\\\" x=\\\"0 2.664 7.112 8.936 13.384 15.608 20.056\\\">related</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 382.7477 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 385.0529 678.8875)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 391.7247 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 394.0299 678.8875)\\\" x=\\\"0 1.824 6.272 8.496 12.944 15.608 22.272 26.72 28.944 30.768 35.216\\\">information</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 433.6979 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 436.0031 678.8875)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 448.9016 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 451.2068 678.8875)\\\" x=\\\"0 4.448 7.112 11.56 15.56 17.384 21.832 26.28 30.28 32.104\\\">previously</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 487.3161 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 489.6213 678.8875)\\\" x=\\\"0 4.448 8.896 12.896\\\">gave</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 506.969 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 509.2742 678.8875)\\\" x=\\\"0 4.448 8.448\\\">us.</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 519.9461 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 522.2513 678.8875)\\\" x=\\\"0 2.224\\\">It</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.6966 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 529.0018 678.8875)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44\\\">includes</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 558.4471 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 560.7523 678.8875)\\\" x=\\\"0 4.448 6.272\\\">all</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 669.8328)\\\" x=\\\"0 4.448 8.896 12.896\\\">past</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 224.9711 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 227.1634 669.8328)\\\" x=\\\"0 4.448 8.896 11.56 16.008 20.456 27.12 31.568 36.016 38.24 42.24\\\">agreements.</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 271.6321 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 273.8245 669.8328)\\\" x=\\\"0 2.224\\\">It</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 278.2698 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 280.4621 669.8328)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44 29.44\\\">includes,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.13 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 314.3223 669.8328)\\\" x=\\\"0 4.448\\\">as</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 322.7716 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 324.9639 669.8328)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 340.0772 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 342.2695 669.8328)\\\" x=\\\"0 4.448\\\">be</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.1679 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 353.3602 669.8328)\\\" x=\\\"0 4.448 8.896 13.344 15.168 16.992 20.992 25.44 29.888 31.712 36.16\\\">applicable,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 391.7508 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 393.9431 669.8328)\\\" x=\\\"0 4.448 8.896\\\">any</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 406.8416 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 409.0339 669.8328)\\\" x=\\\"0 4.448 8.896 13.344 15.168 17.392 19.216 23.664 28.112 32.56\\\">additional</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 443.4245 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 445.6168 669.8328)\\\" x=\\\"0 4.448 8.896 11.56 13.384 17.832 22.28 26.28\\\">periods,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.1246 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 476.3169 669.8328)\\\" x=\\\"0 4.448 8.448 10.672 15.12 19.568 23.568 25.392 29.84 34.288 38.288\\\">extensions,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 516.8326 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 519.0249 669.8328)\\\" x=\\\"0 2.664 7.112 11.56 16.008 21.784 26.232 28.056 32.056\\\">renewals,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.31 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 555.5023 669.8328)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 660.7781)\\\" x=\\\"0 4.448 6.272 10.72 15.168 19.168\\\">plans.</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.2445 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 233.5225 660.7781)\\\" x=\\\"0 2.224\\\">It</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 237.9678 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 240.2458 660.7781)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44\\\">includes</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 269.6911 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 271.9691 660.7781)\\\" x=\\\"0 4 5.824 10.272 12.096 18.76\\\">claims</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 294.7308 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 297.0088 660.7781)\\\" x=\\\"0 2.664 7.112 8.936 13.384 15.608 20.056\\\">related</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 321.5167 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 323.7946 660.7781)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 330.4665 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 332.7445 660.7781)\\\" x=\\\"0 4.448 8.896 15.56 20.008 24.456 28.904\\\">damaged</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 366.1039 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 368.3819 660.7781)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456 23.12 25.344 29.344\\\">property,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 399.9522 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 402.2302 660.7781)\\\" x=\\\"0 4.448 8.896 12.896 17.344 21.792 24.016\\\">buyout,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 428.4724 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 430.7504 660.7781)\\\" x=\\\"0 2.664 7.112 8.936 13.384 17.384 19.608 24.056 26.28 30.728 37.392 41.84 46.288 48.512\\\">r* D E M O *t,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 481.4887 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 483.7667 660.7781)\\\" x=\\\"0 1.824 6.272 10.272 14.272\\\">loss,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 500.2627 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 502.5408 660.7781)\\\" x=\\\"0 4.448 8.896 15.56 20.008 24.456 28.904\\\">damage,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 533.6736 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 535.9516 660.7781)\\\" x=\\\"0 5.776 10.224 12.888 15.552 20 24.448 26.672 30.672\\\">warranty,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 651.7234)\\\" x=\\\"0 6.664 11.112 12.936 17.384 19.608 24.056 28.504 32.952 37.4 41.4 45.848\\\">maintenance,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.9281 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 260.595 651.7234)\\\" x=\\\"0 4 8.448 10.272 12.096 16.544 20.544 22.768 24.592 29.04 33.488\\\">collection,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 296.3099 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 298.9768 651.7234)\\\" x=\\\"0 4.448 8.896 12.896 16.896 21.344 25.344 29.344 31.168 35.616 40.064\\\">possession,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 341.2697 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 343.9366 651.7234)\\\" x=\\\"0 4.448 7.112 8.936 12.936 17.384 21.384 25.384\\\">privacy,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.546 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 374.2129 651.7234)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 387.5606 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 390.2275 651.7234)\\\" x=\\\"0 4 8.448 12.448 14.672 19.12 25.784 30.232\\\">customer</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 423.1259 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 425.7928 651.7234)\\\" x=\\\"0 1.824 6.272 8.496 12.944 15.608 22.272 26.72 28.944 30.768 35.216 39.664\\\">information.</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.6834 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 470.3503 651.7234)\\\" x=\\\"0 2.224\\\">It</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.7957 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 477.4626 651.7234)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44\\\">includes</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 506.9079 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 509.5748 651.7234)\\\" x=\\\"0 4 5.824 10.272 12.096 18.76\\\">claims</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 532.3365 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 535.0034 651.7234)\\\" x=\\\"0 2.664 7.112 8.936 13.384 15.608 20.056\\\">related</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.5112 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 562.1781 651.7234)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 642.6688)\\\" x=\\\"0 4 8.448 10.672 12.896 14.72 19.168\\\">setting</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.4672 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 236.1411 642.6688)\\\" x=\\\"0 4.448 8.448 10.272 14.72\\\">aside</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 255.313 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 257.987 642.6688)\\\" x=\\\"0 2.224 6.672 8.496\\\">this</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 270.4831 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 273.157 642.6688)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496 24.944\\\">Clause.</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 300.3289 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 303.0029 642.6688)\\\" x=\\\"0 2.224\\\">It</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 307.4482 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 310.1221 642.6688)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44\\\">includes</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 339.5674 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 342.2414 642.6688)\\\" x=\\\"0 4 5.824 10.272 12.096 18.76\\\">claims</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 365.0031 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 367.6771 642.6688)\\\" x=\\\"0 4.448 8.896 13.344 17.792\\\">about</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 387.6966 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 390.3706 642.6688)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 401.4917 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 404.1656 642.6688)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496 24.944 26.472\\\">Clause&apos;s</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.6422 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 437.3161 642.6688)\\\" x=\\\"0 4 8.448 10.272 12.096 16.544 18.368 20.592\\\">validity</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 461.9099 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 464.5838 642.6688)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 477.9315 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 480.6055 642.6688)\\\" x=\\\"0 4 8 12.448 16.896 21.344\\\">scope.</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 504.1758 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 506.8497 642.6688)\\\" x=\\\"0 2.224\\\">It</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 511.295 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 513.969 642.6688)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44\\\">includes</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 543.4143 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 546.0883 642.6688)\\\" x=\\\"0 4 5.824 10.272 12.096 18.76\\\">claims</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 633.6141)\\\" x=\\\"0 4.448 8.896 13.344 17.792 20.016 22.144 27.92 32.368 36.816 39.04 43.488 47.936 50.6 52.728 54.952 59.4 61.528 65.976 68.64 73.088 74.912 77.136 79.8 84.248 86.472 90.92\\\">about whether to arbitrate.</text></g><clipPath id=\\\"clip4-13\\\"><path d=\\\"M 35 578 L 130 578 L 130 631 L 35 631 L 35 578 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-13)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 630.9344 L 129.35 630.9344 L 129.35 578.6609 L 35.45 578.6609 L 35.45 630.9344 z \\\"/><path clip-path=\\\"url(#clip4-13)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 628.9344 L 125.25 628.9344 L 125.25 619.8797 L 39.55 619.8797 L 39.55 628.9344 z \\\"/><path clip-path=\\\"url(#clip4-13)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 41.1227 628.9344 L 124.1227 628.9344 L 124.1227 618.9344 L 41.1227 618.9344 L 41.1227 628.9344 z \\\"/><g clip-path=\\\"url(#clip4-13)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 41.1227 621.5594)\\\" x=\\\"0 5.336 8 12.448 14.576 18.576 23.024 27.472 29.6 35.376 39.824 41.648 45.648 47.472 51.92 56.368 58.496 61.16 62.984 67.432 71.88 74.104 78.104\\\">Are you waiving rights?</text></g><clipPath id=\\\"clip4-14\\\"><path d=\\\"M 129 578 L 206 578 L 206 631 L 129 631 L 129 578 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-14)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 159.5461 621.5594)\\\" x=\\\"0 5.336 9.784 13.784\\\">Yes.</text></g><clipPath id=\\\"clip4-15\\\"><path d=\\\"M 205 578 L 573 578 L 573 631 L 205 631 L 205 578 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-15)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 621.5594)\\\" x=\\\"0 5.336 9.784 14.232\\\">You </text></g><g clip-path=\\\"url(#clip4-15)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 225.85 621.5594)\\\" x=\\\"0 5.776 10.224 12.048 16.048\\\">waive</text></g><path clip-path=\\\"url(#clip4-15)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 225.85 620.213 L 225.85 620.213 L 245.85 620.213 L 246.1833 620.213 L 246.1833 619.5464 L 245.85 619.5464 L 225.85 619.5464 L 225.5167 619.5464 L 225.5167 620.213 z \\\"/><g clip-path=\\\"url(#clip4-15)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.85 621.5594)\\\" x=\\\"0 2.128 6.128 10.576 15.024 17.688 19.816 22.48 24.304 28.752 33.2 35.424 39.424 41.552 43.776 48.224\\\"> your rights to:</text></g><g clip-path=\\\"url(#clip4-15)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 611.5047)\\\" x=\\\"0 4.448 6.672 8.8 14.576 19.024 23.024 27.472 29.6 31.424 35.872 38.536 40.36 44.808 48.808 50.936 54.936 59.384 61.208 65.208 69.656 71.784 77.56 79.384 83.384 87.832 92.28 94.504 98.952 102.952\\\">1. Have juries solve Disputes.</text></g><g clip-path=\\\"url(#clip4-15)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 601.45)\\\" x=\\\"0 4.448 6.672 8.8 14.576 19.024 23.024 27.472 29.6 33.6 38.048 42.496 45.16 47.384 51.384 53.608 55.736 60.184 62.408 66.856 71.304 73.968 76.096 78.32 82.768 87.216 91.664 93.792 97.792 104.456 108.904 110.728 112.552 115.216 119.216 121.04 125.488 127.312 133.976 137.976 140.104 144.104 148.552 153 155.664 157.888 161.888 164.112 166.24 170.24 174.688 176.512 180.512 184.96 187.088 192.864 194.688 198.688 203.136 207.584 209.808 214.256 218.256\\\">2. Have courts, other than small-claims courts, solve Disputes.</text></g><g clip-path=\\\"url(#clip4-15)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 591.3953)\\\" x=\\\"0 4.448 6.672 8.8 14.136 18.584 21.248 25.248 29.696 31.824 36.272 40.272 42.4 46.848 48.976 53.424 56.088 57.912 61.912 66.36 68.584 73.032 75.16 79.608 81.832 84.056 88.504 91.168 95.616 100.064 104.064 106.192 110.64 115.088 119.536 123.984 126.648 131.096 132.92 135.048 139.496 142.16 144.288 146.112 150.56 152.688 157.136 159.264 161.928 166.376 170.824 173.488 177.936 181.936 186.384 190.832 193.056 197.504 199.728 201.552 205.552 210 212.128 216.128 220.576 225.024 229.472 233.472 235.296 237.52 241.52\\\">3. Serve as a private attorney general or in a* D E M O *tive capacity.</text></g><g clip-path=\\\"url(#clip4-15)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 581.3406)\\\" x=\\\"0 4.448 6.672 8.8 14.136 18.584 20.712 22.536 26.984 29.112 33.56 35.688 39.688 41.512 45.96 49.96 53.96 56.088 60.536 64.536 66.76 68.584 73.032 77.48\\\">4. Be in a class action.</text></g><clipPath id=\\\"clip4-16\\\"><path d=\\\"M 35 530 L 130 530 L 130 579 L 35 579 L 35 530 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-16)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 578.6609 L 129.35 578.6609 L 129.35 530.3875 L 35.45 530.3875 L 35.45 578.6609 z \\\"/><path clip-path=\\\"url(#clip4-16)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 576.6609 L 125.25 576.6609 L 125.25 558.5516 L 39.55 558.5516 L 39.55 576.6609 z \\\"/><path clip-path=\\\"url(#clip4-16)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 44.0152 576.6609 L 121.0152 576.6609 L 121.0152 566.6609 L 44.0152 566.6609 L 44.0152 576.6609 z \\\"/><g clip-path=\\\"url(#clip4-16)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 44.0152 569.2859)\\\" x=\\\"0 5.336 8 12.448 14.576 18.576 23.024 27.472 29.6 35.376 39.824 41.648 45.648 47.472 51.92 56.368 58.496 62.496 64.32 68.768 72.768\\\">Are you waiving class</text></g><path clip-path=\\\"url(#clip4-16)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 58.6109 567.6063 L 106.6109 567.6063 L 106.6109 557.6063 L 58.6109 557.6063 L 58.6109 567.6063 z \\\"/><g clip-path=\\\"url(#clip4-16)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 58.6109 560.2312)\\\" x=\\\"0 4.448 8.448 10.672 12.496 16.944 21.392 23.52 26.184 28.008 32.456 36.904 39.128 43.128\\\">action rights?</text></g><clipPath id=\\\"clip4-17\\\"><path d=\\\"M 129 530 L 206 530 L 206 579 L 129 579 L 129 530 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-17)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 159.5461 569.2859)\\\" x=\\\"0 5.336 9.784 13.784\\\">Yes.</text></g><clipPath id=\\\"clip4-18\\\"><path d=\\\"M 205 530 L 573 530 L 573 579 L 205 579 L 205 530 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 569.2859)\\\" x=\\\"0 5.7774 12 17.7774 23.5547 28.4414\\\">COURTS</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 243.6273 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 245.7523 569.2859)\\\" x=\\\"0 5.3359 11.1133\\\">AND</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.643 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 264.768 569.2859)\\\" x=\\\"0 5.3359 11.1133 16.4492 18.6719 23.5586 28.8945 34.6719\\\">ARBITERS</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 304.7758 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 306.9008 569.2859)\\\" x=\\\"0\\\">W</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 306.9008 567.9396 L 306.9008 567.9396 L 314.9008 567.9396 L 315.2341 567.9396 L 315.2341 567.2729 L 314.9008 567.2729 L 306.9008 567.2729 L 306.5674 567.2729 L 306.5674 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 314.4515 569.2859)\\\" x=\\\"0\\\">O</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 314.4515 567.9396 L 314.4515 567.9396 L 320.4515 567.9396 L 320.7849 567.9396 L 320.7849 567.2729 L 320.4515 567.2729 L 314.4515 567.2729 L 314.1182 567.2729 L 314.1182 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 320.6742 569.2859)\\\" x=\\\"0\\\">N</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 320.6742 567.9396 L 320.6742 567.9396 L 326.6742 567.9396 L 327.0075 567.9396 L 327.0075 567.2729 L 326.6742 567.2729 L 320.6742 567.2729 L 320.3409 567.2729 L 320.3409 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 326.4515 569.2859)\\\" x=\\\"0\\\">&apos;</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 326.4515 567.9396 L 326.4515 567.9396 L 328.4515 567.9396 L 328.7849 567.9396 L 328.7849 567.2729 L 328.4515 567.2729 L 326.4515 567.2729 L 326.1182 567.2729 L 326.1182 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 327.9789 569.2859)\\\" x=\\\"0\\\">T</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 327.9789 567.9396 L 327.9789 567.9396 L 332.9789 567.9396 L 333.3122 567.9396 L 333.3122 567.2729 L 332.9789 567.2729 L 327.9789 567.2729 L 327.6456 567.2729 L 327.6456 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 332.8656 569.2859)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 332.8656 567.9396 L 332.8656 567.9396 L 334.8656 567.9396 L 335.1989 567.9396 L 335.1989 567.2729 L 334.8656 567.2729 L 332.8656 567.2729 L 332.5323 567.2729 L 332.5323 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 334.9906 569.2859)\\\" x=\\\"0\\\">A</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 334.9906 567.9396 L 334.9906 567.9396 L 339.9906 567.9396 L 340.3239 567.9396 L 340.3239 567.2729 L 339.9906 567.2729 L 334.9906 567.2729 L 334.6573 567.2729 L 334.6573 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 340.3265 569.2859)\\\" x=\\\"0\\\">L</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 340.3265 567.9396 L 340.3265 567.9396 L 344.3265 567.9396 L 344.6599 567.9396 L 344.6599 567.2729 L 344.3265 567.2729 L 340.3265 567.2729 L 339.9932 567.2729 L 339.9932 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 344.7758 569.2859)\\\" x=\\\"0\\\">L</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 344.7758 567.9396 L 344.7758 567.9396 L 348.7758 567.9396 L 349.1091 567.9396 L 349.1091 567.2729 L 348.7758 567.2729 L 344.7758 567.2729 L 344.4424 567.2729 L 344.4424 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 349.225 569.2859)\\\" x=\\\"0\\\">O</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 349.225 567.9396 L 349.225 567.9396 L 355.225 567.9396 L 355.5583 567.9396 L 355.5583 567.2729 L 355.225 567.2729 L 349.225 567.2729 L 348.8917 567.2729 L 348.8917 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 355.4477 569.2859)\\\" x=\\\"0\\\">W</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 355.4477 567.9396 L 355.4477 567.9396 L 363.4477 567.9396 L 363.781 567.9396 L 363.781 567.2729 L 363.4477 567.2729 L 355.4477 567.2729 L 355.1143 567.2729 L 355.1143 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 362.9984 569.2859)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 362.9984 567.9396 L 362.9984 567.9396 L 364.9984 567.9396 L 365.3318 567.9396 L 365.3318 567.2729 L 364.9984 567.2729 L 362.9984 567.2729 L 362.6651 567.2729 L 362.6651 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 365.1234 569.2859)\\\" x=\\\"0\\\">C</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 365.1234 567.9396 L 365.1234 567.9396 L 371.1234 567.9396 L 371.4568 567.9396 L 371.4568 567.2729 L 371.1234 567.2729 L 365.1234 567.2729 L 364.7901 567.2729 L 364.7901 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 370.9008 569.2859)\\\" x=\\\"0\\\">L</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 370.9008 567.9396 L 370.9008 567.9396 L 374.9008 567.9396 L 375.2341 567.9396 L 375.2341 567.2729 L 374.9008 567.2729 L 370.9008 567.2729 L 370.5674 567.2729 L 370.5674 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 375.35 569.2859)\\\" x=\\\"0\\\">A</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 375.35 567.9396 L 375.35 567.9396 L 380.35 567.9396 L 380.6833 567.9396 L 380.6833 567.2729 L 380.35 567.2729 L 375.35 567.2729 L 375.0167 567.2729 L 375.0167 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 380.6859 569.2859)\\\" x=\\\"0\\\">S</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 380.6859 567.9396 L 380.6859 567.9396 L 385.6859 567.9396 L 386.0193 567.9396 L 386.0193 567.2729 L 385.6859 567.2729 L 380.6859 567.2729 L 380.3526 567.2729 L 380.3526 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 386.0219 569.2859)\\\" x=\\\"0\\\">S</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 386.0219 567.9396 L 386.0219 567.9396 L 391.0219 567.9396 L 391.3552 567.9396 L 391.3552 567.2729 L 391.0219 567.2729 L 386.0219 567.2729 L 385.6885 567.2729 L 385.6885 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 391.3578 569.2859)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 391.3578 567.9396 L 391.3578 567.9396 L 393.3578 567.9396 L 393.6911 567.9396 L 393.6911 567.2729 L 393.3578 567.2729 L 391.3578 567.2729 L 391.0245 567.2729 L 391.0245 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 393.4828 569.2859)\\\" x=\\\"0\\\">A</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 393.4828 567.9396 L 393.4828 567.9396 L 398.4828 567.9396 L 398.8161 567.9396 L 398.8161 567.2729 L 398.4828 567.2729 L 393.4828 567.2729 L 393.1495 567.2729 L 393.1495 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 398.8187 569.2859)\\\" x=\\\"0\\\">C</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 398.8187 567.9396 L 398.8187 567.9396 L 404.8187 567.9396 L 405.1521 567.9396 L 405.1521 567.2729 L 404.8187 567.2729 L 398.8187 567.2729 L 398.4854 567.2729 L 398.4854 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 404.5961 569.2859)\\\" x=\\\"0\\\">T</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 404.5961 567.9396 L 404.5961 567.9396 L 409.5961 567.9396 L 409.9294 567.9396 L 409.9294 567.2729 L 409.5961 567.2729 L 404.5961 567.2729 L 404.2628 567.2729 L 404.2628 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 409.4828 569.2859)\\\" x=\\\"0\\\">I</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 409.4828 567.9396 L 409.4828 567.9396 L 411.4828 567.9396 L 411.8161 567.9396 L 411.8161 567.2729 L 411.4828 567.2729 L 409.4828 567.2729 L 409.1495 567.2729 L 409.1495 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 411.7055 569.2859)\\\" x=\\\"0\\\">O</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 411.7055 567.9396 L 411.7055 567.9396 L 417.7055 567.9396 L 418.0388 567.9396 L 418.0388 567.2729 L 417.7055 567.2729 L 411.7055 567.2729 L 411.3721 567.2729 L 411.3721 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 417.9281 569.2859)\\\" x=\\\"0\\\">N</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 417.9281 567.9396 L 417.9281 567.9396 L 423.9281 567.9396 L 424.2614 567.9396 L 424.2614 567.2729 L 423.9281 567.2729 L 417.9281 567.2729 L 417.5948 567.2729 L 417.5948 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 423.7055 569.2859)\\\" x=\\\"0\\\">S</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 423.7055 567.9396 L 423.7055 567.9396 L 428.7055 567.9396 L 429.0388 567.9396 L 429.0388 567.2729 L 428.7055 567.2729 L 423.7055 567.2729 L 423.3721 567.2729 L 423.3721 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 429.0414 569.2859)\\\" x=\\\"0\\\">.</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 429.0414 567.9396 L 429.0414 567.9396 L 431.0414 567.9396 L 431.3747 567.9396 L 431.3747 567.2729 L 431.0414 567.2729 L 429.0414 567.2729 L 428.7081 567.2729 L 428.7081 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 431.264 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 433.389 569.2859)\\\" x=\\\"0 5.3359 9.7852\\\">You</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.6234 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 449.7484 569.2859)\\\" x=\\\"0\\\">w</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 449.7484 567.9396 L 449.7484 567.9396 L 455.7484 567.9396 L 456.0818 567.9396 L 456.0818 567.2729 L 455.7484 567.2729 L 449.7484 567.2729 L 449.4151 567.2729 L 449.4151 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 455.5258 569.2859)\\\" x=\\\"0\\\">a</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 455.5258 567.9396 L 455.5258 567.9396 L 459.5258 567.9396 L 459.8591 567.9396 L 459.8591 567.2729 L 459.5258 567.2729 L 455.5258 567.2729 L 455.1924 567.2729 L 455.1924 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 459.975 569.2859)\\\" x=\\\"0\\\">i</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 459.975 567.9396 L 459.975 567.9396 L 461.975 567.9396 L 462.3083 567.9396 L 462.3083 567.2729 L 461.975 567.2729 L 459.975 567.2729 L 459.6417 567.2729 L 459.6417 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 461.7992 569.2859)\\\" x=\\\"0\\\">v</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 461.7992 567.9396 L 461.7992 567.9396 L 465.7992 567.9396 L 466.1325 567.9396 L 466.1325 567.2729 L 465.7992 567.2729 L 461.7992 567.2729 L 461.4659 567.2729 L 461.4659 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 465.7992 569.2859)\\\" x=\\\"0\\\">e</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 465.7992 567.9396 L 465.7992 567.9396 L 469.7992 567.9396 L 470.1325 567.9396 L 470.1325 567.2729 L 469.7992 567.2729 L 465.7992 567.2729 L 465.4659 567.2729 L 465.4659 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 470.2484 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 472.3734 569.2859)\\\" x=\\\"0 4 8.4492 12.8984\\\">your</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 487.9359 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 490.0609 569.2859)\\\" x=\\\"0 2.6641 4.4883 8.9375 13.3867 15.6094\\\">rights</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.6703 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 511.7953 569.2859)\\\" x=\\\"0 2.2227\\\">to</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 518.4672 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 520.5922 569.2859)\\\" x=\\\"0 4.4492\\\">be</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.4906 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 531.6156 569.2859)\\\" x=\\\"0 1.8242\\\">in</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 537.889 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 540.014 569.2859)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 544.4633 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 546.5883 569.2859)\\\" x=\\\"0\\\">c</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 546.5883 567.9396 L 546.5883 567.9396 L 550.5883 567.9396 L 550.9216 567.9396 L 550.9216 567.2729 L 550.5883 567.2729 L 546.5883 567.2729 L 546.2549 567.2729 L 546.2549 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 550.5883 569.2859)\\\" x=\\\"0\\\">l</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 550.5883 567.9396 L 550.5883 567.9396 L 552.5883 567.9396 L 552.9216 567.9396 L 552.9216 567.2729 L 552.5883 567.2729 L 550.5883 567.2729 L 550.2549 567.2729 L 550.2549 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 552.4125 569.2859)\\\" x=\\\"0\\\">a</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 552.4125 567.9396 L 552.4125 567.9396 L 556.4125 567.9396 L 556.7458 567.9396 L 556.7458 567.2729 L 556.4125 567.2729 L 552.4125 567.2729 L 552.0792 567.2729 L 552.0792 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 556.8617 569.2859)\\\" x=\\\"0\\\">s</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 556.8617 567.9396 L 556.8617 567.9396 L 560.8617 567.9396 L 561.1951 567.9396 L 561.1951 567.2729 L 560.8617 567.2729 L 556.8617 567.2729 L 556.5284 567.2729 L 556.5284 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 560.8617 569.2859)\\\" x=\\\"0\\\">s</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 560.8617 567.9396 L 560.8617 567.9396 L 564.8617 567.9396 L 565.1951 567.9396 L 565.1951 567.2729 L 564.8617 567.2729 L 560.8617 567.2729 L 560.5284 567.2729 L 560.5284 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 560.2312)\\\" x=\\\"0\\\">a</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 209.85 558.8849 L 209.85 558.8849 L 213.85 558.8849 L 214.1833 558.8849 L 214.1833 558.2182 L 213.85 558.2182 L 209.85 558.2182 L 209.5167 558.2182 L 209.5167 558.8849 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 214.2992 560.2312)\\\" x=\\\"0\\\">c</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 214.2992 558.8849 L 214.2992 558.8849 L 218.2992 558.8849 L 218.6325 558.8849 L 218.6325 558.2182 L 218.2992 558.2182 L 214.2992 558.2182 L 213.9659 558.2182 L 213.9659 558.8849 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 218.2992 560.2312)\\\" x=\\\"0\\\">t</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 218.2992 558.8849 L 218.2992 558.8849 L 220.2992 558.8849 L 220.6325 558.8849 L 220.6325 558.2182 L 220.2992 558.2182 L 218.2992 558.2182 L 217.9659 558.2182 L 217.9659 558.8849 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 220.5219 560.2312)\\\" x=\\\"0\\\">i</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 220.5219 558.8849 L 220.5219 558.8849 L 222.5219 558.8849 L 222.8552 558.8849 L 222.8552 558.2182 L 222.5219 558.2182 L 220.5219 558.2182 L 220.1885 558.2182 L 220.1885 558.8849 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 222.3461 560.2312)\\\" x=\\\"0\\\">o</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 222.3461 558.8849 L 222.3461 558.8849 L 226.3461 558.8849 L 226.6794 558.8849 L 226.6794 558.2182 L 226.3461 558.2182 L 222.3461 558.2182 L 222.0128 558.2182 L 222.0128 558.8849 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 226.7953 560.2312)\\\" x=\\\"0\\\">n</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 226.7953 558.8849 L 226.7953 558.8849 L 230.7953 558.8849 L 231.1286 558.8849 L 231.1286 558.2182 L 230.7953 558.2182 L 226.7953 558.2182 L 226.462 558.2182 L 226.462 558.8849 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 231.2445 560.2312)\\\" x=\\\"0\\\">,</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.4672 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 235.5922 560.2312)\\\" x=\\\"0 4.4492\\\">as</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 244.0414 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 246.1664 560.2312)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 250.6156 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 252.7406 560.2312)\\\" x=\\\"0 2.6641 7.1133 11.5625 14.2266 18.6758 22.6758 27.125 31.5742 33.7969 38.2461 40.4688 42.293 46.293\\\">representative</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 303.4828 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 305.6078 560.2312)\\\" x=\\\"0 4.4492 8.8984\\\">and</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 318.9555 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 321.0805 560.2312)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 325.5297 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 327.6547 560.2312)\\\" x=\\\"0 6.6641 11.1133 17.7773 22.2266 26.6758 29.3398\\\">member.</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.2172 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 361.3422 560.2312)\\\" x=\\\"0 6.2227 10.6719 12.4961\\\">Only</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 377.8383 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 379.9633 560.2312)\\\" x=\\\"0 1.8242 6.2734 10.7227 12.5469 16.5469 18.3711 22.8203 27.2695 31.7188\\\">individual</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 413.5062 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 415.6312 560.2312)\\\" x=\\\"0 4.4492 7.1133 11.5625 13.3867 15.6094 18.2734 22.7227 24.9453 26.7695 31.2188 35.668\\\">arbitration,</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 453.5219 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 455.6469 560.2312)\\\" x=\\\"0 4.4492\\\">or</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 462.7601 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 464.8851 560.2312)\\\" x=\\\"0 4 10.6641 15.1133 16.9375 18.7617 21.4258 25.4258 27.25 31.6992 33.5234 40.1875\\\">small-claims</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.0727 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 511.1977 560.2312)\\\" x=\\\"0 4 8.4492 12.8984 15.5625 17.7851 21.7851\\\">courts,</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 535.2055 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 537.3305 560.2312)\\\" x=\\\"0 5.7773 7.6016 9.4258\\\">will</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 551.1766)\\\" x=\\\"0 4 8.4492 10.2734 14.2734\\\">solve</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 228.5726 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 230.6976 551.1766)\\\" x=\\\"0 5.7773 7.6016 11.6016 16.0508 20.5 22.7227 27.1719 31.1719\\\">Disputes.</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 264.0922 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 266.2172 551.1766)\\\" x=\\\"0 5.3359 9.7852\\\">You</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.4515 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 282.5765 551.1766)\\\" x=\\\"0 5.7774 10.2266 12.0508 16.0508\\\">waive</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 303.0765 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 304.9015 551.1766)\\\" x=\\\"0 4 8.4492 12.8984\\\">your</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 320.464 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 322.289 551.1766)\\\" x=\\\"0 2.6641 4.4883 8.9375 13.3867\\\">right</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 337.8984 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 339.7234 551.1766)\\\" x=\\\"0 2.2227\\\">to</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 346.3953 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 348.2203 551.1766)\\\" x=\\\"0 4.4492 8.8984 12.8984\\\">have</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 365.568 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 367.393 551.1766)\\\" x=\\\"0 2.6641 7.1133 11.5625 14.2266 18.6758 22.6758 27.125 31.5742 33.7969 38.2461 40.4687 42.293 46.293\\\">representative</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 418.1351 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 419.9601 551.1766)\\\" x=\\\"0 4 5.8242 10.2734 12.0977 18.7617 22.7617\\\">claims.</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 444.9445 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 446.7695 551.1766)\\\" x=\\\"0 5.7774 10.2266 12.0508 16.5 20.5\\\">Unless</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 471.2695 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 473.0945 551.1766)\\\" x=\\\"0 2.6641 7.1133 11.1133 15.5625 18.2266 22.2266 26.6758\\\">reversed</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 504.2195 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 506.0445 551.1766)\\\" x=\\\"0 4.4492\\\">on</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 514.943 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 516.768 551.1766)\\\" x=\\\"0 4.4492 8.8984 13.3477 17.7969 22.2461 24.0703\\\">appeal,</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 543.0609 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 544.8859 551.1766)\\\" x=\\\"0 1.8242\\\">if</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 548.9328 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 550.7578 551.1766)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 542.1219)\\\" x=\\\"0 4 8.4492 12.8984 15.5625\\\">court</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 227.6351 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 229.4601 542.1219)\\\" x=\\\"0 1.8242 6.2734 10.2734 14.7227 16.5469 18.3711 22.8203 27.2695 29.4922 33.9414\\\">invalidates</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 267.4015 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 269.2265 542.1219)\\\" x=\\\"0 2.2227 6.6719 8.4961\\\">this</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.7226 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 283.5477 542.1219)\\\" x=\\\"0 5.7773 10.2266 12.0508 16.0508 20.5 23.1641\\\">waiver,</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.9344 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 310.7594 542.1219)\\\" x=\\\"0 2.2226 6.6719 11.1211\\\">then</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 326.3297 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 328.4547 542.1219)\\\" x=\\\"0 2.2227 6.6719\\\">the</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 339.5758 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 341.4008 542.1219)\\\" x=\\\"0 4.4492 8.8984 11.5625 16.0117 20.4609 27.125 31.5742 36.0234\\\">agreement</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 379.6469 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 381.4719 542.1219)\\\" x=\\\"0 2.2227\\\">to</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.1437 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 389.9687 542.1219)\\\" x=\\\"0 4.4492 7.1133 11.5625 13.3867 15.6094 18.2734 22.7227 24.9453\\\">arbitrate</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.3633 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 421.1883 542.1219)\\\" x=\\\"0 5.7774 7.6016 9.4258\\\">will</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 432.4383 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 434.2633 542.1219)\\\" x=\\\"0 4.4492\\\">be</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 443.1617 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 444.9867 542.1219)\\\" x=\\\"0 4 8.4492 10.2734 14.7227\\\">void,</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 461.932 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 463.757 542.1219)\\\" x=\\\"0 4.4492 8.8984\\\">and</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 477.1047 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 478.9297 542.1219)\\\" x=\\\"0 5.7773 7.6016 11.6016 16.0508 20.5 22.7227 27.1719\\\">Disputes</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 510.1016 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 511.9266 542.1219)\\\" x=\\\"0 5.7773 7.6016 9.4258\\\">will</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 523.1766 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 525.0016 542.1219)\\\" x=\\\"0 4.4492\\\">be</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 533.9 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 535.725 542.1219)\\\" x=\\\"0 2.6641 7.1133 11.1133 15.5625 17.3867 21.3867 25.8359\\\">resolved</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 533.0672)\\\" x=\\\"0 4.4492\\\">by</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 218.2992 533.0672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 220.1242 533.0672)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 224.5734 533.0672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 226.3984 533.0672)\\\" x=\\\"0 1.8242 6.2734 10.7227 15.1719 19.6211\\\">judge,</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 248.2422 533.0672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 250.0672 533.0672)\\\" x=\\\"0 4.4492 8.8984\\\">but</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 261.1883 533.0672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 263.0133 533.0672)\\\" x=\\\"0 4.4492 8.8984\\\">not</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 274.1344 533.0672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 275.9594 533.0672)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.4086 533.0672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 282.2336 533.0672)\\\" x=\\\"0 1.8242 6.2734 8.9375 12.9375\\\">jury.</text></g><clipPath id=\\\"clip4-19\\\"><path d=\\\"M 35 491 L 130 491 L 130 531 L 35 531 L 35 491 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-19)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 530.3875 L 129.35 530.3875 L 129.35 491.1688 L 35.45 491.1688 L 35.45 530.3875 z \\\"/><path clip-path=\\\"url(#clip4-19)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 528.3875 L 125.25 528.3875 L 125.25 519.3328 L 39.55 519.3328 L 39.55 528.3875 z \\\"/><path clip-path=\\\"url(#clip4-19)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 49.9664 528.3875 L 114.9664 528.3875 L 114.9664 518.3875 L 49.9664 518.3875 L 49.9664 528.3875 z \\\"/><g clip-path=\\\"url(#clip4-19)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 49.9664 521.0125)\\\" x=\\\"0 7.552 12 16.448 18.672 20.8 22.624 27.072 32.848 34.976 39.424 43.872 48.32 50.144 51.968 56.416 60.416\\\">What law applies?</text></g><clipPath id=\\\"clip4-20\\\"><path d=\\\"M 129 491 L 206 491 L 206 531 L 129 531 L 129 491 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-20)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.009 521.0125)\\\" x=\\\"0 4.888 9.336 13.784 15.912 20.8 25.248 29.696 34.144 36.808 41.256\\\">The Federal</text></g><g clip-path=\\\"url(#clip4-20)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 142.4308 511.9578)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 19.16 23.608 25.832 27.656 32.104 36.552 38.68 44.016 48.016\\\">Arbitration Act</text></g><g clip-path=\\\"url(#clip4-20)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 153.1555 502.9031)\\\" x=\\\"0 2.664 5.504 10.392 15.728 21.064 23.904 26.568\\\">(&quot;FAA&quot;).</text></g><clipPath id=\\\"clip4-21\\\"><path d=\\\"M 205 491 L 573 491 L 573 531 L 205 531 L 205 491 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 521.0125)\\\" x=\\\"0 4.888 9.336 11.16\\\">This</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.0101 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 228.9725 521.0125)\\\" x=\\\"0 2.224 4.888 9.336 13.784 17.784 22.232 26.232 28.456 30.28 34.728\\\">transaction</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 268.1522 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 272.1145 521.0125)\\\" x=\\\"0 1.824 6.272 10.272 14.72 16.544 20.544 24.992\\\">involves</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 301.1106 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 305.0729 521.0125)\\\" x=\\\"0 1.824 6.272 8.496 12.944 15.608 19.608 21.832 26.28 28.504\\\">interstate</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.026 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 341.9884 521.0125)\\\" x=\\\"0 4 8.448 15.112 21.776 26.224 28.888 32.888 37.336\\\">commerce.</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 381.5509 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 385.5132 521.0125)\\\" x=\\\"0 4.888 9.336 13.784 17.784\\\">Thus,</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 405.521 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 409.4834 521.0125)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 420.6045 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 424.5668 521.0125)\\\" x=\\\"0 4.888 10.224\\\">FAA</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 440.1254 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 444.0877 521.0125)\\\" x=\\\"0 4.448 8.896 12.896 17.344 20.008 24.456 28.456\\\">governs.</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.7713 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 478.7336 521.0125)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 483.179 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 487.1413 521.0125)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 491.5905 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 495.5528 521.0125)\\\" x=\\\"0 4 8.448 12.896 15.56\\\">court</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 513.338 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 517.3003 521.0125)\\\" x=\\\"0 2.224 4.048 8.496 12.944\\\">finds</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 534.2456 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 538.208 521.0125)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.3291 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 553.2914 521.0125)\\\" x=\\\"0 4.888 10.224\\\">FAA</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 511.9578)\\\" x=\\\"0 4.448 8.896 13.344 17.344 21.792 23.32\\\">doesn&apos;t</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 235.3969 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 237.5853 511.9578)\\\" x=\\\"0 4.448 8.896 13.344 15.168 19.168\\\">apply,</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 258.9798 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 261.1682 511.9578)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 274.5159 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 276.7043 511.9578)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 287.8254 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 290.0138 511.9578)\\\" x=\\\"0 2.224 4.048 8.496 12.944 14.768 19.216\\\">finding</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 313.6818 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 315.8702 511.9578)\\\" x=\\\"0 4 8.448 12.896 14.424\\\">can&apos;t</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 332.5186 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 334.7071 511.9578)\\\" x=\\\"0 4.448\\\">be</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 343.6055 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 345.7939 511.9578)\\\" x=\\\"0 4.448 8.896 13.344 17.792 22.24 24.064 28.512 32.96\\\">appealed,</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.9853 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 383.1737 511.9578)\\\" x=\\\"0 2.224 6.672 11.12\\\">then</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 398.7441 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 400.9325 511.9578)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 412.0536 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 414.242 511.9578)\\\" x=\\\"0 4 6.224 10.672 12.896\\\">state</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 431.5857 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 433.7742 511.9578)\\\" x=\\\"0 1.824 6.272\\\">law</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 445.825 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 448.0134 511.9578)\\\" x=\\\"0 5.776 10.224 14.672 17.336\\\">where</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 469.8024 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 471.9908 511.9578)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.8893 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 487.0777 511.9578)\\\" x=\\\"0 5.776 10.224 12.888\\\">were</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 504.4175 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 506.606 511.9578)\\\" x=\\\"0 5.776 10.224 14.672\\\">when</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 525.731 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 527.9194 511.9578)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 540.8178 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 543.0062 511.9578)\\\" x=\\\"0 4 5.824 10.272 14.72 19.168 23.616\\\">signed,</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 502.9031)\\\" x=\\\"0 4.448 8.896 12.896 17.344 20.008 24.456 28.456\\\">governs.</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 240.5336 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 243.9142 502.9031)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.6993 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 261.0799 502.9031)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 284.6893 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 288.0699 502.9031)\\\" x=\\\"0 6.664 11.112 15.112\\\">must</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 305.4058 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 308.7864 502.9031)\\\" x=\\\"0 4.448 8.896 13.344 15.168\\\">apply</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 327.9582 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 331.3388 502.9031)\\\" x=\\\"0 4 8.448 12.896 16.896 19.12 23.568 28.016 30.24 32.064 36.064\\\">substantive</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.8545 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 375.235 502.9031)\\\" x=\\\"0 1.824 6.272\\\">law</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 387.2858 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 390.6664 502.9031)\\\" x=\\\"0 4 8.448 12.896 16.896 18.72 22.72 24.944 29.392 33.84\\\">consistent</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 426.7328 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 430.1134 502.9031)\\\" x=\\\"0 5.776 7.6 9.824\\\">with</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 444.3868 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 447.7674 502.9031)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 458.8885 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 462.2691 502.9031)\\\" x=\\\"0 4.888 10.224 15.56\\\">FAA.</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 480.0503 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 483.4309 502.9031)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 497.2161 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 500.5966 502.9031)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 524.206 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 527.5866 502.9031)\\\" x=\\\"0 6.664 11.112 15.112\\\">must</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 544.9225 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 548.3031 502.9031)\\\" x=\\\"0 2.224 6.672 8.496 10.32 14.768\\\">follow</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 493.8484)\\\" x=\\\"0 4 6.224 10.672 12.896 17.344 19.568 24.016 28.016 30.144 34.592 36.816 38.944 40.768 42.592 49.256 51.08 53.304 57.752 59.976 61.8 66.248 70.696 72.824 77.272 81.72 86.168 88.296 92.744 95.408 97.232 101.232 103.056 104.88 109.328 113.776 118.224 120.352 124.352 126.176 130.624 132.448 139.112 143.112\\\">statutes of limitation and privilege claims.</text></g><clipPath id=\\\"clip4-22\\\"><path d=\\\"M 35 433 L 130 433 L 130 492 L 35 492 L 35 433 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-22)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 491.1688 L 129.35 491.1688 L 129.35 433.8406 L 35.45 433.8406 L 35.45 491.1688 z \\\"/><path clip-path=\\\"url(#clip4-22)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 489.1688 L 125.25 489.1688 L 125.25 471.0594 L 39.55 471.0594 L 39.55 489.1688 z \\\"/><path clip-path=\\\"url(#clip4-22)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 45.443 489.1688 L 119.443 489.1688 L 119.443 479.1688 L 45.443 479.1688 L 45.443 489.1688 z \\\"/><g clip-path=\\\"url(#clip4-22)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 45.443 481.7937)\\\" x=\\\"0 5.776 10.224 14.672 16.8 19.024 23.472 27.92 30.048 34.496 38.944 41.608 43.832 45.656 50.104 54.104 56.232 58.456 61.12 65.12 67.248 69.472\\\">Can the * D E M O * to</text></g><path clip-path=\\\"url(#clip4-22)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 46.6363 480.1141 L 118.6363 480.1141 L 118.6363 470.1141 L 46.6363 470.1141 L 46.6363 480.1141 z \\\"/><g clip-path=\\\"url(#clip4-22)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 46.6363 472.7391)\\\" x=\\\"0 4 8.448 10.272 14.272 18.72 20.848 26.624 28.448 32.448 36.896 41.344 43.568 48.016 52.016 54.144 56.368 58.192 60.856 64.856 67.08\\\">solve Disputes first?</text></g><clipPath id=\\\"clip4-23\\\"><path d=\\\"M 129 433 L 206 433 L 206 492 L 129 492 L 129 433 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-23)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 159.5461 481.7937)\\\" x=\\\"0 5.336 9.784 13.784\\\">Yes.</text></g><clipPath id=\\\"clip4-24\\\"><path d=\\\"M 205 433 L 573 433 L 573 492 L 205 492 L 205 433 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 481.7937)\\\" x=\\\"0 7.552\\\">We</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 221.85 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 224.092 481.7937)\\\" x=\\\"0 4 8.448\\\">can</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 236.9904 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 239.2324 481.7937)\\\" x=\\\"0 2.224 4.888\\\">try</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 248.1191 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 250.3611 481.7937)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.033 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 259.275 481.7937)\\\" x=\\\"0 4 8.448 10.272 14.272\\\">solve</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 277.9976 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 280.2396 481.7937)\\\" x=\\\"0 5.776 7.6 11.6 16.048 20.496 22.72 27.168\\\">Disputes</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 311.4115 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 313.6535 481.7937)\\\" x=\\\"0 1.824\\\">if</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 317.7004 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 319.9424 481.7937)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 332.8408 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 335.0828 481.7937)\\\" x=\\\"0 4 8.448 10.272\\\">call</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 347.1805 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 349.4224 481.7937)\\\" x=\\\"0 4.448\\\">us</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 357.8717 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 360.1137 481.7937)\\\" x=\\\"0 4.448\\\">at</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 366.7855 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 369.0275 481.7937)\\\" x=\\\"0 2.664 7.112 11.56 16.008\\\">(100)</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 387.7033 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 389.9453 481.7937)\\\" x=\\\"0 4.448 8.896 13.344 16.008 20.456 24.904 29.352 33.8\\\">000-0006.</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 425.9766 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 428.2185 481.7937)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 432.6639 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 434.9058 481.7937)\\\" x=\\\"0 2.224 6.672 8.496\\\">this</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.4019 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 449.6439 481.7937)\\\" x=\\\"0 4.448 8.896 13.344 17.344 21.792 23.32\\\">doesn&apos;t</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 475.1908 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 477.4328 481.7937)\\\" x=\\\"0 4 8.448 10.272 14.272\\\">solve</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 496.1555 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 498.3974 481.7937)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.5185 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 511.7605 481.7937)\\\" x=\\\"0 5.776 7.6 11.6 16.048 20.496 22.72 27.168\\\">Dispute,</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 541.1551 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 543.3971 481.7937)\\\" x=\\\"0 6.664 11.112 12.936\\\">mail</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 558.1588 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 560.4008 481.7937)\\\" x=\\\"0 4.448\\\">us</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 472.7391)\\\" x=\\\"0 5.776 8.44 10.264 12.488 14.712 19.16\\\">written</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.4594 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 235.6405 472.7391)\\\" x=\\\"0 4.448 8.896 11.12 12.944 16.944 21.392\\\">notice,</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.2577 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 261.4388 472.7391)\\\" x=\\\"0 5.776 7.6 9.824 14.272 16.096\\\">within</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.9857 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 284.1668 472.7391)\\\" x=\\\"0 4.448 8.896\\\">100</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 297.5145 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 299.6956 472.7391)\\\" x=\\\"0 4.448 8.896 12.896\\\">days</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 316.594 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 318.7752 472.7391)\\\" x=\\\"0 4.448\\\">of</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 325.447 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 327.6282 472.7391)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.7493 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 340.9304 472.7391)\\\" x=\\\"0 5.776 7.6 11.6 16.048 20.496 22.72\\\">Dispute</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 368.1023 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 370.2834 472.7391)\\\" x=\\\"0 4.448 8.896 11.12 15.568\\\">date.</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.0763 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 390.2575 472.7391)\\\" x=\\\"0 2.224\\\">In</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 396.9293 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 399.1105 472.7391)\\\" x=\\\"0 4 8.448 12.896\\\">your</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 414.673 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 416.8541 472.7391)\\\" x=\\\"0 4.448 8.896 11.12 12.944 16.944 21.392\\\">notice,</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 440.4713 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 442.6524 472.7391)\\\" x=\\\"0 2.224 6.672 8.496\\\">tell</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 452.9727 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 455.1539 472.7391)\\\" x=\\\"0 4.448\\\">us</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 463.6031 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 465.7842 472.7391)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 476.9053 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 479.0864 472.7391)\\\" x=\\\"0 4.448 8.896 11.12 15.568 17.392 19.216\\\">details</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 502.3052 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 504.4863 472.7391)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 517.834 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 520.0151 472.7391)\\\" x=\\\"0 4.448 8.896\\\">how</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 534.6909 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 536.872 472.7391)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.7704 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 551.9515 472.7391)\\\" x=\\\"0 5.776 10.224 14.672\\\">want</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 463.6844)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 216.5219 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 219.4635 463.6844)\\\" x=\\\"0 4 8.448 10.272 14.272\\\">solve</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.1861 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 241.1277 463.6844)\\\" x=\\\"0 1.824 4.048\\\">it.</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.3973 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 250.3389 463.6844)\\\" x=\\\"0 7.552\\\">We</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.3389 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 265.2805 463.6844)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.5305 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 279.4721 463.6844)\\\" x=\\\"0 2.224 4.888\\\">try</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 288.3588 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 291.3004 463.6844)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 297.9723 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 300.9139 463.6844)\\\" x=\\\"0 4 8.448 10.272 14.272\\\">solve</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.6366 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 322.5782 463.6844)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 333.6993 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 336.6409 463.6844)\\\" x=\\\"0 5.776 7.6 11.6 16.048 20.496 22.72 27.168\\\">Dispute.</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 366.0354 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 368.977 463.6844)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 373.4224 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 376.364 463.6844)\\\" x=\\\"0 5.776\\\">we</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 386.5905 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 389.5321 463.6844)\\\" x=\\\"0 6.664 11.112 15.112\\\">make</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 409.0947 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 412.0363 463.6844)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 416.4855 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 419.4271 463.6844)\\\" x=\\\"0 5.776 8.44 10.264 12.488 14.712 19.16\\\">written</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 443.0365 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 445.9781 463.6844)\\\" x=\\\"0 4.448 6.672 8.896 13.344\\\">offer</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 461.9859 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 464.9275 463.6844)\\\" x=\\\"0 2.664 5.504 10.84 15.288 17.512 19.736 21.56 26.008 32.672 37.12 41.568\\\">(&quot;Settlement</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 508.7205 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 511.6621 463.6844)\\\" x=\\\"0 6.224 8.448 10.672 15.12 17.784 20.624 23.288\\\">Offer&quot;),</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 537.1699 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 540.1115 463.6844)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.0099 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 555.9515 463.6844)\\\" x=\\\"0 4 8.448\\\">can</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 454.6297)\\\" x=\\\"0 2.664 7.112 8.936 13.384 17.384\\\">reject</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 229.4594 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 233.7138 454.6297)\\\" x=\\\"0 1.824\\\">it</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 237.7606 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 242.015 454.6297)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 255.3627 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 259.6171 454.6297)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 29.392\\\">arbitrate.</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.2343 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 295.4887 454.6297)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.934 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 304.1884 454.6297)\\\" x=\\\"0 5.776\\\">we</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 314.4149 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 318.6693 454.6297)\\\" x=\\\"0 4.448 8.896 13.344 14.872\\\">don&apos;t</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.767 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 340.0214 454.6297)\\\" x=\\\"0 4 8.448 10.272 14.272\\\">solve</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 358.744 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 362.9984 454.6297)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 374.1195 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 378.3739 454.6297)\\\" x=\\\"0 5.776 7.6 11.6 16.048 20.496 22.72 27.168\\\">Dispute,</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 407.7684 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 412.0228 454.6297)\\\" x=\\\"0 4.448 6.272 8.496 12.944 17.392\\\">either</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 432.0814 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 436.3358 454.6297)\\\" x=\\\"0 4.448 8.896 11.56 13.784\\\">party</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.121 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 458.3754 454.6297)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 473.4887 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 477.7431 454.6297)\\\" x=\\\"0 4 6.224 10.672 13.336\\\">start</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 493.3016 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 497.556 454.6297)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 26.768 31.216 35.664\\\">arbitration.</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 535.4467 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 539.7011 454.6297)\\\" x=\\\"0 4.888\\\">To</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.037 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 553.2914 454.6297)\\\" x=\\\"0 4 6.224 10.672 13.336\\\">start</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 445.575)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 26.768 31.216 35.664\\\">arbitration,</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.7406 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 250.0233 445.575)\\\" x=\\\"0 4 8.448 12.896 15.12 19.568 23.568\\\">contact</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.8162 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 278.0989 445.575)\\\" x=\\\"0 4.448\\\">an</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 286.9973 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 289.28 445.575)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.8893 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 315.172 445.575)\\\" x=\\\"0 4.448\\\">or</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 322.2853 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 324.5679 445.575)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 26.768 31.216\\\">arbitration</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 360.2359 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 362.5185 445.575)\\\" x=\\\"0 4.448 7.112 11.56 16.008\\\">group</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 382.9795 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 385.2621 445.575)\\\" x=\\\"0 1.824 3.648 7.648 9.872 14.32 18.768\\\">listed.</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 406.2543 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 408.5369 445.575)\\\" x=\\\"0 5.776\\\">No</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 418.7635 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 421.0461 445.575)\\\" x=\\\"0 4.448 8.896 11.56 13.784\\\">party</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 438.8313 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 441.1139 445.575)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 452.3639 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 454.6466 445.575)\\\" x=\\\"0 4.448 6.272 10.272 14.272 16.096 20.544 24.544\\\">disclose</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 483.6427 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 485.9253 445.575)\\\" x=\\\"0 4 8.448 10.672 12.896 14.72 19.168 25.832 30.28 34.728\\\">settlement</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 522.8785 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 525.1611 445.575)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456 24.456 28.904 30.728\\\">proposals</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.8955 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 562.1781 445.575)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 436.5203)\\\" x=\\\"0 2.224 6.672 11.12 13.248 18.584 21.248 25.696 27.52 29.744 34.192 36.856 38.984 43.432 47.88 50.544 52.368 56.816 61.264 63.392 67.84 70.504 74.952 76.776 79 81.664 86.112 88.336 90.16 94.608 99.056\\\">the Arbiter during arbitration.</text></g><clipPath id=\\\"clip4-25\\\"><path d=\\\"M 35 412 L 130 412 L 130 434 L 35 434 L 35 412 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-25)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 433.8406 L 129.35 433.8406 L 129.35 412.7313 L 35.45 412.7313 L 35.45 433.8406 z \\\"/><path clip-path=\\\"url(#clip4-25)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 431.8406 L 125.25 431.8406 L 125.25 413.7313 L 39.55 413.7313 L 39.55 431.8406 z \\\"/><path clip-path=\\\"url(#clip4-25)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 40.0543 431.8406 L 127.0543 431.8406 L 127.0543 421.8406 L 40.0543 421.8406 L 40.0543 431.8406 z \\\"/><g clip-path=\\\"url(#clip4-25)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.0543 424.4656)\\\" x=\\\"0 5.776 10.224 16 18.128 22.128 26.576 31.024 35.472 37.296 41.744 43.872 47.872 52.32 56.768 58.896 62.896 67.344 71.792 74.016 78.464 82.464\\\">How should you contact</text></g><path clip-path=\\\"url(#clip4-25)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 75.9508 422.7859 L 88.9508 422.7859 L 88.9508 412.7859 L 75.9508 412.7859 L 75.9508 422.7859 z \\\"/><g clip-path=\\\"url(#clip4-25)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 75.9508 415.4109)\\\" x=\\\"0 4.448 8.448\\\">us?</text></g><clipPath id=\\\"clip4-26\\\"><path d=\\\"M 129 412 L 206 412 L 206 434 L 129 434 L 129 412 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-26)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 153.3273 424.4656)\\\" x=\\\"0 5.336 9.336 11.464 18.128 22.576 24.4 26.224\\\">By mail.</text></g><clipPath id=\\\"clip4-27\\\"><path d=\\\"M 205 412 L 573 412 L 573 434 L 205 434 L 205 412 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 424.4656)\\\" x=\\\"0 5.336 9.784 14.232\\\">Send</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 228.5336 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 231.2172 424.4656)\\\" x=\\\"0 6.664 11.112 12.936\\\">mail</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.9789 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 248.6625 424.4656)\\\" x=\\\"0 2.224 6.672\\\">to:</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.557 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 260.2406 424.4656)\\\" x=\\\"0 5.336 9.784 14.232\\\">Snap</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 278.9242 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 281.6078 424.4656)\\\" x=\\\"0 5.776 10.664\\\">RTO</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 298.4945 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 301.1781 424.4656)\\\" x=\\\"0 4.448 8.896\\\">LLC</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 315.8539 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 318.5375 424.4656)\\\" x=\\\"0 5.336 7.56 9.784 14.232 18.68 20.904 22.728 27.176 31.624\\\">Attention:</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 352.3851 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 355.0687 424.4656)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 19.16 23.608 25.832 27.656 32.104 36.552\\\">Arbitration.</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.8461 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 396.5297 424.4656)\\\" x=\\\"0 5.336 7.56 13.784\\\">P.O.</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 412.5336 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 415.2172 424.4656)\\\" x=\\\"0 5.336 9.784\\\">Box</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 429.0023 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 431.6859 424.4656)\\\" x=\\\"0 4.448 8.896 13.344 17.792 22.24\\\">26561,</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.1547 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 458.8383 424.4656)\\\" x=\\\"0 5.336 9.784 11.608\\\">Salt</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 472.6703 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 475.3539 424.4656)\\\" x=\\\"0 4.448 8.896 12.896\\\">Lake</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 492.7015 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 495.3851 424.4656)\\\" x=\\\"0 5.776 7.6 9.824 13.824\\\">City,</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 511.432 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 514.1156 424.4656)\\\" x=\\\"0 5.776\\\">UT</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 524.7797 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 527.4633 424.4656)\\\" x=\\\"0 4.448 8.896 13.344 17.792 22.24\\\">84126.</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.932 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 554.6156 424.4656)\\\" x=\\\"0 5.336 9.784\\\">You</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 415.4109)\\\" x=\\\"0 4 8.448 12.896 15.024 19.024 23.472 25.296 27.12 29.248 33.696 37.696 39.824 44.272 46.936 49.064 53.512 57.512 61.96 64.088 68.088 72.536 75.2 77.424 79.248 81.472 83.296 87.744 92.192 94.32 100.984 105.432 107.256 109.08 111.208 113.432 117.88 120.008 124.008 128.456 132.904 135.128 136.952 139.616 146.28 148.408 151.072 155.52 159.52 163.968 165.792 170.24 172.464\\\">can call us or use certified mail to confirm receipt.</text></g><clipPath id=\\\"clip4-28\\\"><path d=\\\"M 35 373 L 130 373 L 130 413 L 35 413 L 35 373 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-28)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 412.7313 L 129.35 412.7313 L 129.35 373.5125 L 35.45 373.5125 L 35.45 412.7313 z \\\"/><path clip-path=\\\"url(#clip4-28)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 410.7313 L 125.25 410.7313 L 125.25 392.6219 L 39.55 392.6219 L 39.55 410.7313 z \\\"/><path clip-path=\\\"url(#clip4-28)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 41.9508 410.7313 L 122.9508 410.7313 L 122.9508 400.7313 L 41.9508 400.7313 L 41.9508 410.7313 z \\\"/><g clip-path=\\\"url(#clip4-28)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 41.9508 403.3562)\\\" x=\\\"0 5.776 10.224 14.672 16.8 20.8 27.464 31.912 33.736 35.56 38.224 42.224 44.048 48.496 50.32 56.984 60.984 63.112 67.112 71.56 76.008 78.672\\\">Can small-claims court</text></g><path clip-path=\\\"url(#clip4-28)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 43.3219 401.6766 L 122.3219 401.6766 L 122.3219 391.6766 L 43.3219 391.6766 L 43.3219 401.6766 z \\\"/><g clip-path=\\\"url(#clip4-28)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 43.3219 394.3016)\\\" x=\\\"0 4 8.448 10.272 14.272 18.72 20.848 24.848 29.296 35.96 40.408 42.536 48.312 50.136 54.136 58.584 63.032 65.256 69.704 73.704\\\">solve s* D E M O *s?</text></g><clipPath id=\\\"clip4-29\\\"><path d=\\\"M 129 373 L 206 373 L 206 413 L 129 413 L 129 373 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-29)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 159.5461 403.3562)\\\" x=\\\"0 5.336 9.784 13.784\\\">Yes.</text></g><clipPath id=\\\"clip4-30\\\"><path d=\\\"M 205 373 L 573 373 L 573 413 L 205 413 L 205 373 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 403.3562)\\\" x=\\\"0 5.3359 9.7852 13.7852\\\">Each</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 228.0844 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 229.9094 403.3562)\\\" x=\\\"0 4.4492 8.8984 11.5625 13.7851\\\">party</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.6945 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 249.5195 403.3562)\\\" x=\\\"0 4.4492 8.8984\\\">has</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.418 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 264.243 403.3562)\\\" x=\\\"0 2.2227 6.6719\\\">the</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.3641 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 277.1891 403.3562)\\\" x=\\\"0 2.6641 4.4883 8.9375 13.3867\\\">right</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 292.7984 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 294.6234 403.3562)\\\" x=\\\"0 2.2227\\\">to</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 301.2953 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 303.1203 403.3562)\\\" x=\\\"0 4.4492 7.1133 11.5625 13.3867 15.6094 18.2734 22.7227 24.9453 29.3945\\\">arbitrate,</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 334.7375 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 336.5625 403.3562)\\\" x=\\\"0 4.4492\\\">or</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 343.6758 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 345.5008 403.3562)\\\" x=\\\"0 2.2227\\\">to</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 352.1727 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 353.9976 403.3562)\\\" x=\\\"0 4.4492\\\">go</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 362.8961 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 364.7211 403.3562)\\\" x=\\\"0 2.2227\\\">to</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.393 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 373.218 403.3562)\\\" x=\\\"0 4 10.6641 15.1133 16.9375 18.7617 21.4258 25.4258 27.25 31.6992 33.5234 40.1875\\\">small-claims</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 417.4055 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 419.2305 403.3562)\\\" x=\\\"0 4 8.4492 12.8984 15.5625\\\">court</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 437.0156 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 438.8406 403.3562)\\\" x=\\\"0 1.8242\\\">if</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 442.8875 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 444.7125 403.3562)\\\" x=\\\"0 2.2227 6.6719\\\">the</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 455.8336 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 457.6586 403.3562)\\\" x=\\\"0 4 10.6641 15.1133 16.9375 18.7617 21.4258 25.4258 27.25 31.6992 33.5234 40.1875\\\">small-claims</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.8461 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 503.6711 403.3562)\\\" x=\\\"0 4 8.4492 12.8984 15.5625\\\">court</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.4562 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 523.2812 403.3562)\\\" x=\\\"0 4.4492 8.8984\\\">has</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 536.1797 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 538.0047 403.3562)\\\" x=\\\"0 2.2227 6.6719\\\">the</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 394.3016)\\\" x=\\\"0 4.4492 8.8984 14.6758 19.125\\\">power</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.639 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 233.464 394.3016)\\\" x=\\\"0 2.2227\\\">to</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 240.1359 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 241.9609 394.3016)\\\" x=\\\"0 4.4492 8.8984 13.3477\\\">hear</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.9726 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 260.0976 394.3016)\\\" x=\\\"0 2.2226 6.6719\\\">the</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 271.2187 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 273.3437 394.3016)\\\" x=\\\"0 5.7773 7.6016 11.6016 16.0508 20.5 22.7227 27.1719\\\">Dispute.</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.7383 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 304.8633 394.3016)\\\" x=\\\"0 5.3359 8 12.4492 14.2734 16.4961 19.1602 23.6094 25.832 27.6562 32.1055\\\">Arbitration</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 341.418 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 343.543 394.3016)\\\" x=\\\"0 5.7773 7.6016 9.4258\\\">will</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 354.793 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 356.918 394.3016)\\\" x=\\\"0 4 8.4492 10.2734 14.2734\\\">solve</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.6406 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 377.7656 394.3016)\\\" x=\\\"0 4.4492 6.2734\\\">all</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 385.8633 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 387.9883 394.3016)\\\" x=\\\"0 5.7774 7.6016 11.6016 16.0508 20.5 22.7227 27.1719\\\">Disputes</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.1601 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 421.2851 394.3016)\\\" x=\\\"0 2.2227 6.6719 11.1211\\\">that</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.6289 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 436.7539 394.3016)\\\" x=\\\"0 2.2226 6.6719\\\">the</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.875 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 450 394.3016)\\\" x=\\\"0 4 10.6641 15.1133 16.9375 18.7617 21.4258 25.4258 27.25 31.6992 33.5234 40.1875\\\">small-claims</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 494.1875 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 496.3125 394.3016)\\\" x=\\\"0 4 8.4492 12.8984 15.5625\\\">court</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 514.0976 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 516.2226 394.3016)\\\" x=\\\"0 4.4492 8.8984 13.3477\\\">does</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 533.5703 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 535.6953 394.3016)\\\" x=\\\"0 4.4492 8.8984\\\">not</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 546.8164 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 548.9414 394.3016)\\\" x=\\\"0 4.4492 8.8984 12.8984\\\">have</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 385.2469)\\\" x=\\\"0 2.2227 6.6719\\\">the</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 220.9711 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 223.0961 385.2469)\\\" x=\\\"0 4.4492 8.8984 14.6758 19.125\\\">power</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 244.8852 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 247.0101 385.2469)\\\" x=\\\"0 2.2227\\\">to</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 253.682 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 255.807 385.2469)\\\" x=\\\"0 4.4492 8.8984 13.3477 16.0117\\\">hear.</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 274.0414 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 276.1664 385.2469)\\\" x=\\\"0 2.2226\\\">If</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.6117 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 282.7367 385.2469)\\\" x=\\\"0 2.2227 6.6719 11.1211 13.7852\\\">there</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 300.9711 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 303.0961 385.2469)\\\" x=\\\"0 1.8242\\\">is</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.9203 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 311.0453 385.2469)\\\" x=\\\"0 4.4492\\\">an</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.9437 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 322.0687 385.2469)\\\" x=\\\"0 4.4492 8.8984 13.3477 17.7969 22.2461\\\">appeal</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 346.139 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 348.264 385.2469)\\\" x=\\\"0 2.2227 4.8867 9.3359\\\">from</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 364.264 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 366.389 385.2469)\\\" x=\\\"0 4 10.6641 15.1133 16.9375 18.7617 21.4258 25.4258 27.25 31.6992 33.5234 40.1875\\\">small-claims</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 410.5765 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 412.7015 385.2469)\\\" x=\\\"0 4 8.4492 12.8984 15.5625 17.7852\\\">court,</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 432.7094 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 434.8344 385.2469)\\\" x=\\\"0 4.4492\\\">or</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 441.9477 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 444.0727 385.2469)\\\" x=\\\"0 1.8242\\\">if</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 448.1195 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 450.2445 385.2469)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.6937 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 456.8187 385.2469)\\\" x=\\\"0 5.7773 7.6016 11.6016 16.0508 20.5 22.7227\\\">Dispute</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 483.9906 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 486.1156 385.2469)\\\" x=\\\"0 4 8.4492 12.8984 17.3476 21.7969 26.2461\\\">changes</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 516.3617 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 518.4867 385.2469)\\\" x=\\\"0 4\\\">so</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.9359 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 529.0609 385.2469)\\\" x=\\\"0 2.2227 6.6719 11.1211\\\">that</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 542.4047 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 544.5297 385.2469)\\\" x=\\\"0 2.2227 6.6719\\\">the</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 376.1922)\\\" x=\\\"0 4 10.6641 15.1133 16.9375 18.7617 21.4258 25.4258 27.25 31.6992 33.5234 40.1875\\\">small-claims</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 254.0375 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 256.1625 376.1922)\\\" x=\\\"0 4 8.4492 12.8984 15.5625\\\">court</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 273.9477 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 276.0727 376.1922)\\\" x=\\\"0 1.8242 6.2734 10.2734 14.7226\\\">loses</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 294.7953 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 296.9203 376.1922)\\\" x=\\\"0 2.2227 6.6719\\\">the</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.0414 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 310.1664 376.1922)\\\" x=\\\"0 4.4492 8.8984 14.6758 19.125\\\">power</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 331.9555 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 333.7805 376.1922)\\\" x=\\\"0 2.2227\\\">to</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 340.4523 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 342.2773 376.1922)\\\" x=\\\"0 4.4492 8.8984 13.3477\\\">hear</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 358.289 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 360.1141 376.1922)\\\" x=\\\"0 1.8242 4.0469\\\">it,</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 366.3836 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 368.2086 376.1922)\\\" x=\\\"0 2.2226 6.6719 11.1211\\\">then</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.7789 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 385.6039 376.1922)\\\" x=\\\"0 2.2227 6.6719\\\">the</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 396.725 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 398.55 376.1922)\\\" x=\\\"0 5.7773 7.6016 11.6016 16.0508 20.5 22.7227\\\">Dispute</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 425.7219 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 427.5469 376.1922)\\\" x=\\\"0 5.7773 7.6016 9.4258\\\">will</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 438.7969 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 440.6219 376.1922)\\\" x=\\\"0 4.4492 8.8984 10.7227\\\">only</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 455.3445 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 457.1695 376.1922)\\\" x=\\\"0 4.4492\\\">be</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.068 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 467.893 376.1922)\\\" x=\\\"0 4.4492 8.8984 13.3477 16.0117\\\">heard</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 488.3539 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 490.1789 376.1922)\\\" x=\\\"0 4.4492\\\">by</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 498.6281 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 500.4531 376.1922)\\\" x=\\\"0 4.4492\\\">an</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.3516 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 511.1766 376.1922)\\\" x=\\\"0 5.3359 8 12.4492 14.2734 16.4961 20.9453 23.6094\\\">Arbiter.</text></g><clipPath id=\\\"clip4-31\\\"><path d=\\\"M 35 343 L 130 343 L 130 374 L 35 374 L 35 343 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-31)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 373.5125 L 129.35 373.5125 L 129.35 343.3484 L 35.45 343.3484 L 35.45 373.5125 z \\\"/><path clip-path=\\\"url(#clip4-31)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 371.5125 L 125.25 371.5125 L 125.25 362.4578 L 39.55 362.4578 L 39.55 371.5125 z \\\"/><path clip-path=\\\"url(#clip4-31)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 41.5875 371.5125 L 123.5875 371.5125 L 123.5875 361.5125 L 41.5875 361.5125 L 41.5875 371.5125 z \\\"/><g clip-path=\\\"url(#clip4-31)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 41.5875 364.1375)\\\" x=\\\"0 5.776 10.224 12.352 16.8 19.024 23.472 27.92 30.584 32.712 37.16 41.608 43.832 45.656 50.104 54.552 58.552 60.68 65.128 69.128 70.952 74.952 77.176\\\">Do other options exist?</text></g><clipPath id=\\\"clip4-32\\\"><path d=\\\"M 129 343 L 206 343 L 206 374 L 129 374 L 129 343 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-32)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 159.5461 364.1375)\\\" x=\\\"0 5.336 9.784 13.784\\\">Yes.</text></g><clipPath id=\\\"clip4-33\\\"><path d=\\\"M 205 343 L 573 343 L 573 374 L 205 374 L 205 343 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 364.1375)\\\" x=\\\"0 5.336 9.784 12.008\\\">Both</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 226.307 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 228.8021 364.1375)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056\\\">parties</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 252.8607 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 255.3557 364.1375)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 270.469 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 272.964 364.1375)\\\" x=\\\"0 4.448 8.448\\\">use</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 285.8625 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 288.3575 364.1375)\\\" x=\\\"0 1.824 6.272 12.048 14.272 18.72\\\">lawful</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.9044 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 311.3995 364.1375)\\\" x=\\\"0 4 8.448 10.272 12.496 15.16 19.608 24.056 25.88\\\">self-help</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 341.7315 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 344.2265 364.1375)\\\" x=\\\"0 2.664 7.112 13.776 18.224 22.672 24.496 28.944 32.944\\\">remedies.</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 379.3984 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 381.8935 364.1375)\\\" x=\\\"0 4.888 9.336 11.16\\\">This</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 397.0536 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 399.5487 364.1375)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44\\\">includes</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 428.994 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 431.489 364.1375)\\\" x=\\\"0 4 8.448 10.672 13.336 17.784 20.008\\\">set-off</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 453.7195 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 456.2146 364.1375)\\\" x=\\\"0 4.448\\\">or</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 463.3279 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 465.8229 364.1375)\\\" x=\\\"0 2.664 7.112 11.56 16.008 20.008 24.008 28.456 32.456 36.456 38.28 42.728\\\">repossession</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 513.0065 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 515.5015 364.1375)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 528.8492 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 531.3443 364.1375)\\\" x=\\\"0 4 8.448 10.272\\\">sale</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 546.0669 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 548.562 364.1375)\\\" x=\\\"0 4.448\\\">of</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 555.2339 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 557.7289 364.1375)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 355.0828)\\\" x=\\\"0 5.336 8 12.448 16.896 21.344 24.008 26.232 30.232\\\">Property.</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 242.307 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 245.9017 355.0828)\\\" x=\\\"0 5.336 9.784 12.008\\\">Both</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.3587 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 265.9534 355.0828)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056\\\">parties</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.0119 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 293.6066 355.0828)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.7199 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 312.3145 355.0828)\\\" x=\\\"0 4 8.448 12.896\\\">seek</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.213 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 332.8076 355.0828)\\\" x=\\\"0 2.664 7.112 13.776 18.224 22.672 24.496 28.944\\\">remedies</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 365.7568 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 369.3515 355.0828)\\\" x=\\\"0 5.776 10.224 12.048 16.048\\\">which</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 389.8515 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 393.4461 355.0828)\\\" x=\\\"0 4.448 8.896 13.344 14.872\\\">don&apos;t</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 410.5438 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 414.1384 355.0828)\\\" x=\\\"0 4 5.824 10.272 12.096\\\">claim</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 432.9002 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 436.4948 355.0828)\\\" x=\\\"0 6.664 11.112 15.56 20.008\\\">money</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 460.5065 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 464.1012 355.0828)\\\" x=\\\"0 4.448 8.896 15.56 20.008 24.456 28.904 32.904\\\">damages.</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.234 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 502.8287 355.0828)\\\" x=\\\"0 4.888 9.336 11.16\\\">This</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 517.9888 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 521.5835 355.0828)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44\\\">includes</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.0288 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 554.6234 355.0828)\\\" x=\\\"0 4.448 7.112 11.56\\\">pre-</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 346.0281)\\\" x=\\\"0 1.824 6.272 10.72 15.168 21.832 26.28 30.728 32.952 35.08 39.08 43.528 45.352 49.352 53.8 56.464 60.912 63.136 65.264 67.088 71.536 73.36 77.808 82.256 86.256 88.48 90.304 94.752 99.2 103.2 105.424 107.552 112 114.664 116.792 121.24 125.688 130.136 131.96 134.184 138.632 143.08 144.904 149.352 151.48 154.144 158.592 160.416 162.24 166.688 168.912\\\">judgment seizure, injunctions, or equitable relief.</text></g><clipPath id=\\\"clip4-34\\\"><path d=\\\"M 35 295 L 130 295 L 130 344 L 35 344 L 35 295 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-34)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 343.3484 L 129.35 343.3484 L 129.35 295.075 L 35.45 295.075 L 35.45 343.3484 z \\\"/><path clip-path=\\\"url(#clip4-34)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 341.3484 L 125.25 341.3484 L 125.25 323.2391 L 39.55 323.2391 L 39.55 341.3484 z \\\"/><path clip-path=\\\"url(#clip4-34)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 55.0406 341.3484 L 110.0406 341.3484 L 110.0406 331.3484 L 55.0406 331.3484 L 55.0406 341.3484 z \\\"/><g clip-path=\\\"url(#clip4-34)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 55.0406 333.9734)\\\" x=\\\"0 7.552 9.376 11.2 13.024 15.152 17.376 21.824 23.648 27.648 29.776 35.552 37.376 41.824 46.272 50.272\\\">Will this Clause</text></g><path clip-path=\\\"url(#clip4-34)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 47.3375 332.2938 L 118.3375 332.2938 L 118.3375 322.2938 L 47.3375 322.2938 L 47.3375 332.2938 z \\\"/><g clip-path=\\\"url(#clip4-34)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.3375 324.9187)\\\" x=\\\"0 4 8.448 12.896 15.12 16.944 21.392 25.84 30.288 32.416 34.64 39.088 41.216 45.664 50.112 54.112 58.56 61.224 65.672\\\">continue to govern?</text></g><clipPath id=\\\"clip4-35\\\"><path d=\\\"M 129 295 L 206 295 L 206 344 L 129 344 L 129 295 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-35)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.8976 333.9734)\\\" x=\\\"0 5.336 9.784 13.784 16.008 18.136 22.584 27.032 28.856 33.304 37.304\\\">Yes, unless</text></g><g clip-path=\\\"url(#clip4-35)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 135.7785 324.9187)\\\" x=\\\"0 4.448 6.672 11.12 15.568 18.232 24.008 25.832 29.832 34.28 36.408 40.856 45.304 47.968 52.416 56.864 61.312\\\">otherwise agreed.</text></g><clipPath id=\\\"clip4-36\\\"><path d=\\\"M 205 295 L 573 295 L 573 344 L 205 344 L 205 295 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 333.9734)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 223.6351 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 227.574 333.9734)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496\\\">Clause</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 252.5233 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 256.4622 333.9734)\\\" x=\\\"0 4 6.224 10.672 14.672\\\">stays</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.134 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 279.0729 333.9734)\\\" x=\\\"0 4.448 6.672 8.896 13.344 17.344 19.568 21.392 25.392 29.84\\\">effective,</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 311.1354 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 315.0743 333.9734)\\\" x=\\\"0 4.448 8.896 10.72 15.168 19.168\\\">unless</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.2462 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 342.1851 333.9734)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 353.3062 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 357.2451 333.9734)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056\\\">parties</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 381.3037 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 385.2426 333.9734)\\\" x=\\\"0 4 5.824 10.272\\\">sign</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 399.9652 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 403.9041 333.9734)\\\" x=\\\"0 4.448\\\">an</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 412.8026 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 416.7415 333.9734)\\\" x=\\\"0 4.448 8.896 11.56 16.008 20.456 27.12 31.568 36.016\\\">agreement</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.9875 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 458.9264 333.9734)\\\" x=\\\"0 4 6.224 10.672 12.896 14.72 19.168\\\">stating</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 482.5436 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 486.4825 333.9734)\\\" x=\\\"0 1.824\\\">it</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 490.5294 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 494.4683 333.9734)\\\" x=\\\"0 4.448 8.896 13.344 17.344 21.792 23.32 25.544\\\">doesn&apos;t.</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 522.2378 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 526.1767 333.9734)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 539.9619 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 543.9008 333.9734)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496\\\">Clause</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 324.9187)\\\" x=\\\"0 4.448 8.896 12.896 17.344 20.008 24.456\\\">governs</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.3109 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 241.2057 324.9187)\\\" x=\\\"0 1.824\\\">if</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.2526 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 248.1473 324.9187)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 261.0458 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 263.9405 324.9187)\\\" x=\\\"0 2.664 7.112 11.112 15.112 16.936 21.384\\\">rescind</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 289.7765 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 292.6712 324.9187)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 303.7923 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 306.6871 324.9187)\\\" x=\\\"0 2.224 4.888 9.336 13.784 17.784 22.232 26.232 28.456 30.28 34.728 39.176\\\">transaction.</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.0894 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 350.9842 324.9187)\\\" x=\\\"0 2.224\\\">It</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.4295 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 358.3243 324.9187)\\\" x=\\\"0 4.448 8.896 12.896 17.344 20.008 24.456\\\">governs</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 386.7852 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 389.68 324.9187)\\\" x=\\\"0 1.824\\\">if</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.7268 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 396.6216 324.9187)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 409.52 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 412.4148 324.9187)\\\" x=\\\"0 4.448 8.896 11.12 15.568 20.016 21.84 24.064\\\">default,</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 438.7038 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 441.5986 324.9187)\\\" x=\\\"0 2.664 7.112 11.56 16.008 21.784\\\">renew,</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 465.6103 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 468.5051 324.9187)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456 24.456\\\">prepay,</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 495.1887 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 498.0834 324.9187)\\\" x=\\\"0 4.448\\\">or</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 505.1967 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 508.0915 324.9187)\\\" x=\\\"0 4.448 8.896 12.896\\\">pay.</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 523.2126 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 526.1073 324.9187)\\\" x=\\\"0 2.224\\\">It</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 530.5527 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 533.4474 324.9187)\\\" x=\\\"0 4.448 8.896 12.896 17.344 20.008 24.456\\\">governs</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 561.9084 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 564.8031 324.9187)\\\" x=\\\"0 1.824\\\">if</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 315.8641)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 222.7484 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 227.0199 315.8641)\\\" x=\\\"0 2.224 6.672 9.336 16 17.824 22.272 26.72 28.944 33.392\\\">terminate,</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.6371 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 266.9086 315.8641)\\\" x=\\\"0 1.824\\\">if</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 270.9555 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 275.2269 315.8641)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 288.1254 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 292.3969 315.8641)\\\" x=\\\"0 2.664 7.112 8.936 13.384 17.384 19.608 24.056 26.28 30.728\\\">reinstate,</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 325.35 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 329.6215 315.8641)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 342.9691 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 347.2406 315.8641)\\\" x=\\\"0 1.824\\\">if</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.2875 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 355.559 315.8641)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 368.4574 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 372.7289 315.8641)\\\" x=\\\"0 2.664 7.112 9.336 13.784 16.448\\\">return</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.6273 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 397.8988 315.8641)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 409.0199 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 413.2914 315.8641)\\\" x=\\\"0 5.336 8 12.448 16.896 21.344 24.008 26.232 30.232\\\">Property.</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 445.7484 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 450.0199 315.8641)\\\" x=\\\"0 2.224\\\">It</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.4652 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 458.7367 315.8641)\\\" x=\\\"0 4.448 8.896 12.896 17.344 20.008 24.456\\\">governs</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 487.1977 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 491.4691 315.8641)\\\" x=\\\"0 1.824\\\">if</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 495.516 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 499.7875 315.8641)\\\" x=\\\"0 4 8.448 12.896\\\">your</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 515.35 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 519.6215 315.8641)\\\" x=\\\"0 5.336 9.784 12.448 16.896 21.344 28.008 32.456 36.904\\\">Agreement</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 558.7543 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 563.0258 315.8641)\\\" x=\\\"0 1.824\\\">is</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 306.8094)\\\" x=\\\"0 1.824 8.488 12.936 17.384 21.384 23.608 28.056\\\">impacted</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 242.3578 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 248.4078 306.8094)\\\" x=\\\"0 4.448\\\">by</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.857 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 262.907 306.8094)\\\" x=\\\"0 4.448 8.896 13.344 17.344 20.008 24.456 28.904 31.128 35.128 39.128\\\">bankruptcy.</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 304.2625 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 310.3125 306.8094)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 324.0976 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 330.1477 306.8094)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496\\\">Clause</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.0969 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 361.1469 306.8094)\\\" x=\\\"0 2.664 7.112 13.776 18.224 20.048 24.496\\\">remains</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 389.6469 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 395.6969 306.8094)\\\" x=\\\"0 4.448 6.672 8.896 13.344 17.344 19.568 21.392 25.392 29.84\\\">effective,</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 427.7594 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 433.8094 306.8094)\\\" x=\\\"0 4.448 8.896 12.896 17.344 19.168 21.392\\\">despite</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 459.6531 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 465.7031 306.8094)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 470.1523 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 476.2023 306.8094)\\\" x=\\\"0 2.224 4.888 9.336 13.784 17.784 22.232 26.232 28.456 30.28 34.728 39.176 40.704\\\">transaction&apos;s</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 520.9094 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 526.9594 306.8094)\\\" x=\\\"0 2.224 6.672 9.336 16 17.824 22.272 26.72 28.944 30.768 35.216 39.664\\\">termination,</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 297.7547)\\\" x=\\\"0 4.448 11.112 15.56 20.008 24.456 31.12 35.568 40.016 42.24 44.464 46.592 51.04 55.04 59.488 61.312 63.976 68.424 70.648 72.472 76.92 81.368 83.592 85.72 90.168 92.832 94.96 99.408 103.856 106.52 108.744 113.192 115.856 122.52 126.968 131.416 135.416 139.864\\\">amendment, expiration, or performance.</text></g><clipPath id=\\\"clip4-37\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 770.2 L 129.85 770.2 L 129.85 769.2 L 34.95 769.2 L 34.95 770.2 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 769.2 L 35.95 769.2 L 35.95 749.0906 L 34.95 749.0906 L 34.95 769.2 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 770.2 L 206.25 770.2 L 206.25 769.2 L 129.85 769.2 L 129.85 770.2 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 769.2 L 129.85 769.2 L 129.85 749.0906 L 128.85 749.0906 L 128.85 769.2 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 770.2 L 573.45 770.2 L 573.45 769.2 L 206.25 769.2 L 206.25 770.2 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 769.2 L 573.45 769.2 L 573.45 749.0906 L 572.45 749.0906 L 572.45 769.2 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 769.2 L 206.25 769.2 L 206.25 749.0906 L 205.25 749.0906 L 205.25 769.2 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 749.0906 L 129.85 749.0906 L 129.85 748.0906 L 34.95 748.0906 L 34.95 749.0906 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 748.0906 L 35.95 748.0906 L 35.95 727.9813 L 34.95 727.9813 L 34.95 748.0906 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 749.0906 L 206.25 749.0906 L 206.25 748.0906 L 129.85 748.0906 L 129.85 749.0906 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 748.0906 L 129.85 748.0906 L 129.85 727.9813 L 128.85 727.9813 L 128.85 748.0906 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 749.0906 L 573.45 749.0906 L 573.45 748.0906 L 206.25 748.0906 L 206.25 749.0906 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 748.0906 L 573.45 748.0906 L 573.45 727.9813 L 572.45 727.9813 L 572.45 748.0906 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 748.0906 L 206.25 748.0906 L 206.25 727.9813 L 205.25 727.9813 L 205.25 748.0906 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 727.9813 L 129.85 727.9813 L 129.85 726.9813 L 34.95 726.9813 L 34.95 727.9813 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 726.9813 L 35.95 726.9813 L 35.95 706.8719 L 34.95 706.8719 L 34.95 726.9813 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 727.9813 L 206.25 727.9813 L 206.25 726.9813 L 129.85 726.9813 L 129.85 727.9813 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 726.9813 L 129.85 726.9813 L 129.85 706.8719 L 128.85 706.8719 L 128.85 726.9813 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 727.9813 L 573.45 727.9813 L 573.45 726.9813 L 206.25 726.9813 L 206.25 727.9813 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 726.9813 L 573.45 726.9813 L 573.45 706.8719 L 572.45 706.8719 L 572.45 726.9813 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 726.9813 L 206.25 726.9813 L 206.25 706.8719 L 205.25 706.8719 L 205.25 726.9813 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 706.8719 L 129.85 706.8719 L 129.85 705.8719 L 34.95 705.8719 L 34.95 706.8719 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 705.8719 L 35.95 705.8719 L 35.95 631.4344 L 34.95 631.4344 L 34.95 705.8719 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 706.8719 L 206.25 706.8719 L 206.25 705.8719 L 129.85 705.8719 L 129.85 706.8719 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 705.8719 L 129.85 705.8719 L 129.85 631.4344 L 128.85 631.4344 L 128.85 705.8719 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 706.8719 L 573.45 706.8719 L 573.45 705.8719 L 206.25 705.8719 L 206.25 706.8719 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 705.8719 L 573.45 705.8719 L 573.45 631.4344 L 572.45 631.4344 L 572.45 705.8719 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 705.8719 L 206.25 705.8719 L 206.25 631.4344 L 205.25 631.4344 L 205.25 705.8719 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 631.4344 L 129.85 631.4344 L 129.85 630.4344 L 34.95 630.4344 L 34.95 631.4344 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 630.4344 L 35.95 630.4344 L 35.95 579.1609 L 34.95 579.1609 L 34.95 630.4344 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 631.4344 L 206.25 631.4344 L 206.25 630.4344 L 129.85 630.4344 L 129.85 631.4344 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 630.4344 L 129.85 630.4344 L 129.85 579.1609 L 128.85 579.1609 L 128.85 630.4344 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 631.4344 L 573.45 631.4344 L 573.45 630.4344 L 206.25 630.4344 L 206.25 631.4344 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 630.4344 L 573.45 630.4344 L 573.45 579.1609 L 572.45 579.1609 L 572.45 630.4344 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 630.4344 L 206.25 630.4344 L 206.25 579.1609 L 205.25 579.1609 L 205.25 630.4344 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 579.1609 L 129.85 579.1609 L 129.85 578.1609 L 34.95 578.1609 L 34.95 579.1609 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 578.1609 L 35.95 578.1609 L 35.95 530.8875 L 34.95 530.8875 L 34.95 578.1609 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 579.1609 L 206.25 579.1609 L 206.25 578.1609 L 129.85 578.1609 L 129.85 579.1609 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 578.1609 L 129.85 578.1609 L 129.85 530.8875 L 128.85 530.8875 L 128.85 578.1609 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 579.1609 L 573.45 579.1609 L 573.45 578.1609 L 206.25 578.1609 L 206.25 579.1609 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 578.1609 L 573.45 578.1609 L 573.45 530.8875 L 572.45 530.8875 L 572.45 578.1609 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 578.1609 L 206.25 578.1609 L 206.25 530.8875 L 205.25 530.8875 L 205.25 578.1609 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 530.8875 L 129.85 530.8875 L 129.85 529.8875 L 34.95 529.8875 L 34.95 530.8875 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 529.8875 L 35.95 529.8875 L 35.95 491.6688 L 34.95 491.6688 L 34.95 529.8875 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 530.8875 L 206.25 530.8875 L 206.25 529.8875 L 129.85 529.8875 L 129.85 530.8875 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 529.8875 L 129.85 529.8875 L 129.85 491.6688 L 128.85 491.6688 L 128.85 529.8875 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 530.8875 L 573.45 530.8875 L 573.45 529.8875 L 206.25 529.8875 L 206.25 530.8875 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 529.8875 L 573.45 529.8875 L 573.45 491.6688 L 572.45 491.6688 L 572.45 529.8875 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 529.8875 L 206.25 529.8875 L 206.25 491.6688 L 205.25 491.6688 L 205.25 529.8875 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 491.6688 L 129.85 491.6688 L 129.85 490.6688 L 34.95 490.6688 L 34.95 491.6688 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 490.6688 L 35.95 490.6688 L 35.95 434.3406 L 34.95 434.3406 L 34.95 490.6688 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 491.6688 L 206.25 491.6688 L 206.25 490.6688 L 129.85 490.6688 L 129.85 491.6688 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 490.6688 L 129.85 490.6688 L 129.85 434.3406 L 128.85 434.3406 L 128.85 490.6688 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 491.6688 L 573.45 491.6688 L 573.45 490.6688 L 206.25 490.6688 L 206.25 491.6688 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 490.6688 L 573.45 490.6688 L 573.45 434.3406 L 572.45 434.3406 L 572.45 490.6688 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 490.6688 L 206.25 490.6688 L 206.25 434.3406 L 205.25 434.3406 L 205.25 490.6688 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 434.3406 L 129.85 434.3406 L 129.85 433.3406 L 34.95 433.3406 L 34.95 434.3406 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 433.3406 L 35.95 433.3406 L 35.95 413.2313 L 34.95 413.2313 L 34.95 433.3406 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 434.3406 L 206.25 434.3406 L 206.25 433.3406 L 129.85 433.3406 L 129.85 434.3406 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 433.3406 L 129.85 433.3406 L 129.85 413.2313 L 128.85 413.2313 L 128.85 433.3406 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 434.3406 L 573.45 434.3406 L 573.45 433.3406 L 206.25 433.3406 L 206.25 434.3406 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 433.3406 L 573.45 433.3406 L 573.45 413.2313 L 572.45 413.2313 L 572.45 433.3406 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 433.3406 L 206.25 433.3406 L 206.25 413.2313 L 205.25 413.2313 L 205.25 433.3406 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 413.2313 L 129.85 413.2313 L 129.85 412.2313 L 34.95 412.2313 L 34.95 413.2313 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 412.2313 L 35.95 412.2313 L 35.95 374.0125 L 34.95 374.0125 L 34.95 412.2313 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 413.2313 L 206.25 413.2313 L 206.25 412.2313 L 129.85 412.2313 L 129.85 413.2313 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 412.2313 L 129.85 412.2313 L 129.85 374.0125 L 128.85 374.0125 L 128.85 412.2313 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 413.2313 L 573.45 413.2313 L 573.45 412.2313 L 206.25 412.2313 L 206.25 413.2313 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 412.2313 L 573.45 412.2313 L 573.45 374.0125 L 572.45 374.0125 L 572.45 412.2313 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 412.2313 L 206.25 412.2313 L 206.25 374.0125 L 205.25 374.0125 L 205.25 412.2313 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 374.0125 L 129.85 374.0125 L 129.85 373.0125 L 34.95 373.0125 L 34.95 374.0125 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 373.0125 L 35.95 373.0125 L 35.95 343.8484 L 34.95 343.8484 L 34.95 373.0125 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 374.0125 L 206.25 374.0125 L 206.25 373.0125 L 129.85 373.0125 L 129.85 374.0125 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 373.0125 L 129.85 373.0125 L 129.85 343.8484 L 128.85 343.8484 L 128.85 373.0125 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 374.0125 L 573.45 374.0125 L 573.45 373.0125 L 206.25 373.0125 L 206.25 374.0125 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 373.0125 L 573.45 373.0125 L 573.45 343.8484 L 572.45 343.8484 L 572.45 373.0125 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 373.0125 L 206.25 373.0125 L 206.25 343.8484 L 205.25 343.8484 L 205.25 373.0125 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 343.8484 L 129.85 343.8484 L 129.85 342.8484 L 34.95 342.8484 L 34.95 343.8484 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 295.575 L 129.85 295.575 L 129.85 294.575 L 34.95 294.575 L 34.95 295.575 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 342.8484 L 35.95 342.8484 L 35.95 295.575 L 34.95 295.575 L 34.95 342.8484 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 343.8484 L 206.25 343.8484 L 206.25 342.8484 L 129.85 342.8484 L 129.85 343.8484 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 295.575 L 206.25 295.575 L 206.25 294.575 L 129.85 294.575 L 129.85 295.575 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 342.8484 L 129.85 342.8484 L 129.85 295.575 L 128.85 295.575 L 128.85 342.8484 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 343.8484 L 573.45 343.8484 L 573.45 342.8484 L 206.25 342.8484 L 206.25 343.8484 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 295.575 L 573.45 295.575 L 573.45 294.575 L 206.25 294.575 L 206.25 295.575 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 342.8484 L 573.45 342.8484 L 573.45 295.575 L 572.45 295.575 L 572.45 342.8484 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 342.8484 L 206.25 342.8484 L 206.25 295.575 L 205.25 295.575 L 205.25 342.8484 z \\\"/><g clip-path=\\\"url(#clip4-37)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 286.1385 282.8562)\\\" x=\\\"0 6.67 10 15.56 20.56 26.12 31.12\\\">Process</text></g><clipPath id=\\\"clip4-38\\\"><path d=\\\"M 35 214 L 128 214 L 128 272 L 35 272 L 35 214 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-38)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.2 271.652 L 127.6 271.652 L 127.6 214.3238 L 35.2 214.3238 L 35.2 271.652 z \\\"/><path clip-path=\\\"url(#clip4-38)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.3 269.652 L 123.5 269.652 L 123.5 251.5426 L 39.3 251.5426 L 39.3 269.652 z \\\"/><path clip-path=\\\"url(#clip4-38)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 44.7652 269.652 L 118.7652 269.652 L 118.7652 259.652 L 44.7652 259.652 L 44.7652 269.652 z \\\"/><g clip-path=\\\"url(#clip4-38)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 44.7652 262.277)\\\" x=\\\"0 5.776 10.224 16 18.128 22.576 27.024 31.472 35.472 37.6 42.048 44.712 49.16 50.984 53.208 55.872 60.32 62.544 64.368 68.816\\\">How does arbitration</text></g><path clip-path=\\\"url(#clip4-38)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 71.3961 260.5973 L 92.3961 260.5973 L 92.3961 250.5973 L 71.3961 250.5973 L 71.3961 260.5973 z \\\"/><g clip-path=\\\"url(#clip4-38)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 71.3961 253.2223)\\\" x=\\\"0 4 6.224 10.672 13.336 15.56\\\">start?</text></g><clipPath id=\\\"clip4-39\\\"><path d=\\\"M 127 214 L 206 214 L 206 272 L 127 272 L 127 214 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-39)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 137.6496 262.277)\\\" x=\\\"0 6.664 11.112 12.936 14.76 16.584 21.032 25.48 27.608 32.056 34.184 38.632 43.08 45.304 47.128 51.128 55.576\\\">Mailing a notice.</text></g><clipPath id=\\\"clip4-40\\\"><path d=\\\"M 205 214 L 574 214 L 574 272 L 205 272 L 205 214 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 262.277)\\\" x=\\\"0 5.336 7.16 9.384 13.832 18.28\\\">Either</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 230.5453 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 233.8153 262.277)\\\" x=\\\"0 4.448 8.896 11.56 13.784\\\">party</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 251.6004 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 254.8704 262.277)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 269.9837 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 273.2536 262.277)\\\" x=\\\"0 6.664 11.112 12.936\\\">mail</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 288.0154 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 291.2853 262.277)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.4064 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 305.6764 262.277)\\\" x=\\\"0 4.448 6.672 11.12 15.568\\\">other</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 323.9108 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 327.1807 262.277)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 331.6299 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 334.8999 262.277)\\\" x=\\\"0 2.664 7.112 11.56 16.008 20.456 24.456\\\">request</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 361.5835 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 364.8535 262.277)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.5253 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 374.7953 262.277)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 29.392\\\">arbitrate,</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 406.4125 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 409.6825 262.277)\\\" x=\\\"0 4.448 8.448 12.896\\\">even</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 427.0301 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 430.3001 262.277)\\\" x=\\\"0 1.824\\\">if</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.3469 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 437.6169 262.277)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 442.0661 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 445.3361 262.277)\\\" x=\\\"0 1.824 6.272 12.048 16.048 20.496 22.32\\\">lawsuit</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 469.883 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 473.1529 262.277)\\\" x=\\\"0 4.448 8.896\\\">has</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.0514 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 489.3213 262.277)\\\" x=\\\"0 4.448 8.896 13.344\\\">been</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 507.1182 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 510.3882 262.277)\\\" x=\\\"0 2.224 4.048 5.872 10.32 14.768\\\">filed.</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 527.3804 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 530.6503 262.277)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 544.4355 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 547.7055 262.277)\\\" x=\\\"0 4.448 8.896 11.12 12.944 16.944\\\">notice</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 253.2223)\\\" x=\\\"0 4 8.448 12.896 17.344 19.168\\\">should</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.2211 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 236.4008 253.2223)\\\" x=\\\"0 4.448 8.896 12.896 16.896 19.56 21.384 25.832\\\">describe</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 266.6859 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 269.8656 253.2223)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.9867 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 284.1664 253.2223)\\\" x=\\\"0 5.776 7.6 11.6 16.048 20.496 22.72\\\">Dispute</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 311.3383 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 314.518 253.2223)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 327.8656 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 331.0453 253.2223)\\\" x=\\\"0 2.664 7.112 8.936 10.76 15.208\\\">relief</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.4789 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 351.6586 253.2223)\\\" x=\\\"0 4 8.448 12.896 17.344 21.792 24.016\\\">sought.</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 377.9008 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 381.0805 253.2223)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 394.8656 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 398.0453 253.2223)\\\" x=\\\"0 2.664 7.112 11.112 15.56 17.384 21.384 23.208 27.656\\\">receiving</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.1547 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 433.3344 253.2223)\\\" x=\\\"0 4.448 8.896 11.56 13.784\\\">party</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 451.1195 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 454.2992 253.2223)\\\" x=\\\"0 6.664 11.112 15.112\\\">must</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 471.6351 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 474.8148 253.2223)\\\" x=\\\"0 6.664 11.112 12.936\\\">mail</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.5765 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 492.7562 253.2223)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 497.2055 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 500.3851 253.2223)\\\" x=\\\"0 2.664 7.112 11.112 15.56 20.008 24.456 28.456\\\">response</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 533.2953 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 536.475 253.2223)\\\" x=\\\"0 5.776 7.6 9.824 14.272 16.096\\\">within</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 557.0219 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 560.2015 253.2223)\\\" x=\\\"0 4.448\\\">20</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 244.1676)\\\" x=\\\"0 4.448 8.896 12.896 16.896\\\">days.</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 228.7211 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 231.1538 244.1676)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 235.5991 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 238.0317 244.1676)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 250.9302 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 253.3629 244.1676)\\\" x=\\\"0 6.664 11.112 12.936\\\">mail</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 268.1246 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 270.5573 244.1676)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.6783 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 284.111 244.1676)\\\" x=\\\"0 4.448 8.896 15.56 20.008 24.456 28.904\\\">demand,</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 315.2438 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 317.6765 244.1676)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 330.575 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 333.0076 244.1676)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.1209 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 350.5536 244.1676)\\\" x=\\\"0 4 8.448 12.896 17.344 21.344\\\">choose</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 376.3505 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 378.7831 244.1676)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 389.9042 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 392.3369 244.1676)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 26.768 31.216\\\">arbitration</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 428.0049 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 430.4375 244.1676)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456\\\">group.</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 453.1211 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 455.5538 244.1676)\\\" x=\\\"0 6.224 8.888\\\">Or,</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.6632 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 469.0959 244.1676)\\\" x=\\\"0 4 8.448 12.896\\\">your</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.6584 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 487.091 244.1676)\\\" x=\\\"0 4.448 8.896 15.56 20.008 24.456\\\">demand</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 516.0012 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 518.4339 244.1676)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 533.5471 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 535.9798 244.1676)\\\" x=\\\"0 4 6.224 10.672 12.896\\\">state</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.3236 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 555.7562 244.1676)\\\" x=\\\"0 2.224 6.672 11.12\\\">that</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 235.1129)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 222.4984 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 224.7098 235.1129)\\\" x=\\\"0 5.776 10.224 14.672\\\">want</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 241.6082 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 243.8196 235.1129)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 254.9407 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 257.152 235.1129)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056\\\">parties</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.2106 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 283.4219 235.1129)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.0938 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 292.3052 235.1129)\\\" x=\\\"0 4 8.448 12.896 17.344 21.344\\\">choose</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 318.1021 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 320.3134 235.1129)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 324.7626 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 326.974 235.1129)\\\" x=\\\"0 1.824 6.272 10.272 14.72\\\">local</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 343.5208 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 345.7322 235.1129)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608\\\">Arbiter.</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.5642 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 373.7756 235.1129)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 378.2209 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 380.4322 235.1129)\\\" x=\\\"0 2.664 7.112 8.936 13.384 15.608 20.056\\\">related</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 404.94 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 407.1514 235.1129)\\\" x=\\\"0 2.224 6.672 8.496 11.16\\\">third</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 422.7608 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 424.9721 235.1129)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056\\\">parties</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 449.0307 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 451.2421 235.1129)\\\" x=\\\"0 4.448\\\">or</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 458.3553 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 460.5667 235.1129)\\\" x=\\\"0 5.776\\\">we</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 470.7932 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 473.0046 235.1129)\\\" x=\\\"0 6.664 11.112 12.936\\\">mail</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 487.7663 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 489.9777 235.1129)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.0988 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 503.3101 235.1129)\\\" x=\\\"0 4.448 8.896 15.56 20.008 24.456 28.904\\\">demand,</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 534.4429 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 536.6543 235.1129)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.5527 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 551.7641 235.1129)\\\" x=\\\"0 6.664 11.112 15.112\\\">must</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 226.0582)\\\" x=\\\"0 2.664 7.112 11.112 15.56 20.008 24.456\\\">respond</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.5101 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 241.2739 226.0582)\\\" x=\\\"0 1.824\\\">in</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.5474 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 250.3112 226.0582)\\\" x=\\\"0 4.448\\\">20</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.2096 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 261.9734 226.0582)\\\" x=\\\"0 4.448 8.896 12.896 16.896\\\">days.</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.0945 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 283.8583 226.0582)\\\" x=\\\"0 5.336 9.784 14.232\\\">Your</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 300.7567 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 303.5205 226.0582)\\\" x=\\\"0 2.664 7.112 11.112 15.56 20.008 24.456 28.456\\\">response</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 336.4306 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 339.1944 226.0582)\\\" x=\\\"0 6.664 11.112 15.112\\\">must</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 356.5304 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 359.2942 226.0582)\\\" x=\\\"0 4 8.448 12.896 17.344 21.344\\\">choose</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 385.091 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 387.8548 226.0582)\\\" x=\\\"0 4.448\\\">an</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 396.7533 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 399.517 226.0582)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 26.768 31.216\\\">arbitration</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 435.185 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 437.9488 226.0582)\\\" x=\\\"0 4.448 7.112 11.56 16.008\\\">group</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 458.4097 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 461.1735 226.0582)\\\" x=\\\"0 4.448\\\">or</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.2868 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 471.0506 226.0582)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456 24.456\\\">propose</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.9607 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 502.7245 226.0582)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 507.1737 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 509.9375 226.0582)\\\" x=\\\"0 1.824 6.272 10.272 14.72\\\">local</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.4844 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 529.2482 226.0582)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608\\\">Arbiter.</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 555.0802 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 557.844 226.0582)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 562.2893 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 565.0531 226.0582)\\\" x=\\\"0 1.824\\\">it</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 217.0035)\\\" x=\\\"0 4.448 8.896 13.344 17.344 21.792 23.32 25.544 27.768 29.896 35.672 40.12 42.248 48.912 53.36 57.36 59.488 63.488 67.936 72.384 76.832 80.832 85.28 87.408 89.632 94.08 98.528 100.656 105.104 107.768 112.216 116.664 121.112\\\">doesn&apos;t, we may choose the group.</text></g><clipPath id=\\\"clip4-41\\\"><path d=\\\"M 35 137 L 128 137 L 128 215 L 35 215 L 35 137 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-41)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.2 214.3238 L 127.6 214.3238 L 127.6 137.8863 L 35.2 137.8863 L 35.2 214.3238 z \\\"/><path clip-path=\\\"url(#clip4-41)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.3 212.3238 L 123.5 212.3238 L 123.5 203.2691 L 39.3 203.2691 L 39.3 212.3238 z \\\"/><path clip-path=\\\"url(#clip4-41)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 53.191 212.3238 L 110.191 212.3238 L 110.191 202.3238 L 53.191 202.3238 L 53.191 212.3238 z \\\"/><g clip-path=\\\"url(#clip4-41)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 53.191 204.9488)\\\" x=\\\"0 7.552 12 16.448 18.576 23.024 25.688 30.136 31.96 34.184 36.848 41.296 43.52 47.968 51.968\\\">* D E M O *tes?</text></g><clipPath id=\\\"clip4-42\\\"><path d=\\\"M 127 137 L 206 137 L 206 215 L 127 215 L 127 137 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-42)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 134.4621 204.9488)\\\" x=\\\"0 5.336 10.672 16.008 18.232 20.36 24.36 29.696 36.36 41.696 43.92 46.048 50.496 53.16 55.288 59.736\\\">AAA, JAMS, or an</text></g><g clip-path=\\\"url(#clip4-42)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 140.1164 195.8941)\\\" x=\\\"0 4.448 8.896 11.56 16.008 20.456 24.904 27.032 32.368 35.032 39.48 41.304 43.528 47.976 50.64\\\">agreed Arbiter.</text></g><clipPath id=\\\"clip4-43\\\"><path d=\\\"M 205 137 L 574 137 L 574 215 L 205 215 L 205 137 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 204.9488)\\\" x=\\\"0 5.336 9.784\\\">You</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 223.8344 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 226.373 204.9488)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 241.4863 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 244.025 204.9488)\\\" x=\\\"0 4 8.448 10.272 14.72 18.72\\\">select</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 264.9703 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 267.509 204.9488)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 278.6301 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 281.1687 204.9488)\\\" x=\\\"0 5.336 12 16.448 19.112 20.936 24.936 29.384\\\">American</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 315.0047 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 317.5433 204.9488)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 19.16 23.608 25.832 27.656 32.104\\\">Arbitration</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 354.098 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 356.6367 204.9488)\\\" x=\\\"0 5.336 9.336 13.336 17.784 21.784 23.608 28.056 30.28 32.104 36.552\\\">Association</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 397.6406 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 400.1793 204.9488)\\\" x=\\\"0 2.664 5.504 10.84 16.176 21.512 24.352\\\">(&quot;AAA&quot;)</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 427.1949 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 429.7336 204.9488)\\\" x=\\\"0 2.664 7.112 9.776 14.224 18.672 23.12 25.784 30.232 34.68 39.128 41.792 46.24 50.688 55.136 59.584\\\">(1-800-778-7879)</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 491.9953 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 494.534 204.9488)\\\" x=\\\"0 4.448 6.672 8.896 13.344 15.568 17.792 20.016 25.792 31.568 37.344 39.568 44.016 48.464 51.128 53.352 57.8 60.464\\\">http://www.adr.org</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.448 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 561.9867 204.9488)\\\" x=\\\"0 4.448\\\">or</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 195.8941)\\\" x=\\\"0 4 9.336 16\\\">JAMS</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 185.8395)\\\" x=\\\"0 2.664 7.112 9.776 14.224 18.672 23.12 25.784 30.232 34.68 39.128 41.792 46.24 50.688 55.136 59.584\\\">(1-800-352-5267)</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 271.8617 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 274.6277 185.8395)\\\" x=\\\"0 4.448 6.672 8.896 13.344 15.568 17.792 20.016 25.792 31.568 37.344 39.568 41.392 45.84 52.504 56.504 60.952 65.4 68.064 70.288 74.288 78.736 85.4\\\">http://www.jamsadr.com.</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 362.2527 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 365.0186 185.8395)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 378.8038 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 381.5697 185.8395)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056\\\">parties</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 405.6283 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 408.3943 185.8395)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 423.5075 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 426.2735 185.8395)\\\" x=\\\"0 4.448 6.272 10.272\\\">also</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 440.9961 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 443.7621 185.8395)\\\" x=\\\"0 4.448 8.896 11.56 16.008\\\">agree</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 464.223 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 466.989 185.8395)\\\" x=\\\"0 1.824\\\">in</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 473.2624 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 476.0284 185.8395)\\\" x=\\\"0 5.776 8.44 10.264 12.488 14.312 18.76\\\">writing</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.2393 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 502.0053 185.8395)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 508.6771 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 511.4431 185.8395)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 515.8923 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 518.6583 185.8395)\\\" x=\\\"0 1.824 6.272 10.272 14.72\\\">local</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 535.2051 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 537.9711 185.8395)\\\" x=\\\"0 4.448 6.672 8.896 13.344 16.008 20.456 24.904 28.904\\\">attorney,</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 176.7848)\\\" x=\\\"0 2.664 7.112 9.336 11.16 13.824 18.272\\\">retired</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 232.3227 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 235.2385 176.7848)\\\" x=\\\"0 1.824 6.272 10.72 15.168 19.616\\\">judge,</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.0823 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 259.9982 176.7848)\\\" x=\\\"0 4.448\\\">or</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 267.1114 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 270.0273 176.7848)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 293.6367 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 296.5526 176.7848)\\\" x=\\\"0 1.824\\\">in</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.826 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 305.7419 176.7848)\\\" x=\\\"0 4.448 8.896 13.344\\\">good</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 323.5388 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 326.4547 176.7848)\\\" x=\\\"0 4 6.224 10.672 15.12 19.568 21.392 25.84\\\">standing</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 356.7477 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 359.6635 176.7848)\\\" x=\\\"0 5.776 7.6 9.824\\\">with</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 373.937 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 376.8529 176.7848)\\\" x=\\\"0 4.448\\\">an</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 385.7513 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 388.6672 176.7848)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 26.768 31.216\\\">arbitration</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 424.3351 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 427.251 176.7848)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456\\\">group.</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 449.9346 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 452.8505 176.7848)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.6357 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 469.5516 176.7848)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 493.1609 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 496.0768 176.7848)\\\" x=\\\"0 6.664 11.112 15.112\\\">must</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 513.4127 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 516.3286 176.7848)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944\\\">arbitrate</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 545.7232 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 548.6391 176.7848)\\\" x=\\\"0 4.448 8.896 13.344 17.792\\\">under</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 167.7301)\\\" x=\\\"0 5.336 10.672\\\">AAA</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.6078 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 228.6503 167.7301)\\\" x=\\\"0 4.448\\\">or</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 235.7636 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 238.8062 167.7301)\\\" x=\\\"0 4 9.336 16\\\">JAMS</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 260.1421 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 263.1846 167.7301)\\\" x=\\\"0 4 8.448 12.896 16.896 21.344 28.008 32.456\\\">consumer</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 298.3096 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 301.3522 167.7301)\\\" x=\\\"0 2.664 7.112 8.936 13.384 17.384\\\">rules.</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 320.9615 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 324.0041 167.7301)\\\" x=\\\"0 5.336 9.784\\\">You</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.2384 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 341.281 167.7301)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 356.3943 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 359.4368 167.7301)\\\" x=\\\"0 4.448 8.896\\\">get</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 370.5579 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 373.6004 167.7301)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 378.0497 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 381.0922 167.7301)\\\" x=\\\"0 4 8.448 12.896\\\">copy</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 397.9906 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 401.0331 167.7301)\\\" x=\\\"0 4.448\\\">of</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 407.705 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 410.7476 167.7301)\\\" x=\\\"0 2.224 6.672 11.12 15.12\\\">these</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.3179 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 433.3604 167.7301)\\\" x=\\\"0 2.664 7.112 8.936 13.384\\\">rules</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 450.7471 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 453.7897 167.7301)\\\" x=\\\"0 2.224 4.888 9.336\\\">from</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 469.7897 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 472.8322 167.7301)\\\" x=\\\"0 4 8.448 12.448\\\">such</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.7306 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 492.7732 167.7301)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456\\\">group.</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 515.4568 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 518.4993 167.7301)\\\" x=\\\"0 5.336 9.784\\\">Any</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 532.2845 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 535.327 167.7301)\\\" x=\\\"0 2.664 7.112 8.936 13.384\\\">rules</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.7137 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 555.7562 167.7301)\\\" x=\\\"0 2.224 6.672 11.12\\\">that</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 158.6754)\\\" x=\\\"0 4 8.448 12.896 15.12 16.944 18.768 22.768\\\">conflict</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 234.5922 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 237.7758 158.6754)\\\" x=\\\"0 5.776 7.6 9.824\\\">with</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 252.0492 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 255.2328 158.6754)\\\" x=\\\"0 4.448 8.896\\\">any</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 268.1312 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 271.3148 158.6754)\\\" x=\\\"0 4.448\\\">of</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 277.9867 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 281.1703 158.6754)\\\" x=\\\"0 4.448 8.896\\\">our</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 292.7328 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 295.9164 158.6754)\\\" x=\\\"0 4.448 8.896 11.56 16.008 20.456 27.12 31.568 36.016 38.24\\\">agreements</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.1625 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 341.3461 158.6754)\\\" x=\\\"0 5.776 7.6 9.824\\\">with</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.6195 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 358.8031 158.6754)\\\" x=\\\"0 4 8.448 12.896\\\">you,</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 373.9242 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 377.1078 158.6754)\\\" x=\\\"0 4.448 8.896 13.344 14.872\\\">don&apos;t</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 394.2055 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 397.389 158.6754)\\\" x=\\\"0 4.448 8.896 13.344 15.168 19.168\\\">apply.</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 418.7836 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 421.9672 158.6754)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 426.4125 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 429.5961 158.6754)\\\" x=\\\"0 2.224 6.672 11.12 15.12\\\">these</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 449.1664 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 452.35 158.6754)\\\" x=\\\"0 4.448 8.896 11.12 12.944 17.392 21.84\\\">options</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 478.1937 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 481.3773 158.6754)\\\" x=\\\"0 4.448 7.112 11.56 16.008 17.536\\\">aren&apos;t</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.139 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 504.3227 158.6754)\\\" x=\\\"0 4.448 8.448 12.896 14.72 16.544 20.992 25.44 27.264 31.712\\\">available,</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 538.264 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 541.4476 158.6754)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 554.7953 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 557.9789 158.6754)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 149.6207)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056\\\">parties</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.6586 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 236.2535 149.6207)\\\" x=\\\"0 4 8.448 12.896 14.424\\\">can&apos;t</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 252.9019 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 255.4968 149.6207)\\\" x=\\\"0 4.448 8.896 11.56 16.008\\\">agree</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.9578 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 278.5527 149.6207)\\\" x=\\\"0 4.448\\\">on</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 287.4511 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 290.046 149.6207)\\\" x=\\\"0 4.448 8.896 13.344 15.568 20.016 24.464 27.128\\\">another,</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.4015 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 321.9964 149.6207)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 326.4456 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 329.0405 149.6207)\\\" x=\\\"0 4 8.448 12.896 15.56\\\">court</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 346.8256 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 349.4205 149.6207)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 364.5338 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 367.1287 149.6207)\\\" x=\\\"0 4 8.448 12.896 17.344 21.344\\\">choose</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 392.9256 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 395.5205 149.6207)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 406.6416 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 409.2365 149.6207)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456\\\">group.</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 431.9201 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 434.515 149.6207)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 448.3001 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 450.895 149.6207)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056\\\">parties</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.9536 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 477.5485 149.6207)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 488.7985 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 491.3934 149.6207)\\\" x=\\\"0 2.224 6.672 11.12\\\">then</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 506.9637 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 509.5586 149.6207)\\\" x=\\\"0 4.448 8.896 11.12 15.568 17.392\\\">obtain</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 531.4024 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 533.9973 149.6207)\\\" x=\\\"0 4.448\\\">an</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 542.8957 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 545.4906 149.6207)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 140.566)\\\" x=\\\"0 4.448 8.896 13.344 17.792 20.456 22.584 26.584 31.032 35.032 39.48 41.608 46.056 48.72 53.168 57.616 62.064 63.592 67.592 69.72 72.384 76.832 78.656 83.104 87.104 89.328 91.456 96.792 101.24 105.24 109.688 111.816 117.152 119.816 124.264 126.088 128.312 132.76 135.424 137.552 144.216 148.664 152.664 154.888 157.016 161.464 165.912 168.136 172.584 175.248 179.248 183.696 185.824 189.824 194.272 198.72 201.384 203.512 207.96 212.408 215.072 219.52 223.968 230.632 235.08 239.528 241.752 245.752 247.88 253.656 255.48 257.704 262.152 264.28 268.728 272.728 274.952 277.08 281.528 285.528 287.656 289.88 294.328 298.776 302.776 304.904 309.352 312.016 316.464 318.592 324.368 327.032 328.856 331.08 333.304 337.752 342.2\\\">under such group&apos;s rules. Such Arbiter must enforce your agreements with us, as they are written.</text></g><clipPath id=\\\"clip4-44\\\"><path d=\\\"M 35 116 L 128 116 L 128 138 L 35 138 L 35 116 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-44)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.2 137.8863 L 127.6 137.8863 L 127.6 116.777 L 35.2 116.777 L 35.2 137.8863 z \\\"/><path clip-path=\\\"url(#clip4-44)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.3 135.8863 L 123.5 135.8863 L 123.5 117.777 L 39.3 117.777 L 39.3 135.8863 z \\\"/><path clip-path=\\\"url(#clip4-44)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.6754 135.8863 L 125.6754 135.8863 L 125.6754 125.8863 L 39.6754 125.8863 L 39.6754 135.8863 z \\\"/><g clip-path=\\\"url(#clip4-44)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 39.6754 128.5113)\\\" x=\\\"0 7.552 9.376 11.2 13.024 15.152 17.376 21.824 26.272 28.4 32.848 37.296 41.744 44.408 46.232 50.68 55.128 57.256 61.704 66.152 68.28 72.728 77.176 79\\\">Will the hearing be held</text></g><path clip-path=\\\"url(#clip4-44)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 66.9449 126.8316 L 95.9449 126.8316 L 95.9449 116.8316 L 66.9449 116.8316 L 66.9449 126.8316 z \\\"/><g clip-path=\\\"url(#clip4-44)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 66.9449 119.4567)\\\" x=\\\"0 4.448 8.896 13.344 16.008 20.456 24.456\\\">nearby?</text></g><clipPath id=\\\"clip4-45\\\"><path d=\\\"M 127 116 L 206 116 L 206 138 L 127 138 L 127 116 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-45)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 158.5461 128.5113)\\\" x=\\\"0 5.336 9.784 13.784\\\">Yes.</text></g><clipPath id=\\\"clip4-46\\\"><path d=\\\"M 205 116 L 574 116 L 574 138 L 205 138 L 205 116 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-46)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 128.5113)\\\" x=\\\"0 4.888 9.336 13.784 15.912 21.248 23.912 28.36 30.184 32.408 36.856 39.52 41.648 47.424 49.248 51.072 52.896 55.024 59.472 62.136 66.584 71.032 73.696 75.824 78.048 82.496 86.944 89.072 93.52 97.968 102.416 105.08 106.904 111.352 115.8 117.928 123.704 125.528 127.752 132.2 134.024 138.472 140.6 145.048 149.496 151.624 158.288 160.112 161.936 166.384 170.384 172.512 176.96 179.184 181.312 185.312 189.76 194.208 196.872 199 203.448 207.896 214.56 219.008 221.136 225.584 228.248 230.376 236.152 240.6 245.048 247.712 252.16 254.288 256.512 260.96 265.408 267.536 269.76 272.424 276.872 281.32 285.32 289.768 293.768 295.992 297.816 302.264 306.712 308.84 313.288 317.288 321.288 325.736 328.4 331.064 335.512 339.96\\\">The Arbiter will order the hearing within 30 miles of your home or where the transaction occurred.</text></g><clipPath id=\\\"clip4-47\\\"><path d=\\\"M 35 74 L 128 74 L 128 117 L 35 117 L 35 74 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-47)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.2 116.777 L 127.6 116.777 L 127.6 74.777 L 35.2 74.777 L 35.2 116.777 z \\\"/><path clip-path=\\\"url(#clip4-47)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.3 114.777 L 123.5 114.777 L 123.5 105.7223 L 39.3 105.7223 L 39.3 114.777 z \\\"/><path clip-path=\\\"url(#clip4-47)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 43.6695 114.777 L 119.6695 114.777 L 119.6695 104.777 L 43.6695 104.777 L 43.6695 114.777 z \\\"/><g clip-path=\\\"url(#clip4-47)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 43.6695 107.402)\\\" x=\\\"0 7.552 12 16.448 18.672 20.8 25.248 29.696 34.144 38.592 40.816 42.944 47.392 51.84 56.288 60.736 65.184 67.008 71.008\\\">What about appeals?</text></g><clipPath id=\\\"clip4-48\\\"><path d=\\\"M 127 74 L 206 74 L 206 117 L 127 117 L 127 74 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-48)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 145.2277 107.402)\\\" x=\\\"0 5.336 9.784 14.232 18.68 23.128 24.952 28.952 31.08 35.528 38.192\\\">Appeals are</text></g><g clip-path=\\\"url(#clip4-48)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 153.8098 98.3473)\\\" x=\\\"0 1.824 3.648 10.312 12.136 14.36 18.808 23.256\\\">limited.</text></g><clipPath id=\\\"clip4-49\\\"><path d=\\\"M 205 74 L 574 74 L 574 117 L 205 117 L 205 74 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 107.402)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 223.3852 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 227.8141 107.402)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608 25.136\\\">Arbiter&apos;s</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.9508 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 261.3798 107.402)\\\" x=\\\"0 4.448 8.896 12.896 14.72 18.72 20.544 24.992\\\">decision</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.8251 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 295.2541 107.402)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 306.5041 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 310.933 107.402)\\\" x=\\\"0 4.448\\\">be</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.8314 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 324.2604 107.402)\\\" x=\\\"0 2.224 4.048 8.496 12.944 14.768\\\">final.</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 341.2526 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 345.6815 107.402)\\\" x=\\\"0\\\">A</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.0175 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 355.4464 107.402)\\\" x=\\\"0 4.448 8.896 11.56 13.784\\\">party</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 373.2316 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 377.6605 107.402)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 392.7738 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 397.2028 107.402)\\\" x=\\\"0 2.224 4.048 5.872\\\">file</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 407.5231 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 411.952 107.402)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 423.0731 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 427.5021 107.402)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608 25.136\\\">Arbiter&apos;s</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.6388 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 461.0678 107.402)\\\" x=\\\"0 4.448 10.224 14.672 17.336\\\">award</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 482.8568 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 487.2858 107.402)\\\" x=\\\"0 5.776 7.6 9.824\\\">with</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.5592 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 505.9882 107.402)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 517.1093 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 521.5382 107.402)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456\\\">proper</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 544.6632 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 549.0922 107.402)\\\" x=\\\"0 4 8.448 12.896 15.56 17.784\\\">court.</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 98.3473)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 19.16 23.608 25.832 27.656 32.104\\\">Arbitration</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 246.1547 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 248.4088 98.3473)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.6588 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 261.913 98.3473)\\\" x=\\\"0 4 8.448 10.272 14.272\\\">solve</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.6356 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 282.8898 98.3473)\\\" x=\\\"0 4.448 8.896 13.344 17.792 22.24 24.064\\\">appeals</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 310.9601 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 313.2142 98.3473)\\\" x=\\\"0 4.448\\\">of</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.8861 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 322.1403 98.3473)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 326.5895 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 328.8436 98.3473)\\\" x=\\\"0 4 10.664 15.112 16.936 18.76 21.424 25.424 27.248 31.696 33.52 40.184\\\">small-claims</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 373.0311 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 375.2853 98.3473)\\\" x=\\\"0 4 8.448 12.896 15.56\\\">court</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.0704 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 395.3246 98.3473)\\\" x=\\\"0 1.824 6.272 10.72 15.168 19.616 26.28 30.728 35.176 37.4\\\">judgement.</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.9535 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 437.2077 98.3473)\\\" x=\\\"0\\\">A</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 442.5436 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 444.7977 98.3473)\\\" x=\\\"0 4.448 8.896 11.56 13.784\\\">party</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 462.5829 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 464.837 98.3473)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 479.9503 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 482.2045 98.3473)\\\" x=\\\"0 4.448 8.896 13.344 17.792 22.24\\\">appeal</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 506.2748 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 508.5289 98.3473)\\\" x=\\\"0 4.448 8.896 13.344 17.792\\\">under</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 528.9899 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 531.244 98.3473)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 542.3651 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 544.6193 98.3473)\\\" x=\\\"0 4.888 10.224 15.56\\\">FAA.</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 562.4005 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 564.6547 98.3473)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 89.2926)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 220.7211 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 223.3349 89.2926)\\\" x=\\\"0 4.448 11.112 15.56 20.008 24.456\\\">amount</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 250.0185 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 252.6324 89.2926)\\\" x=\\\"0 1.824\\\">in</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 258.9058 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 261.5196 89.2926)\\\" x=\\\"0 4 8.448 12.896 15.12 17.784 22.232 26.232 30.68 33.344 37.344\\\">controversy</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.8673 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 305.4811 89.2926)\\\" x=\\\"0 4.448 8.448 12.448 16.896 21.344 25.792\\\">exceeds</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.278 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 337.8918 89.2926)\\\" x=\\\"0 4.448 8.896 11.12 15.568 20.016 24.464 26.688 31.136 35.584\\\">$1,500.00,</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.7043 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 378.3182 89.2926)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 382.7674 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 385.3812 89.2926)\\\" x=\\\"0 4.448 8.896 11.56 13.784\\\">party</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.1664 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 405.7802 89.2926)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 420.8935 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 423.5074 89.2926)\\\" x=\\\"0 4.448 8.896 13.344 17.792 22.24\\\">appeal</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.5777 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 450.1915 89.2926)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 461.3126 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 463.9264 89.2926)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608 25.136\\\">Arbiter&apos;s</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 493.0632 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 495.677 89.2926)\\\" x=\\\"0 2.224 4.048 8.496 12.944 14.768 19.216 23.664\\\">finding.</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.5676 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 524.1815 89.2926)\\\" x=\\\"0 5.336 9.784 13.784\\\">Such</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 542.4158 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 545.0297 89.2926)\\\" x=\\\"0 4.448 8.896 13.344 17.792 22.24\\\">appeal</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 80.2379)\\\" x=\\\"0 5.776 7.6 9.424 11.248 13.376 17.824 22.272 24.4 26.624 31.072 33.2\\\">will be to a</text></g><clipPath id=\\\"clip4-50\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 272.152 L 128.1 272.152 L 128.1 271.152 L 34.7 271.152 L 34.7 272.152 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 271.152 L 35.7 271.152 L 35.7 214.8238 L 34.7 214.8238 L 34.7 271.152 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.1 272.152 L 206 272.152 L 206 271.152 L 128.1 271.152 L 128.1 272.152 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127.1 271.152 L 128.1 271.152 L 128.1 214.8238 L 127.1 214.8238 L 127.1 271.152 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 272.152 L 573.7 272.152 L 573.7 271.152 L 206 271.152 L 206 272.152 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.7 271.152 L 573.7 271.152 L 573.7 214.8238 L 572.7 214.8238 L 572.7 271.152 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 271.152 L 206 271.152 L 206 214.8238 L 205 214.8238 L 205 271.152 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 214.8238 L 128.1 214.8238 L 128.1 213.8238 L 34.7 213.8238 L 34.7 214.8238 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 213.8238 L 35.7 213.8238 L 35.7 138.3863 L 34.7 138.3863 L 34.7 213.8238 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.1 214.8238 L 206 214.8238 L 206 213.8238 L 128.1 213.8238 L 128.1 214.8238 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127.1 213.8238 L 128.1 213.8238 L 128.1 138.3863 L 127.1 138.3863 L 127.1 213.8238 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 214.8238 L 573.7 214.8238 L 573.7 213.8238 L 206 213.8238 L 206 214.8238 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.7 213.8238 L 573.7 213.8238 L 573.7 138.3863 L 572.7 138.3863 L 572.7 213.8238 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 213.8238 L 206 213.8238 L 206 138.3863 L 205 138.3863 L 205 213.8238 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 138.3863 L 128.1 138.3863 L 128.1 137.3863 L 34.7 137.3863 L 34.7 138.3863 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 137.3863 L 35.7 137.3863 L 35.7 117.277 L 34.7 117.277 L 34.7 137.3863 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.1 138.3863 L 206 138.3863 L 206 137.3863 L 128.1 137.3863 L 128.1 138.3863 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127.1 137.3863 L 128.1 137.3863 L 128.1 117.277 L 127.1 117.277 L 127.1 137.3863 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 138.3863 L 573.7 138.3863 L 573.7 137.3863 L 206 137.3863 L 206 138.3863 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.7 137.3863 L 573.7 137.3863 L 573.7 117.277 L 572.7 117.277 L 572.7 137.3863 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 137.3863 L 206 137.3863 L 206 117.277 L 205 117.277 L 205 137.3863 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 117.277 L 128.1 117.277 L 128.1 116.277 L 34.7 116.277 L 34.7 117.277 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 75.277 L 128.1 75.277 L 128.1 74.277 L 34.7 74.277 L 34.7 75.277 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 116.277 L 35.7 116.277 L 35.7 75.277 L 34.7 75.277 L 34.7 116.277 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.1 117.277 L 206 117.277 L 206 116.277 L 128.1 116.277 L 128.1 117.277 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.1 75.277 L 206 75.277 L 206 74.277 L 128.1 74.277 L 128.1 75.277 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127.1 116.277 L 128.1 116.277 L 128.1 75.277 L 127.1 75.277 L 127.1 116.277 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 117.277 L 573.7 117.277 L 573.7 116.277 L 206 116.277 L 206 117.277 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 75.277 L 573.7 75.277 L 573.7 74.277 L 206 74.277 L 206 75.277 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.7 116.277 L 573.7 116.277 L 573.7 75.277 L 572.7 75.277 L 572.7 116.277 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 116.277 L 206 116.277 L 206 75.277 L 205 75.277 L 205 116.277 z \\\"/><g clip-path=\\\"url(#clip4-50)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 36.5264)\\\" x=\\\"0 6.498 11.997 14.391 16.785 21.789 26.793 29.295 34.299 39.303 44.307 504 506.3906 508.7812 511.1719 513.5625 515.9531 518.3438 520.7344 523.125 525.5156\\\">UT  07/2019          </text></g><g clip-path=\\\"url(#clip4-50)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 26.3398)\\\" x=\\\"0 6.003 11.007 16.011 21.015\\\">Page </text></g><g clip-path=\\\"url(#clip4-50)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 55.8097 26.3398)\\\" x=\\\"0\\\">5</text></g><g clip-path=\\\"url(#clip4-50)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.815 26.3398)\\\" x=\\\"0 2.394 7.398 9.9\\\"> of </text></g><g clip-path=\\\"url(#clip4-50)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 73.1021 26.3398)\\\" x=\\\"0\\\">7</text></g><g clip-path=\\\"url(#clip4-50)\\\"><text stroke=\\\"none\\\" fill=\\\"#d9d9d9\\\" style=\\\"font-family:f4-0; font-size:54pt; white-space:pre\\\" transform=\\\"matrix(0.707 0.707 0.707 -0.707 135.6027 198.5094)\\\" x=\\\"0 56.016 96.048 136.08 176.112 216.144 236.16 284.184 324.216 344.232 364.248 416.232 456.264 480.24\\\">Qoppa Software</text></g><g clip-path=\\\"url(#clip4-50)\\\"><text stroke=\\\"none\\\" fill=\\\"#002ba6\\\" style=\\\"font-family:f4-0; font-size:9pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.932 772)\\\" x=\\\"0 9.336 16.008 22.68 29.352 36.024 39.36 47.364 54.036 57.372 60.708 69.372 76.044 80.04 86.712 90.048 94.044 97.38 104.712 111.384 115.38 118.716 126.72 132.72 139.392 142.056 148.728 155.4 158.736 161.4 168.072 174.744 178.08 187.416 194.088 196.752 202.752 206.088 210.084 213.42 220.092 223.428 226.764 233.436 239.436 242.772 246.108 249.444 258.108 266.772 275.436 278.772 285.444 292.116 298.788 305.46 312.132 315.468 321.468 328.14\\\">Qoppa Software - For Evaluation Only - https://www.qoppa.com</text></g></g></svg></svg></g></svg><br>\\n<?xml version='1.0' encoding='UTF-8'?><svg id=\\\"qoppa_document\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" version=\\\"1.1\\\" xmlns=\\\"http://www.w3.org/2000/svg\\\" xmlns:xlink=\\\"http://www.w3.org/1999/xlink\\\"><!-- jPDFWeb v2019R1.03 - Demo Version --><style>title p { display: block; }</style><g id=\\\"qoppa_viewxform\\\" transform=\\\"matrix(1 0 0 1 0 0)\\\"><style type=\\\"text/css\\\">@font-face {font-family:f5-0;src:url(\\\"data:application/font-woff;charset=utf-8;base64,d09GRgABAAAAAAp8AAoAAAAADcAAAQABAAAAAAAAAAAAAAAAAAAAAAAAAABPUy8yAAAA9AAAADcAAABWWd9ZMmNtYXAAAAEsAAAAbAAAAIwCiwM0Z2x5ZgAAAZgAAAdLAAAJ6ArdyapoZWFkAAAI5AAAADEAAAA2GI9khmhoZWEAAAkYAAAAIAAAACQGNwJvaG10eAAACTgAAABeAAAAgDkXBShsb2NhAAAJmAAAAEIAAABCI1gg9G1heHAAAAncAAAAGAAAACAAIwA9bmFtZQAACfQAAAB8AAAA5g9SKYxwb3N0AAAKcAAAAAwAAAAgAAMAAHicY2Bk8mKcwMDKwMDUxbSbARlwMeogc/8DATI/MCDAkUEBCG8y3fyvxxDFdJPhEkwOAMlSDLoAeJxjYGBgZGAGYgYGHgYWhgYgLcMgABThYVBg0GewYnBj8GcIZAhmSGRIZkhjyGQoZ6j8/x+oSoFBFyjriiSbypDBkAOS/f/4//X/Z/8f/r/7/67/O/+v+b/6/6r/K/8v/78MbA9OAAAj1iOqeJxtVktsG9cVnXuHpChTEr/DjyRSHI44/IlUpeGQkvgTbepPkZJlUTQlWVLNWq2h2rHrohsv4iJo4P6SOqmRxIukDYqiWRTtJmgBN0CCBu1CRhZd1E5bdFOgdtuVG7SAAY16Z0gmClAOMPPmzX33nnfueUdigPEzf4QEjDIswwDHy5BQnsJovc7QK9Og+3tMU/2W5gT5vSb91Hnm+DE48VCd5+wS+9HcR27829EgRWNrDRroWxfD2GWJs9LKRrMJP242lQ9a66sUeInWm7SancuK68p5+K5yA3519AQP1/+0/nSdgih+heIlGnZ/Gm8VrCgpN2FF+cUOHtb+sq7cV0OpfuL4E/wzPmTMzBBFO11Ol6HL0CWG6EqntDHNSal0Kk0z8P07W9usbnfv7t3tbYT6xtuXTxcRSzPPXcvnAUslfIjN5i/f2bmA7MUv/fT1y5fLUC7f+db8Aq6svvjCwgKj1Rw9/j0+wUfMIDN5oqb61ArTi6A+qahLpA8G+jDeAhBKq1EqmpSK5m5jk0WfL+Hz+Ya80aAoJKKR9A8IIjQ2X9uanWMxm7k96HSa3S63yxUIBPiwkwPIZvCRbn//JxdmZkdcVktP0eLiBtzdp/Bi890fXrq0DDMzr3/93DnWoDeaTaf0M91Wa38glz17ZW1N63P8+N+4T5yN0QuBEsQ2+vZOQoE20LSzjbq9m/Q4BcB/DInEcm58nGUnJ4vNtbN6Q21j58ZGravRVSisnU4m2e7trYWyLCMuLlz9yuKCEZ7N8Ty43cW009nriMZuXB/7AkxMPW/cCooIPt9M2eOxcpHIxs7YGMjyV1WOReqrHh1MjMmQrlQqCVAXp3IpnCBZ1rikS1YnA7QRvdoL9XK0+i5zxenaQSIBaDDYt7r1OhhNJKbOjcQwl6vFQyEv+PlMjueNoIv4+WhUFNE7OLoXDML1XZ5HiEaXngwT82arxRK22TASmykHg106o7FbjLuc4HInL/ZRPb3VIosODrNZjePg8SfwT7QxfItjFa8GXsV6UqKaIOB7vT6fND88jEP+hsz7DRuWqUztQNXk1OTzSxNpC+xJA/2AqfTGcjbLQnB4wrRNJMLs3IsHy2UdRCKrLW2Kx0+JNydjZAKfVTarIpXG26UFQ7u0yim8g+HwdCESBoMhFpsfDQSs5/vzhfWtuXkdCe3WfLWCIBcjEcRYLDdfH4l7vWOmRljEfOHefqWi1+VzP6f9GqlamjQ1cEJTnMQJdHIFWZLFjnqiRrPZ1s85oNmsVyokigtWj9uGt1hA6O2LT5WUPHxQWuXjCT2yekbj8gzd/kHn3UVKsKbanFHiTstpeM8nhqS1xCjUYdA7nhdFqOOhcszbbQAj8fPKj2Az7vPRVteVv1ImVHMy9zRPU32LgKoJz9Tph4fNLx49I0vr1G7HMZJVogg8PErSfJFhCLKNiWrzXAfVCXSpdtdpmGwNXdZidUAU87IgWAbEYHExHCK8dkc6z/vrDk6a9fpIpQthpxPA7YlEPG7A+Mhp5TtQj/F+xFAorbwPF8PeQWRHR/PKI8JR0rixadxwn+dGaHPzylAonKvSCagD9S4fVLkxLERUJ4kn1pU3YSXj84rBivIHbdPI8HT2uinn5zxVOOGpXOdsqZ7qvZHNqN555WqhAJjJ3FwUxXB4aWVYgHAIbexS+ca3z5yBublvXl1eLmEqtbGblNlsZrmRkluaLR1PooHqOZjhzi7GTxg5iUgduxwtfmUi9lUuGJzYzuVZmMo8N8LzzvrH84EAHYvZJf8Q+P1oKAVIbKXS7YNqRQc2u1fBB5O6YrFSkyRgC/nyYjbTPi+T8LhTWy/I7aKqr0jqzmVJc/DO0aVOwuO6i+dj1zJTmM9dSAeDzpWPV6gkDPnLM8FhCAR+p3hJd7pK9eB2qQQuZ6A0qctkF8v5AguSVKsUiy1tTdOtQbW5k73r/AlRdfMyN9Af8zg4u89iMXMJj4caV4263QBGo2lV9TI2FksrD7W+ATNEnvOA8pGv25NtErs6Qjhh8F3/z+DjSWmvkkxa6jreH40KAqLb4/za3CySo+3WJib6NrqDQXlEGEb9VGY6GwrDC9lwGHm+2pOwO/r6Iv6eXt2gb6i2Go1AKFzvzbvdCA7HWNRitph5P+GzHv8XevG+6hF2zRscbQgaKNWVNK/4Wb1u7uNOdRtNPY4+s308IMD0NN5/t6S8HzxlQgBgqyw90OOpwmLpVotL2vvfiQfNI9RuqXnpwH7a0bT1DXS6StZ0yliv9ofDU3uRKKJB+XWSrN4w0H8TBo6eVUIeD7CSVIFNytlLiR9TTmJ3ACVWYC+//Grjt2c/pFW78NZnHqEjIT2glx4tbgAo1AQCu3P9SmP/G7W3N/e/vPUWrbkEbyjX4KWjZ/CScq2z1nKcgH+1cNO6NtZRaP/TUiAwdnjl/CNOGC5ZTD193b09Jotot5u4D3fuoOHoN7lYDIFl2TUdIthtQxNUaOt/bprEGQB4nGNgZGBgAOL9uy5diOe3+crAzfwCKMJw21zgLIL+r8fMyHQTqI6DgQkkCgBowQuoAAAAeJxjYGRgYLr5X48hitmRgeH/fWZGBqAIClAAAHbABKt4nGNggABGXyAWA9MKQDoKzAbSTLMZ/JmSGQKYuRj0QRjI12XSYVBj/MKgDqTVgWo4gLQzwz0IZnZkcATyXYBYGUqrAc10AKqXB6oVBPKdgGxepksMLEBaAABlFhBuAAAAAAAAAAAAAAAAAA4AGgAoADoAUgBoAKIBAgFUAbQB8AIsAloChAKYAqQC6AMSA0oDiAPGA+4EPgRsBJYEqgTIBPQAAHicY2BkYGBQYLBhYGIAAUYGNAAACboAYXicdcq9CoJgFIfxx+9anRobHCMUoguohq7AIVrEQoMXDROhpWvvD50xObyHH897gIQLAV64BFK9nz05NfssyMwBKzbmUD6ZI/lqjuWRIz1P3gw8aGhVztxxTNqjWk3FQTeO25+fDzv2s71UGXip9XSsKdiSa2buv2bjHPt4nGNgZsALAAB9AAQ=\\\");}@font-face {font-family:f5-1;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f5-2;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}</style><svg id=\\\"qoppa_page_p5\\\" class=\\\"qoppa_page\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\"><rect class=\\\"qoppa_pageborder\\\" x=\\\"0.5pt\\\" y=\\\"0.5pt\\\" width=\\\"611pt\\\" height=\\\"791pt\\\" fill=\\\"none\\\" /><svg class=\\\"qoppa_pagecontents\\\" x=\\\"0pt\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" viewBox=\\\"0 0 612 792\\\" ><g class=\\\"qoppa_contentstream\\\" transform=\\\"matrix(1 0 0 -1 0 792)\\\" fill=\\\"black\\\" stroke=\\\"black\\\" stroke-width=\\\"1\\\" stroke-linecap=\\\"butt\\\" stroke-linejoin=\\\"miter\\\" stroke-miterlimit=\\\"10\\\"><clipPath id=\\\"clip5-1\\\"><path d=\\\"M 35 727 L 128 727 L 128 770 L 35 770 L 35 727 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-1)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.2 769.7 L 127.6 769.7 L 127.6 727.7 L 35.2 727.7 L 35.2 769.7 z \\\"/><clipPath id=\\\"clip5-2\\\"><path d=\\\"M 205 727 L 574 727 L 574 770 L 205 770 L 205 727 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 760.325)\\\" x=\\\"0 4.448 7.112 12.448 15.112 19.56 21.384 23.608 28.056\\\">3-Arbiter</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 240.3227 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 243.109 760.325)\\\" x=\\\"0 4.448 8.896 13.344 17.792\\\">panel</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.7301 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 265.5165 760.325)\\\" x=\\\"0 2.224 4.888 9.336\\\">from</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.5165 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 284.3029 760.325)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 295.424 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 298.2103 760.325)\\\" x=\\\"0 4 8.448 15.112\\\">same</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 317.7728 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 320.5592 760.325)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 26.768 31.216\\\">arbitration</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 356.2272 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 359.0136 760.325)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456\\\">group.</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 381.6972 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 384.4835 760.325)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 398.2687 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 401.0551 760.325)\\\" x=\\\"0 4.448 8.896 13.344 17.792 22.24\\\">appeal</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 425.1254 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 427.9118 760.325)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 439.1618 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 441.9481 760.325)\\\" x=\\\"0 4.448\\\">be</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 450.8466 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 453.6329 760.325)\\\" x=\\\"0 4.448\\\">de</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 462.5314 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 465.3178 760.325)\\\" x=\\\"0 4.448 8.896 12.896 17.344\\\">novo,</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.8881 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 487.6745 760.325)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.0221 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 503.8085 760.325)\\\" x=\\\"0 4 8.448 10.272 14.272 18.72\\\">solved</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.9804 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 529.7667 760.325)\\\" x=\\\"0 4.448\\\">by</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 538.216 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 541.0023 760.325)\\\" x=\\\"0 6.664 11.112 12.936 17.384 20.048 21.872 24.096\\\">majority</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 751.2703)\\\" x=\\\"0 4 8.448 10.672 15.12\\\">vote.</text></g><clipPath id=\\\"clip5-3\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-3)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 770.2 L 128.1 770.2 L 128.1 769.2 L 34.7 769.2 L 34.7 770.2 z \\\"/><path clip-path=\\\"url(#clip5-3)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 728.2 L 128.1 728.2 L 128.1 727.2 L 34.7 727.2 L 34.7 728.2 z \\\"/><path clip-path=\\\"url(#clip5-3)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 769.2 L 35.7 769.2 L 35.7 728.2 L 34.7 728.2 L 34.7 769.2 z \\\"/><path clip-path=\\\"url(#clip5-3)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.1 770.2 L 206 770.2 L 206 769.2 L 128.1 769.2 L 128.1 770.2 z \\\"/><path clip-path=\\\"url(#clip5-3)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.1 728.2 L 206 728.2 L 206 727.2 L 128.1 727.2 L 128.1 728.2 z \\\"/><path clip-path=\\\"url(#clip5-3)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127.1 769.2 L 128.1 769.2 L 128.1 728.2 L 127.1 728.2 L 127.1 769.2 z \\\"/><path clip-path=\\\"url(#clip5-3)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 770.2 L 573.7 770.2 L 573.7 769.2 L 206 769.2 L 206 770.2 z \\\"/><path clip-path=\\\"url(#clip5-3)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 728.2 L 573.7 728.2 L 573.7 727.2 L 206 727.2 L 206 728.2 z \\\"/><path clip-path=\\\"url(#clip5-3)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.7 769.2 L 573.7 769.2 L 573.7 728.2 L 572.7 728.2 L 572.7 769.2 z \\\"/><path clip-path=\\\"url(#clip5-3)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 769.2 L 206 769.2 L 206 728.2 L 205 728.2 L 205 769.2 z \\\"/><g clip-path=\\\"url(#clip5-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 241.2386 715.4812)\\\" x=\\\"0 6.67 10 15.56 17.84 20.62 23.95 29.51 32.29 34.57 40.13 45.69 48.35 54.46 60.02 65.58 70.58 73.24 78.8 84.36 89.92 92.58 99.25 106.47 112.03 115.36 120.92\\\">Ar* D E M O *ees and Awards</text></g><clipPath id=\\\"clip5-4\\\"><path d=\\\"M 35 680 L 128 680 L 128 705 L 35 705 L 35 680 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-4)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.6 704.277 L 127.5 704.277 L 127.5 680.277 L 35.6 680.277 L 35.6 704.277 z \\\"/><path clip-path=\\\"url(#clip5-4)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.7 700.777 L 123.4 700.777 L 123.4 682.6676 L 39.7 682.6676 L 39.7 700.777 z \\\"/><path clip-path=\\\"url(#clip5-4)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 52.677 700.777 L 110.677 700.777 L 110.677 690.777 L 52.677 690.777 L 52.677 700.777 z \\\"/><g clip-path=\\\"url(#clip5-4)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 52.677 693.4019)\\\" x=\\\"0 7.552 9.376 11.2 13.024 15.152 20.928 25.376 27.504 31.952 36.4 40.4 44.848 49.296 53.296\\\">Will we advance</text></g><path clip-path=\\\"url(#clip5-4)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 51.093 691.7223 L 112.093 691.7223 L 112.093 681.7223 L 51.093 681.7223 L 51.093 691.7223 z \\\"/><g clip-path=\\\"url(#clip5-4)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 51.093 684.3473)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 19.16 23.608 25.832 27.656 32.104 36.552 38.68 43.568 48.016 52.464 56.464\\\">Arbitration Fees?</text></g><clipPath id=\\\"clip5-5\\\"><path d=\\\"M 127 680 L 206 680 L 206 705 L 127 705 L 127 680 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-5)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 135.7422 693.4019)\\\" x=\\\"0 5.336 9.784 13.784 16.008 18.136 22.584 27.032 29.256 31.384 35.384 39.832 44.28 46.408 53.072 57.52\\\">Yes, but you may</text></g><g clip-path=\\\"url(#clip5-5)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 148.541 684.3473)\\\" x=\\\"0 4.448 8.896 12.896 15.024 19.024 23.472 27.472 29.696 33.696\\\">pay costs.</text></g><clipPath id=\\\"clip5-6\\\"><path d=\\\"M 205 680 L 573 680 L 573 705 L 205 705 L 205 680 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 693.4019)\\\" x=\\\"0 7.552\\\">We</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 221.6 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 224.0728 693.4019)\\\" x=\\\"0 4.448 8.896 12.896 17.344 21.792 25.792\\\">advance</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 254.3189 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 256.7917 693.4019)\\\" x=\\\"0 4 8.448 12.896\\\">your</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 272.3542 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 274.827 693.4019)\\\" x=\\\"0 2.84 8.176 10.84 15.288 17.112 19.336 22 26.448 28.672 30.496 34.944\\\">&quot;Arbitration</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 314.2216 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 316.6944 693.4019)\\\" x=\\\"0 4.888 9.336 13.784 17.784\\\">Fees&quot;</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 337.3194 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 339.7922 693.4019)\\\" x=\\\"0 1.824\\\">if</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 343.8391 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 346.3119 693.4019)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.2103 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 361.6831 693.4019)\\\" x=\\\"0 4.448 8.448\\\">ask</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 374.1323 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 376.6051 693.4019)\\\" x=\\\"0 4.448\\\">us</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 385.0544 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 387.5272 693.4019)\\\" x=\\\"0 2.224 6.672\\\">to.</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 396.4217 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 398.8945 693.4019)\\\" x=\\\"0 4.888 9.336 11.16\\\">This</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 414.0547 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 416.5275 693.4019)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44\\\">includes</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 445.9728 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 448.4456 693.4019)\\\" x=\\\"0 2.224 4.048 5.872 7.696 12.144 16.592\\\">filing,</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.262 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 469.7348 693.4019)\\\" x=\\\"0 4.448 8.896 15.56 17.384 21.832 23.656 27.656 29.88 32.544 36.992 39.216 41.04 45.04 49.488\\\">administrative,</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.4497 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 523.9225 693.4019)\\\" x=\\\"0 4.448 8.896 13.344 16.008 17.832 22.28 26.728\\\">hearing,</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.8795 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 555.3523 693.4019)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 684.3473)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608 25.136 29.136 31.264 33.488 37.936 42.384 46.384 48.608 50.736 56.072 60.52 64.968 67.096 71.544 75.992 79.992 82.12 86.12 90.568 95.016 97.68 99.808 104.256 106.48 108.704 113.152 115.816 120.264 124.712 128.712 130.84 133.064 137.512 141.96 145.96 148.088 152.536 156.984 161.432 163.56 168.008 170.232 174.68 179.128 181.792 183.92 188.368 192.368 196.816 201.264 205.712 209.712 214.16 218.16\\\">Arbiter&apos;s fees. You pay your attorney fees and other expenses.</text></g><clipPath id=\\\"clip5-7\\\"><path d=\\\"M 35 656 L 128 656 L 128 681 L 35 681 L 35 656 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-7)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.6 680.277 L 127.5 680.277 L 127.5 656.6769 L 35.6 656.6769 L 35.6 680.277 z \\\"/><path clip-path=\\\"url(#clip5-7)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.7 676.277 L 123.4 676.277 L 123.4 658.1676 L 39.7 658.1676 L 39.7 676.277 z \\\"/><path clip-path=\\\"url(#clip5-7)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 50.0715 676.277 L 113.0715 676.277 L 113.0715 666.277 L 50.0715 666.277 L 50.0715 676.277 z \\\"/><g clip-path=\\\"url(#clip5-7)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 50.0715 668.9019)\\\" x=\\\"0 5.336 8 12.448 14.576 19.024 23.472 30.136 34.584 39.032 43.48 47.48 49.608 54.056 58.504\\\">Are damages and</text></g><path clip-path=\\\"url(#clip5-7)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 40.4641 667.2223 L 123.4641 667.2223 L 123.4641 657.2223 L 40.4641 657.2223 L 40.4641 667.2223 z \\\"/><g clip-path=\\\"url(#clip5-7)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.4641 659.8473)\\\" x=\\\"0 4.448 6.672 8.896 13.344 16.008 20.456 24.904 28.904 31.032 33.256 37.704 42.152 46.152 48.28 52.728 57.176 61.176 65.176 67 71.448 73.272 77.72\\\">attorney fees possible?</text></g><clipPath id=\\\"clip5-8\\\"><path d=\\\"M 127 656 L 206 656 L 206 681 L 127 681 L 127 656 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 139.625 668.9019)\\\" x=\\\"0 5.336 9.784 13.784 16.008 18.136 19.96 22.184 24.312 28.76 30.584 32.408 36.856 42.632 47.08 51.528\\\">Yes, if allowed.</text></g><clipPath id=\\\"clip5-9\\\"><path d=\\\"M 205 656 L 573 656 L 573 681 L 205 681 L 205 656 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 668.9019)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 223.3852 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 225.9124 668.9019)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 249.5218 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 252.049 668.9019)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 267.1623 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 269.6895 668.9019)\\\" x=\\\"0 4.448 10.224 14.672 17.336\\\">award</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.4786 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 294.0058 668.9019)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 305.1269 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 307.6542 668.9019)\\\" x=\\\"0 4 8.448 15.112\\\">same</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 327.2167 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 329.7439 668.9019)\\\" x=\\\"0 4.448 8.896 15.56 20.008 24.456 28.904\\\">damages</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 362.6541 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 365.1813 668.9019)\\\" x=\\\"0 4.448\\\">as</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 373.6305 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 376.1578 668.9019)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.607 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 383.1342 668.9019)\\\" x=\\\"0 4 8.448 12.896 15.56 17.784\\\">court.</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.142 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 405.6693 668.9019)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608\\\">Arbiters</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 433.2786 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 435.8059 668.9019)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 450.9192 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 453.4464 668.9019)\\\" x=\\\"0 4.448 10.224 14.672 17.336\\\">award</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 475.2355 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 477.7627 668.9019)\\\" x=\\\"0 2.664 7.112 11.56 15.56 20.008 24.456 28.904 33.352 35.176\\\">reasonable</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 517.3955 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 519.9227 668.9019)\\\" x=\\\"0 4.448 6.672 8.896 13.344 16.008 20.456 24.904\\\">attorney</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 548.829 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 551.3562 668.9019)\\\" x=\\\"0 2.224 6.672 11.12 15.12\\\">fees,</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 659.8473)\\\" x=\\\"0 4.448 8.896 13.344 15.472 19.92 23.92 28.368 32.816 37.264 41.264 45.712 49.712 51.936 54.064 55.888 58.112 60.24 64.688 66.512 68.336 72.784 78.56 83.008 87.456 89.584 94.032 98.032 100.16 101.984 106.432 112.208\\\">and expenses, * D E M O *by law.</text></g><clipPath id=\\\"clip5-10\\\"><path d=\\\"M 35 633 L 128 633 L 128 657 L 35 657 L 35 633 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-10)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.6 656.6769 L 127.5 656.6769 L 127.5 633.077 L 35.6 633.077 L 35.6 656.6769 z \\\"/><path clip-path=\\\"url(#clip5-10)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.7 652.6769 L 123.4 652.6769 L 123.4 634.5676 L 39.7 634.5676 L 39.7 652.6769 z \\\"/><path clip-path=\\\"url(#clip5-10)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 40.675 652.6769 L 124.675 652.6769 L 124.675 642.6769 L 40.675 642.6769 L 40.675 652.6769 z \\\"/><g clip-path=\\\"url(#clip5-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 645.3019)\\\" x=\\\"0 7.552 9.376 11.2 13.024 15.152 19.152 23.6 28.048 30.176 34.624 39.072 43.072 45.2 50.536 53.2 57.648 59.472 61.696 64.36 68.808 71.032 72.856 77.304\\\">Will you pay Arbitration</text></g><path clip-path=\\\"url(#clip5-10)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 52.7473 643.6223 L 110.7473 643.6223 L 110.7473 633.6223 L 52.7473 633.6223 L 52.7473 643.6223 z \\\"/><g clip-path=\\\"url(#clip5-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 52.7473 636.2473)\\\" x=\\\"0 4.888 9.336 13.784 17.784 19.912 21.736 23.96 26.088 30.088 34.536 38.984 41.112 46.888 48.712 53.16\\\">Fees if you win?</text></g><clipPath id=\\\"clip5-11\\\"><path d=\\\"M 127 633 L 206 633 L 206 657 L 127 657 L 127 633 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 160.2754 645.3019)\\\" x=\\\"0 5.776 10.224\\\">No.</text></g><clipPath id=\\\"clip5-12\\\"><path d=\\\"M 205 633 L 573 633 L 573 657 L 205 657 L 205 633 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 645.3019)\\\" x=\\\"0 2.224 4.448 6.576 8.8 13.248 17.696 19.824 25.16 27.824 32.272 34.096 36.32 40.768 43.432 45.56 50.008 55.784 60.232 62.896 67.344 71.344 73.472 77.472 81.92 86.368 88.496 90.72 95.168 99.616 104.064 108.064 110.288 112.416 116.416 120.864 125.312 127.44 131.888 136.336 140.784 142.312 144.536 146.664 149.328 153.776 155.6 162.264 166.712 171.16 173.824 177.824 182.272 184.4 188.848 192.848 194.976 197.2 201.648 206.096 208.224 213.56 216.224 220.672 222.496 224.72 227.384 231.832 234.056 235.88 240.328 244.776 246.904 251.792 256.24 260.688 264.688\\\">If the Arbiter awards you funds, you don&apos;t reimburse us the Arbitration Fees.</text></g><clipPath id=\\\"clip5-13\\\"><path d=\\\"M 35 601 L 128 601 L 128 634 L 35 634 L 35 601 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-13)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.6 633.077 L 127.5 633.077 L 127.5 601.9129 L 35.6 601.9129 L 35.6 633.077 z \\\"/><path clip-path=\\\"url(#clip5-13)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.7 629.077 L 123.4 629.077 L 123.4 610.9676 L 39.7 610.9676 L 39.7 629.077 z \\\"/><path clip-path=\\\"url(#clip5-13)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 51.1711 629.077 L 112.1711 629.077 L 112.1711 619.077 L 51.1711 619.077 L 51.1711 629.077 z \\\"/><g clip-path=\\\"url(#clip5-13)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 51.1711 621.702)\\\" x=\\\"0 7.552 9.376 11.2 13.024 15.152 19.152 23.6 28.048 30.176 34.624 38.624 43.072 45.736 47.864 52.312 56.76\\\">Will you ever pay</text></g><path clip-path=\\\"url(#clip5-13)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 51.093 620.0223 L 112.093 620.0223 L 112.093 610.0223 L 51.093 610.0223 L 51.093 620.0223 z \\\"/><g clip-path=\\\"url(#clip5-13)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 51.093 612.6473)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 19.16 23.608 25.832 27.656 32.104 36.552 38.68 43.568 48.016 52.464 56.464\\\">Arbitration Fees?</text></g><clipPath id=\\\"clip5-14\\\"><path d=\\\"M 127 601 L 206 601 L 206 634 L 127 634 L 127 601 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-14)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 152.2715 621.702)\\\" x=\\\"0 5.336 9.784 13.784 16.008 21.784 26.232\\\">Yes/No.</text></g><clipPath id=\\\"clip5-15\\\"><path d=\\\"M 205 601 L 573 601 L 573 634 L 205 634 L 205 601 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 621.702)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 214.0453 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 217.6688 621.702)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 228.7898 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 232.4133 621.702)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.0227 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 259.6461 621.702)\\\" x=\\\"0 4.448 8.896 13.344 17.344 21.792 23.32\\\">doesn&apos;t</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 285.193 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 288.8164 621.702)\\\" x=\\\"0 4.448 10.224 14.672 17.336\\\">award</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 310.6055 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 314.2289 621.702)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 327.1273 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 330.7508 621.702)\\\" x=\\\"0 2.224 6.672 11.12 15.568 19.568\\\">funds,</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 352.5437 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 356.1672 621.702)\\\" x=\\\"0 2.224 6.672 11.12\\\">then</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.7375 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 375.3609 621.702)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.2594 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 391.8828 621.702)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 406.9961 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 410.6195 621.702)\\\" x=\\\"0 2.664 7.112 11.56 16.008\\\">repay</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.6312 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 434.2547 621.702)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 445.3758 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 448.9992 621.702)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 19.16 23.608 25.832 27.656 32.104\\\">Arbitration</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 485.5539 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 489.1773 621.702)\\\" x=\\\"0 4.888 9.336 13.784 17.784\\\">Fees.</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.1851 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 512.8086 621.702)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.5937 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 530.2172 621.702)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.8265 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 557.45 621.702)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 612.6473)\\\" x=\\\"0 4.448 8.896 12.896 14.72 19.168\\\">decide</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.2211 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 236.7228 612.6473)\\\" x=\\\"0 5.776 10.224 14.672 16.896 21.344 25.792\\\">whether</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 265.1838 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 268.6855 612.6473)\\\" x=\\\"0 4 8.448 12.896 14.424 16.248\\\">you&apos;ll</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 286.7597 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 290.2614 612.6473)\\\" x=\\\"0 4.448 8.896 12.896\\\">pay.</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 305.3825 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 308.8842 612.6473)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 313.3295 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 316.8312 612.6473)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.7297 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 333.2314 612.6473)\\\" x=\\\"0 6.664 11.112 15.112\\\">must</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 350.5673 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 354.0691 612.6473)\\\" x=\\\"0 4.448 8.896\\\">pay</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 366.9675 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 370.4692 612.6473)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 19.16 23.608 25.832 27.656 32.104\\\">Arbitration</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 407.0239 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 410.5256 612.6473)\\\" x=\\\"0 4.888 9.336 13.784 17.784\\\">Fees,</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.5334 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 434.0351 612.6473)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 445.1562 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 448.658 612.6473)\\\" x=\\\"0 4.448 11.112 15.56 20.008 24.456\\\">amount</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 475.3415 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 478.8433 612.6473)\\\" x=\\\"0 5.776 10.224 14.672 16.2\\\">won&apos;t</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 497.269 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 500.7708 612.6473)\\\" x=\\\"0 4.448 8.448 12.448 16.896 21.344\\\">exceed</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.5676 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 530.0694 612.6473)\\\" x=\\\"0 4 6.224 10.672 12.896\\\">state</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 547.4131 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 550.9148 612.6473)\\\" x=\\\"0 4 8.448 12.896 15.56\\\">court</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 603.5926)\\\" x=\\\"0 4 8.448 12.448 14.672 18.672\\\">costs.</text></g><clipPath id=\\\"clip5-16\\\"><path d=\\\"M 35 534 L 128 534 L 128 602 L 35 602 L 35 534 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-16)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.6 601.9129 L 127.5 601.9129 L 127.5 534.5301 L 35.6 534.5301 L 35.6 601.9129 z \\\"/><path clip-path=\\\"url(#clip5-16)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.7 597.9129 L 123.4 597.9129 L 123.4 579.8035 L 39.7 579.8035 L 39.7 597.9129 z \\\"/><path clip-path=\\\"url(#clip5-16)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 45.2063 597.9129 L 118.2063 597.9129 L 118.2063 587.9129 L 45.2063 587.9129 L 45.2063 597.9129 z \\\"/><g clip-path=\\\"url(#clip5-16)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 45.2063 590.5379)\\\" x=\\\"0 7.552 12 16.448 18.672 20.8 25.248 29.696 34.144 38.592 43.04 47.488 51.488 53.616 55.44 57.664 59.792 63.792 68.24\\\">What happens if you</text></g><path clip-path=\\\"url(#clip5-16)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 73.3 588.8582 L 90.3 588.8582 L 90.3 578.8582 L 73.3 578.8582 L 73.3 588.8582 z \\\"/><g clip-path=\\\"url(#clip5-16)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 73.3 581.4832)\\\" x=\\\"0 5.776 7.6 12.048\\\">win?</text></g><clipPath id=\\\"clip5-17\\\"><path d=\\\"M 127 534 L 206 534 L 206 602 L 127 602 L 127 534 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-17)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 131.9356 590.5379)\\\" x=\\\"0 5.336 9.784 14.232 16.36 20.36 24.808 29.256 31.08 35.528 37.656 42.104 46.552 48.776 50.904 57.568 62.016 64.68\\\">You could get more</text></g><g clip-path=\\\"url(#clip5-17)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 139.2246 581.4832)\\\" x=\\\"0 2.224 6.672 11.12 15.568 17.696 19.92 24.368 28.816 30.944 36.28 38.944 43.392 45.216 47.44 51.888\\\">than the Arbiter</text></g><g clip-path=\\\"url(#clip5-17)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 150.0449 572.4285)\\\" x=\\\"0 4.448 10.224 14.672 17.336 21.784 26.232 30.68\\\">awarded.</text></g><clipPath id=\\\"clip5-18\\\"><path d=\\\"M 205 534 L 573 534 L 573 602 L 205 602 L 205 534 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 590.5379)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 214.0453 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 216.367 590.5379)\\\" x=\\\"0 4.448\\\">an</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.2654 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 227.5871 590.5379)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608 25.136\\\">Arbiter&apos;s</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.7238 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 259.0455 590.5379)\\\" x=\\\"0 4.448 10.224 14.672 17.336\\\">award</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.8345 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 283.1562 590.5379)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 289.8281 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 292.1498 590.5379)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 305.0482 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 307.3699 590.5379)\\\" x=\\\"0 4.448 8.448 12.448 16.896 21.344 25.792\\\">exceeds</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 337.1667 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 339.4884 590.5379)\\\" x=\\\"0 4.448 8.896\\\">our</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.0509 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 353.3726 590.5379)\\\" x=\\\"0 1.824 6.272 10.272\\\">last</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 365.8687 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 368.1903 590.5379)\\\" x=\\\"0 5.336 9.784 12.008 14.232 16.056 20.504 27.168 31.616 36.064\\\">Settlement</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 406.4794 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 408.8011 590.5379)\\\" x=\\\"0 6.224 8.448 10.672 15.12 17.784\\\">Offer,</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 428.805 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 431.1266 590.5379)\\\" x=\\\"0 5.776\\\">we</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 441.3532 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 443.6749 590.5379)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.9249 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 457.2465 590.5379)\\\" x=\\\"0 4.448 8.896\\\">pay</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 470.145 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 472.4666 590.5379)\\\" x=\\\"0\\\">3</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 476.9159 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 479.2375 590.5379)\\\" x=\\\"0 4.448 11.112 15.56 20.008 24.456 26.68 30.68\\\">amounts.</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.1438 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 514.4654 590.5379)\\\" x=\\\"0 7.552\\\">We</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.4654 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 528.7871 590.5379)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 540.0371 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 542.3588 590.5379)\\\" x=\\\"0 4.448 8.896\\\">pay</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 555.2572 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 557.5789 590.5379)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 581.4832)\\\" x=\\\"0 4.448 7.112 11.56 16.008 18.232 22.68\\\">greater</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 234.9477 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 238.6632 581.4832)\\\" x=\\\"0 4.448\\\">of</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.3351 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 249.0506 581.4832)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 260.1717 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 263.8872 581.4832)\\\" x=\\\"0 4.448 10.224 14.672 17.336\\\">award</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 285.6762 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 289.3918 581.4832)\\\" x=\\\"0 4.448 11.112 15.56 20.008 24.456\\\">amount</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 316.0754 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 319.7909 581.4832)\\\" x=\\\"0 4.448\\\">or</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 326.9042 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 330.6197 581.4832)\\\" x=\\\"0 4.448 8.896 13.344 17.792 20.016 24.464\\\">$500.00</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.5376 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 363.2532 581.4832)\\\" x=\\\"0 2.664 5.504 9.952 14.4 18.848 23.296\\\">(&quot;bonus</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 390.5539 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 394.2695 581.4832)\\\" x=\\\"0 4.448 8.896 12.896 19.56 24.008 28.456 30.68 33.52 36.184\\\">payment&quot;).</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 432.6796 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 436.3951 581.4832)\\\" x=\\\"0 7.552\\\">We</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 448.3951 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 452.1107 581.4832)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 463.3607 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 467.0762 581.4832)\\\" x=\\\"0 4.448 8.896\\\">pay</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 479.9746 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 483.6901 581.4832)\\\" x=\\\"0 4 8.448 12.896\\\">your</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.2526 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 502.9682 581.4832)\\\" x=\\\"0 4.448 6.672 8.896 13.344 16.008 20.456 24.904\\\">attorney</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 531.8744 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 535.5899 581.4832)\\\" x=\\\"0 2.224 8 9.824 13.824\\\">twice</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.8634 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 557.5789 581.4832)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 572.4285)\\\" x=\\\"0 4.448 6.672 8.896 13.344 16.008 20.456 24.904\\\">attorney</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.5063 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 242.1723 572.4285)\\\" x=\\\"0 2.224 6.672 11.12\\\">fees</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.2934 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 260.9594 572.4285)\\\" x=\\\"0 4 8.448 12.896 15.12 19.568 22.232 24.896 29.344\\\">conferred</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 294.7563 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 298.4224 572.4285)\\\" x=\\\"0 2.664 5.504 9.952 12.176 14.4 18.848 21.512 25.96 30.408\\\">(&quot;attorney</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 332.8325 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 336.4986 572.4285)\\\" x=\\\"0 4.448 7.112 11.56 18.224 20.048 24.496 31.16 34 36.664\\\">premium&quot;).</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.3892 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 379.0552 572.4285)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.5005 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 387.1666 572.4285)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 398.2877 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 401.9537 572.4285)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 425.5631 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 429.2291 572.4285)\\\" x=\\\"0 4.448 7.112 11.56 16.008 18.672 22.672\\\">orders,</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.1276 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 457.7936 572.4285)\\\" x=\\\"0 5.776\\\">we</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.0202 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 471.6862 572.4285)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 482.9362 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 486.6023 572.4285)\\\" x=\\\"0 4.448 8.896\\\">pay</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.5007 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 503.1667 572.4285)\\\" x=\\\"0 2.664 7.112 11.56 15.56 20.008 24.456 28.904 33.352 35.176\\\">reasonable</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 542.7996 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 546.4656 572.4285)\\\" x=\\\"0 4.448 8.448 12.896 17.344 20.008\\\">expert</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 563.3738)\\\" x=\\\"0 5.776 7.6 9.824 14.272 18.72 22.72\\\">witness</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 236.3227 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 238.5023 563.3738)\\\" x=\\\"0 4 8.448 12.448 14.672\\\">costs</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.1741 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 259.3537 563.3738)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 272.7014 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 274.881 563.3738)\\\" x=\\\"0 4.448 6.672 11.12 15.568\\\">other</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 293.1153 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 295.2949 563.3738)\\\" x=\\\"0 4 8.448 12.448 14.672\\\">costs</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 313.9668 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 316.1464 563.3738)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.0448 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 331.2244 563.3738)\\\" x=\\\"0 1.824 6.272 10.272 14.72 17.384 20.048 24.496\\\">incurred</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 360.1736 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 362.3532 563.3738)\\\" x=\\\"0 2.664 5.504 9.504 13.952 17.952\\\">(&quot;cost</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 382.529 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 384.7086 563.3738)\\\" x=\\\"0 4.448 7.112 11.56 18.224 20.048 24.496 31.16 34 36.664\\\">premium&quot;).</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 423.5992 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 425.7788 563.3738)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.2241 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 432.4037 563.3738)\\\" x=\\\"0 5.776\\\">we</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 442.6303 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 444.8099 563.3738)\\\" x=\\\"0 4.448 8.896 12.896 17.344\\\">never</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 464.8216 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 467.0012 563.3738)\\\" x=\\\"0 6.664 11.112 15.56\\\">made</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 487.0129 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 489.1925 563.3738)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 493.6417 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 495.8213 563.3738)\\\" x=\\\"0 5.336 9.784 12.008 14.232 16.056 20.504 27.168 31.616 36.064\\\">Settlement</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 534.1103 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 536.2899 563.3738)\\\" x=\\\"0 6.224 8.448 10.672 15.12 17.784\\\">Offer,</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 556.2938 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 558.4734 563.3738)\\\" x=\\\"0 5.776\\\">we</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 554.3191)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 220.85 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 224.1983 554.3191)\\\" x=\\\"0 4.448 8.896\\\">pay</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 237.0968 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 240.4451 554.3191)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 251.5662 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 254.9145 554.3191)\\\" x=\\\"0 4.448 8.896 13.344 17.792\\\">bonus</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.7114 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 280.0597 554.3191)\\\" x=\\\"0 4.448 8.896 12.896 19.56 24.008 28.456 30.68\\\">payment,</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.966 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 316.3143 554.3191)\\\" x=\\\"0 4.448 6.672 8.896 13.344 16.008 20.456 24.904\\\">attorney</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 345.2206 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 348.5689 554.3191)\\\" x=\\\"0 4.448 7.112 11.56 18.224 20.048 24.496 31.16\\\">premium,</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 381.9556 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 385.3039 554.3191)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 398.6516 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 401.9999 554.3191)\\\" x=\\\"0 4.448 8.896\\\">any</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 414.8984 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 418.2467 554.3191)\\\" x=\\\"0 4 8.448 12.448\\\">cost</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 432.9186 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 436.2669 554.3191)\\\" x=\\\"0 4.448 7.112 11.56 18.224 20.048 24.496 31.16\\\">premium.</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 469.6536 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 473.002 554.3191)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.7871 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 490.1355 554.3191)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 513.7448 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 517.0932 554.3191)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 532.2064 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 535.5548 554.3191)\\\" x=\\\"0 4.448 7.112 11.56 16.008\\\">order</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 554.2306 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 557.5789 554.3191)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 545.2645)\\\" x=\\\"0 4.448 7.112 11.56 15.56 20.008 24.008\\\">process</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 237.6117 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 240.0494 545.2645)\\\" x=\\\"0 2.224 6.672\\\">for</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 249.3853 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 251.8229 545.2645)\\\" x=\\\"0 4.448 8.896 12.896 19.56 24.008 28.456 30.68\\\">payment.</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 284.7292 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 287.1668 545.2645)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.6121 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 294.0498 545.2645)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 298.499 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 300.9366 545.2645)\\\" x=\\\"0 1.824 6.272\\\">law</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.9874 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 315.425 545.2645)\\\" x=\\\"0 4.448 6.272 8.096 12.544 18.32\\\">allows</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 337.7493 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 340.1869 545.2645)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 353.0853 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 355.523 545.2645)\\\" x=\\\"0 6.664 11.112 13.776 18.224\\\">more,</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.9722 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 378.4098 545.2645)\\\" x=\\\"0 2.224 6.672 8.496\\\">this</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 390.9059 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 393.3436 545.2645)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496\\\">Clause</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 418.2928 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 420.7304 545.2645)\\\" x=\\\"0 5.776 10.224 14.672 16.2\\\">won&apos;t</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 439.1562 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 441.5938 545.2645)\\\" x=\\\"0 4.448 7.112 11.56 15.56 20.008 24.456\\\">prevent</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.2774 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 470.7151 545.2645)\\\" x=\\\"0 4 8.448 12.448\\\">such</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 487.6135 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 490.0511 545.2645)\\\" x=\\\"0 4.448 10.224 14.672 17.336 21.784\\\">award.</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 514.0628 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 516.5005 545.2645)\\\" x=\\\"0 7.552\\\">We</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 528.5005 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 530.9381 545.2645)\\\" x=\\\"0 5.776 10.224 14.672 16.2\\\">won&apos;t</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.3639 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 551.8015 545.2645)\\\" x=\\\"0 4 8.448 12.896\\\">seek</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 536.2098)\\\" x=\\\"0 4.448 6.672 8.896 13.344 16.008 20.456 24.904 28.904 31.032 33.256 37.704 42.152 46.152 48.28 52.728 57.176 61.624 63.752 68.2 72.2 76.648 81.096 85.544 89.544 93.992 97.992\\\">attorney fees and expenses.</text></g><clipPath id=\\\"clip5-19\\\"><path d=\\\"M 35 510 L 128 510 L 128 535 L 35 535 L 35 510 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-19)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.6 534.5301 L 127.5 534.5301 L 127.5 510.5301 L 35.6 510.5301 L 35.6 534.5301 z \\\"/><path clip-path=\\\"url(#clip5-19)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.7 530.5301 L 123.4 530.5301 L 123.4 512.4207 L 39.7 512.4207 L 39.7 530.5301 z \\\"/><path clip-path=\\\"url(#clip5-19)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 51.2317 530.5301 L 112.2317 530.5301 L 112.2317 520.5301 L 51.2317 520.5301 L 51.2317 530.5301 z \\\"/><g clip-path=\\\"url(#clip5-19)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 51.2317 523.1551)\\\" x=\\\"0 5.776 10.224 14.672 16.8 21.248 25.696 27.824 32.272 38.048 42.496 45.16 49.608 51.736 56.184\\\">Can an award be</text></g><path clip-path=\\\"url(#clip5-19)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 62.1535 521.4754 L 101.1535 521.4754 L 101.1535 511.4754 L 62.1535 511.4754 L 62.1535 521.4754 z \\\"/><g clip-path=\\\"url(#clip5-19)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 62.1535 514.1004)\\\" x=\\\"0 4.448 8.448 12.896 14.72 19.168 20.992 25.44 29.888 34.336\\\">explained?</text></g><clipPath id=\\\"clip5-20\\\"><path d=\\\"M 127 510 L 206 510 L 206 535 L 127 535 L 127 510 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-20)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 158.4961 523.1551)\\\" x=\\\"0 5.336 9.784 13.784\\\">Yes.</text></g><clipPath id=\\\"clip5-21\\\"><path d=\\\"M 205 510 L 573 510 L 573 535 L 205 535 L 205 510 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 523.1551)\\\" x=\\\"0\\\">A</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 214.9359 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 218.2265 523.1551)\\\" x=\\\"0 4.448 8.896 11.56 13.784\\\">party</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 236.0117 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 239.3023 523.1551)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 254.4155 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 257.7061 523.1551)\\\" x=\\\"0 2.664 7.112 11.56 16.008 20.456 24.456\\\">request</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 284.3897 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 287.6803 523.1551)\\\" x=\\\"0 4.448 8.896 11.12 15.568 17.392 19.216\\\">details</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 310.899 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 314.1896 523.1551)\\\" x=\\\"0 2.224 4.888 9.336\\\">from</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 330.1896 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 333.4802 523.1551)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 344.6013 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 347.8919 523.1551)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608\\\">Arbiter,</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 373.7239 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 377.0145 523.1551)\\\" x=\\\"0 5.776 7.6 9.824 14.272 16.096\\\">within</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 397.5613 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 400.8519 523.1551)\\\" x=\\\"0 4.448\\\">14</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 409.7504 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 413.0409 523.1551)\\\" x=\\\"0 4.448 8.896 12.896\\\">days</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 429.9394 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 433.23 523.1551)\\\" x=\\\"0 4.448\\\">of</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 439.9018 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 443.1924 523.1551)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.3135 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 457.6041 523.1551)\\\" x=\\\"0 2.664 7.112 8.936 10.76 15.208 19.656\\\">ruling.</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 479.4869 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 482.7775 523.1551)\\\" x=\\\"0 5.776 10.224 14.672\\\">Upon</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.9025 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 505.193 523.1551)\\\" x=\\\"0 4 8.448 12.448\\\">such</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 522.0915 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 525.3821 523.1551)\\\" x=\\\"0 2.664 7.112 11.56 16.008 20.456 24.456 26.68\\\">request,</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 554.2883 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 557.5789 523.1551)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 514.1004)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608 25.736 31.512 33.336 35.16 36.984 39.112 43.56 47.56 52.008 53.832 58.28 60.104 64.552 66.68 68.904 73.352 77.8 79.928 82.592 87.04 88.864 90.688 95.136 99.584 101.712 103.536 107.984 110.112 115.888 118.552 120.376 122.6 124.424 128.872 133.32\\\">Arbiter will explain the ruling in writing.</text></g><clipPath id=\\\"clip5-22\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 704.777 L 128 704.777 L 128 703.777 L 35.1 703.777 L 35.1 704.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 703.777 L 36.1 703.777 L 36.1 680.777 L 35.1 680.777 L 35.1 703.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128 704.777 L 206 704.777 L 206 703.777 L 128 703.777 L 128 704.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127 703.777 L 128 703.777 L 128 680.777 L 127 680.777 L 127 703.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 704.777 L 573.3 704.777 L 573.3 703.777 L 206 703.777 L 206 704.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.3 703.777 L 573.3 703.777 L 573.3 680.777 L 572.3 680.777 L 572.3 703.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 703.777 L 206 703.777 L 206 680.777 L 205 680.777 L 205 703.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 680.777 L 128 680.777 L 128 679.777 L 35.1 679.777 L 35.1 680.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 679.777 L 36.1 679.777 L 36.1 657.1769 L 35.1 657.1769 L 35.1 679.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128 680.777 L 206 680.777 L 206 679.777 L 128 679.777 L 128 680.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127 679.777 L 128 679.777 L 128 657.1769 L 127 657.1769 L 127 679.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 680.777 L 573.3 680.777 L 573.3 679.777 L 206 679.777 L 206 680.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.3 679.777 L 573.3 679.777 L 573.3 657.1769 L 572.3 657.1769 L 572.3 679.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 679.777 L 206 679.777 L 206 657.1769 L 205 657.1769 L 205 679.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 657.1769 L 128 657.1769 L 128 656.1769 L 35.1 656.1769 L 35.1 657.1769 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 656.1769 L 36.1 656.1769 L 36.1 633.577 L 35.1 633.577 L 35.1 656.1769 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128 657.1769 L 206 657.1769 L 206 656.1769 L 128 656.1769 L 128 657.1769 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127 656.1769 L 128 656.1769 L 128 633.577 L 127 633.577 L 127 656.1769 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 657.1769 L 573.3 657.1769 L 573.3 656.1769 L 206 656.1769 L 206 657.1769 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.3 656.1769 L 573.3 656.1769 L 573.3 633.577 L 572.3 633.577 L 572.3 656.1769 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 656.1769 L 206 656.1769 L 206 633.577 L 205 633.577 L 205 656.1769 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 633.577 L 128 633.577 L 128 632.577 L 35.1 632.577 L 35.1 633.577 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 632.577 L 36.1 632.577 L 36.1 602.4129 L 35.1 602.4129 L 35.1 632.577 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128 633.577 L 206 633.577 L 206 632.577 L 128 632.577 L 128 633.577 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127 632.577 L 128 632.577 L 128 602.4129 L 127 602.4129 L 127 632.577 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 633.577 L 573.3 633.577 L 573.3 632.577 L 206 632.577 L 206 633.577 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.3 632.577 L 573.3 632.577 L 573.3 602.4129 L 572.3 602.4129 L 572.3 632.577 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 632.577 L 206 632.577 L 206 602.4129 L 205 602.4129 L 205 632.577 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 602.4129 L 128 602.4129 L 128 601.4129 L 35.1 601.4129 L 35.1 602.4129 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 601.4129 L 36.1 601.4129 L 36.1 535.0301 L 35.1 535.0301 L 35.1 601.4129 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128 602.4129 L 206 602.4129 L 206 601.4129 L 128 601.4129 L 128 602.4129 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127 601.4129 L 128 601.4129 L 128 535.0301 L 127 535.0301 L 127 601.4129 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 602.4129 L 573.3 602.4129 L 573.3 601.4129 L 206 601.4129 L 206 602.4129 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.3 601.4129 L 573.3 601.4129 L 573.3 535.0301 L 572.3 535.0301 L 572.3 601.4129 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 601.4129 L 206 601.4129 L 206 535.0301 L 205 535.0301 L 205 601.4129 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 535.0301 L 128 535.0301 L 128 534.0301 L 35.1 534.0301 L 35.1 535.0301 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 511.0301 L 128 511.0301 L 128 510.0301 L 35.1 510.0301 L 35.1 511.0301 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 534.0301 L 36.1 534.0301 L 36.1 511.0301 L 35.1 511.0301 L 35.1 534.0301 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128 535.0301 L 206 535.0301 L 206 534.0301 L 128 534.0301 L 128 535.0301 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128 511.0301 L 206 511.0301 L 206 510.0301 L 128 510.0301 L 128 511.0301 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127 534.0301 L 128 534.0301 L 128 511.0301 L 127 511.0301 L 127 534.0301 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 535.0301 L 573.3 535.0301 L 573.3 534.0301 L 206 534.0301 L 206 535.0301 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 511.0301 L 573.3 511.0301 L 573.3 510.0301 L 206 510.0301 L 206 511.0301 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.3 534.0301 L 573.3 534.0301 L 573.3 511.0301 L 572.3 511.0301 L 572.3 534.0301 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 534.0301 L 206 534.0301 L 206 511.0301 L 205 511.0301 L 205 534.0301 z \\\"/><g clip-path=\\\"url(#clip5-22)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 273.1062 500.3113)\\\" x=\\\"0 7.78 10.56 16.12 21.68 25.01 27.67 35.45 41.01 43.79 46.07 51.63 57.19\\\">Other Options</text></g><clipPath id=\\\"clip5-23\\\"><path d=\\\"M 35 438 L 128 438 L 128 490 L 35 490 L 35 438 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-23)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.6 489.107 L 127.5 489.107 L 127.5 438.107 L 35.6 438.107 L 35.6 489.107 z \\\"/><path clip-path=\\\"url(#clip5-23)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.7 485.607 L 123.4 485.607 L 123.4 458.443 L 39.7 458.443 L 39.7 485.607 z \\\"/><path clip-path=\\\"url(#clip5-23)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 48.2942 485.607 L 115.2942 485.607 L 115.2942 475.607 L 48.2942 475.607 L 48.2942 485.607 z \\\"/><g clip-path=\\\"url(#clip5-23)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 48.2942 478.232)\\\" x=\\\"0 2.224 4.448 6.576 10.576 15.024 19.472 21.6 26.048 30.496 34.944 36.472 38.696 40.824 46.6 51.048 55.496 57.72 59.848 62.072\\\">If you don&apos;t want to</text></g><path clip-path=\\\"url(#clip5-23)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 43.8078 476.5524 L 119.8078 476.5524 L 119.8078 466.5524 L 43.8078 466.5524 L 43.8078 476.5524 z \\\"/><g clip-path=\\\"url(#clip5-23)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 43.8078 469.1774)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 29.392 31.616 33.744 37.744 42.192 46.64 48.768 52.768 57.216 61.664 63.792 67.792 70.016 71.84 73.664\\\">arbitrate, can you still</text></g><path clip-path=\\\"url(#clip5-23)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 49.8254 467.4977 L 113.8254 467.4977 L 113.8254 457.4977 L 49.8254 457.4977 L 49.8254 467.4977 z \\\"/><g clip-path=\\\"url(#clip5-23)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 49.8254 460.1227)\\\" x=\\\"0 4.448 8.896 11.12 13.248 17.696 19.824 22.048 24.712 29.16 33.608 37.608 42.056 46.056 48.28 50.104 54.552 59\\\">get a transaction?</text></g><clipPath id=\\\"clip5-24\\\"><path d=\\\"M 127 438 L 206 438 L 206 490 L 127 490 L 127 438 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-24)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.1817 478.232)\\\" x=\\\"0 5.336 9.784 13.784 16.008 18.136 23.472 27.92 32.368 34.496 38.496 42.944 47.392 49.52 53.968 58.416\\\">Yes. You can get</text></g><g clip-path=\\\"url(#clip5-24)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 137.2266 469.1774)\\\" x=\\\"0 4.448 8.896 11.56 13.688 17.688 22.136 24.8 28.8 30.624 34.624 39.072 43.072 45.2 49.648 54.096\\\">our* D E M O *nd</text></g><g clip-path=\\\"url(#clip5-24)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 143.668 460.1227)\\\" x=\\\"0 4.448 8.896 12.896 14.72 19.168 23.616 25.744 30.192 34.64 36.864 38.992 41.216\\\">decide not to</text></g><g clip-path=\\\"url(#clip5-24)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 150.6914 451.068)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 29.392\\\">arbitrate.</text></g><clipPath id=\\\"clip5-25\\\"><path d=\\\"M 205 438 L 573 438 L 573 490 L 205 490 L 205 438 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-25)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 478.232)\\\" x=\\\"0 5.776 10.224 14.672 18.672 20.496 24.944 29.392 32.056 34.184 36.408 40.856 45.304 49.304 53.752 55.88 59.88 64.328 68.776 70.6 74.6 79.048 83.048\\\">Consider these choices:</text></g><g clip-path=\\\"url(#clip5-25)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 469.1774)\\\" x=\\\"0 4.448 6.672 8.8 11.024 15.472 17.696 22.144 24.808 31.472 35.92 37.744 39.872 45.648 47.472 51.472 55.92 60.368 62.592 67.04 69.168 74.944 79.392 83.392 87.84 89.664 94.112 96.336 98.16 102.608 107.056 109.28 111.408 117.184 121.632 126.08 128.304 132.752 136.752 138.976 141.104 145.552 149.552 151.776 153.904 158.352 162.8 167.248 169.376 173.824 176.048 178.272 182.72 189.384 193.832 196.056 198.184 200.408 204.856 206.984 210.984 215.432 217.656 219.88 221.704 226.152 228.28 232.728 237.176 241.176 243.304 249.08 250.904 254.904 259.352 263.8 266.024 270.472 274.472\\\">1. Informal Dispute Resolution. Contact us, and attempt to settle any Disputes.</text></g><g clip-path=\\\"url(#clip5-25)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 460.1227)\\\" x=\\\"0 4.448 6.672 8.8 14.136 20.8 25.248 27.072 28.896 31.56 35.56 37.384 41.832 43.656 50.32 54.32 56.448 62.224 66.672 71.12 73.784 76.008 78.232 80.36 85.696 90.144 94.592 98.592 100.72 102.944 107.392 109.52 113.52 117.968 119.792 123.792 128.24 130.368 136.144 137.968 141.968 146.416 150.864 153.088 157.536 161.536 163.664 165.488 169.936 172.064 176.064 182.728 187.176 189 190.824 193.488 197.488 199.312 203.76 205.584 212.248 216.248 218.376 222.376 226.824 231.272 233.936 236.16 238.384 240.512 246.288 248.112 250.336 254.784 256.608 261.056 263.184 267.184 269.408 273.856 276.08 280.528 282.656 284.48 288.928 294.704 296.832 298.656 300.48 307.144 308.968 311.192 315.192\\\">2. Small-claims Court. Seek to solve Disputes in small-claims court, within state law limits.</text></g><g clip-path=\\\"url(#clip5-25)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 451.068)\\\" x=\\\"0 4.448 6.672 8.8 15.024 19.472 21.696 23.824 28.272 30.4 34.848 39.296 43.744 47.744 52.192 54.32 61.872 63.696 65.92 70.368 74.816 79.264 81.488 83.616 85.84 90.288 94.736 96.864 102.64 104.464 108.912 113.36 117.36 121.808 124.032 126.16 133.712 136.376 138.2 140.424 144.872 147 149.224 153.672 155.8 160.248 164.248 166.376 170.824 175.272 179.72 181.848 186.296 190.296 194.296 196.424 198.648 203.096 205.76 207.888 212.336 216.784 218.912 224.248 228.696 231.36 235.808 240.256 246.92 251.368 255.816 258.04 260.168 265.944 267.768 269.992 274.44 278.888 283.336 285.56 287.688 289.912 294.36 298.808 300.936 306.712 308.536 312.984 317.432 321.432 325.88\\\">3. Get a Lease Without the Clause. Write to us and ask for an Agreement without the Clause.</text></g><g clip-path=\\\"url(#clip5-25)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 442.0133)\\\" x=\\\"0 4.448 6.672 8.8 15.024 19.472 21.696 24.36 30.584 35.032 37.256 39.384 43.832 46.056 48.184 53.52 56.184 60.632 62.456 64.68 67.344 71.792 74.016 75.84 80.288 84.736 86.96 89.088 94.424 96.248 100.696 105.144 107.272 111.72 116.168 120.616 122.744 124.968 129.416 133.864 138.312 140.44 142.664 144.488 151.152 155.6 157.424 161.424 163.552 168 172.448 174.672 177.336 181.784 186.232 188.456\\\">4. Opt-Out of Arbitration. Sign and then timely opt-out.</text></g><clipPath id=\\\"clip5-26\\\"><path d=\\\"M 35 405 L 128 405 L 128 439 L 35 439 L 35 405 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-26)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.6 438.107 L 127.5 438.107 L 127.5 405.107 L 35.6 405.107 L 35.6 438.107 z \\\"/><path clip-path=\\\"url(#clip5-26)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.7 434.607 L 123.4 434.607 L 123.4 416.4977 L 39.7 416.4977 L 39.7 434.607 z \\\"/><path clip-path=\\\"url(#clip5-26)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 42.1633 434.607 L 121.1633 434.607 L 121.1633 424.607 L 42.1633 424.607 L 42.1633 434.607 z \\\"/><g clip-path=\\\"url(#clip5-26)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 42.1633 427.232)\\\" x=\\\"0 5.776 10.224 14.672 16.8 20.8 25.248 29.696 31.824 36.272 40.72 42.944 45.608 50.056 54.504 56.728 58.856 63.304 65.528 67.656 69.88 74.328\\\">Can you opt-out of the</text></g><path clip-path=\\\"url(#clip5-26)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 66.8508 425.5524 L 96.8508 425.5524 L 96.8508 415.5524 L 66.8508 415.5524 L 66.8508 425.5524 z \\\"/><g clip-path=\\\"url(#clip5-26)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 66.8508 418.1774)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496 24.944\\\">Clause?</text></g><clipPath id=\\\"clip5-27\\\"><path d=\\\"M 127 405 L 206 405 L 206 439 L 127 439 L 127 405 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-27)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 140.7617 427.232)\\\" x=\\\"0 5.336 9.784 13.784 16.008 18.136 25.688 27.512 29.736 34.184 36.008 40.456 42.584 47.032\\\">Yes. Within 60</text></g><g clip-path=\\\"url(#clip5-27)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 156.9395 418.1774)\\\" x=\\\"0 4.448 8.896 12.896 16.896\\\">days.</text></g><clipPath id=\\\"clip5-28\\\"><path d=\\\"M 205 405 L 573 405 L 573 439 L 205 439 L 205 405 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 427.232)\\\" x=\\\"0 7.552 10.216 12.04 14.264\\\">Write</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 228.3109 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 232.8069 427.232)\\\" x=\\\"0 4.448\\\">us</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 241.2562 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 245.7522 427.232)\\\" x=\\\"0 5.776 7.6 9.824 14.272 16.096\\\">within</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 266.299 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 270.795 427.232)\\\" x=\\\"0 4.448\\\">60</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 279.6935 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 284.1895 427.232)\\\" x=\\\"0 4 8.448 10.272 14.72 19.168 23.616 28.064\\\">calendar</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 314.9238 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 319.4198 427.232)\\\" x=\\\"0 4.448 8.896 12.896\\\">days</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 336.3183 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 340.8143 427.232)\\\" x=\\\"0 4.448\\\">of</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 347.4861 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 351.9821 427.232)\\\" x=\\\"0 4 5.824 10.272 14.72 16.544 20.992\\\">signing</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 377.4274 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 381.9234 427.232)\\\" x=\\\"0 4 8.448 12.896\\\">your</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 397.4859 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 401.9819 427.232)\\\" x=\\\"0 4.448 8.896 11.56 16.008 20.456 27.12 31.568 36.016\\\">agreement</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 440.228 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 444.724 427.232)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 451.3959 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 455.8919 427.232)\\\" x=\\\"0 4.448 8.896 11.12 13.784 18.232 22.68\\\">opt-out</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 480.7981 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 485.2941 427.232)\\\" x=\\\"0 4.448\\\">of</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 491.966 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 496.462 427.232)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 507.5831 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 512.0791 427.232)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496\\\">Clause</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 537.0283 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 541.5243 427.232)\\\" x=\\\"0 2.224 6.672\\\">for</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 550.8602 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 555.3562 427.232)\\\" x=\\\"0 2.224 6.672 11.12\\\">that</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 418.1774)\\\" x=\\\"0 4.448 8.896 11.56 16.008 20.456 27.12 31.568 36.016 38.24\\\">agreement.</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 250.0688 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 252.4616 418.1774)\\\" x=\\\"0 4.448 6.272 10.272\\\">List</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 264.9577 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 267.3505 418.1774)\\\" x=\\\"0 4 8.448 12.896\\\">your</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 282.913 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 285.3058 418.1774)\\\" x=\\\"0 4.448 8.896 15.56 20.008\\\">name,</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 307.5402 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 309.933 418.1774)\\\" x=\\\"0 4.448 8.896 13.344 16.008 20.456 24.456 28.456\\\">address,</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 340.6166 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 343.0095 418.1774)\\\" x=\\\"0 4.448 8.448 12.448 16.896 21.344 25.792\\\">account</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.029 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 373.4218 418.1774)\\\" x=\\\"0 4.448 8.896 15.56 20.008 24.456\\\">number</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 400.5468 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 402.9397 418.1774)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 416.2873 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 418.6801 418.1774)\\\" x=\\\"0 4.448 8.896 11.12 15.568\\\">date.</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 436.4731 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 438.8659 418.1774)\\\" x=\\\"0 4.448 6.272 10.272\\\">List</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 451.362 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 453.7549 418.1774)\\\" x=\\\"0 2.224 6.672 11.12\\\">that</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.0986 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 469.4914 418.1774)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 482.3899 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 484.7827 418.1774)\\\" x=\\\"0 2.84 7.288 11.736\\\">&quot;opt</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 498.7437 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 501.1365 418.1774)\\\" x=\\\"0 4.448 8.896 11.12 13.344\\\">out.&quot;</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 517.3201 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 519.7129 418.1774)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 524.1582 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 526.551 418.1774)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 539.4495 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 541.8423 418.1774)\\\" x=\\\"0 4.448 8.896\\\">opt</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.9634 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 555.3562 418.1774)\\\" x=\\\"0 4.448 8.896 11.12\\\">out,</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 409.1227)\\\" x=\\\"0 1.824 4.048 6.176 11.952 13.776 15.6 17.424 19.552 24 28.448 30.272 34.272 36.4 40.848 45.296 49.744 51.568 55.568 57.696 59.92 64.368 66.496 68.72 73.168 77.616 79.84 81.968 86.416 90.864 93.528 97.976 102.424 109.088 113.536 117.984 120.208\\\">it will only apply to that agreement.</text></g><clipPath id=\\\"clip5-29\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 489.607 L 128 489.607 L 128 488.607 L 35.1 488.607 L 35.1 489.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 488.607 L 36.1 488.607 L 36.1 438.607 L 35.1 438.607 L 35.1 488.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128 489.607 L 206 489.607 L 206 488.607 L 128 488.607 L 128 489.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127 488.607 L 128 488.607 L 128 438.607 L 127 438.607 L 127 488.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 489.607 L 573.3 489.607 L 573.3 488.607 L 206 488.607 L 206 489.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.3 488.607 L 573.3 488.607 L 573.3 438.607 L 572.3 438.607 L 572.3 488.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 488.607 L 206 488.607 L 206 438.607 L 205 438.607 L 205 488.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 438.607 L 128 438.607 L 128 437.607 L 35.1 437.607 L 35.1 438.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 405.607 L 128 405.607 L 128 404.607 L 35.1 404.607 L 35.1 405.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 437.607 L 36.1 437.607 L 36.1 405.607 L 35.1 405.607 L 35.1 437.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128 438.607 L 206 438.607 L 206 437.607 L 128 437.607 L 128 438.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128 405.607 L 206 405.607 L 206 404.607 L 128 404.607 L 128 405.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127 437.607 L 128 437.607 L 128 405.607 L 127 405.607 L 127 437.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 438.607 L 573.3 438.607 L 573.3 437.607 L 206 437.607 L 206 438.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 405.607 L 573.3 405.607 L 573.3 404.607 L 206 404.607 L 206 405.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.3 437.607 L 573.3 437.607 L 573.3 405.607 L 572.3 405.607 L 572.3 437.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 437.607 L 206 437.607 L 206 405.607 L 205 405.607 L 205 437.607 z \\\"/><g clip-path=\\\"url(#clip5-29)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 162.1492 377.7699)\\\" x=\\\"0 6.67 10 12.28 17.84 20.62 23.28 28.84 34.4 39.96 42.62 45.95 51.51 54.29 59.85 62.13 67.69 70.35 75.91 78.57 84.13 89.69 93.02 98.58 101.24 106.24 111.8 117.36 122.36 125.02 130.58 133.91 136.57 142.13 144.41 149.97 154.97 157.75 161.08 166.64 172.2 174.48 179.48 182.14 187.14 192.7 198.26 203.26 205.92 211.48 214.26 216.92 219.7 225.26 227.54 232.54 235.2 241.87 247.43 250.76 256.32 261.88 270.21 275.77 281.33\\\">Print and retain a hard copy or electronic copy of this Agreement</text></g><g clip-path=\\\"url(#clip5-29)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 36.5264)\\\" x=\\\"0 6.498 11.997 14.391 16.785 21.789 26.793 29.295 34.299 39.303 44.307 504 506.3906 508.7812 511.1719 513.5625 515.9531 518.3438 520.7344 523.125 525.5156\\\">UT  07/2019          </text></g><g clip-path=\\\"url(#clip5-29)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 26.3398)\\\" x=\\\"0 6.003 11.007 16.011 21.015\\\">Page </text></g><g clip-path=\\\"url(#clip5-29)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 55.8097 26.3398)\\\" x=\\\"0\\\">6</text></g><g clip-path=\\\"url(#clip5-29)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.815 26.3398)\\\" x=\\\"0 2.394 7.398 9.9\\\"> of </text></g><g clip-path=\\\"url(#clip5-29)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 73.1021 26.3398)\\\" x=\\\"0\\\">7</text></g><g clip-path=\\\"url(#clip5-29)\\\"><text stroke=\\\"none\\\" fill=\\\"#d9d9d9\\\" style=\\\"font-family:f5-0; font-size:54pt; white-space:pre\\\" transform=\\\"matrix(0.707 0.707 0.707 -0.707 135.6027 198.5094)\\\" x=\\\"0 56.016 96.048 136.08 176.112 216.144 236.16 284.184 324.216 344.232 364.248 416.232 456.264 480.24\\\">Qoppa Software</text></g><g clip-path=\\\"url(#clip5-29)\\\"><text stroke=\\\"none\\\" fill=\\\"#002ba6\\\" style=\\\"font-family:f5-0; font-size:9pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.932 772)\\\" x=\\\"0 9.336 16.008 22.68 29.352 36.024 39.36 47.364 54.036 57.372 60.708 69.372 76.044 80.04 86.712 90.048 94.044 97.38 104.712 111.384 115.38 118.716 126.72 132.72 139.392 142.056 148.728 155.4 158.736 161.4 168.072 174.744 178.08 187.416 194.088 196.752 202.752 206.088 210.084 213.42 220.092 223.428 226.764 233.436 239.436 242.772 246.108 249.444 258.108 266.772 275.436 278.772 285.444 292.116 298.788 305.46 312.132 315.468 321.468 328.14\\\">Qoppa Software - For Evaluation Only - https://www.qoppa.com</text></g></g></svg></svg></g></svg><br>\\n<?xml version='1.0' encoding='UTF-8'?><svg id=\\\"qoppa_document\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" version=\\\"1.1\\\" xmlns=\\\"http://www.w3.org/2000/svg\\\" xmlns:xlink=\\\"http://www.w3.org/1999/xlink\\\"><!-- jPDFWeb v2019R1.03 - Demo Version --><style>title p { display: block; }</style><g id=\\\"qoppa_viewxform\\\" transform=\\\"matrix(1 0 0 1 0 0)\\\"><style type=\\\"text/css\\\">@font-face {font-family:f6-0;src:url(\\\"data:application/font-woff;charset=utf-8;base64,d09GRgABAAAAAAp8AAoAAAAADcAAAQABAAAAAAAAAAAAAAAAAAAAAAAAAABPUy8yAAAA9AAAADcAAABWWd9ZMmNtYXAAAAEsAAAAbAAAAIwCiwM0Z2x5ZgAAAZgAAAdLAAAJ6ArdyapoZWFkAAAI5AAAADEAAAA2GI9khmhoZWEAAAkYAAAAIAAAACQGNwJvaG10eAAACTgAAABeAAAAgDkXBShsb2NhAAAJmAAAAEIAAABCI1gg9G1heHAAAAncAAAAGAAAACAAIwA9bmFtZQAACfQAAAB8AAAA5g9SKYxwb3N0AAAKcAAAAAwAAAAgAAMAAHicY2Bk8mKcwMDKwMDUxbSbARlwMeogc/8DATI/MCDAkUEBCG8y3fyvxxDFdJPhEkwOAMlSDLoAeJxjYGBgZGAGYgYGHgYWhgYgLcMgABThYVBg0GewYnBj8GcIZAhmSGRIZkhjyGQoZ6j8/x+oSoFBFyjriiSbypDBkAOS/f/4//X/Z/8f/r/7/67/O/+v+b/6/6r/K/8v/78MbA9OAAAj1iOqeJxtVktsG9cVnXuHpChTEr/DjyRSHI44/IlUpeGQkvgTbepPkZJlUTQlWVLNWq2h2rHrohsv4iJo4P6SOqmRxIukDYqiWRTtJmgBN0CCBu1CRhZd1E5bdFOgdtuVG7SAAY16Z0gmClAOMPPmzX33nnfueUdigPEzf4QEjDIswwDHy5BQnsJovc7QK9Og+3tMU/2W5gT5vSb91Hnm+DE48VCd5+wS+9HcR27829EgRWNrDRroWxfD2GWJs9LKRrMJP242lQ9a66sUeInWm7SancuK68p5+K5yA3519AQP1/+0/nSdgih+heIlGnZ/Gm8VrCgpN2FF+cUOHtb+sq7cV0OpfuL4E/wzPmTMzBBFO11Ol6HL0CWG6EqntDHNSal0Kk0z8P07W9usbnfv7t3tbYT6xtuXTxcRSzPPXcvnAUslfIjN5i/f2bmA7MUv/fT1y5fLUC7f+db8Aq6svvjCwgKj1Rw9/j0+wUfMIDN5oqb61ArTi6A+qahLpA8G+jDeAhBKq1EqmpSK5m5jk0WfL+Hz+Ya80aAoJKKR9A8IIjQ2X9uanWMxm7k96HSa3S63yxUIBPiwkwPIZvCRbn//JxdmZkdcVktP0eLiBtzdp/Bi890fXrq0DDMzr3/93DnWoDeaTaf0M91Wa38glz17ZW1N63P8+N+4T5yN0QuBEsQ2+vZOQoE20LSzjbq9m/Q4BcB/DInEcm58nGUnJ4vNtbN6Q21j58ZGravRVSisnU4m2e7trYWyLCMuLlz9yuKCEZ7N8Ty43cW009nriMZuXB/7AkxMPW/cCooIPt9M2eOxcpHIxs7YGMjyV1WOReqrHh1MjMmQrlQqCVAXp3IpnCBZ1rikS1YnA7QRvdoL9XK0+i5zxenaQSIBaDDYt7r1OhhNJKbOjcQwl6vFQyEv+PlMjueNoIv4+WhUFNE7OLoXDML1XZ5HiEaXngwT82arxRK22TASmykHg106o7FbjLuc4HInL/ZRPb3VIosODrNZjePg8SfwT7QxfItjFa8GXsV6UqKaIOB7vT6fND88jEP+hsz7DRuWqUztQNXk1OTzSxNpC+xJA/2AqfTGcjbLQnB4wrRNJMLs3IsHy2UdRCKrLW2Kx0+JNydjZAKfVTarIpXG26UFQ7u0yim8g+HwdCESBoMhFpsfDQSs5/vzhfWtuXkdCe3WfLWCIBcjEcRYLDdfH4l7vWOmRljEfOHefqWi1+VzP6f9GqlamjQ1cEJTnMQJdHIFWZLFjnqiRrPZ1s85oNmsVyokigtWj9uGt1hA6O2LT5WUPHxQWuXjCT2yekbj8gzd/kHn3UVKsKbanFHiTstpeM8nhqS1xCjUYdA7nhdFqOOhcszbbQAj8fPKj2Az7vPRVteVv1ImVHMy9zRPU32LgKoJz9Tph4fNLx49I0vr1G7HMZJVogg8PErSfJFhCLKNiWrzXAfVCXSpdtdpmGwNXdZidUAU87IgWAbEYHExHCK8dkc6z/vrDk6a9fpIpQthpxPA7YlEPG7A+Mhp5TtQj/F+xFAorbwPF8PeQWRHR/PKI8JR0rixadxwn+dGaHPzylAonKvSCagD9S4fVLkxLERUJ4kn1pU3YSXj84rBivIHbdPI8HT2uinn5zxVOOGpXOdsqZ7qvZHNqN555WqhAJjJ3FwUxXB4aWVYgHAIbexS+ca3z5yBublvXl1eLmEqtbGblNlsZrmRkluaLR1PooHqOZjhzi7GTxg5iUgduxwtfmUi9lUuGJzYzuVZmMo8N8LzzvrH84EAHYvZJf8Q+P1oKAVIbKXS7YNqRQc2u1fBB5O6YrFSkyRgC/nyYjbTPi+T8LhTWy/I7aKqr0jqzmVJc/DO0aVOwuO6i+dj1zJTmM9dSAeDzpWPV6gkDPnLM8FhCAR+p3hJd7pK9eB2qQQuZ6A0qctkF8v5AguSVKsUiy1tTdOtQbW5k73r/AlRdfMyN9Af8zg4u89iMXMJj4caV4263QBGo2lV9TI2FksrD7W+ATNEnvOA8pGv25NtErs6Qjhh8F3/z+DjSWmvkkxa6jreH40KAqLb4/za3CySo+3WJib6NrqDQXlEGEb9VGY6GwrDC9lwGHm+2pOwO/r6Iv6eXt2gb6i2Go1AKFzvzbvdCA7HWNRitph5P+GzHv8XevG+6hF2zRscbQgaKNWVNK/4Wb1u7uNOdRtNPY4+s308IMD0NN5/t6S8HzxlQgBgqyw90OOpwmLpVotL2vvfiQfNI9RuqXnpwH7a0bT1DXS6StZ0yliv9ofDU3uRKKJB+XWSrN4w0H8TBo6eVUIeD7CSVIFNytlLiR9TTmJ3ACVWYC+//Grjt2c/pFW78NZnHqEjIT2glx4tbgAo1AQCu3P9SmP/G7W3N/e/vPUWrbkEbyjX4KWjZ/CScq2z1nKcgH+1cNO6NtZRaP/TUiAwdnjl/CNOGC5ZTD193b09Jotot5u4D3fuoOHoN7lYDIFl2TUdIthtQxNUaOt/bprEGQB4nGNgZGBgAOL9uy5diOe3+crAzfwCKMJw21zgLIL+r8fMyHQTqI6DgQkkCgBowQuoAAAAeJxjYGRgYLr5X48hitmRgeH/fWZGBqAIClAAAHbABKt4nGNggABGXyAWA9MKQDoKzAbSTLMZ/JmSGQKYuRj0QRjI12XSYVBj/MKgDqTVgWo4gLQzwz0IZnZkcATyXYBYGUqrAc10AKqXB6oVBPKdgGxepksMLEBaAABlFhBuAAAAAAAAAAAAAAAAAA4AGgAoADoAUgBoAKIBAgFUAbQB8AIsAloChAKYAqQC6AMSA0oDiAPGA+4EPgRsBJYEqgTIBPQAAHicY2BkYGBQYLBhYGIAAUYGNAAACboAYXicdcq9CoJgFIfxx+9anRobHCMUoguohq7AIVrEQoMXDROhpWvvD50xObyHH897gIQLAV64BFK9nz05NfssyMwBKzbmUD6ZI/lqjuWRIz1P3gw8aGhVztxxTNqjWk3FQTeO25+fDzv2s71UGXip9XSsKdiSa2buv2bjHPt4nGNgZsALAAB9AAQ=\\\");}@font-face {font-family:f6-1;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f6-2;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}</style><svg id=\\\"qoppa_page_p6\\\" class=\\\"qoppa_page\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\"><rect class=\\\"qoppa_pageborder\\\" x=\\\"0.5pt\\\" y=\\\"0.5pt\\\" width=\\\"611pt\\\" height=\\\"791pt\\\" fill=\\\"none\\\" /><svg class=\\\"qoppa_pagecontents\\\" x=\\\"0pt\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" viewBox=\\\"0 0 612 792\\\" ><g class=\\\"qoppa_contentstream\\\" transform=\\\"matrix(1 0 0 -1 0 792)\\\" fill=\\\"black\\\" stroke=\\\"black\\\" stroke-width=\\\"1\\\" stroke-linecap=\\\"butt\\\" stroke-linejoin=\\\"miter\\\" stroke-miterlimit=\\\"10\\\"><clipPath id=\\\"clip6-1\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 284.4843 735.5809)\\\" x=\\\"0 6.67 11.67 17.23 19.51 25.07 27.35\\\">Exhibit</text></g><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(0.99 0 0 -1 314.4843 735.5809)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 317.4843 735.5809)\\\" x=\\\"0\\\">A</text></g><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 94.4 699.1621)\\\" x=\\\"0 3.2783 9.3398 14.8398 20.9014 23.6816 29.1816\\\">Invoice</text></g><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 129.6432 699.1621)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 132.7994 699.1621)\\\" x=\\\"0\\\">#</text></g><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 138.8609 699.1621)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 142.0172 699.1621)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 142.0172 697.4792 L 142.0172 697.4792 L 145.0172 697.4792 L 145.4339 697.4792 L 145.4339 696.6458 L 145.0172 696.6458 L 142.0172 696.6458 L 141.6005 696.6458 L 141.6005 697.4792 z \\\"/><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 145.1734 699.1621)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 145.1734 697.4792 L 145.1734 697.4792 L 148.1734 697.4792 L 148.5901 697.4792 L 148.5901 696.6458 L 148.1734 696.6458 L 145.1734 696.6458 L 144.7568 696.6458 L 144.7568 697.4792 z \\\"/><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 148.3297 699.1621)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 148.3297 697.4792 L 148.3297 697.4792 L 151.3297 697.4792 L 151.7464 697.4792 L 151.7464 696.6458 L 151.3297 696.6458 L 148.3297 696.6458 L 147.913 696.6458 L 147.913 697.4792 z \\\"/><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 151.4859 699.1621)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 151.4859 697.4792 L 151.4859 697.4792 L 154.4859 697.4792 L 154.9026 697.4792 L 154.9026 696.6458 L 154.4859 696.6458 L 151.4859 696.6458 L 151.0693 696.6458 L 151.0693 697.4792 z \\\"/><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 154.6422 699.1621)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 154.6422 697.4792 L 154.6422 697.4792 L 157.6422 697.4792 L 158.0589 697.4792 L 158.0589 696.6458 L 157.6422 696.6458 L 154.6422 696.6458 L 154.2255 696.6458 L 154.2255 697.4792 z \\\"/><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 157.7984 699.1621)\\\" x=\\\"0\\\">0</text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 157.7984 697.4792 L 157.7984 697.4792 L 163.7984 697.4792 L 164.2151 697.4792 L 164.2151 696.6458 L 163.7984 696.6458 L 157.7984 696.6458 L 157.3818 696.6458 L 157.3818 697.4792 z \\\"/><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 163.86 699.1621)\\\" x=\\\"0\\\">4</text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 163.86 697.4792 L 163.86 697.4792 L 169.86 697.4792 L 170.2766 697.4792 L 170.2766 696.6458 L 169.86 696.6458 L 163.86 696.6458 L 163.4433 696.6458 L 163.4433 697.4792 z \\\"/><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 169.9215 699.1621)\\\" x=\\\"0\\\">1</text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 169.9215 697.4792 L 169.9215 697.4792 L 175.9215 697.4792 L 176.3382 697.4792 L 176.3382 696.6458 L 175.9215 696.6458 L 169.9215 696.6458 L 169.5048 696.6458 L 169.5048 697.4792 z \\\"/><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 175.983 699.1621)\\\" x=\\\"0\\\">2</text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 175.983 697.4792 L 175.983 697.4792 L 181.983 697.4792 L 182.3997 697.4792 L 182.3997 696.6458 L 181.983 696.6458 L 175.983 696.6458 L 175.5663 696.6458 L 175.5663 697.4792 z \\\"/><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 182.0445 699.1621)\\\" x=\\\"0\\\">9</text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 182.0445 697.4792 L 182.0445 697.4792 L 188.0445 697.4792 L 188.4612 697.4792 L 188.4612 696.6458 L 188.0445 696.6458 L 182.0445 696.6458 L 181.6279 696.6458 L 181.6279 697.4792 z \\\"/><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 188.1061 699.1621)\\\" x=\\\"0\\\">9</text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 188.1061 697.4792 L 188.1061 697.4792 L 194.1061 697.4792 L 194.5227 697.4792 L 194.5227 696.6458 L 194.1061 696.6458 L 188.1061 696.6458 L 187.6894 696.6458 L 187.6894 697.4792 z \\\"/><clipPath id=\\\"clip6-2\\\"><path d=\\\"M 71 551 L 537 551 L 537 572 L 71 572 L 71 551 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 286.9417 561.1477)\\\" x=\\\"0 6.003 9 14.004 19.008 24.012 28.512 31.014\\\">Products</text></g><clipPath id=\\\"clip6-3\\\"><path d=\\\"M 71 531 L 165 531 L 165 552 L 71 552 L 71 531 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 106.4173 541.1477)\\\" x=\\\"0 7.497 12.501 17.505 22.509\\\">Model</text></g><clipPath id=\\\"clip6-4\\\"><path d=\\\"M 164 531 L 258 531 L 258 552 L 164 552 L 164 531 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-4)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 189.1385 541.1477)\\\" x=\\\"0 6.498 11.502 16.002 20.502 23.499 25.551 30.555 33.057 35.109 40.113\\\">Description</text></g><clipPath id=\\\"clip6-5\\\"><path d=\\\"M 257 531 L 351 531 L 351 552 L 257 552 L 257 531 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-5)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 297.6995 541.1477)\\\" x=\\\"0 7.002 9.504\\\">Qty</text></g><clipPath id=\\\"clip6-6\\\"><path d=\\\"M 350 531 L 444 531 L 444 552 L 350 552 L 350 531 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-6)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 387.4212 541.1477)\\\" x=\\\"0 6.003 9 11.052 15.552\\\">Price</text></g><clipPath id=\\\"clip6-7\\\"><path d=\\\"M 443 531 L 537 531 L 537 552 L 443 552 L 443 531 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-7)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 460.2107 541.1477)\\\" x=\\\"0 6.003 10.503 13.005 18.009 23.013 28.017 33.021 38.025 40.419 46.422 49.419 51.471 55.971\\\">Extended Price</text></g><clipPath id=\\\"clip6-8\\\"><path d=\\\"M 164 511 L 258 511 L 258 532 L 164 532 L 164 511 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 178.6472 522.0696)\\\" x=\\\"0 5.336 9.784 12.448 16.448 18.272 22.272 26.72 30.72 32.848 37.296 41.744 46.192 48.32 53.208 57.656 62.104\\\">Services and Fees</text></g><clipPath id=\\\"clip6-9\\\"><path d=\\\"M 257 511 L 351 511 L 351 532 L 257 532 L 257 511 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 302.4754 522.0696)\\\" x=\\\"0\\\">1</text></g><clipPath id=\\\"clip6-10\\\"><path d=\\\"M 350 511 L 444 511 L 444 532 L 350 532 L 350 511 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 378.8426 522.0696)\\\" x=\\\"0 4.448 6.576 11.024 13.248 17.696 22.144 26.592 28.816 33.264\\\">$ 3,784.97</text></g><clipPath id=\\\"clip6-11\\\"><path d=\\\"M 443 511 L 537 511 L 537 532 L 443 532 L 443 511 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 471.8426 522.0696)\\\" x=\\\"0 4.448 6.576 11.024 13.248 17.696 22.144 26.592 28.816 33.264\\\">$ 3,784.97</text></g><clipPath id=\\\"clip6-12\\\"><path d=\\\"M 164 491 L 258 491 L 258 512 L 164 512 L 164 491 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 196.364 502.0696)\\\" x=\\\"0 6.664 11.112 13.336 15.56 18.224 22.672 26.672\\\">Mattress</text></g><clipPath id=\\\"clip6-13\\\"><path d=\\\"M 257 491 L 351 491 L 351 512 L 257 512 L 257 491 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-13)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 302.4754 502.0696)\\\" x=\\\"0\\\">1</text></g><clipPath id=\\\"clip6-14\\\"><path d=\\\"M 350 491 L 444 491 L 444 512 L 350 512 L 350 491 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-14)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 386.6277 502.0696)\\\" x=\\\"0 4.448 6.576 11.024 13.248 17.696\\\">$ 1.00</text></g><clipPath id=\\\"clip6-15\\\"><path d=\\\"M 443 491 L 537 491 L 537 512 L 443 512 L 443 491 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 479.6277 502.0696)\\\" x=\\\"0 4.448 6.576 11.024 13.248 17.696\\\">$ 1.00</text></g><clipPath id=\\\"clip6-16\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 71.2 572.4446 L 537.2 572.4446 L 537.2 571.4446 L 71.2 571.4446 L 71.2 572.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 536.2 571.4446 L 537.2 571.4446 L 537.2 552.4446 L 536.2 552.4446 L 536.2 571.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 71.2 571.4446 L 72.2 571.4446 L 72.2 552.4446 L 71.2 552.4446 L 71.2 571.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 71.2 552.4446 L 165.2 552.4446 L 165.2 551.4446 L 71.2 551.4446 L 71.2 552.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 71.2 551.4446 L 72.2 551.4446 L 72.2 532.4446 L 71.2 532.4446 L 71.2 551.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 165.2 552.4446 L 258.2 552.4446 L 258.2 551.4446 L 165.2 551.4446 L 165.2 552.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 164.2 551.4446 L 165.2 551.4446 L 165.2 532.4446 L 164.2 532.4446 L 164.2 551.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 258.2 552.4446 L 351.2 552.4446 L 351.2 551.4446 L 258.2 551.4446 L 258.2 552.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 257.2 551.4446 L 258.2 551.4446 L 258.2 532.4446 L 257.2 532.4446 L 257.2 551.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 351.2 552.4446 L 444.2 552.4446 L 444.2 551.4446 L 351.2 551.4446 L 351.2 552.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 350.2 551.4446 L 351.2 551.4446 L 351.2 532.4446 L 350.2 532.4446 L 350.2 551.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 444.2 552.4446 L 537.2 552.4446 L 537.2 551.4446 L 444.2 551.4446 L 444.2 552.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 536.2 551.4446 L 537.2 551.4446 L 537.2 532.4446 L 536.2 532.4446 L 536.2 551.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 443.2 551.4446 L 444.2 551.4446 L 444.2 532.4446 L 443.2 532.4446 L 443.2 551.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 71.2 532.4446 L 165.2 532.4446 L 165.2 531.4446 L 71.2 531.4446 L 71.2 532.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 71.2 531.4446 L 72.2 531.4446 L 72.2 512.4446 L 71.2 512.4446 L 71.2 531.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 165.2 532.4446 L 258.2 532.4446 L 258.2 531.4446 L 165.2 531.4446 L 165.2 532.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 164.2 531.4446 L 165.2 531.4446 L 165.2 512.4446 L 164.2 512.4446 L 164.2 531.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 258.2 532.4446 L 351.2 532.4446 L 351.2 531.4446 L 258.2 531.4446 L 258.2 532.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 257.2 531.4446 L 258.2 531.4446 L 258.2 512.4446 L 257.2 512.4446 L 257.2 531.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 351.2 532.4446 L 444.2 532.4446 L 444.2 531.4446 L 351.2 531.4446 L 351.2 532.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 350.2 531.4446 L 351.2 531.4446 L 351.2 512.4446 L 350.2 512.4446 L 350.2 531.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 444.2 532.4446 L 537.2 532.4446 L 537.2 531.4446 L 444.2 531.4446 L 444.2 532.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 536.2 531.4446 L 537.2 531.4446 L 537.2 512.4446 L 536.2 512.4446 L 536.2 531.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 443.2 531.4446 L 444.2 531.4446 L 444.2 512.4446 L 443.2 512.4446 L 443.2 531.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 71.2 512.4446 L 165.2 512.4446 L 165.2 511.4446 L 71.2 511.4446 L 71.2 512.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 71.2 492.4446 L 165.2 492.4446 L 165.2 491.4446 L 71.2 491.4446 L 71.2 492.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 71.2 511.4446 L 72.2 511.4446 L 72.2 492.4446 L 71.2 492.4446 L 71.2 511.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 165.2 512.4446 L 258.2 512.4446 L 258.2 511.4446 L 165.2 511.4446 L 165.2 512.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 165.2 492.4446 L 258.2 492.4446 L 258.2 491.4446 L 165.2 491.4446 L 165.2 492.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 164.2 511.4446 L 165.2 511.4446 L 165.2 492.4446 L 164.2 492.4446 L 164.2 511.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 258.2 512.4446 L 351.2 512.4446 L 351.2 511.4446 L 258.2 511.4446 L 258.2 512.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 258.2 492.4446 L 351.2 492.4446 L 351.2 491.4446 L 258.2 491.4446 L 258.2 492.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 257.2 511.4446 L 258.2 511.4446 L 258.2 492.4446 L 257.2 492.4446 L 257.2 511.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 351.2 512.4446 L 444.2 512.4446 L 444.2 511.4446 L 351.2 511.4446 L 351.2 512.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 351.2 492.4446 L 444.2 492.4446 L 444.2 491.4446 L 351.2 491.4446 L 351.2 492.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 350.2 511.4446 L 351.2 511.4446 L 351.2 492.4446 L 350.2 492.4446 L 350.2 511.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 444.2 512.4446 L 537.2 512.4446 L 537.2 511.4446 L 444.2 511.4446 L 444.2 512.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 444.2 492.4446 L 537.2 492.4446 L 537.2 491.4446 L 444.2 491.4446 L 444.2 492.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 536.2 511.4446 L 537.2 511.4446 L 537.2 492.4446 L 536.2 492.4446 L 536.2 511.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 443.2 511.4446 L 444.2 511.4446 L 444.2 492.4446 L 443.2 492.4446 L 443.2 511.4446 z \\\"/><clipPath id=\\\"clip6-17\\\"><path d=\\\"M 264 464 L 404 464 L 404 478 L 264 478 L 264 464 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-17)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.9359 468.3239)\\\" x=\\\"0 5.336 9.784 14.232 16.36 21.248 25.696 27.92 32.368 34.192\\\">Sub Total:</text></g><clipPath id=\\\"clip6-18\\\"><path d=\\\"M 403 464 L 535 464 L 535 478 L 403 478 L 403 464 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.55 468.3239)\\\" x=\\\"0 4.448 6.576 11.024 13.248 17.696 22.144 26.592 28.816 33.264\\\">$ 3,785.97</text></g><clipPath id=\\\"clip6-19\\\"><path d=\\\"M 264 451 L 404 451 L 404 465 L 264 465 L 264 451 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-19)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 358.6078 454.8239)\\\" x=\\\"0 5.336 9.784 11.608 16.056 20.056 22.184 27.072 31.52 35.52\\\">Sales Tax:</text></g><clipPath id=\\\"clip6-20\\\"><path d=\\\"M 403 451 L 535 451 L 535 465 L 403 465 L 403 451 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-20)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.55 454.8239)\\\" x=\\\"0 4.448 6.576 11.024 15.472 17.696 22.144\\\">$ 86.03</text></g><clipPath id=\\\"clip6-21\\\"><path d=\\\"M 264 437 L 404 437 L 404 452 L 264 452 L 264 437 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.7758 441.3239)\\\" x=\\\"0 4.888 9.336 11.56 16.008 17.832 19.96 22.184 26.632 30.632 35.08 36.904 40.904 45.352\\\">Total Invoice:</text></g><clipPath id=\\\"clip6-22\\\"><path d=\\\"M 403 437 L 535 437 L 535 452 L 403 452 L 403 437 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-22)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.55 441.3239)\\\" x=\\\"0 4.448 6.576 11.024 13.248 17.696 22.144 26.592 28.816 33.264\\\">$ 3,872.00</text></g><clipPath id=\\\"clip6-23\\\"><path d=\\\"M 264 424 L 404 424 L 404 438 L 264 438 L 264 424 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-23)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 284.3578 427.8239)\\\" x=\\\"0 5.336 12 14.224 16.352 22.128 26.576 31.024 33.152 38.04 42.488 46.936 51.384 55.384 57.512 60.176 65.952 68.176 72.624 74.752 80.088 82.752 87.2 91.2 93.328 98.216 102.664 107.112 109.776\\\">Amt Due Today (w/o Proc Fee):</text></g><clipPath id=\\\"clip6-24\\\"><path d=\\\"M 403 424 L 535 424 L 535 438 L 403 438 L 403 424 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.55 427.8239)\\\" x=\\\"0 4.448 6.576 11.024 13.248 17.696 22.144 26.592 28.816 33.264\\\">$ 3,784.30</text></g><clipPath id=\\\"clip6-25\\\"><path d=\\\"M 264 410 L 404 410 L 404 425 L 264 425 L 264 410 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-25)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.4242 414.3239)\\\" x=\\\"0 5.336 9.784 14.232 16.056 18.184 23.96 28.408 32.408 34.632 36.76 42.536 46.984 50.984 55.432 57.56 62.896 67.344 69.472 74.36 78.808 83.256 87.704 91.704\\\">Addl Cust Cash Pd Today:</text></g><clipPath id=\\\"clip6-26\\\"><path d=\\\"M 403 410 L 535 410 L 535 425 L 403 425 L 403 410 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-26)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.55 414.3239)\\\" x=\\\"0 4.448 6.576 11.024 13.248 17.696\\\">$ 0.00</text></g><clipPath id=\\\"clip6-27\\\"><path d=\\\"M 264 397 L 404 397 L 404 411 L 264 411 L 264 397 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 333.8422 400.8239)\\\" x=\\\"0 5.336 9.784 14.232 18.68 20.808 26.584 31.032 35.032 39.48 41.608 47.384 51.384 55.832 60.28\\\">Snap Cash Used:</text></g><clipPath id=\\\"clip6-28\\\"><path d=\\\"M 403 397 L 535 397 L 535 411 L 403 411 L 403 397 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.55 400.8239)\\\" x=\\\"0 4.448 6.576 11.024 15.472 17.696 22.144\\\">$ 87.70</text></g><clipPath id=\\\"clip6-29\\\"><path d=\\\"M 264 383 L 404 383 L 404 398 L 264 398 L 264 383 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-29)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 274.8227 387.3239)\\\" x=\\\"0 5.336 8 12.448 16.448 18.576 23.464 27.912 32.36 34.488 40.264 44.712 46.536 48.36 52.808 56.808 59.032 63.48 67.928 70.056 72.72 77.168 81.168 83.296 89.96 94.408 97.072 101.072 105.52 109.968 114.416 116.64 119.304\\\">Proc Fee Collected (by Merchant):</text></g><clipPath id=\\\"clip6-30\\\"><path d=\\\"M 403 383 L 535 383 L 535 398 L 403 398 L 403 383 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.55 387.3239)\\\" x=\\\"0 4.448 6.576 11.024 13.248 17.696\\\">$ 0.00</text></g><clipPath id=\\\"clip6-31\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip6-31)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 403.55 464.9489 L 534.3 464.9489 L 534.3 464.4489 L 403.55 464.4489 L 403.55 464.9489 z \\\"/><path clip-path=\\\"url(#clip6-31)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 403.55 451.4489 L 534.3 451.4489 L 534.3 450.9489 L 403.55 450.9489 L 403.55 451.4489 z \\\"/><path clip-path=\\\"url(#clip6-31)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 403.55 437.9489 L 534.3 437.9489 L 534.3 437.4489 L 403.55 437.4489 L 403.55 437.9489 z \\\"/><path clip-path=\\\"url(#clip6-31)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 403.55 424.4489 L 534.3 424.4489 L 534.3 423.9489 L 403.55 423.9489 L 403.55 424.4489 z \\\"/><path clip-path=\\\"url(#clip6-31)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 403.55 410.9489 L 534.3 410.9489 L 534.3 410.4489 L 403.55 410.4489 L 403.55 410.9489 z \\\"/><path clip-path=\\\"url(#clip6-31)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 403.55 397.4489 L 534.3 397.4489 L 534.3 396.9489 L 403.55 396.9489 L 403.55 397.4489 z \\\"/><path clip-path=\\\"url(#clip6-31)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 403.55 383.9489 L 534.3 383.9489 L 534.3 383.4489 L 403.55 383.4489 L 403.55 383.9489 z \\\"/><g clip-path=\\\"url(#clip6-31)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 36.5264)\\\" x=\\\"0 6.498 11.997 14.391 16.785 21.789 26.793 29.295 34.299 39.303 44.307 504 506.3906 508.7812 511.1719 513.5625 515.9531 518.3438 520.7344 523.125 525.5156\\\">UT  07/2019          </text></g><g clip-path=\\\"url(#clip6-31)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 26.3398)\\\" x=\\\"0 6.003 11.007 16.011 21.015\\\">Page </text></g><g clip-path=\\\"url(#clip6-31)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 55.8097 26.3398)\\\" x=\\\"0\\\">7</text></g><g clip-path=\\\"url(#clip6-31)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.815 26.3398)\\\" x=\\\"0 2.394 7.398 9.9\\\"> of </text></g><g clip-path=\\\"url(#clip6-31)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 73.1021 26.3398)\\\" x=\\\"0\\\">7</text></g><g clip-path=\\\"url(#clip6-31)\\\"><text stroke=\\\"none\\\" fill=\\\"#d9d9d9\\\" style=\\\"font-family:f6-0; font-size:54pt; white-space:pre\\\" transform=\\\"matrix(0.707 0.707 0.707 -0.707 135.6027 198.5094)\\\" x=\\\"0 56.016 96.048 136.08 176.112 216.144 236.16 284.184 324.216 344.232 364.248 416.232 456.264 480.24\\\">Qoppa Software</text></g><g clip-path=\\\"url(#clip6-31)\\\"><text stroke=\\\"none\\\" fill=\\\"#002ba6\\\" style=\\\"font-family:f6-0; font-size:9pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.932 772)\\\" x=\\\"0 9.336 16.008 22.68 29.352 36.024 39.36 47.364 54.036 57.372 60.708 69.372 76.044 80.04 86.712 90.048 94.044 97.38 104.712 111.384 115.38 118.716 126.72 132.72 139.392 142.056 148.728 155.4 158.736 161.4 168.072 174.744 178.08 187.416 194.088 196.752 202.752 206.088 210.084 213.42 220.092 223.428 226.764 233.436 239.436 242.772 246.108 249.444 258.108 266.772 275.436 278.772 285.444 292.116 298.788 305.46 312.132 315.468 321.468 328.14\\\">Qoppa Software - For Evaluation Only - https://www.qoppa.com</text></g></g></svg></svg></g></svg><br>\\n</body> \\n </html>\\n\"\n        }\n    },\n    \"success\": true,\n    \"status\": 200\n}"},{"id":"c47baaa3-4178-4967-a903-db9902e340c1","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Content-Type","value":"application/json"},{"key":"Request-Id","value":"123"}],"url":{"raw":"{{baseUrl}}/platform/v1/application/{{applicationId}}/agreement?renderType=html&document=agreement","host":["{{baseUrl}}"],"path":["platform","v1","application","{{applicationId}}","agreement"],"query":[{"key":"renderType","value":"html"},{"key":"document","value":"agreement"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1825083"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:24:43 GMT"},{"key":"x-amzn-RequestId","value":"40b52282-2a30-4df6-8cdf-82aa447ca6b3"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P02OxEfnPHcF9yw="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d0c4-8b923ff4b1bf11f48fb3b3b8"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"OcTSGzIIqa3esIfeYqbdx2iywfRfpBgLnbSAPl3aJcuDg_Vl84kX2A=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"agreementInformation\": {\n            \"applicationId\": \"{{applicationId}}\",\n            \"customerInformation\": {\n                \"dobDate\": \"1977-07-07\",\n                \"customerId\": \"000007777\",\n                \"customerIdType\": \"SSN4\",\n                \"mobilePhone\": \"1000000019\",\n                \"mobilePhoneCountry\": \"US\",\n                \"email\": \"test@test.com\",\n                \"firstName\": \"John\",\n                \"lastName\": \"Smith\",\n                \"billingAddress\": {\n                    \"streetAddress\": \"123mainst\",\n                    \"city\": \"Saltlakecity\",\n                    \"state\": \"UT\",\n                    \"country\": \"US\",\n                    \"postalCode\": \"84001\"\n                }\n            },\n            \"snapFinanceInformation\": {\n                \"businessName\": \"Snap RTO LLC\",\n                \"snapAddress\": {\n                    \"streetAddress\": \"Any street in town\",\n                    \"city\": \"Salt Lake City\",\n                    \"state\": \"UT\",\n                    \"country\": \"US\",\n                    \"postalCode\": \"84126\"\n                },\n                \"email\": \"test@test.com\",\n                \"phoneNumber\": \"1000000007\",\n                \"phoneNumberCode\": \"US\"\n            },\n            \"agreementDetails\": \"<!DOCTYPE html>\\n<html>\\n\\t<head>\\n\\t\\t<meta charset=\\\"utf-8\\\">\\n\\t\\t<style type=\\\"text/css\\\">\\n\\t\\t\\tbody {background-color:lightgray; text-align:center;}\\n\\t\\t\\t.qoppa_pageborder {fill:white;}\\n\\t\\t\\t#qoppa_document {padding:5px; margin:auto;}\\n\\t\\t</style>\\n\\t</head>\\n\\t<body>\\n<?xml version='1.0' encoding='UTF-8'?><svg id=\\\"qoppa_document\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" version=\\\"1.1\\\" xmlns=\\\"http://www.w3.org/2000/svg\\\" xmlns:xlink=\\\"http://www.w3.org/1999/xlink\\\"><!-- jPDFWeb v2019R1.03 - Demo Version --><style>title p { display: block; }</style><g id=\\\"qoppa_viewxform\\\" transform=\\\"matrix(1 0 0 1 0 0)\\\"><style type=\\\"text/css\\\">@font-face {font-family:f0-0;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f0-1;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f0-2;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}</style><svg id=\\\"qoppa_page_p0\\\" class=\\\"qoppa_page\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\"><rect class=\\\"qoppa_pageborder\\\" x=\\\"0.5pt\\\" y=\\\"0.5pt\\\" width=\\\"611pt\\\" height=\\\"791pt\\\" fill=\\\"none\\\" /><svg class=\\\"qoppa_pagecontents\\\" x=\\\"0pt\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" viewBox=\\\"0 0 612 792\\\" ><g class=\\\"qoppa_contentstream\\\" transform=\\\"matrix(1 0 0 -1 0 792)\\\" fill=\\\"black\\\" stroke=\\\"black\\\" stroke-width=\\\"1\\\" stroke-linecap=\\\"butt\\\" stroke-linejoin=\\\"miter\\\" stroke-miterlimit=\\\"10\\\"><clipPath id=\\\"clip0-1\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><g clip-path=\\\"url(#clip0-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:8.25pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 213.8098 759.5594)\\\" x=\\\"0 7.942 15.279 23.221 29.942 37.279 43.395 47.058 54.395 62.337 70.279 78.221 86.163 93.5 100.837 108.174 111.1 118.437 126.995 134.937 142.274 149.611 158.774 166.111 174.053\\\">RENTAL-PURCHASE AGREEMENT</text></g><clipPath id=\\\"clip0-2\\\"><path d=\\\"M 35 701 L 285 701 L 285 758 L 35 758 L 35 701 z \\\"/></clipPath><g clip-path=\\\"url(#clip0-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 745.5311)\\\" x=\\\"0 5.56 11.12 16.68 21.68 27.24 29.9 37.12 42.68 51.01 56.57 62.13 67.69 72.69 75.35 78.68 84.24 89.8 94.8 99.8 105.36 108.69 112.02 114.8 117.46 124.13 131.35 138.02 144.69 147.35 154.57 160.68 168.46 171.12 176.68 182.24\\\">Lease Company (Lessor): SNAP RTO LLC</text></g><g clip-path=\\\"url(#clip0-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 732.2127)\\\" x=\\\"0 6.67 9.45 17.23 20.01 22.67 29.34 34.9 39.9 42.56 48.12 53.68 59.24 64.8\\\">P.O. Box 26561</text></g><g clip-path=\\\"url(#clip0-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 718.8943)\\\" x=\\\"0 6.67 12.23 14.51 17.29 19.95 25.51 31.07 36.07 41.63 44.29 51.51 53.79 56.57 61.57 64.35 67.01 74.23 80.34 83 88.56 94.12 99.68 105.24\\\">Salt Lake City, UT 84126</text></g><g clip-path=\\\"url(#clip0-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 705.576)\\\" x=\\\"0 6.67 12.23 17.79 23.35 28.91 31.69 34.35 37.68 43.24 48.8 54.36 57.69 60.35 65.91 71.47 77.03 80.36 85.92 91.48 97.04\\\">Phone: (877) 557-3769</text></g><clipPath id=\\\"clip0-3\\\"><path d=\\\"M 284 701 L 574 701 L 574 758 L 284 758 L 284 701 z \\\"/></clipPath><g clip-path=\\\"url(#clip0-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.225 745.5311)\\\" x=\\\"0 5.56 11.12 16.12 21.12 26.68 32.24 35.02 37.68 42.68 48.24 53.8 59.36 62.02 64.68 71.35 79.68 81.96 84.74\\\">Lessee: John  Smith</text></g><g clip-path=\\\"url(#clip0-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 290.225 732.2127)\\\" x=\\\"0 5.56 11.12 16.68 25.01 30.57 32.85 38.41 43.41\\\">123mainst</text></g><g clip-path=\\\"url(#clip0-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.225 718.8943)\\\" x=\\\"0 6.67 12.23 14.51 17.29 19.57 25.13 30.13 35.69 40.69 42.97 45.75 50.75 53.53 56.19 63.41 69.52 72.18 77.74 83.3 88.86 94.42\\\">Saltlakecity, UT 84001</text></g><g clip-path=\\\"url(#clip0-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 290.225 705.576)\\\" x=\\\"0 2.28 7.84 13.4 15.68 21.24 26.8 32.36 37.36 47.51 53.07 58.07 66.4 71.96 74.74 79.74 85.3\\\">jbolanos@acme.com</text></g><clipPath id=\\\"clip0-4\\\"><path d=\\\"M 35 674 L 285 674 L 285 702 L 35 702 L 35 674 z \\\"/></clipPath><g clip-path=\\\"url(#clip0-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 689.7576)\\\" x=\\\"0 6.67 12.23 17.79 20.07 22.35 27.35 32.91 35.69 37.97 43.53 49.09 51.75 54.53 61.75 64.53 67.19 72.75 78.31 83.87 89.43 94.99 100.55 106.11 111.67 117.23 126.67 133.89\\\">Application ID: 200717000WUT</text></g><clipPath id=\\\"clip0-5\\\"><path d=\\\"M 284 674 L 428 674 L 428 702 L 284 702 L 284 674 z \\\"/></clipPath><g clip-path=\\\"url(#clip0-5)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.225 689.7576)\\\" x=\\\"0 5.56 11.12 16.68 21.68 27.24 29.9 37.12 42.68 45.46 51.02 53.8 56.46 62.02 67.58 70.36 75.92 81.48 84.26 89.82 95.38 100.94\\\">Lease Date: 07/17/2020</text></g><g clip-path=\\\"url(#clip0-5)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.225 678.4393)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 27.68 34.35\\\">10:22 AM</text></g><clipPath id=\\\"clip0-6\\\"><path d=\\\"M 427 674 L 574 674 L 574 702 L 427 702 L 427 674 z \\\"/></clipPath><g clip-path=\\\"url(#clip0-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 433.375 689.7576)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79 40.45 47.67 53.23 58.79 64.35 66.63 69.41 71.69 77.25 82.81 85.59 88.25 95.47 101.03\\\">Property Condition: New</text></g><clipPath id=\\\"clip0-7\\\"><path d=\\\"M 35 631 L 574 631 L 574 675 L 35 675 L 35 631 z \\\"/></clipPath><g clip-path=\\\"url(#clip0-7)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 662.6209)\\\" x=\\\"0 7.22 12.78 17.78 22.78 26.11 28.39 33.95 36.73 39.01 44.57 50.13 52.79 58.35 61.13 63.79 69.35 74.91 80.47 86.03 91.03 93.69 99.25 104.81 107.09 112.65 118.21 120.87 126.43 131.99 135.32 140.32 145.88 151.44 156.44 162 167.56 170.22 173 176.33 181.89 190.22 192.88 195.66 201.22 206.78 209.44 216.66 222.22 225 230.56 232.84 235.12 240.68 244.01 246.67 250 252.78 258.34 263.9 266.56 269.89 276.56 279.89 285.45 291.01 296.57 299.9 302.68 307.68 311.01 314.34 317 319.78 325.34 328.67 331.45 337.01 342.57 345.9 348.56 354.12 359.12 364.68 366.96 372.52 374.8 380.36 385.92 391.48 394.14 396.42 401.98 404.64 411.31 416.31 421.87 424.15 429.71 431.99 434.77 437.43 444.1\\\">Description of goods being purchased from th* D E M O *(the “Property”) further explained in Exhibit A:</text></g><g clip-path=\\\"url(#clip0-7)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 649.3025)\\\" x=\\\"0 6.67 12.23 15.56 20.56 22.84 27.84 33.4 38.4 41.06 46.62 52.18 57.74 60.4 66.51 72.07 77.63 82.63 85.41 88.07 96.4 101.96 104.74 107.52 110.85 116.41 121.41\\\">Services and Fees, Mattress</text></g><clipPath id=\\\"clip0-8\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.025 757.4998 L 285.075 757.4998 L 285.075 756.9998 L 35.025 756.9998 L 35.025 757.4998 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.025 756.9998 L 35.525 756.9998 L 35.525 701.7264 L 35.025 701.7264 L 35.025 756.9998 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 285.075 757.4998 L 573.375 757.4998 L 573.375 756.9998 L 285.075 756.9998 L 285.075 757.4998 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.875 756.9998 L 573.375 756.9998 L 573.375 701.7264 L 572.875 701.7264 L 572.875 756.9998 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 284.575 756.9998 L 285.075 756.9998 L 285.075 701.7264 L 284.575 701.7264 L 284.575 756.9998 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.025 701.7264 L 285.075 701.7264 L 285.075 701.2264 L 35.025 701.2264 L 35.025 701.7264 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.025 701.2264 L 35.525 701.2264 L 35.525 674.5897 L 35.025 674.5897 L 35.025 701.2264 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 285.075 701.7264 L 428.225 701.7264 L 428.225 701.2264 L 285.075 701.2264 L 285.075 701.7264 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 284.575 701.2264 L 285.075 701.2264 L 285.075 674.5897 L 284.575 674.5897 L 284.575 701.2264 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 428.225 701.7264 L 573.375 701.7264 L 573.375 701.2264 L 428.225 701.2264 L 428.225 701.7264 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.875 701.2264 L 573.375 701.2264 L 573.375 674.5897 L 572.875 674.5897 L 572.875 701.2264 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 427.725 701.2264 L 428.225 701.2264 L 428.225 674.5897 L 427.725 674.5897 L 427.725 701.2264 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.025 674.5897 L 573.375 674.5897 L 573.375 674.0897 L 35.025 674.0897 L 35.025 674.5897 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.025 632.1346 L 573.375 632.1346 L 573.375 631.6346 L 35.025 631.6346 L 35.025 632.1346 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.875 674.0897 L 573.375 674.0897 L 573.375 632.1346 L 572.875 632.1346 L 572.875 674.0897 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.025 674.0897 L 35.525 674.0897 L 35.525 632.1346 L 35.025 632.1346 L 35.025 674.0897 z \\\"/><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 620.1658)\\\" x=\\\"0 6.11 13.89 21.11 29.44 36.11 42.22 45 52.78\\\">FORMATION</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 93.0951 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 97.0295 620.1658)\\\" x=\\\"0 7.78\\\">OF</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 110.9162 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 114.8506 620.1658)\\\" x=\\\"0 6.67 14.45 21.67 28.34 35.01 43.34 50.01 57.23 63.34\\\">AGREEMENT.</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 180.9688 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 184.9032 620.1658)\\\" x=\\\"0 6.67\\\">By</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 196.5731 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 200.5075 620.1658)\\\" x=\\\"0 5 7.28 12.84 18.4 20.68 26.24\\\">signing</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 232.3141 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 236.2485 620.1658)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 251.8686 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 255.803 620.1658)\\\" x=\\\"0 7.22 12.78 18.34 21.12 26.68 28.96 32.29 38.96 44.52 47.85 52.85 58.41 63.97 68.97\\\">Rental-Purchase</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 330.344 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 334.2784 620.1658)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement,</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 385.9727 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 389.9071 620.1658)\\\" x=\\\"0 5.56 7.84 12.84\\\">also</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 408.3105 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 412.2448 620.1658)\\\" x=\\\"0 5 10.56 16.12 23.34\\\">known</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 441.1511 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 445.0855 620.1658)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 455.647 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 459.5814 620.1658)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 465.1429 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 469.0773 620.1658)\\\" x=\\\"0 5.56 11.12 16.68 21.68\\\">Lease</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 496.3234 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 500.2578 620.1658)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.1738 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.1082 620.1658)\\\" x=\\\"0 7.22 9.5 12.28\\\">with</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 608.8475)\\\" x=\\\"0 7.78 13.34 16.12 18.4 23.96\\\">Option</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 62.6215 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 66.5575 608.8475)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 74.8974 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 78.8334 608.8475)\\\" x=\\\"0 6.67 12.23 15.56 20.56 26.12 31.68 36.68\\\">Purchase</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 121.0795 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 125.0155 608.8475)\\\" x=\\\"0 3.33 6.11 11.67 13.95\\\">(this</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 143.9657 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 147.9017 608.8475)\\\" x=\\\"0 3.33 10 15.56 18.89 24.45 30.01 38.34 43.9 49.46 52.24 55.57 58.9\\\">“Agreement”),</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.5863 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 213.5223 608.8475)\\\" x=\\\"0 5 10.56 16.12\\\">you,</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 232.4237 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 236.3597 608.8475)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 250.2611 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 254.1971 608.8475)\\\" x=\\\"0 7.22 12.78 17.78 20.56 26.12 34.45 40.01 43.34 46.67 51.67\\\">Customer(s)</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 309.202 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 313.138 608.8475)\\\" x=\\\"0 3.33 6.66 11.66 17.22 22.78\\\">(“you”</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 339.2513 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 343.1873 608.8475)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.8719 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 363.8079 608.8475)\\\" x=\\\"0 3.33 8.33 13.89 19.45 22.78 26.11\\\">“your”)</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.2513 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 397.1873 608.8475)\\\" x=\\\"0 5 10.56 16.12 21.68 26.68\\\">choose</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 429.4334 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 433.3695 608.8475)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 441.7093 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 445.6453 608.8475)\\\" x=\\\"0 2.28 7.84 13.4 18.4\\\">lease</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 469.6102 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 473.5462 608.8475)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 487.4476 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 491.3836 608.8475)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.1766 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 533.1126 608.8475)\\\" x=\\\"0 2.78 6.11 11.67\\\">from</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.1126 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0486 608.8475)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 597.5291)\\\" x=\\\"0 5.56 11.12 16.68 21.68\\\">Lease</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.3461 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 63.7235 597.5291)\\\" x=\\\"0 7.22 12.78 21.11 26.67 32.23 37.79\\\">Company</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 106.5213 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 109.8987 597.5291)\\\" x=\\\"0 3.33 6.66 13.88 19.44 22.22\\\">(“we,”</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 135.4505 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 138.8278 597.5291)\\\" x=\\\"0 3.33 8.89 13.89 16.67\\\">“us,”</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 158.8278 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 162.2052 597.5291)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 178.8898 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 182.2672 597.5291)\\\" x=\\\"0 3.33 8.89 14.45 17.78 21.11\\\">“our”)</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 206.7105 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.0879 597.5291)\\\" x=\\\"0 5.56 10.56 15.56 21.12 24.45 30.01 32.29 37.85\\\">according</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 253.5059 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 256.8832 597.5291)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 265.2231 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 268.6005 597.5291)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 282.5018 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 285.8792 597.5291)\\\" x=\\\"0 2.78 8.34 11.67 20\\\">terms</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 310.8792 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 314.2566 597.5291)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 322.5964 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 325.9738 597.5291)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 341.5939 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 344.9713 597.5291)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement.</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 396.6656 597.5291)\\\" x=\\\"0 3.3774\\\">  </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 403.4204 597.5291)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 420.6518 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 424.0292 597.5291)\\\" x=\\\"0 2.78 8.34 11.67\\\">term</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 444.0292 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 447.4066 597.5291)\\\" x=\\\"0 3.33 10.55 16.11 18.89 24.45 26.73 29.01 34.57 37.9\\\">“Retailer”</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 488.6419 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 492.0193 597.5291)\\\" x=\\\"0 8.33 13.89 19.45 25.01 30.01 36.68 42.24 47.8 52.8 57.8 61.13 67.8 73.36\\\">meansEbaycrYou</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 586.2107)\\\" x=\\\"0 5.56 11.12 16.12 21.68 24.34 27.12 32.68 38.24 40.9 44.23 46.51 52.07 57.63 60.41 63.19 65.85 71.41 76.97 79.75 82.41 87.97 93.53 96.31 98.97 101.75 107.31 112.87 115.53 121.09 126.65 128.93 131.21 136.77 142.33 145.11 147.39 152.95 158.51 161.29 163.95 166.73 172.29 174.95 180.51 185.51 191.07 196.63 198.91 202.24 207.8 210.46 216.02 223.24 228.8 234.36 237.69 242.69 248.25 250.53 256.09 258.75 264.31 267.09 269.75 272.53 278.09 283.65 286.31 292.98 296.31 301.87 307.43 312.99 316.32 319.1 324.1 326.76 332.32 337.32 339.98 345.54 351.1 356.1 361.1 364.43 366.71 372.27 377.83 383.39 386.05 391.61 397.17 400.5 406.06 408.34 413.9\\\">have the right, but not the obligation, to acquire ownership of the Property as described herein.</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 572.8924)\\\" x=\\\"0 6.67 13.89 21.67 28.89 31.67 38.34 41.12 47.23 50.01 57.79\\\">ACQUISITION</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 98.1049 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 101.7037 572.8924)\\\" x=\\\"0 7.78\\\">OF</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 115.5905 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 119.1893 572.8924)\\\" x=\\\"0 6.67 13.89 21.67 28.34 35.01 42.23 48.34\\\">PROPERTY</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 174.1991 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 177.798 572.8924)\\\" x=\\\"0 6.67\\\">AS</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 191.1378 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 194.7367 572.8924)\\\" x=\\\"0 6.67 14.45 21.12 28.34 34.45\\\">AGENT;</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.9632 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 235.5621 572.8924)\\\" x=\\\"0 7.22 13.89\\\">NEW</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 258.8922 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 262.4911 572.8924)\\\" x=\\\"0 7.22 15 22.22 29.44 32.22 38.33 41.11 48.89 56.11\\\">CONDITION;</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 321.3778 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 324.9766 572.8924)\\\" x=\\\"0 7.22 13.89 20.56 27.78 35 37.78 44.45 50.56 53.34 61.12 68.34\\\">DESCRIPTION.</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 396.0948 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 399.6937 572.8924)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 417.4866 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 421.0855 572.8924)\\\" x=\\\"0 5.56 8.89\\\">are</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 435.5386 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 439.1375 572.8924)\\\" x=\\\"0 5.56 11.12 13.9 19.46 21.74 27.3 29.58 35.14\\\">obtaining</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 479.8455 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 483.4444 572.8924)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 497.3458 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 500.9446 572.8924)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 538.7376 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 542.3365 572.8924)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.898 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 556.4968 572.8924)\\\" x=\\\"0 5.56 11.12\\\">our</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 561.574)\\\" x=\\\"0 5.56 11.12 16.68 22.24 25.02\\\">agent.</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.9027 561.574)\\\" x=\\\"0 4.0087\\\">  </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 68.9202 561.574)\\\" x=\\\"0 9.44\\\">We</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 83.9202 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 87.9288 561.574)\\\" x=\\\"0 5.56 12.78\\\">own</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 106.2736 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 110.2823 561.574)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 124.1837 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 128.1924 561.574)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 165.9853 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 169.994 561.574)\\\" x=\\\"0 5.56 11.12 13.4 18.96 23.96\\\">unless</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 198.9589 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 202.9676 561.574)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 219.6522 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 223.6609 561.574)\\\" x=\\\"0 5.56 11.12 13.9 16.18\\\">until</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 242.1228 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 246.1315 561.574)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.2545 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 266.2632 561.574)\\\" x=\\\"0 8.33 13.89 18.89\\\">make</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.7163 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 294.7251 561.574)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.6264 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 312.6351 561.574)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57 38.35\\\">payments</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.9896 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 359.9983 561.574)\\\" x=\\\"0 5.56 11.12 16.12 21.68 26.68 31.68 37.24 40.57\\\">necessary</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 405.5745 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 409.5832 561.574)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 417.923 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 421.9318 561.574)\\\" x=\\\"0 5.56 10.56 16.12 21.68 23.96 27.29\\\">acquire</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.7882 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 458.7969 561.574)\\\" x=\\\"0 5.56 12.78 18.34 23.9 27.23 32.23 37.79 40.07 45.63\\\">ownership.</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 507.2149 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 511.2236 561.574)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.0165 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 533.0253 561.574)\\\" x=\\\"0 5.56 11.12 14.45 20.01\\\">agree</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 558.6014 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 562.6101 561.574)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 550.2557)\\\" x=\\\"0 5.56 11.12 13.9 19.46 21.74 27.3 29.96 32.74 36.07 41.63 49.96 52.62 55.4 60.96 66.52 69.18 76.4 81.96 84.74 90.3 92.58 94.86 100.42 103.75 106.41 111.97 117.53 119.81 124.81 127.47 133.03 138.59 145.81 148.47 154.03 159.59 165.15 170.71 175.71 178.37 181.15 186.71 190.04 192.7 198.26 203.82 207.15 212.15 217.71 223.27 228.83 231.11 233.89 236.55 239.33 244.89 253.22 255.5 257.78 262.78 265.44 271 274.33 276.99 282.55 288.11 293.67 298.67 304.23 309.79 315.35 317.63 323.19 325.85 331.41 336.97 340.3 345.86 351.42 356.42 361.98 366.98\\\">obtain from the Retailer only new goods for personal, family or household purposes.</text></g><clipPath id=\\\"clip0-9\\\"><path d=\\\"M 35 529 L 574 529 L 574 547 L 35 547 L 35 529 z \\\"/></clipPath><path clip-path=\\\"url(#clip0-9)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 35.3 546.1561 L 573.1 546.1561 L 573.1 529.8377 L 35.3 529.8377 L 35.3 546.1561 z \\\"/><path clip-path=\\\"url(#clip0-9)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 40.7 543.1561 L 555.4 543.1561 L 555.4 531.8377 L 40.7 531.8377 L 40.7 543.1561 z \\\"/><path clip-path=\\\"url(#clip0-9)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 96.7096 543.1561 L 499.7096 543.1561 L 499.7096 531.1561 L 96.7096 531.1561 L 96.7096 543.1561 z \\\"/><g clip-path=\\\"url(#clip0-9)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 96.7096 533.9373)\\\" x=\\\"0 2.78 11.11 17.78 25.56 32.78 38.89 45.56 52.78 58.89 61.55 68.77 75.44 82.66 88.77 95.44 101 104.33 111 118.22 125.44 132.66 139.88 146.55 153.22 159.89 162.55 169.77 172.55 179.22 186.44 192 199.78 206.45 213.67 220.89 227.56 234.23 236.89 239.82 242.48 245.26 252.48 259.7 265.26 272.48 279.7 282.48 289.7 297.48 300.14 307.36 315.14 321.81 327.92 330.58 337.25 344.47 351.69 354.35 361.02 367.69 374.36 382.69 389.36 396.58\\\">IMPORTANT RENTAL-PURCHASE DISCLOSURES – INCLUDING COST AND PAYMENT</text></g><clipPath id=\\\"clip0-10\\\"><path d=\\\"M 35 81 L 574 81 L 574 530 L 35 530 L 35 81 z \\\"/></clipPath><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 517.619)\\\" x=\\\"0 6.11 13.33 16.11\\\">THIS</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 63.4783 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 68.7771 517.619)\\\" x=\\\"0 6.11 13.33 20 27.22 33.89 40.56 47.78 53.89 56.67 64.45\\\">TRANSACTION</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 140.447 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 145.7457 517.619)\\\" x=\\\"0 2.78\\\">IS</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 155.194 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 160.4927 517.619)\\\" x=\\\"0\\\">A</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 167.1627 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 172.4614 517.619)\\\" x=\\\"0 5.56 12.23 18.9 25.57\\\">LEASE</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 204.7026 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.0014 517.619)\\\" x=\\\"0 6.67 14.45 21.67 28.34 35.01 43.34 50.01 57.23\\\">AGREEMENT</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 273.3412 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 278.64 517.619)\\\" x=\\\"0 9.44 12.22 18.33\\\">WITH</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 304.1868 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 309.4856 517.619)\\\" x=\\\"0 7.78 14.45 20.56 23.34 31.12\\\">OPTION</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 347.8206 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 353.1193 517.619)\\\" x=\\\"0 6.11\\\">TO</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 367.006 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 372.3048 517.619)\\\" x=\\\"0 6.67 13.89 21.11 28.33 35.55 42.22 48.89 55.56\\\">PURCHASE.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.6495 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 435.9483 517.619)\\\" x=\\\"0 6.67 14.45\\\">YOU</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 457.6182 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 462.9169 517.619)\\\" x=\\\"0 9.44 12.22 17.78\\\">WILL</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.2568 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 491.5555 517.619)\\\" x=\\\"0 7.22 15\\\">NOT</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.6639 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 517.9627 517.619)\\\" x=\\\"0 7.78 17.22\\\">OWN</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 542.4012 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 547.6999 517.619)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 506.3006)\\\" x=\\\"0 6.67 13.89 21.67 28.34 35.01 42.23 48.34\\\">PROPERTY</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 95.7098 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 100.6852 506.3006)\\\" x=\\\"0 7.22 14.44 20.55 23.33\\\">UNTIL</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 129.5768 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 134.5522 506.3006)\\\" x=\\\"0 6.67 14.45\\\">YOU</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 156.2221 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 161.1975 506.3006)\\\" x=\\\"0 7.22 13.89 20.56\\\">HAVE</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 188.429 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 193.4044 506.3006)\\\" x=\\\"0 6.67 13.34 16.12\\\">PAID</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 216.7442 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 221.7197 506.3006)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 241.7197 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 246.6951 506.3006)\\\" x=\\\"0 6.11 13.89 20 26.67\\\">TOTAL</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 278.9216 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 283.8971 506.3006)\\\" x=\\\"0 6.67 13.34 20.01 28.34 35.01 42.23 48.34\\\">PAYMENTS</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.9068 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 343.8822 506.3006)\\\" x=\\\"0 7.22 13.89 21.11 27.78 34.45 41.12 47.79 55.01\\\">NECESSARY</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 405.5668 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 410.5422 506.3006)\\\" x=\\\"0 6.11\\\">TO</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 424.4289 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 429.4044 506.3006)\\\" x=\\\"0 6.67 13.89 21.67 28.89 31.67 38.89\\\">ACQUIRE</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.9659 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 479.9413 506.3006)\\\" x=\\\"0 7.78 17.22 24.44 31.11 38.33 45 52.22 55\\\">OWNERSHIP</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 541.6112 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 546.5866 506.3006)\\\" x=\\\"0 6.67 13.89\\\">AND</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 494.9822)\\\" x=\\\"0 7.22 15 23.33 30 35.56\\\">COMPLY</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 82.9314 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 86.988 494.9822)\\\" x=\\\"0 9.44 12.22 18.33\\\">WITH</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 112.5348 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 116.5913 494.9822)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.5913 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 140.6478 494.9822)\\\" x=\\\"0 7.78 17.22 24.44 31.11 38.33 45 52.22 55\\\">OWNERSHIP</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 202.3178 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 206.3743 494.9822)\\\" x=\\\"0 6.11 12.78 20 28.33 35\\\">TERMS.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 244.1526 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 248.2091 494.9822)\\\" x=\\\"0 6.67 14.45\\\">YOU</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 269.879 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 273.9355 494.9822)\\\" x=\\\"0 6.67 13.89\\\">ARE</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 294.497 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 298.5535 494.9822)\\\" x=\\\"0 7.22 15\\\">NOT</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.6619 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 323.7184 494.9822)\\\" x=\\\"0 7.78 14.45 20.01 22.79 30.57 37.24 43.35 50.02\\\">OBLIGATED</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.9548 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 385.0113 494.9822)\\\" x=\\\"0 6.11\\\">TO</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 398.898 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 402.9545 494.9822)\\\" x=\\\"0 6.67 13.34\\\">PAY</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 422.9643 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 427.0208 494.9822)\\\" x=\\\"0\\\">A</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 433.6907 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 437.7472 494.9822)\\\" x=\\\"0 6.67 13.89\\\">SUM</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 459.9689 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 464.0254 494.9822)\\\" x=\\\"0 7.78 15 21.67 28.34 34.45 41.12\\\">GREATER</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.3652 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 516.4217 494.9822)\\\" x=\\\"0 6.11 13.33 20\\\">THAN</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 543.6434 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 547.6999 494.9822)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 483.6639)\\\" x=\\\"0 6.11 13.89 20 26.67 32.23 34.89 41.56 48.23 54.9 63.23 69.9 77.12 83.23 89.9 92.56 98.67 106.45 113.67 116.33 123 125.66 132.33 135.11 142.33 150.11 155.67 162.34 165 170.56 177.23 183.9 190.57 197.24 199.9 206.01 212.68 219.9 228.23\\\">TOTAL PAYMENTS FOR A SINGLE LEASE TERM.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 470.3455)\\\" x=\\\"0 7.22 12.78 17.78\\\">Cash</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 64.0447 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 67.2085 470.3455)\\\" x=\\\"0 6.67 10 12.28 17.28\\\">Price</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 90.0503 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 93.214 470.3455)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 101.5539 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 104.7176 470.3455)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 145.2889 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.4527 470.3455)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 165.6841 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 168.8478 470.3455)\\\" x=\\\"0 7.22 12.78 17.78\\\">Cash</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 192.1926 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 195.3563 470.3455)\\\" x=\\\"0 6.67 10 12.28 17.28\\\">Price</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 218.1981 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 221.3619 470.3455)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 229.7017 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 232.8655 470.3455)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 246.7668 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 249.9306 470.3455)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 287.7235 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 290.8873 470.3455)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 298.1676 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 301.3313 470.3455)\\\" x=\\\"0\\\">$</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 306.8928 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 310.0566 470.3455)\\\" x=\\\"0 5.56 8.34 13.9 19.46 25.02 27.8 33.36 38.92\\\">3,872.00,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.7607 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 354.9244 470.3455)\\\" x=\\\"0 7.22 12.78 15.06 20.06\\\">which</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.5494 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 383.7132 470.3455)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 390.9935 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 394.1572 470.3455)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 408.0586 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 411.2223 470.3455)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 444.5768 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 447.7406 470.3455)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 463.8636 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 467.0274 470.3455)\\\" x=\\\"0 7.22 12.78 18.34 20.62\\\">would</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 493.2139 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 496.3776 470.3455)\\\" x=\\\"0 5.56 11.12 16.12\\\">have</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 518.0622 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 521.226 470.3455)\\\" x=\\\"0 5.56 11.12 13.4\\\">paid</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 540.1908 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 543.3545 470.3455)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 548.4131 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 551.5769 470.3455)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 459.0271)\\\" x=\\\"0 5.56 11.12\\\">had</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 57.3846 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 60.336 459.0271)\\\" x=\\\"0 5.56 11.12 14.45 19.45 25.01 30.57 35.57 41.13\\\">purchased</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 107.0352 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 109.9866 459.0271)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 123.888 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 126.8394 459.0271)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 164.6324 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 167.5838 459.0271)\\\" x=\\\"0 2.78 6.11 11.67\\\">from</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 187.5838 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 190.5352 459.0271)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 204.4366 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 207.388 459.0271)\\\" x=\\\"0 7.22 12.78 15.56 21.12 23.4 25.68 31.24\\\">Retailer</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 241.9632 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 244.9147 459.0271)\\\" x=\\\"0 7.22 9.5 12.28\\\">with</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.7565 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 265.7079 459.0271)\\\" x=\\\"0 5 10.56 15.56\\\">cash</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 286.8309 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 289.7824 459.0271)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 300.9054 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 303.8568 459.0271)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 317.7582 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 320.7096 459.0271)\\\" x=\\\"0 5.56 11.12\\\">day</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 336.8327 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 339.7841 459.0271)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.1239 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 351.0754 459.0271)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 366.6955 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 369.6469 459.0271)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 421.3412 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 424.2927 459.0271)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 25.68 27.96 32.96\\\">inclusive</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 462.8181 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 465.7695 459.0271)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.1093 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 477.0607 459.0271)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 493.1838 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 496.1352 459.0271)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64\\\">applicable</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 541.3452 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 544.2966 459.0271)\\\" x=\\\"0 5 10.56 12.84 18.4\\\">sales</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 447.7088)\\\" x=\\\"0 5.56 8.89 11.55 17.11 22.11 27.67 30.33 33.11 38.67 43.67\\\">or use tax.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 434.3904)\\\" x=\\\"0 6.11 11.67 14.45 20.01\\\">Total</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 62.99 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 66.9187 434.3904)\\\" x=\\\"0 7.22 12.78 17.78\\\">Cost</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 87.4803 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 91.409 434.3904)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 99.7488 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 103.6775 434.3904)\\\" x=\\\"0 5.56 11.12 16.68 21.68 27.24\\\">Lease;</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 133.7019 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 137.6306 434.3904)\\\" x=\\\"0 6.67 12.23 15.56 17.84 23.4 28.96 31.24\\\">Periodic</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 173.8758 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 177.8045 434.3904)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46 44.46\\\">Payments;</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.0457 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 228.9744 434.3904)\\\" x=\\\"0 6.67 10 15.56 20.56 26.12 31.12 36.12 38.4 43.96\\\">Processing</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 278.5007 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 282.4295 434.3904)\\\" x=\\\"0 6.11 11.67 17.23\\\">Fee;</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.4392 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 306.3679 434.3904)\\\" x=\\\"0 2.78 8.34 10.62 13.4 15.68 21.24\\\">Initial</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.8884 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 333.8171 434.3904)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46\\\">Payment;</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 376.0584 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 379.9871 434.3904)\\\" x=\\\"0 7.22 12.78 17.78\\\">Cost</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 400.5486 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 404.4773 434.3904)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 412.8171 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 416.7459 434.3904)\\\" x=\\\"0 7.22 12.78 18.34 21.12 26.68 28.96\\\">Rental.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 448.489 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 452.4177 434.3904)\\\" x=\\\"0 7.22 12.78 15.06 20.62 25.62\\\">Unless</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 483.0427 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 486.9714 434.3904)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 503.0945 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 507.0232 434.3904)\\\" x=\\\"0 5.56 10.56 16.12 19.45 24.45 26.73 31.73\\\">exercise</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 544.3181 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 548.2468 434.3904)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 423.0721)\\\" x=\\\"0 5.56 11.12 16.68 20.01 27.23 32.79\\\">100-Day</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 78.4979 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.2541 423.0721)\\\" x=\\\"0 7.78 13.34 16.12 18.4 23.96\\\">Option</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 110.7756 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 113.5318 423.0721)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 122.4234 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 125.1797 423.0721)\\\" x=\\\"0 6.67 12.23 15.56 17.84\\\">Early</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 148.0215 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 150.7777 423.0721)\\\" x=\\\"0 6.67 12.23 17.23 20.56 28.34 33.9\\\">Buy-Out</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 187.4574 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 190.2136 423.0721)\\\" x=\\\"0 7.78 13.34 16.12 18.4 23.96\\\">Option</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 219.7351 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 222.4914 423.0721)\\\" x=\\\"0 5 10.56\\\">set</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 235.8312 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 238.5875 423.0721)\\\" x=\\\"0 2.78 8.34 11.67 14.45\\\">forth</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 258.5972 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 261.3535 423.0721)\\\" x=\\\"0 5.56 11.12 13.4 18.96 26.18\\\">below,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.3183 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 293.0746 423.0721)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 306.9759 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 309.7322 423.0721)\\\" x=\\\"0 3.33 9.44 15 17.78 23.34\\\">“Total</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.3523 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.1086 423.0721)\\\" x=\\\"0 7.22 12.78 17.78 20.56\\\">Cost”</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 362.0002 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 364.7564 423.0721)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 373.0962 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 375.8525 423.0721)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 389.7539 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 392.5101 423.0721)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.3031 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 433.0593 423.0721)\\\" x=\\\"0 5.56 11.12 16.68 22.24\\\">under</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 458.6355 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 461.3917 423.0721)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 477.0119 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 479.7681 423.0721)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 528.6841 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 531.4404 423.0721)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 545.5029 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 548.2591 423.0721)\\\" x=\\\"0 5.56\\\">be</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.3822 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 562.1384 423.0721)\\\" x=\\\"0\\\">$</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 411.7537)\\\" x=\\\"0 5.56 8.34 13.9 19.46 25.02 27.8 33.36 38.92\\\">3,965.32.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 82.4041 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 85.187 411.7537)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 102.4184 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 105.2013 411.7537)\\\" x=\\\"0 6.11 11.67 14.45 20.01\\\">Total</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 127.4913 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 130.2742 411.7537)\\\" x=\\\"0 7.22 12.78 17.78\\\">Cost</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 150.8357 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 153.6186 411.7537)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.8989 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 163.6817 411.7537)\\\" x=\\\"0 5.56 11.12 16.12 21.68\\\">based</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 190.9279 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 193.7107 411.7537)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 204.8338 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 207.6166 411.7537)\\\" x=\\\"0 5.56\\\">an</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 218.7397 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 221.5226 411.7537)\\\" x=\\\"0 2.78 8.34 10.62 13.4 15.68 21.24\\\">Initial</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.0431 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 247.8259 411.7537)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68\\\">Payment</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 287.2888 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 290.0717 411.7537)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 298.4115 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 301.1944 411.7537)\\\" x=\\\"0\\\">$</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 306.7559 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 309.5388 411.7537)\\\" x=\\\"0 5.56 8.34 13.9\\\">0.00</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.0017 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 331.7846 411.7537)\\\" x=\\\"0 5.56 11.12 16.12 21.68 27.24 29.52\\\">payable</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 366.8725 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 369.6554 411.7537)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.7784 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 383.5613 411.7537)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 397.4626 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 400.2455 411.7537)\\\" x=\\\"0 5.56 11.12 13.9\\\">date</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.7084 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 422.4913 411.7537)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.8311 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 433.614 411.7537)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 449.2341 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 452.017 411.7537)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 500.933 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 503.7159 411.7537)\\\" x=\\\"0 3.33 6.11 11.67\\\">(the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 520.9473 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 523.7302 411.7537)\\\" x=\\\"0 3.33 10.55 16.11 21.67 27.23 29.51 32.84 38.4\\\">“Required</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 400.4353)\\\" x=\\\"0 2.78 8.34 10.62 13.4 15.68 21.24\\\">Initial</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 64.2205 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 68.4622 400.4353)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46 42.79 46.12\\\">Payment”),</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 117.3635 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 121.6052 400.4353)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 126.6638 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 130.9055 400.4353)\\\" x=\\\"0 5.56 11.12 16.12\\\">any,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 149.8068 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 154.0485 400.4353)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 159.61 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 163.8517 400.4353)\\\" x=\\\"0 5.56 8.89 14.45 19.45 25.01 30.01 35.01 37.29 42.85\\\">processing</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 212.2697 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 216.5114 400.4353)\\\" x=\\\"0 2.78 8.34\\\">fee</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 230.4127 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 234.6544 400.4353)\\\" x=\\\"0 3.33 10.55 16.11 18.39 23.39\\\">(which</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 263.6095 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 267.8511 400.4353)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.1314 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 279.3731 400.4353)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 293.2745 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 297.5161 400.4353)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 303.0777 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 307.3193 400.4353)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 345.6738 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 349.9155 400.4353)\\\" x=\\\"0 2.78 8.34 15.56 21.12 24.45 30.01\\\">towards</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 384.9301 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 389.1718 400.4353)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.0732 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.3149 400.4353)\\\" x=\\\"0 5 10.56 15.56\\\">cost</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 425.6547 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 429.8964 400.4353)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 438.2362 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 442.4779 400.4353)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 461.931 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 466.1727 400.4353)\\\" x=\\\"0 3.33 8.89 14.45 17.23 22.79 25.07\\\">rental)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 494.576 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 498.8177 400.4353)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 507.1575 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 511.3992 400.4353)\\\" x=\\\"0\\\">$</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 516.9607 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 521.2024 400.4353)\\\" x=\\\"0 5.56 11.12 13.9 19.46\\\">10.00</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 546.2268 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 550.4685 400.4353)\\\" x=\\\"0 3.33 6.11 11.67\\\">(the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 389.117)\\\" x=\\\"0 3.33 10 13.33 18.89 23.89 29.45 34.45 39.45 41.73 47.29\\\">“Processing</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 93.5564 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 97.3241 389.117)\\\" x=\\\"0 6.11 11.67 17.23 20.56 23.89\\\">Fee”),</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 123.9941 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 127.7617 389.117)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 132.8203 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 136.588 389.117)\\\" x=\\\"0 5.56 11.12 16.12\\\">any,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 155.4894 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 159.2571 389.117)\\\" x=\\\"0 5.56\\\">26</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 170.3801 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 174.1478 389.117)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.74 24.02 29.58 35.14 40.7\\\">additional</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 217.1361 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 220.9038 389.117)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57 38.35\\\">payments</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 264.2583 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 268.026 389.117)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.3658 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 280.1335 389.117)\\\" x=\\\"0\\\">$</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 285.695 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 289.4627 389.117)\\\" x=\\\"0 5.56 8.34 13.9\\\">6.97</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.9256 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 312.6933 389.117)\\\" x=\\\"0 3.33 8.89\\\">(as</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 326.5849 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 330.3526 389.117)\\\" x=\\\"0 5.56 11.12 13.4 18.96 23.96 26.74 32.3 37.86\\\">adjusted,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 370.9971 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 374.7648 389.117)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.3263 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 384.094 389.117)\\\" x=\\\"0 3.33 10.55 16.11 21.67 27.23 29.51 35.07\\\">“Regular</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 422.5022 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 426.2699 389.117)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46 42.79\\\">Payment”)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 472.393 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 476.1607 389.117)\\\" x=\\\"0 5.56 11.12 16.12 21.68\\\">each,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 500.6235 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 504.3912 389.117)\\\" x=\\\"0 5.56 11.12 16.12 21.68 27.24 29.52\\\">payable</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 539.4791 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 543.2468 389.117)\\\" x=\\\"0 5.56 10.56 16.12 19.45\\\">every</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 377.7986)\\\" x=\\\"0 5.56 8.34 13.9 19.46\\\">other</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 63.493 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 66.4195 377.7986)\\\" x=\\\"0 7.22 12.78 18.34 23.34\\\">week.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 92.5426 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 95.4692 377.7986)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 112.7006 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 115.6272 377.7986)\\\" x=\\\"0 6.11 11.67 14.45 20.01\\\">Total</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 137.9172 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 140.8438 377.7986)\\\" x=\\\"0 7.22 12.78 17.78\\\">Cost</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 161.4053 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 164.3319 377.7986)\\\" x=\\\"0 5.56 7.84 12.84\\\">also</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 182.7352 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 185.6617 377.7986)\\\" x=\\\"0 3.33 8.89 11.67 13.95 19.51 24.51 27.29\\\">reflects</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 217.9518 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 220.8784 377.7986)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 237.0014 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 239.928 377.7986)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.74 24.02 29.58 35.14 40.7\\\">additional</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 282.9163 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 285.8428 377.7986)\\\" x=\\\"0 5 10.56 15.56\\\">cash</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 306.9659 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 309.8924 377.7986)\\\" x=\\\"0 5.56 11.12 13.4\\\">paid</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 328.8573 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 331.7839 377.7986)\\\" x=\\\"0 2.78 8.34 13.9 19.46 24.46\\\">today,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.0251 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 361.9516 377.7986)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 367.0102 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 369.9368 377.7986)\\\" x=\\\"0 5.56 11.12 16.12\\\">any.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.8382 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 391.7647 377.7986)\\\" x=\\\"0 6.67 12.23 17.79\\\">Your</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 412.8878 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 415.8143 377.7986)\\\" x=\\\"0 2.78 8.34 11.12 16.68\\\">total</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.7743 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 437.7009 377.7986)\\\" x=\\\"0 2.28 7.84 10.12 12.9 15.18 20.74\\\">initial</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 460.7233 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 463.6499 377.7986)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 502.0044 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 504.931 377.7986)\\\" x=\\\"0 5.56 11.12\\\">due</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.6155 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 524.5421 377.7986)\\\" x=\\\"0 2.78 8.34 13.9 19.46\\\">today</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.005 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 551.9316 377.7986)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.2118 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 562.1384 377.7986)\\\" x=\\\"0\\\">$</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 366.4803)\\\" x=\\\"0 5.56 8.34 13.9 19.46\\\">0.00,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 62.9412 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 66.7951 366.4803)\\\" x=\\\"0 7.22 12.78 15.06 20.06\\\">which</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 92.4201 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 96.274 366.4803)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 103.5543 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 107.4082 366.4803)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 121.3096 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 125.1635 366.4803)\\\" x=\\\"0 5 10.56\\\">sum</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 144.0551 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 147.909 366.4803)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 156.2488 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 160.1027 366.4803)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 174.0041 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 177.858 366.4803)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 29.51 35.07\\\">Required</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 218.4976 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 222.3515 366.4803)\\\" x=\\\"0 2.78 8.34 10.62 13.4 15.68 21.24\\\">Initial</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.872 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 249.7259 366.4803)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46\\\">Payment,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.9672 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 295.8211 366.4803)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 300.8797 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 304.7336 366.4803)\\\" x=\\\"0 5.56 11.12 16.12\\\">any,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 323.6349 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 327.4888 366.4803)\\\" x=\\\"0 6.67 10 15.56 20.56 26.12 31.12 36.12 38.4 43.96\\\">Processing</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 377.0152 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 380.8691 366.4803)\\\" x=\\\"0 6.11 11.67 17.23\\\">Fee,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 400.8789 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 404.7328 366.4803)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 409.7914 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 413.6453 366.4803)\\\" x=\\\"0 5.56 11.12 16.12\\\">any,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 432.5466 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 436.4005 366.4803)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 453.0851 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 456.939 366.4803)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 473.062 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 476.916 366.4803)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.74 24.02 29.58 35.14 40.7\\\">additional</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 519.9042 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 523.7581 366.4803)\\\" x=\\\"0 5 10.56 15.56\\\">cash</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 544.8812 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 548.7351 366.4803)\\\" x=\\\"0 5.56 11.12 13.4\\\">paid</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 355.1619)\\\" x=\\\"0 2.78 8.34 13.9 19.46 24.46\\\">today.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 67.9412 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 70.9372 355.1619)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 76.4938 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 79.4898 355.1619)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 95.6128 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 98.6088 355.1619)\\\" x=\\\"0 5.56\\\">do</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 109.7318 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 112.7278 355.1619)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 126.6291 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 129.6251 355.1619)\\\" x=\\\"0 3.33 8.89 17.22 19.5\\\">remit</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 151.9054 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 154.9013 355.1619)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 171.0244 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 174.0203 355.1619)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64\\\">applicable</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 219.2303 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 222.2262 355.1619)\\\" x=\\\"0 6.67 10 15.56 20.56 26.12 31.12 36.12 38.4 43.96\\\">Processing</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 271.7526 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 274.7486 355.1619)\\\" x=\\\"0 6.11 11.67\\\">Fee</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.98 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 294.976 355.1619)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 303.8676 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 306.8635 355.1619)\\\" x=\\\"0 2.78 8.34 10.62 13.4 15.68 21.24\\\">Initial</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 330.3841 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 333.38 355.1619)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68\\\">Payment</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 372.8429 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 375.8388 355.1619)\\\" x=\\\"0 5.56\\\">at</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 384.1787 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 387.1747 355.1619)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 401.076 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 404.072 355.1619)\\\" x=\\\"0 2.78 5.06 13.39\\\">time</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 423.0222 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 426.0181 355.1619)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.358 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 437.3539 355.1619)\\\" x=\\\"0 5.56 11.12 14.45 19.45 25.01 30.57 35.57 41.13\\\">purchase,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 481.2699 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 484.2659 355.1619)\\\" x=\\\"0 2.28\\\">it</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.3245 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 492.3205 355.1619)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.6007 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 502.5967 355.1619)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24 31.8\\\">included</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 539.9649 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 542.9608 355.1619)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 550.8026 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.7986 355.1619)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 343.8436)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 75.7781 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 78.9772 343.8436)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46\\\">Payments</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 123.44 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 126.6391 343.8436)\\\" x=\\\"0 5 10.56\\\">set</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 139.9789 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 143.1779 343.8436)\\\" x=\\\"0 2.78 8.34 11.67 14.45\\\">forth</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 163.1877 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 166.3868 343.8436)\\\" x=\\\"0 5.56 11.12 16.68 21.68 27.24\\\">above.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 196.4112 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 199.6102 343.8436)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 216.8416 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 220.0407 343.8436)\\\" x=\\\"0 6.11 11.67 14.45 20.01\\\">Total</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 242.3307 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 245.5297 343.8436)\\\" x=\\\"0 7.22 12.78 17.78\\\">Cost</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 266.0913 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 269.2903 343.8436)\\\" x=\\\"0 5.56 11.12 16.68\\\">does</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.9749 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 294.1739 343.8436)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.0753 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 311.2743 343.8436)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24\\\">include</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 343.0809 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 346.28 343.8436)\\\" x=\\\"0 2.28 7.84 10.62\\\">late</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 362.4616 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 365.6606 343.8436)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57 38.35\\\">payment,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 406.7935 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 409.9925 343.8436)\\\" x=\\\"0 5.56 11.12 16.68 21.68 27.24 30.02 32.8 35.08 40.08 42.36 47.92 53.48\\\">nonsufficient</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.2571 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 469.4562 343.8436)\\\" x=\\\"0 2.78 8.34 13.9 19.46 24.46\\\">funds,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 496.6974 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 499.8964 343.8436)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 27.3 30.08\\\">default,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 532.7577 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 535.9568 343.8436)\\\" x=\\\"0 5.56 7.84 12.84 17.84 23.4 28.96\\\">pickup,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 332.5252)\\\" x=\\\"0 3.33 8.89 11.17 16.73 21.73 24.51 30.07 32.85 38.41 46.74 52.3 57.86 60.64\\\">reinstatement,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 104.1228 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 108.8966 332.5252)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 117.7882 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 122.5619 332.5252)\\\" x=\\\"0 5.56 8.34 13.9 19.46\\\">other</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 145.3549 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 150.1286 332.5252)\\\" x=\\\"0 2.78 8.34 13.9 18.9\\\">fees,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 171.8083 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 176.5821 332.5252)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 181.6407 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 186.4144 332.5252)\\\" x=\\\"0 5.56 11.12 16.12\\\">any,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 205.3158 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.0895 332.5252)\\\" x=\\\"0 5.56 7.84 12.84 17.84 20.12 25.68 30.68 36.24\\\">disclosed</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 251.8962 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 256.6699 332.5252)\\\" x=\\\"0 5.56 11.12 13.4 18.96 26.18\\\">below.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 285.6347 332.5252)\\\" x=\\\"0 4.7737\\\">  </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 295.1822 332.5252)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.4137 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 317.1874 332.5252)\\\" x=\\\"0 5 10.56 15.56\\\">cost</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.5273 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 340.301 332.5252)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.6409 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 353.4146 332.5252)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 372.8677 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 377.6415 332.5252)\\\" x=\\\"0 3.33 8.89 14.45 17.23 22.79\\\">rental</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.7147 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.4884 332.5252)\\\" x=\\\"0 3.33 6.66 13.88 19.44 24.44\\\">(“Cost</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.7101 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 439.4839 332.5252)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.8237 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 452.5975 332.5252)\\\" x=\\\"0 7.22 12.78 18.34 21.12 26.68 28.96 32.29\\\">Rental”)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 488.2225 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 492.9962 332.5252)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 500.2765 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 505.0502 332.5252)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 518.9516 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 523.7253 332.5252)\\\" x=\\\"0 5.56 7.84 10.62 13.4 18.96 22.29 27.85 33.41 38.41\\\">difference</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 321.2068)\\\" x=\\\"0 5.56 11.12 13.9 21.12 26.68 32.24 37.8 40.46 43.24 48.8 54.36 57.02 63.13 68.69 71.47 77.03 79.31 81.97 89.19 94.75 99.75 102.53 105.19 110.75 116.31 121.87 124.53 131.75 137.31 142.31 147.87 150.53 157.2 160.53 162.81 167.81 173.37 176.15 178.81 184.37 189.93 195.49 198.15 205.37 207.65 209.93 212.21 214.87 220.43 225.99 228.65 234.21 236.87 242.43 247.99 250.77 256.33 261.89\\\">between the Total Cost and Cash Price, and will be $ 93.32.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 309.8885)\\\" x=\\\"0 6.67 11.67 17.23 22.79 27.79 30.57 36.13\\\">Expected</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 82.3943 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 86.3823 309.8885)\\\" x=\\\"0 7.22 12.78 15.06 17.34 22.34 27.9 31.23\\\">Delivery</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 122.6177 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 126.6057 309.8885)\\\" x=\\\"0 7.22 12.78 15.56 21.12\\\">Date;</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 150.507 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 154.495 309.8885)\\\" x=\\\"0 6.11 8.39 11.72 16.72\\\">First</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 173.9921 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 177.9801 309.8885)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 213.0582 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 217.0462 309.8885)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46\\\">Payment.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.2874 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 263.2754 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 267.2634 309.8885)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 284.4948 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 288.4828 309.8885)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 29.51 35.07\\\">Required</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.1225 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 333.1105 309.8885)\\\" x=\\\"0 2.78 8.34 10.62 13.4 15.68 21.24\\\">Initial</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 356.631 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 360.619 309.8885)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46\\\">Payment,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.8602 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 406.8482 309.8885)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 411.9068 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 415.8947 309.8885)\\\" x=\\\"0 5.56 11.12 16.12\\\">any,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.7961 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 438.7841 309.8885)\\\" x=\\\"0 5 10.56 15.56 21.12 24.45\\\">covers</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.2372 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 472.2252 309.8885)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.1266 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 490.1146 309.8885)\\\" x=\\\"0 3.33 8.89 14.45 17.23 22.79\\\">rental</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 515.1878 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 519.1758 309.8885)\\\" x=\\\"0 5.56 11.12 14.45 16.73 22.29\\\">period</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 547.0323 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 551.0202 309.8885)\\\" x=\\\"0 2.78 8.34 13.9\\\">that</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 298.5701)\\\" x=\\\"0 5.56 11.12 16.68 18.96 24.52\\\">begins</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 70.2264 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 73.3394 298.5701)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 84.4625 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 87.5755 298.5701)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 101.4769 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 104.59 298.5701)\\\" x=\\\"0 5.56 11.12 13.9\\\">date</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 124.0529 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 127.166 298.5701)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 143.289 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 146.4021 298.5701)\\\" x=\\\"0 3.33 8.89 13.89 19.45 21.73 26.73\\\">receive</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 178.697 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 181.8101 298.5701)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 195.7114 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 198.8245 298.5701)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 236.6175 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 239.7305 298.5701)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.4151 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 259.5282 298.5701)\\\" x=\\\"0 5.56 11.12 16.68\\\">ends</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.2128 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 284.3258 298.5701)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 295.4489 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 298.562 298.5701)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 318.0151 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 321.1281 298.5701)\\\" x=\\\"0 2.78 5.06 8.39 13.39\\\">first</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 337.2951 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 340.4082 298.5701)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.4863 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 378.5994 298.5701)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68\\\">Payment</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 418.0623 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 421.1754 298.5701)\\\" x=\\\"0 5.56 11.12 13.9 19.46\\\">date.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 443.4166 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 446.5297 298.5701)\\\" x=\\\"0 6.67 12.23 17.79\\\">Your</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.6527 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 470.7658 298.5701)\\\" x=\\\"0 2.78 5.06 8.39 13.39\\\">first</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.9328 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 490.0459 298.5701)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 525.124 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 528.237 298.5701)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68\\\">Payment</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 287.2518)\\\" x=\\\"0 5.56 11.12 13.9\\\">date</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.1629 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 63.9277 287.2518)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 77.9902 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.7549 287.2518)\\\" x=\\\"0 5.56\\\">be</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 92.878 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 96.6428 287.2518)\\\" x=\\\"0 5.56\\\">at</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 104.9826 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 108.7474 287.2518)\\\" x=\\\"0 2.28 7.84 13.4 18.4\\\">least</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 129.929 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 133.6938 287.2518)\\\" x=\\\"0 5 10.56 15.56 21.12\\\">seven</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.3784 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 164.1432 287.2518)\\\" x=\\\"0 5.56 11.12 16.12\\\">days</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 185.2662 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 189.031 287.2518)\\\" x=\\\"0 5.56 8.34 11.12 16.68\\\">after</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.0407 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 212.8055 287.2518)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 226.7069 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 230.4717 287.2518)\\\" x=\\\"0 2.28 7.84 10.62 16.18\\\">later</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 249.9834 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 253.7482 287.2518)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.088 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 265.8528 287.2518)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 27.8 33.36 38.92 44.48\\\">07/24/2020</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 315.9016 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 319.6664 287.2518)\\\" x=\\\"0 3.33 5.61\\\">(i)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 328.6068 287.2518)\\\" x=\\\"0 3.7648\\\">  </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 336.1364 287.2518)\\\" x=\\\"0 3.33 6.11 11.67\\\">(the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 353.3678 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 357.1326 287.2518)\\\" x=\\\"0 3.33 10 15 20.56 26.12 31.12 33.9 39.46\\\">“Expected</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.157 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 405.9218 287.2518)\\\" x=\\\"0 7.22 12.78 15.06 17.34 22.34 27.9 31.23\\\">Delivery</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 442.1572 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 445.9219 287.2518)\\\" x=\\\"0 7.22 12.78 15.56 21.12 24.45 27.78\\\">Date”),</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 476.4835 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 480.2482 287.2518)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 496.9328 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 500.6976 287.2518)\\\" x=\\\"0 3.33 5.61 7.89\\\">(ii)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 511.9183 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 515.6831 287.2518)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.5844 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 533.3492 287.2518)\\\" x=\\\"0 5.56 11.12 13.9\\\">date</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.8121 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 556.5769 287.2518)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 275.9334)\\\" x=\\\"0 7.22 12.78 15.06 20.06 25.62 28.28 31.06 36.62 42.18 44.84 51.51 54.84 60.4 65.96 71.52 74.85 77.63 82.63 85.29 87.57 92.57 95.23 100.79 104.12 109.68 114.68 116.96 122.52 128.08 133.64 136.3 141.86 145.19 147.85 153.41 158.97 161.25 163.53 168.53 174.09 177.42 182.98 188.54 191.2 193.98 199.54 202.2 207.2 212.76 218.32\\\">which the Property is provided or delivered to you.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 264.615)\\\" x=\\\"0 5.56 11.12 16.68 20.01 27.23 32.79\\\">100-Day</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 78.4979 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.9917 264.615)\\\" x=\\\"0 7.78 13.34 16.12 18.4 23.96 29.52\\\">Option.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 114.2915 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 117.7853 264.615)\\\" x=\\\"0 6.67\\\">At</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 127.2335 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 130.7273 264.615)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.8504 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 150.3442 264.615)\\\" x=\\\"0 2.78 5.06 13.39\\\">time</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 169.2944 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 172.7882 264.615)\\\" x=\\\"0 5.56 11.12 14.45 16.73 22.29\\\">during</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 200.6446 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 204.1385 264.615)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 218.0398 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 221.5336 264.615)\\\" x=\\\"0 2.78 5.06 8.39 13.39\\\">first</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 237.7006 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 241.1944 264.615)\\\" x=\\\"0 5.56 11.12\\\">100</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.879 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 261.3728 264.615)\\\" x=\\\"0 2.78 6.11 11.67\\\">from</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.3728 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 284.8666 264.615)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 298.768 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 302.2618 264.615)\\\" x=\\\"0 6.67 11.67 17.23 22.79 27.79 30.57 36.13\\\">Expected</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 343.9561 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 347.45 264.615)\\\" x=\\\"0 7.22 12.78 15.06 17.34 22.34 27.9 31.23\\\">Delivery</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.6853 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 387.1791 264.615)\\\" x=\\\"0 7.22 12.78 15.56 21.12\\\">Date,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 411.0805 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 414.5743 264.615)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 428.4757 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 431.9695 264.615)\\\" x=\\\"0 3.33 8.89 14.45 20.01 23.34 30.56 36.12\\\">“100-Day</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 473.0974 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 476.5912 264.615)\\\" x=\\\"0 7.78 13.34 16.12 18.4 23.96 29.52\\\">Option”</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.4428 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 512.9366 264.615)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.8 31.8\\\">applies,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 547.5215 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 551.0154 264.615)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 253.2967)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 56.823 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 59.7295 253.2967)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 78.6211 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.5276 253.2967)\\\" x=\\\"0 5.56 10.56 16.12 21.68 23.96 27.29\\\">acquire</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 114.384 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 117.2905 253.2967)\\\" x=\\\"0 5.56 12.78 18.34 23.9 27.23 32.23 37.79 40.07\\\">ownership</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 162.9301 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 165.8366 253.2967)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 174.1764 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 177.0829 253.2967)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 190.9843 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 193.8907 253.2967)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.6837 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 234.5901 253.2967)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.1517 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 248.0581 253.2967)\\\" x=\\\"0 5.56 11.12 16.12 18.4 23.96\\\">paying</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 277.5845 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 280.4909 253.2967)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.0525 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 293.9589 253.2967)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 307.8603 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 310.7667 253.2967)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 344.1212 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 347.0277 253.2967)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 357.5892 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 360.4957 253.2967)\\\" x=\\\"0 7.22 12.78 15.06 20.06\\\">which</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 386.1207 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 389.0271 253.2967)\\\" x=\\\"0 3.33 5.61\\\">(i)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 397.9676 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 400.874 253.2967)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 414.7754 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 417.6819 253.2967)\\\" x=\\\"0 5 10.56\\\">sum</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 436.5735 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 439.4799 253.2967)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.8198 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 450.7262 253.2967)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 464.6276 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 467.5341 253.2967)\\\" x=\\\"0 5.56 11.12\\\">100</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.2186 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 487.1251 253.2967)\\\" x=\\\"0\\\">–</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 490.0548 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 492.9612 253.2967)\\\" x=\\\"0 7.22 12.78\\\">Day</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 510.7444 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 513.6509 253.2967)\\\" x=\\\"0 6.67 15 20.56 26.12 31.68 34.46\\\">Amount,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 550.8921 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.7986 253.2967)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 241.9783)\\\" x=\\\"0 6.67 10 15.56 20.56 26.12 31.12 36.12 38.4 43.96\\\">Processing</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 90.2264 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 92.924 241.9783)\\\" x=\\\"0 6.11 11.67 17.23\\\">Fee,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 112.9338 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 115.6314 241.9783)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 120.69 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 123.3877 241.9783)\\\" x=\\\"0 5.56 11.12 16.12\\\">any,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 142.289 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 144.9867 241.9783)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64\\\">applicable</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 190.1967 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 192.8943 241.9783)\\\" x=\\\"0 5 10.56 12.84 18.4\\\">sales</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 216.2976 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 218.9953 241.9783)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 227.8869 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 230.5845 241.9783)\\\" x=\\\"0 5.56 10.56\\\">use</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 246.7076 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 249.4052 241.9783)\\\" x=\\\"0 2.78 8.34 13.34 18.9 23.9\\\">taxes,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.0849 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 278.7826 241.9783)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 295.4672 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 298.1648 241.9783)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 314.2879 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 316.9855 241.9783)\\\" x=\\\"0 5.56 11.12 16.68 22.24 24.52\\\">unpaid</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 347.0734 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 349.771 241.9783)\\\" x=\\\"0 2.78 8.34 13.9\\\">fees</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 368.6724 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 371.3701 241.9783)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 384.1533 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 386.8509 241.9783)\\\" x=\\\"0 5.56 11.12 16.12\\\">have</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 408.5355 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 411.2331 241.9783)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01 30.57 36.13\\\">charged,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 450.1492 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 452.8468 241.9783)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.68 32.24\\\">exceeds</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 490.0929 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 492.7906 241.9783)\\\" x=\\\"0 3.33 5.61 7.89\\\">(ii)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 504.0113 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 506.7089 241.9783)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 520.6103 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 523.3079 241.9783)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 556.6624 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 559.3601 241.9783)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 230.66)\\\" x=\\\"0 5.56 11.12 16.12 18.78 21.56 27.12 29.4 32.18 34.46 40.02 42.3 44.96 51.63 57.19 62.19 70.52 76.08 81.64 84.42 87.08 92.64 98.2 103.76 106.42 113.64 119.2 124.76 130.32 132.6 138.16 141.49 144.15 150.82 156.38 161.38 169.71 175.27 180.83 183.61 188.61 191.27 196.27 201.83 207.39 210.05 215.61 221.17 226.17 231.73 234.39 242.72 248.28 253.84 259.4 262.18 264.84 270.95 276.51 282.07 284.73 290.29 295.85 301.41 304.07 311.29 316.85 321.85 324.51 331.18 339.51 345.07 350.63 356.19 358.97 361.63 363.91 368.91 371.57 377.13 379.79 385.35 390.91 393.69 399.25 404.81\\\">any Initial Payment and Regular Payments you have made. The 100 Day Amount is $ 97.70.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 219.3416)\\\" x=\\\"0 6.67 12.23 15.56 17.84\\\">Early</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 63.5418 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 66.4605 219.3416)\\\" x=\\\"0 6.67 12.23 17.23 20.56 28.34 33.9\\\">Buy-Out</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 103.1401 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 106.0588 219.3416)\\\" x=\\\"0 7.78 13.34 16.12 18.4 23.96 29.52\\\">Option.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 138.3586 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 141.2772 219.3416)\\\" x=\\\"0 6.67 9.45 12.23 17.79\\\">After</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 162.3954 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 165.3141 219.3416)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 184.7672 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 187.6858 219.3416)\\\" x=\\\"0 5.56 11.12 16.68 20.01 27.23 32.79\\\">100-Day</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.4837 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 228.4024 219.3416)\\\" x=\\\"0 7.22 12.78 17.78\\\">Cash</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 251.7471 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 254.6657 219.3416)\\\" x=\\\"0 6.67 12.23 17.23 22.79 25.57\\\">Payoff</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 283.0153 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 285.934 219.3416)\\\" x=\\\"0 7.78 13.34 16.12 18.4 23.96\\\">Option</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 315.4555 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 318.3741 219.3416)\\\" x=\\\"0 5.56 11.12\\\">has</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 334.4972 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 337.4158 219.3416)\\\" x=\\\"0 5.56 10.56 16.12 18.4 21.73 27.29 32.85\\\">expired,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 373.0506 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 375.9693 219.3416)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 389.8706 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 392.7893 219.3416)\\\" x=\\\"0 3.33 10 15.56 18.89 21.17\\\">“Early</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 418.9611 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 421.8798 219.3416)\\\" x=\\\"0 6.67 12.23 17.23 20.56 28.34 33.9\\\">Buy-Out</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 458.5595 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 461.4781 219.3416)\\\" x=\\\"0 7.78 13.34 16.12 18.4 23.96 29.52\\\">Option”</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 494.3297 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 497.2484 219.3416)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.8\\\">applies</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.055 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 531.9737 219.3416)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 548.6582 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 551.5769 219.3416)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 208.0232)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 59.5916 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 63.2372 208.0232)\\\" x=\\\"0 5.56 11.12 14.45 19.45 25.01 30.57 35.57\\\">purchase</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 104.3748 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 108.0204 208.0232)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 121.9218 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 125.5673 208.0232)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 163.3603 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 167.0058 208.0232)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 177.5674 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 181.2129 208.0232)\\\" x=\\\"0 5.56 11.12 16.12 18.4 23.96\\\">paying</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 210.7393 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 214.3849 208.0232)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 224.9464 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 228.5919 208.0232)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 242.4933 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 246.1389 208.0232)\\\" x=\\\"0 5 10.56\\\">sum</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 265.0305 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 268.676 208.0232)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 277.0159 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 280.6614 208.0232)\\\" x=\\\"0 3.33 8.89\\\">(1)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 292.8831 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 296.5286 208.0232)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.6517 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 316.2972 208.0232)\\\" x=\\\"0 5.56 11.12 16.12\\\">past</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.1986 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.8442 208.0232)\\\" x=\\\"0 5.56 11.12\\\">due</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.5287 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 359.1743 208.0232)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 394.2524 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 397.898 208.0232)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46 44.46\\\">Payments,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 445.1392 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 448.7847 208.0232)\\\" x=\\\"0 5.56 11.12 16.68 22.24 24.52\\\">unpaid</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 478.8726 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 482.5182 208.0232)\\\" x=\\\"0 2.78 8.34 13.9\\\">fees</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.4196 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 505.0651 208.0232)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.7497 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 525.3952 208.0232)\\\" x=\\\"0 5 10.56 12.84 18.4 23.4 26.18 31.74 36.74\\\">sales/use</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 196.7049)\\\" x=\\\"0 2.78 8.34 13.34 18.9 23.9\\\">taxes,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 67.3797 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 70.748 196.7049)\\\" x=\\\"0 3.33 8.89\\\">(2)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 82.9697 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 86.338 196.7049)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02\\\">70.00%</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 120.254 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 123.6223 196.7049)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 131.9621 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 135.3305 196.7049)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 149.2318 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 152.6001 196.7049)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 185.9546 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 189.3229 196.7049)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 199.8845 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 203.2528 196.7049)\\\" x=\\\"0 7.22 12.78 15.06 20.06\\\">which</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 228.8778 196.7049)\\\" x=\\\"0 3.3683\\\">  </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 235.6144 196.7049)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 249.5157 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 252.8841 196.7049)\\\" x=\\\"0 6.11 11.67 14.45 20.01\\\">Total</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.1741 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 278.5424 196.7049)\\\" x=\\\"0 7.22 12.78 17.78\\\">Cost</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.1039 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 302.4722 196.7049)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.68 32.24\\\">exceeds</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 339.7183 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 343.0866 196.7049)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 356.988 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 360.3563 196.7049)\\\" x=\\\"0 2.78 8.34 10.62 13.4 15.68 21.24\\\">Initial</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.8768 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 387.2451 196.7049)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46\\\">Payment,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 429.4863 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 432.8546 196.7049)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 437.9132 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 441.2815 196.7049)\\\" x=\\\"0 5.56 11.12 16.12\\\">any,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 460.1829 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 463.5512 196.7049)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 480.2358 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 483.6041 196.7049)\\\" x=\\\"0 5 10 15.56 21.12 26.68 32.24 34.52 40.08\\\">scheduled</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.2535 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 532.6218 196.7049)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 185.3865)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46 44.46 47.12 49.9 55.46 58.79 64.35 69.91 75.47 81.03 83.69 86.47 92.03 97.59 100.25 105.81 111.37 114.15 119.71 122.37 127.37 132.93 138.49 141.15 146.71 151.71 157.27 160.6 165.6 167.88 172.88 178.44 181.1 186.1 191.66 197.22 200.55 203.21 208.77 214.33 217.11 219.39 224.95 230.51 233.17 238.73 244.29 249.85 252.51 255.84 261.4 264.73 267.39 272.95 278.51 284.07 286.35 288.63 293.63 299.19 304.75 307.03 312.59 315.25 320.25 325.81 328.09 333.65 338.65 341.31 346.87 350.2 352.86 358.42 363.42 368.98 371.64 374.42 379.98 384.98 390.54 395.54\\\">Payments through the date you exercise your option and (3) applicable sales or use taxes.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 174.0682)\\\" x=\\\"0 7.22 12.78 15.44 22.11 27.67 32.67 38.23 41.56 43.84 46.62 51.62 54.28 61.5 67.06 72.62 78.18 83.18 85.46 88.24 90.9 98.12 103.68 109.24 114.8 117.08 120.41 125.97 131.53 134.31 136.97 144.19 149.75 152.41 157.41 162.97 167.97 173.53 176.86 179.14 181.92 186.92 189.58 195.14 200.7 206.26 211.82 216.82 219.1 221.88 224.54 226.82 231.82 234.48 237.81 243.37 248.93 254.49 256.77 260.1 265.66 271.22 273.88 279.44 285 290.56 296.12 299.45 302.11 304.89 310.45 312.73 317.73 320.39 327.06 332.62 335.95 341.51 347.07 355.4 360.96 366.52 369.3\\\">No Security Deposit Required. No security deposit is required under this Agreement.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 162.7498)\\\" x=\\\"0 5.56 11.12 16.68 21.68\\\">Lease</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 67.9461 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 72.4996 162.7498)\\\" x=\\\"0 6.11 11.67 15 23.33\\\">Term,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 98.608 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 103.1616 162.7498)\\\" x=\\\"0 6.67 12.23 17.79 22.79 28.35 33.91 39.47 45.03 50.59\\\">Subsequent</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 156.5405 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 161.094 162.7498)\\\" x=\\\"0 6.11 11.67 15 23.33 28.33\\\">Terms;</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 192.2024 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 196.7559 162.7498)\\\" x=\\\"0 7.22 12.78 18.34 23.9 31.12 36.68 38.96\\\">Renewal.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.504 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 243.0575 162.7498)\\\" x=\\\"0 6.67 12.23 17.79\\\">Your</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 264.1806 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 268.7341 162.7498)\\\" x=\\\"0 2.28 7.84 10.12 12.9 15.18 20.74\\\">initial</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.7566 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 296.3101 162.7498)\\\" x=\\\"0 2.28 7.84 13.4 18.4\\\">lease</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 320.2749 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 324.8285 162.7498)\\\" x=\\\"0 2.78 8.34 11.67\\\">term</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 344.8285 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 349.382 162.7498)\\\" x=\\\"0 5.56 10.56 16.12 18.4 21.73 27.29\\\">expires</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 381.6769 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 386.2305 162.7498)\\\" x=\\\"0 5.56\\\">60</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 397.3535 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 401.907 162.7498)\\\" x=\\\"0 5.56 11.12 16.12\\\">days</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 423.0301 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 427.5836 162.7498)\\\" x=\\\"0 2.78 6.11 11.67\\\">from</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.5836 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 452.1372 162.7498)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.0385 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 470.5921 162.7498)\\\" x=\\\"0 2.28 7.84 10.62 16.18\\\">later</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 490.1038 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 494.6573 162.7498)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 502.9972 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 507.5507 162.7498)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.4521 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 526.0056 162.7498)\\\" x=\\\"0 6.67 11.67 17.23 22.79 27.79 30.57 36.13\\\">Expected</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 151.4315)\\\" x=\\\"0 7.22 12.78 15.06 17.34 22.34 27.9 31.23\\\">Delivery</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 76.9353 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.1545 151.4315)\\\" x=\\\"0 7.22 12.78 15.56\\\">Date</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 102.2775 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 106.4967 151.4315)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 115.3883 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 119.6074 151.4315)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 133.5088 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 137.7279 151.4315)\\\" x=\\\"0 5.56 11.12 13.9\\\">date</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 157.1908 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 161.4099 151.4315)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 172.533 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 176.7521 151.4315)\\\" x=\\\"0 7.22 12.78 15.06 20.06\\\">which</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 202.3771 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 206.5963 151.4315)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 220.4976 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 224.7168 151.4315)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.5097 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 266.7289 151.4315)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 274.0091 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 278.2283 151.4315)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29 32.85\\\">provided</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 316.6463 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 320.8654 151.4315)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.757 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 333.9761 151.4315)\\\" x=\\\"0 5.56 11.12 13.4 15.68 20.68 26.24 29.57 35.13\\\">delivered</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 374.6744 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 378.8935 151.4315)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 387.2334 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 391.4525 151.4315)\\\" x=\\\"0 5 10.56 16.12\\\">you.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 410.3539 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 414.573 151.4315)\\\" x=\\\"0 7.22 12.78 15.56 17.84\\\">Until</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.6951 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 438.9142 151.4315)\\\" x=\\\"0 3.33 5.61\\\">(i)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.8546 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 452.0738 151.4315)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.1968 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 472.416 151.4315)\\\" x=\\\"0 5.56 11.12 13.9 19.46 21.74\\\">obtain</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.7206 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 503.9398 151.4315)\\\" x=\\\"0 5.56 12.78 18.34 23.9 27.23 32.23 37.79 40.07\\\">ownership</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.5794 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.7986 151.4315)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 140.1131)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 78.493 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 82.2535 140.1131)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 92.815 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 96.5756 140.1131)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29 32.85\\\">provided</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 134.9936 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 138.7541 140.1131)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.5959 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 150.3565 140.1131)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 165.9766 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 169.7371 140.1131)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 221.4315 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 225.192 140.1131)\\\" x=\\\"0 3.33 5.61 7.89\\\">(ii)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 236.4127 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 240.1733 140.1131)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.2963 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 260.0569 140.1131)\\\" x=\\\"0 2.78 8.34 11.67 20 22.28 27.84 33.4 36.18\\\">terminate</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 301.8001 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 305.5606 140.1131)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 321.1807 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 324.9413 140.1131)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 373.8573 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 377.6179 140.1131)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.1794 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 391.9399 140.1131)\\\" x=\\\"0 5.56 11.12 14.45 22.78 25.06 27.84 30.62 36.18\\\">permitted</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 433.6831 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 437.4437 140.1131)\\\" x=\\\"0 5.56 11.12 14.45 20.01 25.57 31.13 36.69 42.25\\\">hereunder</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 483.0345 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 486.795 140.1131)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 503.4796 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 507.2402 140.1131)\\\" x=\\\"0 5 10.56 13.89 17.22 22.78 28.34 33.9 39.46\\\">surrender</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 550.038 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.7986 140.1131)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 128.7947)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 78.493 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.5631 128.7947)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 89.4049 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 92.4749 128.7947)\\\" x=\\\"0 2.28 5.06\\\">its</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 102.5335 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 105.6036 128.7947)\\\" x=\\\"0 5.56 8.89 11.17 16.73 19.01 24.57 30.13\\\">original</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 138.0206 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 141.0907 128.7947)\\\" x=\\\"0 5 10.56 16.12 21.68 23.96 26.74 29.02 34.58 40.14\\\">condition,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 184.0155 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 187.0856 128.7947)\\\" x=\\\"0 2.28 7.84 12.84\\\">less</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 204.9274 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 207.9975 128.7947)\\\" x=\\\"0 3.33 8.89 14.45 19.45 25.01 30.57 36.13 41.69 43.97\\\">reasonable</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.5385 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 260.6086 128.7947)\\\" x=\\\"0 7.22 12.78 18.34\\\">wear</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 282.2834 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 285.3535 128.7947)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.038 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 305.1081 128.7947)\\\" x=\\\"0 2.78 8.34 13.9 17.23\\\">tear,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 325.1179 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 328.188 128.7947)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.7495 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 341.8196 128.7947)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 350.1594 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 353.2295 128.7947)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 367.1309 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 370.201 128.7947)\\\" x=\\\"0 5.56 11.12\\\">end</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 386.8855 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 389.9556 128.7947)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 398.2955 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 401.3656 128.7947)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 406.9271 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 409.9972 128.7947)\\\" x=\\\"0 2.28 7.84 13.4 18.4\\\">lease</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 433.962 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 437.0321 128.7947)\\\" x=\\\"0 2.78 8.34 11.67 20\\\">term,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 459.8104 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 462.8805 128.7947)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 471.7721 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 474.8422 128.7947)\\\" x=\\\"0 3.33 5.61 7.89 10.17\\\">(iii)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 488.3432 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 491.4133 128.7947)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 504.1965 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 507.2666 128.7947)\\\" x=\\\"0 2.78 8.34 11.67 20 22.28 27.84 33.4 36.18\\\">terminate</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.0097 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 552.0798 128.7947)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 117.4764)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 89.616 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 93.7725 117.4764)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 101.6143 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 105.7709 117.4764)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 111.3324 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 115.4889 117.4764)\\\" x=\\\"0 8.33 13.89 19.45 25.01 30.57\\\">manner</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 149.3952 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 153.5517 117.4764)\\\" x=\\\"0 5.56 11.12 14.45 22.78 25.06 27.84 30.62 36.18\\\">permitted</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 195.2948 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 199.4514 117.4764)\\\" x=\\\"0 5.56 11.12 14.45 20.01 25.57 31.13 36.69 42.25 45.58\\\">hereunder,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.8205 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 251.977 117.4764)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 267.5971 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 271.7537 117.4764)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 320.6697 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 324.8262 117.4764)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.8887 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 343.0452 117.4764)\\\" x=\\\"0 5.56 11.12 13.9 19.46 27.79 33.35 36.13 38.41 43.41 48.97 51.25 53.53\\\">automatically</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 401.5804 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 405.7369 117.4764)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 422.4215 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 426.578 117.4764)\\\" x=\\\"0 3.33 8.89 14.45 20.01 25.57 28.35 33.91 39.47 41.75\\\">repeatedly</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 473.3358 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 477.4923 117.4764)\\\" x=\\\"0 3.33 8.89 14.45 20.01\\\">renew</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 504.7287 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 508.8852 117.4764)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 520.5551 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 524.7116 117.4764)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.74 24.02 29.58 35.14 40.7\\\">additional</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 106.158)\\\" x=\\\"0 2.28 7.84 13.4 18.4 23.96 26.62 29.4 34.96 38.29 46.62 51.62 54.4 57.06 62.62 68.18 73.18 78.74 81.4 86.96 92.52 95.18 100.74 106.3 111.3 116.3 118.96 121.24 126.8 129.46 131.74 137.3 142.86 148.42 151.2 156.76\\\">lease terms, each 60 days in length.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 94.8397)\\\" x=\\\"0 8.33 13.89 16.17 21.73 24.51 30.07 35.63 41.19 46.75 51.75\\\">Maintenance</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 98.0193 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 101.2487 94.8397)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 109.5885 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 112.8178 94.8397)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 126.7192 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 129.9485 94.8397)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 170.5198 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 173.7491 94.8397)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 191.5421 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 194.7714 94.8397)\\\" x=\\\"0 5.56 8.89\\\">are</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.2246 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 212.4539 94.8397)\\\" x=\\\"0 3.33 8.89 13.89 19.45 25.01 30.57 35.57 37.85 43.41 45.69\\\">responsible</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 263.7136 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 266.943 94.8397)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 278.6129 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 281.8422 94.8397)\\\" x=\\\"0 8.33 13.89 16.17 21.73 24.51 30.07 32.35 37.91 40.19 45.75\\\">maintaining</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 333.1606 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 336.3899 94.8397)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 345.2815 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 348.5108 94.8397)\\\" x=\\\"0 5 10.56 13.89 18.89 21.17 26.17 28.45 34.01\\\">servicing</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.086 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 391.3154 94.8397)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 405.2167 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 408.446 94.8397)\\\" x=\\\"0 5.56 8.89 14.45 20.01 25.57 28.9 31.68\\\">property</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 445.1306 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 448.3599 94.8397)\\\" x=\\\"0 7.22 12.78 15.06 17.34\\\">while</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 471.2652 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 474.4945 94.8397)\\\" x=\\\"0 2.28\\\">it</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 479.5531 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 482.7825 94.8397)\\\" x=\\\"0 2.28 5.06\\\">its</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 492.8411 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 496.0704 94.8397)\\\" x=\\\"0 5.56 11.12 13.4 18.96\\\">being</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 520.5968 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 523.8261 94.8397)\\\" x=\\\"0 2.28 7.84 13.4 18.4 23.96 29.52\\\">leased.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 556.1308 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 559.3601 94.8397)\\\" x=\\\"0 2.78\\\">In</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 83.5213)\\\" x=\\\"0 5.56 10.56 15.56 21.12 24.45 30.01 35.57 41.13 46.13\\\">accordance</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 92.3992 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 95.7041 83.5213)\\\" x=\\\"0 7.22 9.5 12.28\\\">with</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 113.5459 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 116.8509 83.5213)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 132.471 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 135.7759 83.5213)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 187.4702 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 190.7752 83.5213)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 206.8982 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.2031 83.5213)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 224.2656 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 227.5706 83.5213)\\\" x=\\\"0 5 10.56 16.12 21.68 27.24 32.24\\\">conduct</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.595 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 265.8999 83.5213)\\\" x=\\\"0 5.56 7.84\\\">all</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.022 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 279.3269 83.5213)\\\" x=\\\"0 8.33 13.89 16.17 21.73 24.51 30.07 35.63 41.19 46.75 51.75 57.31\\\">maintenance,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 339.4246 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 342.7295 83.5213)\\\" x=\\\"0 3.33 8.89 14.45 20.01 22.29 25.62 30.62\\\">repairs,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 376.1328 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 379.4377 83.5213)\\\" x=\\\"0 5.56 11.12 16.12 21.68 27.24\\\">upkeep</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 412.2454 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 415.5503 83.5213)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 432.2349 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 435.5398 83.5213)\\\" x=\\\"0 5 10.56 13.89 19.45\\\">care.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 457.7712 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 461.0762 83.5213)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.6328 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 469.9377 83.5213)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.0608 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 489.3657 83.5213)\\\" x=\\\"0 8.33 13.89 19.45 25.01 27.79 33.35 38.35 41.13 46.69 50.02 55.58 58.91 61.13\\\">manufacturer’s</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 555.5034 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 558.8083 83.5213)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 83.5213)\\\" x=\\\"0\\\"> </text></g><clipPath id=\\\"clip0-11\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip0-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 546.6561 L 573.6 546.6561 L 573.6 545.6561 L 34.8 545.6561 L 34.8 546.6561 z \\\"/><path clip-path=\\\"url(#clip0-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.6 545.6561 L 573.6 545.6561 L 573.6 530.3377 L 572.6 530.3377 L 572.6 545.6561 z \\\"/><path clip-path=\\\"url(#clip0-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 545.6561 L 35.8 545.6561 L 35.8 530.3377 L 34.8 530.3377 L 34.8 545.6561 z \\\"/><path clip-path=\\\"url(#clip0-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 530.3377 L 573.6 530.3377 L 573.6 529.3377 L 34.8 529.3377 L 34.8 530.3377 z \\\"/><path clip-path=\\\"url(#clip0-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 81.9217 L 573.6 81.9217 L 573.6 80.9217 L 34.8 80.9217 L 34.8 81.9217 z \\\"/><path clip-path=\\\"url(#clip0-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.6 529.3377 L 573.6 529.3377 L 573.6 81.9217 L 572.6 81.9217 L 572.6 529.3377 z \\\"/><path clip-path=\\\"url(#clip0-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 529.3377 L 35.8 529.3377 L 35.8 81.9217 L 34.8 81.9217 L 34.8 529.3377 z \\\"/><g clip-path=\\\"url(#clip0-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 36.5264)\\\" x=\\\"0 6.498 11.997 14.391 16.785 21.789 26.793 29.295 34.299 39.303 44.307 504 506.3906 508.7812 511.1719 513.5625 515.9531 518.3438 520.7344 523.125 525.5156\\\">UT  07/2019          </text></g><g clip-path=\\\"url(#clip0-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 26.3398)\\\" x=\\\"0 6.003 11.007 16.011 21.015\\\">Page </text></g><g clip-path=\\\"url(#clip0-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 55.8097 26.3398)\\\" x=\\\"0\\\">1</text></g><g clip-path=\\\"url(#clip0-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.815 26.3398)\\\" x=\\\"0 2.394 7.398 9.9\\\"> of </text></g><g clip-path=\\\"url(#clip0-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 73.1021 26.3398)\\\" x=\\\"0\\\">7</text></g><g clip-path=\\\"url(#clip0-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#d9d9d9\\\" style=\\\"font-family:f0-0; font-size:54pt; white-space:pre\\\" transform=\\\"matrix(0.707 0.707 0.707 -0.707 135.6027 198.5094)\\\" x=\\\"0 56.016 96.048 136.08 176.112 216.144 236.16 284.184 324.216 344.232 364.248 416.232 456.264 480.24\\\">Qoppa Software</text></g><g clip-path=\\\"url(#clip0-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#002ba6\\\" style=\\\"font-family:f0-0; font-size:9pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.932 772)\\\" x=\\\"0 9.336 16.008 22.68 29.352 36.024 39.36 47.364 54.036 57.372 60.708 69.372 76.044 80.04 86.712 90.048 94.044 97.38 104.712 111.384 115.38 118.716 126.72 132.72 139.392 142.056 148.728 155.4 158.736 161.4 168.072 174.744 178.08 187.416 194.088 196.752 202.752 206.088 210.084 213.42 220.092 223.428 226.764 233.436 239.436 242.772 246.108 249.444 258.108 266.772 275.436 278.772 285.444 292.116 298.788 305.46 312.132 315.468 321.468 328.14\\\">Qoppa Software - For Evaluation Only - https://www.qoppa.com</text></g></g></svg></svg></g></svg><br>\\n<?xml version='1.0' encoding='UTF-8'?><svg id=\\\"qoppa_document\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" version=\\\"1.1\\\" xmlns=\\\"http://www.w3.org/2000/svg\\\" xmlns:xlink=\\\"http://www.w3.org/1999/xlink\\\"><!-- jPDFWeb v2019R1.03 - Demo Version --><style>title p { display: block; }</style><g id=\\\"qoppa_viewxform\\\" transform=\\\"matrix(1 0 0 1 0 0)\\\"><style type=\\\"text/css\\\">@font-face {font-family:f1-0;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f1-1;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f1-2;src:url(\\\"data:application/font-woff;charset=utf-8;base64,d09GRgABAAAAAAW8AAoAAAAABzQAAQABAAAAAAAAAAAAAAAAAAAAAAAAAABPUy8yAAAA9AAAADcAAABWWalZZmNtYXAAAAEsAAAAUwAAAGwBegIKZ2x5ZgAAAYAAAALfAAADgId/tkZoZWFkAAAEYAAAADMAAAA2GHlkumhoZWEAAASUAAAAIAAAACQGIAKxaG10eAAABLQAAAA0AAAARCRzAuxsb2NhAAAE6AAAACQAAAAkBYYGdm1heHAAAAUMAAAAGAAAACAAFAAzbmFtZQAABSQAAACMAAABPhepMhlwb3N0AAAFsAAAAAwAAAAgAAMAAHicY2Bk8mKcwMDKwMDUxbSbARlwMeogc/8DATI/MCDAkUEBCG8y3fifzBDFdINhLkwOAMp0DLgAeJxjYGBgZGAGYgYGHgYWhgQgLcIgABRhYVBgcGRwZXBn8GTwZwhmCGWI//8fKAsSdQaL+sBE/z/+f/j/of8H/x/4v+//7v+7/m8Em4cBADR/GXUAeJx9kk1ME0EYhmcGu42lUTZQQEgKy5oWQktLt0vbAG20WwJ0m1YskKalbKG7EH7CQYkajAnFGIrCRaUGEE1MxL+bBw/ECzdT0YsHUG8cvZDozXTrbFuMJ2eyySQz7/e+37MfQAAvtImyAAENALAcQtpIqWnIwL1b1+Hnqcvyl+A4JCV4Hgbkt/L3w0P8Fj8EbflfaBsdAAoAVZPRwNodHYytprqGNhgNdJOa0FXVVDM2R4eDIdQEXMhE8crMDwxoEgTLXpr14DUdttvVCU0wpB1PvnqdTHo8E97m5n7/vRU/39ISuOJ241QhnO8J9iQACUAl00hWULRDKczajYZWGDqCM/KDo/jSpsvlcm4toay8LWfCfb23F3t6lJyKXsT6cgBaIEnpShuJuR9IJUfgXXkevkPZwa+DP//29QH3Rf+/L5ZmKZI2EjC9KQijoxuLQ4PlY4TLFZvjvBw3t8G/h7Xe2j5tUnzxUhQ97kmf0ejnV9I8L80Oyff9w4pXFDvu4mxlADA0yewKggK3mFmDj6pCZoakkEbuicMYyubSJ/fH+F4LAEWTZXQZidX1kEHHkf3wfmRtb28NCbmnhS+be4PCJU0Ka04rGqgIcGWUGpPTEQFeiyJ77iN+m0UsZq4w+IYZnAUN2A53r6tSE3SJRmWJ/QkMeGcdAxDWM0IiIaxP+ziOm5rx+TgfOpCknR1RFKXnO5KUmwnwy7h9nk8v8wFQYG3CPhPYp73I2shUF2dGKa/sf+CfuBW3kgfGH/n9p2Lqzq5wsN1qsy0ssB09vqs3+vtVI2eeBU2tdJMw6nLigerTermpkMHQSDk76+vr6ixtgWGn0+WUUnp9uxlX0+mqWk29I91dCiecSeF0rpTJwOIfUJrlwlGtzPPkTbe7oiJutURjFovQ0OBxa63WCxeH4LacXDWbTOZVuCWPpbrdej2A+d/5cWTOP1T+s4piKWTOfUK2xzYA/gBtBuJcAHicY2BkYGAA4rxdv17H89t8ZeBmfgEUYbhtLnAWRv///T+Z6QPTDaA6DgYmkCgAl1oOtgB4nGNgZGBguvE/mSGK2fH/7/+/mT4wAEVQgCAAvv0H1HicY2CAAEZfCGaaDcSXGPSAOADIDmDmYtBjFGOIZtIBsh2BYpcgYkA5HbAajf+/AR7DC3wAAAAAAAAAAAAAABwAUABwAIgAvgDKANoA9AEKAT4BiAGyAcB4nGNgZGBgEGQwYmBiAAFGBjQAAAcrAEh4nJWOMQ6CUBBEH4KKrZUlpRURQkUptZWJhZ1RURPiJ0BD41E8BudzhH8AyGaTN7OTyQJLzrg43gpYawd22EoNPMMntewSsrfsiUvLczZ8LS/kd2QYXVsqXjx40nAQXaUNtTaXE3Dkwlv6T/c+m6vfUHAbnf+QEE9Mn3pdyzFKBET6eaeZ1PIDR/8t33icY2BmwAsAAH0ABA==\\\");}@font-face {font-family:f1-3;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}</style><svg id=\\\"qoppa_page_p1\\\" class=\\\"qoppa_page\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\"><rect class=\\\"qoppa_pageborder\\\" x=\\\"0.5pt\\\" y=\\\"0.5pt\\\" width=\\\"611pt\\\" height=\\\"791pt\\\" fill=\\\"none\\\" /><svg class=\\\"qoppa_pagecontents\\\" x=\\\"0pt\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" viewBox=\\\"0 0 612 792\\\" ><g class=\\\"qoppa_contentstream\\\" transform=\\\"matrix(1 0 0 -1 0 792)\\\" fill=\\\"black\\\" stroke=\\\"black\\\" stroke-width=\\\"1\\\" stroke-linecap=\\\"butt\\\" stroke-linejoin=\\\"miter\\\" stroke-miterlimit=\\\"10\\\"><clipPath id=\\\"clip1-1\\\"><path d=\\\"M 35 487 L 574 487 L 574 770 L 35 770 L 35 487 z \\\"/></clipPath><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 759.4812)\\\" x=\\\"0 5 10.56 12.84 15.12 20.68 24.01 26.23\\\">seller’s</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 71.9353 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 75.2187 759.4812)\\\" x=\\\"0 7.22 12.78 16.11 19.44 25 30.56 33.34\\\">warranty</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 113.5635 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 116.8468 759.4812)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 124.1271 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 127.4105 759.4812)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 135.2523 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 138.5357 759.4812)\\\" x=\\\"0 2.78 8.34 11.67 16.67\\\">force</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.7671 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 164.0505 759.4812)\\\" x=\\\"0 7.22 12.78 18.34\\\">when</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 187.9567 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 191.2401 759.4812)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 207.3631 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.6465 759.4812)\\\" x=\\\"0 5.56 10.56 16.12 21.68 23.96 27.29\\\">acquire</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 243.503 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 246.7863 759.4812)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 260.6877 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 263.9711 759.4812)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 304.5424 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 307.8258 759.4812)\\\" x=\\\"0 2.28\\\">it</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.8844 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 316.1677 759.4812)\\\" x=\\\"0 5 10.56 16.12 18.4\\\">shall</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 336.8513 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 340.1347 759.4812)\\\" x=\\\"0 5.56\\\">be</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.2578 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 354.5411 759.4812)\\\" x=\\\"0 2.78 6.11 11.67 17.23 22.23 25.01 30.57 33.9 37.23 42.79\\\">transferred</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.8956 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 406.179 759.4812)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 414.5188 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 417.8022 759.4812)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 433.9253 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 437.2086 759.4812)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 442.2672 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 445.5506 759.4812)\\\" x=\\\"0 5.56 7.84 10.12 15.68 22.9 28.46\\\">allowed</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 479.5789 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 482.8623 759.4812)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 493.4238 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 496.7072 759.4812)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 510.6086 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 513.892 759.4812)\\\" x=\\\"0 2.78 8.34 11.67 20\\\">terms</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 538.892 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 542.1754 759.4812)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 550.5152 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.7986 759.4812)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 748.1629)\\\" x=\\\"0 7.22 12.78 16.11 19.44 25 30.56 33.34 38.34\\\">warranty.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 736.8445)\\\" x=\\\"0 5.56 11.12 16.12 18.9\\\">Lost,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 62.3797 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 65.5493 736.8445)\\\" x=\\\"0 6.67 9.45 15.01 17.29 22.85 28.41\\\">Stolen,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 96.7407 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 99.9104 736.8445)\\\" x=\\\"0 7.22 12.78 21.11 26.67 32.23 37.79 43.35\\\">Damaged,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.0481 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 149.2177 736.8445)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 158.1093 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 161.279 736.8445)\\\" x=\\\"0 7.22 12.78 17.78 20.56 23.89 29.45 34.45 40.01\\\">Destroyed</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 206.8552 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.0248 736.8445)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 250.5961 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 253.7657 736.8445)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.3224 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 262.492 736.8445)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.3934 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 279.563 736.8445)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 317.356 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 320.5256 736.8445)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 327.8059 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 330.9756 736.8445)\\\" x=\\\"0 2.28 7.84 12.84 15.62\\\">lost,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 349.374 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 352.5437 736.8445)\\\" x=\\\"0 5 7.78 13.34 15.62 21.18 26.74\\\">stolen,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 382.0651 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 385.2348 736.8445)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57 36.13\\\">damaged</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 426.934 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 430.1037 736.8445)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 438.9952 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 442.1649 736.8445)\\\" x=\\\"0 5.56 11.12 16.12 18.9 22.23 27.79 32.79 38.35 43.91\\\">destroyed,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 488.8592 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 492.0289 736.8445)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 508.1519 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 511.3216 736.8445)\\\" x=\\\"0 5.56 11.12 14.45 20.01\\\">agree</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 536.8977 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 540.0674 736.8445)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 548.4072 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 551.5769 736.8445)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 725.5262)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 51.2615 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 55.736 725.5262)\\\" x=\\\"0 5.56\\\">at</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 64.0758 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 68.5503 725.5262)\\\" x=\\\"0 5.56 11.12 16.12\\\">once</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 90.2349 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 94.7094 725.5262)\\\" x=\\\"0 5.56\\\">an</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 105.8324 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 110.3069 725.5262)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 143.6614 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.1359 725.5262)\\\" x=\\\"0 5.56 11.12 16.68 22.24\\\">equal</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 172.6622 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 177.1367 725.5262)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 185.4766 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 189.951 725.5262)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 203.8524 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 208.3269 725.5262)\\\" x=\\\"0 2.28 7.84 12.84 17.84 23.4\\\">lesser</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 235.0603 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 239.5348 725.5262)\\\" x=\\\"0 5.56 8.34\\\">of:</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 250.6529 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 255.1274 725.5262)\\\" x=\\\"0 3.33 8.89\\\">(1)</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 267.3491 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 271.8236 725.5262)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 285.7249 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 290.1994 725.5262)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79 40.01\\\">Property’s</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.2141 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 339.6885 725.5262)\\\" x=\\\"0 2.78 8.34 10.62\\\">fair</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 353.6387 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 358.1132 725.5262)\\\" x=\\\"0 8.33 13.89 17.22 22.22 27.78\\\">market</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.6747 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 393.1492 725.5262)\\\" x=\\\"0 5 10.56 12.84 18.4 23.96\\\">value,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.8924 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 424.3669 725.5262)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.9284 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 439.4029 725.5262)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.7427 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 452.2172 725.5262)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.1185 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 470.593 725.5262)\\\" x=\\\"0 2.78 5.06 13.39\\\">time</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.5432 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 494.0177 725.5262)\\\" x=\\\"0 2.28\\\">it</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.0763 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 503.5508 725.5262)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 510.831 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 515.3055 725.5262)\\\" x=\\\"0 2.28 7.84 12.84 15.62\\\">lost,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 533.704 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 538.1785 725.5262)\\\" x=\\\"0 5 7.78 13.34 15.62 21.18 26.74\\\">stolen,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 714.2078)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57 36.13\\\">damaged</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 82.3992 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 86.9016 714.2078)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 95.7932 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 100.2955 714.2078)\\\" x=\\\"0 5.56 11.12 16.12 18.9 22.23 27.79 32.79 38.35\\\">destroyed</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 144.2115 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.7139 714.2078)\\\" x=\\\"0 3.33 8.89 14.45 17.23 22.79 26.12 34.45 36.73 42.29 47.85\\\">(determined</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 202.1319 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 206.6342 714.2078)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 217.1958 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 221.6981 714.2078)\\\" x=\\\"0 5.56 10.56\\\">us,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 235.038 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 239.5403 714.2078)\\\" x=\\\"0 5.56 10.56 12.84 18.4\\\">using</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 263.5052 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 268.0075 714.2078)\\\" x=\\\"0 5.56\\\">an</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 279.1306 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 283.6329 714.2078)\\\" x=\\\"0 2.28 7.84 13.4 18.96 23.96 26.74 30.07\\\">industry</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 318.7062 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 323.2085 714.2078)\\\" x=\\\"0 5 10.56 12.84 18.4\\\">value</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 347.1734 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 351.6758 714.2078)\\\" x=\\\"0 5.56 11.12 13.4 18.96\\\">guide</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 376.2021 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 380.7045 714.2078)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.4877 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 397.99 714.2078)\\\" x=\\\"0 5 10.56 12.84 18.4 23.4 26.18\\\">select,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 426.95 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 431.4524 714.2078)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 436.511 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 441.0133 714.2078)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 457.1364 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 461.6387 714.2078)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.919 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 473.4214 714.2078)\\\" x=\\\"0 5.56 10.56 16.12 18.4 20.68 26.24 31.8 34.08 39.64 42.97\\\">available);</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 519.1782 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 523.6806 714.2078)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 532.5722 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 537.0745 714.2078)\\\" x=\\\"0 3.33 8.89\\\">(2)</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.2962 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.7986 714.2078)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 702.8895)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57 33.35 36.01 41.01 46.57 52.13 54.79 62.01 67.57 73.13 75.41 80.97 83.63 89.19 94.75 100.31 105.87 108.53 111.31 116.87 119.53 125.09 130.65 135.65 138.31 143.87 146.65 149.31 154.31 159.87 164.87 170.43 173.09 175.87 178.15 186.48 192.04 194.7 197.48 203.04 205.7 211.26 216.26 221.82 225.15 230.15 232.43 237.43 242.99 245.65 248.43 253.99 259.55 262.21 267.77 273.33 278.89 282.22 289.44 295 300 302.66 310.44 316 318.78 321.06 326.62 332.18 334.84 340.4 343.73 346.39 353.06 358.62 361.95 364.23 369.23 371.89 378.56 384.12 389.12 392.45 400.23 405.79 408.57 411.23 419.01 424.57 427.35 429.63 435.19 440.75 443.53 446.19 451.75 456.75 459.41 464.97 470.53 476.09 478.37 480.65 485.65 491.21 496.77 499.05 504.61\\\">amount you would need to pay at such time to exercise the 100-Day Option or Early Buy-Out Option, as applicable.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 691.5711)\\\" x=\\\"0 7.22 12.78 15.06 20.62 25.62 28.4 33.96 36.74 42.3 50.63 56.19 61.75\\\">Reinstatement</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 105.2361 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 108.6807 691.5711)\\\" x=\\\"0 7.22 9.5 15.06 20.62 23.4 28.4\\\">Rights.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 139.8623 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 143.3069 691.5711)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 148.8635 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 152.3081 691.5711)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 168.4311 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 171.8757 691.5711)\\\" x=\\\"0 5.56 8.89\\\">are</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 186.3288 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 189.7734 691.5711)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 197.6152 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 201.0597 691.5711)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 27.3\\\">default</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.1428 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 234.5873 691.5711)\\\" x=\\\"0 5.56 11.12 16.68 19.46 25.02\\\">and/or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.9418 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 266.3864 691.5711)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.2877 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 283.7323 691.5711)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 321.5253 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 324.9698 691.5711)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 332.2501 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 335.6947 691.5711)\\\" x=\\\"0 5 10.56 13.89 17.22 22.78 28.34 33.9 39.46 42.79 48.35\\\">surrendered</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 389.6156 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 393.0601 691.5711)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 401.9517 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 405.3963 691.5711)\\\" x=\\\"0 3.33 8.89 14.45 20.01 25.01 30.01 35.57 40.57 45.57 51.13 56.69\\\">repossessed,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 464.8738 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 468.3184 691.5711)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.4414 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 487.886 691.5711)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 506.7776 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 510.2222 691.5711)\\\" x=\\\"0 3.33 8.89 11.17 16.73 21.73 24.51 30.07 32.85\\\">reinstate</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 548.6353 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 552.0798 691.5711)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 680.2527)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 89.616 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 92.7055 680.2527)\\\" x=\\\"0 7.22 9.5 12.28 17.84 23.4 28.96\\\">without</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 124.4487 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 127.5382 680.2527)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68\\\">losing</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 153.7833 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 156.8728 680.2527)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 172.9958 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 176.0853 680.2527)\\\" x=\\\"0 3.33 5.61 11.17 16.73 19.51\\\">rights</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 200.597 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 203.6865 680.2527)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 212.5781 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 215.6676 680.2527)\\\" x=\\\"0 5.56 11.12 13.9 16.18 21.74 27.3\\\">options</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.9723 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 251.0618 680.2527)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 261.6234 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 264.7129 680.2527)\\\" x=\\\"0 5.56 11.12 16.12 18.4 23.96 29.52\\\">paying:</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 297.0175 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 300.1071 680.2527)\\\" x=\\\"0 3.33 5.61\\\">(i)</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 309.0475 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 312.137 680.2527)\\\" x=\\\"0 5.56 7.84\\\">all</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 322.2591 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 325.3485 680.2527)\\\" x=\\\"0 5.56 11.12 16.12\\\">past</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 344.2499 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 347.3394 680.2527)\\\" x=\\\"0 5.56 11.12\\\">due</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 364.024 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 367.1135 680.2527)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01 30.57 35.57\\\">charges;</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 405.468 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 408.5575 680.2527)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 425.242 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 428.3315 680.2527)\\\" x=\\\"0 3.33 5.61 7.89\\\">(ii)</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 439.5523 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 442.6418 680.2527)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.7003 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 450.7898 680.2527)\\\" x=\\\"0 5.56 7.84 10.12 15.68 22.9 28.46\\\">allowed</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.8182 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 487.9077 680.2527)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 498.4692 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 501.5587 680.2527)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64\\\">applicable</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 546.7686 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 549.8581 680.2527)\\\" x=\\\"0 2.28 7.84 15.06\\\">law,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 668.9344)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 54.6014 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 59.0196 668.9344)\\\" x=\\\"0 3.33 8.89 14.45 19.45 25.01 30.57 36.13 41.69 43.97\\\">reasonable</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 108.5606 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 112.9789 668.9344)\\\" x=\\\"0 5 10.56 15.56 18.34\\\">costs</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.3187 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 140.737 668.9344)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 149.0768 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 153.4951 668.9344)\\\" x=\\\"0 5.56 7.84 12.84 17.84 23.4\\\">pickup</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 182.4599 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 186.8782 668.9344)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 203.5627 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 207.981 668.9344)\\\" x=\\\"0 3.33 8.89 14.45 20.01 22.29 24.57 29.57 35.13 38.46 43.46\\\">redelivery.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 254.2261 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 258.6444 668.9344)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.4373 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 280.8556 668.9344)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.7472 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 304.1654 668.9344)\\\" x=\\\"0 5.56 10.56 16.12 19.45 24.45 26.73 31.73\\\">exercise</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 341.4604 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 345.8786 668.9344)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 365.3317 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 369.75 668.9344)\\\" x=\\\"0 3.33 8.89 11.17 16.73 21.73 24.51 30.07 32.85 38.41 46.74 52.3 57.86\\\">reinstatement</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.3945 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 434.8128 668.9344)\\\" x=\\\"0 3.33 5.61 11.17 16.73\\\">right</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.3245 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 458.7428 668.9344)\\\" x=\\\"0 7.22 9.5 12.28 17.84 20.12\\\">within</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.4263 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 488.8446 668.9344)\\\" x=\\\"0 5.56 11.12\\\">180</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 505.5292 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 509.9474 668.9344)\\\" x=\\\"0 5.56 11.12 16.12\\\">days</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 531.0705 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 535.4887 668.9344)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 543.8286 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 548.2468 668.9344)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 657.616)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 27.3 30.08 32.74 38.3 41.63 44.29 49.29 54.85 58.18 61.51 67.07 72.63 78.19 83.75 87.08 89.86 93.19 98.75 104.31 109.87 114.87 119.87 125.43 130.43 135.43 137.71 143.27 148.83 151.49 157.05 159.83 162.49 165.27 170.83 176.39 179.05 185.72 189.05 194.61 200.17 205.73 209.06 211.84 216.84 219.5 225.06 228.39 231.05 236.05 241.61 246.61 252.17 254.83 257.11 262.67 268.23 273.79 279.35 282.68 285.34 290.9 296.46 299.79 302.07 307.63 313.19 315.85 321.41 324.74 330.3 335.3 337.58 343.14 348.7 354.26 356.92 359.7 365.26 367.92 372.92 378.48 384.04 386.7 392.26 397.82 403.38 408.94 412.27 414.93 420.49 426.05 431.61 433.89 436.17 441.17 446.73 452.29 454.57 460.13 462.79 465.07 470.63 477.85\\\">default or surrender/repossession of the Property or such longer period provided to you under applicable law.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 646.2977)\\\" x=\\\"0 7.22 9.5 15.06 20.62\\\">Right</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 64.1033 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 66.9139 646.2977)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 75.2537 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 78.0643 646.2977)\\\" x=\\\"0 6.11 11.67 15 23.33 25.61 31.17 36.73 39.51 45.07\\\">Terminate.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 125.9158 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 128.7263 646.2977)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.5193 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 149.3299 646.2977)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 168.2215 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 171.032 646.2977)\\\" x=\\\"0 2.78 8.34 11.67 20 22.28 27.84 33.4 36.18\\\">terminate</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 212.7752 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 215.5857 646.2977)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 235.0388 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 237.8494 646.2977)\\\" x=\\\"0 2.28 7.84 13.4 18.4\\\">lease</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 261.8142 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 264.6248 646.2977)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.9793 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 305.7898 646.2977)\\\" x=\\\"0 5.56 11.12 13.4 15.68 21.24 26.8 29.58 31.86 37.42 42.98\\\">obligations</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 353.7781 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 356.5886 646.2977)\\\" x=\\\"0 5.56 11.12 16.68 22.24\\\">under</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 382.1648 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 384.9753 646.2977)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 400.5955 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 403.406 646.2977)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 452.322 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 455.1326 646.2977)\\\" x=\\\"0 7.22 9.5 12.28 17.84 23.4 28.96\\\">without</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.8757 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 489.6863 646.2977)\\\" x=\\\"0 5.56 11.12 16.68 22.24 24.52 27.3\\\">penalty</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.991 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 524.8015 646.2977)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 535.363 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 538.1736 646.2977)\\\" x=\\\"0 5.56 11.12 16.12 18.4 23.96\\\">paying</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 634.9793)\\\" x=\\\"0 5.56 7.84\\\">all</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 50.8221 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 53.7614 634.9793)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 88.8395 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 91.7789 634.9793)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46 44.46\\\">Payments,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 139.0201 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 141.9594 634.9793)\\\" x=\\\"0 2.78 8.34 13.9\\\">fees</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.8608 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 163.8001 634.9793)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 180.4847 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 183.424 634.9793)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01 30.57\\\">charges</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 219.0002 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 221.9396 634.9793)\\\" x=\\\"0 2.78 8.34 13.9\\\">that</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.6192 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 241.5586 634.9793)\\\" x=\\\"0 5.56 8.89\\\">are</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.0117 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 258.951 634.9793)\\\" x=\\\"0 5.56 11.12\\\">due</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.6356 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 278.575 634.9793)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 287.4666 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 290.4059 634.9793)\\\" x=\\\"0 5.56 11.12 16.12\\\">past</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 309.3073 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 312.2466 634.9793)\\\" x=\\\"0 5.56 11.12\\\">due</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 328.9312 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 331.8705 634.9793)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.5551 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 351.4944 634.9793)\\\" x=\\\"0 5 10.56 12.84 18.4 23.96 26.74 32.3 35.63 37.91 40.19\\\">voluntarily</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 396.6898 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 399.6291 634.9793)\\\" x=\\\"0 5 10.56 13.89 17.22 22.78 28.34 33.9 39.46 42.79 45.07 50.63\\\">surrendering</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 455.8303 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 458.7696 634.9793)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.6612 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 470.6005 634.9793)\\\" x=\\\"0 3.33 8.89 11.67 17.23 20.56 26.12 28.4 33.96\\\">returning</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 510.1269 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 513.0663 634.9793)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.9676 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 529.907 634.9793)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 623.6609)\\\" x=\\\"0 2.28 7.84 10.5 12.78 15.56 20.56 23.22 28.78 32.11 34.39 39.95 42.23 47.79 53.35 55.63 58.29 63.29 68.85 74.41 79.97 82.25 85.03 87.31 92.87 98.43 101.21 103.87 106.15 111.71 116.71 121.71 124.37 127.7 133.26 138.82 143.82 149.38 154.94 160.5 166.06 168.34 173.9 176.56 183.78 189.34 194.9 198.23 200.89 206.45 212.01 217.57 220.23 223.01 228.57 234.13 237.46 240.12 245.68 248.46 251.12 253.9 259.46 265.02 267.68 273.24 278.24 283.8 286.08 289.41 294.97 297.75 300.03 305.59 311.15 313.81 319.37 322.15 324.81 330.37 335.93 340.93 343.59 345.87 351.43 356.99 361.99 367.55 370.21 372.99 378.55 381.88 390.21\\\">in its original condition, less reasonable wear and tear at the expiration of any lease term.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 612.3426)\\\" x=\\\"0 5.56 11.12 13.9\\\">Late</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.1629 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 63.3819 612.3426)\\\" x=\\\"0 6.11 11.67 17.23 22.23\\\">Fees.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 88.3917 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 91.6107 612.3426)\\\" x=\\\"0 9.44\\\">We</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 106.6107 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 109.8297 612.3426)\\\" x=\\\"0 3.33 8.89 13.89 19.45 22.78 27.78\\\">reserve</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 143.1744 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 146.3934 612.3426)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.2948 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 163.5138 612.3426)\\\" x=\\\"0 3.33 5.61 11.17 16.73\\\">right</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 183.0255 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 186.2445 612.3426)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 194.5844 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 197.8034 612.3426)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01\\\">charge</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 228.3796 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 231.5986 612.3426)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 237.1601 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 240.3791 612.3426)\\\" x=\\\"0 2.28 7.84 10.62\\\">late</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.5608 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 259.7798 612.3426)\\\" x=\\\"0 2.78 8.34\\\">fee</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 273.6811 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 276.9002 612.3426)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 288.5701 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 291.7891 612.3426)\\\" x=\\\"0 5.56 11.12 16.12\\\">past</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 310.6905 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 313.9095 612.3426)\\\" x=\\\"0 5.56 11.12\\\">due</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 330.594 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 333.8131 612.3426)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57 38.35 43.35\\\">payments,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 379.9459 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 383.1649 612.3426)\\\" x=\\\"0 5.56 8.34 11.12 16.68\\\">after</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.1747 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 406.3937 612.3426)\\\" x=\\\"0 5.56 7.84 10.12 15.68 22.9 25.18 30.74\\\">allowing</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 442.7023 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 445.9213 612.3426)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 457.5912 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 460.8102 612.3426)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 476.9333 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 480.1523 612.3426)\\\" x=\\\"0 5.56 8.89 14.45 19.45\\\">grace</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 505.1669 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 508.3859 612.3426)\\\" x=\\\"0 5.56 11.12 14.45 16.73 22.29 27.85\\\">period,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 539.0207 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 542.2397 612.3426)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 550.5796 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.7986 612.3426)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 601.0242)\\\" x=\\\"0 2.28 7.84 12.84 17.84 23.4\\\">lesser</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 67.4334 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 70.2009 601.0242)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 78.5407 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.3082 601.0242)\\\" x=\\\"0 3.33 5.61\\\">(i)</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 90.2486 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 93.0161 601.0242)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 106.9175 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 109.6849 601.0242)\\\" x=\\\"0 3.33 8.89 11.67\\\">rate</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 126.9164 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 129.6839 601.0242)\\\" x=\\\"0 5.56 7.84 10.12 15.68 22.9 28.46\\\">allowed</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 163.7122 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 166.4797 601.0242)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 177.0412 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 179.8087 601.0242)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64\\\">applicable</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.0186 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 227.7861 601.0242)\\\" x=\\\"0 2.28 7.84\\\">law</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 242.8496 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 245.6171 601.0242)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 254.5087 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 257.2761 601.0242)\\\" x=\\\"0 3.33 5.61 7.89\\\">(ii)</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 268.4968 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 271.2643 601.0242)\\\" x=\\\"0 5.56 11.12 13.9 19.46\\\">$2.00</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 296.2887 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 299.0562 601.0242)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 310.7261 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 313.4936 601.0242)\\\" x=\\\"0 7.22 12.78 18.34 23.34 25.62 30.62\\\">weekly,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 346.8969 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 349.6644 601.0242)\\\" x=\\\"0 5.56 7.84 15.06 20.62 26.18 31.18 33.46 38.46\\\">biweekly,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 390.9095 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 393.677 601.0242)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.5686 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 405.3361 601.0242)\\\" x=\\\"0 5 10.56 18.89 21.17 24.5 32.83 38.39 43.95 46.73 52.29 54.57\\\">semi-monthly</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 464.9113 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 467.6787 601.0242)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57 38.35 43.35\\\">payments,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 513.8116 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 516.579 601.0242)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 525.4706 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 528.2381 601.0242)\\\" x=\\\"0 5.56 11.12 13.9 19.46\\\">$5.00</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.2625 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 556.03 601.0242)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 589.7059)\\\" x=\\\"0 8.33 13.89 19.45 22.23 27.79 30.07 35.07 37.73 43.29 48.85 53.85 62.18 67.74 73.3 76.08 81.08\\\">monthly payments.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 578.3875)\\\" x=\\\"0 7.7783 10.5566 16.1182 21.6797\\\">Other</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 65.7098 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 68.366 578.3875)\\\" x=\\\"0 2.7783 11.1084 16.6699 22.2315 25.5615 28.3398 33.9014 39.4629\\\">Important</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 110.6072 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 113.2635 578.3875)\\\" x=\\\"0 6.1084 11.6699 15 23.3301 28.3301\\\">Terms.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 144.3719 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 147.0281 578.3875)\\\" x=\\\"0 6.6699 12.2314\\\">See</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 164.8211 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 167.4773 578.3875)\\\" x=\\\"0 2.7783 8.3398\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 181.3787 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 184.035 578.3875)\\\" x=\\\"0 5.5615 8.3398 13.9014 19.4629\\\">other</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 206.8279 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 209.4842 578.3875)\\\" x=\\\"0 5.5615 11.123 14.4531 17.2314\\\">parts</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.7156 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 234.3719 578.3875)\\\" x=\\\"0 5.5615\\\">of</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 242.7117 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 245.368 578.3875)\\\" x=\\\"0 2.7783 8.3398 10.6201\\\">this</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 260.9881 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 263.6443 578.3875)\\\" x=\\\"0 6.6699 12.2314 15.5615 21.123 26.6846 35.0147 40.5762 46.1377\\\">Agreement</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.5603 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 315.2166 578.3875)\\\" x=\\\"0 2.7783 8.3398\\\">for</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 326.8865 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 329.5428 578.3875)\\\" x=\\\"0 5.5615 11.1231 16.6846 18.9648 21.7432 24.0234 29.585 35.1465 40.708\\\">additional</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 372.531 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 375.1873 578.3875)\\\" x=\\\"0 2.2803 10.6103 16.1719 21.7334 25.0635 27.8418 33.4033 38.9648\\\">important</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 416.9305 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 419.5867 578.3875)\\\" x=\\\"0 2.2803 7.8418 10.6201 16.1816 19.5117 27.8418 33.4033 36.1816 38.4619 44.0234\\\">information</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 469.1717 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 471.8279 578.3875)\\\" x=\\\"0 5.5615\\\">on</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 482.951 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 485.6072 578.3875)\\\" x=\\\"0 2.7783 8.3398 11.6699 20 22.2803 27.8418 33.4033 36.1816 38.4619 44.0234\\\">termination</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 567.0691)\\\" x=\\\"0 5.5615 8.8916 14.4531 19.4531 25.0146 30.5762 36.1377 39.4678 45.0293 50.0293\\\">procedures,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 93.5076 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 96.1639 567.0691)\\\" x=\\\"0 5.5615 11.1231 14.4531 19.4531 25.0146 30.5762 35.5762\\\">purchase</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 137.3016 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 139.9578 567.0691)\\\" x=\\\"0 5.5615 11.123 13.9014 16.1816 21.7432\\\">option</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 167.2625 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 169.9187 567.0691)\\\" x=\\\"0 3.4301 5.8103 11.4719 17.1334 20.0117 25.1117\\\">rights,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 197.9088 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 200.665 567.0691)\\\" x=\\\"0 3.3801 8.9916 14.0416 19.6531 25.2646 30.8762 35.9262 38.2565 43.868 46.1983 48.5285 50.8588 53.6871 56.0174 61.6289\\\">responsibilities</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 267.3439 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 270.0502 567.0691)\\\" x=\\\"0 3.0283 8.8399\\\">for</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 282.4701 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 285.3764 567.0691)\\\" x=\\\"0 2.4303 8.1418 13.2918 18.4418\\\">loss,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 306.7465 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 309.5527 567.0691)\\\" x=\\\"0 5.6615 11.3231 19.7531 25.4146 31.0762\\\">damage</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 346.2904 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 349.0467 567.0691)\\\" x=\\\"0 5.8615\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 358.5383 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 361.4945 567.0691)\\\" x=\\\"0 5.6115 11.2231 16.2731 19.1014 22.4814 28.093 33.143 35.9713 38.3016 43.9131\\\">destruction</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 411.0191 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 413.7254 567.0691)\\\" x=\\\"0 5.8615\\\">of</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 422.6652 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 425.6215 567.0691)\\\" x=\\\"0 3.0283 8.8398\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 440.2729 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 443.1791 567.0691)\\\" x=\\\"0 6.7699 10.2 15.8615 21.523 27.1846 30.6146 33.493 38.593\\\">Property,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.6504 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 487.4066 567.0691)\\\" x=\\\"0 5.6615 10.7615 13.6398 19.3014 24.9629\\\">actual</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 514.7498 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 517.506 567.0691)\\\" x=\\\"0 5.6615\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.5976 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 529.3539 567.0691)\\\" x=\\\"0 2.3803 10.8103 16.4719 18.8522 21.2324 26.894\\\">implied</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 555.7508)\\\" x=\\\"0 7.2717 12.8832 16.2633 19.6434 25.2549 30.8664 33.6947 36.025 41.6365 46.6865\\\">warranties,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 90.2148 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 92.9211 555.7508)\\\" x=\\\"0 2.8283 8.4398 13.4898 19.1014 24.1514\\\">taxes,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 119.9008 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 122.607 555.7508)\\\" x=\\\"0 5.7115 8.6398 14.3514 20.0629\\\">other</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.15 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.9563 555.7508)\\\" x=\\\"0 5.1 10.7615 16.423 19.8531 25.5146 31.1762\\\">charges</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 185.2324 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 187.9887 555.7508)\\\" x=\\\"0 5.6115 11.223\\\">and</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 204.8232 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 207.5295 555.7508)\\\" x=\\\"0 5.5615 11.1231 16.6846 22.2461 24.5264 27.3047 29.585 35.1465\\\">penalties</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.676 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 250.3322 555.7508)\\\" x=\\\"0 5 10.5615\\\">you</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 266.4553 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 269.1115 555.7508)\\\" x=\\\"0 8.3301 13.8916\\\">may</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 288.0031 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 290.6594 555.7508)\\\" x=\\\"0 2.2803 7.8418 12.8418 18.4033 21.7334\\\">incur,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 315.1711 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 317.8273 555.7508)\\\" x=\\\"0 5.5615 11.123\\\">and</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 334.5119 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 337.1682 555.7508)\\\" x=\\\"0 5.5615 8.3398 13.9014 19.4629\\\">other</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.9611 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 362.6174 555.7508)\\\" x=\\\"0 2.2803 10.6103 16.1719 21.7334 25.0635 27.8418 33.4033 38.9648\\\">important</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 404.3605 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.0168 555.7508)\\\" x=\\\"0 2.2803 7.8418 10.6201 16.1816 19.5117 27.8418 33.4033 36.1816 38.4619 44.0234 49.585\\\">information.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 459.3801 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 462.0363 555.7508)\\\" x=\\\"0 6.6699 12.2314\\\">You</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 479.8293 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 482.4855 555.7508)\\\" x=\\\"0 5.5615 10.5615 15.5615 21.1231 26.6846 33.9063 36.1865 41.7481 47.3096 52.8711\\\">acknowledge</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 540.9182 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 543.5744 555.7508)\\\" x=\\\"0 2.7783 8.3398 13.9014\\\">that</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 544.4324)\\\" x=\\\"0 7.2717\\\">we</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 53.5832 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 56.2895 544.4324)\\\" x=\\\"0 5.5615 8.8916 14.4531 19.4531 21.7334 27.2949 32.8564\\\">provided</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 94.7074 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 97.3637 544.4324)\\\" x=\\\"0 5 10.5615\\\">you</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 113.4867 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 116.143 544.4324)\\\" x=\\\"0 7.2217 9.502 12.2803\\\">with</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 133.9848 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 136.641 544.4324)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 142.4525 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 145.3588 544.4324)\\\" x=\\\"0 5 10.5615 18.8916 24.4531 26.7334 32.2949 35.0733 40.6348\\\">completed</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 191.5551 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 194.2113 544.4324)\\\" x=\\\"0 5 10.5615 16.1231\\\">copy</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 215.3344 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 217.9906 544.4324)\\\" x=\\\"0 5.6115\\\">of</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 226.4305 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 229.1367 544.4324)\\\" x=\\\"0 2.7783 8.3398 10.6201\\\">this</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 244.7568 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 247.4131 544.4324)\\\" x=\\\"0 6.6699 12.2315 15.5615 21.123 26.6846 35.0146 40.5762 46.1377 48.916\\\">Agreement.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.1074 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 301.7637 544.4324)\\\" x=\\\"0 6.6699 12.2314\\\">You</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.5566 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 322.2129 544.4324)\\\" x=\\\"0 5.5615 10.5615 15.5615 21.123 26.6846 33.9062 36.1865 41.748 47.3096 52.8711\\\">acknowledge</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.6455 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 383.3017 544.4324)\\\" x=\\\"0 2.7783 8.3399 13.9014\\\">that</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 399.9814 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 402.6377 544.4324)\\\" x=\\\"0 7.2717\\\">we</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 415.5209 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 418.2271 544.4324)\\\" x=\\\"0 8.3301 13.8916 19.4531\\\">made</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 443.2418 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 445.898 544.4324)\\\" x=\\\"0 2.7783 8.3399\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 459.7994 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 462.8557 544.4324)\\\" x=\\\"0 5.5615 7.8418 12.8418 17.8418 20.1221 25.6836 30.6836 36.2451 39.5752 45.1367\\\">disclosures</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.9924 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 516.0486 544.4324)\\\" x=\\\"0 5.6115\\\">at</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 524.4885 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 527.5447 544.4324)\\\" x=\\\"0 5.6115\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 533.1141)\\\" x=\\\"0 5.5615 11.123 13.9014 19.4629 22.793\\\">before</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 69.0545 533.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 72.1107 533.1141)\\\" x=\\\"0 2.7783 8.3398\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 86.0121 533.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 89.0684 533.1141)\\\" x=\\\"0 5 10.5615 16.123 21.123 26.6846 35.0146 43.3447 48.9062 51.6846 53.9648 59.5264\\\">consummation</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 154.1562 533.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 157.2125 533.1141)\\\" x=\\\"0 5.6115\\\">of</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 165.6523 533.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 168.7086 533.1141)\\\" x=\\\"0 2.7783 8.3398\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 182.61 533.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 185.6662 533.1141)\\\" x=\\\"0 6.6699 12.2314 15.5615 21.123 26.6846 35.0146 40.5762 46.1377 48.916\\\">Agreement.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 519.7957)\\\" x=\\\"0 6.67 8.95 11.23 13.89 19.45 22.23 27.79 33.35 36.68 39.34 42.12 47.68 53.24 58.24 60.9 68.12 73.68 75.96 80.96 86.52 89.18 97.51 103.07 108.07 110.73 116.29 121.85 124.51 129.51 135.07 140.63 143.96 149.52 155.08 160.64 163.42 166.08 168.36 173.92 178.92 181.2 186.76 192.32 197.88 200.54 203.32 208.88 214.44 219.44 222.1 224.88 230.44 233.77\\\">All other fees which may be charged, include fees for:</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 22.7 506.4773)\\\" x=\\\"0 3.33 8.89\\\">(1)</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 506.4773)\\\" x=\\\"0 3.33 8.89 12.22 14.88 22.1 27.66 30.44 36 39.33 44.89 50.45 56.01 58.67 65.34 70.9 75.9 84.23 89.79 95.35 98.13 103.13 105.79 111.35 114.68 117.34 124.56 130.12 135.68 140.68 146.24 149.02 151.8 154.08 159.08 161.36 166.92 172.48 175.26 177.92 184.03 189.59 195.15 200.71 205.71 208.37 214.48 220.04 225.6 228.38 231.04 236.6 239.26 244.82 250.38 253.16 258.72\\\">(1) Returned Payments or Nonsufficient Funds Fee: $ 20.00</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:8.25pt\\\" transform=\\\"matrix(1 0 0 -1 22.7 495.159)\\\" x=\\\"0 3.663 9.779\\\">(2)</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 495.159)\\\" x=\\\"0 3.33 8.89 12.22 14.88 22.1 27.66 29.94 35.5 40.5 43.28 48.84 51.62 57.18 65.51 71.07 76.63 79.41 82.07 88.18 93.74 99.3 104.3 107.08 109.74 116.96 122.52 128.08 133.64 136.3 139.63 145.19 147.97 153.53 159.09 162.42 165.08 167.86 173.42 178.98 184.54 187.2 192.76 195.04 200.04 205.04 210.6 216.16 218.82 224.38 229.94 235.5 238.16 241.49 247.05 252.61 258.17 260.45 262.73 267.73 273.29 276.62 281.62 284.28 289.28 294.84 300.4 303.73 309.29 314.85 319.85 322.51 328.07 330.35 332.63 338.19 345.41 350.97 356.53 359.19 364.75 369.75 372.41 374.69 380.25 387.47\\\">(2) Reinstatement Fees: None (other than pickup and redelivery charges allowed by law)</text></g><clipPath id=\\\"clip1-2\\\"><path d=\\\"M 35 448 L 574 448 L 574 488 L 35 488 L 35 448 z \\\"/></clipPath><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 35.3 487.0594 L 573.1 487.0594 L 573.1 448.1043 L 35.3 448.1043 L 35.3 487.0594 z \\\"/><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 40.7 484.0594 L 567.7 484.0594 L 567.7 450.1043 L 40.7 450.1043 L 40.7 484.0594 z \\\"/><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 40.7 484.0594 L 52.7 484.0594 L 52.7 472.0594 L 40.7 472.0594 L 40.7 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 474.8406)\\\" x=\\\"0 6.67\\\">By</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 52.3699 484.0594 L 55.3699 484.0594 L 55.3699 472.0594 L 52.3699 472.0594 L 52.3699 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 52.3699 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 55.339 484.0594 L 90.339 484.0594 L 90.339 472.0594 L 55.339 472.0594 L 55.339 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 55.339 474.8406)\\\" x=\\\"0 5 7.28 12.84 18.4 20.68 26.24 31.8\\\">signing,</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 89.924 484.0594 L 92.924 484.0594 L 92.924 472.0594 L 89.924 472.0594 L 89.924 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 89.924 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 92.8931 484.0594 L 109.8931 484.0594 L 109.8931 472.0594 L 92.8931 472.0594 L 92.8931 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 92.8931 474.8406)\\\" x=\\\"0 5 10.56\\\">you</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 109.0162 484.0594 L 112.0162 484.0594 L 112.0162 472.0594 L 109.0162 472.0594 L 109.0162 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 109.0162 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 111.9853 484.0594 L 137.9853 484.0594 L 137.9853 472.0594 L 111.9853 472.0594 L 111.9853 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 111.9853 474.8406)\\\" x=\\\"0 5.56 11.12 14.45 20.01\\\">agree</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 137.5614 484.0594 L 140.5614 484.0594 L 140.5614 472.0594 L 137.5614 472.0594 L 137.5614 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 137.5615 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 140.5306 484.0594 L 157.5306 484.0594 L 157.5306 472.0594 L 140.5306 472.0594 L 140.5306 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 140.5306 474.8406)\\\" x=\\\"0 2.78 8.34 13.9\\\">that</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 157.2103 484.0594 L 160.2103 484.0594 L 160.2103 472.0594 L 157.2103 472.0594 L 157.2103 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 157.2103 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 160.1794 484.0594 L 177.1794 484.0594 L 177.1794 472.0594 L 160.1794 472.0594 L 160.1794 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 160.1794 474.8406)\\\" x=\\\"0 5 10.56\\\">you</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 176.3024 484.0594 L 179.3024 484.0594 L 179.3024 472.0594 L 176.3024 472.0594 L 176.3024 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 176.3024 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 179.2715 484.0594 L 217.2715 484.0594 L 217.2715 472.0594 L 179.2715 472.0594 L 179.2715 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 179.2715 474.8406)\\\" x=\\\"0 3.33 8.89 13.89 19.45 21.73 26.73 32.29\\\">received</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 217.128 484.0594 L 220.128 484.0594 L 220.128 472.0594 L 217.128 472.0594 L 217.128 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 217.128 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 220.0971 484.0594 L 226.0971 484.0594 L 226.0971 472.0594 L 220.0971 472.0594 L 220.0971 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 220.0971 474.8406)\\\" x=\\\"0\\\">a</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 225.6586 484.0594 L 228.6586 484.0594 L 228.6586 472.0594 L 225.6586 472.0594 L 225.6586 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.6586 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 228.6277 484.0594 L 258.6277 484.0594 L 258.6277 472.0594 L 228.6277 472.0594 L 228.6277 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 228.6277 474.8406)\\\" x=\\\"0 2.28 7.84 13.4 15.68 21.24 23.52\\\">legible</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 257.7147 484.0594 L 260.7147 484.0594 L 260.7147 472.0594 L 257.7147 472.0594 L 257.7147 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.7147 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 260.6838 484.0594 L 282.6838 484.0594 L 282.6838 472.0594 L 260.6838 472.0594 L 260.6838 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 260.6838 474.8406)\\\" x=\\\"0 5 10.56 16.12\\\">copy</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 281.8068 484.0594 L 284.8068 484.0594 L 284.8068 472.0594 L 281.8068 472.0594 L 281.8068 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.8068 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 284.7759 484.0594 L 293.7759 484.0594 L 293.7759 472.0594 L 284.7759 472.0594 L 284.7759 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 284.7759 474.8406)\\\" x=\\\"0 5.56\\\">of</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 293.1158 484.0594 L 296.1158 484.0594 L 296.1158 472.0594 L 293.1158 472.0594 L 293.1158 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 293.1158 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 296.0849 484.0594 L 312.0849 484.0594 L 312.0849 472.0594 L 296.0849 472.0594 L 296.0849 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 296.0849 474.8406)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 311.705 484.0594 L 314.705 484.0594 L 314.705 472.0594 L 311.705 472.0594 L 311.705 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 311.705 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 314.6742 484.0594 L 366.6742 484.0594 L 366.6742 472.0594 L 314.6742 472.0594 L 314.6742 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 314.6741 474.8406)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement.</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 366.3685 484.0594 L 369.3685 484.0594 L 369.3685 472.0594 L 366.3685 472.0594 L 366.3685 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 366.3685 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 369.3376 484.0594 L 387.3376 484.0594 L 387.3376 472.0594 L 369.3376 472.0594 L 369.3376 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 369.3376 474.8406)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 387.1306 484.0594 L 390.1306 484.0594 L 390.1306 472.0594 L 387.1306 472.0594 L 387.1306 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 387.1306 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 390.0997 484.0594 L 416.0997 484.0594 L 416.0997 472.0594 L 390.0997 472.0594 L 390.0997 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 390.0997 474.8406)\\\" x=\\\"0 5.56 11.12 14.45 20.01\\\">agree</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 415.6759 484.0594 L 418.6759 484.0594 L 418.6759 472.0594 L 415.6759 472.0594 L 415.6759 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 415.6759 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 418.645 484.0594 L 427.645 484.0594 L 427.645 472.0594 L 418.645 472.0594 L 418.645 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 418.645 474.8406)\\\" x=\\\"0 2.78\\\">to</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 426.9848 484.0594 L 429.9848 484.0594 L 429.9848 472.0594 L 426.9848 472.0594 L 426.9848 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 426.9848 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 429.9539 484.0594 L 443.9539 484.0594 L 443.9539 472.0594 L 429.9539 472.0594 L 429.9539 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 429.9539 474.8406)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 443.8553 484.0594 L 446.8553 484.0594 L 446.8553 472.0594 L 443.8553 472.0594 L 443.8553 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 443.8553 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 446.8244 484.0594 L 471.8244 484.0594 L 471.8244 472.0594 L 446.8244 472.0594 L 446.8244 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 446.8244 474.8406)\\\" x=\\\"0 2.78 8.34 11.67 20\\\">terms</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 471.8244 484.0594 L 474.8244 484.0594 L 474.8244 472.0594 L 471.8244 472.0594 L 471.8244 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 471.8244 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 474.7935 484.0594 L 483.7935 484.0594 L 483.7935 472.0594 L 474.7935 472.0594 L 474.7935 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 474.7935 474.8406)\\\" x=\\\"0 5.56\\\">of</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 483.1334 484.0594 L 486.1334 484.0594 L 486.1334 472.0594 L 483.1334 472.0594 L 483.1334 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 483.1334 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 486.1025 484.0594 L 502.1025 484.0594 L 502.1025 472.0594 L 486.1025 472.0594 L 486.1025 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 486.1025 474.8406)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 501.7226 484.0594 L 504.7226 484.0594 L 504.7226 472.0594 L 501.7226 472.0594 L 501.7226 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.7226 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 504.6917 484.0594 L 553.6918 484.0594 L 553.6918 472.0594 L 504.6917 472.0594 L 504.6917 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 504.6917 474.8406)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 553.6078 484.0594 L 556.6078 484.0594 L 556.6078 472.0594 L 553.6078 472.0594 L 553.6078 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.6078 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 556.5769 484.0594 L 568.5769 484.0594 L 568.5769 472.0594 L 556.5769 472.0594 L 556.5769 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 556.5769 474.8406)\\\" x=\\\"0 5.56\\\">on</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 567.7 484.0594 L 570.7 484.0594 L 570.7 472.0594 L 567.7 472.0594 L 567.7 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 40.7 472.741 L 51.7 472.741 L 51.7 460.741 L 40.7 460.741 L 40.7 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 463.5223)\\\" x=\\\"0 5.56 7.84\\\">all</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 50.8221 472.741 L 54.8221 472.741 L 54.8221 460.741 L 50.8221 460.741 L 50.8221 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 50.8221 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 54.1471 472.741 L 60.1471 472.741 L 60.1471 460.741 L 54.1471 460.741 L 54.1471 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 54.1471 463.5223)\\\" x=\\\"0\\\">6</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 59.7087 472.741 L 63.7087 472.741 L 63.7087 460.741 L 59.7087 460.741 L 59.7087 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 59.7087 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 63.0337 472.741 L 94.0337 472.741 L 94.0337 460.741 L 63.0337 460.741 L 63.0337 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 63.0337 463.5223)\\\" x=\\\"0 5.56 11.12 16.68 22.24 27.24\\\">pages,</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 93.0582 472.741 L 97.0582 472.741 L 97.0582 460.741 L 93.0582 460.741 L 93.0582 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 93.0582 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 96.3832 472.741 L 136.3832 472.741 L 136.3832 460.741 L 96.3832 460.741 L 96.3832 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 96.3832 463.5223)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24 28.52 34.08\\\">including</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 136.0317 472.741 L 140.0317 472.741 L 140.0317 460.741 L 136.0317 460.741 L 136.0317 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.0317 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 139.3568 472.741 L 153.3568 472.741 L 153.3568 460.741 L 139.3568 460.741 L 139.3568 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 139.3568 463.5223)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 153.2581 472.741 L 157.2581 472.741 L 157.2581 460.741 L 153.2581 460.741 L 153.2581 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 153.2581 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 156.5832 472.741 L 203.5832 472.741 L 203.5832 460.741 L 156.5832 460.741 L 156.5832 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 156.5832 463.5223)\\\" x=\\\"0 3.55 10.77 16.33 21.33 24.11 29.67 38 43.56\\\">&quot;Customer</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 203.4777 472.741 L 207.4777 472.741 L 207.4777 460.741 L 203.4777 460.741 L 203.4777 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 203.4777 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 206.8028 472.741 L 265.8028 472.741 L 265.8028 460.741 L 206.8028 460.741 L 206.8028 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 206.8028 463.5223)\\\" x=\\\"0 6.67 12.23 15.01 20.57 26.13 29.46 31.74 36.74 42.3 45.08 47.36 52.92\\\">Authorization</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 265.2891 472.741 L 269.2891 472.741 L 269.2891 460.741 L 265.2891 460.741 L 265.2891 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 265.2891 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 268.6142 472.741 L 280.6142 472.741 L 280.6142 460.741 L 268.6142 460.741 L 268.6142 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 268.6142 463.5223)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 280.2841 472.741 L 284.2841 472.741 L 284.2841 460.741 L 280.2841 460.741 L 280.2841 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.2841 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 283.6092 472.741 L 328.6092 472.741 L 328.6092 460.741 L 283.6092 460.741 L 283.6092 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 283.6092 463.5223)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46\\\">Payments</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 328.0721 472.741 L 332.0721 472.741 L 332.0721 460.741 L 328.0721 460.741 L 328.0721 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 328.0721 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 331.3972 472.741 L 344.3972 472.741 L 344.3972 460.741 L 331.3972 460.741 L 331.3972 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 331.3972 463.5223)\\\" x=\\\"0 5 7.28\\\">via</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 344.239 472.741 L 348.239 472.741 L 348.239 460.741 L 344.239 460.741 L 344.239 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 344.239 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 347.564 472.741 L 375.564 472.741 L 375.564 460.741 L 347.564 460.741 L 347.564 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 347.564 463.5223)\\\" x=\\\"0 6.67 13.89 21.11 23.89\\\">ACH,&quot;</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 375.0055 472.741 L 379.0055 472.741 L 379.0055 460.741 L 375.0055 460.741 L 375.0055 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.0054 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 378.3305 472.741 L 392.3305 472.741 L 392.3305 460.741 L 378.3305 460.741 L 378.3305 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 378.3305 463.5223)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 392.2319 472.741 L 396.2319 472.741 L 396.2319 460.741 L 392.2319 460.741 L 392.2319 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 392.2319 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 395.557 472.741 L 445.557 472.741 L 445.557 460.741 L 395.557 460.741 L 395.557 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 395.557 463.5223)\\\" x=\\\"0 3.55 10.22 13.55 19.11 21.39 24.17 27.5 33.06 35.84 38.12 43.68\\\">&quot;Arbitration</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 444.8001 472.741 L 448.8001 472.741 L 448.8001 460.741 L 444.8001 460.741 L 444.8001 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 444.8001 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 448.1252 472.741 L 480.1252 472.741 L 480.1252 460.741 L 448.1252 460.741 L 448.1252 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 448.1252 463.5223)\\\" x=\\\"0 7.22 9.5 15.06 20.62 25.62\\\">Clause</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 479.3117 472.741 L 483.3117 472.741 L 483.3117 460.741 L 479.3117 460.741 L 479.3117 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 479.3117 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 482.6368 472.741 L 499.6368 472.741 L 499.6368 460.741 L 482.6368 460.741 L 482.6368 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 482.6368 463.5223)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 499.3214 472.741 L 503.3214 472.741 L 503.3214 460.741 L 499.3214 460.741 L 499.3214 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.3214 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 502.6465 472.741 L 534.6465 472.741 L 534.6465 460.741 L 502.6465 460.741 L 502.6465 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 502.6465 463.5223)\\\" x=\\\"0 9.44 15 17.28 22.28 27.84\\\">Waiver</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 533.8184 472.741 L 537.8184 472.741 L 537.8184 460.741 L 533.8184 460.741 L 533.8184 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 533.8183 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 537.1434 472.741 L 546.1434 472.741 L 546.1434 460.741 L 537.1434 460.741 L 537.1434 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 537.1434 463.5223)\\\" x=\\\"0 5.56\\\">of</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 545.4833 472.741 L 549.4833 472.741 L 549.4833 460.741 L 545.4833 460.741 L 545.4833 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 545.4833 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 548.8083 472.741 L 567.8083 472.741 L 567.8083 460.741 L 548.8083 460.741 L 548.8083 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 548.8083 463.5223)\\\" x=\\\"0 5 10.56 13.89\\\">Jury</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 567.7 472.741 L 570.7 472.741 L 570.7 460.741 L 567.7 460.741 L 567.7 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 40.7 461.4227 L 187.7 461.4227 L 187.7 449.4227 L 40.7 449.4227 L 40.7 461.4227 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 452.2039)\\\" x=\\\"0 6.11 9.44 11.72 17.28 19.56 22.34 25.89 28.55 34.11 39.67 45.23 47.89 50.67 56.23 61.79 64.45 70.01 72.79 78.35 83.91 87.24 89.9 92.68 98.24 101.57 109.9 114.9 117.56 123.12 128.68 130.96 136.52 143.74\\\">Trial,&quot; and the other terms below.</text></g><clipPath id=\\\"clip1-3\\\"><path d=\\\"M 35 404 L 574 404 L 574 449 L 35 449 L 35 404 z \\\"/></clipPath><g clip-path=\\\"url(#clip1-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 435.7132)\\\" x=\\\"0 7.22 12.78 17.78 20.56 26.12 34.45 40.01 43.34 46 52.67 54.95 60.51 66.07 71.63 74.41 79.97 83.3 88.86\\\">Customer Signature:</text></g><clipPath id=\\\"clip1-4\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip1-4)\\\" fill=\\\"#fff\\\" stroke=\\\"none\\\" d=\\\"M 409.8 425.0359 L 439.8433 425.0359 L 439.8433 417.0244 L 409.8 417.0244 L 409.8 425.0359 z \\\"/><clipPath id=\\\"clip1-5\\\"><path d=\\\"M 409 417 L 440 417 L 440 426 L 409 426 L 409 417 z \\\"/></clipPath><path clip-path=\\\"url(#clip1-5)\\\" fill=\\\"#fff\\\" stroke=\\\"none\\\" d=\\\"M 409.8 425.0359 L 439.55 425.0359 L 439.55 423.9041 L 409.8 423.9041 L 409.8 425.0359 z \\\"/><path clip-path=\\\"url(#clip1-5)\\\" fill=\\\"#fff\\\" stroke=\\\"none\\\" d=\\\"M 409.8 425.0359 L 416.8 425.0359 L 416.8 423.0359 L 409.8 423.0359 L 409.8 425.0359 z \\\"/><g clip-path=\\\"url(#clip1-5)\\\"><text stroke=\\\"none\\\" fill=\\\"#fff\\\" style=\\\"font-family:f1-2; font-size:0.75pt\\\" transform=\\\"matrix(1 0 0 -1 409.8 424.1141)\\\" x=\\\"0 0.722 1.5 2.222 2.944 3.496 4.163 4.996 5.663 5.941\\\">DOCU_EMAIL</text></g><clipPath id=\\\"clip1-6\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip1-6)\\\" fill=\\\"#fff\\\" stroke=\\\"none\\\" d=\\\"M 164.15 417.4676 L 192.2025 417.4676 L 192.2025 406.447 L 164.15 406.447 L 164.15 417.4676 z \\\"/><clipPath id=\\\"clip1-7\\\"><path d=\\\"M 164 407 L 192 407 L 192 418 L 164 418 L 164 407 z \\\"/></clipPath><g clip-path=\\\"url(#clip1-7)\\\"><text stroke=\\\"none\\\" fill=\\\"#fff\\\" style=\\\"font-family:f1-2; font-size:0.75pt\\\" transform=\\\"matrix(1 0 0 -1 164.15 416.5457)\\\" x=\\\"0 0.722 1.5 2.222 2.944 3.496 4.163 4.441 5.219\\\">DOCU_SIGN</text></g><clipPath id=\\\"clip1-8\\\"><path d=\\\"M 35 343 L 389 343 L 389 405 L 35 405 L 35 343 z \\\"/></clipPath><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 392.5858)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 57.9314 392.5858)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 62.5791 392.5858)\\\" x=\\\"0 5.56 11.12 16.68 21.68\\\">Lease</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 89.8252 392.5858)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 94.4728 392.5858)\\\" x=\\\"0 7.22 12.78 21.11 26.67 32.23 37.79 42.79 44.7\\\">Company&apos;s</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 144.1798 392.5858)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.8275 392.5858)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 28.35 30.63 35.63 41.19\\\">authorized</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 195.5853 392.5858)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 200.2329 392.5858)\\\" x=\\\"0 5 7.28 12.84 18.4 23.96 26.74 32.3 35.63\\\">signature</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 241.4292 392.5858)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 246.0768 392.5858)\\\" x=\\\"0 2.28 7.84 13.4 15.68 20.68 26.24 29.02 34.58\\\">indicates</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 285.6618 392.5858)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 290.3094 392.5858)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 304.2108 392.5858)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 308.8584 392.5858)\\\" x=\\\"0 5.56 11.12 16.68 21.68\\\">Lease</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 336.1045 392.5858)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 340.7521 392.5858)\\\" x=\\\"0 7.22 12.78 21.11 26.67 32.23 37.79\\\">Company</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.55 392.5858)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 381.2675)\\\" x=\\\"0 5.56 11.12\\\">has</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 56.823 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 59.5613 381.2675)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.68 29.46 35.02\\\">accepted</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 100.1472 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 102.8854 381.2675)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 116.7868 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 119.525 381.2675)\\\" x=\\\"0 2.78 8.34 11.67 20 25\\\">terms,</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 147.3033 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 150.0416 381.2675)\\\" x=\\\"0 5 10.56 16.12 21.68 23.96 26.74 29.02 34.58 40.14\\\">conditions</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 195.1881 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 197.9263 381.2675)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 214.6109 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 217.3491 381.2675)\\\" x=\\\"0 5.56 11.12 13.4 15.68 21.24 26.8 29.58 31.86 37.42 42.98\\\">obligations</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 265.3374 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 268.0756 381.2675)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.4154 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 279.1537 381.2675)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 293.055 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 295.7933 381.2675)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 344.7093 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 347.4475 381.2675)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 364.1321 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 366.8703 381.2675)\\\" x=\\\"0 2.78 8.34 13.9\\\">that</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.55 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 369.9491)\\\" x=\\\"0 2.78 8.34 13.9 16.56 22.12 27.68 33.24 38.24 43.8 46.46 53.68 59.24 67.57 73.13 78.69 84.25 89.25 91.91 97.47 103.03 106.36 111.92 117.48 122.48 125.14 127.92 133.48 136.14 138.92 144.48 146.76 151.76 154.42 161.09 166.65 169.98 175.54 181.1 189.43 194.99 200.55 203.33\\\">the Lease Company agrees to this Agreement.</text></g><clipPath id=\\\"clip1-10\\\"><path d=\\\"M 388 343 L 574 343 L 574 405 L 388 405 L 388 343 z \\\"/></clipPath><g clip-path=\\\"url(#clip1-10)\\\"><g transform=\\\"matrix(0.75 0 0 -0.7619 416.525 401.8046)\\\"><image xlink:href=\\\"data:image/png;base64,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\\\" width=\\\"172\\\" height=\\\"42\\\" id=\\\"img43-0-9\\\"/></g></g><g clip-path=\\\"url(#clip1-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 394.35 359.0858)\\\" x=\\\"0 6.67 12.23 17.79 23.35 26.01 33.23 39.34 47.12 49.78 55.34 60.9 68.12 70.78 77.45 82.45 85.23 87.89 96.22 101.78 104.56 107.34 110 116.67 120 125.56 132.78 138.34 140.62 146.18\\\">Snap RTO LLC By: Matt Browning</text></g><g clip-path=\\\"url(#clip1-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 394.35 347.7675)\\\" x=\\\"0 6.11 8.39 11.17 13.45 19.01 21.79 24.45 31.67 39.45\\\">Title: COO</text></g><clipPath id=\\\"clip1-11\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 770.2 L 573.6 770.2 L 573.6 769.2 L 34.8 769.2 L 34.8 770.2 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.6 769.2 L 573.6 769.2 L 573.6 487.5594 L 572.6 487.5594 L 572.6 769.2 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 769.2 L 35.8 769.2 L 35.8 487.5594 L 34.8 487.5594 L 34.8 769.2 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 487.5594 L 573.6 487.5594 L 573.6 486.5594 L 34.8 486.5594 L 34.8 487.5594 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.6 486.5594 L 573.6 486.5594 L 573.6 448.6043 L 572.6 448.6043 L 572.6 486.5594 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 486.5594 L 35.8 486.5594 L 35.8 448.6043 L 34.8 448.6043 L 34.8 486.5594 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 448.6043 L 573.6 448.6043 L 573.6 447.6043 L 34.8 447.6043 L 34.8 448.6043 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.6 447.6043 L 573.6 447.6043 L 573.6 405.3046 L 572.6 405.3046 L 572.6 447.6043 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 447.6043 L 35.8 447.6043 L 35.8 405.3046 L 34.8 405.3046 L 34.8 447.6043 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 405.3046 L 389.45 405.3046 L 389.45 404.3046 L 34.8 404.3046 L 34.8 405.3046 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 344.1679 L 389.45 344.1679 L 389.45 343.1679 L 34.8 343.1679 L 34.8 344.1679 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 404.3046 L 35.8 404.3046 L 35.8 344.1679 L 34.8 344.1679 L 34.8 404.3046 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 389.45 405.3046 L 573.6 405.3046 L 573.6 404.3046 L 389.45 404.3046 L 389.45 405.3046 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 389.45 344.1679 L 573.6 344.1679 L 573.6 343.1679 L 389.45 343.1679 L 389.45 344.1679 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.6 404.3046 L 573.6 404.3046 L 573.6 344.1679 L 572.6 344.1679 L 572.6 404.3046 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 388.45 404.3046 L 389.45 404.3046 L 389.45 344.1679 L 388.45 344.1679 L 388.45 404.3046 z \\\"/><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 331.4491)\\\" x=\\\"0 7.22 15 21.11 23.89 31.11\\\">NOTICE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 70.8783 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 73.8798 331.4491)\\\" x=\\\"0 6.11\\\">TO</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 87.7666 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 90.7681 331.4491)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 110.7681 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 113.7696 331.4491)\\\" x=\\\"0 7.22 15 22.22 28.89 36.11 44.44 51.11 58.33\\\">CONSUMER:</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 174.8829 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 177.8844 331.4491)\\\" x=\\\"0 6.67 14.45\\\">YOU</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 199.5543 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 202.5558 331.4491)\\\" x=\\\"0 7.22 13.89 20.56\\\">HAVE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 229.7873 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 232.7888 331.4491)\\\" x=\\\"0 7.22\\\">NO</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.7888 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 250.7903 331.4491)\\\" x=\\\"0 7.78 17.22 24.44 31.11 38.33 45 52.22 55\\\">OWNERSHIP</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.4603 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 315.4618 331.4491)\\\" x=\\\"0 7.22 10 17.78 25 31.11\\\">RIGHTS</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 353.2401 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 356.2416 331.4491)\\\" x=\\\"0 2.78\\\">IN</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 366.2416 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 369.2431 331.4491)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 389.2431 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 392.2447 331.4491)\\\" x=\\\"0 6.67 13.89 21.67 28.34 35.01 42.23 48.34\\\">PROPERTY</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.2544 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 450.256 331.4491)\\\" x=\\\"0 7.22 14.44 20 26.67 33.34\\\">UNLESS</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 490.2706 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 493.2721 331.4491)\\\" x=\\\"0 6.67 13.89\\\">AND</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 514.3854 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 517.3869 331.4491)\\\" x=\\\"0 7.22 14.44 20.55 23.33\\\">UNTIL</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 546.2785 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 549.2801 331.4491)\\\" x=\\\"0 6.67 14.45\\\">YOU</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 320.1308)\\\" x=\\\"0 6.67 12.23 18.9 26.12\\\">ELECT</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 65.3315 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 71.359 320.1308)\\\" x=\\\"0 6.11\\\">TO</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 85.2457 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 91.2732 320.1308)\\\" x=\\\"0 6.67 13.34 20.56 28.34 36.67\\\">BECOME</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 134.613 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 140.6406 320.1308)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.6406 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 166.6681 320.1308)\\\" x=\\\"0 7.78 17.22 24.44 31.11\\\">OWNER</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 204.9982 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 211.0257 320.1308)\\\" x=\\\"0 7.78\\\">OF</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 224.9124 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 230.9399 320.1308)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 250.9399 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 256.9675 320.1308)\\\" x=\\\"0 6.67 13.89 21.67 28.34 35.01 42.23 48.34\\\">PROPERTY</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 311.9772 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 318.0048 320.1308)\\\" x=\\\"0 6.67 12.78 18.89 25.56\\\">AFTER</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 350.7831 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 356.8106 320.1308)\\\" x=\\\"0 8.33 15 21.67 24.45 31.67\\\">MAKING</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 396.2588 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 402.2864 320.1308)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 422.2864 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 428.3139 320.1308)\\\" x=\\\"0 7.22 13.89 21.11 27.78 34.45 41.12 47.79 55.01\\\">NECESSARY</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.9984 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 496.026 320.1308)\\\" x=\\\"0 6.67 13.34 20.01 28.34 35.01 42.23 48.34\\\">PAYMENTS</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.0357 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0633 320.1308)\\\" x=\\\"0 6.11\\\">TO</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 308.8124)\\\" x=\\\"0 6.67 13.89 21.67 28.89 31.67 38.89\\\">ACQUIRE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 78.6615 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 82.9084 308.8124)\\\" x=\\\"0 7.78 17.22 24.44 31.11 38.33 45 52.22 55 61.67\\\">OWNERSHIP,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 147.3567 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 151.6035 308.8124)\\\" x=\\\"0 6.67 13.89\\\">AND</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 172.7168 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 176.9637 308.8124)\\\" x=\\\"0 6.67 14.45\\\">YOU</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 198.6336 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 202.8805 308.8124)\\\" x=\\\"0 7.22 13.89 20.56\\\">HAVE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 230.112 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 234.3589 308.8124)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 254.3589 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 258.6057 308.8124)\\\" x=\\\"0 5.56 12.23 20.01 26.68\\\">LEGAL</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.8469 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 295.0938 308.8124)\\\" x=\\\"0 6.67 13.89 20 27.22 35 42.22 45 51.11\\\">AUTHORITY</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 352.8722 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 357.119 308.8124)\\\" x=\\\"0 6.11\\\">TO</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.0058 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 375.2527 308.8124)\\\" x=\\\"0 6.67 13.89 21.11 27.78 34.45\\\">ACCEPT</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 415.8142 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 420.0611 308.8124)\\\" x=\\\"0 6.11 8.89 15 20.56\\\">TITLE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.2876 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 451.5345 308.8124)\\\" x=\\\"0 6.11\\\">TO</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 465.4212 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 469.6681 308.8124)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.6681 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 493.915 308.8124)\\\" x=\\\"0 6.67 13.89 21.67 28.34 35.01 42.23 48.34 55.01\\\">PROPERTY.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.7031 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 555.95 308.8124)\\\" x=\\\"0 7.22\\\">DO</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 297.494)\\\" x=\\\"0 7.22 15\\\">NOT</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 54.2084 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 57.2636 297.494)\\\" x=\\\"0 6.67 9.45 17.23\\\">SIGN</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 81.7118 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 84.767 297.494)\\\" x=\\\"0 6.11 13.33 16.11\\\">THIS</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 107.5453 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 110.6005 297.494)\\\" x=\\\"0 6.67 14.45 21.67 28.34 35.01 43.34 50.01 57.23\\\">AGREEMENT</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 173.9404 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 176.9956 297.494)\\\" x=\\\"0 6.67 13.34 19.45 27.23 34.45\\\">BEFORE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 218.1137 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 221.1689 297.494)\\\" x=\\\"0 6.67 14.45\\\">YOU</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 242.8389 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 245.8941 297.494)\\\" x=\\\"0 7.22 13.89 20.56\\\">READ</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 273.6773 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 276.7325 297.494)\\\" x=\\\"0 6.67 12.23\\\">ALL</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 294.5254 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 297.5806 297.494)\\\" x=\\\"0 6.67 13.34 21.12 27.79\\\">PAGES</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 332.0386 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 335.0938 297.494)\\\" x=\\\"0 7.78\\\">OF</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.9805 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 352.0357 297.494)\\\" x=\\\"0 2.78\\\">IT</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 360.9225 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 363.9777 297.494)\\\" x=\\\"0 7.78\\\">OR</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 378.9777 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 382.0329 297.494)\\\" x=\\\"0 2.78\\\">IF</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 390.9196 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 393.9748 297.494)\\\" x=\\\"0 2.78\\\">IT</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.8615 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 405.9167 297.494)\\\" x=\\\"0 7.22 15 22.22 28.33 35 37.78 45\\\">CONTAINS</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 457.5866 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 460.6418 297.494)\\\" x=\\\"0 6.67 13.89\\\">ANY</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 481.2033 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 484.2585 297.494)\\\" x=\\\"0 6.67 12.23 18.9 26.12\\\">BLANK</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 517.0515 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 520.1067 297.494)\\\" x=\\\"0 6.67 13.34 20.01 27.23\\\">SPACE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 554.0081 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0633 297.494)\\\" x=\\\"0 6.11\\\">TO</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 286.1757)\\\" x=\\\"0 6.67\\\">BE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 46.4398 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 49.3908 286.1757)\\\" x=\\\"0 6.11 8.89 14.45 20.01 26.68\\\">FILLED</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 83.2922 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 86.2431 286.1757)\\\" x=\\\"0 2.78 10\\\">IN.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 99.0214 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 101.9724 286.1757)\\\" x=\\\"0 6.67 14.45\\\">YOU</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 123.6423 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 126.5933 286.1757)\\\" x=\\\"0 6.67 13.89\\\">ARE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 147.1548 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 150.1057 286.1757)\\\" x=\\\"0 6.67 13.89 20 22.78 28.89 34.45 41.12\\\">ENTITLED</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 198.4456 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 201.3965 286.1757)\\\" x=\\\"0 6.11\\\">TO</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 215.2832 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 218.2342 286.1757)\\\" x=\\\"0\\\">A</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 224.9041 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 227.8551 286.1757)\\\" x=\\\"0 7.22 15 23.33 30 35.56 42.23 48.34 55.01 60.57\\\">COMPLETELY</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 295.0963 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 298.0472 286.1757)\\\" x=\\\"0 6.11 8.89 14.45 20.01 26.68 33.9 37.23 40.01\\\">FILLED-IN</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 345.2787 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 348.2296 286.1757)\\\" x=\\\"0 7.22 15 21.67\\\">COPY</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 376.5695 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 379.5204 286.1757)\\\" x=\\\"0 7.78\\\">OF</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.4071 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 396.3581 286.1757)\\\" x=\\\"0 6.11 13.33 16.11\\\">THIS</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.1364 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 422.0874 286.1757)\\\" x=\\\"0 6.67 14.45 21.67 28.34 35.01 43.34 50.01 57.23\\\">AGREEMENT</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 485.4272 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 488.3781 286.1757)\\\" x=\\\"0 9.44 16.66 23.33\\\">WHEN</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 518.9299 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 521.8809 286.1757)\\\" x=\\\"0 6.67 14.45\\\">YOU</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 543.5508 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 546.5017 286.1757)\\\" x=\\\"0 6.67 9.45 17.23\\\">SIGN</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 274.8573)\\\" x=\\\"0 2.78 8.89\\\">IT.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 261.539)\\\" x=\\\"0 6.11 12.78 20 28.33 31.11 38.33 45 51.11 53.89 61.67 68.89\\\">TERMINATION.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 104.765 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 108.0706 261.539)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 125.8636 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 129.1692 261.539)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 148.0608 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 151.3663 261.539)\\\" x=\\\"0 2.78 8.34 11.67 20 22.28 27.84 33.4 36.18\\\">terminate</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 193.1095 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 196.4151 261.539)\\\" x=\\\"0 3.33 8.89 14.45 20.01\\\">(end)</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 219.7598 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 223.0654 261.539)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.6855 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 241.9911 261.539)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.9071 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 294.2127 261.539)\\\" x=\\\"0 5.56\\\">at</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.5525 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 305.8581 261.539)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.7595 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 323.065 261.539)\\\" x=\\\"0 5.56 11.12\\\">end</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 339.7496 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 343.0552 261.539)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.395 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 354.7006 261.539)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 370.8236 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 374.1292 261.539)\\\" x=\\\"0 2.28 7.84 13.4 18.4\\\">lease</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 398.0941 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 401.3996 261.539)\\\" x=\\\"0 2.78 8.34 11.67\\\">term</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 421.3996 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 424.7052 261.539)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 435.2667 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 438.5723 261.539)\\\" x=\\\"0 5 10.56 13.34 15.62 20.62 23.4 28.4 30.68 36.24\\\">satisfying</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 480.3741 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 483.6796 261.539)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 497.581 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 500.8866 261.539)\\\" x=\\\"0 3.33 8.89 14.45 20.01 22.29 25.62 31.18 39.51 45.07 50.63 53.41\\\">requirements</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.3046 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 562.6101 261.539)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 250.2206)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 48.7201 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 51.7761 250.2206)\\\" x=\\\"0 5.56 11.12 14.45 20.01 25.57 28.9 34.46 40.02 45.58\\\">paragraph.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 100.1453 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 103.2013 250.2206)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 120.9943 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 124.0503 250.2206)\\\" x=\\\"0 8.33 13.89 18.89\\\">must</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 145.7202 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.7762 250.2206)\\\" x=\\\"0 5.56 8.89 14.45 22.78 28.34 31.12 33.4\\\">promptly</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 187.1795 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 190.2355 250.2206)\\\" x=\\\"0 3.33 8.89 11.67 17.23 20.56\\\">return</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 216.3586 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 219.4146 250.2206)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.3159 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 236.3719 250.2206)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 274.1649 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 277.2209 250.2206)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 285.5608 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 288.6168 250.2206)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.1783 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 302.2343 250.2206)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 310.0761 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 313.1321 250.2206)\\\" x=\\\"0 5.56 10.56 15.56 21.12 24.45 30.01 35.57 41.13 46.13\\\">accordance</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 364.8313 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 367.8874 250.2206)\\\" x=\\\"0 7.22 9.5 12.28\\\">with</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 385.7291 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 388.7852 250.2206)\\\" x=\\\"0 5.56 11.12\\\">our</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.2383 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 406.2943 250.2206)\\\" x=\\\"0 5.56 7.84 11.17 16.73 21.73 24.51 26.79 32.35 37.91\\\">directions</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 449.2093 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 452.2653 250.2206)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.9499 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 472.0059 250.2206)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 488.129 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 491.185 250.2206)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57 33.35\\\">amounts</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.5395 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 532.5955 250.2206)\\\" x=\\\"0 5.56 10.56 15.56 18.89 24.45 30.01 35.57\\\">accrued.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 238.9022)\\\" x=\\\"0 9.44\\\">We</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 48.1 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 51.2677 238.9022)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 70.1593 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 73.327 238.9022)\\\" x=\\\"0 2.78 8.34 11.67 20 22.28 27.84 33.4 36.18\\\">terminate</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 115.0702 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 118.2379 238.9022)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 133.858 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 137.0257 238.9022)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 185.9417 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 189.1094 238.9022)\\\" x=\\\"0 5.56\\\">at</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 197.4493 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 200.617 238.9022)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 216.74 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 219.9077 238.9022)\\\" x=\\\"0 2.78 5.06 13.39\\\">time</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.8579 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 242.0256 238.9022)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.0842 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 250.2519 238.9022)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 266.375 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 269.5427 238.9022)\\\" x=\\\"0 5.56 8.89\\\">are</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 283.9958 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 287.1635 238.9022)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 295.0053 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 298.173 238.9022)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 27.3\\\">default</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 328.256 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 331.4237 238.9022)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 339.7636 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 342.9313 238.9022)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 362.3844 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 365.5521 238.9022)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.9066 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.0743 238.9022)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 415.9659 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 419.1336 238.9022)\\\" x=\\\"0 5.56 8.34 13.9 19.46\\\">other</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 441.9266 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 445.0943 238.9022)\\\" x=\\\"0 5.56 11.12 13.4 15.68 21.24 26.8 29.58 31.86 37.42 42.98 47.98\\\">obligations.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 495.8609 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 499.0286 238.9022)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 516.8216 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 519.9893 238.9022)\\\" x=\\\"0 8.33 13.89 18.89\\\">must</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 541.6592 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 544.8269 238.9022)\\\" x=\\\"0 3.33 8.89 11.67 17.23 20.56\\\">return</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 227.5839)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.0014 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 50.6007 227.5839)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 88.3937 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 91.9931 227.5839)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 100.3329 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 103.9323 227.5839)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 117.8336 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 121.433 227.5839)\\\" x=\\\"0 5.56 7.84 13.4 18.4\\\">place</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 145.3978 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.9972 227.5839)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 161.7804 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 165.3797 227.5839)\\\" x=\\\"0 5.56 11.12 16.12 18.4 23.96 29.52 35.08 37.86 43.42\\\">designate.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 211.5858 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 215.1852 227.5839)\\\" x=\\\"0 7.22 12.78 18.34\\\">Upon</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 239.0914 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 242.6908 227.5839)\\\" x=\\\"0 2.78 8.34 11.67 20 22.28 27.84 33.4 36.18 38.46 44.02 49.58\\\">termination,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 295.0541 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 298.6534 227.5839)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 314.7765 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 318.3758 227.5839)\\\" x=\\\"0 5.56 11.12 14.45 20.01\\\">agree</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 343.952 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 347.5513 227.5839)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.8912 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 359.4905 227.5839)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.6136 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 379.2129 227.5839)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.1143 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 396.7137 227.5839)\\\" x=\\\"0 2.78 8.34 10.62 12.9 18.46 25.68 27.96 33.52\\\">following</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 435.8006 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 439.3999 227.5839)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01 30.57 35.57\\\">charges:</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 477.7544 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 481.3538 227.5839)\\\" x=\\\"0 6.67 12.23\\\">Any</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 498.5852 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 502.1846 227.5839)\\\" x=\\\"0 5.56 11.12 16.68 22.24 24.52\\\">unpaid</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 532.2725 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 535.8718 227.5839)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 216.2655)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46 44.46\\\">Payments,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 80.3412 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 83.8455 216.2655)\\\" x=\\\"0 2.78 8.34 13.9\\\">fees</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 102.7469 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 106.2512 216.2655)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 122.9358 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 126.4401 216.2655)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01 30.57 35.57\\\">charges,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 164.7946 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 168.299 216.2655)\\\" x=\\\"0 5.56 7.84 13.4\\\">plus</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 186.7023 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 190.2066 216.2655)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 206.3297 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 209.834 216.2655)\\\" x=\\\"0 5.56 8.34 11.12 13.4 18.4 20.68 26.24\\\">official</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.3545 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 241.8588 216.2655)\\\" x=\\\"0 2.78 8.34 13.9\\\">fees</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 260.7602 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 264.2645 216.2655)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.9491 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 284.4534 216.2655)\\\" x=\\\"0 2.78 8.34 13.34 18.9\\\">taxes</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.3548 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 311.8591 216.2655)\\\" x=\\\"0 2.28 10.61 16.17 21.73 26.73 32.29\\\">imposed</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 349.7156 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 353.2199 216.2655)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 361.0617 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 364.566 216.2655)\\\" x=\\\"0 5 10.56 16.12 21.68 27.24 32.24 35.02 37.3 42.86\\\">connection</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 412.9938 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 416.4981 216.2655)\\\" x=\\\"0 7.22 9.5 12.28\\\">with</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.3399 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 437.8442 216.2655)\\\" x=\\\"0 2.78 8.34 11.67 20 22.28 27.84 33.4 36.18 38.46 44.02 49.58\\\">termination,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 490.2075 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 493.7118 216.2655)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24 28.52 34.08 39.64\\\">including,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 536.1386 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 539.6429 216.2655)\\\" x=\\\"0 5.56 11.12\\\">but</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.5443 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0486 216.2655)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 204.9472)\\\" x=\\\"0 2.28 4.56 12.89 15.17 17.95 23.51\\\">limited</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 62.1723 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 64.9349 204.9472)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 73.2747 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 76.0373 204.9472)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 92.1604 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 94.923 204.9472)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64\\\">applicable</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 140.133 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 142.8956 204.9472)\\\" x=\\\"0 2.78 5.06 10.62 16.18 21.18\\\">fines,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 166.8555 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 169.6182 204.9472)\\\" x=\\\"0 5 10.56 13.89 18.89 24.45 30.01 33.34 38.9 44.46 49.46\\\">surcharges,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 221.8642 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 224.6269 204.9472)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 241.3114 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 244.0741 204.9472)\\\" x=\\\"0 2.78 8.34 13.34 18.9 23.9\\\">taxes.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 270.7537 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 273.5164 204.9472)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.3093 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 294.0719 204.9472)\\\" x=\\\"0 8.33 13.89 18.89\\\">must</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 315.7419 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 318.5045 204.9472)\\\" x=\\\"0 5.56 7.84 12.84\\\">also</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 336.9078 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 339.6704 204.9472)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.7935 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 358.5561 204.9472)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 374.6791 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 377.4417 204.9472)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.12 31.12 33.4 38.4\\\">excessive</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 421.4066 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 424.1692 204.9472)\\\" x=\\\"0 7.22 12.78 18.34\\\">wear</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 445.844 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 448.6066 204.9472)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 465.2912 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 468.0538 204.9472)\\\" x=\\\"0 5.56 10.56\\\">use</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.1769 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 486.9395 204.9472)\\\" x=\\\"0 2.78 8.34 13.9\\\">fees</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 505.8408 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 508.6035 204.9472)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 519.165 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 521.9276 204.9472)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29 32.85\\\">provided</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 560.3456 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 563.1082 204.9472)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 193.6288)\\\" x=\\\"0 2.78 8.34 10.62 15.62 18.28 24.95 30.51 33.84 39.4 44.96 53.29 58.85 64.41 67.19 69.97 72.63 77.63 83.19 88.75 91.03 96.59 101.59 104.37 107.03 109.81 115.37 118.03 120.31 122.59 130.92 133.2 135.98 141.54 144.32 146.6 152.16 157.72 162.72 165.38 170.94 173.72 176.38 181.94 187.5 193.06 195.34 197.62 202.62 208.18 213.74 216.02 221.58 224.24 226.52 232.08 239.3\\\">this Agreement, subject to limitations of applicable law.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 180.3105)\\\" x=\\\"0 8.33 15 17.78 25 31.11 37.78 45 51.67 58.89 66.11 72.78\\\">MAINTENANCE.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 108.6615 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 111.6829 180.3105)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 129.4758 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 132.4972 180.3105)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.5597 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 149.581 180.3105)\\\" x=\\\"0 5 10.56 16.12\\\">keep</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 171.2656 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 174.287 180.3105)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 188.1883 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 191.2097 180.3105)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 229.0026 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 232.024 180.3105)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 239.8658 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 242.8871 180.3105)\\\" x=\\\"0 5.56 11.12 16.68\\\">good</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 265.1332 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 268.1546 180.3105)\\\" x=\\\"0 7.22 12.78 16.11 21.11 23.39 28.95\\\">working</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.6712 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 305.6925 180.3105)\\\" x=\\\"0 5.56 8.89 14.45 20.01\\\">order</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.0373 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 332.0586 180.3105)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.7432 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 351.7645 180.3105)\\\" x=\\\"0 3.33 8.89 14.45 20.01 22.29 25.62\\\">repair.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.1679 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 383.1892 180.3105)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 400.9822 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 404.0035 180.3105)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 418.066 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 421.0874 180.3105)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 437.2104 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 440.2318 180.3105)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.3548 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 459.3762 180.3105)\\\" x=\\\"0 5.56 11.12 16.68 20.01 25.57 28.35 30.63 36.19\\\">operating</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.134 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 504.1553 180.3105)\\\" x=\\\"0 5 10.56 15.56 18.34 23.34\\\">costs.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 530.2735 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 533.2948 180.3105)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.0878 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 554.1092 180.3105)\\\" x=\\\"0 7.22 9.5 11.78 14.06\\\">will,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 168.9921)\\\" x=\\\"0 5.56\\\">at</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 41.4398 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 44.1473 168.9921)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 63.6004 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 66.3078 168.9921)\\\" x=\\\"0 5.56 10.56 16.12 21.68 27.24 32.24 37.8\\\">expense,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 106.8938 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 109.6012 168.9921)\\\" x=\\\"0 5 10.56 13.89 18.89 21.17 26.17\\\">service</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 141.3346 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 144.042 168.9921)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 157.9434 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 160.6508 168.9921)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 198.4438 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 201.1512 168.9921)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 208.993 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 211.7005 168.9921)\\\" x=\\\"0 5.56 10.56 15.56 21.12 24.45 30.01 35.57 41.13 46.13\\\">accordance</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 263.3997 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 266.1071 168.9921)\\\" x=\\\"0 7.22 9.5 12.28\\\">with</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 283.9489 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 286.6563 168.9921)\\\" x=\\\"0 8.33 13.89 19.45 25.01 27.79 33.35 38.35 41.13 46.69 50.02 55.58\\\">manufacturer</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 345.5723 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 348.2798 168.9921)\\\" x=\\\"0 5 7.78 13.34 18.9 24.46 30.02 33.35 38.91 43.91\\\">standards.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 394.9741 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 397.6815 168.9921)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.2382 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 405.9456 168.9921)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.847 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 422.5544 168.9921)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 460.3474 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 463.0548 168.9921)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 470.3351 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 473.0425 168.9921)\\\" x=\\\"0 3.33 8.89 13.89 19.45 21.73 24.01 29.57 35.13\\\">recalled,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 510.9576 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 513.665 168.9921)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.788 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 532.4955 168.9921)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 546.558 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 549.2654 168.9921)\\\" x=\\\"0 5.56 11.12 16.12\\\">have</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 157.6738)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.0014 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 51.506 157.6738)\\\" x=\\\"0 3.33 8.89 13.89 19.45 21.73\\\">recall</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 75.5196 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 80.0242 157.6738)\\\" x=\\\"0 3.33 8.89 14.45 20.01 22.29 25.62\\\">repairs</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 110.6492 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 115.1538 157.6738)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 124.0454 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 128.5499 157.6738)\\\" x=\\\"0 5 10.56 13.89 18.89 21.17 26.17\\\">service</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.2833 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 164.7879 157.6738)\\\" x=\\\"0 5.56 11.12 14.45 17.23 22.79 26.12 34.45 40.01 45.57\\\">performed.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 213.1424 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 217.647 157.6738)\\\" x=\\\"0 2.78\\\">In</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.9868 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 230.4914 157.6738)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 244.3928 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 248.8974 157.6738)\\\" x=\\\"0 5.56 10.56 16.12 21.68\\\">event</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 273.3603 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 277.8648 157.6738)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.7662 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 296.2708 157.6738)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 334.0637 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.5683 157.6738)\\\" x=\\\"0 5.56 11.12\\\">has</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 354.6914 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 359.1959 157.6738)\\\" x=\\\"0 8.33 13.89 18.89 24.45 30.01 35.57 37.85 42.85 48.41\\\">mechanical</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 409.8942 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 414.3988 157.6738)\\\" x=\\\"0 5.56 8.89 14.45 20.01 22.29 27.85 36.18 41.18\\\">problems,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 458.3636 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 462.8682 157.6738)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 478.9912 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 483.4958 157.6738)\\\" x=\\\"0 5.56 11.12 14.45 20.01\\\">agree</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.072 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 513.5766 157.6738)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.9164 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 526.421 157.6738)\\\" x=\\\"0 3.33 8.89 11.67 17.23 20.56\\\">return</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.544 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0486 157.6738)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 146.3554)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79 40.45 43.23 48.79 51.45 57.01 62.01 64.67 67.45 73.01 76.34 79 84.56 89.56 95.12 97.4 102.96 108.52 111.3 113.58 119.14 124.7 127.48 130.14 135.7 141.26 146.82 149.6 152.26 154.54 157.32 159.98 165.54 171.1 176.1 181.66 186.66 191.66 197.22 200.55 205.55 208.33 210.99 214.32 219.88 225.44 231 233.28 236.61\\\">Property to us for evaluation, and, if necessary, repair.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 133.037)\\\" x=\\\"0 6.67 12.78 19.45 26.67 33.89 40.56 47.78 55\\\">STANDARDS</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 94.7748 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 97.7681 133.037)\\\" x=\\\"0 6.11 13.89\\\">FOR</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 118.8765 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 121.8699 133.037)\\\" x=\\\"0 9.44 16.11 22.78\\\">WEAR</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 151.8699 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 154.8632 133.037)\\\" x=\\\"0 6.67 13.89\\\">AND</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 175.9765 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 178.9698 133.037)\\\" x=\\\"0 7.22 13.89 20.56\\\">USE.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 202.3096 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 205.303 133.037)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 223.0959 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 226.0893 133.037)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 244.9809 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 247.9742 133.037)\\\" x=\\\"0 5.56\\\">be</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.0972 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 262.0906 133.037)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01 30.57\\\">charged</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 298.2283 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 301.2216 133.037)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.8915 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 315.8849 133.037)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.12\\\">excess</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 347.0079 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 350.0012 133.037)\\\" x=\\\"0 7.22 12.78 18.34\\\">wear</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.676 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 374.6694 133.037)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 391.3539 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 394.3473 133.037)\\\" x=\\\"0 5.56 10.56\\\">use</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 410.4703 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 413.4636 133.037)\\\" x=\\\"0 7.22 12.78 18.34\\\">when</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 437.3699 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 440.3632 133.037)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.4863 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 459.4796 133.037)\\\" x=\\\"0 3.33 8.89 11.67 17.23 20.56\\\">return</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 485.6026 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 488.596 133.037)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 502.4973 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 505.4907 133.037)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 543.2836 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 546.277 133.037)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 554.6168 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.6101 133.037)\\\" x=\\\"0 5.56 10.56\\\">us.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 121.7187)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 50.3314 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 54.7254 121.7187)\\\" x=\\\"0 2.78 8.34 10.62 12.9 18.46 25.68 27.96 33.52\\\">following</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 93.8123 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 98.2062 121.7187)\\\" x=\\\"0 5 7.78 13.34 18.9 24.46 30.02 33.35 38.91\\\">standards</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 142.1222 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 146.5161 121.7187)\\\" x=\\\"0 5.56 11.12 16.68 18.96\\\">apply</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 170.4809 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 174.8748 121.7187)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 186.5447 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 190.9386 121.7187)\\\" x=\\\"0 5.56 11.12 13.9 19.46 22.79 31.12 33.4 38.96 41.24 46.8\\\">determining</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 243.3068 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 247.7007 121.7187)\\\" x=\\\"0 5.56 11.12 14.45 20.01 25.57 30.57 36.13 41.69 47.25 52.81 55.09\\\">unreasonable</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.3648 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 312.7587 121.7187)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 321.6503 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 326.0442 121.7187)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.12\\\">excess</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 357.1672 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 361.5611 121.7187)\\\" x=\\\"0 7.22 12.78 18.34\\\">wear</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.2359 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 387.6298 121.7187)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 404.3144 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 408.7083 121.7187)\\\" x=\\\"0 5.56 10.56 16.12\\\">use:</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 427.6097 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 432.0036 121.7187)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 449.7965 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 454.1904 121.7187)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.2529 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 472.6468 121.7187)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.5482 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 490.9421 121.7187)\\\" x=\\\"0 5.56 11.12 13.4 18.96\\\">paint</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.6853 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 517.0792 121.7187)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 525.9708 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 530.3647 121.7187)\\\" x=\\\"0 2.28 7.84 10.62 13.4 18.96\\\">letter</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.6547 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0486 121.7187)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 110.4003)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 70.893 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 75.8495 110.4003)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 84.7411 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 89.6976 110.4003)\\\" x=\\\"0 8.33 13.89 19.45 21.73 24.51\\\">modify</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 119.2094 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 124.1659 110.4003)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 140.2889 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 145.2455 110.4003)\\\" x=\\\"0 2.28 7.84 13.4 18.96 21.74 24.02 26.8 29.08 34.08 39.64 42.42 44.7 50.26\\\">identification</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 201.0707 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 206.0272 110.4003)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57\\\">number</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 239.9335 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 244.89 110.4003)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 253.2298 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 258.1864 110.4003)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 272.0877 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 277.0443 110.4003)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 317.6156 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 322.5721 110.4003)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 340.3651 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 345.3216 110.4003)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.3841 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 364.3407 110.4003)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 378.242 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 383.1985 110.4003)\\\" x=\\\"0 5.56 11.12 16.68\\\">add,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.6614 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.618 110.4003)\\\" x=\\\"0 3.33 8.89 17.22 22.78 27.78\\\">remove</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 440.9627 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 445.9192 110.4003)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.8108 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 459.7674 110.4003)\\\" x=\\\"0 8.33 13.89 19.45 21.73 24.51\\\">modify</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.2791 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 494.2356 110.4003)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 510.3587 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 515.3152 110.4003)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.12 31.12 36.68 40.01 42.29 47.85 52.85\\\">accessories,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 99.082)\\\" x=\\\"0 5.56 11.12 16.68 18.96 24.52 32.85 38.41 43.97\\\">equipment</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 79.8578 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 83.9642 99.082)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 92.8558 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 96.9621 99.082)\\\" x=\\\"0 5.56 11.12 14.45 17.23\\\">parts</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 119.1936 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 123.2999 99.082)\\\" x=\\\"0 7.22 9.5 12.28 17.84 23.4 28.96\\\">without</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 155.0431 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 159.1494 99.082)\\\" x=\\\"0 5.56 11.12\\\">our</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 173.6025 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 177.7089 99.082)\\\" x=\\\"0 5.56 8.89 11.17 16.73\\\">prior</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 197.7724 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 201.8787 99.082)\\\" x=\\\"0 7.22 10.55 12.83 15.61 18.39 23.95\\\">written</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.3904 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 235.4968 99.082)\\\" x=\\\"0 5.56 11.12 14.45 22.78 25.06 30.06 35.06 37.34 42.9 48.46\\\">permission.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 286.7419 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 290.8482 99.082)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.0797 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 312.186 99.082)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 349.979 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 354.0853 99.082)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 368.1478 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 372.2542 99.082)\\\" x=\\\"0 5.56 11.12 13.9\\\">not:</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.9339 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 393.0402 99.082)\\\" x=\\\"0 7.22 12.78 17.78\\\">Have</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 416.3849 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 420.4913 99.082)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57 36.13\\\">damage,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 459.4073 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 463.5136 99.082)\\\" x=\\\"0 8.33 13.89 18.89 24.45 30.01 35.57 37.85 42.85 48.41\\\">mechanical</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 514.2119 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 518.3182 99.082)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 527.2098 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 531.3162 99.082)\\\" x=\\\"0 5.56 7.84 13.4 18.4 21.18 24.51 26.79 31.79 37.35\\\">electrical</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 87.7636)\\\" x=\\\"0 8.33 13.89 16.17 18.95 24.51 30.07 35.07 37.85 40.13 45.69\\\">malfunction</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 84.3549 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 87.8075 87.7636)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 98.369 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 101.8216 87.7636)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64 45.2\\\">applicable;</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 149.8099 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 153.2625 87.7636)\\\" x=\\\"0 5.56\\\">be</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 164.3855 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 167.8382 87.7636)\\\" x=\\\"0 2.78 8.34 11.67 17.23\\\">torn,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 187.8479 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 191.3005 87.7636)\\\" x=\\\"0 5.56 11.12 14.45 20.01 25.57 31.13\\\">burned,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.2165 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 228.6691 87.7636)\\\" x=\\\"0 5 7.78 13.34 15.62 21.18 26.74\\\">stained</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 260.9738 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 264.4264 87.7636)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 273.318 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 276.7706 87.7636)\\\" x=\\\"0 5 10.56 13.89 19.45 25.01 30.57 36.13 41.69\\\">shredded;</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 321.2482 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 324.7008 87.7636)\\\" x=\\\"0 5.56 11.12 16.12\\\">have</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 346.3853 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 349.8379 87.7636)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 365.961 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 369.4136 87.7636)\\\" x=\\\"0 5.56 11.12 16.68 19.46 24.46\\\">dents,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 396.6548 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 400.1074 87.7636)\\\" x=\\\"0 8.33 13.89 16.17 21.73\\\">mold,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 424.6191 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 428.0717 87.7636)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 436.9633 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 440.4159 87.7636)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57\\\">damage</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 476.5536 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 480.0062 87.7636)\\\" x=\\\"0 2.78 6.11 11.67\\\">from</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 500.0062 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 503.4588 87.7636)\\\" x=\\\"0 7.22 12.78 15.56 21.12 24.45\\\">water,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 530.6903 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 534.1429 87.7636)\\\" x=\\\"0 5 10.56 16.12 21.68\\\">sand,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 558.6058 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 562.0584 87.7636)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 76.4452)\\\" x=\\\"0 2.78 6.11 11.67 17.23 22.23 24.51 30.07 35.63 38.41 41.07 46.63 49.96 52.62 58.18 63.74 68.74 74.3 76.96 79.24 84.8 90.36 95.92 101.48 104.81 110.37 115.93 118.21 123.77 126.43 131.99 137.55 140.88 143.66 148.66 151.44 154.1 160.77 166.33 171.89 174.55 182.88 188.44 193.44 196.22 198.88 202.21 207.77 210.55 216.11 219.44 225 227.66 230.44 236 241.56 244.22 250.89 254.22 259.78 265.34 270.9 274.23 277.01 282.01 284.67 291.89 294.17 296.95 302.51 305.17 310.73 313.01 315.29 317.95 323.51 326.29 328.95 331.23 334.01 339.01 341.67 347.23 350.56 352.84 358.4 360.68 366.24 371.8 374.08 376.74 382.3 387.86 391.19 393.97 398.97\\\">freezing; or have inoperable parts. You must return the Property with all of its original parts.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 36.5264)\\\" x=\\\"0 6.498 11.997 14.391 16.785 21.789 26.793 29.295 34.299 39.303 44.307 504 506.3906 508.7812 511.1719 513.5625 515.9531 518.3438 520.7344 523.125 525.5156\\\">UT  07/2019          </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 26.3398)\\\" x=\\\"0 6.003 11.007 16.011 21.015\\\">Page </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 55.8097 26.3398)\\\" x=\\\"0\\\">2</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.815 26.3398)\\\" x=\\\"0 2.394 7.398 9.9\\\"> of </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 73.1021 26.3398)\\\" x=\\\"0\\\">7</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#d9d9d9\\\" style=\\\"font-family:f1-0; font-size:54pt; white-space:pre\\\" transform=\\\"matrix(0.707 0.707 0.707 -0.707 135.6027 198.5094)\\\" x=\\\"0 56.016 96.048 136.08 176.112 216.144 236.16 284.184 324.216 344.232 364.248 416.232 456.264 480.24\\\">Qoppa Software</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#002ba6\\\" style=\\\"font-family:f1-0; font-size:9pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.932 772)\\\" x=\\\"0 9.336 16.008 22.68 29.352 36.024 39.36 47.364 54.036 57.372 60.708 69.372 76.044 80.04 86.712 90.048 94.044 97.38 104.712 111.384 115.38 118.716 126.72 132.72 139.392 142.056 148.728 155.4 158.736 161.4 168.072 174.744 178.08 187.416 194.088 196.752 202.752 206.088 210.084 213.42 220.092 223.428 226.764 233.436 239.436 242.772 246.108 249.444 258.108 266.772 275.436 278.772 285.444 292.116 298.788 305.46 312.132 315.468 321.468 328.14\\\">Qoppa Software - For Evaluation Only - https://www.qoppa.com</text></g></g></svg></svg></g></svg><br>\\n<?xml version='1.0' encoding='UTF-8'?><svg id=\\\"qoppa_document\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" version=\\\"1.1\\\" xmlns=\\\"http://www.w3.org/2000/svg\\\" xmlns:xlink=\\\"http://www.w3.org/1999/xlink\\\"><!-- jPDFWeb v2019R1.03 - Demo Version --><style>title p { display: block; }</style><g id=\\\"qoppa_viewxform\\\" transform=\\\"matrix(1 0 0 1 0 0)\\\"><style type=\\\"text/css\\\">@font-face {font-family:f2-0;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f2-1;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f2-2;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}</style><svg id=\\\"qoppa_page_p2\\\" class=\\\"qoppa_page\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\"><rect class=\\\"qoppa_pageborder\\\" x=\\\"0.5pt\\\" y=\\\"0.5pt\\\" width=\\\"611pt\\\" height=\\\"791pt\\\" fill=\\\"none\\\" /><svg class=\\\"qoppa_pagecontents\\\" x=\\\"0pt\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" viewBox=\\\"0 0 612 792\\\" ><g class=\\\"qoppa_contentstream\\\" transform=\\\"matrix(1 0 0 -1 0 792)\\\" fill=\\\"black\\\" stroke=\\\"black\\\" stroke-width=\\\"1\\\" stroke-linecap=\\\"butt\\\" stroke-linejoin=\\\"miter\\\" stroke-miterlimit=\\\"10\\\"><clipPath id=\\\"clip2-1\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 758.4812)\\\" x=\\\"0 9.44 16.11 23.33 30.55 37.22 44.44 50.55 53.33 60 66.67\\\">WARRANTIES.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 102.5482 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 106.2624 758.4812)\\\" x=\\\"0 9.44\\\">We</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 121.2624 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 124.9766 758.4812)\\\" x=\\\"0 8.33 13.89 18.89\\\">make</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 149.4298 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 153.1439 758.4812)\\\" x=\\\"0 5.56\\\">no</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 164.267 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 167.9812 758.4812)\\\" x=\\\"0 5.56 10.56 16.12 19.45 25.01 30.01\\\">express</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 202.9958 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 206.71 758.4812)\\\" x=\\\"0 7.22 12.78 16.11 19.44 25 30.56 33.34\\\">warranty</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.0548 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 248.769 758.4812)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.892 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 263.6062 758.4812)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 277.5076 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 281.2218 758.4812)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 321.7931 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 325.5072 758.4812)\\\" x=\\\"0 5.56 11.12 16.68\\\">and,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 344.9701 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 348.6843 758.4812)\\\" x=\\\"0 5.56 11.12 13.4 18.96 23.96\\\">unless</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 377.6492 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 381.3634 758.4812)\\\" x=\\\"0 5.56 8.89 14.45 20.01 22.29 27.85 30.13 32.91 38.47\\\">prohibited</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 425.4015 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 429.1157 758.4812)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 439.6772 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 443.3914 758.4812)\\\" x=\\\"0 2.28 7.84 15.06\\\">law,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 461.2332 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 464.9474 758.4812)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 478.8487 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 482.5629 758.4812)\\\" x=\\\"0 2.78 8.34 10.62 12.9 18.46 25.68 27.96 33.52\\\">following</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.6498 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 525.364 758.4812)\\\" x=\\\"0 5 10.56 16.12 18.9 24.46 30.02 35.02 40.58\\\">sentences</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 747.1629)\\\" x=\\\"0 5.56 11.12 16.68 18.96 23.96\\\">apply.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 59.8432 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 63.102 747.1629)\\\" x=\\\"0 6.67 14.45\\\">YOU</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 84.772 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 88.0308 747.1629)\\\" x=\\\"0 6.67 13.89\\\">ARE</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 108.5924 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 111.8512 747.1629)\\\" x=\\\"0 5.56 12.23 18.9 25.57 28.35 35.57\\\">LEASING</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 155.2008 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 158.4597 747.1629)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 178.4597 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 181.7186 747.1629)\\\" x=\\\"0 6.67 13.89 21.67 28.34 35.01 42.23 48.34\\\">PROPERTY</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 236.7284 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 239.9872 747.1629)\\\" x=\\\"0 3.33 10\\\">“AS</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.6572 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 259.916 747.1629)\\\" x=\\\"0 2.78 9.45 12.78\\\">IS”.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.4727 747.1629)\\\" x=\\\"0 3.2589\\\">  </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 281.9904 747.1629)\\\" x=\\\"0 9.44\\\">WE</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 298.0988 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 301.3577 747.1629)\\\" x=\\\"0 8.33 15 21.67\\\">MAKE</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.6975 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 332.9564 747.1629)\\\" x=\\\"0 7.22\\\">NO</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 347.9564 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 351.2153 747.1629)\\\" x=\\\"0 6.67 13.34 20.01 27.23 33.9 40.57\\\">EXPRESS</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 398.4565 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 401.7153 747.1629)\\\" x=\\\"0 9.44 16.11 23.33 30.55 37.22 44.44 50.55 53.33 60\\\">WARRANTIES</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.3853 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 471.6442 747.1629)\\\" x=\\\"0 7.78\\\">ON</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.6442 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 489.903 747.1629)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.903 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 513.1619 747.1629)\\\" x=\\\"0 6.67 13.89 21.67 28.34 35.01 42.23 48.34 55.01\\\">PROPERTY.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 735.8445)\\\" x=\\\"0 9.44\\\">WE</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 49.2084 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 59.5638 735.8445)\\\" x=\\\"0 7.22 10 16.67 23.89 29.45 36.12 38.9\\\">DISCLAIM</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 106.7953 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 117.1507 735.8445)\\\" x=\\\"0 6.67 13.89\\\">ANY</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 137.7122 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.0676 735.8445)\\\" x=\\\"0 9.44 16.11 23.33 30.55 37.22 44.44 50.55 53.33 60\\\">WARRANTIES</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 214.7375 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 225.0929 735.8445)\\\" x=\\\"0 2.78 11.11 17.78 23.34 26.12 32.79\\\">IMPLIED</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 265.1027 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 275.4581 735.8445)\\\" x=\\\"0 6.67\\\">BY</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 288.798 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 299.1534 735.8445)\\\" x=\\\"0 5.56 12.23 21.67\\\">LAW,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 323.6016 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 333.957 735.8445)\\\" x=\\\"0 2.78 10 17.22 22.78 30 37.22 40 47.22\\\">INCLUDING</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.9619 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 399.3173 735.8445)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.3173 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 429.6728 735.8445)\\\" x=\\\"0 2.78 11.11 17.78 23.34 26.12 32.79\\\">IMPLIED</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 469.6825 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 480.0379 735.8445)\\\" x=\\\"0 9.44 16.11 23.33 30.55 37.22 44.44 50.55 53.33 60\\\">WARRANTIES</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 546.7079 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0633 735.8445)\\\" x=\\\"0 7.78\\\">OF</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 724.5262)\\\" x=\\\"0 8.33 15 22.22 29.44 36.66 43.33 50.55 56.66 63.33 70 72.78 78.34 81.12 87.23 93.9 96.56 103.23 110.45 117.67 120.33 126.44 129.22 135.33 142.55 149.22 155.89 162.56 165.22 171.33 179.11 186.33 188.99 195.66 202.88 209.55 212.21 218.88 225.55 232.77 238.88 241.66 248.88 256.1 261.66 268.33 275.55 278.21 284.88 292.1 299.32 305.99 313.77 320.44 327.11\\\">MERCHANTABILITY AND FITNESS FOR ANY PARTICULAR PURPOSE.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 711.2078)\\\" x=\\\"0 7.22 13.89 20 26.67 33.89 39.45 45.56 48.34 51 58.22 64.89 71.56 79.34 86.01 92.68 99.35 106.02 112.69 115.47 123.25 130.47 133.25 135.91 142.58 149.8 157.02 159.68 167.46 173.57 180.79 187.46 194.68 197.34 204.56 211.23 219.56 226.23 233.45 236.23 242.9 249.57 252.35 255.01 261.68 267.24 272.8 275.46 282.68 284.96 287.24 289.52 292.18 297.74 303.3 305.96 308.24 313.8 316.46 322.02 327.58 330.36 335.92 341.48 343.76 346.54 349.2 354.76 357.54 360.2 362.98 368.54 370.82 375.82 378.48 385.15 390.71 394.04 399.6 405.16 413.49 419.05 424.61 427.39 430.05 432.33 435.11\\\">DEFAULT, REPOSSESSION, AND OTHER REMEDIES. You will be in default of this Agreement if:</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 697.8895)\\\" x=\\\"0 3.33 5.99 12.66 18.22 23.78 26.44 32 37.56 40.22 45.78 51.34 54.12 56.78 62.34 67.9 72.9 75.56 81.12 86.68 91.68 94.34 99.9 105.46 110.46 118.79 124.35 129.91 132.69 135.35 140.91 144.24 146.9 152.46 155.24 160.8 166.36 169.69 172.35 177.91 186.24 191.8 197.36 202.92 205.7 208.36 213.92 219.48 225.04 230.6 233.93 236.59 239.37 244.93 250.49 253.15 259.82 265.38 268.71 274.27 279.83 288.16 293.72 299.28 302.06 304.72 310.28 315.28 317.94 323.5 326.83 332.39 337.39 339.67 345.23 350.79 356.35 359.01 364.57 367.9 370.56 377.78 383.34 388.9 394.46 397.12 404.34 409.9 412.56 420.89 426.45 431.45 437.01 439.67 445.23 450.79 459.12 464.68 470.24 475.8\\\">- You do not pay any payment or other amount under the Agreement as provided or when we make demand.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 684.5711)\\\" x=\\\"0 3.33 5.99 12.66 18.22 23.78 26.44 32 34.28 39.28 44.84 47.5 53.06 58.06 60.72 66.28 71.84 76.84 79.5 82.28 87.84 90.12 95.12 100.68 103.34 108.9 112.23 114.89 123.22 125.5 130.5 132.78 138.34 143.9 149.46 151.74 157.3 162.86 165.52 167.8 173.36 176.14 181.7 185.03 193.36 198.92 201.7 203.98 209.54 215.1\\\">- You give us any false or misleading information.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 671.2527)\\\" x=\\\"0\\\">-</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 36.4301 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.1823 671.2527)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 57.9753 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 61.7275 671.2527)\\\" x=\\\"0 2.28 7.84 12.84\\\">lose</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 80.1308 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 83.883 671.2527)\\\" x=\\\"0 5.56 11.12 16.12 21.12 26.68 31.68 36.68 38.96 44.52\\\">possession</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 133.9709 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 137.7231 671.2527)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.0629 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 149.8151 671.2527)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 163.7165 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 167.4687 671.2527)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 205.2617 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 209.0139 671.2527)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 219.5754 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 223.3276 671.2527)\\\" x=\\\"0 5 10.56 16.12 18.9 21.18 26.18 31.18 36.74 39.52 41.8 47.36 52.92\\\">confiscation,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 279.0307 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 282.7829 671.2527)\\\" x=\\\"0 2.78 8.34 11.67 14.45 20.01 22.29 25.07 30.63 33.96\\\">forfeiture</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 322.3044 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 326.0566 671.2527)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 334.9482 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.7004 671.2527)\\\" x=\\\"0 5.56 8.34 13.9 19.46\\\">other</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 361.4934 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 365.2456 671.2527)\\\" x=\\\"0 2.28 7.84 12.84 18.4 20.68 26.24 31.8 34.58 40.14 43.47\\\">involuntary</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 413.7222 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 417.4744 671.2527)\\\" x=\\\"0 2.78 6.11 11.67 17.23 22.23 25.01 30.57\\\">transfer</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 451.3757 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 455.1279 671.2527)\\\" x=\\\"0 3.33 8.89 14.45 20.01 23.34 28.9 31.18 36.74 41.74\\\">regardless</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.876 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 505.6282 671.2527)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 513.968 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 517.7202 671.2527)\\\" x=\\\"0 7.22 12.78 18.34 21.12 26.68 32.24\\\">whether</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.2964 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0486 671.2527)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 659.9344)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79 40.45 42.73 47.73 50.39 53.17 58.73 64.29 66.95 71.95 77.51 83.07 85.35 90.91 95.91 98.69 101.35 106.91 109.69 112.35 114.63 120.19 125.75 128.03 133.03 135.31 140.87 143.15 145.81 151.37 154.7 157.36 162.92 168.48 176.81 179.09 184.65 186.93 191.93 194.71 198.04 203.6 206.38 208.66 213.66 219.22 221.88 227.44 230.77 236.33 241.33 246.89 252.45 258.01 260.29 265.85 271.41 276.41\\\">Property is the subject of judicial or administrative proceedings.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 646.616)\\\" x=\\\"0 3.33 5.99 12.66 18.22 23.78 26.44 32 34.28 39.84 42.5 48.06 53.62 59.18 61.84 64.62 70.18 75.74 79.07 84.63 87.29 89.57 94.57 97.23 102.79 108.35 111.01 116.01 121.57 124.9 129.9 132.18 137.18 139.46 145.02 150.58 153.24 158.24 163.8 168.8 171.58 177.14 185.47 191.03 194.36\\\">- You die and there is no surviving customer.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 633.2977)\\\" x=\\\"0 3.33 5.99 12.1 17.66 23.22 25.88 32.55 35.88 41.44 47 52.56 55.89 58.67 63.67 66.33 68.61 73.61 76.27 78.55 84.11 89.11 91.89 94.67 97.33 102.33 105.11 110.67 112.95 118.51 124.07 126.73 132.29 135.62 138.28 143.84 149.4 157.73 163.29 168.85 174.41 179.97 182.63 188.19 193.75 198.75 204.31 209.87 215.43 218.09 221.42 226.98 232.54 238.1 240.38 243.71\\\">- The Property is lost, stolen or damaged beyond repair.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 619.9793)\\\" x=\\\"0 3.33 5.99 12.66 18.22 23.78 26.44 32 37 42 44.28 49.84 55.4 58.06 60.84 66.4 71.96 74.62 81.29 86.85 90.18 95.74 101.3 109.63 115.19 120.75 123.53 126.19 131.75 135.08 137.74 140.52 143.85 149.41 154.97 159.97 162.75 168.31 171.64 174.3 177.08 182.64 188.2 190.86 197.53 200.86 206.42 211.98 217.54 220.87 223.65 228.65\\\">- You assign the Agreement or transfer the Property.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 606.6609)\\\" x=\\\"0 3.33 5.99 13.21 18.77 21.05 26.61 31.61 36.61 39.27 44.83 48.16 53.72 59.28 61.56 67.12 69.4 72.18 77.74 83.3 85.96 91.52 96.52 99.18 101.46 107.02 114.24 117.02 119.68 124.68 130.24 135.8 138.46 143.46 145.74 151.3 153.58 159.14 161.92 167.48 170.14 175.7 181.26 186.26 188.92 195.59 201.15 204.48 210.04 215.6 223.93 229.49 235.05 237.83 240.49 243.27 248.83 252.16 260.49\\\">- Unless prohibited by law, you violate any Agreement term.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 593.3426)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 38.6566 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 41.5168 593.3426)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 57.1369 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 59.9971 593.3426)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 108.9131 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 111.7732 593.3426)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 119.0535 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 121.9136 593.3426)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 129.7554 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 132.6156 593.3426)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 27.3 30.08\\\">default,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 165.4769 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 168.3371 593.3426)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 181.1202 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 183.9804 593.3426)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 202.872 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 205.7321 593.3426)\\\" x=\\\"0 5.56\\\">at</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 214.072 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 216.9321 593.3426)\\\" x=\\\"0 5.56 11.12\\\">our</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.3853 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 234.2454 593.3426)\\\" x=\\\"0 5.56 7.84 13.4 18.4 21.18 23.46 29.02 34.58\\\">election,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 271.6087 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 274.4688 593.3426)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.1534 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 294.0135 593.3426)\\\" x=\\\"0 5 10.56 16.12 18.4 23.96 28.96\\\">subject</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 325.7567 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 328.6169 593.3426)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 336.9567 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 339.8168 593.3426)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.9399 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 358.8 593.3426)\\\" x=\\\"0 7.22 12.78 15.06 17.84 20.12 25.68\\\">waiting</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 390.0452 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 392.9053 593.3426)\\\" x=\\\"0 5.56 11.12 14.45 16.73 22.29\\\">period</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 420.7618 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 423.6219 593.3426)\\\" x=\\\"0 2.28 10.61 16.17 21.73 26.73 32.29\\\">imposed</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 461.4783 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 464.3385 593.3426)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.9 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 477.7602 593.3426)\\\" x=\\\"0 2.28 7.84 15.06\\\">law,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 495.602 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 498.4621 593.3426)\\\" x=\\\"0 2.78 8.34 13.34\\\">take</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 517.3635 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 520.2236 593.3426)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 536.3467 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 539.2068 593.3426)\\\" x=\\\"0 5.56 10.56 13.34 15.62 21.18 26.74\\\">actions</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 582.0242)\\\" x=\\\"0 5.56 11.12 14.45 22.78 25.06 27.84 30.62 36.18 41.74 44.4 49.96 54.96 57.62 59.9 65.46 72.68 75.46 78.12 80.4 85.96 90.96 93.24 98.8 104.36 106.64 112.2 117.76 120.42 127.64 129.92 132.7 138.26 143.82 149.38 152.16 154.82 157.1 159.38 167.71 169.99 172.77 178.33 181.11 183.39 188.95 194.51 197.17 202.73 208.29 213.85 216.51 222.07 224.85 227.51 230.29 235.85 241.41 244.07 246.85 252.41 254.69 256.97 262.53 269.75 272.03 277.59 283.15 285.81 291.37 296.37 299.15 301.43 306.99 312.55 317.55 320.33 322.99 328.55 334.11 339.67 345.23 347.89 353.45 356.23 358.89 366.11 371.67 373.95 378.95 384.51 387.17 394.39 396.67 398.95 401.23 403.89 408.89 414.45 417.78 423.34 426 431 436.56 442.12 445.45 448.11 453.67 459.23 462.01 467.57 473.13 475.41 478.19\\\">permitted by law, including without limitation one of the following actions, none of which will cure your default:</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 568.7059)\\\" x=\\\"0 3.33 10.55 16.11 18.89 21.17\\\">-Until</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 56.5522 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 59.9757 568.7059)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 76.0988 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 79.5223 568.7059)\\\" x=\\\"0 5.56 11.12 14.45 19.45 25.01 30.57 35.57\\\">purchase</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 120.66 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 124.0836 568.7059)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 137.985 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 141.4086 568.7059)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 179.2015 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 182.6251 568.7059)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 193.1866 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 196.6102 568.7059)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29 32.85\\\">provided</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 235.0282 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 238.4518 568.7059)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 246.2936 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 249.7171 568.7059)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 265.3372 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 268.7608 568.7059)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 320.4552 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 323.8787 568.7059)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 332.7703 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 336.1939 568.7059)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 350.0953 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 353.5189 568.7059)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 391.3118 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 394.7354 568.7059)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.0157 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 405.4393 568.7059)\\\" x=\\\"0 3.33 8.89 14.45 20.01 25.01 30.01 35.57 40.57 45.57 51.13\\\">repossessed</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 462.1385 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 465.5621 568.7059)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.4537 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 477.8772 568.7059)\\\" x=\\\"0 5 10.56 13.89 17.22 22.78 28.34 33.9 39.46 42.79 48.35 53.91\\\">surrendered,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 534.5765 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 538 568.7059)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 545.8418 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 549.2654 568.7059)\\\" x=\\\"0 5.56 11.12 16.12\\\">each</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 557.3875)\\\" x=\\\"0 5 10.56 15.56\\\">case</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 54.2231 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 56.9386 557.3875)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 67.5001 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 70.2156 557.3875)\\\" x=\\\"0 5.56 11.12 14.45 22.78 25.06 27.84 30.62 36.18\\\">permitted</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 111.9588 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 114.6743 557.3875)\\\" x=\\\"0 5.56 11.12 16.68 22.24\\\">under</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 140.2505 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 142.966 557.3875)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 158.5862 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 161.3017 557.3875)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 212.996 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 215.7115 557.3875)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.3317 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 234.0472 557.3875)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 282.9632 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 285.6787 557.3875)\\\" x=\\\"0 5 10.56 16.12 18.4\\\">shall</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 306.3623 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 309.0779 557.3875)\\\" x=\\\"0 5 10.56 16.12 18.9 21.18 26.74 32.3\\\">continue</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 346.9441 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 349.6596 557.3875)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 357.9994 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 360.715 557.3875)\\\" x=\\\"0 3.33 8.89 14.45 20.01 27.23\\\">renew,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 390.7296 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 393.4452 557.3875)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 410.1297 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 412.8453 557.3875)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 425.6285 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 428.344 557.3875)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.2356 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 449.9511 557.3875)\\\" x=\\\"0 5 10.56 16.12 18.9 21.18 26.74 32.3\\\">continue</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 487.8173 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 490.5329 557.3875)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 498.8727 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 501.5882 557.3875)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01\\\">charge</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 532.1644 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 534.88 557.3875)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.003 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.7185 557.3875)\\\" x=\\\"0 3.33 8.89 14.45\\\">rent</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 546.0691)\\\" x=\\\"0 5.56 11.12 16.68 22.24 25.57 28.23 31.01 36.57 42.13 44.79 47.57 53.13 56.46 64.79 69.79 72.45 78.01 80.79 83.45 86.23 91.79 94.07 99.07 101.73 108.4 113.96 117.29 122.85 128.41 136.74 142.3 147.86 150.64\\\">under the terms of this Agreement.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 532.7508)\\\" x=\\\"0 3.33 12.77 18.33 20.99 29.32 34.88 39.88 42.54 45.32 50.88 55.88 61.44 64.1 69.66 75.22 80.22 82.88 88.44 93.44 96.22 98.5 104.06 109.62 112.28 119.5 125.06 127.72 133.28 138.84 141.12 143.4 148.96 153.96 159.52 162.18 164.96 170.52 173.18 178.74 184.3 186.96 192.52 198.08 203.08 208.64 213.64 218.64 224.2 227.53 232.53 235.19 240.75 244.08 246.74 252.3 257.86 262.86 265.14 270.14 275.7 281.26 283.54 289.1 291.76 294.54 300.1 302.76 308.32 311.65 317.21 319.99 325.55 330.55 333.33 335.99 341.55 347.11 350.44 353.1 355.38 360.94 363.72 369.28 372.61 378.17 383.17 385.95 388.61 390.89 396.45 399.11 401.89 407.45 413.01 415.67 422.34 425.67 431.23 436.79 442.35 445.68 448.46 453.46\\\">-We may take any action we believe to be necessary or advisable to protect our interest in the Property.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 519.4324)\\\" x=\\\"0 3.33 12.77\\\">-We</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 51.4301 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 54.7506 519.4324)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 73.6422 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 76.9627 519.4324)\\\" x=\\\"0 5.56 11.12 16.68 21.68 27.24 30.02 35.58 37.86 40.14\\\">peacefully</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 122.1092 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 125.4297 519.4324)\\\" x=\\\"0 3.33 8.89 14.45 20.01 25.01 30.01 35.57 40.57\\\">repossess</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 171.0058 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 174.3263 519.4324)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 188.2277 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 191.5482 519.4324)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 229.3411 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 232.6616 519.4324)\\\" x=\\\"0 7.22 12.78 18.34 21.67 27.23 32.23 37.79\\\">wherever</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 273.7896 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 277.1101 519.4324)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 289.8933 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 293.2138 519.4324)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.1054 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 315.4259 519.4324)\\\" x=\\\"0 2.78 5.06 10.62\\\">find</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 331.6075 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 334.928 519.4324)\\\" x=\\\"0 2.28 5.06\\\">it.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 342.7649 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 346.0854 519.4324)\\\" x=\\\"0 9.44\\\">We</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 361.0854 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 364.4059 519.4324)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 378.4684 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 381.7889 519.4324)\\\" x=\\\"0 5.56 7.84 12.84\\\">give</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 400.1922 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 403.5127 519.4324)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.6358 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 422.9563 519.4324)\\\" x=\\\"0 3.33 8.89 14.45 20.01 25.01 30.01 35.57 40.57 45.57 47.85 53.41\\\">repossession</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 481.9358 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 485.2562 519.4324)\\\" x=\\\"0 5.56 11.12 13.9 16.18 21.18 26.74\\\">notices</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 516.9994 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 520.3199 519.4324)\\\" x=\\\"0 3.33 8.89 14.45 20.01 22.29 25.62 31.18\\\">required</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 557.068 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 560.3885 519.4324)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 508.1141)\\\" x=\\\"0 2.28 7.84 15.06\\\">law.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 50.9418 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 53.8695 508.1141)\\\" x=\\\"0 6.67 9.45 12.23 17.79\\\">After</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 74.9876 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 77.9153 508.1141)\\\" x=\\\"0 3.33 8.89 14.45 20.01 25.01 30.01 35.57 40.57 45.57 47.85 53.41\\\">repossession</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.8948 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 139.8224 508.1141)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 148.714 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 151.6417 508.1141)\\\" x=\\\"0 5 10.56 13.89 17.22 22.78 28.34 33.9 39.46 42.79\\\">surrender,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 197.2178 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 200.1455 508.1141)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 212.9287 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 215.8564 508.1141)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 229.9189 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 232.8465 508.1141)\\\" x=\\\"0 5.56 11.12 13.4\\\">hold</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 251.8114 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 254.739 508.1141)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 268.6404 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 271.568 508.1141)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.1393 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 315.067 508.1141)\\\" x=\\\"0 5 10.56 16.12 18.4 23.96 28.96\\\">subject</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 346.8101 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 349.7378 508.1141)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 358.0776 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 361.0053 508.1141)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 377.1283 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 380.056 508.1141)\\\" x=\\\"0 3.33 5.61 11.17 16.73\\\">right</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 399.5677 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 402.4954 508.1141)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 418.6184 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 421.5461 508.1141)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 440.4377 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 443.3653 508.1141)\\\" x=\\\"0 5.56 11.12 16.12\\\">have</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 465.0499 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 467.9776 508.1141)\\\" x=\\\"0 5.56 11.12 16.68 22.24\\\">under</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 493.5537 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 496.4814 508.1141)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64\\\">applicable</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 541.6914 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 544.619 508.1141)\\\" x=\\\"0 2.28 7.84\\\">law</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.6825 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 562.6101 508.1141)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 496.7957)\\\" x=\\\"0 5 10.56 13.89 19.45 22.11 24.89 30.45 36.01 38.67 44.23 49.79 52.57 58.13 63.69 65.97 68.75 71.41 76.97 80.3 82.96 86.29 91.85 96.85 102.41 107.41 112.97 116.3 118.96 121.74 127.3 132.86 135.52 142.19 145.52 151.08 156.64 162.2 165.53 168.31 173.31\\\">cure the default or recover the Property.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 483.4773)\\\" x=\\\"0 3.33 10 15.56 23.89 28.89 31.55 38.77 44.33 46.99 51.99 57.55 63.11 68.67 74.23 76.89 79.67 85.23 90.23 92.51 98.07 103.63 106.29 111.85 117.41 122.41 125.07 130.63 136.19 139.52 147.85 150.13 152.91 155.69 161.25 166.81 169.47 175.03 180.03 182.81 185.09 190.65 196.21 198.87 206.09 208.37 210.65 212.93 215.59 221.15 226.71 229.37 234.93 240.49 246.05 251.61 257.17 259.83 262.61 268.17 270.83 273.61 279.17 284.73 287.39 292.95 301.28 306.84 312.4 317.96 320.74 323.4 328.96 333.96 338.96 342.29 347.85 353.41 358.97 361.75 364.41 369.97 375.53 377.81 383.37 388.37 393.37 396.03 401.59 404.92 410.48 416.04 418.32 423.88 426.16 428.94 434.5 440.06 442.72 448.28 453.28 455.94 458.22 463.78 471\\\">-Sums we spend taking any permitted action will be added to the amount accrued, unless prohibited by law.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 456.8406)\\\" x=\\\"0 6.11 12.78 19.45 26.12 32.79\\\">TAXES.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 68.6664 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 72.5196 456.8406)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 90.3126 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 94.1658 456.8406)\\\" x=\\\"0 8.33 13.89 18.89\\\">must</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 115.8357 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 119.689 456.8406)\\\" x=\\\"0 2.28 10.61 18.94 24.5 30.06 32.34 37.9 40.68 46.24 48.52\\\">immediately</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 173.2144 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 177.0676 456.8406)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 193.1906 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 197.0439 456.8406)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 205.9355 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 209.7887 456.8406)\\\" x=\\\"0 3.33 8.89 11.17 19.5 25.06 30.62 33.95 38.95\\\">reimburse</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 254.3053 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 258.1585 456.8406)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 268.72 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 272.5733 456.8406)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 277.6319 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 281.4851 456.8406)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 294.2683 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 298.1215 456.8406)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 314.2446 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 318.0978 456.8406)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.7677 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 333.6209 456.8406)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 349.744 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 353.5972 456.8406)\\\" x=\\\"0 5.56 7.84\\\">all</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 363.7193 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 367.5725 456.8406)\\\" x=\\\"0 5.56 11.12 16.12 21.68 25.01 30.57 38.9 44.46 50.02\\\">government</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 420.3801 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 424.2334 456.8406)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01 30.57\\\">charges</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 459.8095 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 463.6628 456.8406)\\\" x=\\\"0 3.33 8.89 11.17 16.73 19.51 21.79 27.35\\\">relating</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 496.5778 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 500.431 456.8406)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 508.7709 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 512.6241 456.8406)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.5255 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 530.3787 456.8406)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 445.5223)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24 28.52 34.08 39.64\\\">including,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 75.5268 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 78.3573 445.5223)\\\" x=\\\"0 5.56 11.12\\\">but</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 92.2586 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 95.0891 445.5223)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 108.9905 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 111.8209 445.5223)\\\" x=\\\"0 2.28 4.56 12.89 15.17 17.95 23.51\\\">limited</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 140.8932 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 143.7237 445.5223)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 152.0635 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 154.894 445.5223)\\\" x=\\\"0 2.78 8.34 13.9 18.9\\\">fees,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 176.5737 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 179.4042 445.5223)\\\" x=\\\"0 2.78 8.34 13.34 18.9 23.9\\\">taxes,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 206.0839 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 208.9144 445.5223)\\\" x=\\\"0 2.78 5.06 10.62 16.18\\\">fines</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 230.096 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 232.9265 445.5223)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 249.6111 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 252.4416 445.5223)\\\" x=\\\"0 5 10.56 13.89 18.89 24.45 30.01 33.34 38.9 44.46 49.46\\\">surcharges,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 304.6877 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 307.5181 445.5223)\\\" x=\\\"0 7.22 12.78 18.34 21.12 26.68 32.24\\\">whether</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 343.0943 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 345.9248 445.5223)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.12 31.12 36.68\\\">assessed</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.1709 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 391.0014 445.5223)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.1244 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 404.9549 445.5223)\\\" x=\\\"0 5 10.56 16.12\\\">you,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 423.8563 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 426.6868 445.5223)\\\" x=\\\"0 5.56 10.56\\\">us,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 440.0266 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 442.8571 445.5223)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 451.7487 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 454.5792 445.5223)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.4806 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 471.311 445.5223)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 511.8823 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 514.7128 445.5223)\\\" x=\\\"0 9.44\\\">We</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.7128 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 532.5433 445.5223)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.4349 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 554.2654 445.5223)\\\" x=\\\"0 5.56 11.12\\\">add</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 434.2039)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.0014 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 50.123 434.2039)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 83.4775 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 86.5991 434.2039)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 94.9389 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 98.0606 434.2039)\\\" x=\\\"0 7.22 12.78 18.34\\\">what</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 119.1836 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 122.3052 434.2039)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 138.4283 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 141.5499 434.2039)\\\" x=\\\"0 5.56 12.78\\\">owe</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 159.8946 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 163.0162 434.2039)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 173.5777 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 176.6994 434.2039)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 181.758 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 184.8796 434.2039)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 201.0026 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 204.1242 434.2039)\\\" x=\\\"0 5.56\\\">do</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 215.2473 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 218.3689 434.2039)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 232.2703 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 235.3919 434.2039)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 251.5149 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 254.6365 434.2039)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 265.1981 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 268.3197 434.2039)\\\" x=\\\"0 7.22 12.78 18.34\\\">when</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 292.2259 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 295.3476 434.2039)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.1307 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 311.2524 434.2039)\\\" x=\\\"0 8.33 13.89 18.89\\\">make</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.7055 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.8271 434.2039)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57 36.13\\\">demand.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 377.7431 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 380.8647 434.2039)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 386.4214 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 389.543 434.2039)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 405.666 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 408.7877 434.2039)\\\" x=\\\"0 5.56\\\">do</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.9107 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 423.0323 434.2039)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 436.9337 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 440.0553 434.2039)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.1783 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 459.3 434.2039)\\\" x=\\\"0 5 10.56 15.56\\\">such</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 480.423 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 483.5446 434.2039)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57 33.35\\\">amounts</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.8991 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 525.0207 434.2039)\\\" x=\\\"0 7.22 12.78 18.34\\\">when</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 548.927 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 552.0486 434.2039)\\\" x=\\\"0 2.78 8.34 13.9\\\">they</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 422.8855)\\\" x=\\\"0 5.56 8.89\\\">are</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.5531 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 50.576 422.8855)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.12 31.12 36.68\\\">assessed</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 92.8221 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 95.845 422.8855)\\\" x=\\\"0 3.33 8.89 14.45 16.73 22.29 27.29\\\">(unless</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 128.1399 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 131.1627 422.8855)\\\" x=\\\"0 5 10.56 15.56\\\">such</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 152.2858 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 155.3087 422.8855)\\\" x=\\\"0 3.33 8.89 13.89 19.45 21.73 24.51\\\">results</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 184.8204 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 187.8433 422.8855)\\\" x=\\\"0 2.78 6.11 11.67\\\">from</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 207.8433 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.8661 422.8855)\\\" x=\\\"0 5.56 11.12\\\">our</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.3192 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 228.3421 422.8855)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.8 32.36 37.92 42.92 48.48 51.81\\\">negligence),</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 282.9417 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 285.9646 422.8855)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.0876 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 305.1105 422.8855)\\\" x=\\\"0 8.33 13.89 18.89\\\">must</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 326.7804 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 329.8033 422.8855)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 345.9264 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 348.9492 422.8855)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 365.0723 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 368.0951 422.8855)\\\" x=\\\"0 5.56 11.12 16.68 22.24 24.52 27.3 29.58 35.14\\\">penalties</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 408.2416 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 411.2645 422.8855)\\\" x=\\\"0 7.22 12.78 18.34\\\">when</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 435.1707 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 438.1936 422.8855)\\\" x=\\\"0 5.56 11.12\\\">due</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.8782 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 457.9011 422.8855)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.7927 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 469.8155 422.8855)\\\" x=\\\"0 3.33 8.89 11.17 19.5 25.06 30.62 33.95 38.95\\\">reimburse</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 514.3321 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 517.355 422.8855)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 527.9165 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 530.9394 422.8855)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 535.998 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 539.0209 422.8855)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.8041 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 554.8269 422.8855)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 411.5672)\\\" x=\\\"0 2.78 8.34 13.9 22.23\\\">them.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 58.1098 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 61.0597 411.5672)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 78.8527 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.8026 411.5672)\\\" x=\\\"0 8.33 13.89 18.89\\\">must</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 103.4725 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 106.4225 411.5672)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 122.5455 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 125.4955 411.5672)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 139.3968 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 142.3467 411.5672)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01 30.57\\\">charges</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 177.9229 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 180.8729 411.5672)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 188.7147 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 191.6646 411.5672)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 207.2847 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.2346 411.5672)\\\" x=\\\"0 5.56 11.12 14.45 20.01 25.57 28.9 34.46 40.02\\\">paragraph</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 255.8255 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 258.7754 411.5672)\\\" x=\\\"0 5.56 10.56 16.12\\\">even</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.46 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 283.4099 411.5672)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 288.4685 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 291.4184 411.5672)\\\" x=\\\"0 5 10.56 15.56\\\">such</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.5415 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 315.4914 411.5672)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01 30.57\\\">charges</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.0676 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 354.0175 411.5672)\\\" x=\\\"0 5.56 8.89\\\">are</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 368.4707 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 371.4206 411.5672)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 385.322 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 388.2719 411.5672)\\\" x=\\\"0 5.56 7.84 10.12 12.4 17.96\\\">billed</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 411.7973 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 414.7472 411.5672)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 423.0871 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 426.037 411.5672)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 436.5985 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 439.5485 411.5672)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 448.4401 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 451.39 411.5672)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 459.7298 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 462.6798 411.5672)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 478.8028 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 481.7528 411.5672)\\\" x=\\\"0 5.56 11.12 13.9 16.18\\\">until</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 500.2147 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 503.1646 411.5672)\\\" x=\\\"0 5.56 8.34 11.12 16.68\\\">after</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 523.1744 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 526.1243 411.5672)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 540.0257 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 542.9756 411.5672)\\\" x=\\\"0 5.56 11.12\\\">end</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.6602 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 562.6101 411.5672)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 400.2488)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.0014 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 49.7259 400.2488)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 98.6419 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 101.3665 400.2488)\\\" x=\\\"0 2.78 8.34 11.67 20\\\">term,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 124.1448 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 126.8693 400.2488)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 137.4308 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 140.1554 400.2488)\\\" x=\\\"0 2.28 7.84 13.4\\\">long</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 159.1202 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 161.8448 400.2488)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 172.4063 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 175.1308 400.2488)\\\" x=\\\"0 5 10.56 15.56\\\">such</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 196.2539 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 198.9784 400.2488)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01 30.57\\\">charges</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 234.5546 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 237.2791 400.2488)\\\" x=\\\"0 5.56 8.89\\\">are</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 251.7322 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 254.4568 400.2488)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64\\\">applicable</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.6667 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 302.3913 400.2488)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 310.7311 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 313.4556 400.2488)\\\" x=\\\"0 5 10.56 18.89\\\">some</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 337.9088 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 340.6333 400.2488)\\\" x=\\\"0 5.56 11.12 14.45\\\">part</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 357.8648 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 360.5893 400.2488)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 368.9291 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 371.6537 400.2488)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 385.555 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 388.2796 400.2488)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 437.1956 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 439.9201 400.2488)\\\" x=\\\"0 2.78 8.34 11.67 20\\\">term.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 462.6985 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 465.423 400.2488)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 483.216 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 485.9405 400.2488)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 500.003 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 502.7275 400.2488)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 516.6289 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 519.3534 400.2488)\\\" x=\\\"0 5.56 11.12 16.12\\\">have</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 541.038 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 543.7625 400.2488)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.1024 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 554.8269 400.2488)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 388.9305)\\\" x=\\\"0 5.56 11.12 14.45 17.11 19.39 24.95 29.95 35.51 43.84 49.4 52.06 54.84 60.4 65.4 70.96 75.96\\\">our income taxes.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 375.6121)\\\" x=\\\"0 6.11 8.89 15 20.56 27.23 30.01 32.67 42.11 47.67 50.33 53.66 59.22 62 67.56 69.84 75.4 78.06 80.84 83.12 85.9 88.18 93.74 96.4 99.18 104.74 107.4 110.18 115.74 121.3 123.96 130.63 133.96 139.52 145.08 150.64 153.97 156.75 161.75 164.41 167.19 172.75 176.08 178.74 181.52 187.08 192.64 195.3 198.08 203.64 206.97 215.3 217.96 223.52 226.3 228.96 231.74 237.3 242.86 245.52 247.8 253.36 258.92 263.92 269.48 272.14 277.7 283.26 288.82 291.48 297.04 302.6 305.38 307.66 309.94 312.6 317.6 323.16 328.72 331.38 336.94 341.94 347.5 353.06 355.34 358.67 364.23 366.89 372.45 379.67 385.23 390.79 394.12 399.12 404.68 406.96 412.52\\\">TITLE. We retain title to the Property for the term of the lease and until you acquire ownership.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 362.2937)\\\" x=\\\"0 6.67 13.34 20.01 28.34 35.01 42.23 48.34 55.01 57.79 60.45 69.89 75.45 78.11 83.67 89.23 94.23 99.79 102.45 107.45 112.45 118.01 123.57 129.13 134.69 136.97 142.53 148.09 150.75 156.31 161.87 167.43 169.71 172.49 177.49 180.15 182.93 186.26 191.82 200.15 202.81 207.81 213.37 218.93 222.26 224.92 229.92 235.48 241.04 246.04 251.04 253.32 258.88 264.44 267.1 272.66 277.66 282.66 288.22 293.78 299.34 302.12 304.9 307.56 313.12 318.12 320.78 326.34 329.67 335.23 340.23 342.51 348.07 353.63 359.19 361.85 367.41 372.97 375.25 380.81 388.03\\\">PAYMENTS. We have scheduled debits from your checking account, as provided below:</text></g><clipPath id=\\\"clip2-2\\\"><path d=\\\"M 35 328 L 574 328 L 574 345 L 35 345 L 35 328 z \\\"/></clipPath><g clip-path=\\\"url(#clip2-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.2825 332.657)\\\" x=\\\"0 7.22 15 22.22 28.89 36.11 44.44 51.11 58.33 60.99 67.66 74.88 80.99 88.21 95.99 103.21 105.99 112.1 118.77 124.88 127.66 135.44 142.66 145.32 151.43 159.21 166.43 169.09 175.76 182.43 189.1 197.43 204.1 211.32 217.43 224.1 226.76 233.43 236.21 242.88 245.54 252.21 259.43 266.65 269.31 272.64 279.31 286.53 293.75 296.41 303.63 310.3 316.97 319.75 325.86 332.53\\\">CONSUMER AUTHORIZATION FOR PAYMENTS VIA ACH (ACH DEBITS)</text></g><clipPath id=\\\"clip2-3\\\"><path d=\\\"M 35 79 L 574 79 L 574 329 L 35 329 L 35 79 z \\\"/></clipPath><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 316.3387)\\\" x=\\\"0 6.67 13.89\\\">ACH</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 61.7883 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 66.1692 316.3387)\\\" x=\\\"0 7.22 12.78 18.34 20.62 23.4\\\">Debits</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 94.5725 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 98.9533 316.3387)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 110.6233 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 115.0041 316.3387)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46 42.79 47.79\\\">Payment(s)</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 166.1272 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 170.508 316.3387)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 187.1926 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 191.5735 316.3387)\\\" x=\\\"0 7.22 12.78 18.34 23.9\\\">Range</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 221.0412 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 225.4221 316.3387)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.762 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 238.1428 316.3387)\\\" x=\\\"0 7.22 12.78 18.34 20.62 23.4 28.4\\\">Debits.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 269.3245 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 273.7053 316.3387)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.4983 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 295.8792 316.3387)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 28.35 30.63 35.63\\\">authorize</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 337.0754 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 341.4563 316.3387)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 352.0178 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 356.3987 316.3387)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 364.7385 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 369.1194 316.3387)\\\" x=\\\"0 5.56 11.12 16.68 18.96\\\">debit</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 390.8626 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 395.2434 316.3387)\\\" x=\\\"0 2.78 8.34 13.9 19.46\\\">funds</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.7063 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 424.0872 316.3387)\\\" x=\\\"0 2.78 6.11 11.67\\\">from</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 444.0872 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 448.4681 316.3387)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.9212 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 472.3021 316.3387)\\\" x=\\\"0 5.56 11.12 16.68\\\">bank</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 493.9866 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 498.3675 316.3387)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.68 32.24\\\">account</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 533.3919 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 537.7728 316.3387)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.4427 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.8236 316.3387)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.7249 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 305.0203)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 74.0295 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 77.2781 305.0203)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 85.6179 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 88.8665 305.0203)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 102.7678 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 106.0164 305.0203)\\\" x=\\\"0 2.28 7.84 13.4 18.4\\\">lease</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 129.9813 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 133.2298 305.0203)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57 38.35\\\">payments</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 176.5843 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 179.8329 305.0203)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 196.5174 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 199.766 305.0203)\\\" x=\\\"0 5.56 7.84\\\">all</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.8881 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 213.1366 305.0203)\\\" x=\\\"0 5.56 8.34 13.9 19.46\\\">other</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 235.9296 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 239.1782 305.0203)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57 33.35\\\">amounts</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 277.5327 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 280.7812 305.0203)\\\" x=\\\"0 5.56 10.56 15.56 18.89 24.45 30.01\\\">accrued</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 316.3574 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 319.606 305.0203)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 330.1675 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 333.4161 305.0203)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29 32.85\\\">provided</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.834 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 375.0826 305.0203)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 382.9244 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 386.173 305.0203)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 401.7931 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 405.0417 305.0203)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement,</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.736 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 459.9846 305.0203)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.8264 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 471.0749 305.0203)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.9763 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 488.2249 305.0203)\\\" x=\\\"0 2.78 8.34 10.62 12.9 18.46 25.68 27.96 33.52\\\">following</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 527.3118 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 530.5603 305.0203)\\\" x=\\\"0 3.33 8.89 14.45 20.01\\\">range</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 556.1365 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 559.3851 305.0203)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.7249 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 293.7019)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57 33.35\\\">amounts</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 79.0295 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.706 293.7019)\\\" x=\\\"0 5.56 11.12 13.9 19.46\\\">$1.00</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 106.7305 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 109.407 293.7019)\\\" x=\\\"0\\\">-</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 112.7371 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 115.4136 293.7019)\\\" x=\\\"0 5.56 11.12 16.68 22.24 25.02 30.58 36.14\\\">$500.00.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 154.3394 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 157.016 293.7019)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 174.8089 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 177.4855 293.7019)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 28.35 30.63 35.63\\\">authorize</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 218.6818 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 221.3583 293.7019)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.9198 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 234.5964 293.7019)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 242.9362 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 245.6128 293.7019)\\\" x=\\\"0 5.56 11.12 16.68 18.96\\\">debit</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 267.3559 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 270.0325 293.7019)\\\" x=\\\"0 2.28 7.84 12.84 17.84 23.4\\\">lesser</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 296.7659 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 299.4424 293.7019)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57 33.35\\\">amounts</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 337.7969 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 340.4735 293.7019)\\\" x=\\\"0 2.78 8.34 13.9\\\">than</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.9364 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 362.6129 293.7019)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 382.066 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 384.7426 293.7019)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57 38.35\\\">payment,</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 425.8754 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 428.5519 293.7019)\\\" x=\\\"0 5.56 11.12 16.12 21.68\\\">based</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 455.798 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 458.4746 293.7019)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 469.5976 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 472.2742 293.7019)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 491.7273 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 494.4038 293.7019)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 532.7583 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 535.4349 293.7019)\\\" x=\\\"0 5.56 7.84 12.84 15.62 21.18 24.51 29.51\\\">history.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.7249 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 282.3836)\\\" x=\\\"0 7.78 13.34 16.67 19.33 24.89 30.45 36.01 38.29 41.07 46.07 48.73 55.95 58.23 60.51 62.79 65.45 71.01 76.57 79.23 81.51 87.07 89.73 94.73 100.29 105.29 110.85 113.51 116.84 122.4 127.96 133.52 139.08 141.86 144.52 150.08 155.64 157.92 163.48 168.48 173.48 176.14 183.36 188.92 191.58 197.14 202.7 205.48 207.76 210.54 215.54 218.2 223.2 228.76 234.32\\\">Our debits will be in such range, unless we notify you.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 269.0652)\\\" x=\\\"0 6.67 13.89 21.11 23.77 30.99 36.55 42.11 44.39 47.17 52.17 54.83 57.61 63.17 66.5 69.16 76.38 81.94 84.72 90.28 93.61 99.17 104.73 110.29 112.95 119.62 125.18 130.18 138.51 144.07 149.63 152.41 155.07 161.18 166.74 172.3 175.08 177.74 184.41 189.97 195.53 198.19 203.75 209.31 212.09 217.65 223.21 226.54 228.82 233.82 239.38 242.04 247.6 252.6 255.26 258.04 263.6 266.26 271.82 277.38 282.94 285.22 288 290.66 296.22 298.88 304.44 310 312.78 318.34 323.9 326.56 329.34 334.9 338.23 340.89 346.45 352.01 357.01 359.67 363 368.56 371.34 376.9 380.23 385.79 391.35 396.91 399.57 405.13 410.69 415.69 424.02 429.58 435.14 437.92 440.58 443.36 448.92 454.48\\\">ACH Debits for Returned Payment Fee. You authorize us to debit $ 20.00 for an* D E M O *payment fee.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 255.7469)\\\" x=\\\"0 7.22 12.78 15.56 17.84 22.84\\\">Notice</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 69.0783 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 72.6034 255.7469)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 80.9433 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 84.4684 255.7469)\\\" x=\\\"0 6.67 12.23 15.56 17.84 23.4 26.18 28.46 34.02 39.58\\\">Variation.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 126.8317 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 130.3568 255.7469)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 135.9135 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 139.4386 255.7469)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 145.0001 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.5253 255.7469)\\\" x=\\\"0 5.56 11.12 16.68 18.96\\\">debit</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 170.2684 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 173.7935 255.7469)\\\" x=\\\"0 2.78 8.34 10.62 12.9\\\">falls</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 191.6939 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 195.2191 255.7469)\\\" x=\\\"0 5.56 11.12 13.9 18.9 21.18 26.74\\\">outside</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 227.5238 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 231.0489 255.7469)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 244.9503 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 248.4754 255.7469)\\\" x=\\\"0 5 10.56 16.12 21.12 23.4 26.18 28.46 34.02\\\">specified</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 288.0603 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 291.5855 255.7469)\\\" x=\\\"0 3.33 8.89 14.45 20.01 25.57\\\">range,</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.94 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 323.4651 255.7469)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 336.2483 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 339.7734 255.7469)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 353.8359 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 357.3611 255.7469)\\\" x=\\\"0 5.56 13.89 19.45 21.73\\\">email</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 381.3747 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 384.8999 255.7469)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 401.0229 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 404.548 255.7469)\\\" x=\\\"0 5.56 11.12 13.9 16.18 21.18\\\">notice</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 431.2912 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 434.8163 255.7469)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 443.1562 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 446.6813 255.7469)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 460.5827 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 464.1078 255.7469)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 497.4623 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 500.9874 255.7469)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 517.672 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 521.1971 255.7469)\\\" x=\\\"0 5.56 11.12 13.9\\\">date</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 540.66 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 544.1852 255.7469)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 555.3082 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 558.8333 255.7469)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.7249 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 244.4285)\\\" x=\\\"0 5.56 8.34 11.12 16.68 20.01 22.67 29.89 35.45 37.73 42.73 48.29 50.95 58.17 63.73 66.39 73.61 75.89 78.17 80.45 83.11 88.67 94.23 99.79 102.07 104.85 107.51 112.51 118.07 123.07 128.63 131.29 136.85 145.18 150.74 156.3 161.86 164.64 167.42 170.08 176.75 182.31 187.87 190.53 197.75 200.03 202.31 204.59 207.25 212.81 218.37 221.15 223.81 229.37 232.15 234.81 237.09 242.65 248.21 253.21 255.99 258.65 264.21 269.77 272.43 277.43 282.99 285.27 290.83 296.39 301.95 307.51 310.84 313.5 319.06 324.62 329.62 334.62 336.53 339.19 344.75 350.31 353.09 355.37 360.37 365.93\\\">after which we will debit such amount. You will get at least 10 calendar days&apos; notice.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 231.1102)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68\\\">Payment</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 80.1379 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 85.2907 231.1102)\\\" x=\\\"0 7.22 12.78 15.56 21.12 26.12\\\">Dates.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 114.192 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 119.3448 231.1102)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 137.1377 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 142.2905 231.1102)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 28.35 30.63 35.63\\\">authorize</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 183.4868 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 188.6395 231.1102)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.74\\\">debits</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 215.3827 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 220.5354 231.1102)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.6585 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 236.8113 231.1102)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.7028 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 250.8556 231.1102)\\\" x=\\\"0 5.56 8.34 11.12 16.68\\\">after</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 270.8654 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 276.0181 231.1102)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 289.9195 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 295.0722 231.1102)\\\" x=\\\"0 5.56 11.12 13.9 19.46\\\">dates</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.5351 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 324.6879 231.1102)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 336.3578 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 341.5106 231.1102)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 379.865 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 385.0178 231.1102)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29 32.85\\\">provided</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 423.4358 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 428.5885 231.1102)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 436.4303 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 441.5831 231.1102)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 455.4844 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 460.6372 231.1102)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement,</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.3315 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 517.4843 231.1102)\\\" x=\\\"0 5.56 11.12 13.4 18.96 23.96\\\">unless</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 546.4491 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 551.6019 231.1102)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.7249 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 219.7918)\\\" x=\\\"0 5.56 8.34 13.9 19.46 22.79 30.01 32.29 37.29\\\">otherwise</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 83.5315 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 86.8927 219.7918)\\\" x=\\\"0 5.56 7.84 11.17 16.73 21.73\\\">direct</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 111.4044 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 114.7656 219.7918)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 125.3271 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 128.6884 219.7918)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.5302 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 139.8914 219.7918)\\\" x=\\\"0 7.22 10.55 12.83 15.61 17.89 23.45 29.01\\\">writing.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 171.6834 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 175.0446 219.7918)\\\" x=\\\"0 9.44\\\">We</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 190.0446 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 193.4058 219.7918)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 207.4683 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.8296 219.7918)\\\" x=\\\"0 5.56 11.12 16.68 18.96\\\">debit</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 232.5727 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 235.9339 219.7918)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.057 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 250.4182 219.7918)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.3098 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 262.671 219.7918)\\\" x=\\\"0 5.56 8.34 11.12 16.68\\\">after</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 282.6808 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 286.0421 219.7918)\\\" x=\\\"0 5.56 10.56 16.12 19.45\\\">every</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 310.4952 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 313.8564 219.7918)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 352.2109 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 355.5721 219.7918)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29 32.85\\\">provided</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.9901 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 397.3513 219.7918)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 405.1931 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 408.5543 219.7918)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 424.1745 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 427.5357 219.7918)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement;</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 479.23 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 482.5912 219.7918)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29 32.85 38.41\\\">provided,</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 523.7875 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 527.1488 219.7918)\\\" x=\\\"0 5.56 11.12 18.34 23.9 28.9 34.46 37.79\\\">however,</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.7249 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 208.4734)\\\" x=\\\"0 2.78 8.34 13.9\\\">that</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 57.3547 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 60.5776 208.4734)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 73.3608 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 76.5836 208.4734)\\\" x=\\\"0 3.33 8.89 13.89 19.45 22.78 27.78\\\">reserve</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 109.9284 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 113.1512 208.4734)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 127.0526 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 130.2755 208.4734)\\\" x=\\\"0 3.33 5.61 11.17 16.73\\\">right</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 149.7872 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 153.01 208.4734)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 161.3499 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 164.5728 208.4734)\\\" x=\\\"0 5.56 11.12 16.68 18.96\\\">debit</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 186.3159 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 189.5388 208.4734)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 200.6618 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 203.8847 208.4734)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 217.7861 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 221.0089 208.4734)\\\" x=\\\"0 5.56 11.12 16.68 21.68 23.96 29.52\\\">banking</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.0968 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 259.3197 208.4734)\\\" x=\\\"0 5.56 11.12\\\">day</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.4427 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 278.6656 208.4734)\\\" x=\\\"0 2.28 10.61 18.94 24.5 30.06 32.34 37.9 40.68 46.24 48.52\\\">immediately</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 332.191 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 335.4139 208.4734)\\\" x=\\\"0 5.56 8.89 14.45 19.45 25.01 30.57 32.85 38.41\\\">preceding</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 379.3934 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 382.6162 208.4734)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.0694 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 405.2922 208.4734)\\\" x=\\\"0 3.33 8.89 14.45 20.01 22.29 27.85\\\">regular</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 436.4787 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 439.7016 208.4734)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 478.0561 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 481.279 208.4734)\\\" x=\\\"0 5.56 11.12 13.9\\\">date</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 500.7419 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 503.9647 208.4734)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.0233 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 512.2462 208.4734)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.1476 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 529.3704 208.4734)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.7249 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 197.1551)\\\" x=\\\"0 5.56 11.12 13.9 19.46 22.12 24.9 30.46 32.74 35.02 40.02 42.68 48.24 53.8 56.46 62.02 64.68 70.24 75.8 81.36 84.69 90.25 95.81 101.37 106.37 108.65 114.21 119.77 122.43 127.99 133.55 138.55 141.21 144.54 146.82 149.6 155.16 157.94 160.72 163.38 168.94 171.6 177.16 182.72 185 187.28 192.84 198.4 203.4 206.06 211.62 214.95 217.61 224.83 230.39 235.95 240.95 246.51 252.07 257.63 260.29 265.85 271.41 276.41 279.74\\\">date falls on a non-banking day (i.e., a holiday or weekend day).</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 183.8367)\\\" x=\\\"0 7.22 12.78 16.11 19.44 25 30 32.78 35.06 40.62 46.18 51.18 53.96 56.62 63.29 68.85 74.41 77.07 82.63 88.19 90.97 96.53 102.09 105.42 107.7 112.7 118.26 120.92 126.48 131.48 134.14 136.92 142.48 145.14 150.7 156.26 161.82 164.1 166.88 169.54 175.1 180.66 186.22 188.88 193.88 197.21 202.77 208.33 210.61 213.39 216.05 221.05 226.61 232.17 235.5 238.16 243.72 248.72 253.72 259.28 264.84 270.4 273.18 275.84 278.62 284.18 286.84 291.84 297.4 300.73 304.06 309.62 314.62 317.4 320.06 325.62 328.95 332.28 337.84 341.17 346.17\\\">Corrections. You authorize us to debit and credit your* D E M O * correct errors.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 170.5184)\\\" x=\\\"0 6.67 9.45 12.23 17.79 22.79 25.57 27.85 32.85 38.41 41.07 48.29 53.85 56.63 62.19 64.97 67.63 73.74 79.3 84.86 87.52 90.3 93.63 99.19 104.75 109.75 115.31 120.31 123.09 125.37 130.93 136.49 138.4 143.4 146.06 151.62 154.4 157.18 162.74 167.74 170.52 172.8 177.8 183.36 186.02 191.58 197.14 199.92 205.48 208.14 210.42 215.42 218.08 220.86 226.42 231.98 234.64 241.31 246.87 250.2 255.76 261.32 269.65 275.21 280.77 283.55 286.21 293.43 298.99 301.77 307.33 309.99 315.55 318.88 324.44 329.44 331.72 337.28 342.84 348.4 351.06 356.62 362.18 367.74 372.74 378.3\\\">Effective Date. The transaction&apos;s effective date is the Agreement Date provided above.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 157.2)\\\" x=\\\"0 6.67 11.67 16.67 22.23 27.79 33.35 36.13 38.79 44.35 49.91 55.47 58.13 65.35 70.91 76.47 79.25 81.53 87.09 92.65 95.43 98.09 104.76 110.32 115.88 118.54 124.1 129.66 132.44 138 143.56 146.89 149.17 154.17 159.73 162.39 165.17 170.73 176.29 178.95 184.51 190.07 195.63 197.91 200.69 205.69 208.35 211.13 216.69 219.35 222.13 227.69 229.97 234.97 237.63 243.19 248.19 253.19 258.75 264.31 269.87 272.65 275.43 278.09 285.31 290.87 299.2 304.76 310.32 313.65 316.31 320.2 324.09 327.98 331.87 335.76 341.32 346.88 352.44 358 360.66 367.88 373.44 379 381.78 384.06 389.62 395.18 397.84 405.06 410.62 418.95 424.51 430.07 433.4 436.06 439.95 443.84 447.73 451.62 455.51 461.07 466.63 472.19 477.75\\\">Account and Routing. You authorize the debits to this account: Number *****3968 Routing Number *****1451.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 143.8816)\\\" x=\\\"0 7.22 12.78 18.34 23.9 29.46\\\">Change</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 75.7043 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 78.8745 143.8816)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 86.7163 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 89.8865 143.8816)\\\" x=\\\"0 6.67 11.67 16.67 22.23 27.79 33.35\\\">Account</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 126.0193 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 129.1895 143.8816)\\\" x=\\\"0 2.78 8.34 11.12 16.68 20.01 28.34 33.9 36.68 38.96 44.52 50.08\\\">Information:</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 182.0508 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 185.221 143.8816)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 203.0139 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 206.1841 143.8816)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 28.35 30.63 35.63\\\">authorize</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.3804 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 250.5506 143.8816)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 261.1121 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 264.2823 143.8816)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 272.6222 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 275.7923 143.8816)\\\" x=\\\"0 5.56 11.12 16.68 18.96\\\">debit</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 297.5355 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 300.7057 143.8816)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 316.8287 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 319.9989 143.8816)\\\" x=\\\"0 5.56 11.12\\\">new</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.3437 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 341.5138 143.8816)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.68 32.24\\\">account</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 376.5382 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 379.7084 143.8816)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 395.8315 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 399.0017 143.8816)\\\" x=\\\"0 5.56 7.84 12.84\\\">give</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 417.405 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 420.5752 143.8816)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 431.1367 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 434.3069 143.8816)\\\" x=\\\"0 2.28 7.84 10.62 16.18 19.51 27.84 33.4 36.18 38.46 44.02\\\">information</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 483.8918 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 487.062 143.8816)\\\" x=\\\"0 2.78 8.34 11.67\\\">for.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.5103 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 504.6805 143.8816)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 510.2371 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 513.4073 143.8816)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.5303 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 532.7005 143.8816)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.68 32.24\\\">account</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.7249 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 132.5633)\\\" x=\\\"0 2.28 7.28 9.94 13.27 18.83 21.11 26.67 31.67 34.45 40.01 45.57 48.23 55.45 61.01 63.67 70.89 73.17 75.45 77.73 80.39 85.95 91.51 97.07 99.35 102.13 104.79 110.35 115.91 120.91 123.57 129.13 134.13 139.13 144.69 150.25 155.81 158.59 161.25 168.47 174.03 176.69 182.25 187.81 192.81 198.37 201.03 206.59 212.15 214.81 217.59 219.87 222.15 227.71\\\">is re* D E M O *ill debit any account we have on file.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 119.2449)\\\" x=\\\"0 6.67 9.45 15.01 20.57 23.23 29.9 35.46 40.46 48.79 54.35 59.91 62.69 67.69 70.47 73.13 79.8 85.36 90.92 93.58 101.91 107.47 112.47 115.13 120.13 122.91 128.47 134.03 136.69 142.25 147.81 152.81 161.14 166.7 172.26 175.04 177.7 183.26 186.04 188.7 190.98 196.54 202.1 207.1 209.88 212.54 215.32 220.88 224.21 229.77 235.33 237.99 243.55 249.11 254.67 259.67 261.95 267.51 273.07 275.73 281.29 286.85 291.85 296.85 299.51 305.07 310.63 313.41 318.97 322.3 327.86 330.52 336.08 338.74 344.3 349.86 354.86 363.19 368.75 374.31 377.09\\\">Stop Payments. You may stop payment at least three banking days before a payment.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 105.9266)\\\" x=\\\"0 7.22 12.78 17.78 23.34 28.34 33.9 36.68 38.96 44.52 50.08\\\">Revocation,</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 93.5412 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 97.2277 105.9266)\\\" x=\\\"0 7.22 12.78 18.34 23.34 28.9 31.18 33.46 39.02 41.8 44.08 49.64 55.2\\\">Cancellation,</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 155.216 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 158.9024 105.9266)\\\" x=\\\"0 6.11 11.67 15 23.33 25.61 31.17 36.73 39.51 41.79 47.35 52.91\\\">Termination.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 214.5958 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 218.2823 105.9266)\\\" x=\\\"0 6.11 11.67 13.95\\\">This</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 237.2325 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 240.9189 105.9266)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 28.35 30.63 35.63 41.19 43.97 46.25 51.81\\\">authorization</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 298.2968 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 301.9833 105.9266)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.8\\\">applies</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 333.7899 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 337.4764 105.9266)\\\" x=\\\"0 5.56 11.12 13.9 16.18\\\">until</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.9383 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 359.6248 105.9266)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.7478 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 379.4343 105.9266)\\\" x=\\\"0 3.33 8.89 13.89 19.45 24.45\\\">revoke</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 409.449 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 413.1354 105.9266)\\\" x=\\\"0 2.28 5.06\\\">it.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 420.9723 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 424.6588 105.9266)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 442.4518 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 446.1382 105.9266)\\\" x=\\\"0 8.33 13.89 18.89\\\">must</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.8082 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 471.4946 105.9266)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29\\\">provide</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 504.3511 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 508.0375 105.9266)\\\" x=\\\"0 5.56\\\">at</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 516.3774 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 520.0639 105.9266)\\\" x=\\\"0 2.28 7.84 13.4 18.4\\\">least</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 541.2455 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 544.932 105.9266)\\\" x=\\\"0 2.78 8.34 11.67 17.23\\\">three</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.7249 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 94.6082)\\\" x=\\\"0 5.56 11.12 16.12 21.12 23.03 25.69 31.25 36.81 39.59 41.87 46.87 52.43 55.09 57.87 63.43 66.09 71.09 76.65 82.21 87.21 92.77 95.05 97.83 100.49 107.71 113.27 115.55 117.83 120.49 126.05 128.83 131.49 134.82 140.38 145.94 151.5 154.83 157.49 163.05 168.61 174.17 177.5 183.06 188.62 194.18 199.74 202.4 207.96 210.74 213.4 215.68 221.24 226.8 231.8 234.58 237.24 240.02 245.58 248.91 254.47 260.03 262.69 268.25 273.81 278.81 283.81 286.47 292.03 297.59 300.37 305.93 309.26 314.82 317.48 320.26 325.82 331.38 334.04 339.6 342.93 348.49 354.05 359.61 364.61 370.17 375.73 378.39 383.95 386.73 389.51 395.07 400.07 402.85 405.13 410.13 415.69 418.35 423.91 429.47 432.25 437.81 440.47 446.03 448.81 451.47 454.25 459.81 465.37 468.03 470.81 476.37 479.7 488.03 490.31 495.87 501.43 504.21 506.49 512.05 517.61\\\">days&apos; notice to cancel. Call at (100) 000-0006 at least three days before the proposed effective date of the termination.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 81.2898)\\\" x=\\\"0 7.78 10.56 16.12 21.68 25.01 27.67 34.89 40.45 46.01 51.57 57.13 62.69 67.69 70.47 73.13 80.35 85.91 88.69 90.97 93.75 98.75 101.41 106.97 111.97 114.63 120.19 122.97 125.63 127.91 133.47 139.03 144.03 146.81 149.47 152.25 154.53 159.53 165.09 167.75 173.31 178.87 183.87 186.15 191.71 197.27 202.27 207.27 209.93 215.49 221.05 226.05 231.05 233.71 239.27 244.83 247.61 253.17 256.5 262.06 264.72 267.5 273.06 278.62 281.28 286.84 292.4 297.4 300.18 302.84 308.4 310.68 312.96 315.24 317.52 323.08 328.64 331.3 336.86 342.42 345.2 350.76 353.42 355.7 358.48 361.14 366.14 371.7 377.26 380.59 383.25 388.81 393.81 398.81 404.37 409.93 415.49 418.27 420.93 423.21 428.77 431.55 437.11 440.44 448.77 454.33 457.11 459.39 464.95 470.51 473.17 478.17 483.73 489.29 494.85 500.41 505.97 510.97\\\">Other Changes. Notify us at least five business days before the next billing date if your account information changes.</text></g><clipPath id=\\\"clip2-4\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip2-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.775 345.3758 L 573.625 345.3758 L 573.625 344.3758 L 34.775 344.3758 L 34.775 345.3758 z \\\"/><path clip-path=\\\"url(#clip2-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.625 344.3758 L 573.625 344.3758 L 573.625 329.0574 L 572.625 329.0574 L 572.625 344.3758 z \\\"/><path clip-path=\\\"url(#clip2-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.775 344.3758 L 35.775 344.3758 L 35.775 329.0574 L 34.775 329.0574 L 34.775 344.3758 z \\\"/><path clip-path=\\\"url(#clip2-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.775 329.0574 L 573.625 329.0574 L 573.625 328.0574 L 34.775 328.0574 L 34.775 329.0574 z \\\"/><path clip-path=\\\"url(#clip2-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.775 79.6902 L 573.625 79.6902 L 573.625 78.6902 L 34.775 78.6902 L 34.775 79.6902 z \\\"/><path clip-path=\\\"url(#clip2-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.625 328.0574 L 573.625 328.0574 L 573.625 79.6902 L 572.625 79.6902 L 572.625 328.0574 z \\\"/><path clip-path=\\\"url(#clip2-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.775 328.0574 L 35.775 328.0574 L 35.775 79.6902 L 34.775 79.6902 L 34.775 328.0574 z \\\"/><g clip-path=\\\"url(#clip2-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 36.5264)\\\" x=\\\"0 6.498 11.997 14.391 16.785 21.789 26.793 29.295 34.299 39.303 44.307 504 506.3906 508.7812 511.1719 513.5625 515.9531 518.3438 520.7344 523.125 525.5156\\\">UT  07/2019          </text></g><g clip-path=\\\"url(#clip2-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 26.3398)\\\" x=\\\"0 6.003 11.007 16.011 21.015\\\">Page </text></g><g clip-path=\\\"url(#clip2-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 55.8097 26.3398)\\\" x=\\\"0\\\">3</text></g><g clip-path=\\\"url(#clip2-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.815 26.3398)\\\" x=\\\"0 2.394 7.398 9.9\\\"> of </text></g><g clip-path=\\\"url(#clip2-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 73.1021 26.3398)\\\" x=\\\"0\\\">7</text></g><g clip-path=\\\"url(#clip2-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#d9d9d9\\\" style=\\\"font-family:f2-0; font-size:54pt; white-space:pre\\\" transform=\\\"matrix(0.707 0.707 0.707 -0.707 135.6027 198.5094)\\\" x=\\\"0 56.016 96.048 136.08 176.112 216.144 236.16 284.184 324.216 344.232 364.248 416.232 456.264 480.24\\\">Qoppa Software</text></g><g clip-path=\\\"url(#clip2-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#002ba6\\\" style=\\\"font-family:f2-0; font-size:9pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.932 772)\\\" x=\\\"0 9.336 16.008 22.68 29.352 36.024 39.36 47.364 54.036 57.372 60.708 69.372 76.044 80.04 86.712 90.048 94.044 97.38 104.712 111.384 115.38 118.716 126.72 132.72 139.392 142.056 148.728 155.4 158.736 161.4 168.072 174.744 178.08 187.416 194.088 196.752 202.752 206.088 210.084 213.42 220.092 223.428 226.764 233.436 239.436 242.772 246.108 249.444 258.108 266.772 275.436 278.772 285.444 292.116 298.788 305.46 312.132 315.468 321.468 328.14\\\">Qoppa Software - For Evaluation Only - https://www.qoppa.com</text></g></g></svg></svg></g></svg><br>\\n<?xml version='1.0' encoding='UTF-8'?><svg id=\\\"qoppa_document\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" version=\\\"1.1\\\" xmlns=\\\"http://www.w3.org/2000/svg\\\" xmlns:xlink=\\\"http://www.w3.org/1999/xlink\\\"><!-- jPDFWeb v2019R1.03 - Demo Version --><style>title p { display: block; }</style><g id=\\\"qoppa_viewxform\\\" transform=\\\"matrix(1 0 0 1 0 0)\\\"><style type=\\\"text/css\\\">@font-face {font-family:f3-0;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f3-1;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f3-2;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}</style><svg id=\\\"qoppa_page_p3\\\" class=\\\"qoppa_page\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\"><rect class=\\\"qoppa_pageborder\\\" x=\\\"0.5pt\\\" y=\\\"0.5pt\\\" width=\\\"611pt\\\" height=\\\"791pt\\\" fill=\\\"none\\\" /><svg class=\\\"qoppa_pagecontents\\\" x=\\\"0pt\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" viewBox=\\\"0 0 612 792\\\" ><g class=\\\"qoppa_contentstream\\\" transform=\\\"matrix(1 0 0 -1 0 792)\\\" fill=\\\"black\\\" stroke=\\\"black\\\" stroke-width=\\\"1\\\" stroke-linecap=\\\"butt\\\" stroke-linejoin=\\\"miter\\\" stroke-miterlimit=\\\"10\\\"><clipPath id=\\\"clip3-1\\\"><path d=\\\"M 35 730 L 574 730 L 574 770 L 35 770 L 35 730 z \\\"/></clipPath><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 757.4812)\\\" x=\\\"0 6.6699 11.6699 16.6699 22.2314 27.793 35.0146 37.2949 42.8565 48.418 53.9795 62.3096 67.8711 73.4326 76.2109 81.2109\\\">Acknowledgments.</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 124.6643 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 127.3205 757.4812)\\\" x=\\\"0 6.6699 12.2314\\\">You</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 145.1135 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 147.7697 757.4812)\\\" x=\\\"0 3.3301 8.8916 14.4531\\\">read</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 167.7844 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 170.4406 757.4812)\\\" x=\\\"0 2.7783 8.3398 10.6201\\\">this</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 186.0607 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 188.717 757.4812)\\\" x=\\\"0 5.5615 11.1231 13.9014 19.4629 25.0244 28.3545 30.6348 35.6348 41.1963 43.9746 46.2549 51.8164\\\">authorization</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 246.0949 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 248.7512 757.4812)\\\" x=\\\"0 2.2803\\\">in</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.593 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 259.2492 757.4812)\\\" x=\\\"0 5.5615 8.8916 11.1719 16.7334 19.5117\\\">print,</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.5393 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 284.1955 757.4812)\\\" x=\\\"0 5.5615\\\">on</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 295.3186 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 297.9748 757.4812)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 303.5363 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 306.1926 757.4812)\\\" x=\\\"0 5 10.5615 18.8916 24.4531 30.0146 32.793 38.3545\\\">computer</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 347.8771 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 350.5334 757.4812)\\\" x=\\\"0 5 10 13.3301 18.8916 24.4531 30.0147\\\">screen,</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.3264 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 385.9826 757.4812)\\\" x=\\\"0 5.5615\\\">or</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 394.8742 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 397.5305 757.4812)\\\" x=\\\"0 5.5615 8.3398 13.9014 19.4629\\\">other</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 420.3234 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 422.9797 757.4812)\\\" x=\\\"0 5 7.2803 12.2803 17.8418 23.4033\\\">visual</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 448.6633 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 451.3195 757.4812)\\\" x=\\\"0 5.5615 7.8418 12.8418 18.4033 20.6836 26.2451 31.2451\\\">display.</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 485.343 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 487.9992 757.4812)\\\" x=\\\"0 6.6699 12.2314\\\">You</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 505.7922 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 508.4484 757.4812)\\\" x=\\\"0 5.5615 10.5615 15.5615 21.1231 26.6846 33.9062 36.1865 41.7481 47.3096 52.8711\\\">acknowledge</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 566.8811 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 746.1629)\\\" x=\\\"0 5.5615 11.1231\\\">and</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 57.3596 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 60.0158 746.1629)\\\" x=\\\"0 5.5615 11.123 14.4531 20.0146\\\">agree</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 85.592 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 88.2482 746.1629)\\\" x=\\\"0 2.7783\\\">to</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 96.5881 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 99.2443 746.1629)\\\" x=\\\"0 2.7783 8.3398\\\">the</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 113.1457 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 115.802 746.1629)\\\" x=\\\"0 2.7783 8.3398 10.6201 12.9004 18.4619 25.6836 27.9639 33.5254 39.0869\\\">following:</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 157.6672 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 160.3234 746.1629)\\\" x=\\\"0 2.7783 8.3398 10.6201\\\">this</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 175.9436 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 178.5998 746.1629)\\\" x=\\\"0 6.6699 13.8916\\\">ACH</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 199.7131 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 202.0693 746.1629)\\\" x=\\\"0 7.2217 12.7832 18.3447 20.625\\\">Debit</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.4727 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 227.8289 746.1629)\\\" x=\\\"0 6.6699 12.2314 15.0098 20.5713 26.1328 29.4629 31.7432 36.7432 42.3047 45.083 47.3633 52.9248\\\">Authorization</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 286.3152 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 288.6715 746.1629)\\\" x=\\\"0 2.2803\\\">is</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 295.9518 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 298.308 746.1629)\\\" x=\\\"0 5.5615 11.123\\\">not</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.2094 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 314.5656 746.1629)\\\" x=\\\"0 5.5615\\\">an</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 325.6887 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 328.0449 746.1629)\\\" x=\\\"0 2.2803 7.8418 12.8418 15.6201 18.9502 24.5117 32.8418 38.4033 43.9648\\\">instrument</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 374.7881 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 377.1443 746.1629)\\\" x=\\\"0 5.5615 11.123 16.123 21.6846 25.0146 30.5762 36.1377\\\">governed</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 418.8436 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 421.1998 746.1629)\\\" x=\\\"0 5.5615\\\">by</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 431.7613 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 434.1176 746.1629)\\\" x=\\\"0 6.6699 10 12.7783 15.0586 20.0586 22.3389\\\">Article</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 462.018 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 464.3742 746.1629)\\\" x=\\\"0\\\">3</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 469.9357 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 472.292 746.1629)\\\" x=\\\"0 5.5615\\\">of</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 480.6318 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 482.9881 746.1629)\\\" x=\\\"0 2.7783 8.3398\\\">the</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 496.8895 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 499.2457 746.1629)\\\" x=\\\"0 7.2217 12.7832 15.0635 17.8418 23.4033 26.7334\\\">Uniform</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 734.8445)\\\" x=\\\"0 7.2217 12.7832 21.1133 29.4434 35.0049 38.335 43.335 45.6152 51.1768\\\">Commercial</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 94.132 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 96.4883 734.8445)\\\" x=\\\"0 7.2217 12.7832 18.3447 23.9062\\\">Code.</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 123.1728 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 125.5291 734.8445)\\\" x=\\\"0 6.6699 10 12.2803 17.8418\\\">Print</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.1492 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.5055 734.8445)\\\" x=\\\"0 5.5615 11.1231\\\">and</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 165.19 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 167.5463 734.8445)\\\" x=\\\"0 3.3301 8.8916 11.6699 17.2314 19.5117\\\">retain</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 192.6195 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 194.9758 734.8445)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 200.5373 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 202.8936 734.8445)\\\" x=\\\"0 5.5615 11.123 14.4531\\\">hard</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 222.9082 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 225.2645 734.8445)\\\" x=\\\"0 5 10.5615 16.123\\\">copy</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 246.3875 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 248.7437 734.8445)\\\" x=\\\"0 5.5615\\\">or</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.6353 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 259.9916 734.8445)\\\" x=\\\"0 5.5615 7.8418 13.4033 18.4033 21.1816 24.5117 30.0733 35.6348 37.915\\\">electronic</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.9066 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 305.5629 734.8445)\\\" x=\\\"0 5 10.5615 16.123\\\">copy</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 326.6859 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 329.3422 734.8445)\\\" x=\\\"0 5.5615\\\">of</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 337.682 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 340.3383 734.8445)\\\" x=\\\"0 2.7783 8.3398 10.6201\\\">this</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.9584 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 358.6147 734.8445)\\\" x=\\\"0 6.6699 13.8916\\\">ACH</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 379.7279 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 382.0842 734.8445)\\\" x=\\\"0 7.2217 12.7832 18.3447 20.625\\\">Debit</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 405.4875 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.8438 734.8445)\\\" x=\\\"0 6.6699 12.2314 15.0098 20.5713 26.1328 29.4629 31.7432 36.7432 42.3047 45.083 47.3633 52.9248 58.4863\\\">Authorization.</text></g><clipPath id=\\\"clip3-2\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip3-2)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.775 770.2 L 573.625 770.2 L 573.625 769.2 L 34.775 769.2 L 34.775 770.2 z \\\"/><path clip-path=\\\"url(#clip3-2)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.775 731.2449 L 573.625 731.2449 L 573.625 730.2449 L 34.775 730.2449 L 34.775 731.2449 z \\\"/><path clip-path=\\\"url(#clip3-2)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.625 769.2 L 573.625 769.2 L 573.625 731.2449 L 572.625 731.2449 L 572.625 769.2 z \\\"/><path clip-path=\\\"url(#clip3-2)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.775 769.2 L 35.775 769.2 L 35.775 731.2449 L 34.775 731.2449 L 34.775 769.2 z \\\"/><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 718.5262)\\\" x=\\\"0 7.22 15 22.22 25.55 34.99 41.66 44.44 51.11 57.78 65 67.78 70.44 79.88 85.44 88.1 93.66 99.22 101.88 107.44 113 115.78 118.44 125.66 131.22 133.5 138.5 144.06 146.72 152.28 157.84 161.17 163.83 167.16 169.44 175 180.56 183.34 188.34 191 196.56 199.89 202.55 205.88 211.44 219.77 225.33 230.89 233.17 238.73 243.73 246.39 251.95 257.51 263.07 268.63 271.96 274.62 277.4 282.96 285.24 290.24 292.9 299.57 305.13 308.46 314.02 319.58 327.91 333.47 339.03 341.81 344.47 350.03 355.03 357.69 360.47 366.03 368.31 370.59 372.87 378.43 383.99 386.65 389.43 394.99 397.65 403.21 408.21 413.77 417.1 422.1 424.38 429.38 434.94 437.6 440.38 445.94 451.5 459.83 462.49 468.05 470.83 473.49 479.05 484.61 489.61 492.27 495.05 497.33 505.66 511.22\\\">NON-WAIVER. We do not waive our rights or remedies under this Agreement by failing to exercise them at any time.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 705.2078)\\\" x=\\\"0 7.22 15 23.33 31.66 38.88 46.1 48.88 56.1 62.77 68.88 71.66 78.88 86.66 89.32 98.76 101.54 107.65 114.87 117.53 124.2 131.98 139.2 141.98 144.64 151.86 158.53 164.09 169.65 172.31 179.53 186.2 193.42 201.2 208.42 215.64 218.42 225.64 233.42 236.2 238.86 242.19 247.75 253.31 258.87 262.2 264.86 270.42 275.98 281.54 284.87 290.43 295.99 301.55\\\">COMMUNICATING WITH YOU; CALL RECORDING: (100) 000-0006</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 691.8895)\\\" x=\\\"0 6.67 13.89 20 22.78 30\\\">ENTIRE</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 69.7699 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 74.2589 691.8895)\\\" x=\\\"0 6.67 14.45 21.67 28.34 35.01 43.34 50.01 57.23 63.34\\\">AGREEMENT,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 140.377 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 144.866 691.8895)\\\" x=\\\"0 7.22\\\">NO</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 159.866 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 164.3549 691.8895)\\\" x=\\\"0 6.67 13.89 21.11 23.89 30 32.78 40.56 47.78 54.45\\\">ADDITIONAL</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 224.3647 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 228.8536 691.8895)\\\" x=\\\"0 6.67 13.89 21.67 30 32.78 39.45 46.12 52.79\\\">PROMISES,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 284.42 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 288.9089 691.8895)\\\" x=\\\"0 9.44 16.66 19.44 25.55 31.66 38.33\\\">WRITTEN</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 334.4558 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.9447 691.8895)\\\" x=\\\"0 6.67 13.89\\\">AND</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 360.058 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 364.547 691.8895)\\\" x=\\\"0 6.67 9.45 17.23 24.45 31.12\\\">SIGNED</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.8868 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.3757 691.8895)\\\" x=\\\"0 7.22 14.44 21.11 28.33 36.11 42.78\\\">CHANGES</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.8289 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 461.3178 691.8895)\\\" x=\\\"0 7.78 15 20.56 27.23\\\">ONLY.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 491.3276 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 495.8165 691.8895)\\\" x=\\\"0 6.11 11.67 13.95\\\">This</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 514.7667 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 519.2556 691.8895)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 680.5711)\\\" x=\\\"0 2.78 8.34 13.9 19.46 22.24 27.8 33.36\\\">together</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 69.7943 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 72.8324 680.5711)\\\" x=\\\"0 7.22 9.5 12.28\\\">with</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 90.6742 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 93.7124 680.5711)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 107.6137 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 110.6518 680.5711)\\\" x=\\\"0 5.56 8.34 13.9 19.46\\\">other</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 133.4448 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 136.4829 680.5711)\\\" x=\\\"0 5.56 11.12 16.12 21.68 30.01 35.57 41.13 43.91\\\">documents</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 185.3989 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 188.437 680.5711)\\\" x=\\\"0 3.33 8.89 11.67 17.23 20.56 23.89 29.45\\\">referred</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 223.4517 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 226.4898 680.5711)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 234.8296 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 237.8677 680.5711)\\\" x=\\\"0 5.56 11.12 14.45 20.01 22.29 27.85\\\">herein,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 268.5025 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 271.5406 680.5711)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24 28.52 34.08\\\">including</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 311.189 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 314.2271 680.5711)\\\" x=\\\"0 5.56 11.12\\\">but</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 328.1285 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 331.1666 680.5711)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 345.068 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 348.1061 680.5711)\\\" x=\\\"0 2.28 4.56 12.89 15.17 17.95 23.51\\\">limited</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 377.1783 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 380.2165 680.5711)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.5563 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 391.5944 680.5711)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 411.0475 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 414.0856 680.5711)\\\" x=\\\"0 5.56 11.12 14.45 19.45 25.01 30.57 35.57\\\">purchase</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 455.2233 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 458.2614 680.5711)\\\" x=\\\"0 3.33 8.89 13.89 19.45 21.73 27.29\\\">receipt</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 488.3347 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 491.3728 680.5711)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 508.0574 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 511.0955 680.5711)\\\" x=\\\"0 2.78 5.06 10.62 16.18\\\">final</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.5574 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 532.5955 680.5711)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 669.2527)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 66.4545 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 69.6146 669.2527)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 86.2991 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 89.4592 669.2527)\\\" x=\\\"0 5 10 15.56 21.12 26.68 32.24 34.52 40.08\\\">schedule,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 132.3254 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 135.4855 669.2527)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 142.7658 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 145.9259 669.2527)\\\" x=\\\"0 5.56 11.12\\\">our</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.379 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 163.5391 669.2527)\\\" x=\\\"0 5.56 11.12 13.9 16.18 19.51\\\">entire</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 188.6123 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 191.7724 669.2527)\\\" x=\\\"0 5.56 11.12 14.45 20.01 25.57 33.9 39.46 45.02 47.8\\\">agreement.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 242.3583 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 245.5184 669.2527)\\\" x=\\\"0 9.44\\\">We</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 260.5184 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 263.6785 669.2527)\\\" x=\\\"0 5.56 11.12 16.12\\\">have</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 285.363 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 288.5231 669.2527)\\\" x=\\\"0 8.33 13.89 19.45\\\">made</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 313.5378 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 316.6978 669.2527)\\\" x=\\\"0 5.56\\\">no</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 327.8209 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 330.981 669.2527)\\\" x=\\\"0 5.56 8.89 14.45 22.78 25.06 30.06 35.62\\\">promises</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.606 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 374.766 669.2527)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.1059 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 386.266 669.2527)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.389 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 405.5491 669.2527)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.4504 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 422.6105 669.2527)\\\" x=\\\"0 5 10.56 16.12 18.9 24.46 26.74 32.3 37.86\\\">contained</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.0383 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 469.1983 669.2527)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 477.0401 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 480.2002 669.2527)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 495.8203 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 498.9804 669.2527)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 547.8964 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 551.0565 669.2527)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.9481 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 563.1082 669.2527)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 657.9344)\\\" x=\\\"0 5 10.56 15.56 21.12 23.78 29.34 32.12 37.68 43.24 46.57 49.23 54.79 60.35 65.35 70.91 79.24 84.8 90.36 93.14 98.14 100.92 103.58 110.25 115.81 120.81 123.47 128.47 134.03 139.59 145.15 150.71 156.27 158.93 161.71 167.27 169.93 172.71 178.27 180.55 185.55 188.21 194.88 200.44 203.77 209.33 214.89 223.22 228.78 234.34 237.12 239.78 248.11 253.67 258.67 261.45 264.11 269.67 275.23 277.89 285.11 288.44 290.72 293.5 296.28 301.84 307.4 310.06 315.62 321.18 326.74 329.4 334.4 336.68 342.24 347.8 353.36 358.92 361.58 367.14 372.14 374.8 379.8 385.36 390.92 393.58 399.14 404.7 410.26 412.92 418.48 423.48\\\">such other documents. Any change to this Agreement must be written and signed by you and us.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 644.616)\\\" x=\\\"0 7.22 14.44 21.11 27.22 35 43.33 50\\\">CUSTOMER</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 90.3217 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 93.5458 644.616)\\\" x=\\\"0 8.33 16.11 23.33 26.11 32.22 35 41.67\\\">MODIFIED</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 142.4325 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 145.6566 644.616)\\\" x=\\\"0 6.67 13.34 20.01 28.34 35.01 42.23\\\">PAYMENT</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 193.9964 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 197.2205 644.616)\\\" x=\\\"0 7.22 13.89 20 26.67\\\">DATES</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 230.5603 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 233.7844 644.616)\\\" x=\\\"0 6.67 13.89\\\">AND</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 254.8977 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 258.1218 644.616)\\\" x=\\\"0 6.11 13.33 20 27.78 35 41.67 48.89 56.11 62.78\\\">FREQUENCY.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 323.6833 644.616)\\\" x=\\\"0 3.2241\\\">  </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 330.1315 644.616)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 347.3629 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 350.587 644.616)\\\" x=\\\"0 5.56 11.12 13.9 19.46\\\">dates</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.0499 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 378.274 644.616)\\\" x=\\\"0 2.78 8.34 11.67\\\">for,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 392.7222 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 395.9463 644.616)\\\" x=\\\"0 2.78 6.11 11.67 17.23 22.79 28.35 33.91 38.91\\\">frequency</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 439.8623 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 443.0864 644.616)\\\" x=\\\"0 5.56 8.34\\\">of,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.2046 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 457.4286 644.616)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57\\\">number</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 491.3349 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 494.559 644.616)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 502.8988 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 506.1229 644.616)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 522.8075 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 526.0316 644.616)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.386 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 562.6101 644.616)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 633.2977)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 68.1781 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 72.0521 633.2977)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46\\\">Payments</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 116.515 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 120.389 633.2977)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 128.2308 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 132.1048 633.2977)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 147.7249 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 151.5989 633.2977)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 200.5149 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 204.3889 633.2977)\\\" x=\\\"0 5.56 8.89\\\">are</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 218.842 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 222.716 633.2977)\\\" x=\\\"0 5.56 11.12 16.12 21.68\\\">based</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 249.9621 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 253.8361 633.2977)\\\" x=\\\"0 5.56 11.12 16.68\\\">upon</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.0822 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 279.9562 633.2977)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 293.8575 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 297.7315 633.2977)\\\" x=\\\"0 5.56 11.12 16.12 21.68 27.24\\\">payday</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.9776 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 333.8516 633.2977)\\\" x=\\\"0 2.28 7.84 10.62 16.18 19.51 27.84 33.4 36.18 38.46 44.02\\\">information</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.4366 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 387.3105 633.2977)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.4336 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.3076 633.2977)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29 32.85\\\">provided</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 445.7255 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 449.5995 633.2977)\\\" x=\\\"0 7.22 9.5 12.28\\\">with</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.4413 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 471.3153 633.2977)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 490.7684 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 494.6424 633.2977)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 34.58 36.86 42.42 47.98\\\">application.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 545.409 633.2977)\\\" x=\\\"0 3.874\\\">  </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.157 633.2977)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 621.9793)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 51.9916 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 55.3463 621.9793)\\\" x=\\\"0 5 10.56 16.12 18.9 24.46 29.46\\\">contact</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 87.5875 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 90.9422 621.9793)\\\" x=\\\"0 5.56 11.12\\\">our</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 105.3953 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 108.75 621.9793)\\\" x=\\\"0 5 10.56 15.56 18.34 23.9 32.23 37.79\\\">customer</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 149.873 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 153.2277 621.9793)\\\" x=\\\"0 5 10.56 13.89 18.89 21.17 26.17\\\">service</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 184.9611 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 188.3158 621.9793)\\\" x=\\\"0 5.56 11.12 16.68 22.24 25.57 28.35 36.68 42.24 47.8\\\">department</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.9017 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 242.2564 621.9793)\\\" x=\\\"0 5.56 8.89\\\">or,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 253.9263 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 257.281 621.9793)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.3396 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 265.6942 621.9793)\\\" x=\\\"0 5.56 10.56 16.12 18.4 20.68 26.24 31.8 34.08\\\">available</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 305.3427 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 308.6973 621.9793)\\\" x=\\\"0 5.56 10.56\\\">use</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 324.8204 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 328.1751 621.9793)\\\" x=\\\"0 5.56 11.12 13.9 19.46 27.79 33.35 36.13 41.69\\\">automated</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.4309 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 378.7856 621.9793)\\\" x=\\\"0 8.33 13.89 19.45 25.01 30.01\\\">means,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 411.5786 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 414.9332 621.9793)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.9918 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 423.3465 621.9793)\\\" x=\\\"0 5.56 10.56 16.12 18.4 20.68 26.24 31.8 34.08 39.64\\\">available,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 465.7733 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 469.128 621.9793)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 477.4678 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 480.8225 621.9793)\\\" x=\\\"0 3.33 8.89 14.45 20.01 25.57 30.57\\\">request</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 514.177 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 517.5316 621.9793)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 523.0932 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 526.4478 621.9793)\\\" x=\\\"0 5 10.56 16.12 21.68 27.24\\\">change</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.2555 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 562.6101 621.9793)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 610.6609)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.0014 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 51.6173 610.6609)\\\" x=\\\"0 5 10 15.56 21.12 26.68 32.24 34.52 40.08\\\">scheduled</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 97.2667 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 101.8826 610.6609)\\\" x=\\\"0 5.56 11.12 13.9 19.46\\\">dates</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 126.3454 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 130.9613 610.6609)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 142.6313 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 147.2471 610.6609)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 163.9317 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 168.5476 610.6609)\\\" x=\\\"0 2.78 6.11 11.67 17.23 22.79 28.35 33.91 38.91\\\">frequency</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 212.4636 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 217.0795 610.6609)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.4193 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 230.0352 610.6609)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 265.1134 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 269.7292 610.6609)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46 44.46\\\">Payments.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 316.9705 610.6609)\\\" x=\\\"0 4.6159\\\">  </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 326.2022 610.6609)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 331.7589 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 336.3748 610.6609)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 349.158 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 353.7739 610.6609)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.68\\\">accept</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.2367 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 387.8526 610.6609)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.4142 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 398.03 610.6609)\\\" x=\\\"0 5 10.56 16.12 21.68 27.24\\\">change</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.8377 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 435.4535 610.6609)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 443.2953 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 447.9112 610.6609)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 461.8126 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 466.4285 610.6609)\\\" x=\\\"0 5 10 15.56 21.12 26.68 32.24 34.52 40.08\\\">scheduled</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.0779 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 516.6938 610.6609)\\\" x=\\\"0 5.56 11.12 13.9 19.46\\\">dates</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 541.1567 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 545.7726 610.6609)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 557.4425 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 562.0584 610.6609)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 599.3426)\\\" x=\\\"0 2.78 6.11 11.67 17.23 22.79 28.35 33.91 38.91\\\">frequency</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 77.016 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 80.7576 599.3426)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 89.0974 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 92.839 599.3426)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 127.9171 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 131.6587 599.3426)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46 44.46\\\">Payments,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 178.8999 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 182.6415 599.3426)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 196.5429 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 200.2844 599.3426)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.6389 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 237.3805 599.3426)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.7204 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 249.4619 599.3426)\\\" x=\\\"0 5.56 11.12 16.12\\\">each</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 271.1465 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 274.8881 599.3426)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 309.9662 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 313.7078 599.3426)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68\\\">Payment</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 353.1707 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 356.9123 599.3426)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 370.9748 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 374.7163 599.3426)\\\" x=\\\"0 5.56 11.12 13.9 19.46 27.79 33.35 36.13 38.41 43.41 48.97 51.25 53.53\\\">automatically</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 433.2515 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 436.9931 599.3426)\\\" x=\\\"0 5.56\\\">be</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 448.1161 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 451.8577 599.3426)\\\" x=\\\"0 8.33 13.89 19.45 21.73 24.51 26.79 32.35\\\">modified</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.7727 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 493.5143 599.3426)\\\" x=\\\"0 5\\\">so</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 504.0758 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 507.8174 599.3426)\\\" x=\\\"0 2.78 8.34 13.9\\\">that</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 524.4971 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 528.2387 599.3426)\\\" x=\\\"0 2.78 8.34 13.9\\\">that</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 544.9184 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 548.6599 599.3426)\\\" x=\\\"0 6.11 11.67 14.45 20.01\\\">Total</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 588.0242)\\\" x=\\\"0 7.22 12.78 17.78 20.56\\\">Cost,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 56.4398 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 60.6221 588.0242)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 77.3067 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.489 588.0242)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 95.3903 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 99.5726 588.0242)\\\" x=\\\"0 5.56 11.12 14.45 16.73 22.29\\\">period</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 127.4291 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 131.6113 588.0242)\\\" x=\\\"0 5.56 10.56 16.12\\\">over</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 151.0645 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 155.2467 588.0242)\\\" x=\\\"0 7.22 12.78 15.06 20.06\\\">which</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 180.8717 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 185.054 588.0242)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 198.9554 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 203.1377 588.0242)\\\" x=\\\"0 6.11 11.67 14.45 20.01\\\">Total</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.4277 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 229.61 588.0242)\\\" x=\\\"0 7.22 12.78 17.78\\\">Cost</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 250.1715 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 254.3538 588.0242)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 261.6341 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 265.8163 588.0242)\\\" x=\\\"0 5.56 11.12 13.4 18.96\\\">paid,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 287.5595 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 291.7418 588.0242)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 305.8043 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 309.9866 588.0242)\\\" x=\\\"0 3.33 8.89 17.22 22.78 25.06\\\">remain</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 340.6116 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 344.7938 588.0242)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 358.6952 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 362.8775 588.0242)\\\" x=\\\"0 5 10.56 18.89\\\">same</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 387.3306 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 391.5129 588.0242)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.0744 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 406.2567 588.0242)\\\" x=\\\"0 5.56 8.89 11.17 16.73\\\">prior</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 426.3202 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 430.5025 588.0242)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 438.8423 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 443.0246 588.0242)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.9259 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 461.1082 588.0242)\\\" x=\\\"0 3.33 8.89 14.45 20.01 25.57 30.57 33.35 38.91\\\">requested</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 505.5858 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 509.768 588.0242)\\\" x=\\\"0 5 10.56 16.12 21.68 27.24 32.8\\\">change.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 545.354 588.0242)\\\" x=\\\"0 4.1823\\\">  </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.7185 588.0242)\\\" x=\\\"0 6.67 12.23\\\">Any</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 576.7059)\\\" x=\\\"0 3.33 8.89 11.67 17.23 22.79 27.79 33.35\\\">refences</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 71.4545 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 75.2825 576.7059)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 83.1243 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 86.9523 576.7059)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 102.5725 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 106.4005 576.7059)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 155.3165 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 159.1445 576.7059)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 167.4844 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 171.3124 576.7059)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 185.2138 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 189.0418 576.7059)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57 33.9\\\">number,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.7264 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 229.5544 576.7059)\\\" x=\\\"0 2.78 6.11 11.67 17.23 22.79 28.35 33.91 38.91 43.91\\\">frequency,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.2488 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 280.0768 576.7059)\\\" x=\\\"0 2.78 5.06 13.39 15.67 21.23\\\">timing</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 306.8688 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 310.6968 576.7059)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 327.3814 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 331.2094 576.7059)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 364.5639 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 368.3919 576.7059)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 376.7318 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 380.5598 576.7059)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 415.6379 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 419.466 576.7059)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46\\\">Payments</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 463.9289 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 467.7569 576.7059)\\\" x=\\\"0 3.33 8.89 11.67 17.23 20.56\\\">refers</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 493.3184 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 497.1465 576.7059)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 505.4863 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 509.3143 576.7059)\\\" x=\\\"0 5 10.56 15.56\\\">such</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 530.4374 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 534.2654 576.7059)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57 33.9\\\">number,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 565.3875)\\\" x=\\\"0 2.78 6.11 11.67 17.23 22.79 28.35 33.91 38.91 43.91 46.69 49.35 52.13 54.41 62.74 68.3 70.96 76.52 82.08 87.64 90.3 95.86 104.19 109.75 115.31 120.87 123.65 126.31 131.87 136.87 139.53 147.86 153.42 158.42 161.08 166.64 172.2 174.86 183.19 188.75 194.31 196.59 199.37 201.65 207.21 212.77 215.43 220.99 225.99 228.65 235.32 240.88 246.44 252 254.66 260.22 263 265.66 270.66 276.22 281.78 285.11 287.77 291.1 296.66 302.22 307.78 313.34 318.34 321.12\\\">frequency, time and amount as may be modified by Snap at your request.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 552.0691)\\\" x=\\\"0 6.67 13.34 20.01 26.68 33.9 40.57 47.24 50.02 55.58 58.36 64.47 71.14\\\">SEVERABILITY.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 107.016 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 110.2288 552.0691)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 115.7855 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 118.9983 552.0691)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 124.5598 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 127.7726 552.0691)\\\" x=\\\"0 5 10.56 16.12 19.45\\\">court</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 150.004 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 153.2169 552.0691)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 162.1085 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 165.3213 552.0691)\\\" x=\\\"0 5.56 8.34 13.9 19.46\\\">other</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 188.1142 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 191.327 552.0691)\\\" x=\\\"0 5.56 7.84 12.84 18.4 23.96 26.74\\\">dispute</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 223.6317 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 226.8445 552.0691)\\\" x=\\\"0 3.33 8.89 13.89 19.45 21.73 27.29 30.07 32.35 37.91\\\">resolution</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 270.3211 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 273.5339 552.0691)\\\" x=\\\"0 5.56 11.12 16.68\\\">body</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 295.2185 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 298.4313 552.0691)\\\" x=\\\"0 2.78 5.06 10.62 16.18\\\">finds</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.6129 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 322.8257 552.0691)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.9488 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 342.1616 552.0691)\\\" x=\\\"0 5.56 11.12 14.45\\\">part</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.393 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 362.6058 552.0691)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 370.9457 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 374.1585 552.0691)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 389.7786 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 392.9914 552.0691)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 441.9074 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 445.1202 552.0691)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 453.4601 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 456.6729 552.0691)\\\" x=\\\"0 5.56\\\">be</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.7959 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 471.0087 552.0691)\\\" x=\\\"0 5 10.56 12.84\\\">void</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.4121 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 492.6249 552.0691)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.5165 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 504.7293 552.0691)\\\" x=\\\"0 5.56 11.12 16.68 22.24 25.02 30.58 33.91 38.91 44.47 50.03 55.59 57.87 63.43\\\">u* D E M O *e,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 540.7508)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 48.7201 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 53.1394 540.7508)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 102.0554 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 106.4747 540.7508)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 113.755 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 118.1743 540.7508)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 126.5142 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 130.9335 540.7508)\\\" x=\\\"0 5.56\\\">be</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 142.0565 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 146.4758 540.7508)\\\" x=\\\"0 3.33 8.89 14.45\\\">read</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 166.4905 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 170.9097 540.7508)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 181.4713 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 185.8906 540.7508)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 190.9492 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 195.3685 540.7508)\\\" x=\\\"0 2.78 8.34 13.9\\\">that</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 212.0482 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 216.4675 540.7508)\\\" x=\\\"0 5.56 11.12 14.45\\\">part</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.6989 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 238.1182 540.7508)\\\" x=\\\"0 7.22 12.78 16.11\\\">were</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.793 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 264.2123 540.7508)\\\" x=\\\"0 5.56 11.12 16.12 21.68\\\">never</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 289.227 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 293.6463 540.7508)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.2078 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 303.6271 540.7508)\\\" x=\\\"0 5.56 11.12 14.45\\\">part</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 320.8585 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 325.2778 540.7508)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 333.6177 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.037 540.7508)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 353.6571 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 358.0764 540.7508)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 409.7707 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 414.19 540.7508)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 431.4215 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 435.8408 540.7508)\\\" x=\\\"0 3.33 8.89 13.89\\\">rest</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 452.5107 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 456.93 540.7508)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 465.2699 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 469.6891 540.7508)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 483.5905 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 488.0098 540.7508)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 536.9258 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 541.3451 540.7508)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 555.4076 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 559.8269 540.7508)\\\" x=\\\"0 5.56\\\">be</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 529.4324)\\\" x=\\\"0 5.56 11.12 13.9 19.46 22.79 27.79 33.35 38.91 44.47 46.75 52.31\\\">enforceable.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 516.1141)\\\" x=\\\"0 6.67 13.89 21.67 28.89 31.67 38.34 41.12 47.23 53.9\\\">PROHIBITED</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 94.2182 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 97.4569 516.1141)\\\" x=\\\"0 6.67 13.89 20 26.67\\\">ACTS.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 126.9051 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 130.1438 516.1141)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 147.9368 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 151.1754 516.1141)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 165.2379 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 168.4766 516.1141)\\\" x=\\\"0 5 10.56 16.12\\\">keep</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 190.1612 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 193.3999 516.1141)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 207.3013 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.5399 516.1141)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 248.3329 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 251.5716 516.1141)\\\" x=\\\"0 2.78 6.11 11.67\\\">free</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 268.8031 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 272.0417 516.1141)\\\" x=\\\"0 2.78 6.11 11.67\\\">from</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 292.0417 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 295.2804 516.1141)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 311.4035 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 314.6422 516.1141)\\\" x=\\\"0 2.28 4.56 10.12 15.68\\\">liens</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.3258 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.5645 516.1141)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 347.4561 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 350.6947 516.1141)\\\" x=\\\"0 5 7.28 12.84 15.12 23.45 28.45\\\">claims.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 381.9252 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 385.1639 516.1141)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.9569 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 406.1956 516.1141)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 420.2581 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 423.4968 516.1141)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 437.3981 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 440.6368 516.1141)\\\" x=\\\"0 5.56 11.12 18.34\\\">pawn</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 464.5431 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 467.7818 516.1141)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 476.6734 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 479.912 516.1141)\\\" x=\\\"0 5.56 7.84 13.4 18.96 24.52\\\">pledge</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.9999 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 513.2386 516.1141)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 527.14 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 530.3787 516.1141)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 504.7957)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 50.893 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 55.1549 504.7957)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 69.2174 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 73.4794 504.7957)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 87.3807 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 91.6427 504.7957)\\\" x=\\\"0 8.33 13.89 18.89\\\">move</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 116.0958 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 120.3578 504.7957)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 134.2592 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 138.5211 504.7957)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 176.3141 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 180.576 504.7957)\\\" x=\\\"0 5.56 11.12 13.9 18.9 21.18 26.74\\\">outside</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 212.8807 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 217.1427 504.7957)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.4825 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 229.7445 504.7957)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 243.6458 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 247.9078 504.7957)\\\" x=\\\"0 5.56 11.12 16.68 20.01 25.57 30.57\\\">address</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 283.484 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 287.7459 504.7957)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 303.869 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 308.1309 504.7957)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29 32.85\\\">provided</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 346.5489 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 350.8109 504.7957)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.1507 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 363.4127 504.7957)\\\" x=\\\"0 5.56 10.56\\\">us,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 376.7525 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 381.0145 504.7957)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 397.699 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 401.961 504.7957)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 412.5225 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 416.7845 504.7957)\\\" x=\\\"0 5.56 11.12 16.68 22.24 25.02 30.58 36.14\\\">updated,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 455.7103 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 459.9722 504.7957)\\\" x=\\\"0 5.56 11.12 13.4 18.96 23.96\\\">unless</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 488.9371 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 493.199 504.7957)\\\" x=\\\"0 2.28\\\">it</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 498.2576 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 502.5196 504.7957)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.7998 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 514.0618 504.7957)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 522.4016 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 526.6636 504.7957)\\\" x=\\\"0 3.33 8.89 11.67 17.23 20.56\\\">return</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.7867 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0486 504.7957)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 493.4773)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 70.893 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 74.775 493.4773)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 83.1148 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 86.9968 493.4773)\\\" x=\\\"0 5.56 10.56\\\">us,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 100.3367 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 104.2187 493.4773)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 113.1103 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 116.9923 493.4773)\\\" x=\\\"0 5.56 11.12\\\">our</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 131.4454 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 135.3274 493.4773)\\\" x=\\\"0 5.56 11.12 16.12 18.4 23.96 29.52 35.08 40.64\\\">designee.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 178.7551 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 182.6371 493.4773)\\\" x=\\\"0 6.11\\\">To</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 194.307 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 198.189 493.4773)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 212.0904 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 215.9724 493.4773)\\\" x=\\\"0 5.56 10.56 13.34 18.9 24.46\\\">extent</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 243.2136 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 247.0956 493.4773)\\\" x=\\\"0 5.56 10.56\\\">use</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 263.2187 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 267.1007 493.4773)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.4405 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 279.3225 493.4773)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 293.2239 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 297.1059 493.4773)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 334.8988 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.7808 493.4773)\\\" x=\\\"0 3.33 8.89 14.45 20.01 22.29 25.62 31.18\\\">requires</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 374.9674 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 378.8494 493.4773)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 394.9724 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 398.8544 493.4773)\\\" x=\\\"0 8.33 10.61 16.17 18.45 26.78 32.34\\\">minimum</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 439.5282 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 443.4102 493.4773)\\\" x=\\\"0 5 8.33 10.61 13.39 18.95 22.28 24.56\\\">criteria</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 473.5323 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 477.4143 493.4773)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.0842 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 492.9662 493.4773)\\\" x=\\\"0 5.56 10.56 16.12\\\">use,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 511.8676 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 515.7496 493.4773)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24 28.52 34.08\\\">including</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 555.3981 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 559.2801 493.4773)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 482.159)\\\" x=\\\"0 5.56 10.56 16.12 24.45 30.01 32.29\\\">example</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 70.9565 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 74.5435 482.159)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 80.105 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 83.6921 482.159)\\\" x=\\\"0 5.56 11.12 14.45 22.78 25.06 27.84\\\">permit,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 114.3123 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 117.8993 482.159)\\\" x=\\\"0 2.28 4.56 9.56 15.12 20.68 25.68 31.24\\\">license,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 151.9228 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 155.5098 482.159)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 164.4014 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 167.9885 482.159)\\\" x=\\\"0 8.33 10.61 16.17 18.45 26.78 32.34\\\">minimum</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 208.6624 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 212.2494 482.159)\\\" x=\\\"0 5.56 11.12 16.68\\\">age,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.7123 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 235.2994 482.159)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 251.4224 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 255.0095 482.159)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 269.072 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 272.6591 482.159)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 286.5605 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 290.1476 482.159)\\\" x=\\\"0 5.56 7.84 10.12 15.68\\\">allow</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 313.0528 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 316.6399 482.159)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 332.7629 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 336.35 482.159)\\\" x=\\\"0 2.28 10.61 16.17 19.5 25.06 30.62 36.18\\\">improper</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.8666 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 379.4537 482.159)\\\" x=\\\"0 5.56 10.56\\\">use</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 395.5767 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 399.1638 482.159)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 407.5037 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 411.0907 482.159)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 424.9921 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 428.5792 482.159)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 469.1505 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 472.7376 482.159)\\\" x=\\\"0 6.67\\\">As</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.4075 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 487.9946 482.159)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64 45.2\\\">applicable,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 535.9828 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 539.5699 482.159)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.2399 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 554.8269 482.159)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 470.8406)\\\" x=\\\"0 5.56 11.12 16.68 19.46\\\">boat,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 55.3412 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 60.5175 470.8406)\\\" x=\\\"0 8.33 13.89 16.67 22.23 25.56 27.84 32.84 38.4\\\">motorized</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 104.4823 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 109.6586 470.8406)\\\" x=\\\"0 5 10.56 16.12 18.4 23.4 25.68 31.24\\\">vehicle,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 143.6821 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.8584 470.8406)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 157.75 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 162.9263 470.8406)\\\" x=\\\"0 5.56 8.34 13.9 19.46 22.79 30.01 32.29 37.29\\\">otherwise</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 205.7827 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.959 470.8406)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64 45.2\\\">applicable,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 258.9473 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 264.1236 470.8406)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.2466 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 285.4229 470.8406)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.4854 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 304.6617 470.8406)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 318.5631 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 323.7394 470.8406)\\\" x=\\\"0 5.56 11.12 14.45 22.78 25.06\\\">permit</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.5812 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 356.7575 470.8406)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 372.8805 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 378.0568 470.8406)\\\" x=\\\"0 5.56 11.12 14.45 19.45 25.01 30.57\\\">person,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 411.4113 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 416.5876 470.8406)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24 28.52 34.08\\\">including</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.236 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 461.4123 470.8406)\\\" x=\\\"0 5 10.56 16.12 19.45 24.45 30.01 32.29 35.07\\\">yourself,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.2639 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 504.4402 470.8406)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.78 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 517.9563 470.8406)\\\" x=\\\"0 5.56 11.12 16.68 20.01 25.57 28.35\\\">operate</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.8723 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0486 470.8406)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 459.5223)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 70.893 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 75.2445 459.5223)\\\" x=\\\"0 7.22 12.78 15.06 17.34\\\">while</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 98.1497 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 102.5012 459.5223)\\\" x=\\\"0 5 10.56 15.56\\\">such</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 123.6243 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 127.9757 459.5223)\\\" x=\\\"0 5.56 11.12 14.45 19.45 25.01\\\">person</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 158.5519 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 162.9034 459.5223)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 170.1837 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 174.5351 459.5223)\\\" x=\\\"0 2.28 10.61 16.17 21.73 24.01 27.34 32.9\\\">impaired</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 213.0019 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 217.3534 459.5223)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 227.915 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 232.2664 459.5223)\\\" x=\\\"0 5.56 8.89 14.45 20.01 25.01\\\">drugs,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 260.0594 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 264.4109 459.5223)\\\" x=\\\"0 5.56 7.84 12.84 18.4 23.96 29.52\\\">alcohol</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 296.2175 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 300.569 459.5223)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 309.4606 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 313.8121 459.5223)\\\" x=\\\"0 2.78 6.11 11.67\\\">from</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 333.8121 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.1636 459.5223)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 354.2866 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 358.6381 459.5223)\\\" x=\\\"0 5.56 8.34 13.9 19.46\\\">other</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 381.4311 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 385.7826 459.5223)\\\" x=\\\"0 5 10.56 16.12 21.12 26.68\\\">cause.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 415.2455 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 419.5969 459.5223)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 437.3899 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 441.7414 459.5223)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 455.8039 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 460.1554 459.5223)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.0567 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 478.4082 459.5223)\\\" x=\\\"0 5.56 10.56\\\">use</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 494.5313 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 498.8828 459.5223)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.7841 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 517.1356 459.5223)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 554.9286 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 559.2801 459.5223)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 448.2039)\\\" x=\\\"0 5 10.56 18.89 27.22 32.78 36.11 41.11 43.39 48.95 51.23 53.89 59.45 65.01 68.34 73.9 79.46 84.46 90.02 95.02\\\">commercial purposes.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 434.8855)\\\" x=\\\"0 9.44 16.11 23.33 30.55 33.33 40.55 48.33\\\">WARNING:</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 84.2084 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 87.8242 434.8855)\\\" x=\\\"0 7.22 12.78 15.06 20.62 25.62\\\">Unless</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 118.4492 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 122.065 434.8855)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 138.188 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 141.8038 434.8855)\\\" x=\\\"0 5.56 11.12 16.12\\\">have</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 163.4883 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 167.1041 434.8855)\\\" x=\\\"0 5.56 10.56 16.12 21.68 23.96 27.29 32.85\\\">acquired</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 205.5221 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 209.1378 434.8855)\\\" x=\\\"0 5.56 12.78 18.34 23.9 27.23 32.23 37.79 40.07\\\">ownership</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 254.7775 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 258.3933 434.8855)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 266.7331 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 270.3489 434.8855)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 284.2503 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 287.866 434.8855)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 328.4373 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 332.0531 434.8855)\\\" x=\\\"0 5.56 8.34 11.12 16.68 25.01 30.57 33.35 35.63 41.19\\\">attempting</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 378.806 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 382.4218 434.8855)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 390.7616 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 394.3774 434.8855)\\\" x=\\\"0 5 10.56 12.84 15.12\\\">sell,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 412.2778 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 415.8936 434.8855)\\\" x=\\\"0 5.56 11.12 18.34 23.9\\\">pawn,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 442.5781 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 446.1939 434.8855)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 455.0855 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 458.7013 434.8855)\\\" x=\\\"0 2.28 4.56 10.12\\\">lien</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.3849 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 478.0007 434.8855)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 491.902 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 495.5178 434.8855)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 533.3108 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 536.9265 434.8855)\\\" x=\\\"0 5 7.28 12.84 15.12 20.68 23.46 29.02\\\">violates</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 423.5672)\\\" x=\\\"0 5 7.78 13.34 16.12 21.68 24.34 26.62 32.18 39.4\\\">state law.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 410.2488)\\\" x=\\\"0 6.67 13.34 20.01 22.79 30.57 37.79 46.12 52.79 60.01 66.12\\\">ASSIGNMENT.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 101.9965 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 104.9066 410.2488)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 122.6995 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 125.6096 410.2488)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 144.5012 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 147.4112 410.2488)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 161.3126 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 164.2227 410.2488)\\\" x=\\\"0 5.56 10.56 15.56 17.84 23.4\\\">assign</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 193.1875 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 196.0976 410.2488)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 211.7177 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 214.6278 410.2488)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 263.5438 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 266.4538 410.2488)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.3454 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 278.2555 410.2488)\\\" x=\\\"0 2.78 6.11 11.67 17.23 22.23 25.01 30.57\\\">transfer</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.1569 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 315.0669 410.2488)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 328.9683 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 331.8784 410.2488)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 369.6713 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 372.5814 410.2488)\\\" x=\\\"0 7.22 9.5 12.28 17.84 23.4 28.96\\\">without</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 404.3246 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.2346 410.2488)\\\" x=\\\"0 5.56 11.12\\\">our</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 421.6877 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 424.5978 410.2488)\\\" x=\\\"0 5.56 8.89 11.17 16.73\\\">prior</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 444.6613 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 447.5713 410.2488)\\\" x=\\\"0 7.22 10.55 12.83 15.61 18.39 23.95\\\">written</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 477.0831 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 479.9931 410.2488)\\\" x=\\\"0 5.56 11.12 14.45 22.78 25.06 30.06 35.06 37.34 42.9 48.46\\\">permission.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 531.2382 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 534.1483 410.2488)\\\" x=\\\"0 9.44\\\">We</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.1483 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 552.0584 410.2488)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 398.9305)\\\" x=\\\"0 5.56 10.56 15.56 17.84 23.4 28.96 31.62 37.18 39.46 41.74 44.4 49.96 52.74 55.4 60.96 66.52 69.85 72.51 75.84 78.12 83.68 89.24 92.02 97.02 99.68 105.24 110.8 116.36 121.92 125.25 127.91 130.69 136.25 138.53 143.53 146.19 152.86 158.42 161.75 167.31 172.87 181.2 186.76 192.32 195.1 197.88 200.54 207.21 212.77 217.77 220.43 225.99 231.55 234.88 239.88 245.44 251 253.66 260.88 266.44 269.1 274.66 279.66 284.66 286.94 292.5 298.06 300.72 303 305.78 308.44 311.22 316.78 319.44 327.77 333.33 338.33 340.99 344.32 349.88 355.44 360.44 365.44 367.72 373.28 378.84 381.5 383.78 386.56\\\">assign all of our ri* D E M O *this Agreement. Any person we assign it to may reassign it.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 385.6121)\\\" x=\\\"0 6.67 13.89 21.11 28.89 36.11\\\">ACCORD</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 76.435 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 79.3433 385.6121)\\\" x=\\\"0 6.67 13.89\\\">AND</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 100.4566 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 103.3649 385.6121)\\\" x=\\\"0 6.67 13.34 19.45 22.23 28.9 35.01 41.68 48.9 55.01 57.79 65.57 72.79\\\">SATISFACTION.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 178.9265 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 181.8348 385.6121)\\\" x=\\\"0 6.67 12.23\\\">Any</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 199.0662 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 201.9746 385.6121)\\\" x=\\\"0 5 7.78 13.34 16.12 21.68 30.01 35.57 41.13\\\">statement</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.8857 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 248.794 385.6121)\\\" x=\\\"0 5.56 10.56 15.56 21.12 29.45 35.01 40.57 46.13 51.13 53.41 58.97\\\">accompanying</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 313.3351 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 316.2434 385.6121)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.6965 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.6049 385.6121)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 376.9593 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 379.8677 385.6121)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.2075 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 391.1159 385.6121)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 405.0172 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.9256 385.6121)\\\" x=\\\"0 5.56 8.34 11.12 16.68 21.68\\\">effect</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 432.3836 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 435.2919 385.6121)\\\" x=\\\"0 2.78 8.34 13.9\\\">that</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 451.9716 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 454.88 385.6121)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.3331 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 477.2414 385.6121)\\\" x=\\\"0 5.56 11.12 13.4 18.96 24.52 29.52\\\">balance</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.3293 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 515.2376 385.6121)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 522.5179 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 525.4263 385.6121)\\\" x=\\\"0 5.56 11.12 13.4\\\">paid</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 544.3911 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 547.2995 385.6121)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 555.1412 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 558.0496 385.6121)\\\" x=\\\"0 2.78 8.34 10.62\\\">full</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 374.2937)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.1625 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 50.8231 374.2937)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 64.7245 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 68.3851 374.2937)\\\" x=\\\"0 5.56 7.84 13.4\\\">bind</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 87.35 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 91.0106 374.2937)\\\" x=\\\"0 5.56 10.56\\\">us.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 104.3505 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 108.0111 374.2937)\\\" x=\\\"0 7.78 13.34\\\">Our</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 124.681 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 128.3417 374.2937)\\\" x=\\\"0 5.56 11.12 16.68 22.24 27.24 29.52\\\">deposit</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.6464 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 164.307 374.2937)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 172.6468 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 176.3075 374.2937)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 192.4305 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 196.0912 374.2937)\\\" x=\\\"0 5 10.56 15.56\\\">such</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 217.2142 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 220.8748 374.2937)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.2293 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 262.89 374.2937)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.9525 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 280.6131 374.2937)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 294.5145 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 298.1751 374.2937)\\\" x=\\\"0 5 10.56 16.12 21.12 23.9 26.18 28.96 34.52 37.3\\\">constitute</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 341.0365 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 344.6971 374.2937)\\\" x=\\\"0 5.56\\\">an</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.8201 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 359.4808 374.2937)\\\" x=\\\"0 5.56 10.56 15.56 21.12 24.45\\\">accord</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 389.4954 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 393.1561 374.2937)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 409.8406 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 413.5013 374.2937)\\\" x=\\\"0 5 10.56 13.34 15.62 20.62 23.4 28.96 33.96 36.74 39.02 44.58 50.14\\\">satisfaction,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.4212 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 470.0818 374.2937)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.7664 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 490.427 374.2937)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 503.2102 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 506.8709 374.2937)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 525.7625 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 529.4231 374.2937)\\\" x=\\\"0 5.56 11.12 16.68 18.96\\\">apply</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.388 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0486 374.2937)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 362.9754)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57 38.35 41.01 43.79 49.35 52.01 57.01 62.57 68.13 71.46 74.12 79.68 84.68 89.68 95.24 100.8 106.36 109.14\\\">payment to your account.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 349.657)\\\" x=\\\"0 2.78 10 16.67 23.89 31.11 37.78 45 52.22 58.89 61.67 64.33 73.77 79.33 81.99 87.55 93.11 95.77 101.33 106.89 109.67 112.33 115.66 121.22 126.78 132.34 134.62 137.95 143.51 146.17 151.17 156.73 162.29 164.95 167.73 173.29 175.95 181.51 187.07 190.4 195.4 200.96 206.52 211.52 217.08 219.74 222.02 227.58 232.58 238.14 241.47 247.03 252.59 257.59 263.15 265.81 268.59 271.92 277.48 285.81 288.47 294.03 299.03 301.69 307.25 312.81 318.37 321.03 328.25 333.81 336.47 342.03 347.59 352.59 358.15 360.81 366.37 371.93 374.71 377.37 382.93 386.26 391.82 396.82 399.1 404.66 410.22 415.78 418.44 424 429.56 434.56 437.22 439.5 445.06 450.06 455.62 458.95 464.51 470.07 475.07 480.63 483.29 486.07 491.63 494.29 499.29 504.85 510.41\\\">INSURANCE. We do not require you to purchase insurance from us and we have not provided any insurance to you.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 336.3387)\\\" x=\\\"0 7.22 13.89 21.11 27.78 30.56 37.23 43.34 46.12 48.78 56 61.56 67.12 72.68 75.34 80.34 85.9 91.46 94.79 97.45 100.78 106.34 111.9 117.46 123.02 128.02 130.8 133.58 136.24 143.46 149.02 151.68 157.24 160.57 166.13 168.79 172.12 177.68 183.24 188.8 191.08 194.41 199.97 205.53 208.19 210.97 216.53 219.19 224.75 228.08 233.64 238.64 240.92 246.48 252.04 254.7 259.7 265.26 270.82 273.48 280.7 282.98 285.76 291.32 293.98 299.54 302.2 309.42 312.75 315.03 317.81 320.59 326.15 331.71 334.37 337.7 343.26 348.26 353.82 356.1 361.66 364.44 367.1 369.88 375.44 378.77 381.43 386.99 392.55 397.55 403.11 405.77 411.33 416.89 421.89 430.22 435.78 441.34 444.12 446.78 455.11 460.67 466.23 471.79\\\">RECEIPT. Upon your request, we are required to provide you with a written receipt for each payment made.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 323.0203)\\\" x=\\\"0 7.78 15.56 22.23 28.9 36.12 43.34 46.12 53.34\\\">GOVERNING</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 94.2182 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 97.2444 323.0203)\\\" x=\\\"0 5.56 12.23 21.67\\\">LAW.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 121.6926 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 124.7189 323.0203)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 141.9503 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 144.9765 323.0203)\\\" x=\\\"0 2.28 7.84\\\">law</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.04 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 163.0663 323.0203)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 171.4061 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 174.4323 323.0203)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 188.3337 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 191.3599 323.0203)\\\" x=\\\"0 5 7.78 13.34 16.12\\\">state</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 213.0396 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 216.0658 323.0203)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 223.9076 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 226.9339 323.0203)\\\" x=\\\"0 7.22 12.78 15.06 20.06\\\">which</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 252.5589 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 255.5851 323.0203)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 271.7082 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 274.7344 323.0203)\\\" x=\\\"0 3.33 8.89 13.89 16.17 21.73\\\">reside</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.0293 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 305.0555 323.0203)\\\" x=\\\"0 7.22 12.78 18.34\\\">when</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 328.9618 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 331.988 323.0203)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.1111 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 351.1373 323.0203)\\\" x=\\\"0 5 7.28 12.84 18.4 23.96\\\">signed</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.6637 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 383.6899 323.0203)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 399.31 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 402.3363 323.0203)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 451.2523 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 454.2785 323.0203)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 470.9631 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 473.9893 323.0203)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64\\\">applicable</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 519.1993 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 522.2255 323.0203)\\\" x=\\\"0 2.78 8.34 13.9 19.46 22.79 28.35\\\">federal</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.8603 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 555.8865 323.0203)\\\" x=\\\"0 2.28 7.84\\\">law</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 311.7019)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.1625 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 50.5142 311.7019)\\\" x=\\\"0 5.56 11.12 16.12 21.68 25.01\\\">govern</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 81.0904 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 84.4421 311.7019)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 98.3434 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 101.6951 311.7019)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 150.6111 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 153.9628 311.7019)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 170.6474 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 173.9991 311.7019)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 187.9005 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 191.2521 311.7019)\\\" x=\\\"0 2.28 7.84 10.62 16.18 19.51 25.07 28.4 33.96 36.74 42.3 45.08 47.36 52.92\\\">interpretation</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 249.7385 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 253.0902 311.7019)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 261.43 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 264.7817 311.7019)\\\" x=\\\"0 2.28 5.06\\\">it,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 272.6186 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 275.9703 311.7019)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.68\\\">except</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 305.4332 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 308.7849 311.7019)\\\" x=\\\"0 2.78 8.34 13.9\\\">that</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 325.4646 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 328.8163 311.7019)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 342.7176 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 346.0693 311.7019)\\\" x=\\\"0 6.11 11.67 17.23 22.79 26.12 31.68\\\">Federal</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.0342 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 383.3859 311.7019)\\\" x=\\\"0 6.67 10 15.56 17.84 20.62 23.95 29.51 32.29 34.57 40.13\\\">Arbitration</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 429.0792 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 432.4309 311.7019)\\\" x=\\\"0 6.67 11.67\\\">Act</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 446.8791 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 450.2308 311.7019)\\\" x=\\\"0 5.56 10.56 16.12 19.45 25.01 30.01 35.01 37.29\\\">expressly</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 492.5258 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 495.8775 311.7019)\\\" x=\\\"0 5.56 11.12 16.12 21.68 25.01 30.57\\\">governs</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 531.4536 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 534.8053 311.7019)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 548.7067 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 552.0584 311.7019)\\\" x=\\\"0 5 10.56 13.89\\\">Jury</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 300.3836)\\\" x=\\\"0 6.11 9.44 11.72 17.28 19.56 22.22 31.66 37.22 39.5 44.5 50.06 53.39 56.05 61.61 67.17 72.73 75.39 82.06 85.39 90.95 93.23 96.01 99.34 104.9 107.68 109.96 115.52 121.08 123.74 130.96 133.24 138.8 144.36 149.36 154.92 157.7 160.36 167.03 172.59 178.15 180.81 186.37 191.37 196.37 201.93 207.49 214.71 216.99 222.55 228.11 233.67 239.23 241.89 244.67 250.23 255.79 258.57 261.23 266.23 271.79 277.35 280.01 283.34 288.9 293.9 296.18 301.74 307.3 309.96 315.52 318.3 320.96 323.74 329.3 334.86 337.52 343.08 348.64 354.2 357.53 363.09 368.09 373.09 375.75 378.03 380.31 385.31 388.09 393.65 399.21 401.87 407.43 412.99 418.55 423.55 429.11 431.77 437.33 442.89 445.55 448.33 453.89 459.45 462.11 468.78 474.34 477.67 483.23 488.79 497.12 502.68 508.24 511.02 513.68 520.9 526.46 529.24 534.8\\\">Trial Waiver and Arbitration Clause. You acknowledge that you reside at the address listed above on the Agreement Date.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 287.0652)\\\" x=\\\"0 7.22 15 22.22 28.89 36.11 44.44 51.11\\\">CONSUMER</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 91.435 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 94.8938 287.0652)\\\" x=\\\"0 7.22 13.89 20.56 28.34 35.56 41.67\\\">REPORT.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 139.3421 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 142.8009 287.0652)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.5939 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 164.0527 287.0652)\\\" x=\\\"0 5.56 11.12 16.12\\\">have</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 185.7373 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 189.1961 287.0652)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 28.35 30.63 35.63 41.19\\\">authorized</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 235.9539 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 239.4128 287.0652)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 249.9743 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 253.4331 287.0652)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 261.773 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 265.2318 287.0652)\\\" x=\\\"0 5.56 11.12 13.9 19.46 21.74\\\">obtain</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 292.5365 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 295.9953 287.0652)\\\" x=\\\"0 5.56 11.12\\\">one</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.6799 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 316.1388 287.0652)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 325.0304 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 328.4892 287.0652)\\\" x=\\\"0 8.33 13.89 17.22\\\">more</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.2724 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 354.7312 287.0652)\\\" x=\\\"0 5 10.56 16.12 21.12 26.68 35.01 40.57\\\">consumer</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 398.6375 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 402.0963 287.0652)\\\" x=\\\"0 3.33 8.89 14.45 20.01 23.34 26.12\\\">reports</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 433.2194 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 436.6782 287.0652)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.8013 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 451.2601 287.0652)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.3832 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 470.842 287.0652)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 478.6838 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 482.1427 287.0652)\\\" x=\\\"0 5 10.56 16.12 21.68 27.24 32.24 35.02 37.3 42.86\\\">connection</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 530.5704 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 534.0292 287.0652)\\\" x=\\\"0 7.22 9.5 12.28\\\">with</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.871 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 555.3299 287.0652)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 275.7469)\\\" x=\\\"0 2.78 6.11 11.67 17.23 22.23 27.79 32.79 35.57 37.85 43.41 48.97\\\">transaction.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 262.4285)\\\" x=\\\"0 7.22 14.44 21.11 28.33 31.11\\\">CREDIT</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 70.3217 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 73.874 262.4285)\\\" x=\\\"0 7.22 13.89 20.56 28.34 35.56 41.67 44.45 51.67 59.45\\\">REPORTING.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.1005 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 139.6529 262.4285)\\\" x=\\\"0 9.44\\\">We</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 154.6529 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 158.2051 262.4285)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 177.0967 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 180.6491 262.4285)\\\" x=\\\"0 3.33 8.89 14.45 20.01 23.34\\\">report</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 206.7721 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.3244 262.4285)\\\" x=\\\"0 2.28 7.84 10.62 16.18 19.51 27.84 33.4 36.18 38.46 44.02\\\">information</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.9094 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 263.4617 262.4285)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 271.8015 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 275.3538 262.4285)\\\" x=\\\"0 5 8.33 13.89 19.45 21.73\\\">credit</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.8655 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 303.4178 262.4285)\\\" x=\\\"0 5.56 11.12 14.45 20.01 25.57 31.13\\\">bureaus</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 339.5555 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 343.1078 262.4285)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.9994 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 355.5517 262.4285)\\\" x=\\\"0 5.56 8.34 13.9 19.46\\\">other</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 378.3447 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 381.897 262.4285)\\\" x=\\\"0 2.78 8.34 10.62 13.95 19.51 22.84 28.4 33.96 37.29 40.07 42.35 47.91\\\">third-parties</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.812 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 438.3644 262.4285)\\\" x=\\\"0 5.56 11.12 16.68 22.24\\\">about</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 463.3888 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 466.9411 262.4285)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.3942 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 489.9465 262.4285)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.68 32.24 35.02\\\">account,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 527.7492 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 531.3015 262.4285)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24 28.52 34.08\\\">including</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 251.1102)\\\" x=\\\"0 2.28 7.84 10.62 16.18 18.84 24.4 27.73 30.39 38.72 41 46 51 56.56 62.12 64.78 70.34 75.9 80.9 89.23 94.79 100.35 103.13 108.13 110.91 113.57 119.13 124.69 130.25 132.91 138.47 144.03 149.03 151.69 157.25 162.81 167.81 170.09 172.87 175.15 180.15 185.71 188.37 193.93 197.26 199.92 205.48 211.04 216.6 222.16 224.94 227.22 232.22 237.78 240.44 246 251 256 261.56 267.12 272.68 275.46 278.12 280.4 285.96 288.74 294.3 297.63 305.96 311.52 314.3 316.58 322.14 327.7 330.36 338.69 344.25 349.25 351.91 357.47 363.03 365.69 369.02 374.58 377.36 379.64 385.2 390.2 392.98 398.54 404.1 406.76 409.04 414.6 417.26 422.26 427.82 433.38 436.71 439.37 444.37 447.7 453.26 458.82 461.1 463.88 466.54 469.87 475.43 480.99 486.55 489.88 492.66\\\">late or missed payments, and any positive or negative account information may be reflected in your credit report.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 237.7918)\\\" x=\\\"0 2.78 10 17.22 23.89 32.22 39.44 42.22 48.33 51.11 58.33 65 71.11 73.89 81.67 88.89\\\">INDEMNIFICATION.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 124.765 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 128.29 237.7918)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.083 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 149.608 237.7918)\\\" x=\\\"0 5.56 11.12 14.45 20.01\\\">agree</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 175.1842 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 178.7092 237.7918)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 187.0491 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 190.5741 237.7918)\\\" x=\\\"0 2.28 7.84 13.4 18.96 27.29 32.85 35.13 37.91\\\">indemnify</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.4891 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 237.0141 237.7918)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.5756 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 251.1006 237.7918)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 267.7852 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 271.3102 237.7918)\\\" x=\\\"0 5.56 11.12 13.4\\\">hold</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.2751 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 293.8001 237.7918)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 304.3616 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 307.8866 237.7918)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 324.5712 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 328.0962 237.7918)\\\" x=\\\"0 5.56 11.12\\\">our</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 342.5493 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 346.0743 237.7918)\\\" x=\\\"0 5.56 10.56 15.56 17.84 23.4 28.96 34.52 40.08 45.08\\\">assignees,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.9405 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 397.4655 237.7918)\\\" x=\\\"0 5.56 11.12 16.68 22.24 25.02 30.02\\\">agents,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.2683 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 433.7933 237.7918)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 450.4779 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 454.0029 237.7918)\\\" x=\\\"0 2.28 7.84 12.84 18.4 21.73 27.29 30.62\\\">insurers</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.6279 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 493.1529 237.7918)\\\" x=\\\"0 5.56 11.12 14.45 22.78 25.06 30.62 35.62\\\">harmless</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 533.7779 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 537.3029 237.7918)\\\" x=\\\"0 2.78 6.11 11.67\\\">from</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 557.3029 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 560.8279 237.7918)\\\" x=\\\"0 5.56 7.84\\\">all</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 226.4734)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57 36.13 41.13\\\">damages,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 77.016 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 80.4241 226.4734)\\\" x=\\\"0 2.28 7.84 10.12 15.68 19.01 21.29 26.85 31.85\\\">injuries,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 115.0579 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 118.466 226.4734)\\\" x=\\\"0 5 7.28 12.84 15.12 23.45 28.45\\\">claims,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 149.6965 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 153.1046 226.4734)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57 36.13 41.13\\\">demands,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 197.0206 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 200.4287 226.4734)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 217.1132 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 220.5214 226.4734)\\\" x=\\\"0 5.56 10.56 16.12 21.68 27.24 32.24 37.8 42.8\\\">expenses,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 266.1073 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 269.5154 226.4734)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24 28.52 34.08\\\">including</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 309.1638 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 312.5719 226.4734)\\\" x=\\\"0 3.33 8.89 14.45 19.45 25.01 30.57 36.13 41.69 43.97\\\">reasonable</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 362.1129 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 365.521 226.4734)\\\" x=\\\"0 5.56 8.34 11.12 16.68 20.01 25.57 31.13 36.13 38.04\\\">attorney&apos;s</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 408.563 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 411.9711 226.4734)\\\" x=\\\"0 2.78 8.34 13.9\\\">fees</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.8725 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 434.2806 226.4734)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 442.6204 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 446.0285 226.4734)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 459.9299 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 463.338 226.4734)\\\" x=\\\"0 5.56 10.56 13.34 18.9 24.46\\\">extent</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 490.5792 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 493.9873 226.4734)\\\" x=\\\"0 5.56 11.12 14.45 22.78 25.06 27.84 30.62 36.18\\\">permitted</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 535.7305 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 539.1386 226.4734)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.7001 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.1082 226.4734)\\\" x=\\\"0 2.28 7.84 15.06\\\">law,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 215.1551)\\\" x=\\\"0 5.56 8.89 11.17 16.17 18.45 24.01\\\">arising</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 62.6752 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 67.1149 215.1551)\\\" x=\\\"0 5.56 11.12\\\">out</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 81.0163 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 85.4561 215.1551)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 93.7959 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 98.2356 215.1551)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 112.137 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 116.5767 215.1551)\\\" x=\\\"0 5 10.56 16.12 21.68 23.96 26.74 29.02 34.58 40.14\\\">condition,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 159.5016 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 163.9413 215.1551)\\\" x=\\\"0 8.33 13.89 16.17 21.73 24.51 30.07 35.63 41.19 46.75 51.75 57.31\\\">maintenance,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 224.039 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 228.4787 215.1551)\\\" x=\\\"0 5.56 10.56\\\">use</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 244.6017 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 249.0415 215.1551)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.9331 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 262.3728 215.1551)\\\" x=\\\"0 5.56 11.12 16.68 20.01 25.57 28.35 30.63 36.19\\\">operation</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 304.1307 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 308.5704 215.1551)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 316.9102 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 321.35 215.1551)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.2514 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 339.6911 215.1551)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.2624 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 384.7021 215.1551)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24 28.52 34.08\\\">including</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 424.3506 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 428.7903 215.1551)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.3518 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 438.7916 215.1551)\\\" x=\\\"0 5 7.28 12.84 15.12\\\">claim</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 462.2437 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 466.6835 215.1551)\\\" x=\\\"0 5.56 11.12 16.68 22.24\\\">under</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 492.2597 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 496.6994 215.1551)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 510.6008 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 515.0405 215.1551)\\\" x=\\\"0 5 7.78 11.11 13.39 18.39\\\">strict</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 536.2075 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 540.6472 215.1551)\\\" x=\\\"0 2.28 4.56 10.12 15.68 17.96 20.24 22.52 25.3\\\">liability</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 203.8367)\\\" x=\\\"0 5.56 11.12 16.12 18.9 22.23 24.51 30.07 35.63\\\">doctrine.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 190.5184)\\\" x=\\\"0 7.2217 15 21.1084 23.8867 31.1084 37.7783 44.4482\\\">NOTICES.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 80.3266 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 82.9828 190.5184)\\\" x=\\\"0 7.2217 12.7832 15.5615 17.8418 22.8418 28.4033\\\">Notices</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 116.3861 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 119.0424 190.5184)\\\" x=\\\"0 8.3301 13.8916\\\">may</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 137.934 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 140.5902 190.5184)\\\" x=\\\"0 5.5615\\\">be</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 151.7133 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 154.3695 190.5184)\\\" x=\\\"0 5.5615 7.8418 12.8418 18.4033\\\">given</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 178.3344 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 180.9906 190.5184)\\\" x=\\\"0 5.5615 11.123 14.4531 19.4531 25.0146 30.5762 36.1377 38.418 40.6982\\\">personally</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 226.6889 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 229.3451 190.5184)\\\" x=\\\"0 5.5615\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.2367 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 240.893 190.5184)\\\" x=\\\"0 5 10.5615 16.123\\\">sent</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.7943 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 262.4506 190.5184)\\\" x=\\\"0 5.5615\\\">by</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 273.0121 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 275.6684 190.5184)\\\" x=\\\"0 2.7783 5.0586 8.3887 13.3887\\\">first</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.8353 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 294.4916 190.5184)\\\" x=\\\"0 5 7.2803 12.8418 17.8418\\\">class</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 317.3334 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 319.9896 190.5184)\\\" x=\\\"0 8.3301 13.8916 16.1719 18.4522\\\">mail.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 341.2201 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 343.8764 190.5184)\\\" x=\\\"0 7.2217 12.7832 15.5615 17.8418 22.8418\\\">Notice</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 372.2797 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 374.9359 190.5184)\\\" x=\\\"0 8.3301 13.8916 16.1719 18.4522 24.0137\\\">mailed</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 404.5111 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.1674 190.5184)\\\" x=\\\"0 2.7783\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 415.5072 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 418.1635 190.5184)\\\" x=\\\"0 5.5615\\\">us</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 428.725 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 431.3812 190.5184)\\\" x=\\\"0 8.3301 13.8916 18.8916\\\">must</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 453.0512 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 455.7074 190.5184)\\\" x=\\\"0 5.5615\\\">be</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.8305 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 469.4867 190.5184)\\\" x=\\\"0 5 10.5615 16.1231\\\">sent</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 488.3881 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 491.0443 190.5184)\\\" x=\\\"0 2.7783\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.3842 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 502.0404 190.5184)\\\" x=\\\"0 2.7783 8.3398\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 515.9418 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 518.5981 190.5184)\\\" x=\\\"0 5.5615 11.123 16.6846 20.0146 25.5762 30.5762\\\">address</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 179.2)\\\" x=\\\"0 5 10.5615 16.1231 23.3447\\\">shown</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 62.0063 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 64.6625 179.2)\\\" x=\\\"0 2.2803\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 72.5043 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 75.1606 179.2)\\\" x=\\\"0 2.7783 8.3398 10.6201\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 90.7807 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 93.4369 179.2)\\\" x=\\\"0 6.6699 12.2314 15.5615 21.123 26.6846 35.0146 40.5762 46.1377 48.916\\\">Agreement,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 145.1312 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 147.7875 179.2)\\\" x=\\\"0 5.6115\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 156.7791 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 159.4854 179.2)\\\" x=\\\"0 5.6115\\\">as</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 170.1469 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 172.8531 179.2)\\\" x=\\\"0 7.2717\\\">we</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 185.7363 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 188.4426 179.2)\\\" x=\\\"0 5.5615 8.3398 13.9014 19.4629 22.793 30.0147 32.2949 37.2949\\\">otherwise</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.299 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 233.9553 179.2)\\\" x=\\\"0 5.5615 7.8418 11.1719 16.7334 21.7334\\\">direct</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 258.467 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 261.1232 179.2)\\\" x=\\\"0 2.7783 6.1084 11.6699\\\">from</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.1232 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 283.7795 179.2)\\\" x=\\\"0 2.7783 5.0586 13.3887\\\">time</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.7297 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 305.3859 179.2)\\\" x=\\\"0 2.8283\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 313.8258 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 316.532 179.2)\\\" x=\\\"0 2.7783 5.0586 13.3887 18.9502\\\">time.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.2605 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 340.9168 179.2)\\\" x=\\\"0 7.2217 12.7832 15.5615 17.8418 22.8418 28.4033\\\">Notices</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 374.3201 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 376.9764 179.2)\\\" x=\\\"0 2.8283\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 385.4162 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 388.1225 179.2)\\\" x=\\\"0 5.6115\\\">us</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 398.784 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 401.4902 179.2)\\\" x=\\\"0 5.5615 8.8916\\\">are</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 415.9434 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 418.5996 179.2)\\\" x=\\\"0 5.5615 11.1231 16.6846 25.0147 30.5762\\\">deemed</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.7373 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 457.3936 179.2)\\\" x=\\\"0 5.5615 7.8418 12.8418 18.4033\\\">given</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 481.3584 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 484.0147 179.2)\\\" x=\\\"0 7.2217 12.7832 18.3447\\\">when</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 507.9209 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 510.5771 179.2)\\\" x=\\\"0 2.7783 8.3398 13.9014\\\">they</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.4785 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 532.1348 179.2)\\\" x=\\\"0 5.5615 8.8916\\\">are</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 167.8816)\\\" x=\\\"0 5.5615 11.1231 14.4531 19.4531 25.0146 30.5762 36.1377 38.418 40.6982\\\">personally</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 78.7982 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.4545 167.8816)\\\" x=\\\"0 5.5615 7.8418 12.8418 18.4033\\\">given</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 105.4193 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 108.0756 167.8816)\\\" x=\\\"0 5.5615\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 116.9672 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 119.6234 167.8816)\\\" x=\\\"0 5.5615 10.5615 13.3398 18.9014 24.4629 26.7432 29.0234\\\">actually</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 153.6469 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 156.3031 167.8816)\\\" x=\\\"0 3.3301 8.8916 13.8916 19.4531 21.7334 26.7334 32.2949\\\">received</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 194.1596 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 196.8158 167.8816)\\\" x=\\\"0 5.6615\\\">at</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 205.3557 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 208.1119 167.8816)\\\" x=\\\"0 5.6115 11.223\\\">our</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 222.715 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 225.4213 167.8816)\\\" x=\\\"0 5.5615 11.123 16.6846 20.0146 25.5762 30.5762 35.5762\\\">address.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 263.7758 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 266.432 167.8816)\\\" x=\\\"0 7.2217 12.7832 15.5615 17.8418 22.8418 28.4033\\\">Notices</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.8353 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 302.4916 167.8816)\\\" x=\\\"0 5.6115 8.9916\\\">are</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 317.0947 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 319.801 167.8816)\\\" x=\\\"0 5.5615 11.123 16.6846 25.0146 30.5762\\\">deemed</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.9387 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 358.5949 167.8816)\\\" x=\\\"0 5.5615 7.8418 12.8418 18.4033\\\">given</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 382.5598 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 385.216 167.8816)\\\" x=\\\"0 2.8783\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.7559 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 396.5121 167.8816)\\\" x=\\\"0 5.05 10.6615\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 412.7852 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 415.4914 167.8816)\\\" x=\\\"0 7.2717 12.8832 18.4947\\\">when</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 439.5977 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 442.3039 167.8816)\\\" x=\\\"0 2.8283 8.4398 14.0514\\\">they</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 461.4053 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 464.1115 167.8816)\\\" x=\\\"0 5.6115 8.9916\\\">are</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 478.7147 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 481.4209 167.8816)\\\" x=\\\"0 5.5615 11.1231 14.4531 19.4531 25.0146 30.5762 36.1377 38.418 40.6982\\\">personally</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 527.1191 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 529.7754 167.8816)\\\" x=\\\"0 5.5615 7.8418 12.8418 18.4033\\\">given</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.7402 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 556.3965 167.8816)\\\" x=\\\"0 5.6615\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 156.5633)\\\" x=\\\"0 7.2717 12.8832 18.4947\\\">when</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 57.2063 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 59.9125 156.5633)\\\" x=\\\"0 5.5615 7.8418 13.4033 18.4033 23.9648\\\">placed</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 89.4389 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 92.0951 156.5633)\\\" x=\\\"0 2.3803\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 100.1369 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 102.8932 156.5633)\\\" x=\\\"0 2.8283 8.4398\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 116.9445 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 119.6508 156.5633)\\\" x=\\\"0 8.3301 13.8916 16.1719 18.4522\\\">mail,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 140.8813 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 143.5375 156.5633)\\\" x=\\\"0 5.5615 11.123 16.6846 20.0147 25.5762 30.5762 35.5762 41.1377\\\">addressed</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 190.2367 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 192.893 156.5633)\\\" x=\\\"0 2.7783\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 201.2328 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 203.8891 156.5633)\\\" x=\\\"0 5 10.5615\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 220.0121 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 222.6684 156.5633)\\\" x=\\\"0 5.5615\\\">at</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.0082 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 233.6645 156.5633)\\\" x=\\\"0 5 10.5615 16.123\\\">your</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 253.1176 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 255.7738 156.5633)\\\" x=\\\"0 5.5615 11.1231 16.6846 20.0147 25.5762 30.5762\\\">address</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.35 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 294.0062 156.5633)\\\" x=\\\"0 2.7783 8.3399 13.9014\\\">then</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 313.4691 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 316.1254 156.5633)\\\" x=\\\"0 5 10.5615 16.1231 23.3447\\\">shown</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 345.0316 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 347.6879 156.5633)\\\" x=\\\"0 5.5615\\\">on</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 358.8109 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 361.4672 156.5633)\\\" x=\\\"0 5.5615 11.1231\\\">our</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.9203 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 378.5766 156.5633)\\\" x=\\\"0 3.3301 8.8916 13.8916 19.4531 22.7832 28.3447 33.3447\\\">records,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 414.6996 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 417.3559 156.5633)\\\" x=\\\"0 5.5615 10.5615 16.123\\\">even</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 439.0404 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 441.6967 156.5633)\\\" x=\\\"0 2.7783 8.3398 13.9014 19.4629 25.0244\\\">though</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 472.2826 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 474.9389 156.5633)\\\" x=\\\"0 5 10.5615\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 491.0619 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 493.7182 156.5633)\\\" x=\\\"0 8.3301 10.6104 16.1719 21.7334\\\">might</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 518.2299 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 520.8861 156.5633)\\\" x=\\\"0 5.5615 11.123\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 145.2449)\\\" x=\\\"0 5.5615 10.5615 13.3398 18.9014 24.4629 26.7432 29.0234\\\">actually</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 67.1234 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 69.7797 145.2449)\\\" x=\\\"0 3.3301 8.8916 13.8916 19.4531 21.7334 26.7334\\\">receive</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 102.0746 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 104.7309 145.2449)\\\" x=\\\"0 5.5615 11.123\\\">our</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 119.184 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 121.8402 145.2449)\\\" x=\\\"0 8.3301 13.8916 16.1719 18.4521 24.0137\\\">mailed</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 151.4154 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 154.0717 145.2449)\\\" x=\\\"0 5.5615 11.1231 13.9014 16.1816 21.1816 26.7432\\\">notice.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 183.5932 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 186.2494 145.2449)\\\" x=\\\"0 6.6699 12.2314\\\">You</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 204.0424 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 206.6986 145.2449)\\\" x=\\\"0 5.8115 11.6231 15.2031 21.0146\\\">agree</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.5248 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 236.4311 145.2449)\\\" x=\\\"0 2.9283 8.6398 14.3514\\\">that</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 253.7107 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 256.517 145.2449)\\\" x=\\\"0 5.8615\\\">30</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 268.24 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 271.1963 145.2449)\\\" x=\\\"0 5.7115 11.4231 16.5731 21.7231\\\">days&apos;</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 294.9785 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 297.7848 145.2449)\\\" x=\\\"0 5.6615 11.3231 14.2014 16.5816 21.6816\\\">notice</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 325.1279 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 327.8842 145.2449)\\\" x=\\\"0 2.5803\\\">is</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.7645 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.7207 145.2449)\\\" x=\\\"0 3.4301 9.0916 14.7531 19.8531 25.5146 31.1762 36.8377 42.4992 44.8795 50.541\\\">reasonable,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 392.14 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 394.8963 145.2449)\\\" x=\\\"0 5.6615 11.3231 13.7033 19.3648 24.4648\\\">unless</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 424.4611 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 427.2174 145.2449)\\\" x=\\\"0 5.15 8.0783 13.7899 16.7182\\\">state</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 449.6471 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 452.4533 145.2449)\\\" x=\\\"0 2.5303 8.3418\\\">law</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.2668 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 471.173 145.2449)\\\" x=\\\"0 3.4301 9.0916 14.7531 20.4146 22.7949 26.225 31.8865\\\">requires</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 508.1596 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 510.9158 145.2449)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 517.0773 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 520.3336 145.2449)\\\" x=\\\"0 2.3803 8.0418 13.7033 19.3649 25.0264\\\">longer</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 133.9266)\\\" x=\\\"0 5.6615 11.3231 14.7531 17.1334 22.7949 28.4564\\\">period,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 64.4348 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 67.191 133.9266)\\\" x=\\\"0 2.5803\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 75.6328 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 78.5891 133.9266)\\\" x=\\\"0 7.3717 13.0832 15.5135 20.6635\\\">which</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 104.9641 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 107.7703 133.9266)\\\" x=\\\"0 5.15 10.8615 16.0115\\\">case</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 129.4934 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 132.2996 133.9266)\\\" x=\\\"0 5.25 11.0615\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 149.1727 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 152.0789 133.9266)\\\" x=\\\"0 5.7115 11.423 14.9031 20.6146\\\">agree</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 178.4051 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 181.2113 133.9266)\\\" x=\\\"0 2.9283 8.6398 14.3514\\\">that</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 198.491 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 201.2973 133.9266)\\\" x=\\\"0 3.0283 8.8398\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 215.9486 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 218.8549 133.9266)\\\" x=\\\"0 5.05 7.8783 13.4898 16.3182 21.9297 25.3098 28.7898 34.5014 40.2129 45.9244 48.3547 51.8348 57.5463\\\">state-required</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 282.1127 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 284.9189 133.9266)\\\" x=\\\"0 5.6615 11.3231 14.7531 17.1334 22.7949\\\">period</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 313.3754 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 316.1316 133.9266)\\\" x=\\\"0 2.5803\\\">is</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 324.0119 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 329.5182 133.9266)\\\" x=\\\"0 3.3301 8.8916 14.4531 19.4531 25.0147 30.5762 36.1377 41.6992 43.9795 49.541\\\">reasonable.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 381.8375 133.9266)\\\" x=\\\"0 2.6562\\\">  </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 387.15 133.9266)\\\" x=\\\"0 6.6699 12.2314\\\">You</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 404.943 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.5992 133.9266)\\\" x=\\\"0 5.5615 11.123 13.9014 19.4629 25.0244 28.3545 30.6348 35.6348\\\">authorize</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 448.7955 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 451.4518 133.9266)\\\" x=\\\"0 5.5615\\\">us</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 462.0133 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 464.6695 133.9266)\\\" x=\\\"0 2.7783\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 473.0094 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 475.6656 133.9266)\\\" x=\\\"0 5 10.5615 16.123\\\">send</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 497.3502 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 500.0064 133.9266)\\\" x=\\\"0 5.5615 11.1231 13.9014 16.1816 21.1816 26.7432\\\">notices</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 531.7496 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 534.4059 133.9266)\\\" x=\\\"0 2.7783\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 542.7457 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 545.402 133.9266)\\\" x=\\\"0 5 10.5615 16.123\\\">your</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 122.6082)\\\" x=\\\"0 5.56 13.89 19.45 21.73 24.01 26.67 32.23 37.79 43.35 46.68 52.24 57.24 62.24 64.9 70.46 76.02 78.3 83.86 88.86 93.86 96.52 102.08 105.41 110.97 116.53 118.81 124.37 126.65 129.43 134.99 140.55 143.21 148.77 153.77 156.43 158.71 164.27 171.49\\\">email address unless prohibited by law.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 109.2898)\\\" x=\\\"0 5 12.22 19.44\\\">JURY</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 59.2133 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 63.5195 109.2898)\\\" x=\\\"0 6.11 13.33 16.11 22.78\\\">TRIAL</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 91.8594 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 96.1656 109.2898)\\\" x=\\\"0 9.44 16.11 18.89 25.56 32.23\\\">WAIVER</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 135.6138 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 139.9201 109.2898)\\\" x=\\\"0 6.67 13.89\\\">AND</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 161.0334 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 165.3396 109.2898)\\\" x=\\\"0 6.67 13.89 20.56 23.34 29.45 36.67 43.34 49.45 52.23 60.01\\\">ARBITRATION</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 232.5662 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 236.8724 109.2898)\\\" x=\\\"0 7.22 12.78 19.45 26.67 33.34 40.01\\\">CLAUSE.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 279.6654 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 283.9716 109.2898)\\\" x=\\\"0 6.67\\\">By</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 295.6415 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 299.9478 109.2898)\\\" x=\\\"0 5 7.28 12.84 18.4 20.68 26.24 31.8\\\">signing,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 334.5327 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.8389 109.2898)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 354.962 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 359.2682 109.2898)\\\" x=\\\"0 5.56 11.12 14.45 20.01\\\">agree</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 384.8444 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 389.1507 109.2898)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 397.4905 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 401.7967 109.2898)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 417.4168 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 421.7231 109.2898)\\\" x=\\\"0 5 10.56 13.89\\\">Jury</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 440.6147 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 444.9209 109.2898)\\\" x=\\\"0 6.11 9.44 11.72 17.28\\\">Trial</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 464.4815 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 468.7877 109.2898)\\\" x=\\\"0 9.44 15 17.28 22.28 27.84\\\">Waiver</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.9596 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 504.2658 109.2898)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 520.9504 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 525.2566 109.2898)\\\" x=\\\"0 6.67 10 15.56 17.84 20.62 23.95 29.51 32.29 34.57 40.13\\\">Arbitration</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 97.9715)\\\" x=\\\"0 7.22 9.5 15.06 20.62 25.62 31.18 33.84 37.17 40.5 47.72 50 55.56 61.12 66.12 71.68 75.01 78.34\\\">Clause (“Clause”).</text></g><clipPath id=\\\"clip3-3\\\"><path d=\\\"M 35 76 L 573 76 L 573 94 L 35 94 L 35 76 z \\\"/></clipPath><path clip-path=\\\"url(#clip3-3)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 93.8719 L 572.95 93.8719 L 572.95 76.8719 L 35.45 76.8719 L 35.45 93.8719 z \\\"/><path clip-path=\\\"url(#clip3-3)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.15 91.8719 L 572.45 91.8719 L 572.45 80.5535 L 39.15 80.5535 L 39.15 91.8719 z \\\"/><path clip-path=\\\"url(#clip3-3)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 253.9396 91.8719 L 357.9396 91.8719 L 357.9396 79.8719 L 253.9396 79.8719 L 253.9396 91.8719 z \\\"/><g clip-path=\\\"url(#clip3-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 253.9396 82.6531)\\\" x=\\\"0 6.67 12.23 17.23 22.23 27.79 31.12 36.68 42.24 47.8 53.36 56.02 61.58 67.14 72.7 75.36 82.03 87.03 92.59 98.15\\\">Background and Scope</text></g><clipPath id=\\\"clip3-4\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip3-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 94.3719 L 573.45 94.3719 L 573.45 93.3719 L 34.95 93.3719 L 34.95 94.3719 z \\\"/><path clip-path=\\\"url(#clip3-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 77.3719 L 573.45 77.3719 L 573.45 76.3719 L 34.95 76.3719 L 34.95 77.3719 z \\\"/><path clip-path=\\\"url(#clip3-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 93.3719 L 573.45 93.3719 L 573.45 77.3719 L 572.45 77.3719 L 572.45 93.3719 z \\\"/><path clip-path=\\\"url(#clip3-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 93.3719 L 35.95 93.3719 L 35.95 77.3719 L 34.95 77.3719 L 34.95 93.3719 z \\\"/><g clip-path=\\\"url(#clip3-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 36.5264)\\\" x=\\\"0 6.498 11.997 14.391 16.785 21.789 26.793 29.295 34.299 39.303 44.307 504 506.3906 508.7812 511.1719 513.5625 515.9531 518.3438 520.7344 523.125 525.5156\\\">UT  07/2019          </text></g><g clip-path=\\\"url(#clip3-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 26.3398)\\\" x=\\\"0 6.003 11.007 16.011 21.015\\\">Page </text></g><g clip-path=\\\"url(#clip3-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 55.8097 26.3398)\\\" x=\\\"0\\\">4</text></g><g clip-path=\\\"url(#clip3-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.815 26.3398)\\\" x=\\\"0 2.394 7.398 9.9\\\"> of </text></g><g clip-path=\\\"url(#clip3-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 73.1021 26.3398)\\\" x=\\\"0\\\">7</text></g><g clip-path=\\\"url(#clip3-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#d9d9d9\\\" style=\\\"font-family:f3-0; font-size:54pt; white-space:pre\\\" transform=\\\"matrix(0.707 0.707 0.707 -0.707 135.6027 198.5094)\\\" x=\\\"0 56.016 96.048 136.08 176.112 216.144 236.16 284.184 324.216 344.232 364.248 416.232 456.264 480.24\\\">* D E M O *are</text></g><g clip-path=\\\"url(#clip3-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#002ba6\\\" style=\\\"font-family:f3-0; font-size:9pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.932 772)\\\" x=\\\"0 9.336 16.008 22.68 29.352 36.024 39.36 47.364 54.036 57.372 60.708 69.372 76.044 80.04 86.712 90.048 94.044 97.38 104.712 111.384 115.38 118.716 126.72 132.72 139.392 142.056 148.728 155.4 158.736 161.4 168.072 174.744 178.08 187.416 194.088 196.752 202.752 206.088 210.084 213.42 220.092 223.428 226.764 233.436 239.436 242.772 246.108 249.444 258.108 266.772 275.436 278.772 285.444 292.116 298.788 305.46 312.132 315.468 321.468 328.14\\\">Qoppa Software - For Evaluation Only - https://www.qoppa.com</text></g></g></svg></svg></g></svg><br>\\n<?xml version='1.0' encoding='UTF-8'?><svg id=\\\"qoppa_document\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" version=\\\"1.1\\\" xmlns=\\\"http://www.w3.org/2000/svg\\\" xmlns:xlink=\\\"http://www.w3.org/1999/xlink\\\"><!-- jPDFWeb v2019R1.03 - Demo Version --><style>title p { display: block; }</style><g id=\\\"qoppa_viewxform\\\" transform=\\\"matrix(1 0 0 1 0 0)\\\"><style type=\\\"text/css\\\">@font-face {font-family:f4-0;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f4-1;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f4-2;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}</style><svg id=\\\"qoppa_page_p4\\\" class=\\\"qoppa_page\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\"><rect class=\\\"qoppa_pageborder\\\" x=\\\"0.5pt\\\" y=\\\"0.5pt\\\" width=\\\"611pt\\\" height=\\\"791pt\\\" fill=\\\"none\\\" /><svg class=\\\"qoppa_pagecontents\\\" x=\\\"0pt\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" viewBox=\\\"0 0 612 792\\\" ><g class=\\\"qoppa_contentstream\\\" transform=\\\"matrix(1 0 0 -1 0 792)\\\" fill=\\\"black\\\" stroke=\\\"black\\\" stroke-width=\\\"1\\\" stroke-linecap=\\\"butt\\\" stroke-linejoin=\\\"miter\\\" stroke-miterlimit=\\\"10\\\"><clipPath id=\\\"clip4-1\\\"><path d=\\\"M 35 748 L 130 748 L 130 770 L 35 770 L 35 748 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-1)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 769.7 L 129.35 769.7 L 129.35 748.5906 L 35.45 748.5906 L 35.45 769.7 z \\\"/><path clip-path=\\\"url(#clip4-1)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 767.7 L 125.25 767.7 L 125.25 758.6453 L 39.55 758.6453 L 39.55 767.7 z \\\"/><path clip-path=\\\"url(#clip4-1)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 47.9683 767.7 L 116.9684 767.7 L 116.9684 757.7 L 47.9683 757.7 L 47.9683 767.7 z \\\"/><g clip-path=\\\"url(#clip4-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.9684 760.325)\\\" x=\\\"0 7.552 12 16.448 18.672 20.8 22.624 26.624 28.752 33.2 35.864 40.312 42.136 44.36 47.024 51.472 53.696 55.52 59.968 64.416\\\">What is arbitration?</text></g><clipPath id=\\\"clip4-2\\\"><path d=\\\"M 129 748 L 206 748 L 206 770 L 129 770 L 129 748 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 138.6945 760.325)\\\" x=\\\"0 5.336 9.784 11.912 16.36 18.184 20.408 24.856 27.52 31.968 36.416 38.64 40.464 44.464 48.912 51.04 53.264\\\">An alternative to</text></g><g clip-path=\\\"url(#clip4-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 157.5461 751.2703)\\\" x=\\\"0 4 8.448 12.896 15.56 17.784\\\">court.</text></g><clipPath id=\\\"clip4-3\\\"><path d=\\\"M 205 748 L 573 748 L 573 770 L 205 770 L 205 748 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 760.325)\\\" x=\\\"0 2.224\\\">In</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 216.5219 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 220.3852 760.325)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 26.768 31.216 35.664\\\">arbitration,</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 258.2758 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 262.139 760.325)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 266.5883 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 270.4515 760.325)\\\" x=\\\"0 2.224 6.672 8.496 11.16\\\">third</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 286.0609 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 289.9242 760.325)\\\" x=\\\"0 4.448 8.896 11.56 13.784\\\">party</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 307.7094 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 311.5727 760.325)\\\" x=\\\"0 2.664 5.504 10.84 13.504 17.952 19.776 22 26.448 29.112 31.952\\\">(&quot;Arbiter&quot;)</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 346.1898 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 350.0531 760.325)\\\" x=\\\"0 4 8.448 10.272 14.272 18.72\\\">solves</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 372.7758 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 376.639 760.325)\\\" x=\\\"0 5.776 7.6 11.6 16.048 20.496 22.72 27.168\\\">Disputes</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 407.8109 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 411.6742 760.325)\\\" x=\\\"0 1.824\\\">in</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 417.9477 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 421.8109 760.325)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 426.2601 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 430.1234 760.325)\\\" x=\\\"0 4.448 8.896 13.344 16.008 17.832 22.28\\\">hearing</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.8578 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 460.7211 760.325)\\\" x=\\\"0 2.664 5.504 9.952 14.4 18.848 21.512 23.336 27.784 32.232 35.072 37.736\\\">(&quot;hearing&quot;).</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 500.6859 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 504.5492 760.325)\\\" x=\\\"0 5.336 9.784 14.232\\\">You,</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.0062 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 524.8695 760.325)\\\" x=\\\"0 2.664 7.112 8.936 13.384 15.608 20.056\\\">related</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.3773 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 553.2406 760.325)\\\" x=\\\"0 2.224 6.672 8.496 11.16\\\">third</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 751.2703)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056 24.056 26.28 28.408 32.856 37.304 41.752 43.88 49.656 54.104 56.328 58.456 64.232 68.68 70.504 74.504 78.952 81.08 83.304 87.752 92.2 94.328 96.992 98.816 103.264 107.712 109.936 112.064 114.288 118.736 120.864 125.312 129.76 131.888 134.112 138.56 140.688 144.688 149.136 153.584 156.248 158.472 160.696 162.824 168.16 172.608 176.608 181.056 183.184 186.024 190.472 194.92 197.584 199.808 201.632 206.08 210.08 212.92 215.048 217.272 221.72 224.384 228.832 233.28 235.408 237.232 241.68 244.344 248.344 250.472 252.696 255.36 257.184 261.632 263.456 267.456\\\">parties, and we, waive the right to go to court. Such &quot;parties&quot; forgo jury trials.</text></g><clipPath id=\\\"clip4-4\\\"><path d=\\\"M 35 727 L 130 727 L 130 749 L 35 749 L 35 727 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-4)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 748.5906 L 129.35 748.5906 L 129.35 727.4813 L 35.45 727.4813 L 35.45 748.5906 z \\\"/><path clip-path=\\\"url(#clip4-4)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 746.5906 L 125.25 746.5906 L 125.25 728.4813 L 39.55 728.4813 L 39.55 746.5906 z \\\"/><path clip-path=\\\"url(#clip4-4)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 41.6461 746.5906 L 123.6461 746.5906 L 123.6461 736.5906 L 41.6461 736.5906 L 41.6461 746.5906 z \\\"/><g clip-path=\\\"url(#clip4-4)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 41.6461 739.2156)\\\" x=\\\"0 2.224 6.224 8.352 10.176 12.4 14.528 18.976 20.8 23.024 25.248 29.696 32.36 36.808 41.256 43.48 45.608 47.832 50.496 54.944 61.608 63.736 67.736 72.184 76.632 79.296\\\">Is it different from court</text></g><path clip-path=\\\"url(#clip4-4)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 56.4156 737.5359 L 108.4156 737.5359 L 108.4156 727.5359 L 56.4156 727.5359 L 56.4156 737.5359 z \\\"/><g clip-path=\\\"url(#clip4-4)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 56.4156 730.1609)\\\" x=\\\"0 4.448 8.896 13.344 15.472 17.296 21.744 24.408 28.408 30.536 32.76 35.424 37.248 41.696 43.52 47.52\\\">and jury trials?</text></g><clipPath id=\\\"clip4-5\\\"><path d=\\\"M 129 727 L 206 727 L 206 749 L 129 749 L 129 727 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-5)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 159.5461 739.2156)\\\" x=\\\"0 5.336 9.784 13.784\\\">Yes.</text></g><clipPath id=\\\"clip4-6\\\"><path d=\\\"M 205 727 L 573 727 L 573 749 L 205 749 L 205 727 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 739.2156)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 223.6351 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 226.6552 739.2156)\\\" x=\\\"0 4.448 8.896 13.344 16.008 17.832 22.28\\\">hearing</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 253.3896 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 256.4096 739.2156)\\\" x=\\\"0 1.824\\\">is</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.2338 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 265.2539 739.2156)\\\" x=\\\"0 4.448 7.112 8.936 12.936 17.384 19.608\\\">private</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 289.3125 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 292.3325 739.2156)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 305.6802 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 308.7002 739.2156)\\\" x=\\\"0 1.824 6.272 10.272\\\">less</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 322.9737 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 325.9937 739.2156)\\\" x=\\\"0 2.224 6.672 9.336 16 20.448\\\">formal</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.2672 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 351.2872 739.2156)\\\" x=\\\"0 2.224 6.672 11.12\\\">than</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 366.8575 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 369.8776 739.2156)\\\" x=\\\"0 4 8.448 12.896 15.56 17.784\\\">court.</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 389.8854 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 392.9055 739.2156)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608\\\">Arbiters</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 420.5148 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 423.5349 739.2156)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 438.6482 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 441.6682 739.2156)\\\" x=\\\"0 1.824 3.648 10.312 12.136\\\">limit</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.0276 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 459.0477 739.2156)\\\" x=\\\"0 4.448 7.112 11.56 14.224 18.672 23.12 27.568 30.232 32.056 36.504\\\">pre-hearing</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 500.0086 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 503.0286 739.2156)\\\" x=\\\"0 2.224 6.672 10.672\\\">fact</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 515.9232 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 518.9432 739.2156)\\\" x=\\\"0 2.224 4.048 8.496 12.944 14.768 19.216 23.664\\\">finding,</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 544.8338 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 547.8539 739.2156)\\\" x=\\\"0 4 8.448 10.272 12.096 16.544\\\">called</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 730.1609)\\\" x=\\\"0 2.84 7.288 9.112 13.112 17.112 21.56 25.56 30.008 32.672 36.672 38.896 41.736 43.864 48.752 53.2 57.648 59.776 64.224 68.672 72.672 74.496 78.496 80.32 84.768 89.216 91.344 93.168 97.168 99.296 101.52 103.344 107.792 112.24 114.064 116.288 118.416 124.192 128.64 133.088 135.752 137.976 141.976 144.104 146.768 151.216 153.88 158.328 160.152 164.152 166.28 170.728 174.728 179.176 181.84 184.064 188.512 191.176 195.624 197.752 203.088 205.752 210.2 212.024 214.248 218.696 221.36 225.36\\\">&quot;discovery.&quot; The decision is final. Courts rarely overturn Arbiters.</text></g><clipPath id=\\\"clip4-7\\\"><path d=\\\"M 35 706 L 130 706 L 130 728 L 35 728 L 35 706 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-7)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 727.4813 L 129.35 727.4813 L 129.35 706.3719 L 35.45 706.3719 L 35.45 727.4813 z \\\"/><path clip-path=\\\"url(#clip4-7)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 725.4813 L 125.25 725.4813 L 125.25 707.3719 L 39.55 707.3719 L 39.55 725.4813 z \\\"/><path clip-path=\\\"url(#clip4-7)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 44.2789 725.4813 L 121.2789 725.4813 L 121.2789 715.4813 L 44.2789 715.4813 L 44.2789 725.4813 z \\\"/><g clip-path=\\\"url(#clip4-7)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 44.2789 718.1062)\\\" x=\\\"0 7.552 12 16.448 18.576 23.024 27.472 31.92 35.92 38.048 40.272 44.72 49.168 51.296 57.072 58.896 63.344 67.792 71.792\\\">Who does the Clause</text></g><path clip-path=\\\"url(#clip4-7)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 70.3941 716.4266 L 95.3941 716.4266 L 95.3941 706.4266 L 70.3941 706.4266 L 70.3941 716.4266 z \\\"/><g clip-path=\\\"url(#clip4-7)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 70.3941 709.0516)\\\" x=\\\"0 4 8.448 12.448 16.896 19.56\\\">cover?</text></g><clipPath id=\\\"clip4-8\\\"><path d=\\\"M 129 706 L 206 706 L 206 728 L 129 728 L 129 706 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 144.5226 718.1062)\\\" x=\\\"0 5.336 9.784 14.232 16.456 18.584 24.36 28.36 30.584 32.712 37.16 41.608\\\">You, Us, and</text></g><g clip-path=\\\"url(#clip4-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 154.4348 709.0516)\\\" x=\\\"0 6.224 8.448 12.896 17.344 20.008 24.008\\\">Others.</text></g><clipPath id=\\\"clip4-9\\\"><path d=\\\"M 205 706 L 573 706 L 573 728 L 205 728 L 205 706 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 718.1062)\\\" x=\\\"0 4.888 9.336 11.16\\\">This</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.0101 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 228.5163 718.1062)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496\\\">Clause</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 253.4655 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 256.9716 718.1062)\\\" x=\\\"0 4.448 8.896 12.896 17.344 20.008 24.456\\\">governs</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 285.4326 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 288.9387 718.1062)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 300.0598 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 303.5659 718.1062)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056 24.056\\\">parties,</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.8472 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 333.3533 718.1062)\\\" x=\\\"0 2.224 6.672 11.12 12.944\\\">their</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.9627 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 352.4688 718.1062)\\\" x=\\\"0 4.448 8.896 10.72 13.384 17.384\\\">heirs,</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 372.0782 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 375.5844 718.1062)\\\" x=\\\"0 4 8.448 12.448 16.448 20.896 24.896 28.896 33.344 36.008 40.008\\\">successors,</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 417.8187 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 421.3249 718.1062)\\\" x=\\\"0 4.448 8.448 12.448 14.272 18.72 23.168 27.168\\\">assigns,</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 450.7194 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 454.2255 718.1062)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.5732 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 471.0793 718.1062)\\\" x=\\\"0 2.224 6.672 8.496 11.16\\\">third</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.6887 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 490.1949 718.1062)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056\\\">parties</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 514.2535 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 517.7596 718.1062)\\\" x=\\\"0 2.664 7.112 8.936 13.384 15.608 20.056\\\">related</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 542.2674 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 545.7735 718.1062)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.4454 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 555.9515 718.1062)\\\" x=\\\"0 4.448 8.896\\\">any</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 709.0516)\\\" x=\\\"0 5.776 7.6 11.6 16.048 20.496 22.72 27.168\\\">Dispute.</text></g><clipPath id=\\\"clip4-10\\\"><path d=\\\"M 35 630 L 130 630 L 130 707 L 35 707 L 35 630 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-10)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 706.3719 L 129.35 706.3719 L 129.35 630.9344 L 35.45 630.9344 L 35.45 706.3719 z \\\"/><path clip-path=\\\"url(#clip4-10)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 704.3719 L 125.25 704.3719 L 125.25 686.2625 L 39.55 686.2625 L 39.55 704.3719 z \\\"/><path clip-path=\\\"url(#clip4-10)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 47.7711 704.3719 L 117.7711 704.3719 L 117.7711 694.3719 L 47.7711 694.3719 L 47.7711 704.3719 z \\\"/><g clip-path=\\\"url(#clip4-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.7711 696.9969)\\\" x=\\\"0 7.552 12 13.824 17.824 22.272 24.4 30.176 32 36 40.448 44.896 47.12 51.568 55.568 57.696 62.144 64.808\\\">Which Disputes are</text></g><path clip-path=\\\"url(#clip4-10)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 65.9449 695.3172 L 98.9449 695.3172 L 98.9449 685.3172 L 65.9449 685.3172 L 65.9449 695.3172 z \\\"/><g clip-path=\\\"url(#clip4-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 65.9449 687.9422)\\\" x=\\\"0 4 8.448 12.448 16.896 19.56 24.008 28.456\\\">covered?</text></g><clipPath id=\\\"clip4-11\\\"><path d=\\\"M 129 630 L 206 630 L 206 707 L 129 707 L 129 630 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 145.298 696.9969)\\\" x=\\\"0 5.336 7.16 8.984 11.112 16.888 18.712 22.712 27.16 31.608 33.832 38.28 42.28\\\">All Disputes.</text></g><clipPath id=\\\"clip4-12\\\"><path d=\\\"M 205 630 L 573 630 L 573 707 L 205 707 L 205 630 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 696.9969)\\\" x=\\\"0 2.224\\\">In</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 216.5219 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 220.3165 696.9969)\\\" x=\\\"0 2.224 6.672 8.496\\\">this</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 232.8126 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 236.6072 696.9969)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496 24.944\\\">Clause,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 263.7791 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 267.5738 696.9969)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 278.6949 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 282.4895 696.9969)\\\" x=\\\"0 5.776 10.224 12.888\\\">word</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.8293 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 303.624 696.9969)\\\" x=\\\"0 2.84 8.616 10.44 14.44 18.888 23.336 25.56 30.008 34.008\\\">&quot;Disputes&quot;</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 340.4755 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 344.2702 696.9969)\\\" x=\\\"0 4.448 8.896\\\">has</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 357.1686 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 360.9633 696.9969)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 372.0844 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 375.879 696.9969)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456 24.904 28.904\\\">broadest</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 407.0118 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 410.8065 696.9969)\\\" x=\\\"0 4.448 8.896 12.896 16.896 18.72 23.168 24.992\\\">possible</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 440.2518 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 444.0464 696.9969)\\\" x=\\\"0 6.664 11.112 15.56 20.008 21.832 26.28 30.728\\\">meaning.</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 477.0034 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 480.7981 696.9969)\\\" x=\\\"0 4.888 9.336 11.16\\\">This</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 495.9582 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 499.7529 696.9969)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496\\\">Clause</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 524.7021 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 528.4968 696.9969)\\\" x=\\\"0 4.448 8.896 12.896 17.344 20.008 24.456\\\">governs</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 556.9577 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 560.7523 696.9969)\\\" x=\\\"0 4.448 6.272\\\">all</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 687.9422)\\\" x=\\\"0 2.84 8.616 10.44 14.44 18.888 23.336 25.56 30.008 34.008\\\">&quot;Disputes&quot;</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 246.7015 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 248.8785 687.9422)\\\" x=\\\"0 1.824 6.272 10.272 14.72 16.544 20.544 22.368 26.816\\\">involving</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.148 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 282.3249 687.9422)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 293.446 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 295.6229 687.9422)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056 24.056\\\">parties.</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 321.9041 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 324.081 687.9422)\\\" x=\\\"0 4.888 9.336 11.16\\\">This</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 339.2412 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 341.4181 687.9422)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44\\\">includes</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 370.8634 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 373.0403 687.9422)\\\" x=\\\"0 4.448 6.272\\\">all</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 381.1379 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 383.3148 687.9422)\\\" x=\\\"0 4 5.824 10.272 12.096 18.76\\\">claims</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 406.0765 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 408.2534 687.9422)\\\" x=\\\"0 4.448 8.448 12.896\\\">even</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 425.6011 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 427.778 687.9422)\\\" x=\\\"0 1.824 6.272 10.72 12.544 15.208 19.656 23.656 25.88 27.704\\\">indirectly</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 459.485 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 461.6619 687.9422)\\\" x=\\\"0 2.664 7.112 8.936 13.384 15.608 20.056\\\">related</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.1698 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 488.3466 687.9422)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 495.0185 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 497.1954 687.9422)\\\" x=\\\"0 4 8.448 12.896\\\">your</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.7579 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 514.9348 687.9422)\\\" x=\\\"0 4.448 8.896 13.344 15.168 16.992 20.992 25.44 27.664 29.488 33.936\\\">application</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.3254 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 555.5023 687.9422)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 678.8875)\\\" x=\\\"0 4.448 8.896 11.56 16.008 20.456 27.12 31.568 36.016 38.24\\\">agreements</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 252.0961 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 254.4013 678.8875)\\\" x=\\\"0 5.776 7.6 9.824\\\">with</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 268.6747 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 270.9799 678.8875)\\\" x=\\\"0 4.448 8.448\\\">us.</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.6518 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 283.957 678.8875)\\\" x=\\\"0 4.888 9.336 11.16\\\">This</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.1172 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 301.4224 678.8875)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44\\\">includes</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 330.8677 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 333.1729 678.8875)\\\" x=\\\"0 4 5.824 10.272 12.096 18.76\\\">claims</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.9346 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 358.2398 678.8875)\\\" x=\\\"0 2.664 7.112 8.936 13.384 15.608 20.056\\\">related</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 382.7477 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 385.0529 678.8875)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 391.7247 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 394.0299 678.8875)\\\" x=\\\"0 1.824 6.272 8.496 12.944 15.608 22.272 26.72 28.944 30.768 35.216\\\">information</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 433.6979 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 436.0031 678.8875)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 448.9016 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 451.2068 678.8875)\\\" x=\\\"0 4.448 7.112 11.56 15.56 17.384 21.832 26.28 30.28 32.104\\\">previously</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 487.3161 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 489.6213 678.8875)\\\" x=\\\"0 4.448 8.896 12.896\\\">gave</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 506.969 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 509.2742 678.8875)\\\" x=\\\"0 4.448 8.448\\\">us.</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 519.9461 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 522.2513 678.8875)\\\" x=\\\"0 2.224\\\">It</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.6966 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 529.0018 678.8875)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44\\\">includes</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 558.4471 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 560.7523 678.8875)\\\" x=\\\"0 4.448 6.272\\\">all</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 669.8328)\\\" x=\\\"0 4.448 8.896 12.896\\\">past</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 224.9711 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 227.1634 669.8328)\\\" x=\\\"0 4.448 8.896 11.56 16.008 20.456 27.12 31.568 36.016 38.24 42.24\\\">agreements.</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 271.6321 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 273.8245 669.8328)\\\" x=\\\"0 2.224\\\">It</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 278.2698 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 280.4621 669.8328)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44 29.44\\\">includes,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.13 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 314.3223 669.8328)\\\" x=\\\"0 4.448\\\">as</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 322.7716 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 324.9639 669.8328)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 340.0772 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 342.2695 669.8328)\\\" x=\\\"0 4.448\\\">be</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.1679 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 353.3602 669.8328)\\\" x=\\\"0 4.448 8.896 13.344 15.168 16.992 20.992 25.44 29.888 31.712 36.16\\\">applicable,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 391.7508 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 393.9431 669.8328)\\\" x=\\\"0 4.448 8.896\\\">any</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 406.8416 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 409.0339 669.8328)\\\" x=\\\"0 4.448 8.896 13.344 15.168 17.392 19.216 23.664 28.112 32.56\\\">additional</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 443.4245 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 445.6168 669.8328)\\\" x=\\\"0 4.448 8.896 11.56 13.384 17.832 22.28 26.28\\\">periods,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.1246 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 476.3169 669.8328)\\\" x=\\\"0 4.448 8.448 10.672 15.12 19.568 23.568 25.392 29.84 34.288 38.288\\\">extensions,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 516.8326 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 519.0249 669.8328)\\\" x=\\\"0 2.664 7.112 11.56 16.008 21.784 26.232 28.056 32.056\\\">renewals,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.31 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 555.5023 669.8328)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 660.7781)\\\" x=\\\"0 4.448 6.272 10.72 15.168 19.168\\\">plans.</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.2445 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 233.5225 660.7781)\\\" x=\\\"0 2.224\\\">It</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 237.9678 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 240.2458 660.7781)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44\\\">includes</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 269.6911 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 271.9691 660.7781)\\\" x=\\\"0 4 5.824 10.272 12.096 18.76\\\">claims</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 294.7308 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 297.0088 660.7781)\\\" x=\\\"0 2.664 7.112 8.936 13.384 15.608 20.056\\\">related</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 321.5167 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 323.7946 660.7781)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 330.4665 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 332.7445 660.7781)\\\" x=\\\"0 4.448 8.896 15.56 20.008 24.456 28.904\\\">damaged</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 366.1039 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 368.3819 660.7781)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456 23.12 25.344 29.344\\\">property,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 399.9522 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 402.2302 660.7781)\\\" x=\\\"0 4.448 8.896 12.896 17.344 21.792 24.016\\\">buyout,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 428.4724 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 430.7504 660.7781)\\\" x=\\\"0 2.664 7.112 8.936 13.384 17.384 19.608 24.056 26.28 30.728 37.392 41.84 46.288 48.512\\\">r* D E M O *t,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 481.4887 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 483.7667 660.7781)\\\" x=\\\"0 1.824 6.272 10.272 14.272\\\">loss,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 500.2627 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 502.5408 660.7781)\\\" x=\\\"0 4.448 8.896 15.56 20.008 24.456 28.904\\\">damage,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 533.6736 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 535.9516 660.7781)\\\" x=\\\"0 5.776 10.224 12.888 15.552 20 24.448 26.672 30.672\\\">warranty,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 651.7234)\\\" x=\\\"0 6.664 11.112 12.936 17.384 19.608 24.056 28.504 32.952 37.4 41.4 45.848\\\">maintenance,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.9281 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 260.595 651.7234)\\\" x=\\\"0 4 8.448 10.272 12.096 16.544 20.544 22.768 24.592 29.04 33.488\\\">collection,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 296.3099 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 298.9768 651.7234)\\\" x=\\\"0 4.448 8.896 12.896 16.896 21.344 25.344 29.344 31.168 35.616 40.064\\\">possession,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 341.2697 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 343.9366 651.7234)\\\" x=\\\"0 4.448 7.112 8.936 12.936 17.384 21.384 25.384\\\">privacy,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.546 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 374.2129 651.7234)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 387.5606 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 390.2275 651.7234)\\\" x=\\\"0 4 8.448 12.448 14.672 19.12 25.784 30.232\\\">customer</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 423.1259 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 425.7928 651.7234)\\\" x=\\\"0 1.824 6.272 8.496 12.944 15.608 22.272 26.72 28.944 30.768 35.216 39.664\\\">information.</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.6834 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 470.3503 651.7234)\\\" x=\\\"0 2.224\\\">It</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.7957 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 477.4626 651.7234)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44\\\">includes</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 506.9079 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 509.5748 651.7234)\\\" x=\\\"0 4 5.824 10.272 12.096 18.76\\\">claims</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 532.3365 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 535.0034 651.7234)\\\" x=\\\"0 2.664 7.112 8.936 13.384 15.608 20.056\\\">related</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.5112 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 562.1781 651.7234)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 642.6688)\\\" x=\\\"0 4 8.448 10.672 12.896 14.72 19.168\\\">setting</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.4672 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 236.1411 642.6688)\\\" x=\\\"0 4.448 8.448 10.272 14.72\\\">aside</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 255.313 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 257.987 642.6688)\\\" x=\\\"0 2.224 6.672 8.496\\\">this</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 270.4831 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 273.157 642.6688)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496 24.944\\\">Clause.</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 300.3289 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 303.0029 642.6688)\\\" x=\\\"0 2.224\\\">It</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 307.4482 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 310.1221 642.6688)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44\\\">includes</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 339.5674 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 342.2414 642.6688)\\\" x=\\\"0 4 5.824 10.272 12.096 18.76\\\">claims</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 365.0031 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 367.6771 642.6688)\\\" x=\\\"0 4.448 8.896 13.344 17.792\\\">about</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 387.6966 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 390.3706 642.6688)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 401.4917 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 404.1656 642.6688)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496 24.944 26.472\\\">Clause&apos;s</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.6422 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 437.3161 642.6688)\\\" x=\\\"0 4 8.448 10.272 12.096 16.544 18.368 20.592\\\">validity</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 461.9099 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 464.5838 642.6688)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 477.9315 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 480.6055 642.6688)\\\" x=\\\"0 4 8 12.448 16.896 21.344\\\">scope.</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 504.1758 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 506.8497 642.6688)\\\" x=\\\"0 2.224\\\">It</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 511.295 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 513.969 642.6688)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44\\\">includes</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 543.4143 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 546.0883 642.6688)\\\" x=\\\"0 4 5.824 10.272 12.096 18.76\\\">claims</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 633.6141)\\\" x=\\\"0 4.448 8.896 13.344 17.792 20.016 22.144 27.92 32.368 36.816 39.04 43.488 47.936 50.6 52.728 54.952 59.4 61.528 65.976 68.64 73.088 74.912 77.136 79.8 84.248 86.472 90.92\\\">about whether to arbitrate.</text></g><clipPath id=\\\"clip4-13\\\"><path d=\\\"M 35 578 L 130 578 L 130 631 L 35 631 L 35 578 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-13)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 630.9344 L 129.35 630.9344 L 129.35 578.6609 L 35.45 578.6609 L 35.45 630.9344 z \\\"/><path clip-path=\\\"url(#clip4-13)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 628.9344 L 125.25 628.9344 L 125.25 619.8797 L 39.55 619.8797 L 39.55 628.9344 z \\\"/><path clip-path=\\\"url(#clip4-13)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 41.1227 628.9344 L 124.1227 628.9344 L 124.1227 618.9344 L 41.1227 618.9344 L 41.1227 628.9344 z \\\"/><g clip-path=\\\"url(#clip4-13)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 41.1227 621.5594)\\\" x=\\\"0 5.336 8 12.448 14.576 18.576 23.024 27.472 29.6 35.376 39.824 41.648 45.648 47.472 51.92 56.368 58.496 61.16 62.984 67.432 71.88 74.104 78.104\\\">Are you waiving rights?</text></g><clipPath id=\\\"clip4-14\\\"><path d=\\\"M 129 578 L 206 578 L 206 631 L 129 631 L 129 578 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-14)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 159.5461 621.5594)\\\" x=\\\"0 5.336 9.784 13.784\\\">Yes.</text></g><clipPath id=\\\"clip4-15\\\"><path d=\\\"M 205 578 L 573 578 L 573 631 L 205 631 L 205 578 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-15)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 621.5594)\\\" x=\\\"0 5.336 9.784 14.232\\\">You </text></g><g clip-path=\\\"url(#clip4-15)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 225.85 621.5594)\\\" x=\\\"0 5.776 10.224 12.048 16.048\\\">waive</text></g><path clip-path=\\\"url(#clip4-15)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 225.85 620.213 L 225.85 620.213 L 245.85 620.213 L 246.1833 620.213 L 246.1833 619.5464 L 245.85 619.5464 L 225.85 619.5464 L 225.5167 619.5464 L 225.5167 620.213 z \\\"/><g clip-path=\\\"url(#clip4-15)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.85 621.5594)\\\" x=\\\"0 2.128 6.128 10.576 15.024 17.688 19.816 22.48 24.304 28.752 33.2 35.424 39.424 41.552 43.776 48.224\\\"> your rights to:</text></g><g clip-path=\\\"url(#clip4-15)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 611.5047)\\\" x=\\\"0 4.448 6.672 8.8 14.576 19.024 23.024 27.472 29.6 31.424 35.872 38.536 40.36 44.808 48.808 50.936 54.936 59.384 61.208 65.208 69.656 71.784 77.56 79.384 83.384 87.832 92.28 94.504 98.952 102.952\\\">1. Have juries solve Disputes.</text></g><g clip-path=\\\"url(#clip4-15)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 601.45)\\\" x=\\\"0 4.448 6.672 8.8 14.576 19.024 23.024 27.472 29.6 33.6 38.048 42.496 45.16 47.384 51.384 53.608 55.736 60.184 62.408 66.856 71.304 73.968 76.096 78.32 82.768 87.216 91.664 93.792 97.792 104.456 108.904 110.728 112.552 115.216 119.216 121.04 125.488 127.312 133.976 137.976 140.104 144.104 148.552 153 155.664 157.888 161.888 164.112 166.24 170.24 174.688 176.512 180.512 184.96 187.088 192.864 194.688 198.688 203.136 207.584 209.808 214.256 218.256\\\">2. Have courts, other than small-claims courts, solve Disputes.</text></g><g clip-path=\\\"url(#clip4-15)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 591.3953)\\\" x=\\\"0 4.448 6.672 8.8 14.136 18.584 21.248 25.248 29.696 31.824 36.272 40.272 42.4 46.848 48.976 53.424 56.088 57.912 61.912 66.36 68.584 73.032 75.16 79.608 81.832 84.056 88.504 91.168 95.616 100.064 104.064 106.192 110.64 115.088 119.536 123.984 126.648 131.096 132.92 135.048 139.496 142.16 144.288 146.112 150.56 152.688 157.136 159.264 161.928 166.376 170.824 173.488 177.936 181.936 186.384 190.832 193.056 197.504 199.728 201.552 205.552 210 212.128 216.128 220.576 225.024 229.472 233.472 235.296 237.52 241.52\\\">3. Serve as a private attorney general or in a* D E M O *tive capacity.</text></g><g clip-path=\\\"url(#clip4-15)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 581.3406)\\\" x=\\\"0 4.448 6.672 8.8 14.136 18.584 20.712 22.536 26.984 29.112 33.56 35.688 39.688 41.512 45.96 49.96 53.96 56.088 60.536 64.536 66.76 68.584 73.032 77.48\\\">4. Be in a class action.</text></g><clipPath id=\\\"clip4-16\\\"><path d=\\\"M 35 530 L 130 530 L 130 579 L 35 579 L 35 530 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-16)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 578.6609 L 129.35 578.6609 L 129.35 530.3875 L 35.45 530.3875 L 35.45 578.6609 z \\\"/><path clip-path=\\\"url(#clip4-16)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 576.6609 L 125.25 576.6609 L 125.25 558.5516 L 39.55 558.5516 L 39.55 576.6609 z \\\"/><path clip-path=\\\"url(#clip4-16)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 44.0152 576.6609 L 121.0152 576.6609 L 121.0152 566.6609 L 44.0152 566.6609 L 44.0152 576.6609 z \\\"/><g clip-path=\\\"url(#clip4-16)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 44.0152 569.2859)\\\" x=\\\"0 5.336 8 12.448 14.576 18.576 23.024 27.472 29.6 35.376 39.824 41.648 45.648 47.472 51.92 56.368 58.496 62.496 64.32 68.768 72.768\\\">Are you waiving class</text></g><path clip-path=\\\"url(#clip4-16)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 58.6109 567.6063 L 106.6109 567.6063 L 106.6109 557.6063 L 58.6109 557.6063 L 58.6109 567.6063 z \\\"/><g clip-path=\\\"url(#clip4-16)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 58.6109 560.2312)\\\" x=\\\"0 4.448 8.448 10.672 12.496 16.944 21.392 23.52 26.184 28.008 32.456 36.904 39.128 43.128\\\">action rights?</text></g><clipPath id=\\\"clip4-17\\\"><path d=\\\"M 129 530 L 206 530 L 206 579 L 129 579 L 129 530 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-17)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 159.5461 569.2859)\\\" x=\\\"0 5.336 9.784 13.784\\\">Yes.</text></g><clipPath id=\\\"clip4-18\\\"><path d=\\\"M 205 530 L 573 530 L 573 579 L 205 579 L 205 530 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 569.2859)\\\" x=\\\"0 5.7774 12 17.7774 23.5547 28.4414\\\">COURTS</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 243.6273 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 245.7523 569.2859)\\\" x=\\\"0 5.3359 11.1133\\\">AND</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.643 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 264.768 569.2859)\\\" x=\\\"0 5.3359 11.1133 16.4492 18.6719 23.5586 28.8945 34.6719\\\">ARBITERS</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 304.7758 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 306.9008 569.2859)\\\" x=\\\"0\\\">W</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 306.9008 567.9396 L 306.9008 567.9396 L 314.9008 567.9396 L 315.2341 567.9396 L 315.2341 567.2729 L 314.9008 567.2729 L 306.9008 567.2729 L 306.5674 567.2729 L 306.5674 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 314.4515 569.2859)\\\" x=\\\"0\\\">O</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 314.4515 567.9396 L 314.4515 567.9396 L 320.4515 567.9396 L 320.7849 567.9396 L 320.7849 567.2729 L 320.4515 567.2729 L 314.4515 567.2729 L 314.1182 567.2729 L 314.1182 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 320.6742 569.2859)\\\" x=\\\"0\\\">N</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 320.6742 567.9396 L 320.6742 567.9396 L 326.6742 567.9396 L 327.0075 567.9396 L 327.0075 567.2729 L 326.6742 567.2729 L 320.6742 567.2729 L 320.3409 567.2729 L 320.3409 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 326.4515 569.2859)\\\" x=\\\"0\\\">&apos;</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 326.4515 567.9396 L 326.4515 567.9396 L 328.4515 567.9396 L 328.7849 567.9396 L 328.7849 567.2729 L 328.4515 567.2729 L 326.4515 567.2729 L 326.1182 567.2729 L 326.1182 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 327.9789 569.2859)\\\" x=\\\"0\\\">T</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 327.9789 567.9396 L 327.9789 567.9396 L 332.9789 567.9396 L 333.3122 567.9396 L 333.3122 567.2729 L 332.9789 567.2729 L 327.9789 567.2729 L 327.6456 567.2729 L 327.6456 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 332.8656 569.2859)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 332.8656 567.9396 L 332.8656 567.9396 L 334.8656 567.9396 L 335.1989 567.9396 L 335.1989 567.2729 L 334.8656 567.2729 L 332.8656 567.2729 L 332.5323 567.2729 L 332.5323 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 334.9906 569.2859)\\\" x=\\\"0\\\">A</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 334.9906 567.9396 L 334.9906 567.9396 L 339.9906 567.9396 L 340.3239 567.9396 L 340.3239 567.2729 L 339.9906 567.2729 L 334.9906 567.2729 L 334.6573 567.2729 L 334.6573 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 340.3265 569.2859)\\\" x=\\\"0\\\">L</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 340.3265 567.9396 L 340.3265 567.9396 L 344.3265 567.9396 L 344.6599 567.9396 L 344.6599 567.2729 L 344.3265 567.2729 L 340.3265 567.2729 L 339.9932 567.2729 L 339.9932 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 344.7758 569.2859)\\\" x=\\\"0\\\">L</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 344.7758 567.9396 L 344.7758 567.9396 L 348.7758 567.9396 L 349.1091 567.9396 L 349.1091 567.2729 L 348.7758 567.2729 L 344.7758 567.2729 L 344.4424 567.2729 L 344.4424 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 349.225 569.2859)\\\" x=\\\"0\\\">O</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 349.225 567.9396 L 349.225 567.9396 L 355.225 567.9396 L 355.5583 567.9396 L 355.5583 567.2729 L 355.225 567.2729 L 349.225 567.2729 L 348.8917 567.2729 L 348.8917 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 355.4477 569.2859)\\\" x=\\\"0\\\">W</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 355.4477 567.9396 L 355.4477 567.9396 L 363.4477 567.9396 L 363.781 567.9396 L 363.781 567.2729 L 363.4477 567.2729 L 355.4477 567.2729 L 355.1143 567.2729 L 355.1143 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 362.9984 569.2859)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 362.9984 567.9396 L 362.9984 567.9396 L 364.9984 567.9396 L 365.3318 567.9396 L 365.3318 567.2729 L 364.9984 567.2729 L 362.9984 567.2729 L 362.6651 567.2729 L 362.6651 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 365.1234 569.2859)\\\" x=\\\"0\\\">C</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 365.1234 567.9396 L 365.1234 567.9396 L 371.1234 567.9396 L 371.4568 567.9396 L 371.4568 567.2729 L 371.1234 567.2729 L 365.1234 567.2729 L 364.7901 567.2729 L 364.7901 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 370.9008 569.2859)\\\" x=\\\"0\\\">L</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 370.9008 567.9396 L 370.9008 567.9396 L 374.9008 567.9396 L 375.2341 567.9396 L 375.2341 567.2729 L 374.9008 567.2729 L 370.9008 567.2729 L 370.5674 567.2729 L 370.5674 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 375.35 569.2859)\\\" x=\\\"0\\\">A</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 375.35 567.9396 L 375.35 567.9396 L 380.35 567.9396 L 380.6833 567.9396 L 380.6833 567.2729 L 380.35 567.2729 L 375.35 567.2729 L 375.0167 567.2729 L 375.0167 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 380.6859 569.2859)\\\" x=\\\"0\\\">S</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 380.6859 567.9396 L 380.6859 567.9396 L 385.6859 567.9396 L 386.0193 567.9396 L 386.0193 567.2729 L 385.6859 567.2729 L 380.6859 567.2729 L 380.3526 567.2729 L 380.3526 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 386.0219 569.2859)\\\" x=\\\"0\\\">S</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 386.0219 567.9396 L 386.0219 567.9396 L 391.0219 567.9396 L 391.3552 567.9396 L 391.3552 567.2729 L 391.0219 567.2729 L 386.0219 567.2729 L 385.6885 567.2729 L 385.6885 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 391.3578 569.2859)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 391.3578 567.9396 L 391.3578 567.9396 L 393.3578 567.9396 L 393.6911 567.9396 L 393.6911 567.2729 L 393.3578 567.2729 L 391.3578 567.2729 L 391.0245 567.2729 L 391.0245 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 393.4828 569.2859)\\\" x=\\\"0\\\">A</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 393.4828 567.9396 L 393.4828 567.9396 L 398.4828 567.9396 L 398.8161 567.9396 L 398.8161 567.2729 L 398.4828 567.2729 L 393.4828 567.2729 L 393.1495 567.2729 L 393.1495 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 398.8187 569.2859)\\\" x=\\\"0\\\">C</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 398.8187 567.9396 L 398.8187 567.9396 L 404.8187 567.9396 L 405.1521 567.9396 L 405.1521 567.2729 L 404.8187 567.2729 L 398.8187 567.2729 L 398.4854 567.2729 L 398.4854 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 404.5961 569.2859)\\\" x=\\\"0\\\">T</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 404.5961 567.9396 L 404.5961 567.9396 L 409.5961 567.9396 L 409.9294 567.9396 L 409.9294 567.2729 L 409.5961 567.2729 L 404.5961 567.2729 L 404.2628 567.2729 L 404.2628 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 409.4828 569.2859)\\\" x=\\\"0\\\">I</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 409.4828 567.9396 L 409.4828 567.9396 L 411.4828 567.9396 L 411.8161 567.9396 L 411.8161 567.2729 L 411.4828 567.2729 L 409.4828 567.2729 L 409.1495 567.2729 L 409.1495 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 411.7055 569.2859)\\\" x=\\\"0\\\">O</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 411.7055 567.9396 L 411.7055 567.9396 L 417.7055 567.9396 L 418.0388 567.9396 L 418.0388 567.2729 L 417.7055 567.2729 L 411.7055 567.2729 L 411.3721 567.2729 L 411.3721 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 417.9281 569.2859)\\\" x=\\\"0\\\">N</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 417.9281 567.9396 L 417.9281 567.9396 L 423.9281 567.9396 L 424.2614 567.9396 L 424.2614 567.2729 L 423.9281 567.2729 L 417.9281 567.2729 L 417.5948 567.2729 L 417.5948 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 423.7055 569.2859)\\\" x=\\\"0\\\">S</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 423.7055 567.9396 L 423.7055 567.9396 L 428.7055 567.9396 L 429.0388 567.9396 L 429.0388 567.2729 L 428.7055 567.2729 L 423.7055 567.2729 L 423.3721 567.2729 L 423.3721 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 429.0414 569.2859)\\\" x=\\\"0\\\">.</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 429.0414 567.9396 L 429.0414 567.9396 L 431.0414 567.9396 L 431.3747 567.9396 L 431.3747 567.2729 L 431.0414 567.2729 L 429.0414 567.2729 L 428.7081 567.2729 L 428.7081 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 431.264 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 433.389 569.2859)\\\" x=\\\"0 5.3359 9.7852\\\">You</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.6234 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 449.7484 569.2859)\\\" x=\\\"0\\\">w</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 449.7484 567.9396 L 449.7484 567.9396 L 455.7484 567.9396 L 456.0818 567.9396 L 456.0818 567.2729 L 455.7484 567.2729 L 449.7484 567.2729 L 449.4151 567.2729 L 449.4151 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 455.5258 569.2859)\\\" x=\\\"0\\\">a</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 455.5258 567.9396 L 455.5258 567.9396 L 459.5258 567.9396 L 459.8591 567.9396 L 459.8591 567.2729 L 459.5258 567.2729 L 455.5258 567.2729 L 455.1924 567.2729 L 455.1924 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 459.975 569.2859)\\\" x=\\\"0\\\">i</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 459.975 567.9396 L 459.975 567.9396 L 461.975 567.9396 L 462.3083 567.9396 L 462.3083 567.2729 L 461.975 567.2729 L 459.975 567.2729 L 459.6417 567.2729 L 459.6417 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 461.7992 569.2859)\\\" x=\\\"0\\\">v</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 461.7992 567.9396 L 461.7992 567.9396 L 465.7992 567.9396 L 466.1325 567.9396 L 466.1325 567.2729 L 465.7992 567.2729 L 461.7992 567.2729 L 461.4659 567.2729 L 461.4659 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 465.7992 569.2859)\\\" x=\\\"0\\\">e</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 465.7992 567.9396 L 465.7992 567.9396 L 469.7992 567.9396 L 470.1325 567.9396 L 470.1325 567.2729 L 469.7992 567.2729 L 465.7992 567.2729 L 465.4659 567.2729 L 465.4659 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 470.2484 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 472.3734 569.2859)\\\" x=\\\"0 4 8.4492 12.8984\\\">your</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 487.9359 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 490.0609 569.2859)\\\" x=\\\"0 2.6641 4.4883 8.9375 13.3867 15.6094\\\">rights</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.6703 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 511.7953 569.2859)\\\" x=\\\"0 2.2227\\\">to</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 518.4672 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 520.5922 569.2859)\\\" x=\\\"0 4.4492\\\">be</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.4906 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 531.6156 569.2859)\\\" x=\\\"0 1.8242\\\">in</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 537.889 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 540.014 569.2859)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 544.4633 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 546.5883 569.2859)\\\" x=\\\"0\\\">c</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 546.5883 567.9396 L 546.5883 567.9396 L 550.5883 567.9396 L 550.9216 567.9396 L 550.9216 567.2729 L 550.5883 567.2729 L 546.5883 567.2729 L 546.2549 567.2729 L 546.2549 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 550.5883 569.2859)\\\" x=\\\"0\\\">l</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 550.5883 567.9396 L 550.5883 567.9396 L 552.5883 567.9396 L 552.9216 567.9396 L 552.9216 567.2729 L 552.5883 567.2729 L 550.5883 567.2729 L 550.2549 567.2729 L 550.2549 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 552.4125 569.2859)\\\" x=\\\"0\\\">a</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 552.4125 567.9396 L 552.4125 567.9396 L 556.4125 567.9396 L 556.7458 567.9396 L 556.7458 567.2729 L 556.4125 567.2729 L 552.4125 567.2729 L 552.0792 567.2729 L 552.0792 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 556.8617 569.2859)\\\" x=\\\"0\\\">s</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 556.8617 567.9396 L 556.8617 567.9396 L 560.8617 567.9396 L 561.1951 567.9396 L 561.1951 567.2729 L 560.8617 567.2729 L 556.8617 567.2729 L 556.5284 567.2729 L 556.5284 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 560.8617 569.2859)\\\" x=\\\"0\\\">s</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 560.8617 567.9396 L 560.8617 567.9396 L 564.8617 567.9396 L 565.1951 567.9396 L 565.1951 567.2729 L 564.8617 567.2729 L 560.8617 567.2729 L 560.5284 567.2729 L 560.5284 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 560.2312)\\\" x=\\\"0\\\">a</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 209.85 558.8849 L 209.85 558.8849 L 213.85 558.8849 L 214.1833 558.8849 L 214.1833 558.2182 L 213.85 558.2182 L 209.85 558.2182 L 209.5167 558.2182 L 209.5167 558.8849 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 214.2992 560.2312)\\\" x=\\\"0\\\">c</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 214.2992 558.8849 L 214.2992 558.8849 L 218.2992 558.8849 L 218.6325 558.8849 L 218.6325 558.2182 L 218.2992 558.2182 L 214.2992 558.2182 L 213.9659 558.2182 L 213.9659 558.8849 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 218.2992 560.2312)\\\" x=\\\"0\\\">t</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 218.2992 558.8849 L 218.2992 558.8849 L 220.2992 558.8849 L 220.6325 558.8849 L 220.6325 558.2182 L 220.2992 558.2182 L 218.2992 558.2182 L 217.9659 558.2182 L 217.9659 558.8849 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 220.5219 560.2312)\\\" x=\\\"0\\\">i</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 220.5219 558.8849 L 220.5219 558.8849 L 222.5219 558.8849 L 222.8552 558.8849 L 222.8552 558.2182 L 222.5219 558.2182 L 220.5219 558.2182 L 220.1885 558.2182 L 220.1885 558.8849 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 222.3461 560.2312)\\\" x=\\\"0\\\">o</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 222.3461 558.8849 L 222.3461 558.8849 L 226.3461 558.8849 L 226.6794 558.8849 L 226.6794 558.2182 L 226.3461 558.2182 L 222.3461 558.2182 L 222.0128 558.2182 L 222.0128 558.8849 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 226.7953 560.2312)\\\" x=\\\"0\\\">n</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 226.7953 558.8849 L 226.7953 558.8849 L 230.7953 558.8849 L 231.1286 558.8849 L 231.1286 558.2182 L 230.7953 558.2182 L 226.7953 558.2182 L 226.462 558.2182 L 226.462 558.8849 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 231.2445 560.2312)\\\" x=\\\"0\\\">,</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.4672 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 235.5922 560.2312)\\\" x=\\\"0 4.4492\\\">as</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 244.0414 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 246.1664 560.2312)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 250.6156 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 252.7406 560.2312)\\\" x=\\\"0 2.6641 7.1133 11.5625 14.2266 18.6758 22.6758 27.125 31.5742 33.7969 38.2461 40.4688 42.293 46.293\\\">representative</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 303.4828 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 305.6078 560.2312)\\\" x=\\\"0 4.4492 8.8984\\\">and</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 318.9555 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 321.0805 560.2312)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 325.5297 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 327.6547 560.2312)\\\" x=\\\"0 6.6641 11.1133 17.7773 22.2266 26.6758 29.3398\\\">member.</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.2172 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 361.3422 560.2312)\\\" x=\\\"0 6.2227 10.6719 12.4961\\\">Only</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 377.8383 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 379.9633 560.2312)\\\" x=\\\"0 1.8242 6.2734 10.7227 12.5469 16.5469 18.3711 22.8203 27.2695 31.7188\\\">individual</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 413.5062 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 415.6312 560.2312)\\\" x=\\\"0 4.4492 7.1133 11.5625 13.3867 15.6094 18.2734 22.7227 24.9453 26.7695 31.2188 35.668\\\">arbitration,</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 453.5219 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 455.6469 560.2312)\\\" x=\\\"0 4.4492\\\">or</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 462.7601 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 464.8851 560.2312)\\\" x=\\\"0 4 10.6641 15.1133 16.9375 18.7617 21.4258 25.4258 27.25 31.6992 33.5234 40.1875\\\">small-claims</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.0727 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 511.1977 560.2312)\\\" x=\\\"0 4 8.4492 12.8984 15.5625 17.7851 21.7851\\\">courts,</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 535.2055 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 537.3305 560.2312)\\\" x=\\\"0 5.7773 7.6016 9.4258\\\">will</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 551.1766)\\\" x=\\\"0 4 8.4492 10.2734 14.2734\\\">solve</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 228.5726 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 230.6976 551.1766)\\\" x=\\\"0 5.7773 7.6016 11.6016 16.0508 20.5 22.7227 27.1719 31.1719\\\">Disputes.</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 264.0922 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 266.2172 551.1766)\\\" x=\\\"0 5.3359 9.7852\\\">You</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.4515 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 282.5765 551.1766)\\\" x=\\\"0 5.7774 10.2266 12.0508 16.0508\\\">waive</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 303.0765 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 304.9015 551.1766)\\\" x=\\\"0 4 8.4492 12.8984\\\">your</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 320.464 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 322.289 551.1766)\\\" x=\\\"0 2.6641 4.4883 8.9375 13.3867\\\">right</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 337.8984 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 339.7234 551.1766)\\\" x=\\\"0 2.2227\\\">to</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 346.3953 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 348.2203 551.1766)\\\" x=\\\"0 4.4492 8.8984 12.8984\\\">have</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 365.568 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 367.393 551.1766)\\\" x=\\\"0 2.6641 7.1133 11.5625 14.2266 18.6758 22.6758 27.125 31.5742 33.7969 38.2461 40.4687 42.293 46.293\\\">representative</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 418.1351 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 419.9601 551.1766)\\\" x=\\\"0 4 5.8242 10.2734 12.0977 18.7617 22.7617\\\">claims.</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 444.9445 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 446.7695 551.1766)\\\" x=\\\"0 5.7774 10.2266 12.0508 16.5 20.5\\\">Unless</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 471.2695 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 473.0945 551.1766)\\\" x=\\\"0 2.6641 7.1133 11.1133 15.5625 18.2266 22.2266 26.6758\\\">reversed</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 504.2195 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 506.0445 551.1766)\\\" x=\\\"0 4.4492\\\">on</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 514.943 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 516.768 551.1766)\\\" x=\\\"0 4.4492 8.8984 13.3477 17.7969 22.2461 24.0703\\\">appeal,</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 543.0609 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 544.8859 551.1766)\\\" x=\\\"0 1.8242\\\">if</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 548.9328 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 550.7578 551.1766)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 542.1219)\\\" x=\\\"0 4 8.4492 12.8984 15.5625\\\">court</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 227.6351 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 229.4601 542.1219)\\\" x=\\\"0 1.8242 6.2734 10.2734 14.7227 16.5469 18.3711 22.8203 27.2695 29.4922 33.9414\\\">invalidates</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 267.4015 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 269.2265 542.1219)\\\" x=\\\"0 2.2227 6.6719 8.4961\\\">this</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.7226 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 283.5477 542.1219)\\\" x=\\\"0 5.7773 10.2266 12.0508 16.0508 20.5 23.1641\\\">waiver,</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.9344 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 310.7594 542.1219)\\\" x=\\\"0 2.2226 6.6719 11.1211\\\">then</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 326.3297 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 328.4547 542.1219)\\\" x=\\\"0 2.2227 6.6719\\\">the</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 339.5758 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 341.4008 542.1219)\\\" x=\\\"0 4.4492 8.8984 11.5625 16.0117 20.4609 27.125 31.5742 36.0234\\\">agreement</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 379.6469 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 381.4719 542.1219)\\\" x=\\\"0 2.2227\\\">to</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.1437 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 389.9687 542.1219)\\\" x=\\\"0 4.4492 7.1133 11.5625 13.3867 15.6094 18.2734 22.7227 24.9453\\\">arbitrate</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.3633 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 421.1883 542.1219)\\\" x=\\\"0 5.7774 7.6016 9.4258\\\">will</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 432.4383 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 434.2633 542.1219)\\\" x=\\\"0 4.4492\\\">be</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 443.1617 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 444.9867 542.1219)\\\" x=\\\"0 4 8.4492 10.2734 14.7227\\\">void,</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 461.932 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 463.757 542.1219)\\\" x=\\\"0 4.4492 8.8984\\\">and</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 477.1047 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 478.9297 542.1219)\\\" x=\\\"0 5.7773 7.6016 11.6016 16.0508 20.5 22.7227 27.1719\\\">Disputes</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 510.1016 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 511.9266 542.1219)\\\" x=\\\"0 5.7773 7.6016 9.4258\\\">will</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 523.1766 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 525.0016 542.1219)\\\" x=\\\"0 4.4492\\\">be</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 533.9 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 535.725 542.1219)\\\" x=\\\"0 2.6641 7.1133 11.1133 15.5625 17.3867 21.3867 25.8359\\\">resolved</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 533.0672)\\\" x=\\\"0 4.4492\\\">by</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 218.2992 533.0672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 220.1242 533.0672)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 224.5734 533.0672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 226.3984 533.0672)\\\" x=\\\"0 1.8242 6.2734 10.7227 15.1719 19.6211\\\">judge,</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 248.2422 533.0672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 250.0672 533.0672)\\\" x=\\\"0 4.4492 8.8984\\\">but</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 261.1883 533.0672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 263.0133 533.0672)\\\" x=\\\"0 4.4492 8.8984\\\">not</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 274.1344 533.0672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 275.9594 533.0672)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.4086 533.0672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 282.2336 533.0672)\\\" x=\\\"0 1.8242 6.2734 8.9375 12.9375\\\">jury.</text></g><clipPath id=\\\"clip4-19\\\"><path d=\\\"M 35 491 L 130 491 L 130 531 L 35 531 L 35 491 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-19)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 530.3875 L 129.35 530.3875 L 129.35 491.1688 L 35.45 491.1688 L 35.45 530.3875 z \\\"/><path clip-path=\\\"url(#clip4-19)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 528.3875 L 125.25 528.3875 L 125.25 519.3328 L 39.55 519.3328 L 39.55 528.3875 z \\\"/><path clip-path=\\\"url(#clip4-19)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 49.9664 528.3875 L 114.9664 528.3875 L 114.9664 518.3875 L 49.9664 518.3875 L 49.9664 528.3875 z \\\"/><g clip-path=\\\"url(#clip4-19)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 49.9664 521.0125)\\\" x=\\\"0 7.552 12 16.448 18.672 20.8 22.624 27.072 32.848 34.976 39.424 43.872 48.32 50.144 51.968 56.416 60.416\\\">What law applies?</text></g><clipPath id=\\\"clip4-20\\\"><path d=\\\"M 129 491 L 206 491 L 206 531 L 129 531 L 129 491 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-20)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.009 521.0125)\\\" x=\\\"0 4.888 9.336 13.784 15.912 20.8 25.248 29.696 34.144 36.808 41.256\\\">The Federal</text></g><g clip-path=\\\"url(#clip4-20)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 142.4308 511.9578)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 19.16 23.608 25.832 27.656 32.104 36.552 38.68 44.016 48.016\\\">Arbitration Act</text></g><g clip-path=\\\"url(#clip4-20)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 153.1555 502.9031)\\\" x=\\\"0 2.664 5.504 10.392 15.728 21.064 23.904 26.568\\\">(&quot;FAA&quot;).</text></g><clipPath id=\\\"clip4-21\\\"><path d=\\\"M 205 491 L 573 491 L 573 531 L 205 531 L 205 491 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 521.0125)\\\" x=\\\"0 4.888 9.336 11.16\\\">This</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.0101 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 228.9725 521.0125)\\\" x=\\\"0 2.224 4.888 9.336 13.784 17.784 22.232 26.232 28.456 30.28 34.728\\\">transaction</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 268.1522 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 272.1145 521.0125)\\\" x=\\\"0 1.824 6.272 10.272 14.72 16.544 20.544 24.992\\\">involves</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 301.1106 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 305.0729 521.0125)\\\" x=\\\"0 1.824 6.272 8.496 12.944 15.608 19.608 21.832 26.28 28.504\\\">interstate</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.026 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 341.9884 521.0125)\\\" x=\\\"0 4 8.448 15.112 21.776 26.224 28.888 32.888 37.336\\\">commerce.</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 381.5509 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 385.5132 521.0125)\\\" x=\\\"0 4.888 9.336 13.784 17.784\\\">Thus,</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 405.521 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 409.4834 521.0125)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 420.6045 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 424.5668 521.0125)\\\" x=\\\"0 4.888 10.224\\\">FAA</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 440.1254 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 444.0877 521.0125)\\\" x=\\\"0 4.448 8.896 12.896 17.344 20.008 24.456 28.456\\\">governs.</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.7713 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 478.7336 521.0125)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 483.179 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 487.1413 521.0125)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 491.5905 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 495.5528 521.0125)\\\" x=\\\"0 4 8.448 12.896 15.56\\\">court</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 513.338 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 517.3003 521.0125)\\\" x=\\\"0 2.224 4.048 8.496 12.944\\\">finds</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 534.2456 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 538.208 521.0125)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.3291 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 553.2914 521.0125)\\\" x=\\\"0 4.888 10.224\\\">FAA</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 511.9578)\\\" x=\\\"0 4.448 8.896 13.344 17.344 21.792 23.32\\\">doesn&apos;t</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 235.3969 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 237.5853 511.9578)\\\" x=\\\"0 4.448 8.896 13.344 15.168 19.168\\\">apply,</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 258.9798 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 261.1682 511.9578)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 274.5159 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 276.7043 511.9578)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 287.8254 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 290.0138 511.9578)\\\" x=\\\"0 2.224 4.048 8.496 12.944 14.768 19.216\\\">finding</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 313.6818 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 315.8702 511.9578)\\\" x=\\\"0 4 8.448 12.896 14.424\\\">can&apos;t</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 332.5186 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 334.7071 511.9578)\\\" x=\\\"0 4.448\\\">be</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 343.6055 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 345.7939 511.9578)\\\" x=\\\"0 4.448 8.896 13.344 17.792 22.24 24.064 28.512 32.96\\\">appealed,</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.9853 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 383.1737 511.9578)\\\" x=\\\"0 2.224 6.672 11.12\\\">then</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 398.7441 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 400.9325 511.9578)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 412.0536 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 414.242 511.9578)\\\" x=\\\"0 4 6.224 10.672 12.896\\\">state</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 431.5857 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 433.7742 511.9578)\\\" x=\\\"0 1.824 6.272\\\">law</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 445.825 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 448.0134 511.9578)\\\" x=\\\"0 5.776 10.224 14.672 17.336\\\">where</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 469.8024 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 471.9908 511.9578)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.8893 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 487.0777 511.9578)\\\" x=\\\"0 5.776 10.224 12.888\\\">were</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 504.4175 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 506.606 511.9578)\\\" x=\\\"0 5.776 10.224 14.672\\\">when</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 525.731 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 527.9194 511.9578)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 540.8178 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 543.0062 511.9578)\\\" x=\\\"0 4 5.824 10.272 14.72 19.168 23.616\\\">signed,</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 502.9031)\\\" x=\\\"0 4.448 8.896 12.896 17.344 20.008 24.456 28.456\\\">governs.</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 240.5336 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 243.9142 502.9031)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.6993 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 261.0799 502.9031)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 284.6893 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 288.0699 502.9031)\\\" x=\\\"0 6.664 11.112 15.112\\\">must</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 305.4058 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 308.7864 502.9031)\\\" x=\\\"0 4.448 8.896 13.344 15.168\\\">apply</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 327.9582 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 331.3388 502.9031)\\\" x=\\\"0 4 8.448 12.896 16.896 19.12 23.568 28.016 30.24 32.064 36.064\\\">substantive</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.8545 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 375.235 502.9031)\\\" x=\\\"0 1.824 6.272\\\">law</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 387.2858 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 390.6664 502.9031)\\\" x=\\\"0 4 8.448 12.896 16.896 18.72 22.72 24.944 29.392 33.84\\\">consistent</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 426.7328 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 430.1134 502.9031)\\\" x=\\\"0 5.776 7.6 9.824\\\">with</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 444.3868 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 447.7674 502.9031)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 458.8885 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 462.2691 502.9031)\\\" x=\\\"0 4.888 10.224 15.56\\\">FAA.</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 480.0503 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 483.4309 502.9031)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 497.2161 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 500.5966 502.9031)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 524.206 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 527.5866 502.9031)\\\" x=\\\"0 6.664 11.112 15.112\\\">must</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 544.9225 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 548.3031 502.9031)\\\" x=\\\"0 2.224 6.672 8.496 10.32 14.768\\\">follow</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 493.8484)\\\" x=\\\"0 4 6.224 10.672 12.896 17.344 19.568 24.016 28.016 30.144 34.592 36.816 38.944 40.768 42.592 49.256 51.08 53.304 57.752 59.976 61.8 66.248 70.696 72.824 77.272 81.72 86.168 88.296 92.744 95.408 97.232 101.232 103.056 104.88 109.328 113.776 118.224 120.352 124.352 126.176 130.624 132.448 139.112 143.112\\\">statutes of limitation and privilege claims.</text></g><clipPath id=\\\"clip4-22\\\"><path d=\\\"M 35 433 L 130 433 L 130 492 L 35 492 L 35 433 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-22)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 491.1688 L 129.35 491.1688 L 129.35 433.8406 L 35.45 433.8406 L 35.45 491.1688 z \\\"/><path clip-path=\\\"url(#clip4-22)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 489.1688 L 125.25 489.1688 L 125.25 471.0594 L 39.55 471.0594 L 39.55 489.1688 z \\\"/><path clip-path=\\\"url(#clip4-22)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 45.443 489.1688 L 119.443 489.1688 L 119.443 479.1688 L 45.443 479.1688 L 45.443 489.1688 z \\\"/><g clip-path=\\\"url(#clip4-22)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 45.443 481.7937)\\\" x=\\\"0 5.776 10.224 14.672 16.8 19.024 23.472 27.92 30.048 34.496 38.944 41.608 43.832 45.656 50.104 54.104 56.232 58.456 61.12 65.12 67.248 69.472\\\">Can the * D E M O * to</text></g><path clip-path=\\\"url(#clip4-22)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 46.6363 480.1141 L 118.6363 480.1141 L 118.6363 470.1141 L 46.6363 470.1141 L 46.6363 480.1141 z \\\"/><g clip-path=\\\"url(#clip4-22)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 46.6363 472.7391)\\\" x=\\\"0 4 8.448 10.272 14.272 18.72 20.848 26.624 28.448 32.448 36.896 41.344 43.568 48.016 52.016 54.144 56.368 58.192 60.856 64.856 67.08\\\">solve Disputes first?</text></g><clipPath id=\\\"clip4-23\\\"><path d=\\\"M 129 433 L 206 433 L 206 492 L 129 492 L 129 433 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-23)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 159.5461 481.7937)\\\" x=\\\"0 5.336 9.784 13.784\\\">Yes.</text></g><clipPath id=\\\"clip4-24\\\"><path d=\\\"M 205 433 L 573 433 L 573 492 L 205 492 L 205 433 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 481.7937)\\\" x=\\\"0 7.552\\\">We</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 221.85 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 224.092 481.7937)\\\" x=\\\"0 4 8.448\\\">can</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 236.9904 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 239.2324 481.7937)\\\" x=\\\"0 2.224 4.888\\\">try</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 248.1191 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 250.3611 481.7937)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.033 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 259.275 481.7937)\\\" x=\\\"0 4 8.448 10.272 14.272\\\">solve</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 277.9976 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 280.2396 481.7937)\\\" x=\\\"0 5.776 7.6 11.6 16.048 20.496 22.72 27.168\\\">Disputes</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 311.4115 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 313.6535 481.7937)\\\" x=\\\"0 1.824\\\">if</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 317.7004 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 319.9424 481.7937)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 332.8408 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 335.0828 481.7937)\\\" x=\\\"0 4 8.448 10.272\\\">call</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 347.1805 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 349.4224 481.7937)\\\" x=\\\"0 4.448\\\">us</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 357.8717 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 360.1137 481.7937)\\\" x=\\\"0 4.448\\\">at</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 366.7855 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 369.0275 481.7937)\\\" x=\\\"0 2.664 7.112 11.56 16.008\\\">(100)</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 387.7033 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 389.9453 481.7937)\\\" x=\\\"0 4.448 8.896 13.344 16.008 20.456 24.904 29.352 33.8\\\">000-0006.</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 425.9766 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 428.2185 481.7937)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 432.6639 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 434.9058 481.7937)\\\" x=\\\"0 2.224 6.672 8.496\\\">this</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.4019 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 449.6439 481.7937)\\\" x=\\\"0 4.448 8.896 13.344 17.344 21.792 23.32\\\">doesn&apos;t</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 475.1908 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 477.4328 481.7937)\\\" x=\\\"0 4 8.448 10.272 14.272\\\">solve</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 496.1555 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 498.3974 481.7937)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.5185 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 511.7605 481.7937)\\\" x=\\\"0 5.776 7.6 11.6 16.048 20.496 22.72 27.168\\\">Dispute,</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 541.1551 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 543.3971 481.7937)\\\" x=\\\"0 6.664 11.112 12.936\\\">mail</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 558.1588 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 560.4008 481.7937)\\\" x=\\\"0 4.448\\\">us</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 472.7391)\\\" x=\\\"0 5.776 8.44 10.264 12.488 14.712 19.16\\\">written</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.4594 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 235.6405 472.7391)\\\" x=\\\"0 4.448 8.896 11.12 12.944 16.944 21.392\\\">notice,</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.2577 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 261.4388 472.7391)\\\" x=\\\"0 5.776 7.6 9.824 14.272 16.096\\\">within</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.9857 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 284.1668 472.7391)\\\" x=\\\"0 4.448 8.896\\\">100</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 297.5145 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 299.6956 472.7391)\\\" x=\\\"0 4.448 8.896 12.896\\\">days</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 316.594 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 318.7752 472.7391)\\\" x=\\\"0 4.448\\\">of</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 325.447 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 327.6282 472.7391)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.7493 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 340.9304 472.7391)\\\" x=\\\"0 5.776 7.6 11.6 16.048 20.496 22.72\\\">Dispute</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 368.1023 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 370.2834 472.7391)\\\" x=\\\"0 4.448 8.896 11.12 15.568\\\">date.</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.0763 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 390.2575 472.7391)\\\" x=\\\"0 2.224\\\">In</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 396.9293 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 399.1105 472.7391)\\\" x=\\\"0 4 8.448 12.896\\\">your</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 414.673 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 416.8541 472.7391)\\\" x=\\\"0 4.448 8.896 11.12 12.944 16.944 21.392\\\">notice,</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 440.4713 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 442.6524 472.7391)\\\" x=\\\"0 2.224 6.672 8.496\\\">tell</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 452.9727 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 455.1539 472.7391)\\\" x=\\\"0 4.448\\\">us</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 463.6031 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 465.7842 472.7391)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 476.9053 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 479.0864 472.7391)\\\" x=\\\"0 4.448 8.896 11.12 15.568 17.392 19.216\\\">details</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 502.3052 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 504.4863 472.7391)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 517.834 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 520.0151 472.7391)\\\" x=\\\"0 4.448 8.896\\\">how</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 534.6909 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 536.872 472.7391)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.7704 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 551.9515 472.7391)\\\" x=\\\"0 5.776 10.224 14.672\\\">want</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 463.6844)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 216.5219 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 219.4635 463.6844)\\\" x=\\\"0 4 8.448 10.272 14.272\\\">solve</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.1861 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 241.1277 463.6844)\\\" x=\\\"0 1.824 4.048\\\">it.</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.3973 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 250.3389 463.6844)\\\" x=\\\"0 7.552\\\">We</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.3389 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 265.2805 463.6844)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.5305 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 279.4721 463.6844)\\\" x=\\\"0 2.224 4.888\\\">try</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 288.3588 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 291.3004 463.6844)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 297.9723 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 300.9139 463.6844)\\\" x=\\\"0 4 8.448 10.272 14.272\\\">solve</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.6366 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 322.5782 463.6844)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 333.6993 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 336.6409 463.6844)\\\" x=\\\"0 5.776 7.6 11.6 16.048 20.496 22.72 27.168\\\">Dispute.</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 366.0354 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 368.977 463.6844)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 373.4224 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 376.364 463.6844)\\\" x=\\\"0 5.776\\\">we</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 386.5905 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 389.5321 463.6844)\\\" x=\\\"0 6.664 11.112 15.112\\\">make</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 409.0947 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 412.0363 463.6844)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 416.4855 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 419.4271 463.6844)\\\" x=\\\"0 5.776 8.44 10.264 12.488 14.712 19.16\\\">written</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 443.0365 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 445.9781 463.6844)\\\" x=\\\"0 4.448 6.672 8.896 13.344\\\">offer</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 461.9859 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 464.9275 463.6844)\\\" x=\\\"0 2.664 5.504 10.84 15.288 17.512 19.736 21.56 26.008 32.672 37.12 41.568\\\">(&quot;Settlement</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 508.7205 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 511.6621 463.6844)\\\" x=\\\"0 6.224 8.448 10.672 15.12 17.784 20.624 23.288\\\">Offer&quot;),</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 537.1699 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 540.1115 463.6844)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.0099 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 555.9515 463.6844)\\\" x=\\\"0 4 8.448\\\">can</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 454.6297)\\\" x=\\\"0 2.664 7.112 8.936 13.384 17.384\\\">reject</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 229.4594 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 233.7138 454.6297)\\\" x=\\\"0 1.824\\\">it</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 237.7606 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 242.015 454.6297)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 255.3627 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 259.6171 454.6297)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 29.392\\\">arbitrate.</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.2343 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 295.4887 454.6297)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.934 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 304.1884 454.6297)\\\" x=\\\"0 5.776\\\">we</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 314.4149 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 318.6693 454.6297)\\\" x=\\\"0 4.448 8.896 13.344 14.872\\\">don&apos;t</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.767 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 340.0214 454.6297)\\\" x=\\\"0 4 8.448 10.272 14.272\\\">solve</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 358.744 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 362.9984 454.6297)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 374.1195 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 378.3739 454.6297)\\\" x=\\\"0 5.776 7.6 11.6 16.048 20.496 22.72 27.168\\\">Dispute,</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 407.7684 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 412.0228 454.6297)\\\" x=\\\"0 4.448 6.272 8.496 12.944 17.392\\\">either</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 432.0814 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 436.3358 454.6297)\\\" x=\\\"0 4.448 8.896 11.56 13.784\\\">party</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.121 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 458.3754 454.6297)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 473.4887 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 477.7431 454.6297)\\\" x=\\\"0 4 6.224 10.672 13.336\\\">start</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 493.3016 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 497.556 454.6297)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 26.768 31.216 35.664\\\">arbitration.</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 535.4467 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 539.7011 454.6297)\\\" x=\\\"0 4.888\\\">To</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.037 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 553.2914 454.6297)\\\" x=\\\"0 4 6.224 10.672 13.336\\\">start</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 445.575)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 26.768 31.216 35.664\\\">arbitration,</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.7406 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 250.0233 445.575)\\\" x=\\\"0 4 8.448 12.896 15.12 19.568 23.568\\\">contact</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.8162 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 278.0989 445.575)\\\" x=\\\"0 4.448\\\">an</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 286.9973 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 289.28 445.575)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.8893 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 315.172 445.575)\\\" x=\\\"0 4.448\\\">or</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 322.2853 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 324.5679 445.575)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 26.768 31.216\\\">arbitration</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 360.2359 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 362.5185 445.575)\\\" x=\\\"0 4.448 7.112 11.56 16.008\\\">group</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 382.9795 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 385.2621 445.575)\\\" x=\\\"0 1.824 3.648 7.648 9.872 14.32 18.768\\\">listed.</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 406.2543 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 408.5369 445.575)\\\" x=\\\"0 5.776\\\">No</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 418.7635 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 421.0461 445.575)\\\" x=\\\"0 4.448 8.896 11.56 13.784\\\">party</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 438.8313 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 441.1139 445.575)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 452.3639 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 454.6466 445.575)\\\" x=\\\"0 4.448 6.272 10.272 14.272 16.096 20.544 24.544\\\">disclose</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 483.6427 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 485.9253 445.575)\\\" x=\\\"0 4 8.448 10.672 12.896 14.72 19.168 25.832 30.28 34.728\\\">settlement</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 522.8785 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 525.1611 445.575)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456 24.456 28.904 30.728\\\">proposals</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.8955 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 562.1781 445.575)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 436.5203)\\\" x=\\\"0 2.224 6.672 11.12 13.248 18.584 21.248 25.696 27.52 29.744 34.192 36.856 38.984 43.432 47.88 50.544 52.368 56.816 61.264 63.392 67.84 70.504 74.952 76.776 79 81.664 86.112 88.336 90.16 94.608 99.056\\\">the Arbiter during arbitration.</text></g><clipPath id=\\\"clip4-25\\\"><path d=\\\"M 35 412 L 130 412 L 130 434 L 35 434 L 35 412 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-25)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 433.8406 L 129.35 433.8406 L 129.35 412.7313 L 35.45 412.7313 L 35.45 433.8406 z \\\"/><path clip-path=\\\"url(#clip4-25)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 431.8406 L 125.25 431.8406 L 125.25 413.7313 L 39.55 413.7313 L 39.55 431.8406 z \\\"/><path clip-path=\\\"url(#clip4-25)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 40.0543 431.8406 L 127.0543 431.8406 L 127.0543 421.8406 L 40.0543 421.8406 L 40.0543 431.8406 z \\\"/><g clip-path=\\\"url(#clip4-25)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.0543 424.4656)\\\" x=\\\"0 5.776 10.224 16 18.128 22.128 26.576 31.024 35.472 37.296 41.744 43.872 47.872 52.32 56.768 58.896 62.896 67.344 71.792 74.016 78.464 82.464\\\">How should you contact</text></g><path clip-path=\\\"url(#clip4-25)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 75.9508 422.7859 L 88.9508 422.7859 L 88.9508 412.7859 L 75.9508 412.7859 L 75.9508 422.7859 z \\\"/><g clip-path=\\\"url(#clip4-25)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 75.9508 415.4109)\\\" x=\\\"0 4.448 8.448\\\">us?</text></g><clipPath id=\\\"clip4-26\\\"><path d=\\\"M 129 412 L 206 412 L 206 434 L 129 434 L 129 412 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-26)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 153.3273 424.4656)\\\" x=\\\"0 5.336 9.336 11.464 18.128 22.576 24.4 26.224\\\">By mail.</text></g><clipPath id=\\\"clip4-27\\\"><path d=\\\"M 205 412 L 573 412 L 573 434 L 205 434 L 205 412 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 424.4656)\\\" x=\\\"0 5.336 9.784 14.232\\\">Send</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 228.5336 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 231.2172 424.4656)\\\" x=\\\"0 6.664 11.112 12.936\\\">mail</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.9789 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 248.6625 424.4656)\\\" x=\\\"0 2.224 6.672\\\">to:</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.557 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 260.2406 424.4656)\\\" x=\\\"0 5.336 9.784 14.232\\\">Snap</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 278.9242 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 281.6078 424.4656)\\\" x=\\\"0 5.776 10.664\\\">RTO</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 298.4945 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 301.1781 424.4656)\\\" x=\\\"0 4.448 8.896\\\">LLC</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 315.8539 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 318.5375 424.4656)\\\" x=\\\"0 5.336 7.56 9.784 14.232 18.68 20.904 22.728 27.176 31.624\\\">Attention:</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 352.3851 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 355.0687 424.4656)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 19.16 23.608 25.832 27.656 32.104 36.552\\\">Arbitration.</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.8461 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 396.5297 424.4656)\\\" x=\\\"0 5.336 7.56 13.784\\\">P.O.</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 412.5336 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 415.2172 424.4656)\\\" x=\\\"0 5.336 9.784\\\">Box</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 429.0023 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 431.6859 424.4656)\\\" x=\\\"0 4.448 8.896 13.344 17.792 22.24\\\">26561,</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.1547 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 458.8383 424.4656)\\\" x=\\\"0 5.336 9.784 11.608\\\">Salt</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 472.6703 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 475.3539 424.4656)\\\" x=\\\"0 4.448 8.896 12.896\\\">Lake</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 492.7015 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 495.3851 424.4656)\\\" x=\\\"0 5.776 7.6 9.824 13.824\\\">City,</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 511.432 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 514.1156 424.4656)\\\" x=\\\"0 5.776\\\">UT</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 524.7797 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 527.4633 424.4656)\\\" x=\\\"0 4.448 8.896 13.344 17.792 22.24\\\">84126.</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.932 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 554.6156 424.4656)\\\" x=\\\"0 5.336 9.784\\\">You</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 415.4109)\\\" x=\\\"0 4 8.448 12.896 15.024 19.024 23.472 25.296 27.12 29.248 33.696 37.696 39.824 44.272 46.936 49.064 53.512 57.512 61.96 64.088 68.088 72.536 75.2 77.424 79.248 81.472 83.296 87.744 92.192 94.32 100.984 105.432 107.256 109.08 111.208 113.432 117.88 120.008 124.008 128.456 132.904 135.128 136.952 139.616 146.28 148.408 151.072 155.52 159.52 163.968 165.792 170.24 172.464\\\">can call us or use certified mail to confirm receipt.</text></g><clipPath id=\\\"clip4-28\\\"><path d=\\\"M 35 373 L 130 373 L 130 413 L 35 413 L 35 373 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-28)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 412.7313 L 129.35 412.7313 L 129.35 373.5125 L 35.45 373.5125 L 35.45 412.7313 z \\\"/><path clip-path=\\\"url(#clip4-28)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 410.7313 L 125.25 410.7313 L 125.25 392.6219 L 39.55 392.6219 L 39.55 410.7313 z \\\"/><path clip-path=\\\"url(#clip4-28)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 41.9508 410.7313 L 122.9508 410.7313 L 122.9508 400.7313 L 41.9508 400.7313 L 41.9508 410.7313 z \\\"/><g clip-path=\\\"url(#clip4-28)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 41.9508 403.3562)\\\" x=\\\"0 5.776 10.224 14.672 16.8 20.8 27.464 31.912 33.736 35.56 38.224 42.224 44.048 48.496 50.32 56.984 60.984 63.112 67.112 71.56 76.008 78.672\\\">Can small-claims court</text></g><path clip-path=\\\"url(#clip4-28)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 43.3219 401.6766 L 122.3219 401.6766 L 122.3219 391.6766 L 43.3219 391.6766 L 43.3219 401.6766 z \\\"/><g clip-path=\\\"url(#clip4-28)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 43.3219 394.3016)\\\" x=\\\"0 4 8.448 10.272 14.272 18.72 20.848 24.848 29.296 35.96 40.408 42.536 48.312 50.136 54.136 58.584 63.032 65.256 69.704 73.704\\\">solve s* D E M O *s?</text></g><clipPath id=\\\"clip4-29\\\"><path d=\\\"M 129 373 L 206 373 L 206 413 L 129 413 L 129 373 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-29)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 159.5461 403.3562)\\\" x=\\\"0 5.336 9.784 13.784\\\">Yes.</text></g><clipPath id=\\\"clip4-30\\\"><path d=\\\"M 205 373 L 573 373 L 573 413 L 205 413 L 205 373 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 403.3562)\\\" x=\\\"0 5.3359 9.7852 13.7852\\\">Each</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 228.0844 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 229.9094 403.3562)\\\" x=\\\"0 4.4492 8.8984 11.5625 13.7851\\\">party</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.6945 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 249.5195 403.3562)\\\" x=\\\"0 4.4492 8.8984\\\">has</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.418 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 264.243 403.3562)\\\" x=\\\"0 2.2227 6.6719\\\">the</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.3641 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 277.1891 403.3562)\\\" x=\\\"0 2.6641 4.4883 8.9375 13.3867\\\">right</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 292.7984 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 294.6234 403.3562)\\\" x=\\\"0 2.2227\\\">to</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 301.2953 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 303.1203 403.3562)\\\" x=\\\"0 4.4492 7.1133 11.5625 13.3867 15.6094 18.2734 22.7227 24.9453 29.3945\\\">arbitrate,</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 334.7375 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 336.5625 403.3562)\\\" x=\\\"0 4.4492\\\">or</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 343.6758 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 345.5008 403.3562)\\\" x=\\\"0 2.2227\\\">to</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 352.1727 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 353.9976 403.3562)\\\" x=\\\"0 4.4492\\\">go</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 362.8961 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 364.7211 403.3562)\\\" x=\\\"0 2.2227\\\">to</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.393 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 373.218 403.3562)\\\" x=\\\"0 4 10.6641 15.1133 16.9375 18.7617 21.4258 25.4258 27.25 31.6992 33.5234 40.1875\\\">small-claims</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 417.4055 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 419.2305 403.3562)\\\" x=\\\"0 4 8.4492 12.8984 15.5625\\\">court</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 437.0156 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 438.8406 403.3562)\\\" x=\\\"0 1.8242\\\">if</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 442.8875 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 444.7125 403.3562)\\\" x=\\\"0 2.2227 6.6719\\\">the</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 455.8336 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 457.6586 403.3562)\\\" x=\\\"0 4 10.6641 15.1133 16.9375 18.7617 21.4258 25.4258 27.25 31.6992 33.5234 40.1875\\\">small-claims</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.8461 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 503.6711 403.3562)\\\" x=\\\"0 4 8.4492 12.8984 15.5625\\\">court</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.4562 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 523.2812 403.3562)\\\" x=\\\"0 4.4492 8.8984\\\">has</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 536.1797 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 538.0047 403.3562)\\\" x=\\\"0 2.2227 6.6719\\\">the</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 394.3016)\\\" x=\\\"0 4.4492 8.8984 14.6758 19.125\\\">power</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.639 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 233.464 394.3016)\\\" x=\\\"0 2.2227\\\">to</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 240.1359 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 241.9609 394.3016)\\\" x=\\\"0 4.4492 8.8984 13.3477\\\">hear</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.9726 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 260.0976 394.3016)\\\" x=\\\"0 2.2226 6.6719\\\">the</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 271.2187 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 273.3437 394.3016)\\\" x=\\\"0 5.7773 7.6016 11.6016 16.0508 20.5 22.7227 27.1719\\\">Dispute.</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.7383 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 304.8633 394.3016)\\\" x=\\\"0 5.3359 8 12.4492 14.2734 16.4961 19.1602 23.6094 25.832 27.6562 32.1055\\\">Arbitration</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 341.418 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 343.543 394.3016)\\\" x=\\\"0 5.7773 7.6016 9.4258\\\">will</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 354.793 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 356.918 394.3016)\\\" x=\\\"0 4 8.4492 10.2734 14.2734\\\">solve</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.6406 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 377.7656 394.3016)\\\" x=\\\"0 4.4492 6.2734\\\">all</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 385.8633 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 387.9883 394.3016)\\\" x=\\\"0 5.7774 7.6016 11.6016 16.0508 20.5 22.7227 27.1719\\\">Disputes</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.1601 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 421.2851 394.3016)\\\" x=\\\"0 2.2227 6.6719 11.1211\\\">that</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.6289 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 436.7539 394.3016)\\\" x=\\\"0 2.2226 6.6719\\\">the</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.875 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 450 394.3016)\\\" x=\\\"0 4 10.6641 15.1133 16.9375 18.7617 21.4258 25.4258 27.25 31.6992 33.5234 40.1875\\\">small-claims</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 494.1875 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 496.3125 394.3016)\\\" x=\\\"0 4 8.4492 12.8984 15.5625\\\">court</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 514.0976 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 516.2226 394.3016)\\\" x=\\\"0 4.4492 8.8984 13.3477\\\">does</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 533.5703 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 535.6953 394.3016)\\\" x=\\\"0 4.4492 8.8984\\\">not</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 546.8164 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 548.9414 394.3016)\\\" x=\\\"0 4.4492 8.8984 12.8984\\\">have</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 385.2469)\\\" x=\\\"0 2.2227 6.6719\\\">the</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 220.9711 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 223.0961 385.2469)\\\" x=\\\"0 4.4492 8.8984 14.6758 19.125\\\">power</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 244.8852 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 247.0101 385.2469)\\\" x=\\\"0 2.2227\\\">to</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 253.682 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 255.807 385.2469)\\\" x=\\\"0 4.4492 8.8984 13.3477 16.0117\\\">hear.</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 274.0414 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 276.1664 385.2469)\\\" x=\\\"0 2.2226\\\">If</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.6117 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 282.7367 385.2469)\\\" x=\\\"0 2.2227 6.6719 11.1211 13.7852\\\">there</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 300.9711 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 303.0961 385.2469)\\\" x=\\\"0 1.8242\\\">is</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.9203 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 311.0453 385.2469)\\\" x=\\\"0 4.4492\\\">an</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.9437 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 322.0687 385.2469)\\\" x=\\\"0 4.4492 8.8984 13.3477 17.7969 22.2461\\\">appeal</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 346.139 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 348.264 385.2469)\\\" x=\\\"0 2.2227 4.8867 9.3359\\\">from</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 364.264 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 366.389 385.2469)\\\" x=\\\"0 4 10.6641 15.1133 16.9375 18.7617 21.4258 25.4258 27.25 31.6992 33.5234 40.1875\\\">small-claims</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 410.5765 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 412.7015 385.2469)\\\" x=\\\"0 4 8.4492 12.8984 15.5625 17.7852\\\">court,</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 432.7094 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 434.8344 385.2469)\\\" x=\\\"0 4.4492\\\">or</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 441.9477 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 444.0727 385.2469)\\\" x=\\\"0 1.8242\\\">if</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 448.1195 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 450.2445 385.2469)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.6937 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 456.8187 385.2469)\\\" x=\\\"0 5.7773 7.6016 11.6016 16.0508 20.5 22.7227\\\">Dispute</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 483.9906 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 486.1156 385.2469)\\\" x=\\\"0 4 8.4492 12.8984 17.3476 21.7969 26.2461\\\">changes</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 516.3617 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 518.4867 385.2469)\\\" x=\\\"0 4\\\">so</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.9359 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 529.0609 385.2469)\\\" x=\\\"0 2.2227 6.6719 11.1211\\\">that</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 542.4047 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 544.5297 385.2469)\\\" x=\\\"0 2.2227 6.6719\\\">the</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 376.1922)\\\" x=\\\"0 4 10.6641 15.1133 16.9375 18.7617 21.4258 25.4258 27.25 31.6992 33.5234 40.1875\\\">small-claims</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 254.0375 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 256.1625 376.1922)\\\" x=\\\"0 4 8.4492 12.8984 15.5625\\\">court</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 273.9477 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 276.0727 376.1922)\\\" x=\\\"0 1.8242 6.2734 10.2734 14.7226\\\">loses</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 294.7953 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 296.9203 376.1922)\\\" x=\\\"0 2.2227 6.6719\\\">the</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.0414 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 310.1664 376.1922)\\\" x=\\\"0 4.4492 8.8984 14.6758 19.125\\\">power</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 331.9555 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 333.7805 376.1922)\\\" x=\\\"0 2.2227\\\">to</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 340.4523 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 342.2773 376.1922)\\\" x=\\\"0 4.4492 8.8984 13.3477\\\">hear</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 358.289 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 360.1141 376.1922)\\\" x=\\\"0 1.8242 4.0469\\\">it,</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 366.3836 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 368.2086 376.1922)\\\" x=\\\"0 2.2226 6.6719 11.1211\\\">then</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.7789 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 385.6039 376.1922)\\\" x=\\\"0 2.2227 6.6719\\\">the</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 396.725 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 398.55 376.1922)\\\" x=\\\"0 5.7773 7.6016 11.6016 16.0508 20.5 22.7227\\\">Dispute</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 425.7219 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 427.5469 376.1922)\\\" x=\\\"0 5.7773 7.6016 9.4258\\\">will</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 438.7969 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 440.6219 376.1922)\\\" x=\\\"0 4.4492 8.8984 10.7227\\\">only</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 455.3445 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 457.1695 376.1922)\\\" x=\\\"0 4.4492\\\">be</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.068 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 467.893 376.1922)\\\" x=\\\"0 4.4492 8.8984 13.3477 16.0117\\\">heard</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 488.3539 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 490.1789 376.1922)\\\" x=\\\"0 4.4492\\\">by</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 498.6281 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 500.4531 376.1922)\\\" x=\\\"0 4.4492\\\">an</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.3516 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 511.1766 376.1922)\\\" x=\\\"0 5.3359 8 12.4492 14.2734 16.4961 20.9453 23.6094\\\">Arbiter.</text></g><clipPath id=\\\"clip4-31\\\"><path d=\\\"M 35 343 L 130 343 L 130 374 L 35 374 L 35 343 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-31)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 373.5125 L 129.35 373.5125 L 129.35 343.3484 L 35.45 343.3484 L 35.45 373.5125 z \\\"/><path clip-path=\\\"url(#clip4-31)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 371.5125 L 125.25 371.5125 L 125.25 362.4578 L 39.55 362.4578 L 39.55 371.5125 z \\\"/><path clip-path=\\\"url(#clip4-31)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 41.5875 371.5125 L 123.5875 371.5125 L 123.5875 361.5125 L 41.5875 361.5125 L 41.5875 371.5125 z \\\"/><g clip-path=\\\"url(#clip4-31)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 41.5875 364.1375)\\\" x=\\\"0 5.776 10.224 12.352 16.8 19.024 23.472 27.92 30.584 32.712 37.16 41.608 43.832 45.656 50.104 54.552 58.552 60.68 65.128 69.128 70.952 74.952 77.176\\\">Do other options exist?</text></g><clipPath id=\\\"clip4-32\\\"><path d=\\\"M 129 343 L 206 343 L 206 374 L 129 374 L 129 343 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-32)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 159.5461 364.1375)\\\" x=\\\"0 5.336 9.784 13.784\\\">Yes.</text></g><clipPath id=\\\"clip4-33\\\"><path d=\\\"M 205 343 L 573 343 L 573 374 L 205 374 L 205 343 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 364.1375)\\\" x=\\\"0 5.336 9.784 12.008\\\">Both</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 226.307 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 228.8021 364.1375)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056\\\">parties</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 252.8607 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 255.3557 364.1375)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 270.469 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 272.964 364.1375)\\\" x=\\\"0 4.448 8.448\\\">use</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 285.8625 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 288.3575 364.1375)\\\" x=\\\"0 1.824 6.272 12.048 14.272 18.72\\\">lawful</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.9044 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 311.3995 364.1375)\\\" x=\\\"0 4 8.448 10.272 12.496 15.16 19.608 24.056 25.88\\\">self-help</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 341.7315 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 344.2265 364.1375)\\\" x=\\\"0 2.664 7.112 13.776 18.224 22.672 24.496 28.944 32.944\\\">remedies.</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 379.3984 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 381.8935 364.1375)\\\" x=\\\"0 4.888 9.336 11.16\\\">This</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 397.0536 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 399.5487 364.1375)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44\\\">includes</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 428.994 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 431.489 364.1375)\\\" x=\\\"0 4 8.448 10.672 13.336 17.784 20.008\\\">set-off</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 453.7195 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 456.2146 364.1375)\\\" x=\\\"0 4.448\\\">or</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 463.3279 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 465.8229 364.1375)\\\" x=\\\"0 2.664 7.112 11.56 16.008 20.008 24.008 28.456 32.456 36.456 38.28 42.728\\\">repossession</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 513.0065 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 515.5015 364.1375)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 528.8492 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 531.3443 364.1375)\\\" x=\\\"0 4 8.448 10.272\\\">sale</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 546.0669 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 548.562 364.1375)\\\" x=\\\"0 4.448\\\">of</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 555.2339 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 557.7289 364.1375)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 355.0828)\\\" x=\\\"0 5.336 8 12.448 16.896 21.344 24.008 26.232 30.232\\\">Property.</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 242.307 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 245.9017 355.0828)\\\" x=\\\"0 5.336 9.784 12.008\\\">Both</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.3587 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 265.9534 355.0828)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056\\\">parties</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.0119 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 293.6066 355.0828)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.7199 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 312.3145 355.0828)\\\" x=\\\"0 4 8.448 12.896\\\">seek</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.213 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 332.8076 355.0828)\\\" x=\\\"0 2.664 7.112 13.776 18.224 22.672 24.496 28.944\\\">remedies</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 365.7568 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 369.3515 355.0828)\\\" x=\\\"0 5.776 10.224 12.048 16.048\\\">which</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 389.8515 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 393.4461 355.0828)\\\" x=\\\"0 4.448 8.896 13.344 14.872\\\">don&apos;t</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 410.5438 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 414.1384 355.0828)\\\" x=\\\"0 4 5.824 10.272 12.096\\\">claim</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 432.9002 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 436.4948 355.0828)\\\" x=\\\"0 6.664 11.112 15.56 20.008\\\">money</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 460.5065 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 464.1012 355.0828)\\\" x=\\\"0 4.448 8.896 15.56 20.008 24.456 28.904 32.904\\\">damages.</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.234 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 502.8287 355.0828)\\\" x=\\\"0 4.888 9.336 11.16\\\">This</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 517.9888 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 521.5835 355.0828)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44\\\">includes</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.0288 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 554.6234 355.0828)\\\" x=\\\"0 4.448 7.112 11.56\\\">pre-</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 346.0281)\\\" x=\\\"0 1.824 6.272 10.72 15.168 21.832 26.28 30.728 32.952 35.08 39.08 43.528 45.352 49.352 53.8 56.464 60.912 63.136 65.264 67.088 71.536 73.36 77.808 82.256 86.256 88.48 90.304 94.752 99.2 103.2 105.424 107.552 112 114.664 116.792 121.24 125.688 130.136 131.96 134.184 138.632 143.08 144.904 149.352 151.48 154.144 158.592 160.416 162.24 166.688 168.912\\\">judgment seizure, injunctions, or equitable relief.</text></g><clipPath id=\\\"clip4-34\\\"><path d=\\\"M 35 295 L 130 295 L 130 344 L 35 344 L 35 295 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-34)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 343.3484 L 129.35 343.3484 L 129.35 295.075 L 35.45 295.075 L 35.45 343.3484 z \\\"/><path clip-path=\\\"url(#clip4-34)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 341.3484 L 125.25 341.3484 L 125.25 323.2391 L 39.55 323.2391 L 39.55 341.3484 z \\\"/><path clip-path=\\\"url(#clip4-34)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 55.0406 341.3484 L 110.0406 341.3484 L 110.0406 331.3484 L 55.0406 331.3484 L 55.0406 341.3484 z \\\"/><g clip-path=\\\"url(#clip4-34)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 55.0406 333.9734)\\\" x=\\\"0 7.552 9.376 11.2 13.024 15.152 17.376 21.824 23.648 27.648 29.776 35.552 37.376 41.824 46.272 50.272\\\">Will this Clause</text></g><path clip-path=\\\"url(#clip4-34)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 47.3375 332.2938 L 118.3375 332.2938 L 118.3375 322.2938 L 47.3375 322.2938 L 47.3375 332.2938 z \\\"/><g clip-path=\\\"url(#clip4-34)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.3375 324.9187)\\\" x=\\\"0 4 8.448 12.896 15.12 16.944 21.392 25.84 30.288 32.416 34.64 39.088 41.216 45.664 50.112 54.112 58.56 61.224 65.672\\\">continue to govern?</text></g><clipPath id=\\\"clip4-35\\\"><path d=\\\"M 129 295 L 206 295 L 206 344 L 129 344 L 129 295 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-35)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.8976 333.9734)\\\" x=\\\"0 5.336 9.784 13.784 16.008 18.136 22.584 27.032 28.856 33.304 37.304\\\">Yes, unless</text></g><g clip-path=\\\"url(#clip4-35)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 135.7785 324.9187)\\\" x=\\\"0 4.448 6.672 11.12 15.568 18.232 24.008 25.832 29.832 34.28 36.408 40.856 45.304 47.968 52.416 56.864 61.312\\\">otherwise agreed.</text></g><clipPath id=\\\"clip4-36\\\"><path d=\\\"M 205 295 L 573 295 L 573 344 L 205 344 L 205 295 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 333.9734)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 223.6351 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 227.574 333.9734)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496\\\">Clause</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 252.5233 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 256.4622 333.9734)\\\" x=\\\"0 4 6.224 10.672 14.672\\\">stays</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.134 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 279.0729 333.9734)\\\" x=\\\"0 4.448 6.672 8.896 13.344 17.344 19.568 21.392 25.392 29.84\\\">effective,</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 311.1354 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 315.0743 333.9734)\\\" x=\\\"0 4.448 8.896 10.72 15.168 19.168\\\">unless</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.2462 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 342.1851 333.9734)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 353.3062 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 357.2451 333.9734)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056\\\">parties</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 381.3037 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 385.2426 333.9734)\\\" x=\\\"0 4 5.824 10.272\\\">sign</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 399.9652 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 403.9041 333.9734)\\\" x=\\\"0 4.448\\\">an</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 412.8026 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 416.7415 333.9734)\\\" x=\\\"0 4.448 8.896 11.56 16.008 20.456 27.12 31.568 36.016\\\">agreement</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.9875 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 458.9264 333.9734)\\\" x=\\\"0 4 6.224 10.672 12.896 14.72 19.168\\\">stating</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 482.5436 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 486.4825 333.9734)\\\" x=\\\"0 1.824\\\">it</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 490.5294 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 494.4683 333.9734)\\\" x=\\\"0 4.448 8.896 13.344 17.344 21.792 23.32 25.544\\\">doesn&apos;t.</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 522.2378 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 526.1767 333.9734)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 539.9619 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 543.9008 333.9734)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496\\\">Clause</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 324.9187)\\\" x=\\\"0 4.448 8.896 12.896 17.344 20.008 24.456\\\">governs</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.3109 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 241.2057 324.9187)\\\" x=\\\"0 1.824\\\">if</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.2526 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 248.1473 324.9187)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 261.0458 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 263.9405 324.9187)\\\" x=\\\"0 2.664 7.112 11.112 15.112 16.936 21.384\\\">rescind</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 289.7765 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 292.6712 324.9187)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 303.7923 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 306.6871 324.9187)\\\" x=\\\"0 2.224 4.888 9.336 13.784 17.784 22.232 26.232 28.456 30.28 34.728 39.176\\\">transaction.</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.0894 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 350.9842 324.9187)\\\" x=\\\"0 2.224\\\">It</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.4295 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 358.3243 324.9187)\\\" x=\\\"0 4.448 8.896 12.896 17.344 20.008 24.456\\\">governs</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 386.7852 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 389.68 324.9187)\\\" x=\\\"0 1.824\\\">if</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.7268 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 396.6216 324.9187)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 409.52 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 412.4148 324.9187)\\\" x=\\\"0 4.448 8.896 11.12 15.568 20.016 21.84 24.064\\\">default,</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 438.7038 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 441.5986 324.9187)\\\" x=\\\"0 2.664 7.112 11.56 16.008 21.784\\\">renew,</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 465.6103 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 468.5051 324.9187)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456 24.456\\\">prepay,</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 495.1887 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 498.0834 324.9187)\\\" x=\\\"0 4.448\\\">or</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 505.1967 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 508.0915 324.9187)\\\" x=\\\"0 4.448 8.896 12.896\\\">pay.</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 523.2126 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 526.1073 324.9187)\\\" x=\\\"0 2.224\\\">It</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 530.5527 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 533.4474 324.9187)\\\" x=\\\"0 4.448 8.896 12.896 17.344 20.008 24.456\\\">governs</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 561.9084 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 564.8031 324.9187)\\\" x=\\\"0 1.824\\\">if</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 315.8641)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 222.7484 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 227.0199 315.8641)\\\" x=\\\"0 2.224 6.672 9.336 16 17.824 22.272 26.72 28.944 33.392\\\">terminate,</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.6371 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 266.9086 315.8641)\\\" x=\\\"0 1.824\\\">if</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 270.9555 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 275.2269 315.8641)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 288.1254 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 292.3969 315.8641)\\\" x=\\\"0 2.664 7.112 8.936 13.384 17.384 19.608 24.056 26.28 30.728\\\">reinstate,</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 325.35 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 329.6215 315.8641)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 342.9691 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 347.2406 315.8641)\\\" x=\\\"0 1.824\\\">if</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.2875 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 355.559 315.8641)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 368.4574 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 372.7289 315.8641)\\\" x=\\\"0 2.664 7.112 9.336 13.784 16.448\\\">return</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.6273 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 397.8988 315.8641)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 409.0199 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 413.2914 315.8641)\\\" x=\\\"0 5.336 8 12.448 16.896 21.344 24.008 26.232 30.232\\\">Property.</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 445.7484 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 450.0199 315.8641)\\\" x=\\\"0 2.224\\\">It</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.4652 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 458.7367 315.8641)\\\" x=\\\"0 4.448 8.896 12.896 17.344 20.008 24.456\\\">governs</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 487.1977 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 491.4691 315.8641)\\\" x=\\\"0 1.824\\\">if</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 495.516 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 499.7875 315.8641)\\\" x=\\\"0 4 8.448 12.896\\\">your</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 515.35 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 519.6215 315.8641)\\\" x=\\\"0 5.336 9.784 12.448 16.896 21.344 28.008 32.456 36.904\\\">Agreement</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 558.7543 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 563.0258 315.8641)\\\" x=\\\"0 1.824\\\">is</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 306.8094)\\\" x=\\\"0 1.824 8.488 12.936 17.384 21.384 23.608 28.056\\\">impacted</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 242.3578 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 248.4078 306.8094)\\\" x=\\\"0 4.448\\\">by</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.857 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 262.907 306.8094)\\\" x=\\\"0 4.448 8.896 13.344 17.344 20.008 24.456 28.904 31.128 35.128 39.128\\\">bankruptcy.</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 304.2625 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 310.3125 306.8094)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 324.0976 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 330.1477 306.8094)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496\\\">Clause</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.0969 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 361.1469 306.8094)\\\" x=\\\"0 2.664 7.112 13.776 18.224 20.048 24.496\\\">remains</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 389.6469 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 395.6969 306.8094)\\\" x=\\\"0 4.448 6.672 8.896 13.344 17.344 19.568 21.392 25.392 29.84\\\">effective,</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 427.7594 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 433.8094 306.8094)\\\" x=\\\"0 4.448 8.896 12.896 17.344 19.168 21.392\\\">despite</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 459.6531 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 465.7031 306.8094)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 470.1523 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 476.2023 306.8094)\\\" x=\\\"0 2.224 4.888 9.336 13.784 17.784 22.232 26.232 28.456 30.28 34.728 39.176 40.704\\\">transaction&apos;s</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 520.9094 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 526.9594 306.8094)\\\" x=\\\"0 2.224 6.672 9.336 16 17.824 22.272 26.72 28.944 30.768 35.216 39.664\\\">termination,</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 297.7547)\\\" x=\\\"0 4.448 11.112 15.56 20.008 24.456 31.12 35.568 40.016 42.24 44.464 46.592 51.04 55.04 59.488 61.312 63.976 68.424 70.648 72.472 76.92 81.368 83.592 85.72 90.168 92.832 94.96 99.408 103.856 106.52 108.744 113.192 115.856 122.52 126.968 131.416 135.416 139.864\\\">amendment, expiration, or performance.</text></g><clipPath id=\\\"clip4-37\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 770.2 L 129.85 770.2 L 129.85 769.2 L 34.95 769.2 L 34.95 770.2 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 769.2 L 35.95 769.2 L 35.95 749.0906 L 34.95 749.0906 L 34.95 769.2 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 770.2 L 206.25 770.2 L 206.25 769.2 L 129.85 769.2 L 129.85 770.2 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 769.2 L 129.85 769.2 L 129.85 749.0906 L 128.85 749.0906 L 128.85 769.2 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 770.2 L 573.45 770.2 L 573.45 769.2 L 206.25 769.2 L 206.25 770.2 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 769.2 L 573.45 769.2 L 573.45 749.0906 L 572.45 749.0906 L 572.45 769.2 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 769.2 L 206.25 769.2 L 206.25 749.0906 L 205.25 749.0906 L 205.25 769.2 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 749.0906 L 129.85 749.0906 L 129.85 748.0906 L 34.95 748.0906 L 34.95 749.0906 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 748.0906 L 35.95 748.0906 L 35.95 727.9813 L 34.95 727.9813 L 34.95 748.0906 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 749.0906 L 206.25 749.0906 L 206.25 748.0906 L 129.85 748.0906 L 129.85 749.0906 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 748.0906 L 129.85 748.0906 L 129.85 727.9813 L 128.85 727.9813 L 128.85 748.0906 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 749.0906 L 573.45 749.0906 L 573.45 748.0906 L 206.25 748.0906 L 206.25 749.0906 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 748.0906 L 573.45 748.0906 L 573.45 727.9813 L 572.45 727.9813 L 572.45 748.0906 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 748.0906 L 206.25 748.0906 L 206.25 727.9813 L 205.25 727.9813 L 205.25 748.0906 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 727.9813 L 129.85 727.9813 L 129.85 726.9813 L 34.95 726.9813 L 34.95 727.9813 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 726.9813 L 35.95 726.9813 L 35.95 706.8719 L 34.95 706.8719 L 34.95 726.9813 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 727.9813 L 206.25 727.9813 L 206.25 726.9813 L 129.85 726.9813 L 129.85 727.9813 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 726.9813 L 129.85 726.9813 L 129.85 706.8719 L 128.85 706.8719 L 128.85 726.9813 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 727.9813 L 573.45 727.9813 L 573.45 726.9813 L 206.25 726.9813 L 206.25 727.9813 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 726.9813 L 573.45 726.9813 L 573.45 706.8719 L 572.45 706.8719 L 572.45 726.9813 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 726.9813 L 206.25 726.9813 L 206.25 706.8719 L 205.25 706.8719 L 205.25 726.9813 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 706.8719 L 129.85 706.8719 L 129.85 705.8719 L 34.95 705.8719 L 34.95 706.8719 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 705.8719 L 35.95 705.8719 L 35.95 631.4344 L 34.95 631.4344 L 34.95 705.8719 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 706.8719 L 206.25 706.8719 L 206.25 705.8719 L 129.85 705.8719 L 129.85 706.8719 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 705.8719 L 129.85 705.8719 L 129.85 631.4344 L 128.85 631.4344 L 128.85 705.8719 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 706.8719 L 573.45 706.8719 L 573.45 705.8719 L 206.25 705.8719 L 206.25 706.8719 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 705.8719 L 573.45 705.8719 L 573.45 631.4344 L 572.45 631.4344 L 572.45 705.8719 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 705.8719 L 206.25 705.8719 L 206.25 631.4344 L 205.25 631.4344 L 205.25 705.8719 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 631.4344 L 129.85 631.4344 L 129.85 630.4344 L 34.95 630.4344 L 34.95 631.4344 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 630.4344 L 35.95 630.4344 L 35.95 579.1609 L 34.95 579.1609 L 34.95 630.4344 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 631.4344 L 206.25 631.4344 L 206.25 630.4344 L 129.85 630.4344 L 129.85 631.4344 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 630.4344 L 129.85 630.4344 L 129.85 579.1609 L 128.85 579.1609 L 128.85 630.4344 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 631.4344 L 573.45 631.4344 L 573.45 630.4344 L 206.25 630.4344 L 206.25 631.4344 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 630.4344 L 573.45 630.4344 L 573.45 579.1609 L 572.45 579.1609 L 572.45 630.4344 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 630.4344 L 206.25 630.4344 L 206.25 579.1609 L 205.25 579.1609 L 205.25 630.4344 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 579.1609 L 129.85 579.1609 L 129.85 578.1609 L 34.95 578.1609 L 34.95 579.1609 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 578.1609 L 35.95 578.1609 L 35.95 530.8875 L 34.95 530.8875 L 34.95 578.1609 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 579.1609 L 206.25 579.1609 L 206.25 578.1609 L 129.85 578.1609 L 129.85 579.1609 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 578.1609 L 129.85 578.1609 L 129.85 530.8875 L 128.85 530.8875 L 128.85 578.1609 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 579.1609 L 573.45 579.1609 L 573.45 578.1609 L 206.25 578.1609 L 206.25 579.1609 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 578.1609 L 573.45 578.1609 L 573.45 530.8875 L 572.45 530.8875 L 572.45 578.1609 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 578.1609 L 206.25 578.1609 L 206.25 530.8875 L 205.25 530.8875 L 205.25 578.1609 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 530.8875 L 129.85 530.8875 L 129.85 529.8875 L 34.95 529.8875 L 34.95 530.8875 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 529.8875 L 35.95 529.8875 L 35.95 491.6688 L 34.95 491.6688 L 34.95 529.8875 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 530.8875 L 206.25 530.8875 L 206.25 529.8875 L 129.85 529.8875 L 129.85 530.8875 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 529.8875 L 129.85 529.8875 L 129.85 491.6688 L 128.85 491.6688 L 128.85 529.8875 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 530.8875 L 573.45 530.8875 L 573.45 529.8875 L 206.25 529.8875 L 206.25 530.8875 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 529.8875 L 573.45 529.8875 L 573.45 491.6688 L 572.45 491.6688 L 572.45 529.8875 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 529.8875 L 206.25 529.8875 L 206.25 491.6688 L 205.25 491.6688 L 205.25 529.8875 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 491.6688 L 129.85 491.6688 L 129.85 490.6688 L 34.95 490.6688 L 34.95 491.6688 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 490.6688 L 35.95 490.6688 L 35.95 434.3406 L 34.95 434.3406 L 34.95 490.6688 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 491.6688 L 206.25 491.6688 L 206.25 490.6688 L 129.85 490.6688 L 129.85 491.6688 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 490.6688 L 129.85 490.6688 L 129.85 434.3406 L 128.85 434.3406 L 128.85 490.6688 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 491.6688 L 573.45 491.6688 L 573.45 490.6688 L 206.25 490.6688 L 206.25 491.6688 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 490.6688 L 573.45 490.6688 L 573.45 434.3406 L 572.45 434.3406 L 572.45 490.6688 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 490.6688 L 206.25 490.6688 L 206.25 434.3406 L 205.25 434.3406 L 205.25 490.6688 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 434.3406 L 129.85 434.3406 L 129.85 433.3406 L 34.95 433.3406 L 34.95 434.3406 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 433.3406 L 35.95 433.3406 L 35.95 413.2313 L 34.95 413.2313 L 34.95 433.3406 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 434.3406 L 206.25 434.3406 L 206.25 433.3406 L 129.85 433.3406 L 129.85 434.3406 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 433.3406 L 129.85 433.3406 L 129.85 413.2313 L 128.85 413.2313 L 128.85 433.3406 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 434.3406 L 573.45 434.3406 L 573.45 433.3406 L 206.25 433.3406 L 206.25 434.3406 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 433.3406 L 573.45 433.3406 L 573.45 413.2313 L 572.45 413.2313 L 572.45 433.3406 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 433.3406 L 206.25 433.3406 L 206.25 413.2313 L 205.25 413.2313 L 205.25 433.3406 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 413.2313 L 129.85 413.2313 L 129.85 412.2313 L 34.95 412.2313 L 34.95 413.2313 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 412.2313 L 35.95 412.2313 L 35.95 374.0125 L 34.95 374.0125 L 34.95 412.2313 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 413.2313 L 206.25 413.2313 L 206.25 412.2313 L 129.85 412.2313 L 129.85 413.2313 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 412.2313 L 129.85 412.2313 L 129.85 374.0125 L 128.85 374.0125 L 128.85 412.2313 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 413.2313 L 573.45 413.2313 L 573.45 412.2313 L 206.25 412.2313 L 206.25 413.2313 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 412.2313 L 573.45 412.2313 L 573.45 374.0125 L 572.45 374.0125 L 572.45 412.2313 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 412.2313 L 206.25 412.2313 L 206.25 374.0125 L 205.25 374.0125 L 205.25 412.2313 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 374.0125 L 129.85 374.0125 L 129.85 373.0125 L 34.95 373.0125 L 34.95 374.0125 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 373.0125 L 35.95 373.0125 L 35.95 343.8484 L 34.95 343.8484 L 34.95 373.0125 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 374.0125 L 206.25 374.0125 L 206.25 373.0125 L 129.85 373.0125 L 129.85 374.0125 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 373.0125 L 129.85 373.0125 L 129.85 343.8484 L 128.85 343.8484 L 128.85 373.0125 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 374.0125 L 573.45 374.0125 L 573.45 373.0125 L 206.25 373.0125 L 206.25 374.0125 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 373.0125 L 573.45 373.0125 L 573.45 343.8484 L 572.45 343.8484 L 572.45 373.0125 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 373.0125 L 206.25 373.0125 L 206.25 343.8484 L 205.25 343.8484 L 205.25 373.0125 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 343.8484 L 129.85 343.8484 L 129.85 342.8484 L 34.95 342.8484 L 34.95 343.8484 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 295.575 L 129.85 295.575 L 129.85 294.575 L 34.95 294.575 L 34.95 295.575 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 342.8484 L 35.95 342.8484 L 35.95 295.575 L 34.95 295.575 L 34.95 342.8484 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 343.8484 L 206.25 343.8484 L 206.25 342.8484 L 129.85 342.8484 L 129.85 343.8484 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 295.575 L 206.25 295.575 L 206.25 294.575 L 129.85 294.575 L 129.85 295.575 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 342.8484 L 129.85 342.8484 L 129.85 295.575 L 128.85 295.575 L 128.85 342.8484 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 343.8484 L 573.45 343.8484 L 573.45 342.8484 L 206.25 342.8484 L 206.25 343.8484 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 295.575 L 573.45 295.575 L 573.45 294.575 L 206.25 294.575 L 206.25 295.575 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 342.8484 L 573.45 342.8484 L 573.45 295.575 L 572.45 295.575 L 572.45 342.8484 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 342.8484 L 206.25 342.8484 L 206.25 295.575 L 205.25 295.575 L 205.25 342.8484 z \\\"/><g clip-path=\\\"url(#clip4-37)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 286.1385 282.8562)\\\" x=\\\"0 6.67 10 15.56 20.56 26.12 31.12\\\">Process</text></g><clipPath id=\\\"clip4-38\\\"><path d=\\\"M 35 214 L 128 214 L 128 272 L 35 272 L 35 214 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-38)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.2 271.652 L 127.6 271.652 L 127.6 214.3238 L 35.2 214.3238 L 35.2 271.652 z \\\"/><path clip-path=\\\"url(#clip4-38)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.3 269.652 L 123.5 269.652 L 123.5 251.5426 L 39.3 251.5426 L 39.3 269.652 z \\\"/><path clip-path=\\\"url(#clip4-38)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 44.7652 269.652 L 118.7652 269.652 L 118.7652 259.652 L 44.7652 259.652 L 44.7652 269.652 z \\\"/><g clip-path=\\\"url(#clip4-38)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 44.7652 262.277)\\\" x=\\\"0 5.776 10.224 16 18.128 22.576 27.024 31.472 35.472 37.6 42.048 44.712 49.16 50.984 53.208 55.872 60.32 62.544 64.368 68.816\\\">How does arbitration</text></g><path clip-path=\\\"url(#clip4-38)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 71.3961 260.5973 L 92.3961 260.5973 L 92.3961 250.5973 L 71.3961 250.5973 L 71.3961 260.5973 z \\\"/><g clip-path=\\\"url(#clip4-38)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 71.3961 253.2223)\\\" x=\\\"0 4 6.224 10.672 13.336 15.56\\\">start?</text></g><clipPath id=\\\"clip4-39\\\"><path d=\\\"M 127 214 L 206 214 L 206 272 L 127 272 L 127 214 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-39)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 137.6496 262.277)\\\" x=\\\"0 6.664 11.112 12.936 14.76 16.584 21.032 25.48 27.608 32.056 34.184 38.632 43.08 45.304 47.128 51.128 55.576\\\">Mailing a notice.</text></g><clipPath id=\\\"clip4-40\\\"><path d=\\\"M 205 214 L 574 214 L 574 272 L 205 272 L 205 214 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 262.277)\\\" x=\\\"0 5.336 7.16 9.384 13.832 18.28\\\">Either</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 230.5453 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 233.8153 262.277)\\\" x=\\\"0 4.448 8.896 11.56 13.784\\\">party</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 251.6004 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 254.8704 262.277)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 269.9837 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 273.2536 262.277)\\\" x=\\\"0 6.664 11.112 12.936\\\">mail</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 288.0154 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 291.2853 262.277)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.4064 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 305.6764 262.277)\\\" x=\\\"0 4.448 6.672 11.12 15.568\\\">other</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 323.9108 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 327.1807 262.277)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 331.6299 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 334.8999 262.277)\\\" x=\\\"0 2.664 7.112 11.56 16.008 20.456 24.456\\\">request</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 361.5835 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 364.8535 262.277)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.5253 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 374.7953 262.277)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 29.392\\\">arbitrate,</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 406.4125 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 409.6825 262.277)\\\" x=\\\"0 4.448 8.448 12.896\\\">even</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 427.0301 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 430.3001 262.277)\\\" x=\\\"0 1.824\\\">if</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.3469 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 437.6169 262.277)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 442.0661 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 445.3361 262.277)\\\" x=\\\"0 1.824 6.272 12.048 16.048 20.496 22.32\\\">lawsuit</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 469.883 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 473.1529 262.277)\\\" x=\\\"0 4.448 8.896\\\">has</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.0514 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 489.3213 262.277)\\\" x=\\\"0 4.448 8.896 13.344\\\">been</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 507.1182 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 510.3882 262.277)\\\" x=\\\"0 2.224 4.048 5.872 10.32 14.768\\\">filed.</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 527.3804 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 530.6503 262.277)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 544.4355 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 547.7055 262.277)\\\" x=\\\"0 4.448 8.896 11.12 12.944 16.944\\\">notice</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 253.2223)\\\" x=\\\"0 4 8.448 12.896 17.344 19.168\\\">should</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.2211 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 236.4008 253.2223)\\\" x=\\\"0 4.448 8.896 12.896 16.896 19.56 21.384 25.832\\\">describe</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 266.6859 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 269.8656 253.2223)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.9867 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 284.1664 253.2223)\\\" x=\\\"0 5.776 7.6 11.6 16.048 20.496 22.72\\\">Dispute</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 311.3383 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 314.518 253.2223)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 327.8656 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 331.0453 253.2223)\\\" x=\\\"0 2.664 7.112 8.936 10.76 15.208\\\">relief</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.4789 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 351.6586 253.2223)\\\" x=\\\"0 4 8.448 12.896 17.344 21.792 24.016\\\">sought.</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 377.9008 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 381.0805 253.2223)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 394.8656 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 398.0453 253.2223)\\\" x=\\\"0 2.664 7.112 11.112 15.56 17.384 21.384 23.208 27.656\\\">receiving</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.1547 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 433.3344 253.2223)\\\" x=\\\"0 4.448 8.896 11.56 13.784\\\">party</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 451.1195 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 454.2992 253.2223)\\\" x=\\\"0 6.664 11.112 15.112\\\">must</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 471.6351 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 474.8148 253.2223)\\\" x=\\\"0 6.664 11.112 12.936\\\">mail</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.5765 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 492.7562 253.2223)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 497.2055 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 500.3851 253.2223)\\\" x=\\\"0 2.664 7.112 11.112 15.56 20.008 24.456 28.456\\\">response</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 533.2953 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 536.475 253.2223)\\\" x=\\\"0 5.776 7.6 9.824 14.272 16.096\\\">within</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 557.0219 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 560.2015 253.2223)\\\" x=\\\"0 4.448\\\">20</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 244.1676)\\\" x=\\\"0 4.448 8.896 12.896 16.896\\\">days.</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 228.7211 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 231.1538 244.1676)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 235.5991 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 238.0317 244.1676)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 250.9302 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 253.3629 244.1676)\\\" x=\\\"0 6.664 11.112 12.936\\\">mail</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 268.1246 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 270.5573 244.1676)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.6783 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 284.111 244.1676)\\\" x=\\\"0 4.448 8.896 15.56 20.008 24.456 28.904\\\">demand,</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 315.2438 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 317.6765 244.1676)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 330.575 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 333.0076 244.1676)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.1209 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 350.5536 244.1676)\\\" x=\\\"0 4 8.448 12.896 17.344 21.344\\\">choose</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 376.3505 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 378.7831 244.1676)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 389.9042 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 392.3369 244.1676)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 26.768 31.216\\\">arbitration</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 428.0049 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 430.4375 244.1676)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456\\\">group.</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 453.1211 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 455.5538 244.1676)\\\" x=\\\"0 6.224 8.888\\\">Or,</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.6632 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 469.0959 244.1676)\\\" x=\\\"0 4 8.448 12.896\\\">your</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.6584 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 487.091 244.1676)\\\" x=\\\"0 4.448 8.896 15.56 20.008 24.456\\\">demand</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 516.0012 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 518.4339 244.1676)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 533.5471 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 535.9798 244.1676)\\\" x=\\\"0 4 6.224 10.672 12.896\\\">state</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.3236 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 555.7562 244.1676)\\\" x=\\\"0 2.224 6.672 11.12\\\">that</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 235.1129)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 222.4984 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 224.7098 235.1129)\\\" x=\\\"0 5.776 10.224 14.672\\\">want</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 241.6082 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 243.8196 235.1129)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 254.9407 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 257.152 235.1129)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056\\\">parties</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.2106 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 283.4219 235.1129)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.0938 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 292.3052 235.1129)\\\" x=\\\"0 4 8.448 12.896 17.344 21.344\\\">choose</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 318.1021 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 320.3134 235.1129)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 324.7626 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 326.974 235.1129)\\\" x=\\\"0 1.824 6.272 10.272 14.72\\\">local</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 343.5208 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 345.7322 235.1129)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608\\\">Arbiter.</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.5642 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 373.7756 235.1129)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 378.2209 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 380.4322 235.1129)\\\" x=\\\"0 2.664 7.112 8.936 13.384 15.608 20.056\\\">related</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 404.94 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 407.1514 235.1129)\\\" x=\\\"0 2.224 6.672 8.496 11.16\\\">third</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 422.7608 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 424.9721 235.1129)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056\\\">parties</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 449.0307 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 451.2421 235.1129)\\\" x=\\\"0 4.448\\\">or</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 458.3553 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 460.5667 235.1129)\\\" x=\\\"0 5.776\\\">we</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 470.7932 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 473.0046 235.1129)\\\" x=\\\"0 6.664 11.112 12.936\\\">mail</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 487.7663 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 489.9777 235.1129)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.0988 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 503.3101 235.1129)\\\" x=\\\"0 4.448 8.896 15.56 20.008 24.456 28.904\\\">demand,</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 534.4429 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 536.6543 235.1129)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.5527 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 551.7641 235.1129)\\\" x=\\\"0 6.664 11.112 15.112\\\">must</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 226.0582)\\\" x=\\\"0 2.664 7.112 11.112 15.56 20.008 24.456\\\">respond</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.5101 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 241.2739 226.0582)\\\" x=\\\"0 1.824\\\">in</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.5474 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 250.3112 226.0582)\\\" x=\\\"0 4.448\\\">20</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.2096 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 261.9734 226.0582)\\\" x=\\\"0 4.448 8.896 12.896 16.896\\\">days.</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.0945 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 283.8583 226.0582)\\\" x=\\\"0 5.336 9.784 14.232\\\">Your</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 300.7567 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 303.5205 226.0582)\\\" x=\\\"0 2.664 7.112 11.112 15.56 20.008 24.456 28.456\\\">response</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 336.4306 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 339.1944 226.0582)\\\" x=\\\"0 6.664 11.112 15.112\\\">must</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 356.5304 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 359.2942 226.0582)\\\" x=\\\"0 4 8.448 12.896 17.344 21.344\\\">choose</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 385.091 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 387.8548 226.0582)\\\" x=\\\"0 4.448\\\">an</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 396.7533 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 399.517 226.0582)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 26.768 31.216\\\">arbitration</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 435.185 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 437.9488 226.0582)\\\" x=\\\"0 4.448 7.112 11.56 16.008\\\">group</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 458.4097 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 461.1735 226.0582)\\\" x=\\\"0 4.448\\\">or</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.2868 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 471.0506 226.0582)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456 24.456\\\">propose</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.9607 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 502.7245 226.0582)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 507.1737 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 509.9375 226.0582)\\\" x=\\\"0 1.824 6.272 10.272 14.72\\\">local</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.4844 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 529.2482 226.0582)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608\\\">Arbiter.</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 555.0802 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 557.844 226.0582)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 562.2893 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 565.0531 226.0582)\\\" x=\\\"0 1.824\\\">it</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 217.0035)\\\" x=\\\"0 4.448 8.896 13.344 17.344 21.792 23.32 25.544 27.768 29.896 35.672 40.12 42.248 48.912 53.36 57.36 59.488 63.488 67.936 72.384 76.832 80.832 85.28 87.408 89.632 94.08 98.528 100.656 105.104 107.768 112.216 116.664 121.112\\\">doesn&apos;t, we may choose the group.</text></g><clipPath id=\\\"clip4-41\\\"><path d=\\\"M 35 137 L 128 137 L 128 215 L 35 215 L 35 137 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-41)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.2 214.3238 L 127.6 214.3238 L 127.6 137.8863 L 35.2 137.8863 L 35.2 214.3238 z \\\"/><path clip-path=\\\"url(#clip4-41)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.3 212.3238 L 123.5 212.3238 L 123.5 203.2691 L 39.3 203.2691 L 39.3 212.3238 z \\\"/><path clip-path=\\\"url(#clip4-41)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 53.191 212.3238 L 110.191 212.3238 L 110.191 202.3238 L 53.191 202.3238 L 53.191 212.3238 z \\\"/><g clip-path=\\\"url(#clip4-41)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 53.191 204.9488)\\\" x=\\\"0 7.552 12 16.448 18.576 23.024 25.688 30.136 31.96 34.184 36.848 41.296 43.52 47.968 51.968\\\">* D E M O *tes?</text></g><clipPath id=\\\"clip4-42\\\"><path d=\\\"M 127 137 L 206 137 L 206 215 L 127 215 L 127 137 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-42)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 134.4621 204.9488)\\\" x=\\\"0 5.336 10.672 16.008 18.232 20.36 24.36 29.696 36.36 41.696 43.92 46.048 50.496 53.16 55.288 59.736\\\">AAA, JAMS, or an</text></g><g clip-path=\\\"url(#clip4-42)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 140.1164 195.8941)\\\" x=\\\"0 4.448 8.896 11.56 16.008 20.456 24.904 27.032 32.368 35.032 39.48 41.304 43.528 47.976 50.64\\\">agreed Arbiter.</text></g><clipPath id=\\\"clip4-43\\\"><path d=\\\"M 205 137 L 574 137 L 574 215 L 205 215 L 205 137 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 204.9488)\\\" x=\\\"0 5.336 9.784\\\">You</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 223.8344 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 226.373 204.9488)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 241.4863 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 244.025 204.9488)\\\" x=\\\"0 4 8.448 10.272 14.72 18.72\\\">select</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 264.9703 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 267.509 204.9488)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 278.6301 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 281.1687 204.9488)\\\" x=\\\"0 5.336 12 16.448 19.112 20.936 24.936 29.384\\\">American</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 315.0047 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 317.5433 204.9488)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 19.16 23.608 25.832 27.656 32.104\\\">Arbitration</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 354.098 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 356.6367 204.9488)\\\" x=\\\"0 5.336 9.336 13.336 17.784 21.784 23.608 28.056 30.28 32.104 36.552\\\">Association</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 397.6406 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 400.1793 204.9488)\\\" x=\\\"0 2.664 5.504 10.84 16.176 21.512 24.352\\\">(&quot;AAA&quot;)</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 427.1949 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 429.7336 204.9488)\\\" x=\\\"0 2.664 7.112 9.776 14.224 18.672 23.12 25.784 30.232 34.68 39.128 41.792 46.24 50.688 55.136 59.584\\\">(1-800-778-7879)</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 491.9953 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 494.534 204.9488)\\\" x=\\\"0 4.448 6.672 8.896 13.344 15.568 17.792 20.016 25.792 31.568 37.344 39.568 44.016 48.464 51.128 53.352 57.8 60.464\\\">http://www.adr.org</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.448 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 561.9867 204.9488)\\\" x=\\\"0 4.448\\\">or</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 195.8941)\\\" x=\\\"0 4 9.336 16\\\">JAMS</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 185.8395)\\\" x=\\\"0 2.664 7.112 9.776 14.224 18.672 23.12 25.784 30.232 34.68 39.128 41.792 46.24 50.688 55.136 59.584\\\">(1-800-352-5267)</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 271.8617 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 274.6277 185.8395)\\\" x=\\\"0 4.448 6.672 8.896 13.344 15.568 17.792 20.016 25.792 31.568 37.344 39.568 41.392 45.84 52.504 56.504 60.952 65.4 68.064 70.288 74.288 78.736 85.4\\\">http://www.jamsadr.com.</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 362.2527 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 365.0186 185.8395)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 378.8038 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 381.5697 185.8395)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056\\\">parties</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 405.6283 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 408.3943 185.8395)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 423.5075 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 426.2735 185.8395)\\\" x=\\\"0 4.448 6.272 10.272\\\">also</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 440.9961 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 443.7621 185.8395)\\\" x=\\\"0 4.448 8.896 11.56 16.008\\\">agree</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 464.223 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 466.989 185.8395)\\\" x=\\\"0 1.824\\\">in</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 473.2624 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 476.0284 185.8395)\\\" x=\\\"0 5.776 8.44 10.264 12.488 14.312 18.76\\\">writing</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.2393 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 502.0053 185.8395)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 508.6771 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 511.4431 185.8395)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 515.8923 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 518.6583 185.8395)\\\" x=\\\"0 1.824 6.272 10.272 14.72\\\">local</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 535.2051 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 537.9711 185.8395)\\\" x=\\\"0 4.448 6.672 8.896 13.344 16.008 20.456 24.904 28.904\\\">attorney,</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 176.7848)\\\" x=\\\"0 2.664 7.112 9.336 11.16 13.824 18.272\\\">retired</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 232.3227 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 235.2385 176.7848)\\\" x=\\\"0 1.824 6.272 10.72 15.168 19.616\\\">judge,</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.0823 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 259.9982 176.7848)\\\" x=\\\"0 4.448\\\">or</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 267.1114 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 270.0273 176.7848)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 293.6367 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 296.5526 176.7848)\\\" x=\\\"0 1.824\\\">in</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.826 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 305.7419 176.7848)\\\" x=\\\"0 4.448 8.896 13.344\\\">good</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 323.5388 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 326.4547 176.7848)\\\" x=\\\"0 4 6.224 10.672 15.12 19.568 21.392 25.84\\\">standing</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 356.7477 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 359.6635 176.7848)\\\" x=\\\"0 5.776 7.6 9.824\\\">with</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 373.937 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 376.8529 176.7848)\\\" x=\\\"0 4.448\\\">an</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 385.7513 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 388.6672 176.7848)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 26.768 31.216\\\">arbitration</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 424.3351 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 427.251 176.7848)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456\\\">group.</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 449.9346 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 452.8505 176.7848)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.6357 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 469.5516 176.7848)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 493.1609 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 496.0768 176.7848)\\\" x=\\\"0 6.664 11.112 15.112\\\">must</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 513.4127 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 516.3286 176.7848)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944\\\">arbitrate</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 545.7232 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 548.6391 176.7848)\\\" x=\\\"0 4.448 8.896 13.344 17.792\\\">under</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 167.7301)\\\" x=\\\"0 5.336 10.672\\\">AAA</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.6078 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 228.6503 167.7301)\\\" x=\\\"0 4.448\\\">or</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 235.7636 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 238.8062 167.7301)\\\" x=\\\"0 4 9.336 16\\\">JAMS</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 260.1421 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 263.1846 167.7301)\\\" x=\\\"0 4 8.448 12.896 16.896 21.344 28.008 32.456\\\">consumer</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 298.3096 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 301.3522 167.7301)\\\" x=\\\"0 2.664 7.112 8.936 13.384 17.384\\\">rules.</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 320.9615 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 324.0041 167.7301)\\\" x=\\\"0 5.336 9.784\\\">You</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.2384 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 341.281 167.7301)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 356.3943 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 359.4368 167.7301)\\\" x=\\\"0 4.448 8.896\\\">get</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 370.5579 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 373.6004 167.7301)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 378.0497 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 381.0922 167.7301)\\\" x=\\\"0 4 8.448 12.896\\\">copy</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 397.9906 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 401.0331 167.7301)\\\" x=\\\"0 4.448\\\">of</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 407.705 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 410.7476 167.7301)\\\" x=\\\"0 2.224 6.672 11.12 15.12\\\">these</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.3179 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 433.3604 167.7301)\\\" x=\\\"0 2.664 7.112 8.936 13.384\\\">rules</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 450.7471 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 453.7897 167.7301)\\\" x=\\\"0 2.224 4.888 9.336\\\">from</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 469.7897 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 472.8322 167.7301)\\\" x=\\\"0 4 8.448 12.448\\\">such</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.7306 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 492.7732 167.7301)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456\\\">group.</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 515.4568 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 518.4993 167.7301)\\\" x=\\\"0 5.336 9.784\\\">Any</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 532.2845 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 535.327 167.7301)\\\" x=\\\"0 2.664 7.112 8.936 13.384\\\">rules</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.7137 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 555.7562 167.7301)\\\" x=\\\"0 2.224 6.672 11.12\\\">that</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 158.6754)\\\" x=\\\"0 4 8.448 12.896 15.12 16.944 18.768 22.768\\\">conflict</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 234.5922 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 237.7758 158.6754)\\\" x=\\\"0 5.776 7.6 9.824\\\">with</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 252.0492 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 255.2328 158.6754)\\\" x=\\\"0 4.448 8.896\\\">any</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 268.1312 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 271.3148 158.6754)\\\" x=\\\"0 4.448\\\">of</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 277.9867 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 281.1703 158.6754)\\\" x=\\\"0 4.448 8.896\\\">our</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 292.7328 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 295.9164 158.6754)\\\" x=\\\"0 4.448 8.896 11.56 16.008 20.456 27.12 31.568 36.016 38.24\\\">agreements</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.1625 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 341.3461 158.6754)\\\" x=\\\"0 5.776 7.6 9.824\\\">with</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.6195 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 358.8031 158.6754)\\\" x=\\\"0 4 8.448 12.896\\\">you,</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 373.9242 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 377.1078 158.6754)\\\" x=\\\"0 4.448 8.896 13.344 14.872\\\">don&apos;t</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 394.2055 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 397.389 158.6754)\\\" x=\\\"0 4.448 8.896 13.344 15.168 19.168\\\">apply.</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 418.7836 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 421.9672 158.6754)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 426.4125 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 429.5961 158.6754)\\\" x=\\\"0 2.224 6.672 11.12 15.12\\\">these</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 449.1664 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 452.35 158.6754)\\\" x=\\\"0 4.448 8.896 11.12 12.944 17.392 21.84\\\">options</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 478.1937 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 481.3773 158.6754)\\\" x=\\\"0 4.448 7.112 11.56 16.008 17.536\\\">aren&apos;t</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.139 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 504.3227 158.6754)\\\" x=\\\"0 4.448 8.448 12.896 14.72 16.544 20.992 25.44 27.264 31.712\\\">available,</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 538.264 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 541.4476 158.6754)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 554.7953 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 557.9789 158.6754)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 149.6207)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056\\\">parties</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.6586 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 236.2535 149.6207)\\\" x=\\\"0 4 8.448 12.896 14.424\\\">can&apos;t</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 252.9019 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 255.4968 149.6207)\\\" x=\\\"0 4.448 8.896 11.56 16.008\\\">agree</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.9578 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 278.5527 149.6207)\\\" x=\\\"0 4.448\\\">on</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 287.4511 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 290.046 149.6207)\\\" x=\\\"0 4.448 8.896 13.344 15.568 20.016 24.464 27.128\\\">another,</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.4015 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 321.9964 149.6207)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 326.4456 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 329.0405 149.6207)\\\" x=\\\"0 4 8.448 12.896 15.56\\\">court</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 346.8256 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 349.4205 149.6207)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 364.5338 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 367.1287 149.6207)\\\" x=\\\"0 4 8.448 12.896 17.344 21.344\\\">choose</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 392.9256 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 395.5205 149.6207)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 406.6416 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 409.2365 149.6207)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456\\\">group.</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 431.9201 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 434.515 149.6207)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 448.3001 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 450.895 149.6207)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056\\\">parties</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.9536 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 477.5485 149.6207)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 488.7985 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 491.3934 149.6207)\\\" x=\\\"0 2.224 6.672 11.12\\\">then</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 506.9637 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 509.5586 149.6207)\\\" x=\\\"0 4.448 8.896 11.12 15.568 17.392\\\">obtain</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 531.4024 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 533.9973 149.6207)\\\" x=\\\"0 4.448\\\">an</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 542.8957 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 545.4906 149.6207)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 140.566)\\\" x=\\\"0 4.448 8.896 13.344 17.792 20.456 22.584 26.584 31.032 35.032 39.48 41.608 46.056 48.72 53.168 57.616 62.064 63.592 67.592 69.72 72.384 76.832 78.656 83.104 87.104 89.328 91.456 96.792 101.24 105.24 109.688 111.816 117.152 119.816 124.264 126.088 128.312 132.76 135.424 137.552 144.216 148.664 152.664 154.888 157.016 161.464 165.912 168.136 172.584 175.248 179.248 183.696 185.824 189.824 194.272 198.72 201.384 203.512 207.96 212.408 215.072 219.52 223.968 230.632 235.08 239.528 241.752 245.752 247.88 253.656 255.48 257.704 262.152 264.28 268.728 272.728 274.952 277.08 281.528 285.528 287.656 289.88 294.328 298.776 302.776 304.904 309.352 312.016 316.464 318.592 324.368 327.032 328.856 331.08 333.304 337.752 342.2\\\">under such group&apos;s rules. Such Arbiter must enforce your agreements with us, as they are written.</text></g><clipPath id=\\\"clip4-44\\\"><path d=\\\"M 35 116 L 128 116 L 128 138 L 35 138 L 35 116 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-44)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.2 137.8863 L 127.6 137.8863 L 127.6 116.777 L 35.2 116.777 L 35.2 137.8863 z \\\"/><path clip-path=\\\"url(#clip4-44)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.3 135.8863 L 123.5 135.8863 L 123.5 117.777 L 39.3 117.777 L 39.3 135.8863 z \\\"/><path clip-path=\\\"url(#clip4-44)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.6754 135.8863 L 125.6754 135.8863 L 125.6754 125.8863 L 39.6754 125.8863 L 39.6754 135.8863 z \\\"/><g clip-path=\\\"url(#clip4-44)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 39.6754 128.5113)\\\" x=\\\"0 7.552 9.376 11.2 13.024 15.152 17.376 21.824 26.272 28.4 32.848 37.296 41.744 44.408 46.232 50.68 55.128 57.256 61.704 66.152 68.28 72.728 77.176 79\\\">Will the hearing be held</text></g><path clip-path=\\\"url(#clip4-44)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 66.9449 126.8316 L 95.9449 126.8316 L 95.9449 116.8316 L 66.9449 116.8316 L 66.9449 126.8316 z \\\"/><g clip-path=\\\"url(#clip4-44)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 66.9449 119.4567)\\\" x=\\\"0 4.448 8.896 13.344 16.008 20.456 24.456\\\">nearby?</text></g><clipPath id=\\\"clip4-45\\\"><path d=\\\"M 127 116 L 206 116 L 206 138 L 127 138 L 127 116 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-45)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 158.5461 128.5113)\\\" x=\\\"0 5.336 9.784 13.784\\\">Yes.</text></g><clipPath id=\\\"clip4-46\\\"><path d=\\\"M 205 116 L 574 116 L 574 138 L 205 138 L 205 116 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-46)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 128.5113)\\\" x=\\\"0 4.888 9.336 13.784 15.912 21.248 23.912 28.36 30.184 32.408 36.856 39.52 41.648 47.424 49.248 51.072 52.896 55.024 59.472 62.136 66.584 71.032 73.696 75.824 78.048 82.496 86.944 89.072 93.52 97.968 102.416 105.08 106.904 111.352 115.8 117.928 123.704 125.528 127.752 132.2 134.024 138.472 140.6 145.048 149.496 151.624 158.288 160.112 161.936 166.384 170.384 172.512 176.96 179.184 181.312 185.312 189.76 194.208 196.872 199 203.448 207.896 214.56 219.008 221.136 225.584 228.248 230.376 236.152 240.6 245.048 247.712 252.16 254.288 256.512 260.96 265.408 267.536 269.76 272.424 276.872 281.32 285.32 289.768 293.768 295.992 297.816 302.264 306.712 308.84 313.288 317.288 321.288 325.736 328.4 331.064 335.512 339.96\\\">The Arbiter will order the hearing within 30 miles of your home or where the transaction occurred.</text></g><clipPath id=\\\"clip4-47\\\"><path d=\\\"M 35 74 L 128 74 L 128 117 L 35 117 L 35 74 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-47)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.2 116.777 L 127.6 116.777 L 127.6 74.777 L 35.2 74.777 L 35.2 116.777 z \\\"/><path clip-path=\\\"url(#clip4-47)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.3 114.777 L 123.5 114.777 L 123.5 105.7223 L 39.3 105.7223 L 39.3 114.777 z \\\"/><path clip-path=\\\"url(#clip4-47)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 43.6695 114.777 L 119.6695 114.777 L 119.6695 104.777 L 43.6695 104.777 L 43.6695 114.777 z \\\"/><g clip-path=\\\"url(#clip4-47)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 43.6695 107.402)\\\" x=\\\"0 7.552 12 16.448 18.672 20.8 25.248 29.696 34.144 38.592 40.816 42.944 47.392 51.84 56.288 60.736 65.184 67.008 71.008\\\">What about appeals?</text></g><clipPath id=\\\"clip4-48\\\"><path d=\\\"M 127 74 L 206 74 L 206 117 L 127 117 L 127 74 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-48)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 145.2277 107.402)\\\" x=\\\"0 5.336 9.784 14.232 18.68 23.128 24.952 28.952 31.08 35.528 38.192\\\">Appeals are</text></g><g clip-path=\\\"url(#clip4-48)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 153.8098 98.3473)\\\" x=\\\"0 1.824 3.648 10.312 12.136 14.36 18.808 23.256\\\">limited.</text></g><clipPath id=\\\"clip4-49\\\"><path d=\\\"M 205 74 L 574 74 L 574 117 L 205 117 L 205 74 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 107.402)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 223.3852 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 227.8141 107.402)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608 25.136\\\">Arbiter&apos;s</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.9508 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 261.3798 107.402)\\\" x=\\\"0 4.448 8.896 12.896 14.72 18.72 20.544 24.992\\\">decision</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.8251 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 295.2541 107.402)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 306.5041 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 310.933 107.402)\\\" x=\\\"0 4.448\\\">be</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.8314 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 324.2604 107.402)\\\" x=\\\"0 2.224 4.048 8.496 12.944 14.768\\\">final.</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 341.2526 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 345.6815 107.402)\\\" x=\\\"0\\\">A</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.0175 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 355.4464 107.402)\\\" x=\\\"0 4.448 8.896 11.56 13.784\\\">party</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 373.2316 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 377.6605 107.402)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 392.7738 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 397.2028 107.402)\\\" x=\\\"0 2.224 4.048 5.872\\\">file</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 407.5231 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 411.952 107.402)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 423.0731 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 427.5021 107.402)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608 25.136\\\">Arbiter&apos;s</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.6388 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 461.0678 107.402)\\\" x=\\\"0 4.448 10.224 14.672 17.336\\\">award</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 482.8568 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 487.2858 107.402)\\\" x=\\\"0 5.776 7.6 9.824\\\">with</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.5592 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 505.9882 107.402)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 517.1093 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 521.5382 107.402)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456\\\">proper</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 544.6632 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 549.0922 107.402)\\\" x=\\\"0 4 8.448 12.896 15.56 17.784\\\">court.</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 98.3473)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 19.16 23.608 25.832 27.656 32.104\\\">Arbitration</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 246.1547 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 248.4088 98.3473)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.6588 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 261.913 98.3473)\\\" x=\\\"0 4 8.448 10.272 14.272\\\">solve</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.6356 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 282.8898 98.3473)\\\" x=\\\"0 4.448 8.896 13.344 17.792 22.24 24.064\\\">appeals</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 310.9601 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 313.2142 98.3473)\\\" x=\\\"0 4.448\\\">of</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.8861 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 322.1403 98.3473)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 326.5895 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 328.8436 98.3473)\\\" x=\\\"0 4 10.664 15.112 16.936 18.76 21.424 25.424 27.248 31.696 33.52 40.184\\\">small-claims</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 373.0311 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 375.2853 98.3473)\\\" x=\\\"0 4 8.448 12.896 15.56\\\">court</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.0704 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 395.3246 98.3473)\\\" x=\\\"0 1.824 6.272 10.72 15.168 19.616 26.28 30.728 35.176 37.4\\\">judgement.</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.9535 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 437.2077 98.3473)\\\" x=\\\"0\\\">A</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 442.5436 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 444.7977 98.3473)\\\" x=\\\"0 4.448 8.896 11.56 13.784\\\">party</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 462.5829 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 464.837 98.3473)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 479.9503 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 482.2045 98.3473)\\\" x=\\\"0 4.448 8.896 13.344 17.792 22.24\\\">appeal</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 506.2748 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 508.5289 98.3473)\\\" x=\\\"0 4.448 8.896 13.344 17.792\\\">under</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 528.9899 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 531.244 98.3473)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 542.3651 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 544.6193 98.3473)\\\" x=\\\"0 4.888 10.224 15.56\\\">FAA.</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 562.4005 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 564.6547 98.3473)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 89.2926)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 220.7211 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 223.3349 89.2926)\\\" x=\\\"0 4.448 11.112 15.56 20.008 24.456\\\">amount</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 250.0185 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 252.6324 89.2926)\\\" x=\\\"0 1.824\\\">in</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 258.9058 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 261.5196 89.2926)\\\" x=\\\"0 4 8.448 12.896 15.12 17.784 22.232 26.232 30.68 33.344 37.344\\\">controversy</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.8673 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 305.4811 89.2926)\\\" x=\\\"0 4.448 8.448 12.448 16.896 21.344 25.792\\\">exceeds</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.278 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 337.8918 89.2926)\\\" x=\\\"0 4.448 8.896 11.12 15.568 20.016 24.464 26.688 31.136 35.584\\\">$1,500.00,</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.7043 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 378.3182 89.2926)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 382.7674 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 385.3812 89.2926)\\\" x=\\\"0 4.448 8.896 11.56 13.784\\\">party</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.1664 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 405.7802 89.2926)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 420.8935 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 423.5074 89.2926)\\\" x=\\\"0 4.448 8.896 13.344 17.792 22.24\\\">appeal</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.5777 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 450.1915 89.2926)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 461.3126 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 463.9264 89.2926)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608 25.136\\\">Arbiter&apos;s</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 493.0632 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 495.677 89.2926)\\\" x=\\\"0 2.224 4.048 8.496 12.944 14.768 19.216 23.664\\\">finding.</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.5676 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 524.1815 89.2926)\\\" x=\\\"0 5.336 9.784 13.784\\\">Such</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 542.4158 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 545.0297 89.2926)\\\" x=\\\"0 4.448 8.896 13.344 17.792 22.24\\\">appeal</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 80.2379)\\\" x=\\\"0 5.776 7.6 9.424 11.248 13.376 17.824 22.272 24.4 26.624 31.072 33.2\\\">will be to a</text></g><clipPath id=\\\"clip4-50\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 272.152 L 128.1 272.152 L 128.1 271.152 L 34.7 271.152 L 34.7 272.152 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 271.152 L 35.7 271.152 L 35.7 214.8238 L 34.7 214.8238 L 34.7 271.152 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.1 272.152 L 206 272.152 L 206 271.152 L 128.1 271.152 L 128.1 272.152 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127.1 271.152 L 128.1 271.152 L 128.1 214.8238 L 127.1 214.8238 L 127.1 271.152 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 272.152 L 573.7 272.152 L 573.7 271.152 L 206 271.152 L 206 272.152 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.7 271.152 L 573.7 271.152 L 573.7 214.8238 L 572.7 214.8238 L 572.7 271.152 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 271.152 L 206 271.152 L 206 214.8238 L 205 214.8238 L 205 271.152 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 214.8238 L 128.1 214.8238 L 128.1 213.8238 L 34.7 213.8238 L 34.7 214.8238 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 213.8238 L 35.7 213.8238 L 35.7 138.3863 L 34.7 138.3863 L 34.7 213.8238 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.1 214.8238 L 206 214.8238 L 206 213.8238 L 128.1 213.8238 L 128.1 214.8238 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127.1 213.8238 L 128.1 213.8238 L 128.1 138.3863 L 127.1 138.3863 L 127.1 213.8238 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 214.8238 L 573.7 214.8238 L 573.7 213.8238 L 206 213.8238 L 206 214.8238 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.7 213.8238 L 573.7 213.8238 L 573.7 138.3863 L 572.7 138.3863 L 572.7 213.8238 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 213.8238 L 206 213.8238 L 206 138.3863 L 205 138.3863 L 205 213.8238 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 138.3863 L 128.1 138.3863 L 128.1 137.3863 L 34.7 137.3863 L 34.7 138.3863 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 137.3863 L 35.7 137.3863 L 35.7 117.277 L 34.7 117.277 L 34.7 137.3863 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.1 138.3863 L 206 138.3863 L 206 137.3863 L 128.1 137.3863 L 128.1 138.3863 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127.1 137.3863 L 128.1 137.3863 L 128.1 117.277 L 127.1 117.277 L 127.1 137.3863 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 138.3863 L 573.7 138.3863 L 573.7 137.3863 L 206 137.3863 L 206 138.3863 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.7 137.3863 L 573.7 137.3863 L 573.7 117.277 L 572.7 117.277 L 572.7 137.3863 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 137.3863 L 206 137.3863 L 206 117.277 L 205 117.277 L 205 137.3863 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 117.277 L 128.1 117.277 L 128.1 116.277 L 34.7 116.277 L 34.7 117.277 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 75.277 L 128.1 75.277 L 128.1 74.277 L 34.7 74.277 L 34.7 75.277 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 116.277 L 35.7 116.277 L 35.7 75.277 L 34.7 75.277 L 34.7 116.277 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.1 117.277 L 206 117.277 L 206 116.277 L 128.1 116.277 L 128.1 117.277 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.1 75.277 L 206 75.277 L 206 74.277 L 128.1 74.277 L 128.1 75.277 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127.1 116.277 L 128.1 116.277 L 128.1 75.277 L 127.1 75.277 L 127.1 116.277 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 117.277 L 573.7 117.277 L 573.7 116.277 L 206 116.277 L 206 117.277 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 75.277 L 573.7 75.277 L 573.7 74.277 L 206 74.277 L 206 75.277 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.7 116.277 L 573.7 116.277 L 573.7 75.277 L 572.7 75.277 L 572.7 116.277 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 116.277 L 206 116.277 L 206 75.277 L 205 75.277 L 205 116.277 z \\\"/><g clip-path=\\\"url(#clip4-50)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 36.5264)\\\" x=\\\"0 6.498 11.997 14.391 16.785 21.789 26.793 29.295 34.299 39.303 44.307 504 506.3906 508.7812 511.1719 513.5625 515.9531 518.3438 520.7344 523.125 525.5156\\\">UT  07/2019          </text></g><g clip-path=\\\"url(#clip4-50)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 26.3398)\\\" x=\\\"0 6.003 11.007 16.011 21.015\\\">Page </text></g><g clip-path=\\\"url(#clip4-50)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 55.8097 26.3398)\\\" x=\\\"0\\\">5</text></g><g clip-path=\\\"url(#clip4-50)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.815 26.3398)\\\" x=\\\"0 2.394 7.398 9.9\\\"> of </text></g><g clip-path=\\\"url(#clip4-50)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 73.1021 26.3398)\\\" x=\\\"0\\\">7</text></g><g clip-path=\\\"url(#clip4-50)\\\"><text stroke=\\\"none\\\" fill=\\\"#d9d9d9\\\" style=\\\"font-family:f4-0; font-size:54pt; white-space:pre\\\" transform=\\\"matrix(0.707 0.707 0.707 -0.707 135.6027 198.5094)\\\" x=\\\"0 56.016 96.048 136.08 176.112 216.144 236.16 284.184 324.216 344.232 364.248 416.232 456.264 480.24\\\">Qoppa Software</text></g><g clip-path=\\\"url(#clip4-50)\\\"><text stroke=\\\"none\\\" fill=\\\"#002ba6\\\" style=\\\"font-family:f4-0; font-size:9pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.932 772)\\\" x=\\\"0 9.336 16.008 22.68 29.352 36.024 39.36 47.364 54.036 57.372 60.708 69.372 76.044 80.04 86.712 90.048 94.044 97.38 104.712 111.384 115.38 118.716 126.72 132.72 139.392 142.056 148.728 155.4 158.736 161.4 168.072 174.744 178.08 187.416 194.088 196.752 202.752 206.088 210.084 213.42 220.092 223.428 226.764 233.436 239.436 242.772 246.108 249.444 258.108 266.772 275.436 278.772 285.444 292.116 298.788 305.46 312.132 315.468 321.468 328.14\\\">Qoppa Software - For Evaluation Only - https://www.qoppa.com</text></g></g></svg></svg></g></svg><br>\\n<?xml version='1.0' encoding='UTF-8'?><svg id=\\\"qoppa_document\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" version=\\\"1.1\\\" xmlns=\\\"http://www.w3.org/2000/svg\\\" xmlns:xlink=\\\"http://www.w3.org/1999/xlink\\\"><!-- jPDFWeb v2019R1.03 - Demo Version --><style>title p { display: block; }</style><g id=\\\"qoppa_viewxform\\\" transform=\\\"matrix(1 0 0 1 0 0)\\\"><style type=\\\"text/css\\\">@font-face {font-family:f5-0;src:url(\\\"data:application/font-woff;charset=utf-8;base64,d09GRgABAAAAAAp8AAoAAAAADcAAAQABAAAAAAAAAAAAAAAAAAAAAAAAAABPUy8yAAAA9AAAADcAAABWWd9ZMmNtYXAAAAEsAAAAbAAAAIwCiwM0Z2x5ZgAAAZgAAAdLAAAJ6ArdyapoZWFkAAAI5AAAADEAAAA2GI9khmhoZWEAAAkYAAAAIAAAACQGNwJvaG10eAAACTgAAABeAAAAgDkXBShsb2NhAAAJmAAAAEIAAABCI1gg9G1heHAAAAncAAAAGAAAACAAIwA9bmFtZQAACfQAAAB8AAAA5g9SKYxwb3N0AAAKcAAAAAwAAAAgAAMAAHicY2Bk8mKcwMDKwMDUxbSbARlwMeogc/8DATI/MCDAkUEBCG8y3fyvxxDFdJPhEkwOAMlSDLoAeJxjYGBgZGAGYgYGHgYWhgYgLcMgABThYVBg0GewYnBj8GcIZAhmSGRIZkhjyGQoZ6j8/x+oSoFBFyjriiSbypDBkAOS/f/4//X/Z/8f/r/7/67/O/+v+b/6/6r/K/8v/78MbA9OAAAj1iOqeJxtVktsG9cVnXuHpChTEr/DjyRSHI44/IlUpeGQkvgTbepPkZJlUTQlWVLNWq2h2rHrohsv4iJo4P6SOqmRxIukDYqiWRTtJmgBN0CCBu1CRhZd1E5bdFOgdtuVG7SAAY16Z0gmClAOMPPmzX33nnfueUdigPEzf4QEjDIswwDHy5BQnsJovc7QK9Og+3tMU/2W5gT5vSb91Hnm+DE48VCd5+wS+9HcR27829EgRWNrDRroWxfD2GWJs9LKRrMJP242lQ9a66sUeInWm7SancuK68p5+K5yA3519AQP1/+0/nSdgih+heIlGnZ/Gm8VrCgpN2FF+cUOHtb+sq7cV0OpfuL4E/wzPmTMzBBFO11Ol6HL0CWG6EqntDHNSal0Kk0z8P07W9usbnfv7t3tbYT6xtuXTxcRSzPPXcvnAUslfIjN5i/f2bmA7MUv/fT1y5fLUC7f+db8Aq6svvjCwgKj1Rw9/j0+wUfMIDN5oqb61ArTi6A+qahLpA8G+jDeAhBKq1EqmpSK5m5jk0WfL+Hz+Ya80aAoJKKR9A8IIjQ2X9uanWMxm7k96HSa3S63yxUIBPiwkwPIZvCRbn//JxdmZkdcVktP0eLiBtzdp/Bi890fXrq0DDMzr3/93DnWoDeaTaf0M91Wa38glz17ZW1N63P8+N+4T5yN0QuBEsQ2+vZOQoE20LSzjbq9m/Q4BcB/DInEcm58nGUnJ4vNtbN6Q21j58ZGravRVSisnU4m2e7trYWyLCMuLlz9yuKCEZ7N8Ty43cW009nriMZuXB/7AkxMPW/cCooIPt9M2eOxcpHIxs7YGMjyV1WOReqrHh1MjMmQrlQqCVAXp3IpnCBZ1rikS1YnA7QRvdoL9XK0+i5zxenaQSIBaDDYt7r1OhhNJKbOjcQwl6vFQyEv+PlMjueNoIv4+WhUFNE7OLoXDML1XZ5HiEaXngwT82arxRK22TASmykHg106o7FbjLuc4HInL/ZRPb3VIosODrNZjePg8SfwT7QxfItjFa8GXsV6UqKaIOB7vT6fND88jEP+hsz7DRuWqUztQNXk1OTzSxNpC+xJA/2AqfTGcjbLQnB4wrRNJMLs3IsHy2UdRCKrLW2Kx0+JNydjZAKfVTarIpXG26UFQ7u0yim8g+HwdCESBoMhFpsfDQSs5/vzhfWtuXkdCe3WfLWCIBcjEcRYLDdfH4l7vWOmRljEfOHefqWi1+VzP6f9GqlamjQ1cEJTnMQJdHIFWZLFjnqiRrPZ1s85oNmsVyokigtWj9uGt1hA6O2LT5WUPHxQWuXjCT2yekbj8gzd/kHn3UVKsKbanFHiTstpeM8nhqS1xCjUYdA7nhdFqOOhcszbbQAj8fPKj2Az7vPRVteVv1ImVHMy9zRPU32LgKoJz9Tph4fNLx49I0vr1G7HMZJVogg8PErSfJFhCLKNiWrzXAfVCXSpdtdpmGwNXdZidUAU87IgWAbEYHExHCK8dkc6z/vrDk6a9fpIpQthpxPA7YlEPG7A+Mhp5TtQj/F+xFAorbwPF8PeQWRHR/PKI8JR0rixadxwn+dGaHPzylAonKvSCagD9S4fVLkxLERUJ4kn1pU3YSXj84rBivIHbdPI8HT2uinn5zxVOOGpXOdsqZ7qvZHNqN555WqhAJjJ3FwUxXB4aWVYgHAIbexS+ca3z5yBublvXl1eLmEqtbGblNlsZrmRkluaLR1PooHqOZjhzi7GTxg5iUgduxwtfmUi9lUuGJzYzuVZmMo8N8LzzvrH84EAHYvZJf8Q+P1oKAVIbKXS7YNqRQc2u1fBB5O6YrFSkyRgC/nyYjbTPi+T8LhTWy/I7aKqr0jqzmVJc/DO0aVOwuO6i+dj1zJTmM9dSAeDzpWPV6gkDPnLM8FhCAR+p3hJd7pK9eB2qQQuZ6A0qctkF8v5AguSVKsUiy1tTdOtQbW5k73r/AlRdfMyN9Af8zg4u89iMXMJj4caV4263QBGo2lV9TI2FksrD7W+ATNEnvOA8pGv25NtErs6Qjhh8F3/z+DjSWmvkkxa6jreH40KAqLb4/za3CySo+3WJib6NrqDQXlEGEb9VGY6GwrDC9lwGHm+2pOwO/r6Iv6eXt2gb6i2Go1AKFzvzbvdCA7HWNRitph5P+GzHv8XevG+6hF2zRscbQgaKNWVNK/4Wb1u7uNOdRtNPY4+s308IMD0NN5/t6S8HzxlQgBgqyw90OOpwmLpVotL2vvfiQfNI9RuqXnpwH7a0bT1DXS6StZ0yliv9ofDU3uRKKJB+XWSrN4w0H8TBo6eVUIeD7CSVIFNytlLiR9TTmJ3ACVWYC+//Grjt2c/pFW78NZnHqEjIT2glx4tbgAo1AQCu3P9SmP/G7W3N/e/vPUWrbkEbyjX4KWjZ/CScq2z1nKcgH+1cNO6NtZRaP/TUiAwdnjl/CNOGC5ZTD193b09Jotot5u4D3fuoOHoN7lYDIFl2TUdIthtQxNUaOt/bprEGQB4nGNgZGBgAOL9uy5diOe3+crAzfwCKMJw21zgLIL+r8fMyHQTqI6DgQkkCgBowQuoAAAAeJxjYGRgYLr5X48hitmRgeH/fWZGBqAIClAAAHbABKt4nGNggABGXyAWA9MKQDoKzAbSTLMZ/JmSGQKYuRj0QRjI12XSYVBj/MKgDqTVgWo4gLQzwz0IZnZkcATyXYBYGUqrAc10AKqXB6oVBPKdgGxepksMLEBaAABlFhBuAAAAAAAAAAAAAAAAAA4AGgAoADoAUgBoAKIBAgFUAbQB8AIsAloChAKYAqQC6AMSA0oDiAPGA+4EPgRsBJYEqgTIBPQAAHicY2BkYGBQYLBhYGIAAUYGNAAACboAYXicdcq9CoJgFIfxx+9anRobHCMUoguohq7AIVrEQoMXDROhpWvvD50xObyHH897gIQLAV64BFK9nz05NfssyMwBKzbmUD6ZI/lqjuWRIz1P3gw8aGhVztxxTNqjWk3FQTeO25+fDzv2s71UGXip9XSsKdiSa2buv2bjHPt4nGNgZsALAAB9AAQ=\\\");}@font-face {font-family:f5-1;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f5-2;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}</style><svg id=\\\"qoppa_page_p5\\\" class=\\\"qoppa_page\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\"><rect class=\\\"qoppa_pageborder\\\" x=\\\"0.5pt\\\" y=\\\"0.5pt\\\" width=\\\"611pt\\\" height=\\\"791pt\\\" fill=\\\"none\\\" /><svg class=\\\"qoppa_pagecontents\\\" x=\\\"0pt\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" viewBox=\\\"0 0 612 792\\\" ><g class=\\\"qoppa_contentstream\\\" transform=\\\"matrix(1 0 0 -1 0 792)\\\" fill=\\\"black\\\" stroke=\\\"black\\\" stroke-width=\\\"1\\\" stroke-linecap=\\\"butt\\\" stroke-linejoin=\\\"miter\\\" stroke-miterlimit=\\\"10\\\"><clipPath id=\\\"clip5-1\\\"><path d=\\\"M 35 727 L 128 727 L 128 770 L 35 770 L 35 727 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-1)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.2 769.7 L 127.6 769.7 L 127.6 727.7 L 35.2 727.7 L 35.2 769.7 z \\\"/><clipPath id=\\\"clip5-2\\\"><path d=\\\"M 205 727 L 574 727 L 574 770 L 205 770 L 205 727 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 760.325)\\\" x=\\\"0 4.448 7.112 12.448 15.112 19.56 21.384 23.608 28.056\\\">3-Arbiter</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 240.3227 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 243.109 760.325)\\\" x=\\\"0 4.448 8.896 13.344 17.792\\\">panel</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.7301 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 265.5165 760.325)\\\" x=\\\"0 2.224 4.888 9.336\\\">from</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.5165 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 284.3029 760.325)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 295.424 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 298.2103 760.325)\\\" x=\\\"0 4 8.448 15.112\\\">same</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 317.7728 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 320.5592 760.325)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 26.768 31.216\\\">arbitration</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 356.2272 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 359.0136 760.325)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456\\\">group.</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 381.6972 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 384.4835 760.325)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 398.2687 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 401.0551 760.325)\\\" x=\\\"0 4.448 8.896 13.344 17.792 22.24\\\">appeal</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 425.1254 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 427.9118 760.325)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 439.1618 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 441.9481 760.325)\\\" x=\\\"0 4.448\\\">be</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 450.8466 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 453.6329 760.325)\\\" x=\\\"0 4.448\\\">de</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 462.5314 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 465.3178 760.325)\\\" x=\\\"0 4.448 8.896 12.896 17.344\\\">novo,</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.8881 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 487.6745 760.325)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.0221 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 503.8085 760.325)\\\" x=\\\"0 4 8.448 10.272 14.272 18.72\\\">solved</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.9804 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 529.7667 760.325)\\\" x=\\\"0 4.448\\\">by</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 538.216 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 541.0023 760.325)\\\" x=\\\"0 6.664 11.112 12.936 17.384 20.048 21.872 24.096\\\">majority</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 751.2703)\\\" x=\\\"0 4 8.448 10.672 15.12\\\">vote.</text></g><clipPath id=\\\"clip5-3\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-3)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 770.2 L 128.1 770.2 L 128.1 769.2 L 34.7 769.2 L 34.7 770.2 z \\\"/><path clip-path=\\\"url(#clip5-3)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 728.2 L 128.1 728.2 L 128.1 727.2 L 34.7 727.2 L 34.7 728.2 z \\\"/><path clip-path=\\\"url(#clip5-3)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 769.2 L 35.7 769.2 L 35.7 728.2 L 34.7 728.2 L 34.7 769.2 z \\\"/><path clip-path=\\\"url(#clip5-3)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.1 770.2 L 206 770.2 L 206 769.2 L 128.1 769.2 L 128.1 770.2 z \\\"/><path clip-path=\\\"url(#clip5-3)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.1 728.2 L 206 728.2 L 206 727.2 L 128.1 727.2 L 128.1 728.2 z \\\"/><path clip-path=\\\"url(#clip5-3)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127.1 769.2 L 128.1 769.2 L 128.1 728.2 L 127.1 728.2 L 127.1 769.2 z \\\"/><path clip-path=\\\"url(#clip5-3)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 770.2 L 573.7 770.2 L 573.7 769.2 L 206 769.2 L 206 770.2 z \\\"/><path clip-path=\\\"url(#clip5-3)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 728.2 L 573.7 728.2 L 573.7 727.2 L 206 727.2 L 206 728.2 z \\\"/><path clip-path=\\\"url(#clip5-3)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.7 769.2 L 573.7 769.2 L 573.7 728.2 L 572.7 728.2 L 572.7 769.2 z \\\"/><path clip-path=\\\"url(#clip5-3)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 769.2 L 206 769.2 L 206 728.2 L 205 728.2 L 205 769.2 z \\\"/><g clip-path=\\\"url(#clip5-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 241.2386 715.4812)\\\" x=\\\"0 6.67 10 15.56 17.84 20.62 23.95 29.51 32.29 34.57 40.13 45.69 48.35 54.46 60.02 65.58 70.58 73.24 78.8 84.36 89.92 92.58 99.25 106.47 112.03 115.36 120.92\\\">Ar* D E M O *ees and Awards</text></g><clipPath id=\\\"clip5-4\\\"><path d=\\\"M 35 680 L 128 680 L 128 705 L 35 705 L 35 680 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-4)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.6 704.277 L 127.5 704.277 L 127.5 680.277 L 35.6 680.277 L 35.6 704.277 z \\\"/><path clip-path=\\\"url(#clip5-4)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.7 700.777 L 123.4 700.777 L 123.4 682.6676 L 39.7 682.6676 L 39.7 700.777 z \\\"/><path clip-path=\\\"url(#clip5-4)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 52.677 700.777 L 110.677 700.777 L 110.677 690.777 L 52.677 690.777 L 52.677 700.777 z \\\"/><g clip-path=\\\"url(#clip5-4)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 52.677 693.4019)\\\" x=\\\"0 7.552 9.376 11.2 13.024 15.152 20.928 25.376 27.504 31.952 36.4 40.4 44.848 49.296 53.296\\\">Will we advance</text></g><path clip-path=\\\"url(#clip5-4)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 51.093 691.7223 L 112.093 691.7223 L 112.093 681.7223 L 51.093 681.7223 L 51.093 691.7223 z \\\"/><g clip-path=\\\"url(#clip5-4)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 51.093 684.3473)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 19.16 23.608 25.832 27.656 32.104 36.552 38.68 43.568 48.016 52.464 56.464\\\">Arbitration Fees?</text></g><clipPath id=\\\"clip5-5\\\"><path d=\\\"M 127 680 L 206 680 L 206 705 L 127 705 L 127 680 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-5)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 135.7422 693.4019)\\\" x=\\\"0 5.336 9.784 13.784 16.008 18.136 22.584 27.032 29.256 31.384 35.384 39.832 44.28 46.408 53.072 57.52\\\">Yes, but you may</text></g><g clip-path=\\\"url(#clip5-5)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 148.541 684.3473)\\\" x=\\\"0 4.448 8.896 12.896 15.024 19.024 23.472 27.472 29.696 33.696\\\">pay costs.</text></g><clipPath id=\\\"clip5-6\\\"><path d=\\\"M 205 680 L 573 680 L 573 705 L 205 705 L 205 680 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 693.4019)\\\" x=\\\"0 7.552\\\">We</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 221.6 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 224.0728 693.4019)\\\" x=\\\"0 4.448 8.896 12.896 17.344 21.792 25.792\\\">advance</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 254.3189 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 256.7917 693.4019)\\\" x=\\\"0 4 8.448 12.896\\\">your</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 272.3542 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 274.827 693.4019)\\\" x=\\\"0 2.84 8.176 10.84 15.288 17.112 19.336 22 26.448 28.672 30.496 34.944\\\">&quot;Arbitration</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 314.2216 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 316.6944 693.4019)\\\" x=\\\"0 4.888 9.336 13.784 17.784\\\">Fees&quot;</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 337.3194 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 339.7922 693.4019)\\\" x=\\\"0 1.824\\\">if</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 343.8391 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 346.3119 693.4019)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.2103 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 361.6831 693.4019)\\\" x=\\\"0 4.448 8.448\\\">ask</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 374.1323 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 376.6051 693.4019)\\\" x=\\\"0 4.448\\\">us</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 385.0544 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 387.5272 693.4019)\\\" x=\\\"0 2.224 6.672\\\">to.</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 396.4217 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 398.8945 693.4019)\\\" x=\\\"0 4.888 9.336 11.16\\\">This</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 414.0547 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 416.5275 693.4019)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44\\\">includes</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 445.9728 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 448.4456 693.4019)\\\" x=\\\"0 2.224 4.048 5.872 7.696 12.144 16.592\\\">filing,</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.262 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 469.7348 693.4019)\\\" x=\\\"0 4.448 8.896 15.56 17.384 21.832 23.656 27.656 29.88 32.544 36.992 39.216 41.04 45.04 49.488\\\">administrative,</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.4497 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 523.9225 693.4019)\\\" x=\\\"0 4.448 8.896 13.344 16.008 17.832 22.28 26.728\\\">hearing,</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.8795 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 555.3523 693.4019)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 684.3473)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608 25.136 29.136 31.264 33.488 37.936 42.384 46.384 48.608 50.736 56.072 60.52 64.968 67.096 71.544 75.992 79.992 82.12 86.12 90.568 95.016 97.68 99.808 104.256 106.48 108.704 113.152 115.816 120.264 124.712 128.712 130.84 133.064 137.512 141.96 145.96 148.088 152.536 156.984 161.432 163.56 168.008 170.232 174.68 179.128 181.792 183.92 188.368 192.368 196.816 201.264 205.712 209.712 214.16 218.16\\\">Arbiter&apos;s fees. You pay your attorney fees and other expenses.</text></g><clipPath id=\\\"clip5-7\\\"><path d=\\\"M 35 656 L 128 656 L 128 681 L 35 681 L 35 656 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-7)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.6 680.277 L 127.5 680.277 L 127.5 656.6769 L 35.6 656.6769 L 35.6 680.277 z \\\"/><path clip-path=\\\"url(#clip5-7)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.7 676.277 L 123.4 676.277 L 123.4 658.1676 L 39.7 658.1676 L 39.7 676.277 z \\\"/><path clip-path=\\\"url(#clip5-7)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 50.0715 676.277 L 113.0715 676.277 L 113.0715 666.277 L 50.0715 666.277 L 50.0715 676.277 z \\\"/><g clip-path=\\\"url(#clip5-7)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 50.0715 668.9019)\\\" x=\\\"0 5.336 8 12.448 14.576 19.024 23.472 30.136 34.584 39.032 43.48 47.48 49.608 54.056 58.504\\\">Are damages and</text></g><path clip-path=\\\"url(#clip5-7)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 40.4641 667.2223 L 123.4641 667.2223 L 123.4641 657.2223 L 40.4641 657.2223 L 40.4641 667.2223 z \\\"/><g clip-path=\\\"url(#clip5-7)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.4641 659.8473)\\\" x=\\\"0 4.448 6.672 8.896 13.344 16.008 20.456 24.904 28.904 31.032 33.256 37.704 42.152 46.152 48.28 52.728 57.176 61.176 65.176 67 71.448 73.272 77.72\\\">attorney fees possible?</text></g><clipPath id=\\\"clip5-8\\\"><path d=\\\"M 127 656 L 206 656 L 206 681 L 127 681 L 127 656 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 139.625 668.9019)\\\" x=\\\"0 5.336 9.784 13.784 16.008 18.136 19.96 22.184 24.312 28.76 30.584 32.408 36.856 42.632 47.08 51.528\\\">Yes, if allowed.</text></g><clipPath id=\\\"clip5-9\\\"><path d=\\\"M 205 656 L 573 656 L 573 681 L 205 681 L 205 656 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 668.9019)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 223.3852 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 225.9124 668.9019)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 249.5218 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 252.049 668.9019)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 267.1623 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 269.6895 668.9019)\\\" x=\\\"0 4.448 10.224 14.672 17.336\\\">award</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.4786 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 294.0058 668.9019)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 305.1269 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 307.6542 668.9019)\\\" x=\\\"0 4 8.448 15.112\\\">same</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 327.2167 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 329.7439 668.9019)\\\" x=\\\"0 4.448 8.896 15.56 20.008 24.456 28.904\\\">damages</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 362.6541 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 365.1813 668.9019)\\\" x=\\\"0 4.448\\\">as</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 373.6305 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 376.1578 668.9019)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.607 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 383.1342 668.9019)\\\" x=\\\"0 4 8.448 12.896 15.56 17.784\\\">court.</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.142 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 405.6693 668.9019)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608\\\">Arbiters</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 433.2786 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 435.8059 668.9019)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 450.9192 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 453.4464 668.9019)\\\" x=\\\"0 4.448 10.224 14.672 17.336\\\">award</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 475.2355 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 477.7627 668.9019)\\\" x=\\\"0 2.664 7.112 11.56 15.56 20.008 24.456 28.904 33.352 35.176\\\">reasonable</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 517.3955 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 519.9227 668.9019)\\\" x=\\\"0 4.448 6.672 8.896 13.344 16.008 20.456 24.904\\\">attorney</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 548.829 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 551.3562 668.9019)\\\" x=\\\"0 2.224 6.672 11.12 15.12\\\">fees,</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 659.8473)\\\" x=\\\"0 4.448 8.896 13.344 15.472 19.92 23.92 28.368 32.816 37.264 41.264 45.712 49.712 51.936 54.064 55.888 58.112 60.24 64.688 66.512 68.336 72.784 78.56 83.008 87.456 89.584 94.032 98.032 100.16 101.984 106.432 112.208\\\">and expenses, * D E M O *by law.</text></g><clipPath id=\\\"clip5-10\\\"><path d=\\\"M 35 633 L 128 633 L 128 657 L 35 657 L 35 633 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-10)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.6 656.6769 L 127.5 656.6769 L 127.5 633.077 L 35.6 633.077 L 35.6 656.6769 z \\\"/><path clip-path=\\\"url(#clip5-10)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.7 652.6769 L 123.4 652.6769 L 123.4 634.5676 L 39.7 634.5676 L 39.7 652.6769 z \\\"/><path clip-path=\\\"url(#clip5-10)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 40.675 652.6769 L 124.675 652.6769 L 124.675 642.6769 L 40.675 642.6769 L 40.675 652.6769 z \\\"/><g clip-path=\\\"url(#clip5-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 645.3019)\\\" x=\\\"0 7.552 9.376 11.2 13.024 15.152 19.152 23.6 28.048 30.176 34.624 39.072 43.072 45.2 50.536 53.2 57.648 59.472 61.696 64.36 68.808 71.032 72.856 77.304\\\">Will you pay Arbitration</text></g><path clip-path=\\\"url(#clip5-10)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 52.7473 643.6223 L 110.7473 643.6223 L 110.7473 633.6223 L 52.7473 633.6223 L 52.7473 643.6223 z \\\"/><g clip-path=\\\"url(#clip5-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 52.7473 636.2473)\\\" x=\\\"0 4.888 9.336 13.784 17.784 19.912 21.736 23.96 26.088 30.088 34.536 38.984 41.112 46.888 48.712 53.16\\\">Fees if you win?</text></g><clipPath id=\\\"clip5-11\\\"><path d=\\\"M 127 633 L 206 633 L 206 657 L 127 657 L 127 633 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 160.2754 645.3019)\\\" x=\\\"0 5.776 10.224\\\">No.</text></g><clipPath id=\\\"clip5-12\\\"><path d=\\\"M 205 633 L 573 633 L 573 657 L 205 657 L 205 633 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 645.3019)\\\" x=\\\"0 2.224 4.448 6.576 8.8 13.248 17.696 19.824 25.16 27.824 32.272 34.096 36.32 40.768 43.432 45.56 50.008 55.784 60.232 62.896 67.344 71.344 73.472 77.472 81.92 86.368 88.496 90.72 95.168 99.616 104.064 108.064 110.288 112.416 116.416 120.864 125.312 127.44 131.888 136.336 140.784 142.312 144.536 146.664 149.328 153.776 155.6 162.264 166.712 171.16 173.824 177.824 182.272 184.4 188.848 192.848 194.976 197.2 201.648 206.096 208.224 213.56 216.224 220.672 222.496 224.72 227.384 231.832 234.056 235.88 240.328 244.776 246.904 251.792 256.24 260.688 264.688\\\">If the Arbiter awards you funds, you don&apos;t reimburse us the Arbitration Fees.</text></g><clipPath id=\\\"clip5-13\\\"><path d=\\\"M 35 601 L 128 601 L 128 634 L 35 634 L 35 601 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-13)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.6 633.077 L 127.5 633.077 L 127.5 601.9129 L 35.6 601.9129 L 35.6 633.077 z \\\"/><path clip-path=\\\"url(#clip5-13)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.7 629.077 L 123.4 629.077 L 123.4 610.9676 L 39.7 610.9676 L 39.7 629.077 z \\\"/><path clip-path=\\\"url(#clip5-13)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 51.1711 629.077 L 112.1711 629.077 L 112.1711 619.077 L 51.1711 619.077 L 51.1711 629.077 z \\\"/><g clip-path=\\\"url(#clip5-13)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 51.1711 621.702)\\\" x=\\\"0 7.552 9.376 11.2 13.024 15.152 19.152 23.6 28.048 30.176 34.624 38.624 43.072 45.736 47.864 52.312 56.76\\\">Will you ever pay</text></g><path clip-path=\\\"url(#clip5-13)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 51.093 620.0223 L 112.093 620.0223 L 112.093 610.0223 L 51.093 610.0223 L 51.093 620.0223 z \\\"/><g clip-path=\\\"url(#clip5-13)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 51.093 612.6473)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 19.16 23.608 25.832 27.656 32.104 36.552 38.68 43.568 48.016 52.464 56.464\\\">Arbitration Fees?</text></g><clipPath id=\\\"clip5-14\\\"><path d=\\\"M 127 601 L 206 601 L 206 634 L 127 634 L 127 601 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-14)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 152.2715 621.702)\\\" x=\\\"0 5.336 9.784 13.784 16.008 21.784 26.232\\\">Yes/No.</text></g><clipPath id=\\\"clip5-15\\\"><path d=\\\"M 205 601 L 573 601 L 573 634 L 205 634 L 205 601 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 621.702)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 214.0453 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 217.6688 621.702)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 228.7898 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 232.4133 621.702)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.0227 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 259.6461 621.702)\\\" x=\\\"0 4.448 8.896 13.344 17.344 21.792 23.32\\\">doesn&apos;t</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 285.193 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 288.8164 621.702)\\\" x=\\\"0 4.448 10.224 14.672 17.336\\\">award</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 310.6055 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 314.2289 621.702)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 327.1273 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 330.7508 621.702)\\\" x=\\\"0 2.224 6.672 11.12 15.568 19.568\\\">funds,</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 352.5437 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 356.1672 621.702)\\\" x=\\\"0 2.224 6.672 11.12\\\">then</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.7375 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 375.3609 621.702)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.2594 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 391.8828 621.702)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 406.9961 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 410.6195 621.702)\\\" x=\\\"0 2.664 7.112 11.56 16.008\\\">repay</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.6312 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 434.2547 621.702)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 445.3758 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 448.9992 621.702)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 19.16 23.608 25.832 27.656 32.104\\\">Arbitration</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 485.5539 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 489.1773 621.702)\\\" x=\\\"0 4.888 9.336 13.784 17.784\\\">Fees.</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.1851 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 512.8086 621.702)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.5937 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 530.2172 621.702)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.8265 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 557.45 621.702)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 612.6473)\\\" x=\\\"0 4.448 8.896 12.896 14.72 19.168\\\">decide</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.2211 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 236.7228 612.6473)\\\" x=\\\"0 5.776 10.224 14.672 16.896 21.344 25.792\\\">whether</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 265.1838 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 268.6855 612.6473)\\\" x=\\\"0 4 8.448 12.896 14.424 16.248\\\">you&apos;ll</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 286.7597 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 290.2614 612.6473)\\\" x=\\\"0 4.448 8.896 12.896\\\">pay.</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 305.3825 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 308.8842 612.6473)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 313.3295 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 316.8312 612.6473)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.7297 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 333.2314 612.6473)\\\" x=\\\"0 6.664 11.112 15.112\\\">must</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 350.5673 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 354.0691 612.6473)\\\" x=\\\"0 4.448 8.896\\\">pay</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 366.9675 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 370.4692 612.6473)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 19.16 23.608 25.832 27.656 32.104\\\">Arbitration</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 407.0239 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 410.5256 612.6473)\\\" x=\\\"0 4.888 9.336 13.784 17.784\\\">Fees,</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.5334 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 434.0351 612.6473)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 445.1562 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 448.658 612.6473)\\\" x=\\\"0 4.448 11.112 15.56 20.008 24.456\\\">amount</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 475.3415 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 478.8433 612.6473)\\\" x=\\\"0 5.776 10.224 14.672 16.2\\\">won&apos;t</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 497.269 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 500.7708 612.6473)\\\" x=\\\"0 4.448 8.448 12.448 16.896 21.344\\\">exceed</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.5676 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 530.0694 612.6473)\\\" x=\\\"0 4 6.224 10.672 12.896\\\">state</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 547.4131 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 550.9148 612.6473)\\\" x=\\\"0 4 8.448 12.896 15.56\\\">court</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 603.5926)\\\" x=\\\"0 4 8.448 12.448 14.672 18.672\\\">costs.</text></g><clipPath id=\\\"clip5-16\\\"><path d=\\\"M 35 534 L 128 534 L 128 602 L 35 602 L 35 534 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-16)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.6 601.9129 L 127.5 601.9129 L 127.5 534.5301 L 35.6 534.5301 L 35.6 601.9129 z \\\"/><path clip-path=\\\"url(#clip5-16)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.7 597.9129 L 123.4 597.9129 L 123.4 579.8035 L 39.7 579.8035 L 39.7 597.9129 z \\\"/><path clip-path=\\\"url(#clip5-16)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 45.2063 597.9129 L 118.2063 597.9129 L 118.2063 587.9129 L 45.2063 587.9129 L 45.2063 597.9129 z \\\"/><g clip-path=\\\"url(#clip5-16)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 45.2063 590.5379)\\\" x=\\\"0 7.552 12 16.448 18.672 20.8 25.248 29.696 34.144 38.592 43.04 47.488 51.488 53.616 55.44 57.664 59.792 63.792 68.24\\\">What happens if you</text></g><path clip-path=\\\"url(#clip5-16)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 73.3 588.8582 L 90.3 588.8582 L 90.3 578.8582 L 73.3 578.8582 L 73.3 588.8582 z \\\"/><g clip-path=\\\"url(#clip5-16)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 73.3 581.4832)\\\" x=\\\"0 5.776 7.6 12.048\\\">win?</text></g><clipPath id=\\\"clip5-17\\\"><path d=\\\"M 127 534 L 206 534 L 206 602 L 127 602 L 127 534 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-17)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 131.9356 590.5379)\\\" x=\\\"0 5.336 9.784 14.232 16.36 20.36 24.808 29.256 31.08 35.528 37.656 42.104 46.552 48.776 50.904 57.568 62.016 64.68\\\">You could get more</text></g><g clip-path=\\\"url(#clip5-17)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 139.2246 581.4832)\\\" x=\\\"0 2.224 6.672 11.12 15.568 17.696 19.92 24.368 28.816 30.944 36.28 38.944 43.392 45.216 47.44 51.888\\\">than the Arbiter</text></g><g clip-path=\\\"url(#clip5-17)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 150.0449 572.4285)\\\" x=\\\"0 4.448 10.224 14.672 17.336 21.784 26.232 30.68\\\">awarded.</text></g><clipPath id=\\\"clip5-18\\\"><path d=\\\"M 205 534 L 573 534 L 573 602 L 205 602 L 205 534 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 590.5379)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 214.0453 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 216.367 590.5379)\\\" x=\\\"0 4.448\\\">an</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.2654 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 227.5871 590.5379)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608 25.136\\\">Arbiter&apos;s</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.7238 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 259.0455 590.5379)\\\" x=\\\"0 4.448 10.224 14.672 17.336\\\">award</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.8345 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 283.1562 590.5379)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 289.8281 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 292.1498 590.5379)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 305.0482 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 307.3699 590.5379)\\\" x=\\\"0 4.448 8.448 12.448 16.896 21.344 25.792\\\">exceeds</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 337.1667 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 339.4884 590.5379)\\\" x=\\\"0 4.448 8.896\\\">our</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.0509 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 353.3726 590.5379)\\\" x=\\\"0 1.824 6.272 10.272\\\">last</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 365.8687 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 368.1903 590.5379)\\\" x=\\\"0 5.336 9.784 12.008 14.232 16.056 20.504 27.168 31.616 36.064\\\">Settlement</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 406.4794 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 408.8011 590.5379)\\\" x=\\\"0 6.224 8.448 10.672 15.12 17.784\\\">Offer,</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 428.805 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 431.1266 590.5379)\\\" x=\\\"0 5.776\\\">we</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 441.3532 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 443.6749 590.5379)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.9249 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 457.2465 590.5379)\\\" x=\\\"0 4.448 8.896\\\">pay</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 470.145 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 472.4666 590.5379)\\\" x=\\\"0\\\">3</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 476.9159 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 479.2375 590.5379)\\\" x=\\\"0 4.448 11.112 15.56 20.008 24.456 26.68 30.68\\\">amounts.</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.1438 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 514.4654 590.5379)\\\" x=\\\"0 7.552\\\">We</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.4654 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 528.7871 590.5379)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 540.0371 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 542.3588 590.5379)\\\" x=\\\"0 4.448 8.896\\\">pay</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 555.2572 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 557.5789 590.5379)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 581.4832)\\\" x=\\\"0 4.448 7.112 11.56 16.008 18.232 22.68\\\">greater</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 234.9477 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 238.6632 581.4832)\\\" x=\\\"0 4.448\\\">of</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.3351 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 249.0506 581.4832)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 260.1717 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 263.8872 581.4832)\\\" x=\\\"0 4.448 10.224 14.672 17.336\\\">award</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 285.6762 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 289.3918 581.4832)\\\" x=\\\"0 4.448 11.112 15.56 20.008 24.456\\\">amount</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 316.0754 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 319.7909 581.4832)\\\" x=\\\"0 4.448\\\">or</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 326.9042 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 330.6197 581.4832)\\\" x=\\\"0 4.448 8.896 13.344 17.792 20.016 24.464\\\">$500.00</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.5376 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 363.2532 581.4832)\\\" x=\\\"0 2.664 5.504 9.952 14.4 18.848 23.296\\\">(&quot;bonus</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 390.5539 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 394.2695 581.4832)\\\" x=\\\"0 4.448 8.896 12.896 19.56 24.008 28.456 30.68 33.52 36.184\\\">payment&quot;).</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 432.6796 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 436.3951 581.4832)\\\" x=\\\"0 7.552\\\">We</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 448.3951 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 452.1107 581.4832)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 463.3607 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 467.0762 581.4832)\\\" x=\\\"0 4.448 8.896\\\">pay</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 479.9746 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 483.6901 581.4832)\\\" x=\\\"0 4 8.448 12.896\\\">your</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.2526 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 502.9682 581.4832)\\\" x=\\\"0 4.448 6.672 8.896 13.344 16.008 20.456 24.904\\\">attorney</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 531.8744 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 535.5899 581.4832)\\\" x=\\\"0 2.224 8 9.824 13.824\\\">twice</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.8634 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 557.5789 581.4832)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 572.4285)\\\" x=\\\"0 4.448 6.672 8.896 13.344 16.008 20.456 24.904\\\">attorney</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.5063 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 242.1723 572.4285)\\\" x=\\\"0 2.224 6.672 11.12\\\">fees</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.2934 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 260.9594 572.4285)\\\" x=\\\"0 4 8.448 12.896 15.12 19.568 22.232 24.896 29.344\\\">conferred</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 294.7563 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 298.4224 572.4285)\\\" x=\\\"0 2.664 5.504 9.952 12.176 14.4 18.848 21.512 25.96 30.408\\\">(&quot;attorney</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 332.8325 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 336.4986 572.4285)\\\" x=\\\"0 4.448 7.112 11.56 18.224 20.048 24.496 31.16 34 36.664\\\">premium&quot;).</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.3892 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 379.0552 572.4285)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.5005 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 387.1666 572.4285)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 398.2877 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 401.9537 572.4285)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 425.5631 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 429.2291 572.4285)\\\" x=\\\"0 4.448 7.112 11.56 16.008 18.672 22.672\\\">orders,</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.1276 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 457.7936 572.4285)\\\" x=\\\"0 5.776\\\">we</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.0202 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 471.6862 572.4285)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 482.9362 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 486.6023 572.4285)\\\" x=\\\"0 4.448 8.896\\\">pay</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.5007 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 503.1667 572.4285)\\\" x=\\\"0 2.664 7.112 11.56 15.56 20.008 24.456 28.904 33.352 35.176\\\">reasonable</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 542.7996 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 546.4656 572.4285)\\\" x=\\\"0 4.448 8.448 12.896 17.344 20.008\\\">expert</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 563.3738)\\\" x=\\\"0 5.776 7.6 9.824 14.272 18.72 22.72\\\">witness</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 236.3227 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 238.5023 563.3738)\\\" x=\\\"0 4 8.448 12.448 14.672\\\">costs</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.1741 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 259.3537 563.3738)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 272.7014 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 274.881 563.3738)\\\" x=\\\"0 4.448 6.672 11.12 15.568\\\">other</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 293.1153 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 295.2949 563.3738)\\\" x=\\\"0 4 8.448 12.448 14.672\\\">costs</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 313.9668 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 316.1464 563.3738)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.0448 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 331.2244 563.3738)\\\" x=\\\"0 1.824 6.272 10.272 14.72 17.384 20.048 24.496\\\">incurred</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 360.1736 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 362.3532 563.3738)\\\" x=\\\"0 2.664 5.504 9.504 13.952 17.952\\\">(&quot;cost</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 382.529 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 384.7086 563.3738)\\\" x=\\\"0 4.448 7.112 11.56 18.224 20.048 24.496 31.16 34 36.664\\\">premium&quot;).</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 423.5992 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 425.7788 563.3738)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.2241 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 432.4037 563.3738)\\\" x=\\\"0 5.776\\\">we</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 442.6303 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 444.8099 563.3738)\\\" x=\\\"0 4.448 8.896 12.896 17.344\\\">never</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 464.8216 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 467.0012 563.3738)\\\" x=\\\"0 6.664 11.112 15.56\\\">made</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 487.0129 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 489.1925 563.3738)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 493.6417 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 495.8213 563.3738)\\\" x=\\\"0 5.336 9.784 12.008 14.232 16.056 20.504 27.168 31.616 36.064\\\">Settlement</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 534.1103 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 536.2899 563.3738)\\\" x=\\\"0 6.224 8.448 10.672 15.12 17.784\\\">Offer,</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 556.2938 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 558.4734 563.3738)\\\" x=\\\"0 5.776\\\">we</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 554.3191)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 220.85 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 224.1983 554.3191)\\\" x=\\\"0 4.448 8.896\\\">pay</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 237.0968 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 240.4451 554.3191)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 251.5662 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 254.9145 554.3191)\\\" x=\\\"0 4.448 8.896 13.344 17.792\\\">bonus</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.7114 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 280.0597 554.3191)\\\" x=\\\"0 4.448 8.896 12.896 19.56 24.008 28.456 30.68\\\">payment,</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.966 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 316.3143 554.3191)\\\" x=\\\"0 4.448 6.672 8.896 13.344 16.008 20.456 24.904\\\">attorney</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 345.2206 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 348.5689 554.3191)\\\" x=\\\"0 4.448 7.112 11.56 18.224 20.048 24.496 31.16\\\">premium,</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 381.9556 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 385.3039 554.3191)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 398.6516 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 401.9999 554.3191)\\\" x=\\\"0 4.448 8.896\\\">any</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 414.8984 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 418.2467 554.3191)\\\" x=\\\"0 4 8.448 12.448\\\">cost</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 432.9186 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 436.2669 554.3191)\\\" x=\\\"0 4.448 7.112 11.56 18.224 20.048 24.496 31.16\\\">premium.</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 469.6536 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 473.002 554.3191)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.7871 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 490.1355 554.3191)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 513.7448 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 517.0932 554.3191)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 532.2064 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 535.5548 554.3191)\\\" x=\\\"0 4.448 7.112 11.56 16.008\\\">order</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 554.2306 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 557.5789 554.3191)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 545.2645)\\\" x=\\\"0 4.448 7.112 11.56 15.56 20.008 24.008\\\">process</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 237.6117 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 240.0494 545.2645)\\\" x=\\\"0 2.224 6.672\\\">for</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 249.3853 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 251.8229 545.2645)\\\" x=\\\"0 4.448 8.896 12.896 19.56 24.008 28.456 30.68\\\">payment.</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 284.7292 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 287.1668 545.2645)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.6121 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 294.0498 545.2645)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 298.499 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 300.9366 545.2645)\\\" x=\\\"0 1.824 6.272\\\">law</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.9874 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 315.425 545.2645)\\\" x=\\\"0 4.448 6.272 8.096 12.544 18.32\\\">allows</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 337.7493 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 340.1869 545.2645)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 353.0853 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 355.523 545.2645)\\\" x=\\\"0 6.664 11.112 13.776 18.224\\\">more,</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.9722 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 378.4098 545.2645)\\\" x=\\\"0 2.224 6.672 8.496\\\">this</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 390.9059 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 393.3436 545.2645)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496\\\">Clause</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 418.2928 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 420.7304 545.2645)\\\" x=\\\"0 5.776 10.224 14.672 16.2\\\">won&apos;t</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 439.1562 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 441.5938 545.2645)\\\" x=\\\"0 4.448 7.112 11.56 15.56 20.008 24.456\\\">prevent</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.2774 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 470.7151 545.2645)\\\" x=\\\"0 4 8.448 12.448\\\">such</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 487.6135 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 490.0511 545.2645)\\\" x=\\\"0 4.448 10.224 14.672 17.336 21.784\\\">award.</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 514.0628 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 516.5005 545.2645)\\\" x=\\\"0 7.552\\\">We</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 528.5005 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 530.9381 545.2645)\\\" x=\\\"0 5.776 10.224 14.672 16.2\\\">won&apos;t</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.3639 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 551.8015 545.2645)\\\" x=\\\"0 4 8.448 12.896\\\">seek</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 536.2098)\\\" x=\\\"0 4.448 6.672 8.896 13.344 16.008 20.456 24.904 28.904 31.032 33.256 37.704 42.152 46.152 48.28 52.728 57.176 61.624 63.752 68.2 72.2 76.648 81.096 85.544 89.544 93.992 97.992\\\">attorney fees and expenses.</text></g><clipPath id=\\\"clip5-19\\\"><path d=\\\"M 35 510 L 128 510 L 128 535 L 35 535 L 35 510 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-19)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.6 534.5301 L 127.5 534.5301 L 127.5 510.5301 L 35.6 510.5301 L 35.6 534.5301 z \\\"/><path clip-path=\\\"url(#clip5-19)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.7 530.5301 L 123.4 530.5301 L 123.4 512.4207 L 39.7 512.4207 L 39.7 530.5301 z \\\"/><path clip-path=\\\"url(#clip5-19)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 51.2317 530.5301 L 112.2317 530.5301 L 112.2317 520.5301 L 51.2317 520.5301 L 51.2317 530.5301 z \\\"/><g clip-path=\\\"url(#clip5-19)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 51.2317 523.1551)\\\" x=\\\"0 5.776 10.224 14.672 16.8 21.248 25.696 27.824 32.272 38.048 42.496 45.16 49.608 51.736 56.184\\\">Can an award be</text></g><path clip-path=\\\"url(#clip5-19)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 62.1535 521.4754 L 101.1535 521.4754 L 101.1535 511.4754 L 62.1535 511.4754 L 62.1535 521.4754 z \\\"/><g clip-path=\\\"url(#clip5-19)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 62.1535 514.1004)\\\" x=\\\"0 4.448 8.448 12.896 14.72 19.168 20.992 25.44 29.888 34.336\\\">explained?</text></g><clipPath id=\\\"clip5-20\\\"><path d=\\\"M 127 510 L 206 510 L 206 535 L 127 535 L 127 510 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-20)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 158.4961 523.1551)\\\" x=\\\"0 5.336 9.784 13.784\\\">Yes.</text></g><clipPath id=\\\"clip5-21\\\"><path d=\\\"M 205 510 L 573 510 L 573 535 L 205 535 L 205 510 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 523.1551)\\\" x=\\\"0\\\">A</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 214.9359 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 218.2265 523.1551)\\\" x=\\\"0 4.448 8.896 11.56 13.784\\\">party</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 236.0117 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 239.3023 523.1551)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 254.4155 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 257.7061 523.1551)\\\" x=\\\"0 2.664 7.112 11.56 16.008 20.456 24.456\\\">request</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 284.3897 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 287.6803 523.1551)\\\" x=\\\"0 4.448 8.896 11.12 15.568 17.392 19.216\\\">details</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 310.899 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 314.1896 523.1551)\\\" x=\\\"0 2.224 4.888 9.336\\\">from</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 330.1896 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 333.4802 523.1551)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 344.6013 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 347.8919 523.1551)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608\\\">Arbiter,</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 373.7239 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 377.0145 523.1551)\\\" x=\\\"0 5.776 7.6 9.824 14.272 16.096\\\">within</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 397.5613 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 400.8519 523.1551)\\\" x=\\\"0 4.448\\\">14</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 409.7504 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 413.0409 523.1551)\\\" x=\\\"0 4.448 8.896 12.896\\\">days</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 429.9394 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 433.23 523.1551)\\\" x=\\\"0 4.448\\\">of</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 439.9018 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 443.1924 523.1551)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.3135 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 457.6041 523.1551)\\\" x=\\\"0 2.664 7.112 8.936 10.76 15.208 19.656\\\">ruling.</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 479.4869 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 482.7775 523.1551)\\\" x=\\\"0 5.776 10.224 14.672\\\">Upon</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.9025 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 505.193 523.1551)\\\" x=\\\"0 4 8.448 12.448\\\">such</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 522.0915 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 525.3821 523.1551)\\\" x=\\\"0 2.664 7.112 11.56 16.008 20.456 24.456 26.68\\\">request,</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 554.2883 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 557.5789 523.1551)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 514.1004)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608 25.736 31.512 33.336 35.16 36.984 39.112 43.56 47.56 52.008 53.832 58.28 60.104 64.552 66.68 68.904 73.352 77.8 79.928 82.592 87.04 88.864 90.688 95.136 99.584 101.712 103.536 107.984 110.112 115.888 118.552 120.376 122.6 124.424 128.872 133.32\\\">Arbiter will explain the ruling in writing.</text></g><clipPath id=\\\"clip5-22\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 704.777 L 128 704.777 L 128 703.777 L 35.1 703.777 L 35.1 704.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 703.777 L 36.1 703.777 L 36.1 680.777 L 35.1 680.777 L 35.1 703.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128 704.777 L 206 704.777 L 206 703.777 L 128 703.777 L 128 704.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127 703.777 L 128 703.777 L 128 680.777 L 127 680.777 L 127 703.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 704.777 L 573.3 704.777 L 573.3 703.777 L 206 703.777 L 206 704.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.3 703.777 L 573.3 703.777 L 573.3 680.777 L 572.3 680.777 L 572.3 703.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 703.777 L 206 703.777 L 206 680.777 L 205 680.777 L 205 703.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 680.777 L 128 680.777 L 128 679.777 L 35.1 679.777 L 35.1 680.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 679.777 L 36.1 679.777 L 36.1 657.1769 L 35.1 657.1769 L 35.1 679.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128 680.777 L 206 680.777 L 206 679.777 L 128 679.777 L 128 680.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127 679.777 L 128 679.777 L 128 657.1769 L 127 657.1769 L 127 679.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 680.777 L 573.3 680.777 L 573.3 679.777 L 206 679.777 L 206 680.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.3 679.777 L 573.3 679.777 L 573.3 657.1769 L 572.3 657.1769 L 572.3 679.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 679.777 L 206 679.777 L 206 657.1769 L 205 657.1769 L 205 679.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 657.1769 L 128 657.1769 L 128 656.1769 L 35.1 656.1769 L 35.1 657.1769 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 656.1769 L 36.1 656.1769 L 36.1 633.577 L 35.1 633.577 L 35.1 656.1769 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128 657.1769 L 206 657.1769 L 206 656.1769 L 128 656.1769 L 128 657.1769 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127 656.1769 L 128 656.1769 L 128 633.577 L 127 633.577 L 127 656.1769 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 657.1769 L 573.3 657.1769 L 573.3 656.1769 L 206 656.1769 L 206 657.1769 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.3 656.1769 L 573.3 656.1769 L 573.3 633.577 L 572.3 633.577 L 572.3 656.1769 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 656.1769 L 206 656.1769 L 206 633.577 L 205 633.577 L 205 656.1769 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 633.577 L 128 633.577 L 128 632.577 L 35.1 632.577 L 35.1 633.577 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 632.577 L 36.1 632.577 L 36.1 602.4129 L 35.1 602.4129 L 35.1 632.577 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128 633.577 L 206 633.577 L 206 632.577 L 128 632.577 L 128 633.577 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127 632.577 L 128 632.577 L 128 602.4129 L 127 602.4129 L 127 632.577 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 633.577 L 573.3 633.577 L 573.3 632.577 L 206 632.577 L 206 633.577 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.3 632.577 L 573.3 632.577 L 573.3 602.4129 L 572.3 602.4129 L 572.3 632.577 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 632.577 L 206 632.577 L 206 602.4129 L 205 602.4129 L 205 632.577 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 602.4129 L 128 602.4129 L 128 601.4129 L 35.1 601.4129 L 35.1 602.4129 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 601.4129 L 36.1 601.4129 L 36.1 535.0301 L 35.1 535.0301 L 35.1 601.4129 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128 602.4129 L 206 602.4129 L 206 601.4129 L 128 601.4129 L 128 602.4129 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127 601.4129 L 128 601.4129 L 128 535.0301 L 127 535.0301 L 127 601.4129 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 602.4129 L 573.3 602.4129 L 573.3 601.4129 L 206 601.4129 L 206 602.4129 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.3 601.4129 L 573.3 601.4129 L 573.3 535.0301 L 572.3 535.0301 L 572.3 601.4129 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 601.4129 L 206 601.4129 L 206 535.0301 L 205 535.0301 L 205 601.4129 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 535.0301 L 128 535.0301 L 128 534.0301 L 35.1 534.0301 L 35.1 535.0301 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 511.0301 L 128 511.0301 L 128 510.0301 L 35.1 510.0301 L 35.1 511.0301 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 534.0301 L 36.1 534.0301 L 36.1 511.0301 L 35.1 511.0301 L 35.1 534.0301 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128 535.0301 L 206 535.0301 L 206 534.0301 L 128 534.0301 L 128 535.0301 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128 511.0301 L 206 511.0301 L 206 510.0301 L 128 510.0301 L 128 511.0301 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127 534.0301 L 128 534.0301 L 128 511.0301 L 127 511.0301 L 127 534.0301 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 535.0301 L 573.3 535.0301 L 573.3 534.0301 L 206 534.0301 L 206 535.0301 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 511.0301 L 573.3 511.0301 L 573.3 510.0301 L 206 510.0301 L 206 511.0301 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.3 534.0301 L 573.3 534.0301 L 573.3 511.0301 L 572.3 511.0301 L 572.3 534.0301 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 534.0301 L 206 534.0301 L 206 511.0301 L 205 511.0301 L 205 534.0301 z \\\"/><g clip-path=\\\"url(#clip5-22)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 273.1062 500.3113)\\\" x=\\\"0 7.78 10.56 16.12 21.68 25.01 27.67 35.45 41.01 43.79 46.07 51.63 57.19\\\">Other Options</text></g><clipPath id=\\\"clip5-23\\\"><path d=\\\"M 35 438 L 128 438 L 128 490 L 35 490 L 35 438 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-23)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.6 489.107 L 127.5 489.107 L 127.5 438.107 L 35.6 438.107 L 35.6 489.107 z \\\"/><path clip-path=\\\"url(#clip5-23)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.7 485.607 L 123.4 485.607 L 123.4 458.443 L 39.7 458.443 L 39.7 485.607 z \\\"/><path clip-path=\\\"url(#clip5-23)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 48.2942 485.607 L 115.2942 485.607 L 115.2942 475.607 L 48.2942 475.607 L 48.2942 485.607 z \\\"/><g clip-path=\\\"url(#clip5-23)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 48.2942 478.232)\\\" x=\\\"0 2.224 4.448 6.576 10.576 15.024 19.472 21.6 26.048 30.496 34.944 36.472 38.696 40.824 46.6 51.048 55.496 57.72 59.848 62.072\\\">If you don&apos;t want to</text></g><path clip-path=\\\"url(#clip5-23)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 43.8078 476.5524 L 119.8078 476.5524 L 119.8078 466.5524 L 43.8078 466.5524 L 43.8078 476.5524 z \\\"/><g clip-path=\\\"url(#clip5-23)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 43.8078 469.1774)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 29.392 31.616 33.744 37.744 42.192 46.64 48.768 52.768 57.216 61.664 63.792 67.792 70.016 71.84 73.664\\\">arbitrate, can you still</text></g><path clip-path=\\\"url(#clip5-23)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 49.8254 467.4977 L 113.8254 467.4977 L 113.8254 457.4977 L 49.8254 457.4977 L 49.8254 467.4977 z \\\"/><g clip-path=\\\"url(#clip5-23)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 49.8254 460.1227)\\\" x=\\\"0 4.448 8.896 11.12 13.248 17.696 19.824 22.048 24.712 29.16 33.608 37.608 42.056 46.056 48.28 50.104 54.552 59\\\">get a transaction?</text></g><clipPath id=\\\"clip5-24\\\"><path d=\\\"M 127 438 L 206 438 L 206 490 L 127 490 L 127 438 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-24)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.1817 478.232)\\\" x=\\\"0 5.336 9.784 13.784 16.008 18.136 23.472 27.92 32.368 34.496 38.496 42.944 47.392 49.52 53.968 58.416\\\">Yes. You can get</text></g><g clip-path=\\\"url(#clip5-24)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 137.2266 469.1774)\\\" x=\\\"0 4.448 8.896 11.56 13.688 17.688 22.136 24.8 28.8 30.624 34.624 39.072 43.072 45.2 49.648 54.096\\\">our* D E M O *nd</text></g><g clip-path=\\\"url(#clip5-24)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 143.668 460.1227)\\\" x=\\\"0 4.448 8.896 12.896 14.72 19.168 23.616 25.744 30.192 34.64 36.864 38.992 41.216\\\">decide not to</text></g><g clip-path=\\\"url(#clip5-24)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 150.6914 451.068)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 29.392\\\">arbitrate.</text></g><clipPath id=\\\"clip5-25\\\"><path d=\\\"M 205 438 L 573 438 L 573 490 L 205 490 L 205 438 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-25)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 478.232)\\\" x=\\\"0 5.776 10.224 14.672 18.672 20.496 24.944 29.392 32.056 34.184 36.408 40.856 45.304 49.304 53.752 55.88 59.88 64.328 68.776 70.6 74.6 79.048 83.048\\\">Consider these choices:</text></g><g clip-path=\\\"url(#clip5-25)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 469.1774)\\\" x=\\\"0 4.448 6.672 8.8 11.024 15.472 17.696 22.144 24.808 31.472 35.92 37.744 39.872 45.648 47.472 51.472 55.92 60.368 62.592 67.04 69.168 74.944 79.392 83.392 87.84 89.664 94.112 96.336 98.16 102.608 107.056 109.28 111.408 117.184 121.632 126.08 128.304 132.752 136.752 138.976 141.104 145.552 149.552 151.776 153.904 158.352 162.8 167.248 169.376 173.824 176.048 178.272 182.72 189.384 193.832 196.056 198.184 200.408 204.856 206.984 210.984 215.432 217.656 219.88 221.704 226.152 228.28 232.728 237.176 241.176 243.304 249.08 250.904 254.904 259.352 263.8 266.024 270.472 274.472\\\">1. Informal Dispute Resolution. Contact us, and attempt to settle any Disputes.</text></g><g clip-path=\\\"url(#clip5-25)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 460.1227)\\\" x=\\\"0 4.448 6.672 8.8 14.136 20.8 25.248 27.072 28.896 31.56 35.56 37.384 41.832 43.656 50.32 54.32 56.448 62.224 66.672 71.12 73.784 76.008 78.232 80.36 85.696 90.144 94.592 98.592 100.72 102.944 107.392 109.52 113.52 117.968 119.792 123.792 128.24 130.368 136.144 137.968 141.968 146.416 150.864 153.088 157.536 161.536 163.664 165.488 169.936 172.064 176.064 182.728 187.176 189 190.824 193.488 197.488 199.312 203.76 205.584 212.248 216.248 218.376 222.376 226.824 231.272 233.936 236.16 238.384 240.512 246.288 248.112 250.336 254.784 256.608 261.056 263.184 267.184 269.408 273.856 276.08 280.528 282.656 284.48 288.928 294.704 296.832 298.656 300.48 307.144 308.968 311.192 315.192\\\">2. Small-claims Court. Seek to solve Disputes in small-claims court, within state law limits.</text></g><g clip-path=\\\"url(#clip5-25)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 451.068)\\\" x=\\\"0 4.448 6.672 8.8 15.024 19.472 21.696 23.824 28.272 30.4 34.848 39.296 43.744 47.744 52.192 54.32 61.872 63.696 65.92 70.368 74.816 79.264 81.488 83.616 85.84 90.288 94.736 96.864 102.64 104.464 108.912 113.36 117.36 121.808 124.032 126.16 133.712 136.376 138.2 140.424 144.872 147 149.224 153.672 155.8 160.248 164.248 166.376 170.824 175.272 179.72 181.848 186.296 190.296 194.296 196.424 198.648 203.096 205.76 207.888 212.336 216.784 218.912 224.248 228.696 231.36 235.808 240.256 246.92 251.368 255.816 258.04 260.168 265.944 267.768 269.992 274.44 278.888 283.336 285.56 287.688 289.912 294.36 298.808 300.936 306.712 308.536 312.984 317.432 321.432 325.88\\\">3. Get a Lease Without the Clause. Write to us and ask for an Agreement without the Clause.</text></g><g clip-path=\\\"url(#clip5-25)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 442.0133)\\\" x=\\\"0 4.448 6.672 8.8 15.024 19.472 21.696 24.36 30.584 35.032 37.256 39.384 43.832 46.056 48.184 53.52 56.184 60.632 62.456 64.68 67.344 71.792 74.016 75.84 80.288 84.736 86.96 89.088 94.424 96.248 100.696 105.144 107.272 111.72 116.168 120.616 122.744 124.968 129.416 133.864 138.312 140.44 142.664 144.488 151.152 155.6 157.424 161.424 163.552 168 172.448 174.672 177.336 181.784 186.232 188.456\\\">4. Opt-Out of Arbitration. Sign and then timely opt-out.</text></g><clipPath id=\\\"clip5-26\\\"><path d=\\\"M 35 405 L 128 405 L 128 439 L 35 439 L 35 405 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-26)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.6 438.107 L 127.5 438.107 L 127.5 405.107 L 35.6 405.107 L 35.6 438.107 z \\\"/><path clip-path=\\\"url(#clip5-26)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.7 434.607 L 123.4 434.607 L 123.4 416.4977 L 39.7 416.4977 L 39.7 434.607 z \\\"/><path clip-path=\\\"url(#clip5-26)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 42.1633 434.607 L 121.1633 434.607 L 121.1633 424.607 L 42.1633 424.607 L 42.1633 434.607 z \\\"/><g clip-path=\\\"url(#clip5-26)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 42.1633 427.232)\\\" x=\\\"0 5.776 10.224 14.672 16.8 20.8 25.248 29.696 31.824 36.272 40.72 42.944 45.608 50.056 54.504 56.728 58.856 63.304 65.528 67.656 69.88 74.328\\\">Can you opt-out of the</text></g><path clip-path=\\\"url(#clip5-26)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 66.8508 425.5524 L 96.8508 425.5524 L 96.8508 415.5524 L 66.8508 415.5524 L 66.8508 425.5524 z \\\"/><g clip-path=\\\"url(#clip5-26)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 66.8508 418.1774)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496 24.944\\\">Clause?</text></g><clipPath id=\\\"clip5-27\\\"><path d=\\\"M 127 405 L 206 405 L 206 439 L 127 439 L 127 405 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-27)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 140.7617 427.232)\\\" x=\\\"0 5.336 9.784 13.784 16.008 18.136 25.688 27.512 29.736 34.184 36.008 40.456 42.584 47.032\\\">Yes. Within 60</text></g><g clip-path=\\\"url(#clip5-27)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 156.9395 418.1774)\\\" x=\\\"0 4.448 8.896 12.896 16.896\\\">days.</text></g><clipPath id=\\\"clip5-28\\\"><path d=\\\"M 205 405 L 573 405 L 573 439 L 205 439 L 205 405 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 427.232)\\\" x=\\\"0 7.552 10.216 12.04 14.264\\\">Write</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 228.3109 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 232.8069 427.232)\\\" x=\\\"0 4.448\\\">us</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 241.2562 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 245.7522 427.232)\\\" x=\\\"0 5.776 7.6 9.824 14.272 16.096\\\">within</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 266.299 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 270.795 427.232)\\\" x=\\\"0 4.448\\\">60</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 279.6935 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 284.1895 427.232)\\\" x=\\\"0 4 8.448 10.272 14.72 19.168 23.616 28.064\\\">calendar</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 314.9238 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 319.4198 427.232)\\\" x=\\\"0 4.448 8.896 12.896\\\">days</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 336.3183 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 340.8143 427.232)\\\" x=\\\"0 4.448\\\">of</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 347.4861 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 351.9821 427.232)\\\" x=\\\"0 4 5.824 10.272 14.72 16.544 20.992\\\">signing</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 377.4274 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 381.9234 427.232)\\\" x=\\\"0 4 8.448 12.896\\\">your</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 397.4859 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 401.9819 427.232)\\\" x=\\\"0 4.448 8.896 11.56 16.008 20.456 27.12 31.568 36.016\\\">agreement</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 440.228 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 444.724 427.232)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 451.3959 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 455.8919 427.232)\\\" x=\\\"0 4.448 8.896 11.12 13.784 18.232 22.68\\\">opt-out</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 480.7981 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 485.2941 427.232)\\\" x=\\\"0 4.448\\\">of</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 491.966 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 496.462 427.232)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 507.5831 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 512.0791 427.232)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496\\\">Clause</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 537.0283 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 541.5243 427.232)\\\" x=\\\"0 2.224 6.672\\\">for</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 550.8602 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 555.3562 427.232)\\\" x=\\\"0 2.224 6.672 11.12\\\">that</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 418.1774)\\\" x=\\\"0 4.448 8.896 11.56 16.008 20.456 27.12 31.568 36.016 38.24\\\">agreement.</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 250.0688 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 252.4616 418.1774)\\\" x=\\\"0 4.448 6.272 10.272\\\">List</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 264.9577 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 267.3505 418.1774)\\\" x=\\\"0 4 8.448 12.896\\\">your</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 282.913 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 285.3058 418.1774)\\\" x=\\\"0 4.448 8.896 15.56 20.008\\\">name,</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 307.5402 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 309.933 418.1774)\\\" x=\\\"0 4.448 8.896 13.344 16.008 20.456 24.456 28.456\\\">address,</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 340.6166 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 343.0095 418.1774)\\\" x=\\\"0 4.448 8.448 12.448 16.896 21.344 25.792\\\">account</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.029 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 373.4218 418.1774)\\\" x=\\\"0 4.448 8.896 15.56 20.008 24.456\\\">number</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 400.5468 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 402.9397 418.1774)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 416.2873 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 418.6801 418.1774)\\\" x=\\\"0 4.448 8.896 11.12 15.568\\\">date.</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 436.4731 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 438.8659 418.1774)\\\" x=\\\"0 4.448 6.272 10.272\\\">List</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 451.362 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 453.7549 418.1774)\\\" x=\\\"0 2.224 6.672 11.12\\\">that</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.0986 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 469.4914 418.1774)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 482.3899 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 484.7827 418.1774)\\\" x=\\\"0 2.84 7.288 11.736\\\">&quot;opt</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 498.7437 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 501.1365 418.1774)\\\" x=\\\"0 4.448 8.896 11.12 13.344\\\">out.&quot;</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 517.3201 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 519.7129 418.1774)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 524.1582 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 526.551 418.1774)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 539.4495 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 541.8423 418.1774)\\\" x=\\\"0 4.448 8.896\\\">opt</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.9634 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 555.3562 418.1774)\\\" x=\\\"0 4.448 8.896 11.12\\\">out,</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 409.1227)\\\" x=\\\"0 1.824 4.048 6.176 11.952 13.776 15.6 17.424 19.552 24 28.448 30.272 34.272 36.4 40.848 45.296 49.744 51.568 55.568 57.696 59.92 64.368 66.496 68.72 73.168 77.616 79.84 81.968 86.416 90.864 93.528 97.976 102.424 109.088 113.536 117.984 120.208\\\">it will only apply to that agreement.</text></g><clipPath id=\\\"clip5-29\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 489.607 L 128 489.607 L 128 488.607 L 35.1 488.607 L 35.1 489.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 488.607 L 36.1 488.607 L 36.1 438.607 L 35.1 438.607 L 35.1 488.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128 489.607 L 206 489.607 L 206 488.607 L 128 488.607 L 128 489.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127 488.607 L 128 488.607 L 128 438.607 L 127 438.607 L 127 488.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 489.607 L 573.3 489.607 L 573.3 488.607 L 206 488.607 L 206 489.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.3 488.607 L 573.3 488.607 L 573.3 438.607 L 572.3 438.607 L 572.3 488.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 488.607 L 206 488.607 L 206 438.607 L 205 438.607 L 205 488.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 438.607 L 128 438.607 L 128 437.607 L 35.1 437.607 L 35.1 438.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 405.607 L 128 405.607 L 128 404.607 L 35.1 404.607 L 35.1 405.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 437.607 L 36.1 437.607 L 36.1 405.607 L 35.1 405.607 L 35.1 437.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128 438.607 L 206 438.607 L 206 437.607 L 128 437.607 L 128 438.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128 405.607 L 206 405.607 L 206 404.607 L 128 404.607 L 128 405.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127 437.607 L 128 437.607 L 128 405.607 L 127 405.607 L 127 437.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 438.607 L 573.3 438.607 L 573.3 437.607 L 206 437.607 L 206 438.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 405.607 L 573.3 405.607 L 573.3 404.607 L 206 404.607 L 206 405.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.3 437.607 L 573.3 437.607 L 573.3 405.607 L 572.3 405.607 L 572.3 437.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 437.607 L 206 437.607 L 206 405.607 L 205 405.607 L 205 437.607 z \\\"/><g clip-path=\\\"url(#clip5-29)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 162.1492 377.7699)\\\" x=\\\"0 6.67 10 12.28 17.84 20.62 23.28 28.84 34.4 39.96 42.62 45.95 51.51 54.29 59.85 62.13 67.69 70.35 75.91 78.57 84.13 89.69 93.02 98.58 101.24 106.24 111.8 117.36 122.36 125.02 130.58 133.91 136.57 142.13 144.41 149.97 154.97 157.75 161.08 166.64 172.2 174.48 179.48 182.14 187.14 192.7 198.26 203.26 205.92 211.48 214.26 216.92 219.7 225.26 227.54 232.54 235.2 241.87 247.43 250.76 256.32 261.88 270.21 275.77 281.33\\\">Print and retain a hard copy or electronic copy of this Agreement</text></g><g clip-path=\\\"url(#clip5-29)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 36.5264)\\\" x=\\\"0 6.498 11.997 14.391 16.785 21.789 26.793 29.295 34.299 39.303 44.307 504 506.3906 508.7812 511.1719 513.5625 515.9531 518.3438 520.7344 523.125 525.5156\\\">UT  07/2019          </text></g><g clip-path=\\\"url(#clip5-29)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 26.3398)\\\" x=\\\"0 6.003 11.007 16.011 21.015\\\">Page </text></g><g clip-path=\\\"url(#clip5-29)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 55.8097 26.3398)\\\" x=\\\"0\\\">6</text></g><g clip-path=\\\"url(#clip5-29)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.815 26.3398)\\\" x=\\\"0 2.394 7.398 9.9\\\"> of </text></g><g clip-path=\\\"url(#clip5-29)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 73.1021 26.3398)\\\" x=\\\"0\\\">7</text></g><g clip-path=\\\"url(#clip5-29)\\\"><text stroke=\\\"none\\\" fill=\\\"#d9d9d9\\\" style=\\\"font-family:f5-0; font-size:54pt; white-space:pre\\\" transform=\\\"matrix(0.707 0.707 0.707 -0.707 135.6027 198.5094)\\\" x=\\\"0 56.016 96.048 136.08 176.112 216.144 236.16 284.184 324.216 344.232 364.248 416.232 456.264 480.24\\\">Qoppa Software</text></g><g clip-path=\\\"url(#clip5-29)\\\"><text stroke=\\\"none\\\" fill=\\\"#002ba6\\\" style=\\\"font-family:f5-0; font-size:9pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.932 772)\\\" x=\\\"0 9.336 16.008 22.68 29.352 36.024 39.36 47.364 54.036 57.372 60.708 69.372 76.044 80.04 86.712 90.048 94.044 97.38 104.712 111.384 115.38 118.716 126.72 132.72 139.392 142.056 148.728 155.4 158.736 161.4 168.072 174.744 178.08 187.416 194.088 196.752 202.752 206.088 210.084 213.42 220.092 223.428 226.764 233.436 239.436 242.772 246.108 249.444 258.108 266.772 275.436 278.772 285.444 292.116 298.788 305.46 312.132 315.468 321.468 328.14\\\">Qoppa Software - For Evaluation Only - https://www.qoppa.com</text></g></g></svg></svg></g></svg><br>\\n<?xml version='1.0' encoding='UTF-8'?><svg id=\\\"qoppa_document\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" version=\\\"1.1\\\" xmlns=\\\"http://www.w3.org/2000/svg\\\" xmlns:xlink=\\\"http://www.w3.org/1999/xlink\\\"><!-- jPDFWeb v2019R1.03 - Demo Version --><style>title p { display: block; }</style><g id=\\\"qoppa_viewxform\\\" transform=\\\"matrix(1 0 0 1 0 0)\\\"><style type=\\\"text/css\\\">@font-face {font-family:f6-0;src:url(\\\"data:application/font-woff;charset=utf-8;base64,d09GRgABAAAAAAp8AAoAAAAADcAAAQABAAAAAAAAAAAAAAAAAAAAAAAAAABPUy8yAAAA9AAAADcAAABWWd9ZMmNtYXAAAAEsAAAAbAAAAIwCiwM0Z2x5ZgAAAZgAAAdLAAAJ6ArdyapoZWFkAAAI5AAAADEAAAA2GI9khmhoZWEAAAkYAAAAIAAAACQGNwJvaG10eAAACTgAAABeAAAAgDkXBShsb2NhAAAJmAAAAEIAAABCI1gg9G1heHAAAAncAAAAGAAAACAAIwA9bmFtZQAACfQAAAB8AAAA5g9SKYxwb3N0AAAKcAAAAAwAAAAgAAMAAHicY2Bk8mKcwMDKwMDUxbSbARlwMeogc/8DATI/MCDAkUEBCG8y3fyvxxDFdJPhEkwOAMlSDLoAeJxjYGBgZGAGYgYGHgYWhgYgLcMgABThYVBg0GewYnBj8GcIZAhmSGRIZkhjyGQoZ6j8/x+oSoFBFyjriiSbypDBkAOS/f/4//X/Z/8f/r/7/67/O/+v+b/6/6r/K/8v/78MbA9OAAAj1iOqeJxtVktsG9cVnXuHpChTEr/DjyRSHI44/IlUpeGQkvgTbepPkZJlUTQlWVLNWq2h2rHrohsv4iJo4P6SOqmRxIukDYqiWRTtJmgBN0CCBu1CRhZd1E5bdFOgdtuVG7SAAY16Z0gmClAOMPPmzX33nnfueUdigPEzf4QEjDIswwDHy5BQnsJovc7QK9Og+3tMU/2W5gT5vSb91Hnm+DE48VCd5+wS+9HcR27829EgRWNrDRroWxfD2GWJs9LKRrMJP242lQ9a66sUeInWm7SancuK68p5+K5yA3519AQP1/+0/nSdgih+heIlGnZ/Gm8VrCgpN2FF+cUOHtb+sq7cV0OpfuL4E/wzPmTMzBBFO11Ol6HL0CWG6EqntDHNSal0Kk0z8P07W9usbnfv7t3tbYT6xtuXTxcRSzPPXcvnAUslfIjN5i/f2bmA7MUv/fT1y5fLUC7f+db8Aq6svvjCwgKj1Rw9/j0+wUfMIDN5oqb61ArTi6A+qahLpA8G+jDeAhBKq1EqmpSK5m5jk0WfL+Hz+Ya80aAoJKKR9A8IIjQ2X9uanWMxm7k96HSa3S63yxUIBPiwkwPIZvCRbn//JxdmZkdcVktP0eLiBtzdp/Bi890fXrq0DDMzr3/93DnWoDeaTaf0M91Wa38glz17ZW1N63P8+N+4T5yN0QuBEsQ2+vZOQoE20LSzjbq9m/Q4BcB/DInEcm58nGUnJ4vNtbN6Q21j58ZGravRVSisnU4m2e7trYWyLCMuLlz9yuKCEZ7N8Ty43cW009nriMZuXB/7AkxMPW/cCooIPt9M2eOxcpHIxs7YGMjyV1WOReqrHh1MjMmQrlQqCVAXp3IpnCBZ1rikS1YnA7QRvdoL9XK0+i5zxenaQSIBaDDYt7r1OhhNJKbOjcQwl6vFQyEv+PlMjueNoIv4+WhUFNE7OLoXDML1XZ5HiEaXngwT82arxRK22TASmykHg106o7FbjLuc4HInL/ZRPb3VIosODrNZjePg8SfwT7QxfItjFa8GXsV6UqKaIOB7vT6fND88jEP+hsz7DRuWqUztQNXk1OTzSxNpC+xJA/2AqfTGcjbLQnB4wrRNJMLs3IsHy2UdRCKrLW2Kx0+JNydjZAKfVTarIpXG26UFQ7u0yim8g+HwdCESBoMhFpsfDQSs5/vzhfWtuXkdCe3WfLWCIBcjEcRYLDdfH4l7vWOmRljEfOHefqWi1+VzP6f9GqlamjQ1cEJTnMQJdHIFWZLFjnqiRrPZ1s85oNmsVyokigtWj9uGt1hA6O2LT5WUPHxQWuXjCT2yekbj8gzd/kHn3UVKsKbanFHiTstpeM8nhqS1xCjUYdA7nhdFqOOhcszbbQAj8fPKj2Az7vPRVteVv1ImVHMy9zRPU32LgKoJz9Tph4fNLx49I0vr1G7HMZJVogg8PErSfJFhCLKNiWrzXAfVCXSpdtdpmGwNXdZidUAU87IgWAbEYHExHCK8dkc6z/vrDk6a9fpIpQthpxPA7YlEPG7A+Mhp5TtQj/F+xFAorbwPF8PeQWRHR/PKI8JR0rixadxwn+dGaHPzylAonKvSCagD9S4fVLkxLERUJ4kn1pU3YSXj84rBivIHbdPI8HT2uinn5zxVOOGpXOdsqZ7qvZHNqN555WqhAJjJ3FwUxXB4aWVYgHAIbexS+ca3z5yBublvXl1eLmEqtbGblNlsZrmRkluaLR1PooHqOZjhzi7GTxg5iUgduxwtfmUi9lUuGJzYzuVZmMo8N8LzzvrH84EAHYvZJf8Q+P1oKAVIbKXS7YNqRQc2u1fBB5O6YrFSkyRgC/nyYjbTPi+T8LhTWy/I7aKqr0jqzmVJc/DO0aVOwuO6i+dj1zJTmM9dSAeDzpWPV6gkDPnLM8FhCAR+p3hJd7pK9eB2qQQuZ6A0qctkF8v5AguSVKsUiy1tTdOtQbW5k73r/AlRdfMyN9Af8zg4u89iMXMJj4caV4263QBGo2lV9TI2FksrD7W+ATNEnvOA8pGv25NtErs6Qjhh8F3/z+DjSWmvkkxa6jreH40KAqLb4/za3CySo+3WJib6NrqDQXlEGEb9VGY6GwrDC9lwGHm+2pOwO/r6Iv6eXt2gb6i2Go1AKFzvzbvdCA7HWNRitph5P+GzHv8XevG+6hF2zRscbQgaKNWVNK/4Wb1u7uNOdRtNPY4+s308IMD0NN5/t6S8HzxlQgBgqyw90OOpwmLpVotL2vvfiQfNI9RuqXnpwH7a0bT1DXS6StZ0yliv9ofDU3uRKKJB+XWSrN4w0H8TBo6eVUIeD7CSVIFNytlLiR9TTmJ3ACVWYC+//Grjt2c/pFW78NZnHqEjIT2glx4tbgAo1AQCu3P9SmP/G7W3N/e/vPUWrbkEbyjX4KWjZ/CScq2z1nKcgH+1cNO6NtZRaP/TUiAwdnjl/CNOGC5ZTD193b09Jotot5u4D3fuoOHoN7lYDIFl2TUdIthtQxNUaOt/bprEGQB4nGNgZGBgAOL9uy5diOe3+crAzfwCKMJw21zgLIL+r8fMyHQTqI6DgQkkCgBowQuoAAAAeJxjYGRgYLr5X48hitmRgeH/fWZGBqAIClAAAHbABKt4nGNggABGXyAWA9MKQDoKzAbSTLMZ/JmSGQKYuRj0QRjI12XSYVBj/MKgDqTVgWo4gLQzwz0IZnZkcATyXYBYGUqrAc10AKqXB6oVBPKdgGxepksMLEBaAABlFhBuAAAAAAAAAAAAAAAAAA4AGgAoADoAUgBoAKIBAgFUAbQB8AIsAloChAKYAqQC6AMSA0oDiAPGA+4EPgRsBJYEqgTIBPQAAHicY2BkYGBQYLBhYGIAAUYGNAAACboAYXicdcq9CoJgFIfxx+9anRobHCMUoguohq7AIVrEQoMXDROhpWvvD50xObyHH897gIQLAV64BFK9nz05NfssyMwBKzbmUD6ZI/lqjuWRIz1P3gw8aGhVztxxTNqjWk3FQTeO25+fDzv2s71UGXip9XSsKdiSa2buv2bjHPt4nGNgZsALAAB9AAQ=\\\");}@font-face {font-family:f6-1;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f6-2;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}</style><svg id=\\\"qoppa_page_p6\\\" class=\\\"qoppa_page\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\"><rect class=\\\"qoppa_pageborder\\\" x=\\\"0.5pt\\\" y=\\\"0.5pt\\\" width=\\\"611pt\\\" height=\\\"791pt\\\" fill=\\\"none\\\" /><svg class=\\\"qoppa_pagecontents\\\" x=\\\"0pt\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" viewBox=\\\"0 0 612 792\\\" ><g class=\\\"qoppa_contentstream\\\" transform=\\\"matrix(1 0 0 -1 0 792)\\\" fill=\\\"black\\\" stroke=\\\"black\\\" stroke-width=\\\"1\\\" stroke-linecap=\\\"butt\\\" stroke-linejoin=\\\"miter\\\" stroke-miterlimit=\\\"10\\\"><clipPath id=\\\"clip6-1\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 284.4843 735.5809)\\\" x=\\\"0 6.67 11.67 17.23 19.51 25.07 27.35\\\">Exhibit</text></g><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(0.99 0 0 -1 314.4843 735.5809)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 317.4843 735.5809)\\\" x=\\\"0\\\">A</text></g><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 94.4 699.1621)\\\" x=\\\"0 3.2783 9.3398 14.8398 20.9014 23.6816 29.1816\\\">Invoice</text></g><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 129.6432 699.1621)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 132.7994 699.1621)\\\" x=\\\"0\\\">#</text></g><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 138.8609 699.1621)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 142.0172 699.1621)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 142.0172 697.4792 L 142.0172 697.4792 L 145.0172 697.4792 L 145.4339 697.4792 L 145.4339 696.6458 L 145.0172 696.6458 L 142.0172 696.6458 L 141.6005 696.6458 L 141.6005 697.4792 z \\\"/><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 145.1734 699.1621)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 145.1734 697.4792 L 145.1734 697.4792 L 148.1734 697.4792 L 148.5901 697.4792 L 148.5901 696.6458 L 148.1734 696.6458 L 145.1734 696.6458 L 144.7568 696.6458 L 144.7568 697.4792 z \\\"/><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 148.3297 699.1621)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 148.3297 697.4792 L 148.3297 697.4792 L 151.3297 697.4792 L 151.7464 697.4792 L 151.7464 696.6458 L 151.3297 696.6458 L 148.3297 696.6458 L 147.913 696.6458 L 147.913 697.4792 z \\\"/><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 151.4859 699.1621)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 151.4859 697.4792 L 151.4859 697.4792 L 154.4859 697.4792 L 154.9026 697.4792 L 154.9026 696.6458 L 154.4859 696.6458 L 151.4859 696.6458 L 151.0693 696.6458 L 151.0693 697.4792 z \\\"/><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 154.6422 699.1621)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 154.6422 697.4792 L 154.6422 697.4792 L 157.6422 697.4792 L 158.0589 697.4792 L 158.0589 696.6458 L 157.6422 696.6458 L 154.6422 696.6458 L 154.2255 696.6458 L 154.2255 697.4792 z \\\"/><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 157.7984 699.1621)\\\" x=\\\"0\\\">0</text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 157.7984 697.4792 L 157.7984 697.4792 L 163.7984 697.4792 L 164.2151 697.4792 L 164.2151 696.6458 L 163.7984 696.6458 L 157.7984 696.6458 L 157.3818 696.6458 L 157.3818 697.4792 z \\\"/><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 163.86 699.1621)\\\" x=\\\"0\\\">4</text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 163.86 697.4792 L 163.86 697.4792 L 169.86 697.4792 L 170.2766 697.4792 L 170.2766 696.6458 L 169.86 696.6458 L 163.86 696.6458 L 163.4433 696.6458 L 163.4433 697.4792 z \\\"/><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 169.9215 699.1621)\\\" x=\\\"0\\\">1</text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 169.9215 697.4792 L 169.9215 697.4792 L 175.9215 697.4792 L 176.3382 697.4792 L 176.3382 696.6458 L 175.9215 696.6458 L 169.9215 696.6458 L 169.5048 696.6458 L 169.5048 697.4792 z \\\"/><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 175.983 699.1621)\\\" x=\\\"0\\\">2</text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 175.983 697.4792 L 175.983 697.4792 L 181.983 697.4792 L 182.3997 697.4792 L 182.3997 696.6458 L 181.983 696.6458 L 175.983 696.6458 L 175.5663 696.6458 L 175.5663 697.4792 z \\\"/><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 182.0445 699.1621)\\\" x=\\\"0\\\">9</text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 182.0445 697.4792 L 182.0445 697.4792 L 188.0445 697.4792 L 188.4612 697.4792 L 188.4612 696.6458 L 188.0445 696.6458 L 182.0445 696.6458 L 181.6279 696.6458 L 181.6279 697.4792 z \\\"/><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 188.1061 699.1621)\\\" x=\\\"0\\\">9</text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 188.1061 697.4792 L 188.1061 697.4792 L 194.1061 697.4792 L 194.5227 697.4792 L 194.5227 696.6458 L 194.1061 696.6458 L 188.1061 696.6458 L 187.6894 696.6458 L 187.6894 697.4792 z \\\"/><clipPath id=\\\"clip6-2\\\"><path d=\\\"M 71 551 L 537 551 L 537 572 L 71 572 L 71 551 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 286.9417 561.1477)\\\" x=\\\"0 6.003 9 14.004 19.008 24.012 28.512 31.014\\\">Products</text></g><clipPath id=\\\"clip6-3\\\"><path d=\\\"M 71 531 L 165 531 L 165 552 L 71 552 L 71 531 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 106.4173 541.1477)\\\" x=\\\"0 7.497 12.501 17.505 22.509\\\">Model</text></g><clipPath id=\\\"clip6-4\\\"><path d=\\\"M 164 531 L 258 531 L 258 552 L 164 552 L 164 531 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-4)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 189.1385 541.1477)\\\" x=\\\"0 6.498 11.502 16.002 20.502 23.499 25.551 30.555 33.057 35.109 40.113\\\">Description</text></g><clipPath id=\\\"clip6-5\\\"><path d=\\\"M 257 531 L 351 531 L 351 552 L 257 552 L 257 531 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-5)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 297.6995 541.1477)\\\" x=\\\"0 7.002 9.504\\\">Qty</text></g><clipPath id=\\\"clip6-6\\\"><path d=\\\"M 350 531 L 444 531 L 444 552 L 350 552 L 350 531 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-6)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 387.4212 541.1477)\\\" x=\\\"0 6.003 9 11.052 15.552\\\">Price</text></g><clipPath id=\\\"clip6-7\\\"><path d=\\\"M 443 531 L 537 531 L 537 552 L 443 552 L 443 531 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-7)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 460.2107 541.1477)\\\" x=\\\"0 6.003 10.503 13.005 18.009 23.013 28.017 33.021 38.025 40.419 46.422 49.419 51.471 55.971\\\">Extended Price</text></g><clipPath id=\\\"clip6-8\\\"><path d=\\\"M 164 511 L 258 511 L 258 532 L 164 532 L 164 511 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 178.6472 522.0696)\\\" x=\\\"0 5.336 9.784 12.448 16.448 18.272 22.272 26.72 30.72 32.848 37.296 41.744 46.192 48.32 53.208 57.656 62.104\\\">Services and Fees</text></g><clipPath id=\\\"clip6-9\\\"><path d=\\\"M 257 511 L 351 511 L 351 532 L 257 532 L 257 511 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 302.4754 522.0696)\\\" x=\\\"0\\\">1</text></g><clipPath id=\\\"clip6-10\\\"><path d=\\\"M 350 511 L 444 511 L 444 532 L 350 532 L 350 511 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 378.8426 522.0696)\\\" x=\\\"0 4.448 6.576 11.024 13.248 17.696 22.144 26.592 28.816 33.264\\\">$ 3,784.97</text></g><clipPath id=\\\"clip6-11\\\"><path d=\\\"M 443 511 L 537 511 L 537 532 L 443 532 L 443 511 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 471.8426 522.0696)\\\" x=\\\"0 4.448 6.576 11.024 13.248 17.696 22.144 26.592 28.816 33.264\\\">$ 3,784.97</text></g><clipPath id=\\\"clip6-12\\\"><path d=\\\"M 164 491 L 258 491 L 258 512 L 164 512 L 164 491 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 196.364 502.0696)\\\" x=\\\"0 6.664 11.112 13.336 15.56 18.224 22.672 26.672\\\">Mattress</text></g><clipPath id=\\\"clip6-13\\\"><path d=\\\"M 257 491 L 351 491 L 351 512 L 257 512 L 257 491 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-13)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 302.4754 502.0696)\\\" x=\\\"0\\\">1</text></g><clipPath id=\\\"clip6-14\\\"><path d=\\\"M 350 491 L 444 491 L 444 512 L 350 512 L 350 491 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-14)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 386.6277 502.0696)\\\" x=\\\"0 4.448 6.576 11.024 13.248 17.696\\\">$ 1.00</text></g><clipPath id=\\\"clip6-15\\\"><path d=\\\"M 443 491 L 537 491 L 537 512 L 443 512 L 443 491 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 479.6277 502.0696)\\\" x=\\\"0 4.448 6.576 11.024 13.248 17.696\\\">$ 1.00</text></g><clipPath id=\\\"clip6-16\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 71.2 572.4446 L 537.2 572.4446 L 537.2 571.4446 L 71.2 571.4446 L 71.2 572.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 536.2 571.4446 L 537.2 571.4446 L 537.2 552.4446 L 536.2 552.4446 L 536.2 571.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 71.2 571.4446 L 72.2 571.4446 L 72.2 552.4446 L 71.2 552.4446 L 71.2 571.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 71.2 552.4446 L 165.2 552.4446 L 165.2 551.4446 L 71.2 551.4446 L 71.2 552.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 71.2 551.4446 L 72.2 551.4446 L 72.2 532.4446 L 71.2 532.4446 L 71.2 551.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 165.2 552.4446 L 258.2 552.4446 L 258.2 551.4446 L 165.2 551.4446 L 165.2 552.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 164.2 551.4446 L 165.2 551.4446 L 165.2 532.4446 L 164.2 532.4446 L 164.2 551.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 258.2 552.4446 L 351.2 552.4446 L 351.2 551.4446 L 258.2 551.4446 L 258.2 552.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 257.2 551.4446 L 258.2 551.4446 L 258.2 532.4446 L 257.2 532.4446 L 257.2 551.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 351.2 552.4446 L 444.2 552.4446 L 444.2 551.4446 L 351.2 551.4446 L 351.2 552.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 350.2 551.4446 L 351.2 551.4446 L 351.2 532.4446 L 350.2 532.4446 L 350.2 551.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 444.2 552.4446 L 537.2 552.4446 L 537.2 551.4446 L 444.2 551.4446 L 444.2 552.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 536.2 551.4446 L 537.2 551.4446 L 537.2 532.4446 L 536.2 532.4446 L 536.2 551.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 443.2 551.4446 L 444.2 551.4446 L 444.2 532.4446 L 443.2 532.4446 L 443.2 551.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 71.2 532.4446 L 165.2 532.4446 L 165.2 531.4446 L 71.2 531.4446 L 71.2 532.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 71.2 531.4446 L 72.2 531.4446 L 72.2 512.4446 L 71.2 512.4446 L 71.2 531.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 165.2 532.4446 L 258.2 532.4446 L 258.2 531.4446 L 165.2 531.4446 L 165.2 532.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 164.2 531.4446 L 165.2 531.4446 L 165.2 512.4446 L 164.2 512.4446 L 164.2 531.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 258.2 532.4446 L 351.2 532.4446 L 351.2 531.4446 L 258.2 531.4446 L 258.2 532.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 257.2 531.4446 L 258.2 531.4446 L 258.2 512.4446 L 257.2 512.4446 L 257.2 531.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 351.2 532.4446 L 444.2 532.4446 L 444.2 531.4446 L 351.2 531.4446 L 351.2 532.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 350.2 531.4446 L 351.2 531.4446 L 351.2 512.4446 L 350.2 512.4446 L 350.2 531.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 444.2 532.4446 L 537.2 532.4446 L 537.2 531.4446 L 444.2 531.4446 L 444.2 532.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 536.2 531.4446 L 537.2 531.4446 L 537.2 512.4446 L 536.2 512.4446 L 536.2 531.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 443.2 531.4446 L 444.2 531.4446 L 444.2 512.4446 L 443.2 512.4446 L 443.2 531.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 71.2 512.4446 L 165.2 512.4446 L 165.2 511.4446 L 71.2 511.4446 L 71.2 512.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 71.2 492.4446 L 165.2 492.4446 L 165.2 491.4446 L 71.2 491.4446 L 71.2 492.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 71.2 511.4446 L 72.2 511.4446 L 72.2 492.4446 L 71.2 492.4446 L 71.2 511.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 165.2 512.4446 L 258.2 512.4446 L 258.2 511.4446 L 165.2 511.4446 L 165.2 512.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 165.2 492.4446 L 258.2 492.4446 L 258.2 491.4446 L 165.2 491.4446 L 165.2 492.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 164.2 511.4446 L 165.2 511.4446 L 165.2 492.4446 L 164.2 492.4446 L 164.2 511.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 258.2 512.4446 L 351.2 512.4446 L 351.2 511.4446 L 258.2 511.4446 L 258.2 512.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 258.2 492.4446 L 351.2 492.4446 L 351.2 491.4446 L 258.2 491.4446 L 258.2 492.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 257.2 511.4446 L 258.2 511.4446 L 258.2 492.4446 L 257.2 492.4446 L 257.2 511.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 351.2 512.4446 L 444.2 512.4446 L 444.2 511.4446 L 351.2 511.4446 L 351.2 512.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 351.2 492.4446 L 444.2 492.4446 L 444.2 491.4446 L 351.2 491.4446 L 351.2 492.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 350.2 511.4446 L 351.2 511.4446 L 351.2 492.4446 L 350.2 492.4446 L 350.2 511.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 444.2 512.4446 L 537.2 512.4446 L 537.2 511.4446 L 444.2 511.4446 L 444.2 512.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 444.2 492.4446 L 537.2 492.4446 L 537.2 491.4446 L 444.2 491.4446 L 444.2 492.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 536.2 511.4446 L 537.2 511.4446 L 537.2 492.4446 L 536.2 492.4446 L 536.2 511.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 443.2 511.4446 L 444.2 511.4446 L 444.2 492.4446 L 443.2 492.4446 L 443.2 511.4446 z \\\"/><clipPath id=\\\"clip6-17\\\"><path d=\\\"M 264 464 L 404 464 L 404 478 L 264 478 L 264 464 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-17)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.9359 468.3239)\\\" x=\\\"0 5.336 9.784 14.232 16.36 21.248 25.696 27.92 32.368 34.192\\\">Sub Total:</text></g><clipPath id=\\\"clip6-18\\\"><path d=\\\"M 403 464 L 535 464 L 535 478 L 403 478 L 403 464 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.55 468.3239)\\\" x=\\\"0 4.448 6.576 11.024 13.248 17.696 22.144 26.592 28.816 33.264\\\">$ 3,785.97</text></g><clipPath id=\\\"clip6-19\\\"><path d=\\\"M 264 451 L 404 451 L 404 465 L 264 465 L 264 451 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-19)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 358.6078 454.8239)\\\" x=\\\"0 5.336 9.784 11.608 16.056 20.056 22.184 27.072 31.52 35.52\\\">Sales Tax:</text></g><clipPath id=\\\"clip6-20\\\"><path d=\\\"M 403 451 L 535 451 L 535 465 L 403 465 L 403 451 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-20)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.55 454.8239)\\\" x=\\\"0 4.448 6.576 11.024 15.472 17.696 22.144\\\">$ 86.03</text></g><clipPath id=\\\"clip6-21\\\"><path d=\\\"M 264 437 L 404 437 L 404 452 L 264 452 L 264 437 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.7758 441.3239)\\\" x=\\\"0 4.888 9.336 11.56 16.008 17.832 19.96 22.184 26.632 30.632 35.08 36.904 40.904 45.352\\\">Total Invoice:</text></g><clipPath id=\\\"clip6-22\\\"><path d=\\\"M 403 437 L 535 437 L 535 452 L 403 452 L 403 437 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-22)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.55 441.3239)\\\" x=\\\"0 4.448 6.576 11.024 13.248 17.696 22.144 26.592 28.816 33.264\\\">$ 3,872.00</text></g><clipPath id=\\\"clip6-23\\\"><path d=\\\"M 264 424 L 404 424 L 404 438 L 264 438 L 264 424 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-23)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 284.3578 427.8239)\\\" x=\\\"0 5.336 12 14.224 16.352 22.128 26.576 31.024 33.152 38.04 42.488 46.936 51.384 55.384 57.512 60.176 65.952 68.176 72.624 74.752 80.088 82.752 87.2 91.2 93.328 98.216 102.664 107.112 109.776\\\">Amt Due Today (w/o Proc Fee):</text></g><clipPath id=\\\"clip6-24\\\"><path d=\\\"M 403 424 L 535 424 L 535 438 L 403 438 L 403 424 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.55 427.8239)\\\" x=\\\"0 4.448 6.576 11.024 13.248 17.696 22.144 26.592 28.816 33.264\\\">$ 3,784.30</text></g><clipPath id=\\\"clip6-25\\\"><path d=\\\"M 264 410 L 404 410 L 404 425 L 264 425 L 264 410 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-25)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.4242 414.3239)\\\" x=\\\"0 5.336 9.784 14.232 16.056 18.184 23.96 28.408 32.408 34.632 36.76 42.536 46.984 50.984 55.432 57.56 62.896 67.344 69.472 74.36 78.808 83.256 87.704 91.704\\\">Addl Cust Cash Pd Today:</text></g><clipPath id=\\\"clip6-26\\\"><path d=\\\"M 403 410 L 535 410 L 535 425 L 403 425 L 403 410 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-26)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.55 414.3239)\\\" x=\\\"0 4.448 6.576 11.024 13.248 17.696\\\">$ 0.00</text></g><clipPath id=\\\"clip6-27\\\"><path d=\\\"M 264 397 L 404 397 L 404 411 L 264 411 L 264 397 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 333.8422 400.8239)\\\" x=\\\"0 5.336 9.784 14.232 18.68 20.808 26.584 31.032 35.032 39.48 41.608 47.384 51.384 55.832 60.28\\\">Snap Cash Used:</text></g><clipPath id=\\\"clip6-28\\\"><path d=\\\"M 403 397 L 535 397 L 535 411 L 403 411 L 403 397 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.55 400.8239)\\\" x=\\\"0 4.448 6.576 11.024 15.472 17.696 22.144\\\">$ 87.70</text></g><clipPath id=\\\"clip6-29\\\"><path d=\\\"M 264 383 L 404 383 L 404 398 L 264 398 L 264 383 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-29)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 274.8227 387.3239)\\\" x=\\\"0 5.336 8 12.448 16.448 18.576 23.464 27.912 32.36 34.488 40.264 44.712 46.536 48.36 52.808 56.808 59.032 63.48 67.928 70.056 72.72 77.168 81.168 83.296 89.96 94.408 97.072 101.072 105.52 109.968 114.416 116.64 119.304\\\">Proc Fee Collected (by Merchant):</text></g><clipPath id=\\\"clip6-30\\\"><path d=\\\"M 403 383 L 535 383 L 535 398 L 403 398 L 403 383 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.55 387.3239)\\\" x=\\\"0 4.448 6.576 11.024 13.248 17.696\\\">$ 0.00</text></g><clipPath id=\\\"clip6-31\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip6-31)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 403.55 464.9489 L 534.3 464.9489 L 534.3 464.4489 L 403.55 464.4489 L 403.55 464.9489 z \\\"/><path clip-path=\\\"url(#clip6-31)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 403.55 451.4489 L 534.3 451.4489 L 534.3 450.9489 L 403.55 450.9489 L 403.55 451.4489 z \\\"/><path clip-path=\\\"url(#clip6-31)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 403.55 437.9489 L 534.3 437.9489 L 534.3 437.4489 L 403.55 437.4489 L 403.55 437.9489 z \\\"/><path clip-path=\\\"url(#clip6-31)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 403.55 424.4489 L 534.3 424.4489 L 534.3 423.9489 L 403.55 423.9489 L 403.55 424.4489 z \\\"/><path clip-path=\\\"url(#clip6-31)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 403.55 410.9489 L 534.3 410.9489 L 534.3 410.4489 L 403.55 410.4489 L 403.55 410.9489 z \\\"/><path clip-path=\\\"url(#clip6-31)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 403.55 397.4489 L 534.3 397.4489 L 534.3 396.9489 L 403.55 396.9489 L 403.55 397.4489 z \\\"/><path clip-path=\\\"url(#clip6-31)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 403.55 383.9489 L 534.3 383.9489 L 534.3 383.4489 L 403.55 383.4489 L 403.55 383.9489 z \\\"/><g clip-path=\\\"url(#clip6-31)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 36.5264)\\\" x=\\\"0 6.498 11.997 14.391 16.785 21.789 26.793 29.295 34.299 39.303 44.307 504 506.3906 508.7812 511.1719 513.5625 515.9531 518.3438 520.7344 523.125 525.5156\\\">UT  07/2019          </text></g><g clip-path=\\\"url(#clip6-31)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 26.3398)\\\" x=\\\"0 6.003 11.007 16.011 21.015\\\">Page </text></g><g clip-path=\\\"url(#clip6-31)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 55.8097 26.3398)\\\" x=\\\"0\\\">7</text></g><g clip-path=\\\"url(#clip6-31)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.815 26.3398)\\\" x=\\\"0 2.394 7.398 9.9\\\"> of </text></g><g clip-path=\\\"url(#clip6-31)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 73.1021 26.3398)\\\" x=\\\"0\\\">7</text></g><g clip-path=\\\"url(#clip6-31)\\\"><text stroke=\\\"none\\\" fill=\\\"#d9d9d9\\\" style=\\\"font-family:f6-0; font-size:54pt; white-space:pre\\\" transform=\\\"matrix(0.707 0.707 0.707 -0.707 135.6027 198.5094)\\\" x=\\\"0 56.016 96.048 136.08 176.112 216.144 236.16 284.184 324.216 344.232 364.248 416.232 456.264 480.24\\\">Qoppa Software</text></g><g clip-path=\\\"url(#clip6-31)\\\"><text stroke=\\\"none\\\" fill=\\\"#002ba6\\\" style=\\\"font-family:f6-0; font-size:9pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.932 772)\\\" x=\\\"0 9.336 16.008 22.68 29.352 36.024 39.36 47.364 54.036 57.372 60.708 69.372 76.044 80.04 86.712 90.048 94.044 97.38 104.712 111.384 115.38 118.716 126.72 132.72 139.392 142.056 148.728 155.4 158.736 161.4 168.072 174.744 178.08 187.416 194.088 196.752 202.752 206.088 210.084 213.42 220.092 223.428 226.764 233.436 239.436 242.772 246.108 249.444 258.108 266.772 275.436 278.772 285.444 292.116 298.788 305.46 312.132 315.468 321.468 328.14\\\">Qoppa Software - For Evaluation Only - https://www.qoppa.com</text></g></g></svg></svg></g></svg><br>\\n</body> \\n </html>\\n\"\n        }\n    },\n    \"success\": true,\n    \"status\": 200\n}"},{"id":"8f54a53c-a760-4395-b701-10b256836810","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCIsImtpZCI6IlJqRkJNa1JETlRVME1FTXpORU5GTWtNeE1UQkJPVE5DUlRjNE9UWTJORVJFTmtZNU1VSXpNZyJ9","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Content-Type","value":"application/json"},{"key":"Request-Id","value":"123"}],"url":{"raw":"https://api-training.snapfinance.com/platform/v1/application/200331000GUT/agreement?renderType=html&document=agreement","protocol":"https","host":["api-training","snapfinance","com"],"path":["platform","v1","application","200331000GUT","agreement"],"query":[{"key":"renderType","value":"html"},{"key":"document","value":"agreement"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"136"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 16 Jul 2020 17:02:21 GMT"},{"key":"x-amzn-RequestId","value":"7bdbe015-ee4e-47a5-a8c5-70f56a2cde04"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"Pxo0aFo-PHcFy6A="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f10881c-f4d45cc21e4bc05a15184b31"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 0a72bb7be10458e1aefa37a097f21894.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"Zcwg0uNr6gJ8ilLNW9-r5krSpR6T7Z-LLnNpLYvub6tAYp-Dx30msw=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"status\": 404,\n    \"error\": [\n        {\n            \"code\": \"application_invalid\",\n            \"type\": \"invalid_request_error\",\n            \"message\": \"Application not found\"\n        }\n    ]\n}"}],"_postman_id":"c0b1f4b6-9d44-4d3a-a1d9-0e0ad60bded0"},{"name":"Sign agreement","event":[{"listen":"test","script":{"exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});\r","pm.test(\"Success message\", function () {\r","    pm.expect(pm.response.text()).to.include(\"success\");\r","});"],"type":"text/javascript","packages":{},"id":"7442fb07-424b-4c35-b850-3b22bc66a42e"}}],"id":"ec64b298-2e8f-4b5e-b6b9-082708575ba1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"<p>(optional - ID generated by the client)</p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"agreementInformation\": {\r\n    \"signedTime\": \"2020-02-21T18:00:00Z\",\r\n    \"signedMethod\": \"acceptance\",\r\n    \"signedBy\": \"John Doe\",\r\n    \"device\": \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36\",\r\n    \"deviceIP\": \"10.1.1.10\"\r\n  }\r\n}"},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/signed?document=agreement","description":"<h1 id=\"sign-agreement\">Sign Agreement</h1>\n<p>This endpoint sets the signed date on the application, marks the agreement as signed, and changes the application status from PENDING_SIGNED_DOCS to PENDING_DEL (Pending Delivery) status and PENDING_SHIPPING sub-status.</p>\n<h1 id=\"request-object\">Request Object</h1>\n<h2 id=\"customerinformationhash\"><code>customerInformation:hash</code></h2>\n<blockquote>\n<h4 id=\"signedtimestring\"><code>signedTime:string</code></h4>\n<ul>\n<li>Required</li>\n<li>Date time at which the agreement sign date is in UTC Standard. Example 2020-02-21T18:00:00Z</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"signedmethodstring\"><code>signedMethod:string</code></h4>\n<ul>\n<li>Required</li>\n<li>Signed method. Valid value is only acceptance</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"signedbystring\"><code>signedBy:string</code></h4>\n<ul>\n<li>Optional</li>\n<li>Name of the person signing the lease</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"devicestring\"><code>device:string</code></h4>\n<ul>\n<li>Optional</li>\n<li>Device type on which the agreement is signed</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"deviceipstring\"><code>deviceIP:string</code></h4>\n<ul>\n<li>Optional</li>\n<li>Device address from where the agreement is signed</li>\n</ul>\n</blockquote>\n<h1 id=\"response-object\">Response Object</h1>\n<h2 id=\"datahash\"><code>data:hash</code></h2>\n<blockquote>\n<ul>\n<li>Empty value ( {} ) for successful responses.</li>\n</ul>\n</blockquote>\n<h2 id=\"successboolean\"><code>success:boolean</code></h2>\n<blockquote>\n<ul>\n<li>Value with the result of the request. Possible values are true or false</li>\n</ul>\n</blockquote>\n<h2 id=\"captureboolean\"><code>capture:boolean</code></h2>\n<blockquote>\n<ul>\n<li>Value indicating if the capture endpoint needs to be called to complete the application process. Possible values are true or false</li>\n</ul>\n</blockquote>\n<h2 id=\"statusinteger\"><code>status:integer</code></h2>\n<blockquote>\n<ul>\n<li>Value with status code of the request. For example: 200, 400, 404</li>\n</ul>\n</blockquote>\n","urlObject":{"path":["platform","v1","application","{{applicationId}}","signed"],"host":["{{baseUrl}}"],"query":[{"key":"document","value":"agreement"}],"variable":[]}},"response":[{"id":"258652ad-e269-43ab-860e-b838d3d690b9","name":"Not Found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCIsImtpZCI6IlJqRkJNa1JETlRVME1FTXpORU5GTWtNeE1UQkJPVE5DUlRjNE9UWTJORVJFTmtZNU1VSXpNZyJ9","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123"}],"body":{"mode":"raw","raw":"{\r\n  \"agreementInformation\": {\r\n    \"signedTime\": \"2020-02-21T18:00:00Z\",\r\n    \"signedMethod\": \"acceptance\",\r\n    \"signedBy\": \"John Doe\",\r\n    \"device\": \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36\",\r\n    \"deviceIP\": \"10.1.1.10\"\r\n  }\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api-training.snapfinance.com/platform/v1/application/200331000GUT/signed?document=agreement","protocol":"https","host":["api-training","snapfinance","com"],"path":["platform","v1","application","200331000GUT","signed"],"query":[{"key":"document","value":"agreement"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"133"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 16 Jul 2020 17:03:16 GMT"},{"key":"x-amzn-RequestId","value":"d596e661-4e08-4944-a32a-e2e9d077101f"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"Pxo9DGyiPHcF25Q="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f108853-ef2b033fb25f0eb879f3d58e"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 0a72bb7be10458e1aefa37a097f21894.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"BW7lO-fv-dBAE-rM71lbkJaSyoAtnfHQkpMjtTQ6XjLCR9GCTyzCBA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"status\": 404,\n    \"error\": [\n        {\n            \"type\": \"validation_error\",\n            \"message\": \"Application not found\",\n            \"code\": \"application_not_found\"\n        }\n    ]\n}"},{"id":"62ee601f-780a-4eb8-b2d7-b687da5d5894","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123"}],"body":{"mode":"raw","raw":"{\r\n  \"agreementInformation\": {\r\n    \"signedTime\": \"2020-02-21T18:00:00Z\",\r\n    \"signedMethod\": \"acceptance\",\r\n    \"signedBy\": \"John Doe\",\r\n    \"device\": \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36\",\r\n    \"deviceIP\": \"10.1.1.10\"\r\n  }\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{baseUrl}}/platform/v1/application/{{applicationId}}/signed?document=agreement","host":["{{baseUrl}}"],"path":["platform","v1","application","{{applicationId}}","signed"],"query":[{"key":"document","value":"agreement"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"39"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:25:11 GMT"},{"key":"x-amzn-RequestId","value":"1fb9d04e-d5d8-4c52-ab99-f280f30974e6"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P02TZGf6vHcFvIA="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d0e2-d14a91504ec81fad79cc0598"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"TGhuOXXJY2_ad54jcWoH4dSCFk37DVH5IoBeHg8qehauxewnMC9pxA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {},\n    \"status\": 200,\n    \"capture\": true \n}"},{"id":"7e266860-1c32-459c-90e4-537904b02484","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123"}],"body":{"mode":"raw","raw":"{\r\n  \"agreementInformation\": {\r\n    \"signedTime\": \"2020-02-21T18:00:00Z\",\r\n    \"signedMethod\": \"acceptance\",\r\n    \"signedBy\": \"John Doe\",\r\n    \"device\": \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36\",\r\n    \"deviceIP\": \"10.1.1.10\"\r\n  }\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{baseUrl}}/platform/v1/application/{{applicationId}}/signed?document=agreement","host":["{{baseUrl}}"],"path":["platform","v1","application","{{applicationId}}","signed"],"query":[{"key":"document","value":"agreement"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"39"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:25:11 GMT"},{"key":"x-amzn-RequestId","value":"1fb9d04e-d5d8-4c52-ab99-f280f30974e6"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P02TZGf6vHcFvIA="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d0e2-d14a91504ec81fad79cc0598"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"TGhuOXXJY2_ad54jcWoH4dSCFk37DVH5IoBeHg8qehauxewnMC9pxA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {},\n    \"status\": 200,\n    \"capture\": true \n}"},{"id":"a177c26a-0a4b-4ebe-87b3-76b5b9b3f633","name":"Not Found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCIsImtpZCI6IlJqRkJNa1JETlRVME1FTXpORU5GTWtNeE1UQkJPVE5DUlRjNE9UWTJORVJFTmtZNU1VSXpNZyJ9","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123"}],"body":{"mode":"raw","raw":"{\r\n  \"agreementInformation\": {\r\n    \"signedTime\": \"2020-02-21T18:00:00Z\",\r\n    \"signedMethod\": \"acceptance\",\r\n    \"signedBy\": \"John Doe\",\r\n    \"device\": \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36\",\r\n    \"deviceIP\": \"10.1.1.10\"\r\n  }\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api-training.snapfinance.com/platform/v1/application/200331000GUT/signed?document=agreement","protocol":"https","host":["api-training","snapfinance","com"],"path":["platform","v1","application","200331000GUT","signed"],"query":[{"key":"document","value":"agreement"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"133"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 16 Jul 2020 17:03:16 GMT"},{"key":"x-amzn-RequestId","value":"d596e661-4e08-4944-a32a-e2e9d077101f"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"Pxo9DGyiPHcF25Q="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f108853-ef2b033fb25f0eb879f3d58e"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 0a72bb7be10458e1aefa37a097f21894.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"BW7lO-fv-dBAE-rM71lbkJaSyoAtnfHQkpMjtTQ6XjLCR9GCTyzCBA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"status\": 404,\n    \"error\": [\n        {\n            \"type\": \"validation_error\",\n            \"message\": \"Application not found\",\n            \"code\": \"application_not_found\"\n        }\n    ]\n}"}],"_postman_id":"ec64b298-2e8f-4b5e-b6b9-082708575ba1"},{"name":"Send Agreement","event":[{"listen":"test","script":{"exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});\r","pm.test(\"Success message\", function () {\r","    pm.expect(pm.response.text()).to.include(\"success\");\r","});"],"type":"text/javascript","id":"49732d76-772e-494e-b324-75e0ac865b40"}}],"id":"a1533954-0dda-4713-8232-6dae84f32587","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"<p>(optional - ID generated by the client)</p>\n","type":"text"}],"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/sendAgreement","description":"<h1 id=\"send-agreement\">Send Agreement</h1>\n<p>This endpoint sends to the customer email the link to sign the agreement based on the customer application ID.   </p>\n<h2 id=\"path-params\">PATH PARAMS</h2>\n<blockquote>\n<h2 id=\"applicationidstring\"><code>applicationId:string</code></h2>\n<ul>\n<li>Required</li>\n<li>ApplicationId is returned when calling the create application endpoint</li>\n</ul>\n</blockquote>\n<h1 id=\"response-object\">Response Object</h1>\n<h2 id=\"datahash\"><code>data:hash</code></h2>\n<blockquote>\n<h4 id=\"accessidstring\"><code>accessId:string</code></h4>\n<h4 id=\"applicationstatusstring\"><code>applicationStatus:string</code></h4>\n<blockquote>\n<ul>\n<li>Status for application Ex: Approve,Denied</li>\n</ul>\n</blockquote>\n<h4 id=\"applicationsubstatusstring\"><code>applicationSubstatus:string</code></h4>\n<blockquote>\n<ul>\n<li>Sub-Status for application.</li>\n</ul>\n</blockquote>\n<h4 id=\"messagestring\"><code>message:string</code></h4>\n</blockquote>\n<h2 id=\"successboolean\"><code>success:boolean</code></h2>\n<blockquote>\n<ul>\n<li>Value with the result of the request. Possible values are TRUE or False</li>\n</ul>\n</blockquote>\n<h2 id=\"statusinteger\"><code>status:integer</code></h2>\n<blockquote>\n<ul>\n<li>Value with status code of the request. For example: 200, 400, 404</li>\n</ul>\n</blockquote>\n","urlObject":{"path":["platform","v1","application","{{applicationId}}","sendAgreement"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"2a969257-1d20-4822-8781-a98f4557e5da","name":"Not Found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCIsImtpZCI6IlJqRkJNa1JETlRVME1FTXpORU5GTWtNeE1UQkJPVE5DUlRjNE9UWTJORVJFTmtZNU1VSXpNZyJ9","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123"}],"url":"https://api-training.snapfinance.com/platform/v1/application/200331000GUT/sendAgreement"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"133"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 16 Jul 2020 17:03:16 GMT"},{"key":"x-amzn-RequestId","value":"d596e661-4e08-4944-a32a-e2e9d077101f"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"Pxo9DGyiPHcF25Q="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f108853-ef2b033fb25f0eb879f3d58e"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 0a72bb7be10458e1aefa37a097f21894.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"BW7lO-fv-dBAE-rM71lbkJaSyoAtnfHQkpMjtTQ6XjLCR9GCTyzCBA=="}],"cookie":[],"responseTime":null,"body":"{\n  \"success\": false,\n  \"error\": [\n    {\n      \"type\": \"validation_error\",\n      \"message\": \"Application not found\",\n      \"code\": \"application_not_found\"\n    }\n  ],\n  \"status\": 400\n}"},{"id":"b1a55352-9d88-4bc1-b621-544340ddce7c","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123"}],"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/sendAgreement"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"39"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:25:11 GMT"},{"key":"x-amzn-RequestId","value":"1fb9d04e-d5d8-4c52-ab99-f280f30974e6"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P02TZGf6vHcFvIA="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d0e2-d14a91504ec81fad79cc0598"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"TGhuOXXJY2_ad54jcWoH4dSCFk37DVH5IoBeHg8qehauxewnMC9pxA=="}],"cookie":[],"responseTime":null,"body":"{\n  \"success\": true,\n  \"data\": {\n    \"accessId\": \"vmyRuA8kwzrFO%2FfiDo8OQg%3D%3D\",\n    \"applicationStatus\": \"PENDING_SIGNED_DOCS\",\n    \"applicationSubstatus\": null,\n    \"message\": null\n  },\n  \"status\": 200\n}"},{"id":"3e5f95df-6bca-4b70-8d42-36555faa6187","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123"}],"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/sendAgreement"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"39"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:25:11 GMT"},{"key":"x-amzn-RequestId","value":"1fb9d04e-d5d8-4c52-ab99-f280f30974e6"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P02TZGf6vHcFvIA="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d0e2-d14a91504ec81fad79cc0598"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"TGhuOXXJY2_ad54jcWoH4dSCFk37DVH5IoBeHg8qehauxewnMC9pxA=="}],"cookie":[],"responseTime":null,"body":"{\n  \"success\": true,\n  \"data\": {\n    \"accessId\": \"vmyRuA8kwzrFO%2FfiDo8OQg%3D%3D\",\n    \"applicationStatus\": \"PENDING_SIGNED_DOCS\",\n    \"applicationSubstatus\": null,\n    \"message\": null\n  },\n  \"status\": 200\n}"},{"id":"98fe329a-5b0c-4815-8694-2b8905d0d192","name":"Not Found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCIsImtpZCI6IlJqRkJNa1JETlRVME1FTXpORU5GTWtNeE1UQkJPVE5DUlRjNE9UWTJORVJFTmtZNU1VSXpNZyJ9","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123"}],"url":"https://api-training.snapfinance.com/platform/v1/application/200331000GUT/sendAgreement"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"133"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 16 Jul 2020 17:03:16 GMT"},{"key":"x-amzn-RequestId","value":"d596e661-4e08-4944-a32a-e2e9d077101f"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"Pxo9DGyiPHcF25Q="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f108853-ef2b033fb25f0eb879f3d58e"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 0a72bb7be10458e1aefa37a097f21894.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"BW7lO-fv-dBAE-rM71lbkJaSyoAtnfHQkpMjtTQ6XjLCR9GCTyzCBA=="}],"cookie":[],"responseTime":null,"body":"{\n  \"success\": false,\n  \"error\": [\n    {\n      \"type\": \"validation_error\",\n      \"message\": \"Application not found\",\n      \"code\": \"application_not_found\"\n    }\n  ],\n  \"status\": 400\n}"}],"_postman_id":"a1533954-0dda-4713-8232-6dae84f32587"},{"name":"Capture Application","event":[{"listen":"test","script":{"exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});\r","pm.test(\"Success message\", function () {\r","    pm.expect(pm.response.text()).to.include(\"success\");\r","});"],"type":"text/javascript","id":"2dbfa7f5-3efd-45f0-b817-7c3008e78a33"}}],"id":"0d4d1ef3-d783-4d90-96ef-4cd47e859469","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"<p>(optional - ID generated by the client)</p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"deliveryDate\": \"2020-07-08\"\r\n}"},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/capture","description":"<h1 id=\"capture-application\">Capture Application</h1>\n<p>This endpoint updates the application delivery date changes its status from PENDING_DEL to COMPLETE and initiates the process to fund the application.</p>\n<h1 id=\"request-object\">Request Object</h1>\n<blockquote>\n<h2 id=\"deliverydatestring-date\"><code>deliveryDate:string (Date)</code></h2>\n<ul>\n<li>Required</li>\n<li>Date should be in YYYY-MM-DD format. Delivery Date in ISO format</li>\n</ul>\n</blockquote>\n<h1 id=\"response-object\">Response Object</h1>\n<h2 id=\"datahash\"><code>data:hash</code></h2>\n<blockquote>\n<ul>\n<li>Empty value ( {} ) for successful responses.</li>\n</ul>\n</blockquote>\n<h2 id=\"successboolean\"><code>success:boolean</code></h2>\n<blockquote>\n<ul>\n<li>Value with the result of the request. Possible values are TRUE or FALSE</li>\n</ul>\n</blockquote>\n<h2 id=\"statusinteger\"><code>status:integer</code></h2>\n<blockquote>\n<ul>\n<li>Value with status code of the request. For example: 200, 400, 404</li>\n</ul>\n</blockquote>\n","urlObject":{"path":["platform","v1","application","{{applicationId}}","capture"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"a5f1abc2-19b9-415b-a499-7050ae3748e0","name":"Not Found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCIsImtpZCI6IlJqRkJNa1JETlRVME1FTXpORU5GTWtNeE1UQkJPVE5DUlRjNE9UWTJORVJFTmtZNU1VSXpNZyJ9","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123"}],"body":{"mode":"raw","raw":"{\r\n\t\"deliveryDate\": \"2020-07-08\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api-training.snapfinance.com/platform/v1/application/200331000GUT/capture"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"133"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 16 Jul 2020 18:26:55 GMT"},{"key":"x-amzn-RequestId","value":"1473e786-3ec1-4200-9c73-39d1dec008cd"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"Px1NXHxcPHcFhSQ="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f109bef-9cb725502fac17205c442a40"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 6492b42e2fc3684cc00b54d685c2328c.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"ma8Z6BOstjyboUIGZiQ8QtDYb4JzTQsi-XrqvRI5Zqd1rnmd9xcfsw=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"status\": 404,\n    \"error\": [\n        {\n            \"type\": \"validation_error\",\n            \"message\": \"Application not found\",\n            \"code\": \"application_not_found\"\n        }\n    ]\n}"},{"id":"b19ed32a-0aff-4f84-84dd-6f594dabaa22","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123"}],"body":{"mode":"raw","raw":"{\r\n\t\"deliveryDate\": \"2020-07-08\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/capture"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"39"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:26:10 GMT"},{"key":"x-amzn-RequestId","value":"925cf780-dcfc-4f9b-86a5-720b308c2514"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P02dPHvfvHcF4Sw="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d121-f3cf0d83e94684f53be9c37d"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"bSFAKB6f-njXKj6ZNGK2dnkYOt15wbujC4tyWTxf6YIqdCOwiNAlJQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {},    \n    \"status\": 200\n}"},{"id":"ca951f2d-f9e0-4c17-ab21-380aa7adf0b6","name":"Not Found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCIsImtpZCI6IlJqRkJNa1JETlRVME1FTXpORU5GTWtNeE1UQkJPVE5DUlRjNE9UWTJORVJFTmtZNU1VSXpNZyJ9","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123"}],"body":{"mode":"raw","raw":"{\r\n\t\"deliveryDate\": \"2020-07-08\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api-training.snapfinance.com/platform/v1/application/200331000GUT/capture"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"133"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 16 Jul 2020 18:26:55 GMT"},{"key":"x-amzn-RequestId","value":"1473e786-3ec1-4200-9c73-39d1dec008cd"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"Px1NXHxcPHcFhSQ="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f109bef-9cb725502fac17205c442a40"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 6492b42e2fc3684cc00b54d685c2328c.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"ma8Z6BOstjyboUIGZiQ8QtDYb4JzTQsi-XrqvRI5Zqd1rnmd9xcfsw=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"status\": 404,\n    \"error\": [\n        {\n            \"type\": \"validation_error\",\n            \"message\": \"Application not found\",\n            \"code\": \"application_not_found\"\n        }\n    ]\n}"},{"id":"06cdf7b8-ed80-4d0a-a444-d352c2dd4a39","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123"}],"body":{"mode":"raw","raw":"{\r\n\t\"deliveryDate\": \"2020-07-08\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/capture"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"39"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:26:10 GMT"},{"key":"x-amzn-RequestId","value":"925cf780-dcfc-4f9b-86a5-720b308c2514"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P02dPHvfvHcF4Sw="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d121-f3cf0d83e94684f53be9c37d"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"bSFAKB6f-njXKj6ZNGK2dnkYOt15wbujC4tyWTxf6YIqdCOwiNAlJQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {},    \n    \"status\": 200\n}"}],"_postman_id":"0d4d1ef3-d783-4d90-96ef-4cd47e859469"},{"name":"Refund","event":[{"listen":"test","script":{"exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});\r","pm.test(\"Success message\", function () {\r","    pm.expect(pm.response.text()).to.include(\"success\");\r","});"],"type":"text/javascript","id":"c1a7f66c-ba64-41fc-bec2-a09ad51cba82"}}],"id":"10e1eb1c-9ff2-407c-965b-aaa3bb646208","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"<p>(optional - ID generated by the client)</p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"products\": [\r\n    {\r\n      \"amount\": \"1.00\",\r\n      \"itemId\": \"ABC\",\r\n      \"quantity\": 1\r\n    }\r\n  ]\r\n}"},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/refund","description":"<h1 id=\"refund\">Refund</h1>\n<p>This endpoint refunds full or partial payment on LTO applications and changes its sub-status to either Refunded or Partially Refunded. There are two ways to do it, check the next request options.</p>\n<h1 id=\"request-object-option-1\">Request Object Option 1</h1>\n<p>Using specific information of a product(s):</p>\n<blockquote>\n<h2 id=\"productshash-array\"><code>products:hash array</code></h2>\n<ul>\n<li>Required</li>\n<li>An array with at least one product</li>\n</ul>\n<h4 id=\"productsamountstring-numeric\"><code>products.amount:string (Numeric)</code></h4>\n<blockquote>\n<ul>\n<li>Required</li>\n<li>Exact price of the product</li>\n</ul>\n</blockquote>\n<h4 id=\"productsitemidstring\"><code>products.itemId:string</code></h4>\n<blockquote>\n<ul>\n<li>Required</li>\n<li>Item ID of the product</li>\n</ul>\n</blockquote>\n<h4 id=\"productsquantityinteger\"><code>products.quantity:Integer</code></h4>\n<blockquote>\n<ul>\n<li>Required</li>\n<li>Quantity of the product</li>\n</ul>\n</blockquote>\n</blockquote>\n<h1 id=\"request-object-option-2\">Request Object Option 2</h1>\n<p>Using an specific amount:</p>\n<blockquote>\n<h2 id=\"adjustmenthash\"><code>adjustment:hash</code></h2>\n<h4 id=\"amountstring-numeric\"><code>amount:string (Numeric)</code></h4>\n<blockquote>\n<ul>\n<li>Required</li>\n<li>Negative refund amount</li>\n</ul>\n</blockquote>\n</blockquote>\n<h1 id=\"response-object\">Response Object</h1>\n<h2 id=\"datahash\"><code>data:hash</code></h2>\n<blockquote>\n<ul>\n<li>Empty value ( {} ) for successful responses.</li>\n</ul>\n</blockquote>\n<h2 id=\"successboolean\"><code>success:boolean</code></h2>\n<blockquote>\n<ul>\n<li>Value with the result of the request. Possible values are TRUE or FALSE</li>\n</ul>\n</blockquote>\n<h2 id=\"statusinteger\"><code>status:integer</code></h2>\n<blockquote>\n<ul>\n<li>Value with status code of the request. For example: 200, 400, 404</li>\n</ul>\n</blockquote>\n","urlObject":{"path":["platform","v1","application","{{applicationId}}","refund"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"3925720e-76b8-4cc6-a3e8-d7f4e4cdb14d","name":"OK Option 2","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"adjustment\": \r\n    {\r\n      \"amount\": \"-50.00\"\r\n    }\r\n}"},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/refund"},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{    \r\n    \"success\": true,\r\n    \"data\": {},\r\n    \"status\": 200\r\n}"},{"id":"0a49a046-69f3-4343-b68e-588aa03413fb","name":"OK Option 1","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123"}],"body":{"mode":"raw","raw":"{\r\n  \"products\": [\r\n    {\r\n      \"amount\": \"1.00\",\r\n      \"itemId\": \"ABC\",\r\n      \"quantity\": 1\r\n    }\r\n  ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/refund"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"39"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:26:57 GMT"},{"key":"x-amzn-RequestId","value":"0cb73793-f0dd-4438-829c-415c7155efcf"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P02kwF5hPHcF8_g="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d151-db105366d62996e40114bb32"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"9BdrvPsnb7WioJYWC4JtSltOW4weJHXSdPS6hO4PeZYYukvhSSSg5A=="}],"cookie":[],"responseTime":null,"body":"{    \n    \"success\": true,\n    \"data\": {},\n    \"status\": 200\n}"},{"id":"17f13cc4-0c01-49b1-aeab-6c8ed71a9cc5","name":"Not Found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123"}],"body":{"mode":"raw","raw":"{\r\n  \"products\": [\r\n    {\r\n      \"amount\": \"1.00\",\r\n      \"itemId\": \"ABC\",\r\n      \"quantity\": 1\r\n    }\r\n  ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/refund"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"133"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:21:20 GMT"},{"key":"x-amzn-RequestId","value":"88317457-385d-42c2-8a60-b6109127bbcc"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P01wCEOjvHcFZVg="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d000-bbce4d1ff03d29d0fd1a8420"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"16cCiP5eIHIHnMoJ09EmaduydYyFgSDM_PsbyiGc54g12GLNGF57MA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,    \n    \"error\": [\n        {\n            \"type\": \"validation_error\",\n            \"message\": \"Application not found\",\n            \"code\": \"application_not_found\"\n        }\n    ],\n    \"status\": 404\n}"},{"id":"3b4b13ba-6a9e-41cb-900a-f8aff445541f","name":"OK Option 1","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123"}],"body":{"mode":"raw","raw":"{\r\n  \"products\": [\r\n    {\r\n      \"amount\": \"1.00\",\r\n      \"itemId\": \"ABC\",\r\n      \"quantity\": 1\r\n    }\r\n  ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/refund"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"39"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:26:57 GMT"},{"key":"x-amzn-RequestId","value":"0cb73793-f0dd-4438-829c-415c7155efcf"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P02kwF5hPHcF8_g="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d151-db105366d62996e40114bb32"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"9BdrvPsnb7WioJYWC4JtSltOW4weJHXSdPS6hO4PeZYYukvhSSSg5A=="}],"cookie":[],"responseTime":null,"body":"{    \n    \"success\": true,\n    \"data\": {},\n    \"status\": 200\n}"},{"id":"bd45d641-db25-484c-ae92-68634d7f69e3","name":"Not Found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123"}],"body":{"mode":"raw","raw":"{\r\n  \"products\": [\r\n    {\r\n      \"amount\": \"1.00\",\r\n      \"itemId\": \"ABC\",\r\n      \"quantity\": 1\r\n    }\r\n  ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/refund"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"133"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:21:20 GMT"},{"key":"x-amzn-RequestId","value":"88317457-385d-42c2-8a60-b6109127bbcc"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P01wCEOjvHcFZVg="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d000-bbce4d1ff03d29d0fd1a8420"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"16cCiP5eIHIHnMoJ09EmaduydYyFgSDM_PsbyiGc54g12GLNGF57MA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,    \n    \"error\": [\n        {\n            \"type\": \"validation_error\",\n            \"message\": \"Application not found\",\n            \"code\": \"application_not_found\"\n        }\n    ],\n    \"status\": 404\n}"},{"id":"9ad2afc2-5c91-4109-80f9-da70874d3e65","name":"OK Option 2","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"adjustment\": \r\n    {\r\n      \"amount\": \"-50.00\"\r\n    }\r\n}"},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/refund"},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{    \r\n    \"success\": true,\r\n    \"data\": {},\r\n    \"status\": 200\r\n}"}],"_postman_id":"10e1eb1c-9ff2-407c-965b-aaa3bb646208"},{"name":"Cancel application","event":[{"listen":"test","script":{"exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});\r","pm.test(\"Success message\", function () {\r","    pm.expect(pm.response.text()).to.include(\"success\");\r","});"],"type":"text/javascript","id":"80b956fc-f65a-4cb4-a305-00c19576cc0d"}}],"id":"fba70b28-6176-40d3-b418-8a4bc6d47264","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"<p>(optional - ID generated by the client)</p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"reason\": \"Cancellation reason\"\r\n}"},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/cancel","description":"<h1 id=\"cancel-application\">Cancel Application</h1>\n<p>This endpoint cancels the application that is not funded and changes the application status to Withdrawn.</p>\n<h2 id=\"path-params\">PATH PARAMS</h2>\n<blockquote>\n<h2 id=\"applicationidstring\"><code>applicationId:string</code></h2>\n<ul>\n<li>Required</li>\n<li>ApplicationId is returned when calling the create application endpoint</li>\n</ul>\n</blockquote>\n<p><strong>Important:</strong></p>\n<p><em>This endpoint could be called just if the application has the status: Pending Sign Documents, Pending Delivery, or Complete.</em></p>\n<h1 id=\"request-object\">Request Object</h1>\n<blockquote>\n<h2 id=\"reasonstring\"><code>reason:string</code></h2>\n<ul>\n<li>Required</li>\n<li>Cancel reason</li>\n</ul>\n</blockquote>\n<h1 id=\"response-object\">Response Object</h1>\n<h2 id=\"datahash\"><code>data:hash</code></h2>\n<blockquote>\n<ul>\n<li>Empty value ( {} ) for successful responses.</li>\n</ul>\n</blockquote>\n<h2 id=\"successboolean\"><code>success:boolean</code></h2>\n<blockquote>\n<ul>\n<li>Value with the result of the request. Possible values are TRUE or FALSE</li>\n</ul>\n</blockquote>\n<h2 id=\"statusinteger\"><code>status:integer</code></h2>\n<blockquote>\n<ul>\n<li>Value with status code of the request. For example: 200, 400, 404</li>\n</ul>\n</blockquote>\n","urlObject":{"path":["platform","v1","application","{{applicationId}}","cancel"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"2478728b-c33b-4a82-b3ec-af584c574c83","name":"Payment Required","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123"}],"body":{"mode":"raw","raw":"{\r\n  \"reason\": \"Just testing\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/cancel"},"status":"Payment Required","code":402,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"151"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:29:25 GMT"},{"key":"x-amzn-RequestId","value":"77c416aa-f789-4e69-a93c-17495af51014"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P027vEpuvHcFo3A="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d1e4-e3ee5d7f37aa94e31d23df69"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"pL1yn6tOUtAkDwobO--gyPVNysomUz0yDMCvY4E05pjbg273scoTJQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"status\": 402,\n    \"error\": [\n        {\n            \"type\": \"validation_error\",\n            \"message\": \"Application already in a canceled status\",\n            \"code\": \"application_canceled\"\n        }\n    ]\n}"},{"id":"59e64804-027b-4a65-bdf9-4496d07895f0","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123"}],"body":{"mode":"raw","raw":"{\r\n  \"reason\": \"Just testing\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/cancel"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"39"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:29:58 GMT"},{"key":"x-amzn-RequestId","value":"199232de-ba00-41d0-a06c-e24528b078bd"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P03A7HF7vHcFxFw="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d205-2e6265be9b369c6c0d906ec8"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"f7vbn4H0wim_lwjCA-23_AoRofr_dvM5Fl3yCcUSLEfkg3eK6wtkzQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {},\n    \"status\": 200\n}"},{"id":"acc9d7c9-1a99-4bd4-b862-321ca44df407","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123"}],"body":{"mode":"raw","raw":"{\r\n  \"reason\": \"Just testing\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/cancel"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"39"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:29:58 GMT"},{"key":"x-amzn-RequestId","value":"199232de-ba00-41d0-a06c-e24528b078bd"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P03A7HF7vHcFxFw="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d205-2e6265be9b369c6c0d906ec8"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"f7vbn4H0wim_lwjCA-23_AoRofr_dvM5Fl3yCcUSLEfkg3eK6wtkzQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {},\n    \"status\": 200\n}"},{"id":"f91e7c5f-25a6-4366-bd14-50914f49f11d","name":"Payment Required","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123"}],"body":{"mode":"raw","raw":"{\r\n  \"reason\": \"Just testing\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/cancel"},"status":"Payment Required","code":402,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"151"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:29:25 GMT"},{"key":"x-amzn-RequestId","value":"77c416aa-f789-4e69-a93c-17495af51014"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P027vEpuvHcFo3A="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d1e4-e3ee5d7f37aa94e31d23df69"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"pL1yn6tOUtAkDwobO--gyPVNysomUz0yDMCvY4E05pjbg273scoTJQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"status\": 402,\n    \"error\": [\n        {\n            \"type\": \"validation_error\",\n            \"message\": \"Application already in a canceled status\",\n            \"code\": \"application_canceled\"\n        }\n    ]\n}"}],"_postman_id":"fba70b28-6176-40d3-b418-8a4bc6d47264"},{"name":"Application lookup","event":[{"listen":"test","script":{"exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});\r","pm.test(\"Success message\", function () {\r","    pm.expect(pm.response.text()).to.include(\"success\");\r","});"],"type":"text/javascript","id":"ad6626da-d28d-4cb1-91b4-582325c3e8c4"}}],"id":"87748c7e-ded1-48d6-8c5b-8e03f174c7f1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"<p>(optional - ID generated by the client)</p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"dobDate\": \"1977-07-07\",\r\n\t\"customerId\": \"7777\",\r\n\t\"customerIdType\": \"SSN4\"\r\n}"},"url":"{{baseUrl}}/platform/v1/application/lookup","description":"<h1 id=\"application-lookup\">Application Lookup</h1>\n<p>This endpoint searches for customer applications. Search can be performed on the information added.</p>\n<h1 id=\"request-object\">Request Object</h1>\n<blockquote>\n<h2 id=\"dobdatestring\"><code>dobDate:string</code></h2>\n<ul>\n<li>Required</li>\n<li>Date should be in YYYY-MM-DD format. The customer should be older than 18 years to apply. Date of birth in ISO format</li>\n</ul>\n</blockquote>\n<blockquote>\n<h2 id=\"customeridstring\"><code>customerId:string</code></h2>\n<ul>\n<li>Required</li>\n<li>SSN number of the customer, four digits for SSN4 or nine digits for SSN</li>\n</ul>\n</blockquote>\n<blockquote>\n<h2 id=\"customeridtypestring\"><code>customerIdType:string</code></h2>\n<ul>\n<li>Required</li>\n<li>Customer identification type in the country. Supported types are SSN or SSN4</li>\n</ul>\n</blockquote>\n<blockquote>\n<h2 id=\"mobilephonestring\"><code>mobilePhone:string</code></h2>\n<ul>\n<li>Required</li>\n<li>Verified customer phone number ten digits</li>\n</ul>\n</blockquote>\n<h1 id=\"response-object\">Response Object</h1>\n<h2 id=\"datahash\"><code>data:hash</code></h2>\n<blockquote>\n<h4 id=\"applicationshash-array\"><code>applications:hash array</code></h4>\n<ul>\n<li>List of applications</li>\n</ul>\n<h4 id=\"applicationsapplicationsubstatusstring\"><code>applications.applicationSubStatus:string</code></h4>\n<blockquote>\n<ul>\n<li>Application sub-status</li>\n</ul>\n</blockquote>\n<h4 id=\"applicationsapplicationstatusstring\"><code>applications.applicationStatus:string</code></h4>\n<blockquote>\n<ul>\n<li>Application status</li>\n</ul>\n</blockquote>\n<h4 id=\"applicationsapplicationidstring\"><code>applications.applicationId:string</code></h4>\n<blockquote>\n<ul>\n<li>Application ID</li>\n</ul>\n</blockquote>\n<h4 id=\"applicationsmerchantnamestring\"><code>applications.merchantName:string</code></h4>\n<blockquote>\n<ul>\n<li>Merchant assigned to the application</li>\n</ul>\n</blockquote>\n<h4 id=\"applicationsexpirydatestring\"><code>applications.expiryDate:string</code></h4>\n<blockquote>\n<ul>\n<li>Application expiry date. This applies for APPROVED and PREQUALIFIED applications. ISO format date, YYYY-MM-DD.</li>\n</ul>\n</blockquote>\n</blockquote>\n<h2 id=\"successboolean\"><code>success:boolean</code></h2>\n<blockquote>\n<ul>\n<li>Value with the result of the request. Possible values are TRUE or FALSE</li>\n</ul>\n</blockquote>\n<h2 id=\"statusinteger\"><code>status:integer</code></h2>\n<blockquote>\n<ul>\n<li>Value with status code of the request. For example: 200, 400, 404</li>\n</ul>\n</blockquote>\n","urlObject":{"path":["platform","v1","application","lookup"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"4aba734c-4ee5-4499-a497-8e362bff955f","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123"}],"body":{"mode":"raw","raw":"{\r\n\t\"dobDate\": \"1977-07-07\",\r\n\t\"customerId\": \"7777\",\r\n\t\"customerIdType\": \"SSN4\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/application/lookup"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"27406"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 16 Jul 2020 20:34:46 GMT"},{"key":"x-amzn-RequestId","value":"ee654e8e-f169-4671-bcf0-70247785978a"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"PyH6rGmrPHcFong="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f10b9dd-22ea8ec4626b211ee2199d9e"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 f0ccde3c63bb0c13552807c8453d7f50.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"SPv-v4uUThWeUmVPowswGvfGzCQJ1NrW9wWuyotgOrPz05T_rCJXLA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"status\": 200,\n    \"data\": {\n        \"applications\": [\n            {\n                \"applicationId\": \"TheAPPID\",\n                \"applicationStatus\": \"APPROVED\",\n                \"applicationSubStatus\": \"\"\n            },{\n                \"applicationId\": \"TheAPPID\",\n                \"applicationStatus\": \"PENDING_DOCS\",\n                \"applicationSubStatus\": \"\"\n            },{\n                \"applicationId\": \"TheAPPID\",\n                \"applicationStatus\": \"DENIED\",\n                \"applicationSubStatus\": \"\"\n            }\n        ]\n    }\n}"},{"id":"f4d0c359-5bb2-4ff2-a3e3-d4821b703fa2","name":"No results","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123"}],"body":{"mode":"raw","raw":"{\r\n\t\"dobDate\": \"2020-07-07\",\r\n\t\"customerId\": \"7777\",\r\n\t\"customerIdType\": \"SSN4\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/application/lookup"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"56"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 16 Jul 2020 20:35:24 GMT"},{"key":"x-amzn-RequestId","value":"bb8dfe3c-87fb-4678-b277-578e77bea459"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"PyIB2GRyPHcFzoQ="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f10ba0b-bfa842bcb86b71240a91daca"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 f0ccde3c63bb0c13552807c8453d7f50.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"eXTEFiqFOYVqeW1b63yAHHdVa3ZityNYMcTg7VNyjxrq_qnxfCuOFA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,    \n    \"data\": {\n        \"applications\": []\n    },\n    \"status\": 200\n}"},{"id":"9656519e-0424-4d66-9b53-e3216ab78c75","name":"No results","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123"}],"body":{"mode":"raw","raw":"{\r\n\t\"dobDate\": \"2020-07-07\",\r\n\t\"customerId\": \"7777\",\r\n\t\"customerIdType\": \"SSN4\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/application/lookup"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"56"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 16 Jul 2020 20:35:24 GMT"},{"key":"x-amzn-RequestId","value":"bb8dfe3c-87fb-4678-b277-578e77bea459"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"PyIB2GRyPHcFzoQ="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f10ba0b-bfa842bcb86b71240a91daca"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 f0ccde3c63bb0c13552807c8453d7f50.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"eXTEFiqFOYVqeW1b63yAHHdVa3ZityNYMcTg7VNyjxrq_qnxfCuOFA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,    \n    \"data\": {\n        \"applications\": []\n    },\n    \"status\": 200\n}"},{"id":"2046fbf5-2d5a-4b42-afa3-de52873fa97a","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123"}],"body":{"mode":"raw","raw":"{\r\n\t\"dobDate\": \"1977-07-07\",\r\n\t\"customerId\": \"7777\",\r\n\t\"customerIdType\": \"SSN4\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/application/lookup"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"27406"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 16 Jul 2020 20:34:46 GMT"},{"key":"x-amzn-RequestId","value":"ee654e8e-f169-4671-bcf0-70247785978a"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"PyH6rGmrPHcFong="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f10b9dd-22ea8ec4626b211ee2199d9e"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 f0ccde3c63bb0c13552807c8453d7f50.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"SPv-v4uUThWeUmVPowswGvfGzCQJ1NrW9wWuyotgOrPz05T_rCJXLA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"status\": 200,\n    \"data\": {\n        \"applications\": [\n            {\n                \"applicationId\": \"TheAPPID\",\n                \"applicationStatus\": \"APPROVED\",\n                \"applicationSubStatus\": \"\"\n            },{\n                \"applicationId\": \"TheAPPID\",\n                \"applicationStatus\": \"PENDING_DOCS\",\n                \"applicationSubStatus\": \"\"\n            },{\n                \"applicationId\": \"TheAPPID\",\n                \"applicationStatus\": \"DENIED\",\n                \"applicationSubStatus\": \"\"\n            }\n        ]\n    }\n}"}],"_postman_id":"87748c7e-ded1-48d6-8c5b-8e03f174c7f1"},{"name":"Transfer Application","event":[{"listen":"test","script":{"exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});\r","pm.test(\"Success message\", function () {\r","    pm.expect(pm.response.text()).to.include(\"success\");\r","});"],"type":"text/javascript","id":"23b5d915-66db-4863-9bd8-06209be6a89a"}}],"id":"6c14476c-c4d1-42bd-9200-6bbd934a1d16","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"<p>(optional - ID generated by the client)</p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"dobDate\":\"1977-07-07\",\r\n\t\"customerId\":\"7777\",\r\n\t\"customerIdType\":\"SSN4\",\r\n    \"mobilePhone\":\"1231231234\",\r\n    \"applicationId\": \"2107200035UT\"\r\n}"},"url":"{{baseUrl}}/platform/v1/application/transfer","description":"<h1 id=\"transfer-application\">Transfer Application</h1>\n<p>This endpoint searches for a customer application and transfer the application when applies. </p>\n<h1 id=\"request-object\">Request Object</h1>\n<blockquote>\n<h2 id=\"dobdatestring\"><code>dobDate:string</code></h2>\n<ul>\n<li>Required</li>\n<li>Date should be in YYYY-MM-DD format. The customer should be older than 18 years to apply. Date of birth in ISO format</li>\n</ul>\n</blockquote>\n<blockquote>\n<h2 id=\"customeridstring\"><code>customerId:string</code></h2>\n<ul>\n<li>Required</li>\n<li>SSN number of the customer, four digits for SSN4 or nine digits for SSN</li>\n</ul>\n</blockquote>\n<blockquote>\n<h2 id=\"customeridtypestring\"><code>customerIdType:string</code></h2>\n<ul>\n<li>Required</li>\n<li>Customer identification type in the country. Supported types are SSN or SSN4</li>\n</ul>\n</blockquote>\n<blockquote>\n<h2 id=\"mobilephonestring\"><code>mobilePhone:string</code></h2>\n<ul>\n<li>Required</li>\n<li>Verified customer phone number ten digits</li>\n</ul>\n</blockquote>\n<blockquote>\n<h2 id=\"applicationidstring\"><code>applicationId:string</code></h2>\n<ul>\n<li>Required</li>\n<li>Application to transfer</li>\n</ul>\n</blockquote>\n<h1 id=\"response-object\">Response Object</h1>\n<h2 id=\"datahash\"><code>data:hash</code></h2>\n<blockquote>\n<h4 id=\"statusstring\"><code>status:string</code></h4>\n<ul>\n<li>Status of the application. It could be APPROVED or PREQUALIFIED</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"applicationidstring-1\"><code>applicationId:string</code></h4>\n<ul>\n<li>Application Id</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"approvedamountstring\"><code>approvedAmount:string</code></h4>\n<ul>\n<li>Approved Amount</li>\n</ul>\n</blockquote>\n<h2 id=\"successboolean\"><code>success:boolean</code></h2>\n<blockquote>\n<ul>\n<li>Value with the result of the request. Possible values are TRUE or FALSE</li>\n</ul>\n</blockquote>\n<h2 id=\"statusinteger\"><code>status:integer</code></h2>\n<blockquote>\n<ul>\n<li>Value with status code of the request. For example: 200, 400, 404</li>\n</ul>\n</blockquote>\n","urlObject":{"path":["platform","v1","application","transfer"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"4436d959-5d56-45b3-961a-8bba421e7387","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123"}],"body":{"mode":"raw","raw":"{\r\n\t\"dobDate\":\"1977-07-07\",\r\n\t\"customerId\":\"7777\",\r\n\t\"customerIdType\":\"SSN4\",\r\n    \"mobilePhone\":\"1231231234\",\r\n    \"applicationId\": \"2107200035UT\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/application/transfer"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"27406"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 16 Jul 2020 20:34:46 GMT"},{"key":"x-amzn-RequestId","value":"ee654e8e-f169-4671-bcf0-70247785978a"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"PyH6rGmrPHcFong="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f10b9dd-22ea8ec4626b211ee2199d9e"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 f0ccde3c63bb0c13552807c8453d7f50.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"SPv-v4uUThWeUmVPowswGvfGzCQJ1NrW9wWuyotgOrPz05T_rCJXLA=="}],"cookie":[],"responseTime":null,"body":"{    \n\"success\": true,\n    \"data\": {\n        \"approvedAmount\": \"5000.00\",\n        \"applicationId\": \"2107200035UT\",\n        \"status\": \"APPROVED\"\n    },\n\"status\": 200 \n}"},{"id":"97d2e5e0-8096-4e95-ab8c-9ec78e95ed52","name":"No results","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123"}],"body":{"mode":"raw","raw":"{\r\n\t\"dobDate\":\"1977-07-07\",\r\n\t\"customerId\":\"7777\",\r\n\t\"customerIdType\":\"SSN4\",\r\n    \"mobilePhone\":\"1231231234\",\r\n    \"applicationId\": \"2107200065UT\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/application/transfer"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"56"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 16 Jul 2020 20:35:24 GMT"},{"key":"x-amzn-RequestId","value":"bb8dfe3c-87fb-4678-b277-578e77bea459"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"PyIB2GRyPHcFzoQ="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f10ba0b-bfa842bcb86b71240a91daca"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 f0ccde3c63bb0c13552807c8453d7f50.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"eXTEFiqFOYVqeW1b63yAHHdVa3ZityNYMcTg7VNyjxrq_qnxfCuOFA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"status\": 404,\n    \"error\": [\n        {\n            \"type\": \"validation_error\",\n            \"message\": \"Application not found\",\n            \"code\": \"application_not_found\"\n        }\n    ]\n}"},{"id":"433dadc9-51ed-4e50-b109-44d7f730fda3","name":"No results","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123"}],"body":{"mode":"raw","raw":"{\r\n\t\"dobDate\":\"1977-07-07\",\r\n\t\"customerId\":\"7777\",\r\n\t\"customerIdType\":\"SSN4\",\r\n    \"mobilePhone\":\"1231231234\",\r\n    \"applicationId\": \"2107200065UT\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/application/transfer"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"56"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 16 Jul 2020 20:35:24 GMT"},{"key":"x-amzn-RequestId","value":"bb8dfe3c-87fb-4678-b277-578e77bea459"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"PyIB2GRyPHcFzoQ="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f10ba0b-bfa842bcb86b71240a91daca"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 f0ccde3c63bb0c13552807c8453d7f50.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"eXTEFiqFOYVqeW1b63yAHHdVa3ZityNYMcTg7VNyjxrq_qnxfCuOFA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"status\": 404,\n    \"error\": [\n        {\n            \"type\": \"validation_error\",\n            \"message\": \"Application not found\",\n            \"code\": \"application_not_found\"\n        }\n    ]\n}"},{"id":"82b9a7f0-6e31-4580-8c97-0a81daeaf794","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123"}],"body":{"mode":"raw","raw":"{\r\n\t\"dobDate\":\"1977-07-07\",\r\n\t\"customerId\":\"7777\",\r\n\t\"customerIdType\":\"SSN4\",\r\n    \"mobilePhone\":\"1231231234\",\r\n    \"applicationId\": \"2107200035UT\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/application/transfer"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"27406"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 16 Jul 2020 20:34:46 GMT"},{"key":"x-amzn-RequestId","value":"ee654e8e-f169-4671-bcf0-70247785978a"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"PyH6rGmrPHcFong="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f10b9dd-22ea8ec4626b211ee2199d9e"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 f0ccde3c63bb0c13552807c8453d7f50.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"SPv-v4uUThWeUmVPowswGvfGzCQJ1NrW9wWuyotgOrPz05T_rCJXLA=="}],"cookie":[],"responseTime":null,"body":"{    \n\"success\": true,\n    \"data\": {\n        \"approvedAmount\": \"5000.00\",\n        \"applicationId\": \"2107200035UT\",\n        \"status\": \"APPROVED\"\n    },\n\"status\": 200 \n}"}],"_postman_id":"6c14476c-c4d1-42bd-9200-6bbd934a1d16"},{"name":"Send verification code","event":[{"listen":"test","script":{"exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);       \r","});\r","\r","pm.test(\"Check response body\", function () {\r","    var jsonData = pm.response.json();\r","    pm.expect(jsonData.success).to.eql(true);\r","    pm.expect(jsonData.status).to.eql(200);\r","    pm.expect(pm.response.text()).to.include(\"verificationResourceId\");\r","});\r","\r","pm.test(\"Set the verificationResourceId\", function () {\r","    var jsonData = pm.response.json();\r","    pm.environment.set(\"verificationResourceId\", jsonData.data.verificationResourceId);\r","});"],"type":"text/javascript","id":"8b0aefe5-e48e-4033-90c1-8c3d8782d7ab"}}],"id":"cd83000a-55c6-41fe-9b9e-0d43e9061904","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"<p>(optional - ID generated by the client)</p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"channel\": \"SMS\",\n    \"recipient\": \"8995014900\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/verification","description":"<h1 id=\"send-verification-code\">Send Verification Code</h1>\n<p>This endpoint sends the customer verification code to specified channel.</p>\n<h1 id=\"request-object\">Request Object</h1>\n<blockquote>\n<h2 id=\"channelstring\"><code>channel:string</code></h2>\n<ul>\n<li>Required</li>\n<li>Defines the channel to send the verification code. Allowed values are SMS and EMAIL</li>\n</ul>\n</blockquote>\n<blockquote>\n<h2 id=\"recipientstring\"><code>recipient:string</code></h2>\n<ul>\n<li>Required</li>\n<li>Defines the recipient. Valid phone number or valid email</li>\n</ul>\n</blockquote>\n<h1 id=\"response-object\">Response Object</h1>\n<h2 id=\"datahash\"><code>data:hash</code></h2>\n<blockquote>\n<h4 id=\"verificationresourceidstring\"><code>verificationResourceId:string</code></h4>\n<ul>\n<li>ID generated when sending the code</li>\n</ul>\n</blockquote>\n<h2 id=\"successboolean\"><code>success:boolean</code></h2>\n<blockquote>\n<ul>\n<li>Value with the result of the request. Possible values are TRUE or FALSE</li>\n</ul>\n</blockquote>\n<h2 id=\"statusinteger\"><code>status:integer</code></h2>\n<blockquote>\n<ul>\n<li>Value with status code of the request. For example: 200, 400, 404</li>\n</ul>\n</blockquote>\n","urlObject":{"path":["platform","v1","verification"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"41717020-106b-472f-8c6b-aa47c27bb72c","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123","disabled":true}],"body":{"mode":"raw","raw":"{\n    \"channel\": \"SM\",\n    \"recipient\": \"8995014900\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/verification"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"145"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 14:01:47 GMT"},{"key":"x-amzn-RequestId","value":"5dd1edde-4f1b-400b-990f-e5e905c0e139"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P0hTyGIRPHcFvqg="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11af4b-2f9b161e7dcc01419ae11a30"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 9c1e51085ad77fbbab78fe2feb46cf98.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"Are2v91iZHxd0dM57t9bjElcdzRLoRw0tpJhp-JNg41y_21p4CjiEA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,    \n    \"error\": [\n        {\n            \"code\": \"channel_invalid\",\n            \"type\": \"validation_error\",\n            \"message\": \"Channel is invalid, allowed values: SMS\"\n        }\n    ],\n    \"status\": 400\n}"},{"id":"c942a270-65b4-4e1b-abaa-51fad537aecf","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123","disabled":true}],"body":{"mode":"raw","raw":"{\n    \"channel\": \"SMS\",\n    \"recipient\": \"8995014900\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/verification"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"130"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 14:01:26 GMT"},{"key":"x-amzn-RequestId","value":"025c2aae-41bd-4354-9cc7-b27c86b808a3"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P0hQTE49PHcF6CQ="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11af35-71eb5a455d6916a4a770b6c7"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 9c1e51085ad77fbbab78fe2feb46cf98.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"c3jkDwbniXPByQivU6SIIYTGeXf06gG8KZClzDJJfA1lnZYLTakPjw=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"verificationResourceId\": \"{{verificationResourceId}}\"\n    },\n    \"status\": 200\n}"},{"id":"07333fcc-dfd7-4317-92d9-487db615ef62","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123","disabled":true}],"body":{"mode":"raw","raw":"{\n    \"channel\": \"SMS\",\n    \"recipient\": \"8995014900\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/verification"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"130"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 14:01:26 GMT"},{"key":"x-amzn-RequestId","value":"025c2aae-41bd-4354-9cc7-b27c86b808a3"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P0hQTE49PHcF6CQ="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11af35-71eb5a455d6916a4a770b6c7"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 9c1e51085ad77fbbab78fe2feb46cf98.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"c3jkDwbniXPByQivU6SIIYTGeXf06gG8KZClzDJJfA1lnZYLTakPjw=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"verificationResourceId\": \"{{verificationResourceId}}\"\n    },\n    \"status\": 200\n}"},{"id":"b2f1dad9-792a-48b6-a1c3-515fdc2ec181","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123","disabled":true}],"body":{"mode":"raw","raw":"{\n    \"channel\": \"SM\",\n    \"recipient\": \"8995014900\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/verification"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"145"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 14:01:47 GMT"},{"key":"x-amzn-RequestId","value":"5dd1edde-4f1b-400b-990f-e5e905c0e139"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P0hTyGIRPHcFvqg="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11af4b-2f9b161e7dcc01419ae11a30"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 9c1e51085ad77fbbab78fe2feb46cf98.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"Are2v91iZHxd0dM57t9bjElcdzRLoRw0tpJhp-JNg41y_21p4CjiEA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,    \n    \"error\": [\n        {\n            \"code\": \"channel_invalid\",\n            \"type\": \"validation_error\",\n            \"message\": \"Channel is invalid, allowed values: SMS\"\n        }\n    ],\n    \"status\": 400\n}"}],"_postman_id":"cd83000a-55c6-41fe-9b9e-0d43e9061904"},{"name":"Check verification code","event":[{"listen":"test","script":{"exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);       \r","});\r","\r","pm.test(\"Check response body\", function () {\r","    var jsonData = pm.response.json();\r","    pm.expect(jsonData.success).to.eql(true);\r","    pm.expect(jsonData.status).to.eql(200);\r","    pm.expect(jsonData.data.status).to.eql(\"VALID\");\r","});"],"type":"text/javascript","id":"c078c7d0-383e-4a44-8ded-49714729f5d3"}}],"id":"45b406db-90da-46ec-8e9a-1720fc182c0a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"<p>(optional - ID generated by the client)</p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"verificationCode\": \"111111\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/verification/{{verificationResourceId}}/check","description":"<h1 id=\"check-verification-code\">Check Verification Code</h1>\n<p>This endpoint checks the verification code sent to a specified channel.</p>\n<h2 id=\"path-params\">PATH PARAMS</h2>\n<blockquote>\n<h2 id=\"verificationresourceidstring\"><code>verificationResourceId:string</code></h2>\n<ul>\n<li>Required</li>\n<li>verificationResourceId is returned when calling the send the verification code</li>\n</ul>\n</blockquote>\n<h1 id=\"request-object\">Request Object</h1>\n<blockquote>\n<h2 id=\"verificationcodestring\"><code>verificationCode:string</code></h2>\n<ul>\n<li>Required</li>\n<li>Verification code sent by the API. String with six characters.</li>\n</ul>\n</blockquote>\n<h1 id=\"response-object\">Response Object</h1>\n<h2 id=\"datahash\"><code>data:hash</code></h2>\n<blockquote>\n<h4 id=\"statusstring\"><code>status:string</code></h4>\n<ul>\n<li>Status of the request. Possible values are VALID or INVALID</li>\n</ul>\n</blockquote>\n<h2 id=\"successboolean\"><code>success:boolean</code></h2>\n<blockquote>\n<ul>\n<li>Value with the result of the request. Possible values are TRUE or FALSE</li>\n</ul>\n</blockquote>\n<h2 id=\"statusinteger\"><code>status:integer</code></h2>\n<blockquote>\n<ul>\n<li>Value with status code of the request. For example: 200, 400, 404</li>\n</ul>\n</blockquote>\n","urlObject":{"path":["platform","v1","verification","{{verificationResourceId}}","check"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"5258a588-6998-4ac3-a0ff-d42e989342cf","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer pORU5GTWtNeE1UQkJPVE5DUl....JiWYvnmRQSSCozUr6Xt7RXRK","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123","disabled":true}],"body":{"mode":"raw","raw":"{\n    \"verificationCode\": \"111\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api-sandbox.snapfinance.com/platform/v1/verification/6f9df6d...6526ddcdf/check"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"171"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 14:02:36 GMT"},{"key":"x-amzn-RequestId","value":"9a49906c-4bdd-4ed1-954a-add21bce905b"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P0hbcFltvHcF1rQ="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11af7c-b7fed7fa8e462109908a2cba"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 9c1e51085ad77fbbab78fe2feb46cf98.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"LjzSbNbtEPjXBwxAj9bJx24LWoFijUJMdpmvV6GzfDcRL9Tm5JvZlg=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,    \n    \"error\": [\n        {\n            \"code\": \"verificationResourceId_invalid\",\n            \"type\": \"validation_error\",\n            \"message\": \"Verification resource id is null, empty or invalid\"\n        }\n    ],\n    \"status\": 400\n}"},{"id":"7361fdb6-9ee4-44de-8657-ffc0ce21fba4","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123","disabled":true}],"body":{"mode":"raw","raw":"{\n    \"verificationCode\": \"111\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/verification/{{verificationResourceId}}/check"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"55"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 14:02:10 GMT"},{"key":"x-amzn-RequestId","value":"733f9c45-6751-4271-8b66-7995fcc2a0d1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P0hXTH_7PHcFl8A="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11af61-0f3ab03c826d986e7e24c7fc"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 9c1e51085ad77fbbab78fe2feb46cf98.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"IzpbGYZW-mmNs-SnGV-rT7iBzjplPcs_lt_jgwMjOxgvsD1Lq0Gq6g=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"status\": \"VALID\"\n    },\n    \"status\": 200\n}"},{"id":"7ed02faf-4065-4740-8e89-b3f501028ed9","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer pORU5GTWtNeE1UQkJPVE5DUl....JiWYvnmRQSSCozUr6Xt7RXRK","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123","disabled":true}],"body":{"mode":"raw","raw":"{\n    \"verificationCode\": \"111\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api-sandbox.snapfinance.com/platform/v1/verification/6f9df6d...6526ddcdf/check"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"171"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 14:02:36 GMT"},{"key":"x-amzn-RequestId","value":"9a49906c-4bdd-4ed1-954a-add21bce905b"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P0hbcFltvHcF1rQ="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11af7c-b7fed7fa8e462109908a2cba"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 9c1e51085ad77fbbab78fe2feb46cf98.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"LjzSbNbtEPjXBwxAj9bJx24LWoFijUJMdpmvV6GzfDcRL9Tm5JvZlg=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,    \n    \"error\": [\n        {\n            \"code\": \"verificationResourceId_invalid\",\n            \"type\": \"validation_error\",\n            \"message\": \"Verification resource id is null, empty or invalid\"\n        }\n    ],\n    \"status\": 400\n}"},{"id":"3298cdad-e572-4c18-bc5f-a853f30178fb","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123","disabled":true}],"body":{"mode":"raw","raw":"{\n    \"verificationCode\": \"111\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/verification/{{verificationResourceId}}/check"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"55"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 14:02:10 GMT"},{"key":"x-amzn-RequestId","value":"733f9c45-6751-4271-8b66-7995fcc2a0d1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P0hXTH_7PHcFl8A="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11af61-0f3ab03c826d986e7e24c7fc"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 9c1e51085ad77fbbab78fe2feb46cf98.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"IzpbGYZW-mmNs-SnGV-rT7iBzjplPcs_lt_jgwMjOxgvsD1Lq0Gq6g=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"status\": \"VALID\"\n    },\n    \"status\": 200\n}"}],"_postman_id":"45b406db-90da-46ec-8e9a-1720fc182c0a"},{"name":"Send SMS Link","event":[{"listen":"test","script":{"exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});"],"type":"text/javascript","id":"fc5e7b64-19ea-4e63-8f4f-3058ae34a865"}}],"id":"48203840-ba06-48ed-9798-b6e3fffaff64","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"x-snap-api-version","value":"v1","type":"text"},{"key":"correlation-id","value":"3499988b-5bd0-4bf0-b481-25996a67847e","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"phoneNumber\": \"1234567890\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/sms-link","description":"<p>Send SMS link to customer's phone number. This endpoint allows partners to send an SMS with a link to start the application process.</p>\n","urlObject":{"path":["platform","v1","sms-link"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"f3fdb7fd-8f13-445e-a40f-1105d1278959","name":"Success Response","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"phoneNumber\": \"1234567890\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/sms-link"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"SMS sent successfully\"\n}"}],"_postman_id":"48203840-ba06-48ed-9798-b6e3fffaff64"}],"id":"4f860a36-1fa7-4770-bc43-ea64e50bacc3","_postman_id":"4f860a36-1fa7-4770-bc43-ea64e50bacc3","description":""},{"name":"PQA","item":[{"name":"Get Token","event":[{"listen":"test","script":{"exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","    ","    var jsonData = pm.response.json();","    pm.environment.set(\"bearerToken\", jsonData.access_token);","});","","pm.environment.set(\"social_4\", _.random(1000, 9999));","pm.environment.set(\"social_9\", _.random(100000000, 999999999));","pm.environment.set(\"account_number\", _.random(1000000000, 9999999999));"],"type":"text/javascript","id":"a5df4587-e5cc-4182-bafd-cd290c594524"}}],"id":"800d3822-450a-47bc-9823-40ea6ad2f378","protocolProfileBehavior":{"disabledSystemHeaders":{"accept":true,"accept-encoding":true,"connection":true,"user-agent":true},"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"client_id\": \"{{authClientId}}\",\r\n\t\"client_secret\": \"{{authClientSecret}}\",\r\n\t\"audience\": \"{{authClientAudience}}\",\r\n\t\"grant_type\": \"client_credentials\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{authHostUrl}}/oauth/token","description":"<h1 id=\"get-token\">Get Token</h1>\n<p>This endpoint gets the token to make Snap Finance API calls.</p>\n<h2 id=\"environment-information\">Environment information</h2>\n<ul>\n<li><p>Sandbox base URL: <a href=\"https://api-sandbox.snapfinance.com/platform/v1\">https://api-sandbox.snapfinance.com/platform/v1</a></p>\n</li>\n<li><p>Production base URL:  <a href=\"https://api.snapfinance.com/platform/v1\">https://api.snapfinance.com/platform/v1</a></p>\n</li>\n</ul>\n<p><strong>Note:</strong> Production credentials will be provided after the integration is ready and tested in sandbox.</p>\n<h2 id=\"request-object\">Request Object</h2>\n<blockquote>\n<h4 id=\"client_idstring\"><code>client_id:string</code></h4>\n<ul>\n<li>Required</li>\n<li>Is the client ID provided by Snap</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"client_secretstring\"><code>client_secret:string</code></h4>\n<ul>\n<li>Required</li>\n<li>Is the client secret provided by Snap</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"audiencestring\"><code>audience:string</code></h4>\n<ul>\n<li>Required</li>\n<li>Value must be <a href=\"https://api-release.snapfinance.com/platform/v1\">https://api-release.snapfinance.com/platform/v1</a> for sandbox environment</li>\n<li>Value must be <a href=\"https://api.snapfinance.com/platform/v1\">https://api.snapfinance.com/platform/v1</a> for production environment</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"grant_typestring\"><code>grant_type:string</code></h4>\n<ul>\n<li>Required</li>\n<li>Value must be <code>client_credentials</code></li>\n</ul>\n</blockquote>\n","urlObject":{"path":["oauth","token"],"host":["{{authHostUrl}}"],"query":[],"variable":[]}},"response":[{"id":"d32b4510-7c7a-4960-8dd3-6b8cf7110395","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"client_id\": \"{{authClientId}}\",\r\n\t\"client_secret\": \"{{authClientSecret}}\",\r\n\t\"audience\": \"{{authClientAudience}}\",\r\n\t\"grant_type\": \"client_credentials\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{authHostUrl}}/oauth/token"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"openresty"},{"key":"Date","value":"Thu, 30 Jul 2020 14:37:07 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"ot-tracer-spanid","value":"362f5d543a9ee2b1"},{"key":"ot-tracer-traceid","value":"37f1cde43a952051"},{"key":"ot-tracer-sampled","value":"true"},{"key":"ot-baggage-auth0-request-id","value":"8822-1596119827.955-34.218.23.159-518-277619999-1-0.000"},{"key":"X-Auth0-RequestId","value":"78e01254a6018eab26a6"},{"key":"X-RateLimit-Limit","value":"1000000"},{"key":"X-RateLimit-Remaining","value":"999999"},{"key":"X-RateLimit-Reset","value":"1596119828"},{"key":"Cache-Control","value":"no-store"},{"key":"Pragma","value":"no-cache"},{"key":"X-Robots-Tag","value":"noindex, nofollow, nosnippet, noarchive"},{"key":"Content-Encoding","value":"gzip"},{"key":"Strict-Transport-Security","value":"max-age=15768000"}],"cookie":[],"responseTime":null,"body":"{\n    \"access_token\": \"{{bearerToken}}\",\n    \"scope\": \"array of scopes\",\n    \"expires_in\": 86400,\n    \"token_type\": \"Bearer\"\n}"},{"id":"461c9804-232a-4281-9ea6-9b5b01e2fd28","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"client_id\": \"{{authClientId}}\",\r\n\t\"client_secret\": \"{{authClientSecret}}\",\r\n\t\"audience\": \"{{authClientAudience}}\",\r\n\t\"grant_type\": \"client_credentials\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{authHostUrl}}/oauth/token"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"openresty"},{"key":"Date","value":"Thu, 30 Jul 2020 14:37:56 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"60"},{"key":"Connection","value":"keep-alive"},{"key":"ot-tracer-spanid","value":"49376030724ae640"},{"key":"ot-tracer-traceid","value":"778c6f7b38c6efa2"},{"key":"ot-tracer-sampled","value":"true"},{"key":"ot-baggage-auth0-request-id","value":"8822-1596119876.679-34.218.23.159-518-277619999-2-0.000"},{"key":"X-Auth0-RequestId","value":"b202aa024e7109101a82"},{"key":"X-RateLimit-Limit","value":"1000000"},{"key":"X-RateLimit-Remaining","value":"999999"},{"key":"X-RateLimit-Reset","value":"1596119877"},{"key":"cache-control","value":"private, no-store, no-cache, must-revalidate, post-check=0, pre-check=0, no-transform"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"access_denied\",\n    \"error_description\": \"Unauthorized\"\n}"},{"id":"433f6a5e-2aa4-4d5c-8de2-28d47c8c86a7","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"client_id\": \"{{authClientId}}\",\r\n\t\"client_secret\": \"{{authClientSecret}}\",\r\n\t\"audience\": \"{{authClientAudience}}\",\r\n\t\"grant_type\": \"client_credentials\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{authHostUrl}}/oauth/token"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"openresty"},{"key":"Date","value":"Thu, 30 Jul 2020 14:37:07 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"ot-tracer-spanid","value":"362f5d543a9ee2b1"},{"key":"ot-tracer-traceid","value":"37f1cde43a952051"},{"key":"ot-tracer-sampled","value":"true"},{"key":"ot-baggage-auth0-request-id","value":"8822-1596119827.955-34.218.23.159-518-277619999-1-0.000"},{"key":"X-Auth0-RequestId","value":"78e01254a6018eab26a6"},{"key":"X-RateLimit-Limit","value":"1000000"},{"key":"X-RateLimit-Remaining","value":"999999"},{"key":"X-RateLimit-Reset","value":"1596119828"},{"key":"Cache-Control","value":"no-store"},{"key":"Pragma","value":"no-cache"},{"key":"X-Robots-Tag","value":"noindex, nofollow, nosnippet, noarchive"},{"key":"Content-Encoding","value":"gzip"},{"key":"Strict-Transport-Security","value":"max-age=15768000"}],"cookie":[],"responseTime":null,"body":"{\n    \"access_token\": \"{{bearerToken}}\",\n    \"scope\": \"array of scopes\",\n    \"expires_in\": 86400,\n    \"token_type\": \"Bearer\"\n}"},{"id":"747f68c8-9092-4730-9617-8c68d07af04a","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"client_id\": \"{{authClientId}}\",\r\n\t\"client_secret\": \"{{authClientSecret}}\",\r\n\t\"audience\": \"{{authClientAudience}}\",\r\n\t\"grant_type\": \"client_credentials\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{authHostUrl}}/oauth/token"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"openresty"},{"key":"Date","value":"Thu, 30 Jul 2020 14:37:56 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"60"},{"key":"Connection","value":"keep-alive"},{"key":"ot-tracer-spanid","value":"49376030724ae640"},{"key":"ot-tracer-traceid","value":"778c6f7b38c6efa2"},{"key":"ot-tracer-sampled","value":"true"},{"key":"ot-baggage-auth0-request-id","value":"8822-1596119876.679-34.218.23.159-518-277619999-2-0.000"},{"key":"X-Auth0-RequestId","value":"b202aa024e7109101a82"},{"key":"X-RateLimit-Limit","value":"1000000"},{"key":"X-RateLimit-Remaining","value":"999999"},{"key":"X-RateLimit-Reset","value":"1596119877"},{"key":"cache-control","value":"private, no-store, no-cache, must-revalidate, post-check=0, pre-check=0, no-transform"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"access_denied\",\n    \"error_description\": \"Unauthorized\"\n}"}],"_postman_id":"800d3822-450a-47bc-9823-40ea6ad2f378"},{"name":"Create Application","event":[{"listen":"test","script":{"exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","pm.test(\"Success message\", function () {","    pm.expect(pm.response.text()).to.include(\"success\");","});","","pm.test(\"Set the application ID\", function () {","    var jsonData = pm.response.json();","    pm.environment.set(\"applicationId\", jsonData.data.applicationId);","});"],"type":"text/javascript","packages":{},"id":"25f9cc3f-d343-4061-8087-6b382839ce8d"}}],"id":"8563ebaa-9cfb-4d93-b6a4-954b62124090","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"<p>(optional - ID generated by the client)</p>\n","type":"text"},{"key":"Idempotency-Key","value":"","description":"<p>(optional - Idempotency key generated by the client)</p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"customerInformation\": {\r\n\t\t\"dobDate\": \"1977-07-07\",\r\n\t\t\"customerId\": \"{{social_4}}\",\r\n\t\t\"customerIdType\": \"SSN4\",\r\n\t\t\"mobilePhone\": \"1000000019\",\r\n\t\t\"mobilePhoneCountry\": \"US\",\r\n\t\t\"email\": \"test@test.com\",\r\n\t\t\"firstName\": \"John\",\r\n\t\t\"lastName\": \"Smith\",\r\n\t\t\"salutation\": \"MR\",\r\n\t\t\"billingAddress\": {\r\n\t\t\t\"streetAddress\": \"123MainSt\",\r\n\t\t\t\"city\": \"SaltLakeCity\",\r\n\t\t\t\"state\": \"UT\",\r\n\t\t\t\"country\": \"US\",\r\n\t\t\t\"postalCode\": \"84001\"\r\n\t\t},\r\n\t\t\"driversLicenseNumber\": \"123456879\",\r\n\t\t\"driversLicenseState\": \"FL\",\r\n\t\t\"language\": \"EN\",\r\n\t\t\"rentOwn\": \"OWN\",\r\n\t\t\"timeAddressYears\": 0,\r\n\t\t\"timeAddressMonths\": 2,\r\n\t\t\"phoneOptIn\": true\r\n\t},\r\n\t\"supplementalDataInformation\": {\r\n\t\t\"customerPastApps\": \"2\",\r\n\t\t\"customerIP\": \"127.X.0.1\"\r\n\t},\r\n\t\"cartInformation\": {\r\n\t\t\"currencyCode\": \"USD\",\r\n\t\t\"taxAmount\": \"35.00\",\r\n\t\t\"shippingAmount\": \"15.00\",\r\n\t\t\"totalAmount\": \"320.00\",\r\n\t\t\"discountAmount\": \"0.00\",\r\n\t\t\"orderId\": \"041299\",\r\n\t\t\"items\": [\r\n\t\t\t{\r\n\t\t\t\t\"price\": \"150.00\",\r\n\t\t\t\t\"itemId\": \"ABC\",\r\n\t\t\t\t\"description\": \"Mattress\",\r\n\t\t\t\t\"sku\": \"D1234\",\r\n\t\t\t\t\"quantity\": 1,\r\n\t\t\t\t\"leasable\":true\r\n\t\t\t},\r\n            \t\t\t{\r\n\t\t\t\t\"price\": \"100.00\",\r\n\t\t\t\t\"itemId\": \"DEF\",\r\n\t\t\t\t\"description\": \"TV\",\r\n\t\t\t\t\"sku\": \"D1235\",\r\n\t\t\t\t\"quantity\": 1,\r\n\t\t\t\t\"leasable\":true,\r\n                \"itemType\": \"PRODUCT\"\r\n\t\t\t},\r\n            \t\t\t{\r\n\t\t\t\t\"price\": \"20.00\",\r\n\t\t\t\t\"itemId\": \"LMN\",\r\n\t\t\t\t\"description\": \"Misc Fee\",\r\n\t\t\t\t\"sku\": \"A0001\",\r\n\t\t\t\t\"quantity\": 1,\r\n\t\t\t\t\"leasable\":true,\r\n                \"itemType\": \"SERVICE\"\r\n\t\t\t}\r\n\t\t],\r\n\t\t\"shippingAddress\": {\r\n\t\t\t\"streetAddress\": \"456BroadwaySt\",\r\n\t\t\t\"city\": \"SaltLakeCity\",\r\n\t\t\t\"state\": \"UT\",\r\n\t\t\t\"country\": \"US\",\r\n\t\t\t\"postalCode\": \"84001\"\r\n\t\t}\r\n\t},\r\n\t\"incomeInformation\": [{\r\n\t\t\"employerName\": \"AcmeCorporation\",\r\n\t\t\"frequency\": \"BI_WEEKLY\",\r\n\t\t\"incomeAmount\": \"5000.00\",\r\n\t\t\"phone\": \"1234567890\",\r\n\t\t\"phoneCountryCode\": \"US\",\r\n\t\t\"positionHeld\": \"Associate\",\r\n\t\t\"type\": \"FULL_TIME\",\r\n\t\t\"lastPayDate\": \"2020-02-07\",\r\n\t\t\"nextPayDate\": \"2020-02-21\"\r\n\t}],\r\n    \"complianceDisclosures\": {\r\n        \"termsConditions\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"electronicTransaction\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"prequalifiedTermsConditions\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"eConsent\": {\r\n            \"timestamp\": \"10/23/2022\"\r\n        }\r\n    }\r\n}"},"url":"{{baseUrl}}/platform/v1/application","description":"<h1 id=\"create-application\">Create Application</h1>\n<p>This endpoint creates an application and returns the decision on the application. It returns an applicationId if the application is approved and marks the application status as PREQUALIFIED/APPROVED/DENIED. Check the example requests to get one for each scenario.</p>\n<p><strong>Note</strong>: incomeInformation, cartInformation, and bankInformation objects are <strong>MANDATORY</strong> for a final approval (You can send those using the PATCH endpoint). If you are enrolled for a prequalification experience the customer can get PREQUALIFIED with customerInformation only. Check with your integrator for the experience selected.</p>\n<h1 id=\"request-object\">Request Object</h1>\n<h2 id=\"customerinformationhash\"><code>customerInformation:hash</code></h2>\n<h4 id=\"dobdatestring\"><code>dobDate:string</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Date should be in YYYY-MM-DD format. The customer should be older than 18 years to apply. Date of birth in ISO format</p>\n</li>\n</ul>\n<h4 id=\"customeridstring\"><code>customerId:string</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>SSN number of the customer, four digits for SSN4 or 9 digits for SSN</p>\n</li>\n</ul>\n<h4 id=\"customeridtypestring\"><code>customerIdType:string</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Customer identification type in the country. Supported types are SSN or SSN4</p>\n</li>\n</ul>\n<h4 id=\"mobilephonestring\"><code>mobilePhone:string</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Verified customer phone number 10 digits</p>\n</li>\n</ul>\n<h4 id=\"mobilephonecountrystring\"><code>mobilePhoneCountry:string</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Country code in ISO 3166-1 alpha-2. Only US carriers are supported for now</p>\n</li>\n</ul>\n<h4 id=\"emailstring\"><code>email:string</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Properly formatted valid email address</p>\n</li>\n</ul>\n<h4 id=\"firstnamestring\"><code>firstName:string</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Can not be null or blank. It needs to be more than two characters</p>\n</li>\n</ul>\n<h4 id=\"lastnamestring\"><code>lastName:string</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Can not be null or blank. It needs to be more than two characters</p>\n</li>\n</ul>\n<h4 id=\"salutationstring\"><code>salutation:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Customer salutation. Supported values are MR, MRS, MISS or NONE</p>\n</li>\n</ul>\n<h4 id=\"driverslicensenumberstring\"><code>driversLicenseNumber:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Customer drivers license number. Valid driver license number</p>\n</li>\n</ul>\n<h4 id=\"driverslicensestatestring\"><code>driversLicenseState:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Customer drivers license state. Valid US state in two characters</p>\n</li>\n</ul>\n<h4 id=\"languagestring\"><code>language:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Language code preference of the customer. Supported values are EN or ES</p>\n</li>\n</ul>\n<h4 id=\"rentownstring\"><code>rentOwn:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Customers current residential type whether it is rental or owned. Supported values are RENT or OWN</p>\n</li>\n</ul>\n<h4 id=\"timeaddressyearsstring\"><code>timeAddressYears:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Positive number | Number of years the customer has lived at his or her current residential address</p>\n</li>\n</ul>\n<h4 id=\"timeaddressmonthsstring\"><code>timeAddressMonths:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Positive number. Number of months the customer has lived at his or her current address</p>\n</li>\n</ul>\n<h4 id=\"phoneoptinboolean\"><code>phoneOptIn:boolean</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Phone communication opt in for the customer. The customer must explicitly agree or disagree with phone communication</p>\n</li>\n</ul>\n<h4 id=\"billingaddresshash\"><code>billingAddress:hash</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Billing address of customer. Mostly will be his or her current residential address. Billing address used for lease agreement</p>\n<h4 id=\"billingaddressstreetaddressstring\"><code>billingAddress.streetAddress:string</code></h4>\n<blockquote>\n<p>&lt;ul &gt;&lt;li &gt;&lt;div&gt;Required&lt;/div&gt;&lt;/li&gt;&lt;li &gt;&lt;div&gt;Street address of customer&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt;</p>\n</blockquote>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>#### `billingAddress.city:string`\n&gt; &lt;ul &gt;&lt;li &gt;&lt;div&gt;Required&lt;/div&gt;&lt;/li&gt;&lt;li &gt;&lt;div&gt;Any valid US city within LTO/SLN supported state&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; \n#### `billingAddress.state:string`\n&gt; &lt;ul &gt;&lt;li &gt;&lt;div&gt;Required&lt;/div&gt;&lt;/li&gt;&lt;li &gt;&lt;div&gt;State or province of the customer. LTO/SLN supported states (NJ, MN and WI are non LTO states) &lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; \n#### `billingAddress.country:string`\n&gt; &lt;ul &gt;&lt;li &gt;&lt;div&gt;Required&lt;/div&gt;&lt;/li&gt;&lt;li &gt;&lt;div&gt;Residence country of the customer. Only US is supported &lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; \n#### `billingAddress.postalCode:string`\n&gt; &lt;ul &gt;&lt;li &gt;&lt;div&gt;Required&lt;/div&gt;&lt;/li&gt;&lt;li &gt;&lt;div&gt;Valid US zip code five digits &lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; \n#### `billingAddress.unit :string`\n&gt; &lt;ul &gt;&lt;li &gt;&lt;div&gt;Optional&lt;/div&gt;&lt;/li&gt;&lt;li &gt;&lt;div&gt;Unit number of the customer address &lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; \n\n</code></pre><h2 id=\"cartinformationhash--conditional\"><code>cartInformation:hash</code> * Conditional</h2>\n<h4 id=\"currencycodestring\"><code>currencyCode:string</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Currency code of the cart only USD is allowed. Allowed value is USD only</p>\n</li>\n</ul>\n<h4 id=\"taxamountstring-numeric\"><code>taxAmount:string (Numeric)</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Valid amount. Sales tax as per the customer and merchant state. Funding will be done accordingly for states where snap must collect sales tax</p>\n</li>\n</ul>\n<h4 id=\"shippingamountstring-numeric\"><code>shippingAmount:string (Numeric)</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Valid shipping amount can be zero for free shipping product. Shipping amount for all the items within the cart</p>\n</li>\n</ul>\n<h4 id=\"totalamountstring-numeric\"><code>totalAmount:string (Numeric)</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Total amount of the cart Information. (ItemPrice * Qty) + taxAmount + shippingAmount - discount</p>\n</li>\n</ul>\n<h4 id=\"discountamountstring-numeric\"><code>discountAmount:string (Numeric)</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Discount amount of the cart information. Valid positive amount</p>\n</li>\n</ul>\n<h4 id=\"orderidstring\"><code>orderId:string</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Order ID within merchant's order management system. Any alpha numeric value</p>\n</li>\n</ul>\n<h4 id=\"itemshash-array\"><code>items:hash array</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>An array with at least one item. Leasable (for LTO) items within the cart</p>\n<h4 id=\"itemspricestring-numeric\"><code>items.price:string (Numeric)</code></h4>\n<blockquote>\n<p>&lt;ul &gt;&lt;li &gt;&lt;div&gt;Required&lt;/div&gt;&lt;/li&gt;&lt;li &gt;&lt;div&gt;Positive value. Unit price of an Item&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt;</p>\n</blockquote>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>#### `items.itemId:string`\n&gt; &lt;ul &gt;&lt;li &gt;&lt;div&gt;Required&lt;/div&gt;&lt;/li&gt;&lt;li &gt;&lt;div&gt;Within the same Order can not have two items with the same item ID. Unique item ID within customer order management system&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; \n#### `items.description:string`\n&gt; &lt;ul &gt;&lt;li &gt;&lt;div&gt;Required&lt;/div&gt;&lt;/li&gt;&lt;li &gt;&lt;div&gt;Title of the item&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; \n#### `items.sku:string`\n&gt; &lt;ul &gt;&lt;li &gt;&lt;div&gt;Optional&lt;/div&gt;&lt;/li&gt;&lt;li &gt;&lt;div&gt;SKU number associated with the item &lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; \n#### `items.quantity:Integer`\n&gt; &lt;ul &gt;&lt;li &gt;&lt;div&gt;Required&lt;/div&gt;&lt;/li&gt;&lt;li &gt;&lt;div&gt;Quantity of each item&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; \n#### `items.leasable:boolean`\n&gt; &lt;ul &gt;&lt;li &gt;&lt;div&gt;Required for LTO and optional for SLN&lt;/div&gt;&lt;/li&gt;&lt;li &gt;&lt;div&gt;All the items within the cart should be leasable for LTO. Indicator flag provided by the merchant as agreed with Snap Finance&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; \n#### `items.itemType:string`\n&gt; &lt;ul &gt;&lt;li &gt;&lt;div&gt;Optional&lt;/div&gt;&lt;/li&gt;&lt;li &gt;&lt;div&gt;Item type indicates whether the item is a physical product or not. Accepted values PRODUCT | SERVICE. Default value: PRODUCT&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; \n\n</code></pre><h4 id=\"shippingaddresshash\"><code>shippingAddress:hash</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Shipping address object</p>\n<h4 id=\"shippingaddressstreetaddressstring\"><code>shippingAddress.streetAddress:string</code></h4>\n<blockquote>\n<p>&lt;ul &gt;&lt;li &gt;&lt;div&gt;Required&lt;/div&gt;&lt;/li&gt;&lt;li &gt;&lt;div&gt;P.O boxes are not allowed. Street address where the item will be shipped&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt;</p>\n</blockquote>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>#### `shippingAddress.city:string`\n&gt; &lt;ul &gt;&lt;li &gt;&lt;div&gt;Required&lt;/div&gt;&lt;/li&gt;&lt;li &gt;&lt;div&gt;P.O boxes are not allowed. City where the items will be shipped&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; \n#### `shippingAddress.state:string`\n&gt; &lt;ul &gt;&lt;li &gt;&lt;div&gt;Required&lt;/div&gt;&lt;/li&gt;&lt;li &gt;&lt;div&gt;Valid US state. US state where the item will be shipped &lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; \n#### `shippingAddress.country:string`\n&gt; &lt;ul &gt;&lt;li &gt;&lt;div&gt;Required&lt;/div&gt;&lt;/li&gt;&lt;li &gt;&lt;div&gt;Only US is supported &lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; \n#### `shippingAddress.postalCode:string`\n&gt; &lt;ul &gt;&lt;li &gt;&lt;div&gt;Required&lt;/div&gt;&lt;/li&gt;&lt;li &gt;&lt;div&gt;Valid US zip code. Postal code of the shipping address&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; \n#### `shippingAddress.unit :string`\n&gt; &lt;ul &gt;&lt;li &gt;&lt;div&gt;Optional&lt;/div&gt;&lt;/li&gt;&lt;li &gt;&lt;div&gt;Unit number of the customer address &lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; \n\n</code></pre><h2 id=\"bankinformationhash--conditional\"><code>bankInformation:hash</code> * Conditional</h2>\n<h4 id=\"routingnumberstring\"><code>routingNumber:string</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Nine digits routing number | Customers bank routing number</p>\n</li>\n</ul>\n<h4 id=\"accountnumberstring\"><code>accountNumber:string</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Four to fifteen digits account number | Customers bank account number</p>\n</li>\n</ul>\n<h4 id=\"banknamestring\"><code>bankName:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Customers bank name</p>\n</li>\n</ul>\n<h4 id=\"bankcitystring\"><code>bankCity:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>City of the customers banking branch</p>\n</li>\n</ul>\n<h4 id=\"bankstatestring\"><code>bankState:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>State of the customers banking branch</p>\n</li>\n</ul>\n<h4 id=\"directdepositboolean\"><code>directDeposit:boolean</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Whether the account has a direct deposit of the customer's salary</p>\n</li>\n</ul>\n<h2 id=\"incomeinformationhash-array--conditional\"><code>incomeInformation:hash array</code> * Conditional</h2>\n<h4 id=\"frequencystring\"><code>frequency:string</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Frequency of the customer's earnings. Allowed values are WEEKLY, BI_WEEKLY, SEMI_MONTHLY or MONTHLY</p>\n</li>\n</ul>\n<h4 id=\"incomeamountstring\"><code>incomeAmount:string</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Income per frequency specified. Positive amount</p>\n</li>\n</ul>\n<h4 id=\"lastpaydatestring-date\"><code>lastPayDate:string (Date)</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Last pay date of the customer. Format YYYY-MM-DD</p>\n</li>\n</ul>\n<h4 id=\"nextpaydatestring-date\"><code>nextPayDate:string (Date)</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Next pay date of the customer. Format YYYY-MM-DD</p>\n</li>\n</ul>\n<h4 id=\"typestring\"><code>type:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Type of customer income. Allowed values are FULL_TIME, PART_TIME, SELF_EMPLOYMENT, BENEFITS or OTHER</p>\n</li>\n</ul>\n<h4 id=\"positionheldstring\"><code>positionHeld:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Position held of the income information</p>\n</li>\n</ul>\n<h4 id=\"phonestring\"><code>phone:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Customers employer phone number. Ten digits string number</p>\n</li>\n</ul>\n<h4 id=\"phonecountrycodestring\"><code>phoneCountryCode:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Employers' phone country code. Only US phone numbers are supported</p>\n</li>\n</ul>\n<h4 id=\"employernamestring\"><code>employerName:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Employer name of the income information</p>\n</li>\n</ul>\n<h2 id=\"supplementaldatainformationhash\"><code>supplementalDataInformation:hash</code></h2>\n<h4 id=\"annualincomestring\"><code>annualIncome:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Annual income amount. Positive amount</p>\n</li>\n</ul>\n<h4 id=\"customeripstring\"><code>customerIP:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Customer IP Address</p>\n</li>\n</ul>\n<h4 id=\"customerpastappsstring\"><code>customerPastApps:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Customer number of past applications</p>\n</li>\n</ul>\n<h2 id=\"partnerinformationhash\"><code>partnerInformation:hash</code></h2>\n<h4 id=\"uniqueidentifierstring\"><code>uniqueIdentifier:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Partner Store Id</p>\n</li>\n</ul>\n<h4 id=\"uniqueapplicationidstring\"><code>uniqueApplicationId:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Partner Application Id</p>\n</li>\n</ul>\n<h4 id=\"uniquetransactionidstring\"><code>uniqueTransactionId:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Partner Transaction Id / API unique Request Id</p>\n</li>\n</ul>\n<h2 id=\"compliancedisclosureshash\"><code>complianceDisclosures:hash</code></h2>\n<h4 id=\"termsconditionshash\"><code>termsConditions:hash</code></h4>\n<h5 id=\"version--string\"><code>version : string</code></h5>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Disclosure version</p>\n</li>\n</ul>\n<h5 id=\"timestamp--string\"><code>timestamp : string</code></h5>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Date of acceptance of the terms and conditions</p>\n</li>\n</ul>\n<h4 id=\"electronictransactionhash\"><code>electronicTransaction:hash</code></h4>\n<h5 id=\"version--string-1\"><code>version : string</code></h5>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Disclosure version</p>\n</li>\n</ul>\n<h5 id=\"timestamp--string-1\"><code>timestamp : string</code></h5>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Date of electronic transaction</p>\n</li>\n</ul>\n<h4 id=\"prequalifiedtermsconditionshash\"><code>prequalifiedTermsConditions:hash</code></h4>\n<h5 id=\"version--string-2\"><code>version : string</code></h5>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Disclosure version</p>\n</li>\n</ul>\n<h5 id=\"timestamp--string-2\"><code>timestamp : string</code></h5>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Date of acceptance of the terms and conditions for prequal apps</p>\n</li>\n</ul>\n<h4 id=\"econsenthash\"><code>eConsent:hash</code></h4>\n<h5 id=\"version--string-3\"><code>version : string</code></h5>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Disclosure version</p>\n</li>\n</ul>\n<h5 id=\"timestamp--string-3\"><code>timestamp : string</code></h5>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>E-consent date signed</p>\n</li>\n</ul>\n<h1 id=\"response-object\">Response Object</h1>\n<h2 id=\"datahash\"><code>data:hash</code></h2>\n<h4 id=\"applicationstatusstring\"><code>applicationStatus:string</code></h4>\n<ul>\n<li>Status of the application</li>\n</ul>\n<h4 id=\"applicationsubstatusstring\"><code>applicationSubStatus:string</code></h4>\n<ul>\n<li>Sub-status of the application</li>\n</ul>\n<h4 id=\"applicationidstring\"><code>applicationId:string</code></h4>\n<ul>\n<li>Application ID</li>\n</ul>\n<h4 id=\"messagestring\"><code>message:string</code></h4>\n<ul>\n<li>Application information</li>\n</ul>\n<h4 id=\"applicationtypestring\"><code>applicationType:string</code></h4>\n<ul>\n<li>Application type. Posibble values are LTO for lease merchants and SLN for loan merchants</li>\n</ul>\n<h4 id=\"processingfeestring\"><code>processingFee:string</code></h4>\n<ul>\n<li>Processing fee amount</li>\n</ul>\n<h4 id=\"currencycodestring-1\"><code>currencyCode:string</code></h4>\n<ul>\n<li>Currency code</li>\n</ul>\n<h4 id=\"approvedamountstring\"><code>approvedAmount:string</code></h4>\n<ul>\n<li>Approved amount</li>\n</ul>\n<h4 id=\"applicationcreatetimestring\"><code>applicationCreateTime:string</code></h4>\n<ul>\n<li>Application creation time in UTC Standard. Example 2020-02-21T18:00:00Z</li>\n</ul>\n<h4 id=\"applicationupdatetimestring\"><code>applicationUpdateTime:string</code></h4>\n<ul>\n<li>Application update time in UTC Standard. Example 2020-02-21T18:00:00Z</li>\n</ul>\n<h4 id=\"stbsboolean\"><code>stbs:boolean</code></h4>\n<ul>\n<li>Sales tax by snap flag</li>\n</ul>\n<h4 id=\"additionalinformationhash\"><code>additionalInformation:hash</code></h4>\n<ul>\n<li><p>Information of the application</p>\n<h4 id=\"additionalinformationcustomerinformationstring\"><code>additionalInformation.customerInformation:string</code></h4>\n<blockquote>\n<p>&lt;ul &gt;&lt;li &gt;&lt;div&gt;Status of the customer information. Possible values are VERIFIED or PENDING&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt;</p>\n</blockquote>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>#### `additionalInformation.bankInformation:string`\n&gt; &lt;ul &gt;&lt;li &gt;&lt;div&gt;Status of the bank information. Possible values are VERIFIED or PENDING&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; \n#### `additionalInformation.incomeInformation:string`\n&gt; &lt;ul &gt;&lt;li &gt;&lt;div&gt;Status of the income information. Possible values are VERIFIED or PENDING&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; \n#### `additionalInformation.cartInformation:string`\n&gt; &lt;ul &gt;&lt;li &gt;&lt;div&gt;Status of the cart information. Possible values are VERIFIED or PENDING&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; \n\n</code></pre><h2 id=\"successboolean\"><code>success:boolean</code></h2>\n<blockquote>\n<p>&lt;ul &gt;&lt;li &gt;&lt;div&gt;Value with the result of the request. Possible values are TRUE or FALSE&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; </p>\n</blockquote>\n<h2 id=\"statusinteger\"><code>status:integer</code></h2>\n<blockquote>\n<p>&lt;ul &gt;&lt;li &gt;&lt;div&gt;Value with status code of the request. For example: 200, 400, 404&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt;</p>\n</blockquote>\n","urlObject":{"path":["platform","v1","application"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"9e2975ac-318b-4ed7-ba6c-cab74639c387","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCIsImtpZCI6IlJqRkJNa1JETlRVME1FTXpORU5GTWtNeE1UQkJPVE5DUlRjNE9UWTJORVJFTmtZNU1VSXpNZyJ9","type":"text"},{"key":"Request-Id","value":"(optional - ID generated by the client)","type":"text"},{"key":"Idempotency-Key","value":"(optional - Idempotency key generated by the client)","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"customerInformation\": {\r\n\t\t\"dobDate\": \"1977-07-07\",\r\n\t\t\"customerId\": \"{{social_4}}\",\r\n\t\t\"customerIdType\": \"SSN4\",\r\n\t\t\"mobilePhone\": \"1000000019\",\r\n\t\t\"mobilePhoneCountry\": \"US\",\r\n\t\t\"email\": \"test@test.com\",\r\n\t\t\"firstName\": \"John\",\r\n\t\t\"lastName\": \"Smith\",\r\n\t\t\"salutation\": \"MR\",\r\n\t\t\"billingAddress\": {\r\n\t\t\t\"streetAddress\": \"123MainSt\",\r\n\t\t\t\"city\": \"SaltLakeCity\",\r\n\t\t\t\"state\": \"UT\",\r\n\t\t\t\"country\": \"US\",\r\n\t\t\t\"postalCode\": \"84001\"\r\n\t\t},\r\n\t\t\"driversLicenseNumber\": \"123456879\",\r\n\t\t\"driversLicenseState\": \"FL\",\r\n\t\t\"language\": \"EN\",\r\n\t\t\"rentOwn\": \"OWN\",\r\n\t\t\"timeAddressYears\": 0,\r\n\t\t\"timeAddressMonths\": 2,\r\n\t\t\"phoneOptIn\": true\r\n\t},\r\n\t\"supplementalDataInformation\": {\r\n\t\t\"customerPastApps\": \"2\",\r\n\t\t\"customerIP\": \"127.X.0.1\",\r\n        \"annualIncome\": \"50000.00\"\r\n\t},\r\n\t\"cartInformation\": {\r\n\t\t\"currencyCode\": \"USD\",\r\n\t\t\"taxAmount\": \"35.00\",\r\n\t\t\"shippingAmount\": \"15.00\",\r\n\t\t\"totalAmount\": \"320.00\",\r\n\t\t\"discountAmount\": \"0.00\",\r\n\t\t\"orderId\": \"041299\",\r\n\t\t\"items\": [\r\n\t\t\t{\r\n\t\t\t\t\"price\": \"150.00\",\r\n\t\t\t\t\"itemId\": \"ABC\",\r\n\t\t\t\t\"description\": \"Mattress\",\r\n\t\t\t\t\"sku\": \"D1234\",\r\n\t\t\t\t\"quantity\": 1,\r\n\t\t\t\t\"leasable\":true\r\n\t\t\t},\r\n            \t\t\t{\r\n\t\t\t\t\"price\": \"100.00\",\r\n\t\t\t\t\"itemId\": \"DEF\",\r\n\t\t\t\t\"description\": \"TV\",\r\n\t\t\t\t\"sku\": \"D1235\",\r\n\t\t\t\t\"quantity\": 1,\r\n\t\t\t\t\"leasable\":true,\r\n                \"itemType\": \"PRODUCT\"\r\n\t\t\t},\r\n            \t\t\t{\r\n\t\t\t\t\"price\": \"20.00\",\r\n\t\t\t\t\"itemId\": \"LMN\",\r\n\t\t\t\t\"description\": \"Misc Fee\",\r\n\t\t\t\t\"sku\": \"A0001\",\r\n\t\t\t\t\"quantity\": 1,\r\n\t\t\t\t\"leasable\":true,\r\n                \"itemType\": \"SERVICE\"\r\n\t\t\t}\r\n\t\t],\r\n\t\t\"shippingAddress\": {\r\n\t\t\t\"streetAddress\": \"456BroadwaySt\",\r\n\t\t\t\"city\": \"SaltLakeCity\",\r\n\t\t\t\"state\": \"UT\",\r\n\t\t\t\"country\": \"US\",\r\n\t\t\t\"postalCode\": \"84001\"\r\n\t\t}\r\n\t},\r\n\t\"incomeInformation\": [{\r\n\t\t\"employerName\": \"AcmeCorporation\",\r\n\t\t\"frequency\": \"BI_WEEKLY\",\r\n\t\t\"incomeAmount\": \"5000.00\",\r\n\t\t\"phone\": \"1234567890\",\r\n\t\t\"phoneCountryCode\": \"US\",\r\n\t\t\"positionHeld\": \"Associate\",\r\n\t\t\"type\": \"FULL_TIME\",\r\n\t\t\"lastPayDate\": \"2020-02-07\",\r\n\t\t\"nextPayDate\": \"2020-02-21\"\r\n\t}],\r\n    \"complianceDisclosures\": {\r\n        \"termsConditions\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"electronicTransaction\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"prequalifiedTermsConditions\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"eConsent\": {\r\n            \"timestamp\": \"10/23/2022\"\r\n        }\r\n    }\r\n}"},"url":"https://api-training.snapfinance.com/platform/v1/application"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"501"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:22:59 GMT"},{"key":"x-amzn-RequestId","value":"e23d261c-bd07-4f18-a450-563b74cffb98"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P01-cF-yvHcFqOA="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d05c-8ca7863001e6343c261bb0c4"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"oIqDWJQfKIdYPDwb0_5KbpoIfWv8EZUOWffcIB1Ac026PPjmaSAwWQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"applicationId\": \"{{applicationId}}\",\n        \"applicationStatus\": \"PREQUALIFIED\",\n        \"applicationSubStatus\": \"\",\n        \"message\": \"Application Prequalified\",\n        \"approvedAmount\": \"1810.00\",\n        \"applicationType\": \"LTO\",\n        \"currencyCode\": \"USD\",\n        \"applicationCreateTime\": \"2021-01-04T14:48:43.364Z\",\n        \"applicationUpdateTime\": \"2021-01-04T14:48:43.366Z\",\n  \"stbs\": false,\n       \"additionalInformation\": {\n            \"customerInformation\": \"Verified\",\n            \"cartInformation\": \"Verified\",\n            \"bankInformation\": \"Pending\",\n            \"incomeInformation\": \"Verified\",\n            \"cardInformation\": \"Pending\"\n        }\n            },\n    \"status\": 200\n}"},{"id":"b64e4c1f-0157-4570-af89-12475e141632","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-Id","value":"123","type":"text"},{"key":"Idempotency-Key","value":"f18fc09a-450d-4ad8-a429-4b1d632fbb64","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"customerInformation\": {\r\n\t\t\"dobDate\": \"1977-07-07\",\r\n\t\t\"customerId\": \"{{social_4}}\",\r\n\t\t\"customerIdType\": \"SSN4\",\r\n\t\t\"mobilePhone\": \"1000000019\",\r\n\t\t\"firstName\": \"John\",\r\n\t\t\"lastName\": \"Smith\",\r\n\t\t\"salutation\": \"MR\",\r\n\t\t\"billingAddress\": {\r\n\t\t\t\"streetAddress\": \"123MainSt\",\r\n\t\t\t\"city\": \"SaltLakeCity\",\r\n\t\t\t\"state\": \"UT\",\r\n\t\t\t\"country\": \"US\",\r\n\t\t\t\"postalCode\": \"84001\",\r\n\t\t\t\"unit\": \"12\"\r\n\t\t},\r\n\t\t\"driversLicenseNumber\": \"123456879\",\r\n\t\t\"driversLicenseState\": \"FL\",\r\n\t\t\"language\": \"EN\",\r\n\t\t\"rentOwn\": \"OWN\",\r\n\t\t\"timeAddressYears\": 0,\r\n\t\t\"timeAddressMonths\": 2,\r\n\t\t\"phoneOptIn\": true\r\n\t},\r\n\t\"supplementalDataInformation\": {\r\n\t\t\"customerPastApps\": \"2\",\r\n\t\t\"customerIP\": \"127.X.0.1\"\r\n\t},\r\n\t\"cartInformation\": {\r\n\t\t\"currencyCode\": \"USD\",\r\n\t\t\"taxAmount\": \"86.03\",\r\n\t\t\"shippingAmount\": \"15.00\",\r\n\t\t\"totalAmount\": \"3872.00\",\r\n\t\t\"discountAmount\": \"0.00\",\r\n\t\t\"orderId\": \"041299\",\r\n\t\t\"items\": [\r\n\t\t\t{\r\n\t\t\t\t\"price\": \"1.00\",\r\n\t\t\t\t\"itemId\": \"ABC\",\r\n\t\t\t\t\"description\": \"Mattress\",\r\n\t\t\t\t\"sku\": \"D1234\",\r\n\t\t\t\t\"quantity\": 1,\r\n\t\t\t\t\"leasable\":true\r\n\t\t\t}\r\n\t\t],\r\n\t\t\"shippingAddress\": {\r\n\t\t\t\"streetAddress\": \"456BroadwaySt\",\r\n\t\t\t\"city\": \"SaltLakeCity\",\r\n\t\t\t\"state\": \"UT\",\r\n\t\t\t\"country\": \"US\",\r\n\t\t\t\"postalCode\": \"84001\",\r\n\t\t\t\"unit\": \"12\"\r\n\t\t}\r\n\t},\r\n\t\"incomeInformation\": [{\r\n\t\t\"employerName\": \"AcmeCorporation\",\r\n\t\t\"frequency\": \"BI_WEEKLY\",\r\n\t\t\"incomeAmount\": \"5000.00\",\r\n\t\t\"phone\": \"1234567890\",\r\n\t\t\"phoneCountryCode\": \"US\",\r\n\t\t\"positionHeld\": \"Associate\",\r\n\t\t\"type\": \"FULL_TIME\",\r\n\t\t\"lastPayDate\": \"2020-02-07\",\r\n\t\t\"nextPayDate\": \"2020-02-21\"\r\n\t}],\r\n    \"complianceDisclosures\": {\r\n        \"termsConditions\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"electronicTransaction\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"prequalifiedTermsConditions\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"eConsent\": {\r\n            \"timestamp\": \"10/23/2022\"\r\n        }\r\n    }\r\n}"},"url":"{{baseUrl}}/platform/v1/application"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"309"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 21:55:44 GMT"},{"key":"x-amzn-RequestId","value":"851d86b2-205d-459f-ab0a-0ae317f87cb7"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P1mvCFRMPHcFV3Q="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f121e60-2d34f3d0a424dff4c50cfdbc"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 880eb84cefca849ee159a7c4d89c31ea.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"_llfqhKZaTjGHP6IrWAtmfcMgvxflPD5-FleE3Gjzn2GzoII_mblWA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"status\": 400,\n    \"error\": [\n        {\n            \"code\": \"customerInformation_mobilePhoneCountry_missing\",\n            \"type\": \"invalid_request_error\",\n            \"message\": \"Customer mobile phone country code is missing\"\n        },\n        {\n            \"code\": \"customerInformation_email_missing\",\n            \"type\": \"invalid_request_error\",\n            \"message\": \"Customer email address is missing\"\n        }\n    ]\n}"},{"id":"5385f04f-5af8-4855-9a23-8f720b867e38","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-Id","value":"123","type":"text"},{"key":"Idempotency-Key","value":"f18fc09a-450d-4ad8-a429-4b1d632fbb64","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"customerInformation\": {\r\n\t\t\"dobDate\": \"1977-07-07\",\r\n\t\t\"customerId\": \"{{social_4}}\",\r\n\t\t\"customerIdType\": \"SSN4\",\r\n\t\t\"mobilePhone\": \"1000000019\",\r\n\t\t\"firstName\": \"John\",\r\n\t\t\"lastName\": \"Smith\",\r\n\t\t\"salutation\": \"MR\",\r\n\t\t\"billingAddress\": {\r\n\t\t\t\"streetAddress\": \"123MainSt\",\r\n\t\t\t\"city\": \"SaltLakeCity\",\r\n\t\t\t\"state\": \"UT\",\r\n\t\t\t\"country\": \"US\",\r\n\t\t\t\"postalCode\": \"84001\",\r\n\t\t\t\"unit\": \"12\"\r\n\t\t},\r\n\t\t\"driversLicenseNumber\": \"123456879\",\r\n\t\t\"driversLicenseState\": \"FL\",\r\n\t\t\"language\": \"EN\",\r\n\t\t\"rentOwn\": \"OWN\",\r\n\t\t\"timeAddressYears\": 0,\r\n\t\t\"timeAddressMonths\": 2,\r\n\t\t\"phoneOptIn\": true\r\n\t},\r\n\t\"supplementalDataInformation\": {\r\n\t\t\"customerPastApps\": \"2\",\r\n\t\t\"customerIP\": \"127.X.0.1\"\r\n\t},\r\n\t\"cartInformation\": {\r\n\t\t\"currencyCode\": \"USD\",\r\n\t\t\"taxAmount\": \"86.03\",\r\n\t\t\"shippingAmount\": \"15.00\",\r\n\t\t\"totalAmount\": \"3872.00\",\r\n\t\t\"discountAmount\": \"0.00\",\r\n\t\t\"orderId\": \"041299\",\r\n\t\t\"items\": [\r\n\t\t\t{\r\n\t\t\t\t\"price\": \"1.00\",\r\n\t\t\t\t\"itemId\": \"ABC\",\r\n\t\t\t\t\"description\": \"Mattress\",\r\n\t\t\t\t\"sku\": \"D1234\",\r\n\t\t\t\t\"quantity\": 1,\r\n\t\t\t\t\"leasable\":true\r\n\t\t\t}\r\n\t\t],\r\n\t\t\"shippingAddress\": {\r\n\t\t\t\"streetAddress\": \"456BroadwaySt\",\r\n\t\t\t\"city\": \"SaltLakeCity\",\r\n\t\t\t\"state\": \"UT\",\r\n\t\t\t\"country\": \"US\",\r\n\t\t\t\"postalCode\": \"84001\",\r\n\t\t\t\"unit\": \"12\"\r\n\t\t}\r\n\t},\r\n\t\"incomeInformation\": [{\r\n\t\t\"employerName\": \"AcmeCorporation\",\r\n\t\t\"frequency\": \"BI_WEEKLY\",\r\n\t\t\"incomeAmount\": \"5000.00\",\r\n\t\t\"phone\": \"1234567890\",\r\n\t\t\"phoneCountryCode\": \"US\",\r\n\t\t\"positionHeld\": \"Associate\",\r\n\t\t\"type\": \"FULL_TIME\",\r\n\t\t\"lastPayDate\": \"2020-02-07\",\r\n\t\t\"nextPayDate\": \"2020-02-21\"\r\n\t}],\r\n    \"complianceDisclosures\": {\r\n        \"termsConditions\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"electronicTransaction\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"prequalifiedTermsConditions\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"eConsent\": {\r\n            \"timestamp\": \"10/23/2022\"\r\n        }\r\n    }\r\n}"},"url":"{{baseUrl}}/platform/v1/application"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"309"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 21:55:44 GMT"},{"key":"x-amzn-RequestId","value":"851d86b2-205d-459f-ab0a-0ae317f87cb7"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P1mvCFRMPHcFV3Q="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f121e60-2d34f3d0a424dff4c50cfdbc"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 880eb84cefca849ee159a7c4d89c31ea.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"_llfqhKZaTjGHP6IrWAtmfcMgvxflPD5-FleE3Gjzn2GzoII_mblWA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"status\": 400,\n    \"error\": [\n        {\n            \"code\": \"customerInformation_mobilePhoneCountry_missing\",\n            \"type\": \"invalid_request_error\",\n            \"message\": \"Customer mobile phone country code is missing\"\n        },\n        {\n            \"code\": \"customerInformation_email_missing\",\n            \"type\": \"invalid_request_error\",\n            \"message\": \"Customer email address is missing\"\n        }\n    ]\n}"},{"id":"4c94211f-b59c-4cfe-80d7-7bbc0aa1173f","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCIsImtpZCI6IlJqRkJNa1JETlRVME1FTXpORU5GTWtNeE1UQkJPVE5DUlRjNE9UWTJORVJFTmtZNU1VSXpNZyJ9","type":"text"},{"key":"Request-Id","value":"(optional - ID generated by the client)","type":"text"},{"key":"Idempotency-Key","value":"(optional - Idempotency key generated by the client)","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"customerInformation\": {\r\n\t\t\"dobDate\": \"1977-07-07\",\r\n\t\t\"customerId\": \"{{social_4}}\",\r\n\t\t\"customerIdType\": \"SSN4\",\r\n\t\t\"mobilePhone\": \"1000000019\",\r\n\t\t\"mobilePhoneCountry\": \"US\",\r\n\t\t\"email\": \"test@test.com\",\r\n\t\t\"firstName\": \"John\",\r\n\t\t\"lastName\": \"Smith\",\r\n\t\t\"salutation\": \"MR\",\r\n\t\t\"billingAddress\": {\r\n\t\t\t\"streetAddress\": \"123MainSt\",\r\n\t\t\t\"city\": \"SaltLakeCity\",\r\n\t\t\t\"state\": \"UT\",\r\n\t\t\t\"country\": \"US\",\r\n\t\t\t\"postalCode\": \"84001\"\r\n\t\t},\r\n\t\t\"driversLicenseNumber\": \"123456879\",\r\n\t\t\"driversLicenseState\": \"FL\",\r\n\t\t\"language\": \"EN\",\r\n\t\t\"rentOwn\": \"OWN\",\r\n\t\t\"timeAddressYears\": 0,\r\n\t\t\"timeAddressMonths\": 2,\r\n\t\t\"phoneOptIn\": true\r\n\t},\r\n\t\"supplementalDataInformation\": {\r\n\t\t\"customerPastApps\": \"2\",\r\n\t\t\"customerIP\": \"127.X.0.1\",\r\n        \"annualIncome\": \"50000.00\"\r\n\t},\r\n\t\"cartInformation\": {\r\n\t\t\"currencyCode\": \"USD\",\r\n\t\t\"taxAmount\": \"35.00\",\r\n\t\t\"shippingAmount\": \"15.00\",\r\n\t\t\"totalAmount\": \"320.00\",\r\n\t\t\"discountAmount\": \"0.00\",\r\n\t\t\"orderId\": \"041299\",\r\n\t\t\"items\": [\r\n\t\t\t{\r\n\t\t\t\t\"price\": \"150.00\",\r\n\t\t\t\t\"itemId\": \"ABC\",\r\n\t\t\t\t\"description\": \"Mattress\",\r\n\t\t\t\t\"sku\": \"D1234\",\r\n\t\t\t\t\"quantity\": 1,\r\n\t\t\t\t\"leasable\":true\r\n\t\t\t},\r\n            \t\t\t{\r\n\t\t\t\t\"price\": \"100.00\",\r\n\t\t\t\t\"itemId\": \"DEF\",\r\n\t\t\t\t\"description\": \"TV\",\r\n\t\t\t\t\"sku\": \"D1235\",\r\n\t\t\t\t\"quantity\": 1,\r\n\t\t\t\t\"leasable\":true,\r\n                \"itemType\": \"PRODUCT\"\r\n\t\t\t},\r\n            \t\t\t{\r\n\t\t\t\t\"price\": \"20.00\",\r\n\t\t\t\t\"itemId\": \"LMN\",\r\n\t\t\t\t\"description\": \"Misc Fee\",\r\n\t\t\t\t\"sku\": \"A0001\",\r\n\t\t\t\t\"quantity\": 1,\r\n\t\t\t\t\"leasable\":true,\r\n                \"itemType\": \"SERVICE\"\r\n\t\t\t}\r\n\t\t],\r\n\t\t\"shippingAddress\": {\r\n\t\t\t\"streetAddress\": \"456BroadwaySt\",\r\n\t\t\t\"city\": \"SaltLakeCity\",\r\n\t\t\t\"state\": \"UT\",\r\n\t\t\t\"country\": \"US\",\r\n\t\t\t\"postalCode\": \"84001\"\r\n\t\t}\r\n\t},\r\n\t\"incomeInformation\": [{\r\n\t\t\"employerName\": \"AcmeCorporation\",\r\n\t\t\"frequency\": \"BI_WEEKLY\",\r\n\t\t\"incomeAmount\": \"5000.00\",\r\n\t\t\"phone\": \"1234567890\",\r\n\t\t\"phoneCountryCode\": \"US\",\r\n\t\t\"positionHeld\": \"Associate\",\r\n\t\t\"type\": \"FULL_TIME\",\r\n\t\t\"lastPayDate\": \"2020-02-07\",\r\n\t\t\"nextPayDate\": \"2020-02-21\"\r\n\t}],\r\n    \"complianceDisclosures\": {\r\n        \"termsConditions\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"electronicTransaction\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"prequalifiedTermsConditions\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"eConsent\": {\r\n            \"timestamp\": \"10/23/2022\"\r\n        }\r\n    }\r\n}"},"url":"https://api-training.snapfinance.com/platform/v1/application"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"501"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:22:59 GMT"},{"key":"x-amzn-RequestId","value":"e23d261c-bd07-4f18-a450-563b74cffb98"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P01-cF-yvHcFqOA="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d05c-8ca7863001e6343c261bb0c4"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"oIqDWJQfKIdYPDwb0_5KbpoIfWv8EZUOWffcIB1Ac026PPjmaSAwWQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"applicationId\": \"{{applicationId}}\",\n        \"applicationStatus\": \"PREQUALIFIED\",\n        \"applicationSubStatus\": \"\",\n        \"message\": \"Application Prequalified\",\n        \"approvedAmount\": \"1810.00\",\n        \"applicationType\": \"LTO\",\n        \"currencyCode\": \"USD\",\n        \"applicationCreateTime\": \"2021-01-04T14:48:43.364Z\",\n        \"applicationUpdateTime\": \"2021-01-04T14:48:43.366Z\",\n  \"stbs\": false,\n       \"additionalInformation\": {\n            \"customerInformation\": \"Verified\",\n            \"cartInformation\": \"Verified\",\n            \"bankInformation\": \"Pending\",\n            \"incomeInformation\": \"Verified\",\n            \"cardInformation\": \"Pending\"\n        }\n            },\n    \"status\": 200\n}"}],"_postman_id":"8563ebaa-9cfb-4d93-b6a4-954b62124090"},{"name":"Application Status","event":[{"listen":"test","script":{"exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});\r","pm.test(\"Success message\", function () {\r","    pm.expect(pm.response.text()).to.include(\"success\");\r","});"],"type":"text/javascript","id":"af436846-9236-4a84-ad08-8f27640eedeb"}}],"id":"01eb3118-9b01-4b69-a8ee-91d3ee75f1c4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"<p>(optional - ID generated by the client)</p>\n","type":"text"}],"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/status","description":"<h1 id=\"application-status\">Application Status</h1>\n<p>This endpoint gets the current status of the application.</p>\n<h2 id=\"path-params\">PATH PARAMS</h2>\n<blockquote>\n<h2 id=\"applicationidstring\"><code>applicationId:string</code></h2>\n<ul>\n<li>Required</li>\n<li>ApplicationId is returned when calling the create application endpoint</li>\n</ul>\n</blockquote>\n<h2 id=\"possible-status-values\">Possible Status Values</h2>\n<ul>\n<li>PREQUALIFIED : Application was prequalified</li>\n<li>PENDING : Application is being created </li>\n<li>APPROVED : Application approved</li>\n<li>PENDING_SIGNED_DOCS : Customer needs to sign the agreement </li>\n<li>PENDING_DEL : Agreement was signed, pending product delivery</li>\n<li>COMPLETE : Product delivered. Application ready</li>\n<li>DENIED : Application denied</li>\n<li>WITHDRAWN : Application withdrawn</li>\n</ul>\n<h2 id=\"possible-sub-status-values\">Possible Sub-status Values</h2>\n<ul>\n<li>PENDING_SHIPPING : Pending product shipping</li>\n<li>SHIPPED : Product(s) shipped</li>\n<li>PARTIALLY_REFUNDED : Canceled item within an originated order</li>\n<li>REFUNDED : Products totally refunded</li>\n<li>PENDING_CART_ADJUSTMENT : Cart amount higher than the approved amount</li>\n</ul>\n<h1 id=\"response-object\">Response Object</h1>\n<h2 id=\"datahash\"><code>data:hash</code></h2>\n<blockquote>\n<h4 id=\"applicationstatusstring\"><code>applicationStatus:string</code></h4>\n<ul>\n<li>Status of the application</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"applicationsubstatusstring\"><code>applicationSubStatus:string</code></h4>\n<ul>\n<li>Sub-status of the application</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"applicationidstring-1\"><code>applicationId:string</code></h4>\n<ul>\n<li>Application ID</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"applicationtypestring\"><code>applicationType:string</code></h4>\n<ul>\n<li>Application type. Possible values are LTO for lease merchants and SLN for loan merchants</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"approvedamountstring\"><code>approvedAmount:string</code></h4>\n<ul>\n<li>Approved amount</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"applicationcreatetimestring\"><code>applicationCreateTime:string</code></h4>\n<ul>\n<li>Application creation time in UTC Standard. Example 2020-02-21T18:00:00Z</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"applicationupdatetimestring\"><code>applicationUpdateTime:string</code></h4>\n<ul>\n<li>Application update time in UTC Standard. Example 2020-02-21T18:00:00Z</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"additionalinformationhash\"><code>additionalInformation:hash</code></h4>\n<ul>\n<li>Information of the application</li>\n</ul>\n<h4 id=\"additionalinformationcustomerinformationstring\"><code>additionalInformation.customerInformation:string</code></h4>\n<blockquote>\n<ul>\n<li>Status of the customer information. Possible values are  VERIFIED or PENDING</li>\n</ul>\n</blockquote>\n<h4 id=\"additionalinformationbankinformationstring\"><code>additionalInformation.bankInformation:string</code></h4>\n<blockquote>\n<ul>\n<li>Status of the bank information. Possible values are  VERIFIED or PENDING</li>\n</ul>\n</blockquote>\n<h4 id=\"additionalinformationincomeinformationstring\"><code>additionalInformation.incomeInformation:string</code></h4>\n<blockquote>\n<ul>\n<li>Status of the income information. Possible values are  VERIFIED or PENDING</li>\n</ul>\n</blockquote>\n<h4 id=\"additionalinformationcartinformationstring\"><code>additionalInformation.cartInformation:string</code></h4>\n<blockquote>\n<ul>\n<li>Status of the cart information. Possible values are  VERIFIED or PENDING</li>\n</ul>\n</blockquote>\n</blockquote>\n<blockquote>\n<h4 id=\"reapplydatestring\"><code>reApplyDate:string</code></h4>\n<ul>\n<li>Only with DENIED status, it indicates the date when the customer can reapply. Example 2020-02-21</li>\n</ul>\n</blockquote>\n<h2 id=\"successboolean\"><code>success:boolean</code></h2>\n<blockquote>\n<ul>\n<li>Value with the result of the request. Possible values are TRUE or FALSE</li>\n</ul>\n</blockquote>\n<h2 id=\"statusinteger\"><code>status:integer</code></h2>\n<blockquote>\n<ul>\n<li>Value with status code of the request. For example: 200, 400, 404</li>\n</ul>\n</blockquote>\n","urlObject":{"path":["platform","v1","application","{{applicationId}}","status"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"d3cc7064-854b-45d9-bd83-75a8836a215e","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-Id","value":"","description":"(optional)","type":"text"},{"key":"Content-Type","value":"application/json"}],"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/status"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"403"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:24:00 GMT"},{"key":"x-amzn-RequestId","value":"930f2434-ec1e-4ebf-8b33-b06582917abb"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P02InFzZPHcFSJg="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d09d-a8df3630a441a87823d4b3c0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"KpjwnZUscUgG94UQBRc9j34v_i47NHzBaMUa6weVzDo_UA3YrLRLlQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"status\": 200,\n    \"data\": {\n        \"applicationStatus\": \"APPROVED\",\n        \"applicationSubStatus\": \"\",\n        \"applicationId\": \"{{applicationId}}\",\n        \"approvedAmount\": \"3520.00\",\n        \"applicationCreateTime\": \"2020-07-17T10:22:55.105Z\",\n        \"applicationUpdateTime\": \"2020-07-17T10:23:28.493Z\",\n        \"additionalInformation\": {\n            \"customerInformation\": \"Verified\",\n            \"bankInformation\": \"Verified\",\n            \"incomeInformation\": \"Verified\",\n            \"cartInformation\": \"Verified\"\n        }\n    }\n}"},{"id":"0b1971da-01f4-4cf2-9970-85887da57b16","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-Id","value":"","description":"(optional)","type":"text"},{"key":"Content-Type","value":"application/json"}],"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/status"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"133"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 16 Jul 2020 15:49:56 GMT"},{"key":"x-amzn-RequestId","value":"10aaa6ec-e54a-4307-a5a7-1f23473556db"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"PxeNfEZcvHcFaYw="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f107723-680f497015e9048e20a08d84"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 f9c5e5b9a4e739792ecd46afc5cf785d.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"Sj04b1p_EZavyRj0_bQt4EyExO4i4UGB5zNIhMnksgqCstwp1UptFw=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"error\": [\n        {\n            \"code\": \"application_not_found\",\n            \"type\": \"validation_error\",\n            \"message\": \"Application not found\"\n        }\n    ],\n    \"status\": 404\n}"},{"id":"4c83981f-eaf5-4c9a-915d-145d9bceeb31","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-Id","value":"","description":"(optional)","type":"text"},{"key":"Content-Type","value":"application/json"}],"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/status"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"403"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:24:00 GMT"},{"key":"x-amzn-RequestId","value":"930f2434-ec1e-4ebf-8b33-b06582917abb"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P02InFzZPHcFSJg="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d09d-a8df3630a441a87823d4b3c0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"KpjwnZUscUgG94UQBRc9j34v_i47NHzBaMUa6weVzDo_UA3YrLRLlQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"status\": 200,\n    \"data\": {\n        \"applicationStatus\": \"APPROVED\",\n        \"applicationSubStatus\": \"\",\n        \"applicationId\": \"{{applicationId}}\",\n        \"approvedAmount\": \"3520.00\",\n        \"applicationCreateTime\": \"2020-07-17T10:22:55.105Z\",\n        \"applicationUpdateTime\": \"2020-07-17T10:23:28.493Z\",\n        \"additionalInformation\": {\n            \"customerInformation\": \"Verified\",\n            \"bankInformation\": \"Verified\",\n            \"incomeInformation\": \"Verified\",\n            \"cartInformation\": \"Verified\"\n        }\n    }\n}"},{"id":"c492e86f-75aa-4efc-bb3f-d0664a5a9e30","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-Id","value":"","description":"(optional)","type":"text"},{"key":"Content-Type","value":"application/json"}],"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/status"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"133"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 16 Jul 2020 15:49:56 GMT"},{"key":"x-amzn-RequestId","value":"10aaa6ec-e54a-4307-a5a7-1f23473556db"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"PxeNfEZcvHcFaYw="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f107723-680f497015e9048e20a08d84"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 f9c5e5b9a4e739792ecd46afc5cf785d.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"Sj04b1p_EZavyRj0_bQt4EyExO4i4UGB5zNIhMnksgqCstwp1UptFw=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"error\": [\n        {\n            \"code\": \"application_not_found\",\n            \"type\": \"validation_error\",\n            \"message\": \"Application not found\"\n        }\n    ],\n    \"status\": 404\n}"}],"_postman_id":"01eb3118-9b01-4b69-a8ee-91d3ee75f1c4"},{"name":"Update Application","event":[{"listen":"test","script":{"exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","pm.test(\"Success message\", function () {","    pm.expect(pm.response.text()).to.include(\"success\");","});"],"type":"text/javascript","packages":{},"id":"d4ec0a84-69fe-4eec-979e-ce7742f24cba"}}],"id":"65ec6649-01ca-4292-b82f-1c2cc571443d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"<p>(optional - ID generated by the client)</p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"customerInformation\": {\r\n\t\t\"driversLicenseNumber\": \"123456879\",\r\n\t\t\"driversLicenseState\": \"FL\",\r\n\t\t\"language\": \"EN\",\r\n\t\t\"rentOwn\": \"OWN\",\r\n\t\t\"timeAddressYears\": 0,\r\n\t\t\"timeAddressMonths\": 2,\r\n\t\t\"phoneOptIn\": true\r\n\t},\r\n\t\"supplementalDataInformation\": {\r\n\t\t\"customerPastApps\": \"2\",\r\n\t\t\"customerIP\": \"127.X.0.1\"\r\n\t},\r\n\t\"cartInformation\": {\r\n\t\t\"currencyCode\": \"USD\",\r\n\t\t\"taxAmount\": \"35.00\",\r\n\t\t\"shippingAmount\": \"15.00\",\r\n\t\t\"totalAmount\": \"320.00\",\r\n\t\t\"discountAmount\": \"0.00\",\r\n\t\t\"orderId\": \"041299\",\r\n\t\t\"items\": [\r\n\t\t\t{\r\n\t\t\t\t\"price\": \"150.00\",\r\n\t\t\t\t\"itemId\": \"ABC\",\r\n\t\t\t\t\"description\": \"Mattress\",\r\n\t\t\t\t\"sku\": \"D1234\",\r\n\t\t\t\t\"quantity\": 1,\r\n\t\t\t\t\"leasable\":true\r\n\t\t\t},\r\n            \t\t\t{\r\n\t\t\t\t\"price\": \"100.00\",\r\n\t\t\t\t\"itemId\": \"DEF\",\r\n\t\t\t\t\"description\": \"TV\",\r\n\t\t\t\t\"sku\": \"D1235\",\r\n\t\t\t\t\"quantity\": 1,\r\n\t\t\t\t\"leasable\":true,\r\n                \"itemType\": \"PRODUCT\"\r\n\t\t\t},\r\n            \t\t\t{\r\n\t\t\t\t\"price\": \"20.00\",\r\n\t\t\t\t\"itemId\": \"LMN\",\r\n\t\t\t\t\"description\": \"Misc Fee\",\r\n\t\t\t\t\"sku\": \"A0001\",\r\n\t\t\t\t\"quantity\": 1,\r\n\t\t\t\t\"leasable\":true,\r\n                \"itemType\": \"SERVICE\"\r\n\t\t\t}\r\n\t\t],\r\n\t\t\"shippingAddress\": {\r\n\t\t\t\"streetAddress\": \"456BroadwaySt\",\r\n\t\t\t\"city\": \"SaltLakeCity\",\r\n\t\t\t\"state\": \"UT\",\r\n\t\t\t\"country\": \"US\",\r\n\t\t\t\"postalCode\": \"84001\",\r\n\t\t\t\"unit\": \"12\"\r\n\t\t}\r\n\t},\r\n\t\"bankInformation\": {\r\n\t\t\"bankName\": \"superBank\",\r\n\t\t\"bankCity\": \"miami\",\r\n\t\t\"bankState\": \"FL\",\r\n\t\t\"routingNumber\": \"051501451\",\r\n\t\t\"accountNumber\": \"{{account_number}}\",\r\n\t\t\"directDeposit\": true\r\n\t},\r\n\t\"incomeInformation\": [{\r\n\t\t\"employerName\": \"AcmeCorporation\",\r\n\t\t\"frequency\": \"BI_WEEKLY\",\r\n\t\t\"incomeAmount\": \"5000.00\",\r\n\t\t\"phone\": \"1234567890\",\r\n\t\t\"phoneCountryCode\": \"US\",\r\n\t\t\"positionHeld\": \"Associate\",\r\n\t\t\"type\": \"FULL_TIME\",\r\n\t\t\"lastPayDate\": \"2020-02-07\",\r\n\t\t\"nextPayDate\": \"2020-02-21\"\r\n\t}],\r\n    \"complianceDisclosures\": {\r\n        \"termsConditions\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"electronicTransaction\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"prequalifiedTermsConditions\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"eConsent\": {\r\n            \"timestamp\": \"10/23/2022\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}","description":"<h1 id=\"update-application\">Update Application</h1>\n<p>This endpoint updates an application with additional applicant information. Additional information is not used for decisioning but needed before acceptance</p>\n<h1 id=\"request-object\">Request Object</h1>\n<h2 id=\"customerinformationhash\"><code>customerInformation:hash</code></h2>\n<h4 id=\"driverslicensenumberstring\"><code>driversLicenseNumber:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Customer drivers license number. Valid driver license number</p>\n</li>\n</ul>\n<h4 id=\"driverslicensestatestring\"><code>driversLicenseState:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Customer drivers license state. Valid US state in two characters</p>\n</li>\n</ul>\n<h4 id=\"languagestring\"><code>language:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Language code preference of the customer. Supported values are EN or ES</p>\n</li>\n</ul>\n<h4 id=\"rentownstring\"><code>rentOwn:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Customer's current residential type whether it is rental or owned. Supported values are RENT or OWN</p>\n</li>\n</ul>\n<h4 id=\"timeaddressyearsstring\"><code>timeAddressYears:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Positive number. Number of years the customer has lived at his or her current residential address</p>\n</li>\n</ul>\n<h4 id=\"timeaddressmonthsstring\"><code>timeAddressMonths:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Positive number. Number of months the customer has lived at his current address</p>\n</li>\n</ul>\n<h4 id=\"phoneoptinboolean\"><code>phoneOptIn:boolean</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Phone communication opt in for customer. Customer must explicitly agree or disagree to phone communication</p>\n</li>\n</ul>\n<h2 id=\"cartinformationhash\"><code>cartInformation:hash</code></h2>\n<h4 id=\"currencycodestring\"><code>currencyCode:string</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Currency code of the cart only USD is allowed. Allowed value is USD only</p>\n</li>\n</ul>\n<h4 id=\"taxamountstring-numeric\"><code>taxAmount:string (Numeric)</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Valid amount. Sales tax as per the customer and merchant state. Funding will be done accordingly for states where Snap Finance must collect sales tax</p>\n</li>\n</ul>\n<h4 id=\"shippingamountstring-numeric\"><code>shippingAmount:string (Numeric)</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Valid shipping amount can be zero for free shipping product. Shipping amount for all the items within the cart</p>\n</li>\n</ul>\n<h4 id=\"totalamountstring-numeric\"><code>totalAmount:string (Numeric)</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Total amount of the cart information. (ItemPrice * Qty) + taxAmount + shippingAmount - discount</p>\n</li>\n</ul>\n<h4 id=\"discountamountstring-numeric\"><code>discountAmount:string (Numeric)</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Discount amount of the cart information. Valid positive amount</p>\n</li>\n</ul>\n<h4 id=\"orderidstring\"><code>orderId:string</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Order Id within merchant's order management system. Any alpha-numeric value</p>\n</li>\n</ul>\n<h4 id=\"itemshash-array\"><code>items:hash array</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>An array with at least one item. Leasable (for LTO) items within the cart</p>\n<h4 id=\"itemspricestring-numeric\"><code>items.price:string (Numeric)</code></h4>\n<blockquote>\n<p>&lt;ul &gt;&lt;li &gt;&lt;div&gt;Required&lt;/div&gt;&lt;/li&gt;&lt;li &gt;&lt;div&gt;Positive value. Unit price of an Item&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt;</p>\n</blockquote>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>#### `items.itemId:string`\n&gt; &lt;ul &gt;&lt;li &gt;&lt;div&gt;Required&lt;/div&gt;&lt;/li&gt;&lt;li &gt;&lt;div&gt;Within the same order can not have two items with the same item ID. Unique item id within customer order management system&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; \n#### `items.description:string`\n&gt; &lt;ul &gt;&lt;li &gt;&lt;div&gt;Required&lt;/div&gt;&lt;/li&gt;&lt;li &gt;&lt;div&gt;Title of the item&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; \n#### `items.sku:string`\n&gt; &lt;ul &gt;&lt;li &gt;&lt;div&gt;Optional&lt;/div&gt;&lt;/li&gt;&lt;li &gt;&lt;div&gt;SKU number associated with the item&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; \n#### `items.quantity:Integer`\n&gt; &lt;ul &gt;&lt;li &gt;&lt;div&gt;Required&lt;/div&gt;&lt;/li&gt;&lt;li &gt;&lt;div&gt;Quantity of each item&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; \n#### `items.leasable:boolean`\n&gt; &lt;ul &gt;&lt;li &gt;&lt;div&gt;Required for LTO and optional for SLN&lt;/div&gt;&lt;/li&gt;&lt;li &gt;&lt;div&gt;All the items within the cart should be leasable for LTO. Indicator flag provided by the merchant as agreed with Snap Finance&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; \n#### `items.itemType:string`\n&gt; &lt;ul &gt;&lt;li &gt;&lt;div&gt;Optional&lt;/div&gt;&lt;/li&gt;&lt;li &gt;&lt;div&gt;Item type indicates whether the item is a physical product or not. Accepted values PRODUCT | SERVICE. Default value: PRODUCT.&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; \n\n</code></pre><h4 id=\"shippingaddresshash\"><code>shippingAddress:hash</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Shipping Address Object</p>\n<h4 id=\"shippingaddressstreetaddressstring\"><code>shippingAddress.streetAddress:string</code></h4>\n<blockquote>\n<p>&lt;ul &gt;&lt;li &gt;&lt;div&gt;Required&lt;/div&gt;&lt;/li&gt;&lt;li &gt;&lt;div&gt;P.O boxes are not allowed. Street address where the item will be shipped&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt;</p>\n</blockquote>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>#### `shippingAddress.city:string`\n&gt; &lt;ul &gt;&lt;li &gt;&lt;div&gt;Required&lt;/div&gt;&lt;/li&gt;&lt;li &gt;&lt;div&gt;P.O boxes are not allowed. City where the items will be shipped&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; \n#### `shippingAddress.state:string`\n&gt; &lt;ul &gt;&lt;li &gt;&lt;div&gt;Required&lt;/div&gt;&lt;/li&gt;&lt;li &gt;&lt;div&gt;Valid US state. US state where the item will be shipped&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; \n#### `shippingAddress.country:string`\n&gt; &lt;ul &gt;&lt;li &gt;&lt;div&gt;Required&lt;/div&gt;&lt;/li&gt;&lt;li &gt;&lt;div&gt;Only US is supported&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; \n#### `shippingAddress.postalCode:string`\n&gt; &lt;ul &gt;&lt;li &gt;&lt;div&gt;Required&lt;/div&gt;&lt;/li&gt;&lt;li &gt;&lt;div&gt;Valid US zip code. Postal code of the shipping address&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; \n#### `shippingAddress.unit :string`\n&gt; &lt;ul &gt;&lt;li &gt;&lt;div&gt;Optional&lt;/div&gt;&lt;/li&gt;&lt;li &gt;&lt;div&gt;Unit number of the customer address&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; \n\n</code></pre><h2 id=\"bankinformationhash\"><code>bankInformation:hash</code></h2>\n<h4 id=\"routingnumberstring\"><code>routingNumber:string</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Nine digits routing number | Customers bank routing number</p>\n</li>\n</ul>\n<h4 id=\"accountnumberstring\"><code>accountNumber:string</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Four to fifteen digits account number | Customers bank account number</p>\n</li>\n</ul>\n<h4 id=\"banknamestring\"><code>bankName:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Customers bank name</p>\n</li>\n</ul>\n<h4 id=\"bankcitystring\"><code>bankCity:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>City of the customers banking branch</p>\n</li>\n</ul>\n<h4 id=\"bankstatestring\"><code>bankState:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>State of the customers banking branch</p>\n</li>\n</ul>\n<h4 id=\"directdepositboolean\"><code>directDeposit:boolean</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Whether the account has a direct deposit of the customer's salary</p>\n</li>\n</ul>\n<h2 id=\"incomeinformationhash-array\"><code>incomeInformation:hash array</code></h2>\n<h4 id=\"frequencystring\"><code>frequency:string</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Frequency of your earnings. Allowed values are WEEKLY, BI_WEEKLY, SEMI_MONTHLY or MONTHLY</p>\n</li>\n</ul>\n<h4 id=\"incomeamountstring\"><code>incomeAmount:string</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Income per frequency specified. Positive amount</p>\n</li>\n</ul>\n<h4 id=\"lastpaydatestring-date\"><code>lastPayDate:string (Date)</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Last pay date of the customer. Format YYYY-MM-DD</p>\n</li>\n</ul>\n<h4 id=\"nextpaydatestring-date\"><code>nextPayDate:string (Date)</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Next pay date of the customer. Format YYYY-MM-DD</p>\n</li>\n</ul>\n<h4 id=\"typestring\"><code>type:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Type of customer income. Allowed values are FULL_TIME, PART_TIME, SELF_EMPLOYMENT, BENEFITS, or OTHER</p>\n</li>\n</ul>\n<h4 id=\"positionheldstring\"><code>positionHeld:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Position held of the Income Information</p>\n</li>\n</ul>\n<h4 id=\"phonestring\"><code>phone:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Customers employer phone number. Ten digits string number</p>\n</li>\n</ul>\n<h4 id=\"phonecountrycodestring\"><code>phoneCountryCode:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Employers' phone country code. Only US phone numbers are supported</p>\n</li>\n</ul>\n<h4 id=\"employernamestring\"><code>employerName:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Employer name of the income information</p>\n</li>\n</ul>\n<h2 id=\"supplementaldatainformationhash\"><code>supplementalDataInformation:hash</code></h2>\n<h4 id=\"annualincomestring\"><code>annualIncome:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Annual income amount. Positive amount</p>\n</li>\n</ul>\n<h4 id=\"customeripstring\"><code>customerIP:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Customer IP Address</p>\n</li>\n</ul>\n<h4 id=\"customerpastappsstring\"><code>customerPastApps:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Customer number of past applications</p>\n</li>\n</ul>\n<h2 id=\"compliancedisclosureshash\"><code>complianceDisclosures:hash</code></h2>\n<h4 id=\"termsconditionshash\"><code>termsConditions:hash</code></h4>\n<h5 id=\"version--string\"><code>version : string</code></h5>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Disclosure version</p>\n</li>\n</ul>\n<h5 id=\"timestamp--string\"><code>timestamp : string</code></h5>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Date of acceptance of the terms and conditions</p>\n</li>\n</ul>\n<h4 id=\"electronictransactionhash\"><code>electronicTransaction:hash</code></h4>\n<h5 id=\"version--string-1\"><code>version : string</code></h5>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Disclosure version</p>\n</li>\n</ul>\n<h5 id=\"timestamp--string-1\"><code>timestamp : string</code></h5>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Date of electronic transaction</p>\n</li>\n</ul>\n<h4 id=\"prequalifiedtermsconditionshash\"><code>prequalifiedTermsConditions:hash</code></h4>\n<h5 id=\"version--string-2\"><code>version : string</code></h5>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Disclosure version</p>\n</li>\n</ul>\n<h5 id=\"timestamp--string-2\"><code>timestamp : string</code></h5>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Date of acceptance of the terms and conditions for prequal apps</p>\n</li>\n</ul>\n<h4 id=\"econsenthash\"><code>eConsent:hash</code></h4>\n<h5 id=\"version--string-3\"><code>version : string</code></h5>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Disclosure version</p>\n</li>\n</ul>\n<h5 id=\"timestamp--string-3\"><code>timestamp : string</code></h5>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>E-consent date signed</p>\n</li>\n</ul>\n<h1 id=\"response-object\">Response Object</h1>\n<h2 id=\"datahash\"><code>data:hash</code></h2>\n<h4 id=\"applicationstatusstring\"><code>applicationStatus:string</code></h4>\n<ul>\n<li>Status of the application</li>\n</ul>\n<h4 id=\"applicationsubstatusstring\"><code>applicationSubStatus:string</code></h4>\n<ul>\n<li>Sub-status of the application</li>\n</ul>\n<h4 id=\"applicationidstring\"><code>applicationId:string</code></h4>\n<ul>\n<li>Application ID</li>\n</ul>\n<h4 id=\"messagestring\"><code>message:string</code></h4>\n<ul>\n<li>Application information</li>\n</ul>\n<h4 id=\"applicationtypestring\"><code>applicationType:string</code></h4>\n<ul>\n<li>Application type. Possible values are LTO for lease merchants and SLN for loan merchants</li>\n</ul>\n<h4 id=\"processingfeestring\"><code>processingFee:string</code></h4>\n<ul>\n<li>Processing fee amount</li>\n</ul>\n<h4 id=\"currencycodestring-1\"><code>currencyCode:string</code></h4>\n<ul>\n<li>Currency code</li>\n</ul>\n<h4 id=\"approvedamountstring\"><code>approvedAmount:string</code></h4>\n<ul>\n<li>Approved amount</li>\n</ul>\n<h4 id=\"applicationcreatetimestring\"><code>applicationCreateTime:string</code></h4>\n<ul>\n<li>Application creation time in UTC Standard. Example 2020-02-21T18:00:00Z</li>\n</ul>\n<h4 id=\"applicationupdatetimestring\"><code>applicationUpdateTime:string</code></h4>\n<ul>\n<li>Application update time in UTC Standard. Example 2020-02-21T18:00:00Z</li>\n</ul>\n<h4 id=\"stbsboolean\"><code>stbs:boolean</code></h4>\n<ul>\n<li>Sales tax by snap flag</li>\n</ul>\n<h4 id=\"additionalinformationhash\"><code>additionalInformation:hash</code></h4>\n<ul>\n<li><p>Information of the application</p>\n<h4 id=\"additionalinformationcustomerinformationstring\"><code>additionalInformation.customerInformation:string</code></h4>\n<blockquote>\n<p>&lt;ul &gt;&lt;li &gt;&lt;div&gt;Status of the customer information. Possible values are VERIFIED or PENDING&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt;</p>\n</blockquote>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>#### `additionalInformation.bankInformation:string`\n&gt; &lt;ul &gt;&lt;li &gt;&lt;div&gt;Status of the bank information. Possible values are VERIFIED or PENDING&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; \n#### `additionalInformation.incomeInformation:string`\n&gt; &lt;ul &gt;&lt;li &gt;&lt;div&gt;Status of the income information. Possible values are VERIFIED or PENDING&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; \n#### `additionalInformation.cartInformation:string`\n&gt; &lt;ul &gt;&lt;li &gt;&lt;div&gt;Status of the cart information. Possible values are VERIFIED or PENDING&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; \n\n</code></pre><h2 id=\"successboolean\"><code>success:boolean</code></h2>\n<blockquote>\n<p>&lt;ul &gt;&lt;li &gt;&lt;div&gt;Value with the result of the request. Possible values are TRUE or FALSE&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; </p>\n</blockquote>\n<h2 id=\"statusinteger\"><code>status:integer</code></h2>\n<blockquote>\n<p>&lt;ul &gt;&lt;li &gt;&lt;div&gt;Value with status code of the request. For example: 200, 400, 404&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt;</p>\n</blockquote>\n","urlObject":{"path":["platform","v1","application","{{applicationId}}"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"e1ce14f6-d453-4db0-840a-6d6044bbece8","name":"OK","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCIsImtpZCI6IlJqRkJNa1JETlRVME1FTXpORU5GTWtNeE1UQkJPVE5DUlRjNE9UWTJORVJFTmtZNU1VSXpNZyJ9","type":"text"},{"key":"Request-Id","value":"123","description":"(optional)","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"customerInformation\": {\r\n\t\t\"driversLicenseNumber\": \"123456879\",\r\n\t\t\"driversLicenseState\": \"FL\",\r\n\t\t\"language\": \"EN\",\r\n\t\t\"rentOwn\": \"OWN\",\r\n\t\t\"timeAddressYears\": 0,\r\n\t\t\"timeAddressMonths\": 2,\r\n\t\t\"phoneOptIn\": true\r\n\t},\r\n\t\"supplementalDataInformation\": {\r\n\t\t\"customerPastApps\": \"2\",\r\n\t\t\"customerIP\": \"127.X.0.1\",\r\n        \"annualIncome\": \"50000.00\"\r\n\t},\r\n\t\"cartInformation\": {\r\n\t\t\"currencyCode\": \"USD\",\r\n\t\t\"taxAmount\": \"35.00\",\r\n\t\t\"shippingAmount\": \"15.00\",\r\n\t\t\"totalAmount\": \"320.00\",\r\n\t\t\"discountAmount\": \"0.00\",\r\n\t\t\"orderId\": \"041299\",\r\n\t\t\"items\": [\r\n\t\t\t{\r\n\t\t\t\t\"price\": \"150.00\",\r\n\t\t\t\t\"itemId\": \"ABC\",\r\n\t\t\t\t\"description\": \"Mattress\",\r\n\t\t\t\t\"sku\": \"D1234\",\r\n\t\t\t\t\"quantity\": 1,\r\n\t\t\t\t\"leasable\":true\r\n\t\t\t},\r\n            \t\t\t{\r\n\t\t\t\t\"price\": \"100.00\",\r\n\t\t\t\t\"itemId\": \"DEF\",\r\n\t\t\t\t\"description\": \"TV\",\r\n\t\t\t\t\"sku\": \"D1235\",\r\n\t\t\t\t\"quantity\": 1,\r\n\t\t\t\t\"leasable\":true,\r\n                \"itemType\": \"PRODUCT\"\r\n\t\t\t},\r\n            \t\t\t{\r\n\t\t\t\t\"price\": \"20.00\",\r\n\t\t\t\t\"itemId\": \"LMN\",\r\n\t\t\t\t\"description\": \"Misc Fee\",\r\n\t\t\t\t\"sku\": \"A0001\",\r\n\t\t\t\t\"quantity\": 1,\r\n\t\t\t\t\"leasable\":true,\r\n                \"itemType\": \"SERVICE\"\r\n\t\t\t}\r\n\t\t],\r\n\t\t\"shippingAddress\": {\r\n\t\t\t\"streetAddress\": \"456BroadwaySt\",\r\n\t\t\t\"city\": \"SaltLakeCity\",\r\n\t\t\t\"state\": \"UT\",\r\n\t\t\t\"country\": \"US\",\r\n\t\t\t\"postalCode\": \"84001\"\r\n\t\t}\r\n\t},\r\n\t\"bankInformation\": {\r\n\t\t\"bankName\": \"superBank\",\r\n\t\t\"bankCity\": \"miami\",\r\n\t\t\"bankState\": \"FL\",\r\n\t\t\"routingNumber\": \"051501451\",\r\n\t\t\"accountNumber\": \"{{account_number}}\",\r\n\t\t\"directDeposit\": true\r\n\t},\r\n\t\"incomeInformation\": [{\r\n\t\t\"employerName\": \"AcmeCorporation\",\r\n\t\t\"frequency\": \"BI_WEEKLY\",\r\n\t\t\"incomeAmount\": \"5000.00\",\r\n\t\t\"phone\": \"1234567890\",\r\n\t\t\"phoneCountryCode\": \"US\",\r\n\t\t\"positionHeld\": \"Associate\",\r\n\t\t\"type\": \"FULL_TIME\",\r\n\t\t\"lastPayDate\": \"2020-02-07\",\r\n\t\t\"nextPayDate\": \"2020-02-21\"\r\n\t}],\r\n    \"complianceDisclosures\": {\r\n        \"termsConditions\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"electronicTransaction\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"prequalifiedTermsConditions\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"eConsent\": {\r\n            \"timestamp\": \"10/23/2022\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api-training.snapfinance.com/platform/v1/application/200331000GUT"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"501"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:23:29 GMT"},{"key":"x-amzn-RequestId","value":"7b7a7e93-8b08-488e-807b-baff3746edc9"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P02D7HmRPHcFoeg="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d07f-228d9c3f28aea220b26950d2"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"bn3cAogOXeSE8fzq2QIF9wZmIiuUnnkTfd_b1nvfrHcUBbNzK9-YJw=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"applicationId\": \"{{applicationId}}\",\n        \"applicationStatus\": \"APPROVED\",\n        \"applicationSubStatus\": \"\",\n        \"message\": \"Application Approved\",\n        \"approvedAmount\": \"3520.00\",\n        \"applicationType\": \"LTO\",\n        \"processingFee\": \"0\",\n        \"currencyCode\": \"USD\",\n        \"applicationCreateTime\": \"2020-07-17T10:22:55.105Z\",\n        \"applicationUpdateTime\": \"2020-07-17T10:23:28.493Z\",\n        \"additionalInformation\": {\n            \"customerInformation\": \"Verified\",\n            \"cartInformation\": \"Verified\",\n            \"bankInformation\": \"Verified\",\n            \"incomeInformation\": \"Verified\"\n        }\n    },\n    \"status\": 200\n}"},{"id":"15f5715e-181f-434a-8515-1ec737797d2f","name":"Bad Request","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-Id","value":"123","description":"(optional)","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"customerInformation\": {\r\n\t\t\"driversLicenseNumber\": \"123456879\",\r\n\t\t\"driversLicenseState\": \"FL\",\r\n\t\t\"language\": \"EN\",\r\n\t\t\"rentOwn\": \"OWN\",\r\n\t\t\"timeAddressYears\": 0,\r\n\t\t\"timeAddressMonths\": 2,\r\n\t\t\"phoneOptIn\": true\r\n\t},\r\n\t\"supplementalDataInformation\": {\r\n\t\t\"customerPastApps\": \"2\",\r\n\t\t\"customerIP\": \"127.X.0.1\"\r\n\t},\r\n\t\"cartInformation\": {\r\n\t\t\"currencyCode\": \"USD\",\r\n\t\t\"taxAmount\": \"86.03\",\r\n\t\t\"shippingAmount\": \"15.00\",\r\n\t\t\"discountAmount\": \"0.00\",\r\n\t\t\"orderId\": \"041299\",\r\n\t\t\"items\": [\r\n\t\t\t{\r\n\t\t\t\t\"price\": \"1.00\",\r\n\t\t\t\t\"itemId\": \"ABC\",\r\n\t\t\t\t\"description\": \"Mattress\",\r\n\t\t\t\t\"sku\": \"D1234\",\r\n\t\t\t\t\"quantity\": 1,\r\n\t\t\t\t\"leasable\": true\r\n\t\t\t}\r\n\t\t],\r\n\t\t\"shippingAddress\": {\r\n\t\t\t\"streetAddress\": \"456BroadwaySt\",\r\n\t\t\t\"city\": \"SaltLakeCity\",\r\n\t\t\t\"state\": \"UT\",\r\n\t\t\t\"country\": \"US\",\r\n\t\t\t\"postalCode\": \"84001\"\r\n\t\t}\r\n\t},\r\n\t\"bankInformation\": {\r\n\t\t\"bankName\": \"superBank\",\r\n\t\t\"bankCity\": \"miami\",\r\n\t\t\"bankState\": \"FL\",\r\n\t\t\"routingNumber\": \"051501451\",\r\n\t\t\"accountNumber\": \"{{account_number}}\",\r\n\t\t\"directDeposit\": true\r\n\t},\r\n\t\"incomeInformation\": [{\r\n\t\t\"employerName\": \"AcmeCorporation\",\r\n\t\t\"frequency\": \"BI_WEEKLY\",\r\n\t\t\"incomeAmount\": \"5000.00\",\r\n\t\t\"phone\": \"1234567890\",\r\n\t\t\"phoneCountryCode\": \"US\",\r\n\t\t\"positionHeld\": \"Associate\",\r\n\t\t\"type\": \"FULL_TIME\",\r\n\t\t\"lastPayDate\": \"2018-06-06\",\r\n\t\t\"nextPayDate\": \"2018-06-21\"\r\n\t}],\r\n    \"complianceDisclosures\": {\r\n        \"termsConditions\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"electronicTransaction\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"prequalifiedTermsConditions\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"eConsent\": {\r\n            \"timestamp\": \"10/23/2022\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"159"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 16 Jul 2020 15:47:14 GMT"},{"key":"x-amzn-RequestId","value":"12a6933d-323a-4a4e-ba23-263f54f638b0"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"Pxd0TGxFPHcFkjw="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f107681-5abf786c414827605f8a6088"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 f9c5e5b9a4e739792ecd46afc5cf785d.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"pVDtqDoj_rc8lT9s3Rmd2CA9WYsC-uYPuUaCcTQ3nJwB0Jhlr-aLGQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"status\": 400,\n    \"error\": [\n        {\n            \"code\": \"cartInformation_totalAmount_missing\",\n            \"type\": \"invalid_request_error\",\n            \"message\": \"Cart total amount is missing\"\n        }\n    ]\n}"},{"id":"19e5cc65-c890-4df9-bec6-53b148582073","name":"Bad Request","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-Id","value":"123","description":"(optional)","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"customerInformation\": {\r\n\t\t\"driversLicenseNumber\": \"123456879\",\r\n\t\t\"driversLicenseState\": \"FL\",\r\n\t\t\"language\": \"EN\",\r\n\t\t\"rentOwn\": \"OWN\",\r\n\t\t\"timeAddressYears\": 0,\r\n\t\t\"timeAddressMonths\": 2,\r\n\t\t\"phoneOptIn\": true\r\n\t},\r\n\t\"supplementalDataInformation\": {\r\n\t\t\"customerPastApps\": \"2\",\r\n\t\t\"customerIP\": \"127.X.0.1\"\r\n\t},\r\n\t\"cartInformation\": {\r\n\t\t\"currencyCode\": \"USD\",\r\n\t\t\"taxAmount\": \"86.03\",\r\n\t\t\"shippingAmount\": \"15.00\",\r\n\t\t\"discountAmount\": \"0.00\",\r\n\t\t\"orderId\": \"041299\",\r\n\t\t\"items\": [\r\n\t\t\t{\r\n\t\t\t\t\"price\": \"1.00\",\r\n\t\t\t\t\"itemId\": \"ABC\",\r\n\t\t\t\t\"description\": \"Mattress\",\r\n\t\t\t\t\"sku\": \"D1234\",\r\n\t\t\t\t\"quantity\": 1,\r\n\t\t\t\t\"leasable\": true\r\n\t\t\t}\r\n\t\t],\r\n\t\t\"shippingAddress\": {\r\n\t\t\t\"streetAddress\": \"456BroadwaySt\",\r\n\t\t\t\"city\": \"SaltLakeCity\",\r\n\t\t\t\"state\": \"UT\",\r\n\t\t\t\"country\": \"US\",\r\n\t\t\t\"postalCode\": \"84001\"\r\n\t\t}\r\n\t},\r\n\t\"bankInformation\": {\r\n\t\t\"bankName\": \"superBank\",\r\n\t\t\"bankCity\": \"miami\",\r\n\t\t\"bankState\": \"FL\",\r\n\t\t\"routingNumber\": \"051501451\",\r\n\t\t\"accountNumber\": \"{{account_number}}\",\r\n\t\t\"directDeposit\": true\r\n\t},\r\n\t\"incomeInformation\": [{\r\n\t\t\"employerName\": \"AcmeCorporation\",\r\n\t\t\"frequency\": \"BI_WEEKLY\",\r\n\t\t\"incomeAmount\": \"5000.00\",\r\n\t\t\"phone\": \"1234567890\",\r\n\t\t\"phoneCountryCode\": \"US\",\r\n\t\t\"positionHeld\": \"Associate\",\r\n\t\t\"type\": \"FULL_TIME\",\r\n\t\t\"lastPayDate\": \"2018-06-06\",\r\n\t\t\"nextPayDate\": \"2018-06-21\"\r\n\t}],\r\n    \"complianceDisclosures\": {\r\n        \"termsConditions\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"electronicTransaction\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"prequalifiedTermsConditions\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"eConsent\": {\r\n            \"timestamp\": \"10/23/2022\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"159"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 16 Jul 2020 15:47:14 GMT"},{"key":"x-amzn-RequestId","value":"12a6933d-323a-4a4e-ba23-263f54f638b0"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"Pxd0TGxFPHcFkjw="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f107681-5abf786c414827605f8a6088"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 f9c5e5b9a4e739792ecd46afc5cf785d.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"pVDtqDoj_rc8lT9s3Rmd2CA9WYsC-uYPuUaCcTQ3nJwB0Jhlr-aLGQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"status\": 400,\n    \"error\": [\n        {\n            \"code\": \"cartInformation_totalAmount_missing\",\n            \"type\": \"invalid_request_error\",\n            \"message\": \"Cart total amount is missing\"\n        }\n    ]\n}"},{"id":"57a69b60-d373-4e9a-a95d-99ba2bd10eb7","name":"OK","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCIsImtpZCI6IlJqRkJNa1JETlRVME1FTXpORU5GTWtNeE1UQkJPVE5DUlRjNE9UWTJORVJFTmtZNU1VSXpNZyJ9","type":"text"},{"key":"Request-Id","value":"123","description":"(optional)","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"customerInformation\": {\r\n\t\t\"driversLicenseNumber\": \"123456879\",\r\n\t\t\"driversLicenseState\": \"FL\",\r\n\t\t\"language\": \"EN\",\r\n\t\t\"rentOwn\": \"OWN\",\r\n\t\t\"timeAddressYears\": 0,\r\n\t\t\"timeAddressMonths\": 2,\r\n\t\t\"phoneOptIn\": true\r\n\t},\r\n\t\"supplementalDataInformation\": {\r\n\t\t\"customerPastApps\": \"2\",\r\n\t\t\"customerIP\": \"127.X.0.1\",\r\n        \"annualIncome\": \"50000.00\"\r\n\t},\r\n\t\"cartInformation\": {\r\n\t\t\"currencyCode\": \"USD\",\r\n\t\t\"taxAmount\": \"35.00\",\r\n\t\t\"shippingAmount\": \"15.00\",\r\n\t\t\"totalAmount\": \"320.00\",\r\n\t\t\"discountAmount\": \"0.00\",\r\n\t\t\"orderId\": \"041299\",\r\n\t\t\"items\": [\r\n\t\t\t{\r\n\t\t\t\t\"price\": \"150.00\",\r\n\t\t\t\t\"itemId\": \"ABC\",\r\n\t\t\t\t\"description\": \"Mattress\",\r\n\t\t\t\t\"sku\": \"D1234\",\r\n\t\t\t\t\"quantity\": 1,\r\n\t\t\t\t\"leasable\":true\r\n\t\t\t},\r\n            \t\t\t{\r\n\t\t\t\t\"price\": \"100.00\",\r\n\t\t\t\t\"itemId\": \"DEF\",\r\n\t\t\t\t\"description\": \"TV\",\r\n\t\t\t\t\"sku\": \"D1235\",\r\n\t\t\t\t\"quantity\": 1,\r\n\t\t\t\t\"leasable\":true,\r\n                \"itemType\": \"PRODUCT\"\r\n\t\t\t},\r\n            \t\t\t{\r\n\t\t\t\t\"price\": \"20.00\",\r\n\t\t\t\t\"itemId\": \"LMN\",\r\n\t\t\t\t\"description\": \"Misc Fee\",\r\n\t\t\t\t\"sku\": \"A0001\",\r\n\t\t\t\t\"quantity\": 1,\r\n\t\t\t\t\"leasable\":true,\r\n                \"itemType\": \"SERVICE\"\r\n\t\t\t}\r\n\t\t],\r\n\t\t\"shippingAddress\": {\r\n\t\t\t\"streetAddress\": \"456BroadwaySt\",\r\n\t\t\t\"city\": \"SaltLakeCity\",\r\n\t\t\t\"state\": \"UT\",\r\n\t\t\t\"country\": \"US\",\r\n\t\t\t\"postalCode\": \"84001\"\r\n\t\t}\r\n\t},\r\n\t\"bankInformation\": {\r\n\t\t\"bankName\": \"superBank\",\r\n\t\t\"bankCity\": \"miami\",\r\n\t\t\"bankState\": \"FL\",\r\n\t\t\"routingNumber\": \"051501451\",\r\n\t\t\"accountNumber\": \"{{account_number}}\",\r\n\t\t\"directDeposit\": true\r\n\t},\r\n\t\"incomeInformation\": [{\r\n\t\t\"employerName\": \"AcmeCorporation\",\r\n\t\t\"frequency\": \"BI_WEEKLY\",\r\n\t\t\"incomeAmount\": \"5000.00\",\r\n\t\t\"phone\": \"1234567890\",\r\n\t\t\"phoneCountryCode\": \"US\",\r\n\t\t\"positionHeld\": \"Associate\",\r\n\t\t\"type\": \"FULL_TIME\",\r\n\t\t\"lastPayDate\": \"2020-02-07\",\r\n\t\t\"nextPayDate\": \"2020-02-21\"\r\n\t}],\r\n    \"complianceDisclosures\": {\r\n        \"termsConditions\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"electronicTransaction\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"prequalifiedTermsConditions\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"eConsent\": {\r\n            \"timestamp\": \"10/23/2022\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api-training.snapfinance.com/platform/v1/application/200331000GUT"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"501"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:23:29 GMT"},{"key":"x-amzn-RequestId","value":"7b7a7e93-8b08-488e-807b-baff3746edc9"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P02D7HmRPHcFoeg="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d07f-228d9c3f28aea220b26950d2"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"bn3cAogOXeSE8fzq2QIF9wZmIiuUnnkTfd_b1nvfrHcUBbNzK9-YJw=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"applicationId\": \"{{applicationId}}\",\n        \"applicationStatus\": \"APPROVED\",\n        \"applicationSubStatus\": \"\",\n        \"message\": \"Application Approved\",\n        \"approvedAmount\": \"3520.00\",\n        \"applicationType\": \"LTO\",\n        \"processingFee\": \"0\",\n        \"currencyCode\": \"USD\",\n        \"applicationCreateTime\": \"2020-07-17T10:22:55.105Z\",\n        \"applicationUpdateTime\": \"2020-07-17T10:23:28.493Z\",\n        \"additionalInformation\": {\n            \"customerInformation\": \"Verified\",\n            \"cartInformation\": \"Verified\",\n            \"bankInformation\": \"Verified\",\n            \"incomeInformation\": \"Verified\"\n        }\n    },\n    \"status\": 200\n}"}],"_postman_id":"65ec6649-01ca-4292-b82f-1c2cc571443d"},{"name":"Payment Plan","event":[{"listen":"test","script":{"exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});\r","pm.test(\"Success message\", function () {\r","    pm.expect(pm.response.text()).to.include(\"success\");\r","});"],"type":"text/javascript","id":"5faf984b-82cd-41d1-b934-516e024d807f"}}],"id":"93c40e11-35e7-4780-b540-7b4ac33cf321","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"<p>(optional - ID generated by the client)</p>\n","type":"text"}],"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/paymentPlan","description":"<h1 id=\"payment-plan\">Payment Plan</h1>\n<p>This endpoint gets the payment schedule. Read the fields as leaseField or loanField depending on the merchant type</p>\n<h2 id=\"path-params\">PATH PARAMS</h2>\n<blockquote>\n<h2 id=\"applicationidstring\"><code>applicationId:string</code></h2>\n<ul>\n<li>Required</li>\n<li>ApplicationId is returned when calling the create application endpoint</li>\n</ul>\n</blockquote>\n<h1 id=\"response-object\">Response Object</h1>\n<h2 id=\"datahash\"><code>data:hash</code></h2>\n<blockquote>\n<h3 id=\"documentshash\"><code>documents:hash</code></h3>\n<ul>\n<li>Documents details<blockquote>\n<h4 id=\"documentsdocumentstring\"><code>documents.document:string</code></h4>\n</blockquote>\n</li>\n</ul>\n<blockquote>\n<ul>\n<li>Document type agreement/addendum</li>\n</ul>\n<h4 id=\"documentssignstring\"><code>documents.sign:string</code></h4>\n<ul>\n<li>Sign document url</li>\n</ul>\n<h4 id=\"documentsprioritystring\"><code>documents.priority:string</code></h4>\n<ul>\n<li>priority</li>\n</ul>\n<h4 id=\"documentsrenderstring\"><code>documents.render:string</code></h4>\n<ul>\n<li>Get agreement url</li>\n</ul>\n</blockquote>\n</blockquote>\n<blockquote>\n<h3 id=\"paymentplansummaryhash\"><code>paymentPlanSummary:hash</code></h3>\n<ul>\n<li>Payment plan details<blockquote>\n<h4 id=\"paymentplansummarylastpaymentamountstring\"><code>paymentPlanSummary.lastPaymentAmount:string</code></h4>\n</blockquote>\n</li>\n</ul>\n<blockquote>\n<ul>\n<li>Last payment amount</li>\n</ul>\n<h4 id=\"paymentplansummarypaymentamountstring\"><code>paymentPlanSummary.paymentAmount:string</code></h4>\n<ul>\n<li>Regular payment amount</li>\n</ul>\n<h4 id=\"paymentplansummaryleaseterminmonthsstring\"><code>paymentPlanSummary.leaseTermInMonths:string</code></h4>\n<ul>\n<li>Lease/Loan term</li>\n</ul>\n<h4 id=\"paymentplansummaryprocessingfeestring\"><code>paymentPlanSummary.processingFee:string</code></h4>\n<ul>\n<li>Processing fee amount</li>\n</ul>\n<h4 id=\"paymentplansummaryleaseamountstring\"><code>paymentPlanSummary.leaseAmount:string</code></h4>\n<ul>\n<li>Lease/Loan amount</li>\n</ul>\n<h4 id=\"paymentplansummaryleasecoststring\"><code>paymentPlanSummary.leaseCost:string</code></h4>\n<ul>\n<li>Lease/Loan cost</li>\n</ul>\n<h4 id=\"paymentplansummaryleasetotalamountstring\"><code>paymentPlanSummary.leaseTotalAmount:string</code></h4>\n<ul>\n<li>Lease/Loan total amount</li>\n</ul>\n<h4 id=\"paymentplansummarypaymentfrequencystring\"><code>paymentPlanSummary.paymentFrequency:string</code></h4>\n<ul>\n<li>Payment frequency</li>\n</ul>\n<h4 id=\"paymentplansummarycurrencycodestring\"><code>paymentPlanSummary.currencyCode:string</code></h4>\n<ul>\n<li>Currency code</li>\n</ul>\n<h4 id=\"paymentplansummarystbsboolean\"><code>paymentPlanSummary.stbs:boolean</code></h4>\n<ul>\n<li>Sales tax by snap flag</li>\n</ul>\n<h4 id=\"paymentplansummarystbssalestaxpercentstring\"><code>paymentPlanSummary.stbsSalesTaxPercent:string</code></h4>\n<ul>\n<li>Sales tax percent</li>\n</ul>\n<h4 id=\"paymentplansummarycpodatestring\"><code>paymentPlanSummary.cpoDate:string</code></h4>\n<ul>\n<li>Cash payoff date</li>\n</ul>\n<h4 id=\"paymentplansummarycpoamountstring\"><code>paymentPlanSummary.cpoAmount:string</code></h4>\n<ul>\n<li>Cash payoff amount</li>\n</ul>\n<h4 id=\"paymentplansummarycponumberofpaymentsstring\"><code>paymentPlanSummary.cpoNumberOfPayments:string</code></h4>\n<ul>\n<li>Cash payoff number of payments</li>\n</ul>\n<h4 id=\"paymentplansummarycpopaymentsamountstring\"><code>paymentPlanSummary.cpoPaymentsAmount:string</code></h4>\n<ul>\n<li>Cash payoff payment amount</li>\n</ul>\n<h4 id=\"paymentplansummarycpolastpaymentamountstring\"><code>paymentPlanSummary.cpoLastPaymentAmount:string</code></h4>\n<ul>\n<li>Cash payoff last payment amount</li>\n</ul>\n<h4 id=\"paymentplansummarycpoleasecoststring\"><code>paymentPlanSummary.cpoLeaseCost:string</code></h4>\n<ul>\n<li>Cash payoff least cost</li>\n</ul>\n<h4 id=\"paymentplansummaryinitialpaymentstring\"><code>paymentPlanSummary.initialPayment:string</code></h4>\n<ul>\n<li>Initial payment amount</li>\n</ul>\n<h4 id=\"paymentplansummarynumberofpaymentswithsameamountstring\"><code>paymentPlanSummary.numberOfPaymentsWithSameAmount:string</code></h4>\n<ul>\n<li>Number of payments with same amount</li>\n<li>Initial payment amount</li>\n</ul>\n<h4 id=\"paymentplansummarytotalnumberofpaymentsstring\"><code>paymentPlanSummary.totalNumberOfPayments:string</code></h4>\n<ul>\n<li>Total number of payments</li>\n</ul>\n<h4 id=\"paymentplansummarylastpaymentdatestring\"><code>paymentPlanSummary.lastPaymentDate:string</code></h4>\n<ul>\n<li>Last payment date</li>\n</ul>\n</blockquote>\n</blockquote>\n<h2 id=\"successboolean\"><code>success:boolean</code></h2>\n<blockquote>\n<ul>\n<li>Value with the result of the request. Possible values are TRUE or False</li>\n</ul>\n</blockquote>\n<h2 id=\"statusinteger\"><code>status:integer</code></h2>\n<blockquote>\n<ul>\n<li>Value with status code of the request. For example: 200, 400, 404</li>\n</ul>\n</blockquote>\n","urlObject":{"path":["platform","v1","application","{{applicationId}}","paymentPlan"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"1e88a5fd-cdde-42f4-851e-d2d374b6451e","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Content-Type","value":"application/json"},{"key":"Request-Id","value":"123"}],"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/paymentPlan"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"244"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:24:19 GMT"},{"key":"x-amzn-RequestId","value":"f42aea7e-5211-4753-a26a-e8db4014d312"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P02LeGszvHcFsxg="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d0af-3504dad84d30e4d08259a3b0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"jen45MDpH8DQoOEaPFvDVJdGipmCzTuiyeN1iMqlvOUBQG5Kixtyow=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"cpoDays\": 100,\n        \"documents\": [\n            {\n                \"document\": \"agreement\",\n                \"priority\": 1,\n                \"render\": \"https://api-qa.snapfinance.com/platform/v1/application/2410280079UT/agreement?renderType=html&document=agreement\",\n                \"sign\": \"https://api-qa.snapfinance.com/platform/v1/application/2410280079UT/signed?document=agreement\"\n            }\n        ],\n        \"paymentPlanSummary\": {\n            \"cpoAmount\": \"330.00\",\n            \"cpoDate\": \"2025-05-05\",\n            \"cpoLastPaymentAmount\": \"47.16\",\n            \"cpoLeaseCost\": \"0.00\",\n            \"cpoNumberOfPayments\": \"6\",\n            \"cpoPaymentsAmount\": \"47.14\",\n            \"currencyCode\": \"USD\",\n            \"finalNumberOfPayments\": \"39\",\n            \"firstPaymentDate\": \"2025-02-14\",\n            \"hangtagState\": false,\n            \"initialPayment\": \"0.00\",\n            \"lastPaymentAmount\": \"19.48\",\n            \"lastPaymentDate\": \"2026-07-31\",\n            \"leaseAmount\": \"320.00\",\n            \"leaseCost\": \"442.00\",\n            \"leaseTermInMonths\": \"18\",\n            \"leaseTotalAmount\": \"762.00\",\n            \"numberOfPaymentsWithSameAmount\": \"38\",\n            \"paymentAmount\": \"19.54\",\n            \"paymentFrequency\": \"BI_WEEKLY\",\n            \"processingFee\": \"10.00\",\n            \"propertyCondition\": \"New\",\n            \"stbs\": false,\n            \"stbsSalesTaxPercent\": \"0.00\",\n            \"summaryAcceptanceRequired\": false,\n            \"totalNumberOfPayments\": \"39\"\n        }\n    },\n    \"status\": 200,\n    \"success\": true\n}"},{"id":"4177bb22-97e8-4f2f-926e-156e75221d61","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Content-Type","value":"application/json"},{"key":"Request-Id","value":"123"}],"url":{"raw":"{{baseUrl}}/platform/v1/application/{{applicationId}}/paymentPlan?frequency=BW","host":["{{baseUrl}}"],"path":["platform","v1","application","{{applicationId}}","paymentPlan"],"query":[{"key":"frequency","value":"BW"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"136"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 15:58:33 GMT"},{"key":"x-amzn-RequestId","value":"e686de7a-4a8b-472a-99bb-c3810ca266ad"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P0yadGxZPHcFgJQ="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11caa9-a9e85c6759f66b046f148f15"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 4c6f3dc807d213a0da966381e4886b08.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"YxjE8a_vRBiTtIchTjpRj97HIPvHhb2UFEne1JzTFnB4twNJS3u6QA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"status\": 404,\n    \"error\": [\n        {\n            \"code\": \"application_invalid\",\n            \"type\": \"invalid_request_error\",\n            \"message\": \"Application not found\"\n        }\n    ]\n}"},{"id":"6e492f99-7aab-4bfe-ba15-1df1446cd350","name":"Oklahoma","originalRequest":{"method":"GET","header":[{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"}],"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/paymentPlan"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1298"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Mon, 28 Oct 2024 05:49:08 GMT"},{"key":"X-Amzn-Trace-Id","value":"Root=1-671f25d3-71b827a74d0ce4ea2c443859"},{"key":"x-amzn-RequestId","value":"a495ab78-002c-4fa2-879c-193e421f9a10"},{"key":"X-XSS-Protection","value":"0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"AWLZIGy1vHcEv5Q="},{"key":"Cache-Control","value":"no-store"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 09a1a54fdbf13d19927a903f4a7d5186.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"SEA900-P2"},{"key":"X-Amz-Cf-Id","value":"jKBBVOPfk0QQWLHUEXf79MNyBoYph7MLZLGoRj7xY5c80hxih3gAPA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"documents\": [\n            {\n                \"document\": \"addendum\",\n                \"sign\": \"https://api-qa.snapfinance.com/platform/v1/application/241027000MOK/signed?document=addendum\",\n                \"priority\": 1,\n                \"render\": \"https://api-qa.snapfinance.com/platform/v1/application/241027000MOK/agreement?renderType=html&document=addendum\"\n            },\n            {\n                \"document\": \"agreement\",\n                \"sign\": \"https://api-qa.snapfinance.com/platform/v1/application/241027000MOK/signed?document=agreement\",\n                \"priority\": 2,\n                \"render\": \"https://api-qa.snapfinance.com/platform/v1/application/241027000MOK/agreement?renderType=html&document=agreement\"\n            }\n        ],\n        \"paymentPlanSummary\": {\n            \"lastPaymentAmount\": \"19.48\",\n            \"paymentAmount\": \"19.54\",\n            \"leaseTermInMonths\": \"18\",\n            \"processingFee\": \"10.00\",\n            \"leaseAmount\": \"320.00\",\n            \"leaseCost\": \"442.00\",\n            \"leaseTotalAmount\": \"762.00\",\n            \"paymentFrequency\": \"BI_WEEKLY\",\n            \"currencyCode\": \"USD\",\n            \"stbs\": false,\n            \"summaryAcceptanceRequired\": false,\n            \"hangtagState\": false,\n            \"stbsSalesTaxPercent\": \"0.00\",\n            \"cpoDate\": \"2025-05-05\",\n            \"cpoAmount\": \"330.00\",\n            \"cpoNumberOfPayments\": \"6\",\n            \"cpoPaymentsAmount\": \"47.14\",\n            \"cpoLastPaymentAmount\": \"47.16\",\n            \"cpoLeaseCost\": \"0.00\",\n            \"initialPayment\": \"0.00\",\n            \"totalNumberOfPayments\": \"39\",\n            \"lastPaymentDate\": \"2026-07-31\",\n            \"firstPaymentDate\": \"2025-02-14\",\n            \"propertyCondition\": \"New\",\n            \"finalNumberOfPayments\": \"39\",\n            \"numberOfPaymentsWithSameAmount\": \"38\"\n        },\n        \"cpoDays\": 100\n    },\n    \"success\": true,\n    \"status\": 200\n}"},{"id":"e05116dd-857f-401f-bafb-728119eb5dc7","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Content-Type","value":"application/json"},{"key":"Request-Id","value":"123"}],"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/paymentPlan"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"244"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:24:19 GMT"},{"key":"x-amzn-RequestId","value":"f42aea7e-5211-4753-a26a-e8db4014d312"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P02LeGszvHcFsxg="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d0af-3504dad84d30e4d08259a3b0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"jen45MDpH8DQoOEaPFvDVJdGipmCzTuiyeN1iMqlvOUBQG5Kixtyow=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"cpoDays\": 100,\n        \"documents\": [\n            {\n                \"document\": \"agreement\",\n                \"priority\": 1,\n                \"render\": \"https://api-qa.snapfinance.com/platform/v1/application/2410280079UT/agreement?renderType=html&document=agreement\",\n                \"sign\": \"https://api-qa.snapfinance.com/platform/v1/application/2410280079UT/signed?document=agreement\"\n            }\n        ],\n        \"paymentPlanSummary\": {\n            \"cpoAmount\": \"330.00\",\n            \"cpoDate\": \"2025-05-05\",\n            \"cpoLastPaymentAmount\": \"47.16\",\n            \"cpoLeaseCost\": \"0.00\",\n            \"cpoNumberOfPayments\": \"6\",\n            \"cpoPaymentsAmount\": \"47.14\",\n            \"currencyCode\": \"USD\",\n            \"finalNumberOfPayments\": \"39\",\n            \"firstPaymentDate\": \"2025-02-14\",\n            \"hangtagState\": false,\n            \"initialPayment\": \"0.00\",\n            \"lastPaymentAmount\": \"19.48\",\n            \"lastPaymentDate\": \"2026-07-31\",\n            \"leaseAmount\": \"320.00\",\n            \"leaseCost\": \"442.00\",\n            \"leaseTermInMonths\": \"18\",\n            \"leaseTotalAmount\": \"762.00\",\n            \"numberOfPaymentsWithSameAmount\": \"38\",\n            \"paymentAmount\": \"19.54\",\n            \"paymentFrequency\": \"BI_WEEKLY\",\n            \"processingFee\": \"10.00\",\n            \"propertyCondition\": \"New\",\n            \"stbs\": false,\n            \"stbsSalesTaxPercent\": \"0.00\",\n            \"summaryAcceptanceRequired\": false,\n            \"totalNumberOfPayments\": \"39\"\n        }\n    },\n    \"status\": 200,\n    \"success\": true\n}"},{"id":"8651e626-4a8b-40f0-aee5-9011d47b13cf","name":"Oklahoma","originalRequest":{"method":"GET","header":[{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"}],"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/paymentPlan"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1298"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Mon, 28 Oct 2024 05:49:08 GMT"},{"key":"X-Amzn-Trace-Id","value":"Root=1-671f25d3-71b827a74d0ce4ea2c443859"},{"key":"x-amzn-RequestId","value":"a495ab78-002c-4fa2-879c-193e421f9a10"},{"key":"X-XSS-Protection","value":"0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"AWLZIGy1vHcEv5Q="},{"key":"Cache-Control","value":"no-store"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 09a1a54fdbf13d19927a903f4a7d5186.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"SEA900-P2"},{"key":"X-Amz-Cf-Id","value":"jKBBVOPfk0QQWLHUEXf79MNyBoYph7MLZLGoRj7xY5c80hxih3gAPA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"documents\": [\n            {\n                \"document\": \"addendum\",\n                \"sign\": \"https://api-qa.snapfinance.com/platform/v1/application/241027000MOK/signed?document=addendum\",\n                \"priority\": 1,\n                \"render\": \"https://api-qa.snapfinance.com/platform/v1/application/241027000MOK/agreement?renderType=html&document=addendum\"\n            },\n            {\n                \"document\": \"agreement\",\n                \"sign\": \"https://api-qa.snapfinance.com/platform/v1/application/241027000MOK/signed?document=agreement\",\n                \"priority\": 2,\n                \"render\": \"https://api-qa.snapfinance.com/platform/v1/application/241027000MOK/agreement?renderType=html&document=agreement\"\n            }\n        ],\n        \"paymentPlanSummary\": {\n            \"lastPaymentAmount\": \"19.48\",\n            \"paymentAmount\": \"19.54\",\n            \"leaseTermInMonths\": \"18\",\n            \"processingFee\": \"10.00\",\n            \"leaseAmount\": \"320.00\",\n            \"leaseCost\": \"442.00\",\n            \"leaseTotalAmount\": \"762.00\",\n            \"paymentFrequency\": \"BI_WEEKLY\",\n            \"currencyCode\": \"USD\",\n            \"stbs\": false,\n            \"summaryAcceptanceRequired\": false,\n            \"hangtagState\": false,\n            \"stbsSalesTaxPercent\": \"0.00\",\n            \"cpoDate\": \"2025-05-05\",\n            \"cpoAmount\": \"330.00\",\n            \"cpoNumberOfPayments\": \"6\",\n            \"cpoPaymentsAmount\": \"47.14\",\n            \"cpoLastPaymentAmount\": \"47.16\",\n            \"cpoLeaseCost\": \"0.00\",\n            \"initialPayment\": \"0.00\",\n            \"totalNumberOfPayments\": \"39\",\n            \"lastPaymentDate\": \"2026-07-31\",\n            \"firstPaymentDate\": \"2025-02-14\",\n            \"propertyCondition\": \"New\",\n            \"finalNumberOfPayments\": \"39\",\n            \"numberOfPaymentsWithSameAmount\": \"38\"\n        },\n        \"cpoDays\": 100\n    },\n    \"success\": true,\n    \"status\": 200\n}"},{"id":"fa387ed0-8603-40af-9a02-0541f542427c","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Content-Type","value":"application/json"},{"key":"Request-Id","value":"123"}],"url":{"raw":"{{baseUrl}}/platform/v1/application/{{applicationId}}/paymentPlan?frequency=BW","host":["{{baseUrl}}"],"path":["platform","v1","application","{{applicationId}}","paymentPlan"],"query":[{"key":"frequency","value":"BW"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"136"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 15:58:33 GMT"},{"key":"x-amzn-RequestId","value":"e686de7a-4a8b-472a-99bb-c3810ca266ad"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P0yadGxZPHcFgJQ="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11caa9-a9e85c6759f66b046f148f15"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 4c6f3dc807d213a0da966381e4886b08.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"YxjE8a_vRBiTtIchTjpRj97HIPvHhb2UFEne1JzTFnB4twNJS3u6QA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"status\": 404,\n    \"error\": [\n        {\n            \"code\": \"application_invalid\",\n            \"type\": \"invalid_request_error\",\n            \"message\": \"Application not found\"\n        }\n    ]\n}"}],"_postman_id":"93c40e11-35e7-4780-b540-7b4ac33cf321"},{"name":"Payment Estimate","id":"9dbd1044-614f-4d3b-b085-f1d6ceb6dffc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"items\": [\n    {\n      \"price\": 1250,\n      \"itemId\": \"ABC\"\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/hangtag/paymentestimate?frequency=W","description":"<h1 id=\"payment-estimate\">Payment Estimate</h1>\n<p>Returns a payment estimate for hangtag items.</p>\n<h2 id=\"query-parameters\">Query parameters</h2>\n<h3 id=\"frequency-string-required\">frequency (string, required)</h3>\n<p>Payment schedule frequency for the estimate. Allowed values:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>BW</td>\n<td>Bi-Weekly</td>\n</tr>\n<tr>\n<td>W</td>\n<td>Weekly</td>\n</tr>\n<tr>\n<td>M</td>\n<td>Monthly</td>\n</tr>\n<tr>\n<td>MW</td>\n<td>Monthly Weekly</td>\n</tr>\n<tr>\n<td>SM</td>\n<td>Semi-Monthly</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"request-body\">Request body</h2>\n<p>Send a JSON body with an <code>items</code> array. Each element includes <code>price</code> and <code>itemId</code> (see example).</p>\n","urlObject":{"path":["platform","v1","hangtag","paymentestimate"],"host":["{{baseUrl}}"],"query":[{"disabled":true,"description":{"content":"<p>Bi-Weekly</p>\n","type":"text/plain"},"key":"frequency","value":"BW"},{"description":{"content":"<p>Weekly</p>\n","type":"text/plain"},"key":"frequency","value":"W"},{"disabled":true,"description":{"content":"<p>Monthly</p>\n","type":"text/plain"},"key":"frequency","value":"M"},{"disabled":true,"description":{"content":"<p>Monthly Weekly</p>\n","type":"text/plain"},"key":"frequency","value":"MW"},{"disabled":true,"description":{"content":"<p>Semi-Monthly</p>\n","type":"text/plain"},"key":"frequency","value":"SM"}],"variable":[]}},"response":[{"id":"6c625216-c58d-4427-9324-b1a88af3f375","name":"OK","originalRequest":{"method":"POST","header":[],"url":{"raw":"{{baseUrl}}/platform/v1/hangtag/paymentestimate?frequency=W","host":["{{baseUrl}}"],"path":["platform","v1","hangtag","paymentestimate"],"query":[{"key":"frequency","value":"BW","description":"Bi-Weekly","disabled":true},{"key":"frequency","value":"W","description":"Weekly"},{"key":"frequency","value":"M","description":"Monthly","disabled":true},{"key":"frequency","value":"MW","description":"Monthly Weekly","disabled":true},{"key":"frequency","value":"SM","description":"Semi-Monthly","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"price\": 1250,\n        \"itemId\": \"ABC\",\n        \"paymentScheduleAmount\": 51.48,\n        \"lastPaymentAmount\": 51.02,\n        \"frequency\": \"W\",\n        \"totalCost\": 2487.5,\n        \"costOfLease\": 1237.5,\n        \"salesTaxAmount\": 199,\n        \"totalPayments\": 2686.5,\n        \"hundredDayPaymentDueDate\": \"2025-04-17\",\n        \"hundredDayPaymentAmount\": 1431\n    },\n    \"status\": 200\n}"},{"id":"be5912ef-a169-4ca4-b2e8-f745b6f8202d","name":"Bad Request","originalRequest":{"method":"POST","header":[],"url":{"raw":"{{baseUrl}}/platform/v1/hangtag/paymentestimate?frequency=W","host":["{{baseUrl}}"],"path":["platform","v1","hangtag","paymentestimate"],"query":[{"key":"frequency","value":"BW","description":"Bi-Weekly","disabled":true},{"key":"frequency","value":"W","description":"Weekly"},{"key":"frequency","value":"M","description":"Monthly","disabled":true},{"key":"frequency","value":"MW","description":"Monthly Weekly","disabled":true},{"key":"frequency","value":"SM","description":"Semi-Monthly","disabled":true}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n  \"success\": false,\n  \"status\": 400,\n  \"error\": [\n    {\n      \"type\": \"validation_error\",\n      \"code\": \"payment_estimate_price_missing\",\n      \"message\": \"Price in product item is missing\"\n    }\n  ]\n}"}],"_postman_id":"9dbd1044-614f-4d3b-b085-f1d6ceb6dffc"},{"name":"Customer Communication Preferences","id":"95d7df3a-e401-46a3-8bfb-2bcb9ab00992","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"app-origin-id","value":"originations","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"customerId\": \"1234567890\",\n  \"communicationChannel\": \"EMAIL\",\n  \"consentType\": \"SDLR_ECONSENT\",\n  \"consentStatus\": true\n}"},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/comm-preferences","description":"<h1 id=\"create-customer-communication-preferences\">Create Customer Communication Preferences</h1>\n<p>This endpoint creates or updates a customer's communication preferences for regulatory and marketing consents.</p>\n<h2 id=\"request-body\">Request Body</h2>\n<ul>\n<li><code>customerId</code> (string, required if applicationId not in header): Unique id of the Customer.</li>\n<li><code>communicationChannel</code> (string, required for most consent types): One of <code>EMAIL</code>, <code>SMS</code>, <code>PUSH_NOTIFICATION</code>, <code>CALL</code>, <code>NOT_APPLICABLE</code>.</li>\n<li><code>consentType</code> (string, required): Consent type, e.g. <code>SDLR_ECONSENT</code>, <code>NO_EMAIL</code>, <code>DO_NOT_SHARE_GLBA</code>, etc.</li>\n<li><code>consentStatus</code> (boolean, required): Consent status, true or false.</li>\n</ul>\n<h2 id=\"example-request\">Example Request</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"customerId\": \"1234567890\",\n  \"communicationChannel\": \"EMAIL\",\n  \"consentType\": \"SDLR_ECONSENT\",\n  \"consentStatus\": true\n}\n</code></pre>\n<h2 id=\"success-response\">Success Response</h2>\n<ul>\n<li><code>200 OK</code></li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"success\": true,\n  \"message\": \"Preferences updated successfully\"\n}\n</code></pre>\n<h2 id=\"error-response\">Error Response</h2>\n<ul>\n<li><code>400 Bad Request</code></li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"errors\": [\n    { \"code\": \"4105\", \"message\": \"customerId is mandatory in case applicationId is not provided in the header\" },\n    { \"code\": \"4106\", \"message\": \"communicationChannel can't be null and value should be any one these : [CALL, EMAIL, PUSH_NOTIFICATION, SMS]\" },\n    { \"code\": \"4107\", \"message\": \"consentType can't be null and value should be any one these : [SDLR_ECONSENT, NO_EMAIL, NO_SMS, NO_CALL, NEGATIVE_OPTIONRULE_ECONSENT]\" },\n    { \"code\": \"4108\", \"message\": \"app-origin-id header shouldn't be null or empty and value should be any one these : [originations]\" },\n    { \"code\": \"4178\", \"message\": \"application-id header is missing\" }\n  ]\n}\n</code></pre>\n","urlObject":{"path":["platform","v1","application","{{applicationId}}","comm-preferences"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"a6a3f64a-f268-4e55-baa0-fcb250dd1766","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{bearerToken}}"},{"key":"app-origin-id","value":"originations"}],"body":{"mode":"raw","raw":"{\n  \"customerId\": \"1234567890\",\n  \"communicationChannel\": \"EMAIL\",\n  \"consentType\": \"SDLR_ECONSENT\",\n  \"consentStatus\": true\n}"},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/comm-preferences"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"success\": true,\n  \"message\": \"Preferences updated successfully\"\n}"},{"id":"5c5bbb95-ae5c-4662-8f27-75a7dc79d916","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{bearerToken}}"},{"key":"app-origin-id","value":"originations"}],"body":{"mode":"raw","raw":"{\n  \"customerId\": \"\",\n  \"communicationChannel\": \"\",\n  \"consentType\": \"\",\n  \"consentStatus\": false\n}"},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/comm-preferences"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"errors\": [\n    { \"code\": \"4105\", \"message\": \"customerId is mandatory in case applicationId is not provided in the header\" },\n    { \"code\": \"4106\", \"message\": \"communicationChannel can't be null and value should be any one these : [CALL, EMAIL, PUSH_NOTIFICATION, SMS]\" },\n    { \"code\": \"4107\", \"message\": \"consentType can't be null and value should be any one these : [SDLR_ECONSENT, NO_EMAIL, NO_SMS, NO_CALL, NEGATIVE_OPTIONRULE_ECONSENT]\" },\n    { \"code\": \"4108\", \"message\": \"app-origin-id header shouldn't be null or empty and value should be any one these : [originations]\" },\n    { \"code\": \"4178\", \"message\": \"application-id header is missing\" }\n  ]\n}"},{"id":"9304ac68-2f08-4341-a1ea-c99a7a8f44d5","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{bearerToken}}"},{"key":"app-origin-id","value":"originations"}],"body":{"mode":"raw","raw":"{\n  \"customerId\": \"1234567890\",\n  \"communicationChannel\": \"EMAIL\",\n  \"consentType\": \"SDLR_ECONSENT\",\n  \"consentStatus\": true\n}"},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/comm-preferences"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"success\": true,\n  \"message\": \"Preferences updated successfully\"\n}"},{"id":"ff0c1ef8-ef82-4ef4-95bf-3ba8ba98ee41","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{bearerToken}}"},{"key":"app-origin-id","value":"originations"}],"body":{"mode":"raw","raw":"{\n  \"customerId\": \"\",\n  \"communicationChannel\": \"\",\n  \"consentType\": \"\",\n  \"consentStatus\": false\n}"},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/comm-preferences"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"errors\": [\n    { \"code\": \"4105\", \"message\": \"customerId is mandatory in case applicationId is not provided in the header\" },\n    { \"code\": \"4106\", \"message\": \"communicationChannel can't be null and value should be any one these : [CALL, EMAIL, PUSH_NOTIFICATION, SMS]\" },\n    { \"code\": \"4107\", \"message\": \"consentType can't be null and value should be any one these : [SDLR_ECONSENT, NO_EMAIL, NO_SMS, NO_CALL, NEGATIVE_OPTIONRULE_ECONSENT]\" },\n    { \"code\": \"4108\", \"message\": \"app-origin-id header shouldn't be null or empty and value should be any one these : [originations]\" },\n    { \"code\": \"4178\", \"message\": \"application-id header is missing\" }\n  ]\n}"}],"_postman_id":"95d7df3a-e401-46a3-8bfb-2bcb9ab00992"},{"name":"Agreement Details","event":[{"listen":"test","script":{"exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});\r","pm.test(\"Success message\", function () {\r","    pm.expect(pm.response.text()).to.include(\"success\");\r","});"],"type":"text/javascript","id":"3122c8ed-4db0-4cf7-ab4e-e8bfca04cd26"}}],"id":"c54899fd-a664-4ffe-b7de-c7420cbd1450","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"<p>(optional - ID generated by the client)</p>\n","type":"text"}],"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/agreement?renderType=html&document=agreement","description":"<h1 id=\"agreement-details\">Agreement Details</h1>\n<p>This endpoint fetches the agreement details which the consumer needs to accept and sign.</p>\n<h2 id=\"path-params\">PATH PARAMS</h2>\n<blockquote>\n<h2 id=\"applicationidstring\"><code>applicationId:string</code></h2>\n<ul>\n<li>Required</li>\n<li>ApplicationId is returned when calling the create application endpoint</li>\n</ul>\n</blockquote>\n<h2 id=\"query-parameters\">QUERY PARAMETERS</h2>\n<blockquote>\n<h2 id=\"rendertype\"><code>renderType</code></h2>\n<ul>\n<li>Optional</li>\n<li>Render type</li>\n</ul>\n</blockquote>\n<blockquote>\n<h2 id=\"document\"><code>document</code></h2>\n<ul>\n<li>Optional</li>\n<li>agreement/addendum</li>\n</ul>\n</blockquote>\n<blockquote>\n<h2 id=\"svgonly\"><code>svgonly</code></h2>\n<ul>\n<li>Optional</li>\n<li>Generate HTML agreement version</li>\n</ul>\n</blockquote>\n<blockquote>\n<h2 id=\"language\"><code>language</code></h2>\n<ul>\n<li>Optional</li>\n<li>Agreement language EN(English) / ES(Spanish)</li>\n</ul>\n</blockquote>\n<blockquote>\n<h2 id=\"summaryacceptance\"><code>summaryAcceptance</code></h2>\n<ul>\n<li>Mandatory, send true value</li>\n<li>Acceptance viewed and acknowledge agreement terms</li>\n</ul>\n</blockquote>\n<h1 id=\"response-object\">Response Object</h1>\n<h2 id=\"datahash\"><code>data:hash</code></h2>\n<blockquote>\n<h4 id=\"agreementinformationhash\"><code>agreementInformation:hash</code></h4>\n<ul>\n<li>Payment plan details</li>\n</ul>\n<h4 id=\"agreementinformationapplicationidstring\"><code>agreementInformation.applicationId:string</code></h4>\n<blockquote>\n<ul>\n<li>Application ID</li>\n</ul>\n</blockquote>\n<h4 id=\"agreementinformationcustomerinformationhash\"><code>agreementInformation.customerInformation:hash</code></h4>\n<blockquote>\n<ul>\n<li>Customer information details</li>\n</ul>\n<h4 id=\"customerinformationdobdatestring\"><code>customerInformation.dobDate:string</code></h4>\n<blockquote>\n<ul>\n<li>Date of birth</li>\n</ul>\n</blockquote>\n<h4 id=\"customerinformationcustomeridstring\"><code>customerInformation.customerId:string</code></h4>\n<blockquote>\n<ul>\n<li>Customer ID</li>\n</ul>\n</blockquote>\n<h4 id=\"customerinformationcustomeridtypestring\"><code>customerInformation.customerIdType:string</code></h4>\n<blockquote>\n<ul>\n<li>Customer ID type</li>\n</ul>\n</blockquote>\n<h4 id=\"customerinformationmobilephonestring\"><code>customerInformation.mobilePhone:string</code></h4>\n<blockquote>\n<ul>\n<li>Mobile phone</li>\n</ul>\n</blockquote>\n<h4 id=\"customerinformationmobilephonecountrystring\"><code>customerInformation.mobilePhoneCountry:string</code></h4>\n<blockquote>\n<ul>\n<li>Mobile phone country</li>\n</ul>\n</blockquote>\n<h4 id=\"customerinformationemailstring\"><code>customerInformation.email:string</code></h4>\n<blockquote>\n<ul>\n<li>Email</li>\n</ul>\n</blockquote>\n<h4 id=\"customerinformationfirstnamestring\"><code>customerInformation.firstName:string</code></h4>\n<blockquote>\n<ul>\n<li>First name</li>\n</ul>\n</blockquote>\n<h4 id=\"customerinformationlastnamestring\"><code>customerInformation.lastName:string</code></h4>\n<blockquote>\n<ul>\n<li>Last name</li>\n</ul>\n</blockquote>\n<h4 id=\"customerinformationbillingaddresshash\"><code>customerInformation.billingAddress:hash</code></h4>\n<blockquote>\n<ul>\n<li>Snap address</li>\n</ul>\n<h4 id=\"billingaddressstreetaddressstring\"><code>billingAddress.streetAddress:string</code></h4>\n<blockquote>\n<ul>\n<li>Street address</li>\n</ul>\n</blockquote>\n<h4 id=\"billingaddresscitystring\"><code>billingAddress.city:string</code></h4>\n<blockquote>\n<ul>\n<li>City</li>\n</ul>\n</blockquote>\n<h4 id=\"billingaddressstatestring\"><code>billingAddress.state:string</code></h4>\n<blockquote>\n<ul>\n<li>State</li>\n</ul>\n</blockquote>\n<h4 id=\"billingaddresscountrystring\"><code>billingAddress.country:string</code></h4>\n<blockquote>\n<ul>\n<li>Country</li>\n</ul>\n</blockquote>\n<h4 id=\"billingaddresspostalcodestring\"><code>billingAddress.postalCode:string</code></h4>\n<blockquote>\n<ul>\n<li>Postal code</li>\n</ul>\n</blockquote>\n</blockquote>\n</blockquote>\n<h4 id=\"agreementinformationsnapfinanceinformationhash\"><code>agreementInformation.snapFinanceInformation:hash</code></h4>\n<blockquote>\n<ul>\n<li>Snap information details</li>\n</ul>\n<h4 id=\"agreementinformationsnapfinanceinformationbusinessnamestring\"><code>agreementInformation.snapFinanceInformation.businessName:string</code></h4>\n<blockquote>\n<ul>\n<li>Business name</li>\n</ul>\n</blockquote>\n<h4 id=\"snapfinanceinformationemailstring\"><code>snapFinanceInformation.email:string</code></h4>\n<blockquote>\n<ul>\n<li>Email</li>\n</ul>\n</blockquote>\n<h4 id=\"snapfinanceinformationphonenumberstring\"><code>snapFinanceInformation.phoneNumber:string</code></h4>\n<blockquote>\n<ul>\n<li>Phone number</li>\n</ul>\n</blockquote>\n<h4 id=\"snapfinanceinformationphonenumbercodestring\"><code>snapFinanceInformation.phoneNumberCode:string</code></h4>\n<blockquote>\n<ul>\n<li>Phone number code</li>\n</ul>\n</blockquote>\n<h4 id=\"snapfinanceinformationsnapaddresshash\"><code>snapFinanceInformation.snapAddress:hash</code></h4>\n<blockquote>\n<ul>\n<li>Snap address</li>\n</ul>\n<h4 id=\"snapaddressstreetaddressstring\"><code>snapAddress.streetAddress:string</code></h4>\n<blockquote>\n<ul>\n<li>Street address</li>\n</ul>\n</blockquote>\n<h4 id=\"snapaddresscitystring\"><code>snapAddress.city:string</code></h4>\n<blockquote>\n<ul>\n<li>City</li>\n</ul>\n</blockquote>\n<h4 id=\"snapaddressstatestring\"><code>snapAddress.state:string</code></h4>\n<blockquote>\n<ul>\n<li>State</li>\n</ul>\n</blockquote>\n<h4 id=\"snapaddresscountrystring\"><code>snapAddress.country:string</code></h4>\n<blockquote>\n<ul>\n<li>Country</li>\n</ul>\n</blockquote>\n<h4 id=\"snapaddresspostalcodestring\"><code>snapAddress.postalCode:string</code></h4>\n<blockquote>\n<ul>\n<li>Postal code</li>\n</ul>\n</blockquote>\n</blockquote>\n</blockquote>\n<h4 id=\"agreementinformationagreementdetailsstring\"><code>agreementInformation.agreementDetails:string</code></h4>\n<blockquote>\n<ul>\n<li>Agreement information using HTML format</li>\n</ul>\n</blockquote>\n</blockquote>\n","urlObject":{"path":["platform","v1","application","{{applicationId}}","agreement"],"host":["{{baseUrl}}"],"query":[{"key":"renderType","value":"html"},{"key":"document","value":"agreement"}],"variable":[]}},"response":[{"id":"ce6897da-1281-423e-9640-0eea632d1e47","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Content-Type","value":"application/json"},{"key":"Request-Id","value":"123"}],"url":{"raw":"{{baseUrl}}/platform/v1/application/{{applicationId}}/agreement?renderType=html&document=agreement","host":["{{baseUrl}}"],"path":["platform","v1","application","{{applicationId}}","agreement"],"query":[{"key":"renderType","value":"html"},{"key":"document","value":"agreement"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"136"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 16 Jul 2020 17:02:21 GMT"},{"key":"x-amzn-RequestId","value":"7bdbe015-ee4e-47a5-a8c5-70f56a2cde04"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"Pxo0aFo-PHcFy6A="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f10881c-f4d45cc21e4bc05a15184b31"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 0a72bb7be10458e1aefa37a097f21894.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"Zcwg0uNr6gJ8ilLNW9-r5krSpR6T7Z-LLnNpLYvub6tAYp-Dx30msw=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"status\": 404,\n    \"error\": [\n        {\n            \"code\": \"application_invalid\",\n            \"type\": \"invalid_request_error\",\n            \"message\": \"Application not found\"\n        }\n    ]\n}"},{"id":"c21a2653-d1f2-407c-954f-c1f10239a473","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Content-Type","value":"application/json"},{"key":"Request-Id","value":"123"}],"url":{"raw":"{{baseUrl}}/platform/v1/application/{{applicationId}}/agreement?renderType=html&document=agreement","host":["{{baseUrl}}"],"path":["platform","v1","application","{{applicationId}}","agreement"],"query":[{"key":"renderType","value":"html"},{"key":"document","value":"agreement"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1825083"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:24:43 GMT"},{"key":"x-amzn-RequestId","value":"40b52282-2a30-4df6-8cdf-82aa447ca6b3"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P02OxEfnPHcF9yw="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d0c4-8b923ff4b1bf11f48fb3b3b8"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"OcTSGzIIqa3esIfeYqbdx2iywfRfpBgLnbSAPl3aJcuDg_Vl84kX2A=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"agreementInformation\": {\n            \"applicationId\": \"{{applicationId}}\",\n            \"customerInformation\": {\n                \"dobDate\": \"1977-07-07\",\n                \"customerId\": \"000007777\",\n                \"customerIdType\": \"SSN4\",\n                \"mobilePhone\": \"1000000019\",\n                \"mobilePhoneCountry\": \"US\",\n                \"email\": \"test@test.com\",\n                \"firstName\": \"John\",\n                \"lastName\": \"Smith\",\n                \"billingAddress\": {\n                    \"streetAddress\": \"123mainst\",\n                    \"city\": \"Saltlakecity\",\n                    \"state\": \"UT\",\n                    \"country\": \"US\",\n                    \"postalCode\": \"84001\"\n                }\n            },\n            \"snapFinanceInformation\": {\n                \"businessName\": \"Snap RTO LLC\",\n                \"snapAddress\": {\n                    \"streetAddress\": \"Any street in town\",\n                    \"city\": \"Salt Lake City\",\n                    \"state\": \"UT\",\n                    \"country\": \"US\",\n                    \"postalCode\": \"84126\"\n                },\n                \"email\": \"test@test.com\",\n                \"phoneNumber\": \"1000000007\",\n                \"phoneNumberCode\": \"US\"\n            },\n            \"agreementDetails\": \"<!DOCTYPE html>\\n<html>\\n\\t<head>\\n\\t\\t<meta charset=\\\"utf-8\\\">\\n\\t\\t<style type=\\\"text/css\\\">\\n\\t\\t\\tbody {background-color:lightgray; text-align:center;}\\n\\t\\t\\t.qoppa_pageborder {fill:white;}\\n\\t\\t\\t#qoppa_document {padding:5px; margin:auto;}\\n\\t\\t</style>\\n\\t</head>\\n\\t<body>\\n<?xml version='1.0' encoding='UTF-8'?><svg id=\\\"qoppa_document\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" version=\\\"1.1\\\" xmlns=\\\"http://www.w3.org/2000/svg\\\" xmlns:xlink=\\\"http://www.w3.org/1999/xlink\\\"><!-- jPDFWeb v2019R1.03 - Demo Version --><style>title p { display: block; }</style><g id=\\\"qoppa_viewxform\\\" transform=\\\"matrix(1 0 0 1 0 0)\\\"><style type=\\\"text/css\\\">@font-face {font-family:f0-0;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f0-1;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f0-2;src:url(\\\"data:application/font-woff;charset=utf-8;base64,d09GRgABAAAAAAp4AAoAAAAADawAAQABAAAAAAAAAAAAAAAAAAAAAAAAAABPUy8yAAAA9AAAADcAAABWWd9ZMmNtYXAAAAEsAAAAbAAAAIwCiwM0Z2x5ZgAAAZgAAAdLAAAJ6ArdyapoZWFkAAAI5AAAADEAAAA2GI9khmhoZWEAAAkYAAAAIAAAACQGNwJvaG10eAAACTgAAABeAAAAgDkXBShsb2NhAAAJmAAAAEIAAABCI1gg9G1heHAAAAncAAAAGAAAACAAIwA9bmFtZQAACfQAAAB3AAAA1A1JKK1wb3N0AAAKbAAAAAwAAAAgAAMAAHicY2Bk8mKcwMDKwMDUxbSbARlwMeogc/8DATI/MCDAkUEBCG8y3fyvxxDFdJPhEkwOAMlSDLoAeJxjYGBgZGAGYgYGHgYWhgYgLcMgABThYVBg0GewYnBj8GcIZAhmSGRIZkhjyGQoZ6j8/x+oSoFBFyjriiSbypDBkAOS/f/4//X/Z/8f/r/7/67/O/+v+b/6/6r/K/8v/78MbA9OAAAj1iOqeJxtVktsG9cVnXuHpChTEr/DjyRSHI44/IlUpeGQkvgTbepPkZJlUTQlWVLNWq2h2rHrohsv4iJo4P6SOqmRxIukDYqiWRTtJmgBN0CCBu1CRhZd1E5bdFOgdtuVG7SAAY16Z0gmClAOMPPmzX33nnfueUdigPEzf4QEjDIswwDHy5BQnsJovc7QK9Og+3tMU/2W5gT5vSb91Hnm+DE48VCd5+wS+9HcR27829EgRWNrDRroWxfD2GWJs9LKRrMJP242lQ9a66sUeInWm7SancuK68p5+K5yA3519AQP1/+0/nSdgih+heIlGnZ/Gm8VrCgpN2FF+cUOHtb+sq7cV0OpfuL4E/wzPmTMzBBFO11Ol6HL0CWG6EqntDHNSal0Kk0z8P07W9usbnfv7t3tbYT6xtuXTxcRSzPPXcvnAUslfIjN5i/f2bmA7MUv/fT1y5fLUC7f+db8Aq6svvjCwgKj1Rw9/j0+wUfMIDN5oqb61ArTi6A+qahLpA8G+jDeAhBKq1EqmpSK5m5jk0WfL+Hz+Ya80aAoJKKR9A8IIjQ2X9uanWMxm7k96HSa3S63yxUIBPiwkwPIZvCRbn//JxdmZkdcVktP0eLiBtzdp/Bi890fXrq0DDMzr3/93DnWoDeaTaf0M91Wa38glz17ZW1N63P8+N+4T5yN0QuBEsQ2+vZOQoE20LSzjbq9m/Q4BcB/DInEcm58nGUnJ4vNtbN6Q21j58ZGravRVSisnU4m2e7trYWyLCMuLlz9yuKCEZ7N8Ty43cW009nriMZuXB/7AkxMPW/cCooIPt9M2eOxcpHIxs7YGMjyV1WOReqrHh1MjMmQrlQqCVAXp3IpnCBZ1rikS1YnA7QRvdoL9XK0+i5zxenaQSIBaDDYt7r1OhhNJKbOjcQwl6vFQyEv+PlMjueNoIv4+WhUFNE7OLoXDML1XZ5HiEaXngwT82arxRK22TASmykHg106o7FbjLuc4HInL/ZRPb3VIosODrNZjePg8SfwT7QxfItjFa8GXsV6UqKaIOB7vT6fND88jEP+hsz7DRuWqUztQNXk1OTzSxNpC+xJA/2AqfTGcjbLQnB4wrRNJMLs3IsHy2UdRCKrLW2Kx0+JNydjZAKfVTarIpXG26UFQ7u0yim8g+HwdCESBoMhFpsfDQSs5/vzhfWtuXkdCe3WfLWCIBcjEcRYLDdfH4l7vWOmRljEfOHefqWi1+VzP6f9GqlamjQ1cEJTnMQJdHIFWZLFjnqiRrPZ1s85oNmsVyokigtWj9uGt1hA6O2LT5WUPHxQWuXjCT2yekbj8gzd/kHn3UVKsKbanFHiTstpeM8nhqS1xCjUYdA7nhdFqOOhcszbbQAj8fPKj2Az7vPRVteVv1ImVHMy9zRPU32LgKoJz9Tph4fNLx49I0vr1G7HMZJVogg8PErSfJFhCLKNiWrzXAfVCXSpdtdpmGwNXdZidUAU87IgWAbEYHExHCK8dkc6z/vrDk6a9fpIpQthpxPA7YlEPG7A+Mhp5TtQj/F+xFAorbwPF8PeQWRHR/PKI8JR0rixadxwn+dGaHPzylAonKvSCagD9S4fVLkxLERUJ4kn1pU3YSXj84rBivIHbdPI8HT2uinn5zxVOOGpXOdsqZ7qvZHNqN555WqhAJjJ3FwUxXB4aWVYgHAIbexS+ca3z5yBublvXl1eLmEqtbGblNlsZrmRkluaLR1PooHqOZjhzi7GTxg5iUgduxwtfmUi9lUuGJzYzuVZmMo8N8LzzvrH84EAHYvZJf8Q+P1oKAVIbKXS7YNqRQc2u1fBB5O6YrFSkyRgC/nyYjbTPi+T8LhTWy/I7aKqr0jqzmVJc/DO0aVOwuO6i+dj1zJTmM9dSAeDzpWPV6gkDPnLM8FhCAR+p3hJd7pK9eB2qQQuZ6A0qctkF8v5AguSVKsUiy1tTdOtQbW5k73r/AlRdfMyN9Af8zg4u89iMXMJj4caV4263QBGo2lV9TI2FksrD7W+ATNEnvOA8pGv25NtErs6Qjhh8F3/z+DjSWmvkkxa6jreH40KAqLb4/za3CySo+3WJib6NrqDQXlEGEb9VGY6GwrDC9lwGHm+2pOwO/r6Iv6eXt2gb6i2Go1AKFzvzbvdCA7HWNRitph5P+GzHv8XevG+6hF2zRscbQgaKNWVNK/4Wb1u7uNOdRtNPY4+s308IMD0NN5/t6S8HzxlQgBgqyw90OOpwmLpVotL2vvfiQfNI9RuqXnpwH7a0bT1DXS6StZ0yliv9ofDU3uRKKJB+XWSrN4w0H8TBo6eVUIeD7CSVIFNytlLiR9TTmJ3ACVWYC+//Grjt2c/pFW78NZnHqEjIT2glx4tbgAo1AQCu3P9SmP/G7W3N/e/vPUWrbkEbyjX4KWjZ/CScq2z1nKcgH+1cNO6NtZRaP/TUiAwdnjl/CNOGC5ZTD193b09Jotot5u4D3fuoOHoN7lYDIFl2TUdIthtQxNUaOt/bprEGQB4nGNgZGBgAOKDhy+vj+e3+crAzfwCKMJw21zgLIL+r8fMyHQTqI6DgQkkCgBlUwuTAAAAeJxjYGRgYLr5X48hitmRgeH/fWZGBqAIClAAAHbABKt4nGNggABGXyAWA9MKQDoKzAbSTLMZ/JmSGQKYuRj0QRjI12XSYVBj/MKgDqTVgWo4gLQzwz0IZnZkcATyXYBYGUqrAc10AKqXB6oVBPKdgGxepksMLEBaAABlFhBuAAAAAAAAAAAAAAAAAA4AGgAoADoAUgBoAKIBAgFUAbQB8AIsAloChAKYAqQC6AMSA0oDiAPGA+4EPgRsBJYEqgTIBPQAAHicY2BkYGBQYLBhYGIAAUYGNAAACboAYXicbco9C4IAEMbxv6/Z6tTo4BhRX8ChFkcnB7ewMEE0VIK+vQ94m3Lc8bvnDjhQ4eH4RyBWr3bk2OwSkZo9pWezL2fmgBOFOVT+4cHAlz8jLY32mZw3HT/NWVnNk7t+Ol47l21SyiOTtoGehBsXrqrN5wJrcRoTAHicY2BmwAsAAH0ABA==\\\");}</style><svg id=\\\"qoppa_page_p0\\\" class=\\\"qoppa_page\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\"><rect class=\\\"qoppa_pageborder\\\" x=\\\"0.5pt\\\" y=\\\"0.5pt\\\" width=\\\"611pt\\\" height=\\\"791pt\\\" fill=\\\"none\\\" /><svg class=\\\"qoppa_pagecontents\\\" x=\\\"0pt\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" viewBox=\\\"0 0 612 792\\\" ><g class=\\\"qoppa_contentstream\\\" transform=\\\"matrix(1 0 0 -1 0 792)\\\" fill=\\\"black\\\" stroke=\\\"black\\\" stroke-width=\\\"1\\\" stroke-linecap=\\\"butt\\\" stroke-linejoin=\\\"miter\\\" stroke-miterlimit=\\\"10\\\"><clipPath id=\\\"clip0-1\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><g clip-path=\\\"url(#clip0-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:8.25pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 213.8098 759.5594)\\\" x=\\\"0 7.942 15.279 23.221 29.942 37.279 43.395 47.058 54.395 62.337 70.279 78.221 86.163 93.5 100.837 108.174 111.1 118.437 126.995 134.937 142.274 149.611 158.774 166.111 174.053\\\">RENTAL-PURCHASE AGREEMENT</text></g><clipPath id=\\\"clip0-2\\\"><path d=\\\"M 35 701 L 285 701 L 285 758 L 35 758 L 35 701 z \\\"/></clipPath><g clip-path=\\\"url(#clip0-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 745.5311)\\\" x=\\\"0 5.56 11.12 16.68 21.68 27.24 29.9 37.12 42.68 51.01 56.57 62.13 67.69 72.69 75.35 78.68 84.24 89.8 94.8 99.8 105.36 108.69 112.02 114.8 117.46 124.13 131.35 138.02 144.69 147.35 154.57 160.68 168.46 171.12 176.68 182.24\\\">Lease Company (Lessor): SNAP RTO LLC</text></g><g clip-path=\\\"url(#clip0-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 732.2127)\\\" x=\\\"0 6.67 9.45 17.23 20.01 22.67 29.34 34.9 39.9 42.56 48.12 53.68 59.24 64.8\\\">P.O. Box 26561</text></g><g clip-path=\\\"url(#clip0-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 718.8943)\\\" x=\\\"0 6.67 12.23 14.51 17.29 19.95 25.51 31.07 36.07 41.63 44.29 51.51 53.79 56.57 61.57 64.35 67.01 74.23 80.34 83 88.56 94.12 99.68 105.24\\\">Salt Lake City, UT 84126</text></g><g clip-path=\\\"url(#clip0-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 705.576)\\\" x=\\\"0 6.67 12.23 17.79 23.35 28.91 31.69 34.35 37.68 43.24 48.8 54.36 57.69 60.35 65.91 71.47 77.03 80.36 85.92 91.48 97.04\\\">Phone: (877) 557-3769</text></g><clipPath id=\\\"clip0-3\\\"><path d=\\\"M 284 701 L 574 701 L 574 758 L 284 758 L 284 701 z \\\"/></clipPath><g clip-path=\\\"url(#clip0-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.225 745.5311)\\\" x=\\\"0 5.56 11.12 16.12 21.12 26.68 32.24 35.02 37.68 42.68 48.24 53.8 59.36 62.02 64.68 71.35 79.68 81.96 84.74\\\">Lessee: John  Smith</text></g><g clip-path=\\\"url(#clip0-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 290.225 732.2127)\\\" x=\\\"0 5.56 11.12 16.68 25.01 30.57 32.85 38.41 43.41\\\">123mainst</text></g><g clip-path=\\\"url(#clip0-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.225 718.8943)\\\" x=\\\"0 6.67 12.23 14.51 17.29 19.57 25.13 30.13 35.69 40.69 42.97 45.75 50.75 53.53 56.19 63.41 69.52 72.18 77.74 83.3 88.86 94.42\\\">Saltlakecity, UT 84001</text></g><g clip-path=\\\"url(#clip0-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 290.225 705.576)\\\" x=\\\"0 2.28 7.84 13.4 15.68 21.24 26.8 32.36 37.36 47.51 53.07 58.07 66.4 71.96 74.74 79.74 85.3\\\">jbolanos@acme.com</text></g><clipPath id=\\\"clip0-4\\\"><path d=\\\"M 35 674 L 285 674 L 285 702 L 35 702 L 35 674 z \\\"/></clipPath><g clip-path=\\\"url(#clip0-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 689.7576)\\\" x=\\\"0 6.67 12.23 17.79 20.07 22.35 27.35 32.91 35.69 37.97 43.53 49.09 51.75 54.53 61.75 64.53 67.19 72.75 78.31 83.87 89.43 94.99 100.55 106.11 111.67 117.23 126.67 133.89\\\">Application ID: 200717000WUT</text></g><clipPath id=\\\"clip0-5\\\"><path d=\\\"M 284 674 L 428 674 L 428 702 L 284 702 L 284 674 z \\\"/></clipPath><g clip-path=\\\"url(#clip0-5)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.225 689.7576)\\\" x=\\\"0 5.56 11.12 16.68 21.68 27.24 29.9 37.12 42.68 45.46 51.02 53.8 56.46 62.02 67.58 70.36 75.92 81.48 84.26 89.82 95.38 100.94\\\">Lease Date: 07/17/2020</text></g><g clip-path=\\\"url(#clip0-5)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.225 678.4393)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 27.68 34.35\\\">10:22 AM</text></g><clipPath id=\\\"clip0-6\\\"><path d=\\\"M 427 674 L 574 674 L 574 702 L 427 702 L 427 674 z \\\"/></clipPath><g clip-path=\\\"url(#clip0-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 433.375 689.7576)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79 40.45 47.67 53.23 58.79 64.35 66.63 69.41 71.69 77.25 82.81 85.59 88.25 95.47 101.03\\\">Property Condition: New</text></g><clipPath id=\\\"clip0-7\\\"><path d=\\\"M 35 631 L 574 631 L 574 675 L 35 675 L 35 631 z \\\"/></clipPath><g clip-path=\\\"url(#clip0-7)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 662.6209)\\\" x=\\\"0 7.22 12.78 17.78 22.78 26.11 28.39 33.95 36.73 39.01 44.57 50.13 52.79 58.35 61.13 63.79 69.35 74.91 80.47 86.03 91.03 93.69 99.25 104.81 107.09 112.65 118.21 120.87 126.43 131.99 135.32 140.32 145.88 151.44 156.44 162 167.56 170.22 173 176.33 181.89 190.22 192.88 195.66 201.22 206.78 209.44 216.66 222.22 225 230.56 232.84 235.12 240.68 244.01 246.67 250 252.78 258.34 263.9 266.56 269.89 276.56 279.89 285.45 291.01 296.57 299.9 302.68 307.68 311.01 314.34 317 319.78 325.34 328.67 331.45 337.01 342.57 345.9 348.56 354.12 359.12 364.68 366.96 372.52 374.8 380.36 385.92 391.48 394.14 396.42 401.98 404.64 411.31 416.31 421.87 424.15 429.71 431.99 434.77 437.43 444.1\\\">Description of goods being purchased from th* D E M O *(the “Property”) further explained in Exhibit A:</text></g><g clip-path=\\\"url(#clip0-7)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 649.3025)\\\" x=\\\"0 6.67 12.23 15.56 20.56 22.84 27.84 33.4 38.4 41.06 46.62 52.18 57.74 60.4 66.51 72.07 77.63 82.63 85.41 88.07 96.4 101.96 104.74 107.52 110.85 116.41 121.41\\\">Services and Fees, Mattress</text></g><clipPath id=\\\"clip0-8\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.025 757.4998 L 285.075 757.4998 L 285.075 756.9998 L 35.025 756.9998 L 35.025 757.4998 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.025 756.9998 L 35.525 756.9998 L 35.525 701.7264 L 35.025 701.7264 L 35.025 756.9998 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 285.075 757.4998 L 573.375 757.4998 L 573.375 756.9998 L 285.075 756.9998 L 285.075 757.4998 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.875 756.9998 L 573.375 756.9998 L 573.375 701.7264 L 572.875 701.7264 L 572.875 756.9998 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 284.575 756.9998 L 285.075 756.9998 L 285.075 701.7264 L 284.575 701.7264 L 284.575 756.9998 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.025 701.7264 L 285.075 701.7264 L 285.075 701.2264 L 35.025 701.2264 L 35.025 701.7264 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.025 701.2264 L 35.525 701.2264 L 35.525 674.5897 L 35.025 674.5897 L 35.025 701.2264 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 285.075 701.7264 L 428.225 701.7264 L 428.225 701.2264 L 285.075 701.2264 L 285.075 701.7264 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 284.575 701.2264 L 285.075 701.2264 L 285.075 674.5897 L 284.575 674.5897 L 284.575 701.2264 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 428.225 701.7264 L 573.375 701.7264 L 573.375 701.2264 L 428.225 701.2264 L 428.225 701.7264 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.875 701.2264 L 573.375 701.2264 L 573.375 674.5897 L 572.875 674.5897 L 572.875 701.2264 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 427.725 701.2264 L 428.225 701.2264 L 428.225 674.5897 L 427.725 674.5897 L 427.725 701.2264 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.025 674.5897 L 573.375 674.5897 L 573.375 674.0897 L 35.025 674.0897 L 35.025 674.5897 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.025 632.1346 L 573.375 632.1346 L 573.375 631.6346 L 35.025 631.6346 L 35.025 632.1346 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.875 674.0897 L 573.375 674.0897 L 573.375 632.1346 L 572.875 632.1346 L 572.875 674.0897 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.025 674.0897 L 35.525 674.0897 L 35.525 632.1346 L 35.025 632.1346 L 35.025 674.0897 z \\\"/><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 620.1658)\\\" x=\\\"0 6.11 13.89 21.11 29.44 36.11 42.22 45 52.78\\\">FORMATION</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 93.0951 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 97.0295 620.1658)\\\" x=\\\"0 7.78\\\">OF</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 110.9162 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 114.8506 620.1658)\\\" x=\\\"0 6.67 14.45 21.67 28.34 35.01 43.34 50.01 57.23 63.34\\\">AGREEMENT.</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 180.9688 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 184.9032 620.1658)\\\" x=\\\"0 6.67\\\">By</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 196.5731 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 200.5075 620.1658)\\\" x=\\\"0 5 7.28 12.84 18.4 20.68 26.24\\\">signing</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 232.3141 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 236.2485 620.1658)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 251.8686 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 255.803 620.1658)\\\" x=\\\"0 7.22 12.78 18.34 21.12 26.68 28.96 32.29 38.96 44.52 47.85 52.85 58.41 63.97 68.97\\\">Rental-Purchase</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 330.344 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 334.2784 620.1658)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement,</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 385.9727 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 389.9071 620.1658)\\\" x=\\\"0 5.56 7.84 12.84\\\">also</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 408.3105 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 412.2448 620.1658)\\\" x=\\\"0 5 10.56 16.12 23.34\\\">known</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 441.1511 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 445.0855 620.1658)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 455.647 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 459.5814 620.1658)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 465.1429 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 469.0773 620.1658)\\\" x=\\\"0 5.56 11.12 16.68 21.68\\\">Lease</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 496.3234 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 500.2578 620.1658)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.1738 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.1082 620.1658)\\\" x=\\\"0 7.22 9.5 12.28\\\">with</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 608.8475)\\\" x=\\\"0 7.78 13.34 16.12 18.4 23.96\\\">Option</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 62.6215 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 66.5575 608.8475)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 74.8974 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 78.8334 608.8475)\\\" x=\\\"0 6.67 12.23 15.56 20.56 26.12 31.68 36.68\\\">Purchase</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 121.0795 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 125.0155 608.8475)\\\" x=\\\"0 3.33 6.11 11.67 13.95\\\">(this</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 143.9657 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 147.9017 608.8475)\\\" x=\\\"0 3.33 10 15.56 18.89 24.45 30.01 38.34 43.9 49.46 52.24 55.57 58.9\\\">“Agreement”),</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.5863 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 213.5223 608.8475)\\\" x=\\\"0 5 10.56 16.12\\\">you,</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 232.4237 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 236.3597 608.8475)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 250.2611 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 254.1971 608.8475)\\\" x=\\\"0 7.22 12.78 17.78 20.56 26.12 34.45 40.01 43.34 46.67 51.67\\\">Customer(s)</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 309.202 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 313.138 608.8475)\\\" x=\\\"0 3.33 6.66 11.66 17.22 22.78\\\">(“you”</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 339.2513 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 343.1873 608.8475)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.8719 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 363.8079 608.8475)\\\" x=\\\"0 3.33 8.33 13.89 19.45 22.78 26.11\\\">“your”)</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.2513 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 397.1873 608.8475)\\\" x=\\\"0 5 10.56 16.12 21.68 26.68\\\">choose</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 429.4334 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 433.3695 608.8475)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 441.7093 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 445.6453 608.8475)\\\" x=\\\"0 2.28 7.84 13.4 18.4\\\">lease</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 469.6102 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 473.5462 608.8475)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 487.4476 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 491.3836 608.8475)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.1766 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 533.1126 608.8475)\\\" x=\\\"0 2.78 6.11 11.67\\\">from</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.1126 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0486 608.8475)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 597.5291)\\\" x=\\\"0 5.56 11.12 16.68 21.68\\\">Lease</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.3461 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 63.7235 597.5291)\\\" x=\\\"0 7.22 12.78 21.11 26.67 32.23 37.79\\\">Company</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 106.5213 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 109.8987 597.5291)\\\" x=\\\"0 3.33 6.66 13.88 19.44 22.22\\\">(“we,”</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 135.4505 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 138.8278 597.5291)\\\" x=\\\"0 3.33 8.89 13.89 16.67\\\">“us,”</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 158.8278 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 162.2052 597.5291)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 178.8898 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 182.2672 597.5291)\\\" x=\\\"0 3.33 8.89 14.45 17.78 21.11\\\">“our”)</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 206.7105 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.0879 597.5291)\\\" x=\\\"0 5.56 10.56 15.56 21.12 24.45 30.01 32.29 37.85\\\">according</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 253.5059 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 256.8832 597.5291)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 265.2231 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 268.6005 597.5291)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 282.5018 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 285.8792 597.5291)\\\" x=\\\"0 2.78 8.34 11.67 20\\\">terms</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 310.8792 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 314.2566 597.5291)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 322.5964 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 325.9738 597.5291)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 341.5939 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 344.9713 597.5291)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement.</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 396.6656 597.5291)\\\" x=\\\"0 3.3774\\\">  </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 403.4204 597.5291)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 420.6518 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 424.0292 597.5291)\\\" x=\\\"0 2.78 8.34 11.67\\\">term</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 444.0292 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 447.4066 597.5291)\\\" x=\\\"0 3.33 10.55 16.11 18.89 24.45 26.73 29.01 34.57 37.9\\\">“Retailer”</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 488.6419 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 492.0193 597.5291)\\\" x=\\\"0 8.33 13.89 19.45 25.01 30.01 36.68 42.24 47.8 52.8 57.8 61.13 67.8 73.36\\\">meansEbaycrYou</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 586.2107)\\\" x=\\\"0 5.56 11.12 16.12 21.68 24.34 27.12 32.68 38.24 40.9 44.23 46.51 52.07 57.63 60.41 63.19 65.85 71.41 76.97 79.75 82.41 87.97 93.53 96.31 98.97 101.75 107.31 112.87 115.53 121.09 126.65 128.93 131.21 136.77 142.33 145.11 147.39 152.95 158.51 161.29 163.95 166.73 172.29 174.95 180.51 185.51 191.07 196.63 198.91 202.24 207.8 210.46 216.02 223.24 228.8 234.36 237.69 242.69 248.25 250.53 256.09 258.75 264.31 267.09 269.75 272.53 278.09 283.65 286.31 292.98 296.31 301.87 307.43 312.99 316.32 319.1 324.1 326.76 332.32 337.32 339.98 345.54 351.1 356.1 361.1 364.43 366.71 372.27 377.83 383.39 386.05 391.61 397.17 400.5 406.06 408.34 413.9\\\">have the right, but not the obligation, to acquire ownership of the Property as described herein.</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 572.8924)\\\" x=\\\"0 6.67 13.89 21.67 28.89 31.67 38.34 41.12 47.23 50.01 57.79\\\">ACQUISITION</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 98.1049 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 101.7037 572.8924)\\\" x=\\\"0 7.78\\\">OF</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 115.5905 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 119.1893 572.8924)\\\" x=\\\"0 6.67 13.89 21.67 28.34 35.01 42.23 48.34\\\">PROPERTY</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 174.1991 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 177.798 572.8924)\\\" x=\\\"0 6.67\\\">AS</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 191.1378 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 194.7367 572.8924)\\\" x=\\\"0 6.67 14.45 21.12 28.34 34.45\\\">AGENT;</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.9632 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 235.5621 572.8924)\\\" x=\\\"0 7.22 13.89\\\">NEW</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 258.8922 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 262.4911 572.8924)\\\" x=\\\"0 7.22 15 22.22 29.44 32.22 38.33 41.11 48.89 56.11\\\">CONDITION;</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 321.3778 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 324.9766 572.8924)\\\" x=\\\"0 7.22 13.89 20.56 27.78 35 37.78 44.45 50.56 53.34 61.12 68.34\\\">DESCRIPTION.</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 396.0948 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 399.6937 572.8924)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 417.4866 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 421.0855 572.8924)\\\" x=\\\"0 5.56 8.89\\\">are</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 435.5386 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 439.1375 572.8924)\\\" x=\\\"0 5.56 11.12 13.9 19.46 21.74 27.3 29.58 35.14\\\">obtaining</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 479.8455 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 483.4444 572.8924)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 497.3458 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 500.9446 572.8924)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 538.7376 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 542.3365 572.8924)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.898 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 556.4968 572.8924)\\\" x=\\\"0 5.56 11.12\\\">our</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 561.574)\\\" x=\\\"0 5.56 11.12 16.68 22.24 25.02\\\">agent.</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.9027 561.574)\\\" x=\\\"0 4.0087\\\">  </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 68.9202 561.574)\\\" x=\\\"0 9.44\\\">We</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 83.9202 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 87.9288 561.574)\\\" x=\\\"0 5.56 12.78\\\">own</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 106.2736 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 110.2823 561.574)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 124.1837 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 128.1924 561.574)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 165.9853 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 169.994 561.574)\\\" x=\\\"0 5.56 11.12 13.4 18.96 23.96\\\">unless</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 198.9589 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 202.9676 561.574)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 219.6522 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 223.6609 561.574)\\\" x=\\\"0 5.56 11.12 13.9 16.18\\\">until</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 242.1228 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 246.1315 561.574)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.2545 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 266.2632 561.574)\\\" x=\\\"0 8.33 13.89 18.89\\\">make</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.7163 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 294.7251 561.574)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.6264 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 312.6351 561.574)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57 38.35\\\">payments</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.9896 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 359.9983 561.574)\\\" x=\\\"0 5.56 11.12 16.12 21.68 26.68 31.68 37.24 40.57\\\">necessary</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 405.5745 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 409.5832 561.574)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 417.923 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 421.9318 561.574)\\\" x=\\\"0 5.56 10.56 16.12 21.68 23.96 27.29\\\">acquire</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.7882 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 458.7969 561.574)\\\" x=\\\"0 5.56 12.78 18.34 23.9 27.23 32.23 37.79 40.07 45.63\\\">ownership.</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 507.2149 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 511.2236 561.574)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.0165 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 533.0253 561.574)\\\" x=\\\"0 5.56 11.12 14.45 20.01\\\">agree</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 558.6014 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 562.6101 561.574)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 550.2557)\\\" x=\\\"0 5.56 11.12 13.9 19.46 21.74 27.3 29.96 32.74 36.07 41.63 49.96 52.62 55.4 60.96 66.52 69.18 76.4 81.96 84.74 90.3 92.58 94.86 100.42 103.75 106.41 111.97 117.53 119.81 124.81 127.47 133.03 138.59 145.81 148.47 154.03 159.59 165.15 170.71 175.71 178.37 181.15 186.71 190.04 192.7 198.26 203.82 207.15 212.15 217.71 223.27 228.83 231.11 233.89 236.55 239.33 244.89 253.22 255.5 257.78 262.78 265.44 271 274.33 276.99 282.55 288.11 293.67 298.67 304.23 309.79 315.35 317.63 323.19 325.85 331.41 336.97 340.3 345.86 351.42 356.42 361.98 366.98\\\">obtain from the Retailer only new goods for personal, family or household purposes.</text></g><clipPath id=\\\"clip0-9\\\"><path d=\\\"M 35 529 L 574 529 L 574 547 L 35 547 L 35 529 z \\\"/></clipPath><path clip-path=\\\"url(#clip0-9)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 35.3 546.1561 L 573.1 546.1561 L 573.1 529.8377 L 35.3 529.8377 L 35.3 546.1561 z \\\"/><path clip-path=\\\"url(#clip0-9)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 40.7 543.1561 L 555.4 543.1561 L 555.4 531.8377 L 40.7 531.8377 L 40.7 543.1561 z \\\"/><path clip-path=\\\"url(#clip0-9)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 96.7096 543.1561 L 499.7096 543.1561 L 499.7096 531.1561 L 96.7096 531.1561 L 96.7096 543.1561 z \\\"/><g clip-path=\\\"url(#clip0-9)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 96.7096 533.9373)\\\" x=\\\"0 2.78 11.11 17.78 25.56 32.78 38.89 45.56 52.78 58.89 61.55 68.77 75.44 82.66 88.77 95.44 101 104.33 111 118.22 125.44 132.66 139.88 146.55 153.22 159.89 162.55 169.77 172.55 179.22 186.44 192 199.78 206.45 213.67 220.89 227.56 234.23 236.89 239.82 242.48 245.26 252.48 259.7 265.26 272.48 279.7 282.48 289.7 297.48 300.14 307.36 315.14 321.81 327.92 330.58 337.25 344.47 351.69 354.35 361.02 367.69 374.36 382.69 389.36 396.58\\\">IMPORTANT RENTAL-PURCHASE DISCLOSURES – INCLUDING COST AND PAYMENT</text></g><clipPath id=\\\"clip0-10\\\"><path d=\\\"M 35 81 L 574 81 L 574 530 L 35 530 L 35 81 z \\\"/></clipPath><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 517.619)\\\" x=\\\"0 6.11 13.33 16.11\\\">THIS</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 63.4783 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 68.7771 517.619)\\\" x=\\\"0 6.11 13.33 20 27.22 33.89 40.56 47.78 53.89 56.67 64.45\\\">TRANSACTION</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 140.447 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 145.7457 517.619)\\\" x=\\\"0 2.78\\\">IS</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 155.194 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 160.4927 517.619)\\\" x=\\\"0\\\">A</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 167.1627 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 172.4614 517.619)\\\" x=\\\"0 5.56 12.23 18.9 25.57\\\">LEASE</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 204.7026 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.0014 517.619)\\\" x=\\\"0 6.67 14.45 21.67 28.34 35.01 43.34 50.01 57.23\\\">AGREEMENT</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 273.3412 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 278.64 517.619)\\\" x=\\\"0 9.44 12.22 18.33\\\">WITH</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 304.1868 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 309.4856 517.619)\\\" x=\\\"0 7.78 14.45 20.56 23.34 31.12\\\">OPTION</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 347.8206 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 353.1193 517.619)\\\" x=\\\"0 6.11\\\">TO</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 367.006 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 372.3048 517.619)\\\" x=\\\"0 6.67 13.89 21.11 28.33 35.55 42.22 48.89 55.56\\\">PURCHASE.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.6495 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 435.9483 517.619)\\\" x=\\\"0 6.67 14.45\\\">YOU</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 457.6182 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 462.9169 517.619)\\\" x=\\\"0 9.44 12.22 17.78\\\">WILL</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.2568 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 491.5555 517.619)\\\" x=\\\"0 7.22 15\\\">NOT</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.6639 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 517.9627 517.619)\\\" x=\\\"0 7.78 17.22\\\">OWN</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 542.4012 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 547.6999 517.619)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 506.3006)\\\" x=\\\"0 6.67 13.89 21.67 28.34 35.01 42.23 48.34\\\">PROPERTY</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 95.7098 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 100.6852 506.3006)\\\" x=\\\"0 7.22 14.44 20.55 23.33\\\">UNTIL</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 129.5768 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 134.5522 506.3006)\\\" x=\\\"0 6.67 14.45\\\">YOU</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 156.2221 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 161.1975 506.3006)\\\" x=\\\"0 7.22 13.89 20.56\\\">HAVE</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 188.429 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 193.4044 506.3006)\\\" x=\\\"0 6.67 13.34 16.12\\\">PAID</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 216.7442 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 221.7197 506.3006)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 241.7197 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 246.6951 506.3006)\\\" x=\\\"0 6.11 13.89 20 26.67\\\">TOTAL</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 278.9216 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 283.8971 506.3006)\\\" x=\\\"0 6.67 13.34 20.01 28.34 35.01 42.23 48.34\\\">PAYMENTS</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.9068 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 343.8822 506.3006)\\\" x=\\\"0 7.22 13.89 21.11 27.78 34.45 41.12 47.79 55.01\\\">NECESSARY</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 405.5668 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 410.5422 506.3006)\\\" x=\\\"0 6.11\\\">TO</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 424.4289 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 429.4044 506.3006)\\\" x=\\\"0 6.67 13.89 21.67 28.89 31.67 38.89\\\">ACQUIRE</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.9659 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 479.9413 506.3006)\\\" x=\\\"0 7.78 17.22 24.44 31.11 38.33 45 52.22 55\\\">OWNERSHIP</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 541.6112 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 546.5866 506.3006)\\\" x=\\\"0 6.67 13.89\\\">AND</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 494.9822)\\\" x=\\\"0 7.22 15 23.33 30 35.56\\\">COMPLY</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 82.9314 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 86.988 494.9822)\\\" x=\\\"0 9.44 12.22 18.33\\\">WITH</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 112.5348 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 116.5913 494.9822)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.5913 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 140.6478 494.9822)\\\" x=\\\"0 7.78 17.22 24.44 31.11 38.33 45 52.22 55\\\">OWNERSHIP</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 202.3178 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 206.3743 494.9822)\\\" x=\\\"0 6.11 12.78 20 28.33 35\\\">TERMS.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 244.1526 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 248.2091 494.9822)\\\" x=\\\"0 6.67 14.45\\\">YOU</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 269.879 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 273.9355 494.9822)\\\" x=\\\"0 6.67 13.89\\\">ARE</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 294.497 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 298.5535 494.9822)\\\" x=\\\"0 7.22 15\\\">NOT</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.6619 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 323.7184 494.9822)\\\" x=\\\"0 7.78 14.45 20.01 22.79 30.57 37.24 43.35 50.02\\\">OBLIGATED</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.9548 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 385.0113 494.9822)\\\" x=\\\"0 6.11\\\">TO</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 398.898 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 402.9545 494.9822)\\\" x=\\\"0 6.67 13.34\\\">PAY</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 422.9643 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 427.0208 494.9822)\\\" x=\\\"0\\\">A</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 433.6907 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 437.7472 494.9822)\\\" x=\\\"0 6.67 13.89\\\">SUM</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 459.9689 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 464.0254 494.9822)\\\" x=\\\"0 7.78 15 21.67 28.34 34.45 41.12\\\">GREATER</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.3652 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 516.4217 494.9822)\\\" x=\\\"0 6.11 13.33 20\\\">THAN</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 543.6434 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 547.6999 494.9822)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 483.6639)\\\" x=\\\"0 6.11 13.89 20 26.67 32.23 34.89 41.56 48.23 54.9 63.23 69.9 77.12 83.23 89.9 92.56 98.67 106.45 113.67 116.33 123 125.66 132.33 135.11 142.33 150.11 155.67 162.34 165 170.56 177.23 183.9 190.57 197.24 199.9 206.01 212.68 219.9 228.23\\\">TOTAL PAYMENTS FOR A SINGLE LEASE TERM.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 470.3455)\\\" x=\\\"0 7.22 12.78 17.78\\\">Cash</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 64.0447 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 67.2085 470.3455)\\\" x=\\\"0 6.67 10 12.28 17.28\\\">Price</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 90.0503 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 93.214 470.3455)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 101.5539 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 104.7176 470.3455)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 145.2889 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.4527 470.3455)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 165.6841 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 168.8478 470.3455)\\\" x=\\\"0 7.22 12.78 17.78\\\">Cash</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 192.1926 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 195.3563 470.3455)\\\" x=\\\"0 6.67 10 12.28 17.28\\\">Price</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 218.1981 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 221.3619 470.3455)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 229.7017 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 232.8655 470.3455)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 246.7668 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 249.9306 470.3455)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 287.7235 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 290.8873 470.3455)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 298.1676 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 301.3313 470.3455)\\\" x=\\\"0\\\">$</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 306.8928 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 310.0566 470.3455)\\\" x=\\\"0 5.56 8.34 13.9 19.46 25.02 27.8 33.36 38.92\\\">3,872.00,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.7607 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 354.9244 470.3455)\\\" x=\\\"0 7.22 12.78 15.06 20.06\\\">which</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.5494 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 383.7132 470.3455)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 390.9935 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 394.1572 470.3455)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 408.0586 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 411.2223 470.3455)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 444.5768 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 447.7406 470.3455)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 463.8636 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 467.0274 470.3455)\\\" x=\\\"0 7.22 12.78 18.34 20.62\\\">would</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 493.2139 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 496.3776 470.3455)\\\" x=\\\"0 5.56 11.12 16.12\\\">have</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 518.0622 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 521.226 470.3455)\\\" x=\\\"0 5.56 11.12 13.4\\\">paid</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 540.1908 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 543.3545 470.3455)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 548.4131 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 551.5769 470.3455)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 459.0271)\\\" x=\\\"0 5.56 11.12\\\">had</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 57.3846 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 60.336 459.0271)\\\" x=\\\"0 5.56 11.12 14.45 19.45 25.01 30.57 35.57 41.13\\\">purchased</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 107.0352 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 109.9866 459.0271)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 123.888 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 126.8394 459.0271)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 164.6324 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 167.5838 459.0271)\\\" x=\\\"0 2.78 6.11 11.67\\\">from</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 187.5838 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 190.5352 459.0271)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 204.4366 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 207.388 459.0271)\\\" x=\\\"0 7.22 12.78 15.56 21.12 23.4 25.68 31.24\\\">Retailer</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 241.9632 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 244.9147 459.0271)\\\" x=\\\"0 7.22 9.5 12.28\\\">with</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.7565 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 265.7079 459.0271)\\\" x=\\\"0 5 10.56 15.56\\\">cash</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 286.8309 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 289.7824 459.0271)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 300.9054 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 303.8568 459.0271)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 317.7582 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 320.7096 459.0271)\\\" x=\\\"0 5.56 11.12\\\">day</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 336.8327 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 339.7841 459.0271)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.1239 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 351.0754 459.0271)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 366.6955 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 369.6469 459.0271)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 421.3412 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 424.2927 459.0271)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 25.68 27.96 32.96\\\">inclusive</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 462.8181 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 465.7695 459.0271)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.1093 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 477.0607 459.0271)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 493.1838 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 496.1352 459.0271)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64\\\">applicable</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 541.3452 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 544.2966 459.0271)\\\" x=\\\"0 5 10.56 12.84 18.4\\\">sales</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 447.7088)\\\" x=\\\"0 5.56 8.89 11.55 17.11 22.11 27.67 30.33 33.11 38.67 43.67\\\">or use tax.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 434.3904)\\\" x=\\\"0 6.11 11.67 14.45 20.01\\\">Total</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 62.99 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 66.9187 434.3904)\\\" x=\\\"0 7.22 12.78 17.78\\\">Cost</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 87.4803 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 91.409 434.3904)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 99.7488 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 103.6775 434.3904)\\\" x=\\\"0 5.56 11.12 16.68 21.68 27.24\\\">Lease;</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 133.7019 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 137.6306 434.3904)\\\" x=\\\"0 6.67 12.23 15.56 17.84 23.4 28.96 31.24\\\">Periodic</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 173.8758 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 177.8045 434.3904)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46 44.46\\\">Payments;</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.0457 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 228.9744 434.3904)\\\" x=\\\"0 6.67 10 15.56 20.56 26.12 31.12 36.12 38.4 43.96\\\">Processing</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 278.5007 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 282.4295 434.3904)\\\" x=\\\"0 6.11 11.67 17.23\\\">Fee;</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.4392 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 306.3679 434.3904)\\\" x=\\\"0 2.78 8.34 10.62 13.4 15.68 21.24\\\">Initial</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.8884 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 333.8171 434.3904)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46\\\">Payment;</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 376.0584 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 379.9871 434.3904)\\\" x=\\\"0 7.22 12.78 17.78\\\">Cost</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 400.5486 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 404.4773 434.3904)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 412.8171 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 416.7459 434.3904)\\\" x=\\\"0 7.22 12.78 18.34 21.12 26.68 28.96\\\">Rental.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 448.489 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 452.4177 434.3904)\\\" x=\\\"0 7.22 12.78 15.06 20.62 25.62\\\">Unless</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 483.0427 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 486.9714 434.3904)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 503.0945 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 507.0232 434.3904)\\\" x=\\\"0 5.56 10.56 16.12 19.45 24.45 26.73 31.73\\\">exercise</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 544.3181 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 548.2468 434.3904)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 423.0721)\\\" x=\\\"0 5.56 11.12 16.68 20.01 27.23 32.79\\\">100-Day</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 78.4979 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.2541 423.0721)\\\" x=\\\"0 7.78 13.34 16.12 18.4 23.96\\\">Option</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 110.7756 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 113.5318 423.0721)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 122.4234 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 125.1797 423.0721)\\\" x=\\\"0 6.67 12.23 15.56 17.84\\\">Early</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 148.0215 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 150.7777 423.0721)\\\" x=\\\"0 6.67 12.23 17.23 20.56 28.34 33.9\\\">Buy-Out</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 187.4574 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 190.2136 423.0721)\\\" x=\\\"0 7.78 13.34 16.12 18.4 23.96\\\">Option</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 219.7351 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 222.4914 423.0721)\\\" x=\\\"0 5 10.56\\\">set</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 235.8312 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 238.5875 423.0721)\\\" x=\\\"0 2.78 8.34 11.67 14.45\\\">forth</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 258.5972 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 261.3535 423.0721)\\\" x=\\\"0 5.56 11.12 13.4 18.96 26.18\\\">below,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.3183 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 293.0746 423.0721)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 306.9759 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 309.7322 423.0721)\\\" x=\\\"0 3.33 9.44 15 17.78 23.34\\\">“Total</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.3523 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.1086 423.0721)\\\" x=\\\"0 7.22 12.78 17.78 20.56\\\">Cost”</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 362.0002 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 364.7564 423.0721)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 373.0962 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 375.8525 423.0721)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 389.7539 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 392.5101 423.0721)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.3031 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 433.0593 423.0721)\\\" x=\\\"0 5.56 11.12 16.68 22.24\\\">under</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 458.6355 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 461.3917 423.0721)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 477.0119 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 479.7681 423.0721)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 528.6841 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 531.4404 423.0721)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 545.5029 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 548.2591 423.0721)\\\" x=\\\"0 5.56\\\">be</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.3822 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 562.1384 423.0721)\\\" x=\\\"0\\\">$</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 411.7537)\\\" x=\\\"0 5.56 8.34 13.9 19.46 25.02 27.8 33.36 38.92\\\">3,965.32.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 82.4041 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 85.187 411.7537)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 102.4184 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 105.2013 411.7537)\\\" x=\\\"0 6.11 11.67 14.45 20.01\\\">Total</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 127.4913 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 130.2742 411.7537)\\\" x=\\\"0 7.22 12.78 17.78\\\">Cost</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 150.8357 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 153.6186 411.7537)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.8989 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 163.6817 411.7537)\\\" x=\\\"0 5.56 11.12 16.12 21.68\\\">based</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 190.9279 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 193.7107 411.7537)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 204.8338 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 207.6166 411.7537)\\\" x=\\\"0 5.56\\\">an</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 218.7397 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 221.5226 411.7537)\\\" x=\\\"0 2.78 8.34 10.62 13.4 15.68 21.24\\\">Initial</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.0431 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 247.8259 411.7537)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68\\\">Payment</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 287.2888 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 290.0717 411.7537)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 298.4115 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 301.1944 411.7537)\\\" x=\\\"0\\\">$</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 306.7559 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 309.5388 411.7537)\\\" x=\\\"0 5.56 8.34 13.9\\\">0.00</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.0017 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 331.7846 411.7537)\\\" x=\\\"0 5.56 11.12 16.12 21.68 27.24 29.52\\\">payable</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 366.8725 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 369.6554 411.7537)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.7784 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 383.5613 411.7537)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 397.4626 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 400.2455 411.7537)\\\" x=\\\"0 5.56 11.12 13.9\\\">date</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.7084 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 422.4913 411.7537)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.8311 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 433.614 411.7537)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 449.2341 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 452.017 411.7537)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 500.933 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 503.7159 411.7537)\\\" x=\\\"0 3.33 6.11 11.67\\\">(the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 520.9473 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 523.7302 411.7537)\\\" x=\\\"0 3.33 10.55 16.11 21.67 27.23 29.51 32.84 38.4\\\">“Required</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 400.4353)\\\" x=\\\"0 2.78 8.34 10.62 13.4 15.68 21.24\\\">Initial</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 64.2205 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 68.4622 400.4353)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46 42.79 46.12\\\">Payment”),</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 117.3635 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 121.6052 400.4353)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 126.6638 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 130.9055 400.4353)\\\" x=\\\"0 5.56 11.12 16.12\\\">any,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 149.8068 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 154.0485 400.4353)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 159.61 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 163.8517 400.4353)\\\" x=\\\"0 5.56 8.89 14.45 19.45 25.01 30.01 35.01 37.29 42.85\\\">processing</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 212.2697 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 216.5114 400.4353)\\\" x=\\\"0 2.78 8.34\\\">fee</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 230.4127 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 234.6544 400.4353)\\\" x=\\\"0 3.33 10.55 16.11 18.39 23.39\\\">(which</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 263.6095 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 267.8511 400.4353)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.1314 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 279.3731 400.4353)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 293.2745 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 297.5161 400.4353)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 303.0777 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 307.3193 400.4353)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 345.6738 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 349.9155 400.4353)\\\" x=\\\"0 2.78 8.34 15.56 21.12 24.45 30.01\\\">towards</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 384.9301 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 389.1718 400.4353)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.0732 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.3149 400.4353)\\\" x=\\\"0 5 10.56 15.56\\\">cost</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 425.6547 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 429.8964 400.4353)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 438.2362 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 442.4779 400.4353)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 461.931 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 466.1727 400.4353)\\\" x=\\\"0 3.33 8.89 14.45 17.23 22.79 25.07\\\">rental)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 494.576 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 498.8177 400.4353)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 507.1575 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 511.3992 400.4353)\\\" x=\\\"0\\\">$</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 516.9607 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 521.2024 400.4353)\\\" x=\\\"0 5.56 11.12 13.9 19.46\\\">10.00</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 546.2268 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 550.4685 400.4353)\\\" x=\\\"0 3.33 6.11 11.67\\\">(the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 389.117)\\\" x=\\\"0 3.33 10 13.33 18.89 23.89 29.45 34.45 39.45 41.73 47.29\\\">“Processing</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 93.5564 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 97.3241 389.117)\\\" x=\\\"0 6.11 11.67 17.23 20.56 23.89\\\">Fee”),</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 123.9941 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 127.7617 389.117)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 132.8203 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 136.588 389.117)\\\" x=\\\"0 5.56 11.12 16.12\\\">any,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 155.4894 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 159.2571 389.117)\\\" x=\\\"0 5.56\\\">26</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 170.3801 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 174.1478 389.117)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.74 24.02 29.58 35.14 40.7\\\">additional</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 217.1361 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 220.9038 389.117)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57 38.35\\\">payments</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 264.2583 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 268.026 389.117)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.3658 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 280.1335 389.117)\\\" x=\\\"0\\\">$</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 285.695 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 289.4627 389.117)\\\" x=\\\"0 5.56 8.34 13.9\\\">6.97</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.9256 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 312.6933 389.117)\\\" x=\\\"0 3.33 8.89\\\">(as</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 326.5849 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 330.3526 389.117)\\\" x=\\\"0 5.56 11.12 13.4 18.96 23.96 26.74 32.3 37.86\\\">adjusted,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 370.9971 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 374.7648 389.117)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.3263 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 384.094 389.117)\\\" x=\\\"0 3.33 10.55 16.11 21.67 27.23 29.51 35.07\\\">“Regular</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 422.5022 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 426.2699 389.117)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46 42.79\\\">Payment”)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 472.393 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 476.1607 389.117)\\\" x=\\\"0 5.56 11.12 16.12 21.68\\\">each,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 500.6235 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 504.3912 389.117)\\\" x=\\\"0 5.56 11.12 16.12 21.68 27.24 29.52\\\">payable</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 539.4791 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 543.2468 389.117)\\\" x=\\\"0 5.56 10.56 16.12 19.45\\\">every</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 377.7986)\\\" x=\\\"0 5.56 8.34 13.9 19.46\\\">other</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 63.493 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 66.4195 377.7986)\\\" x=\\\"0 7.22 12.78 18.34 23.34\\\">week.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 92.5426 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 95.4692 377.7986)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 112.7006 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 115.6272 377.7986)\\\" x=\\\"0 6.11 11.67 14.45 20.01\\\">Total</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 137.9172 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 140.8438 377.7986)\\\" x=\\\"0 7.22 12.78 17.78\\\">Cost</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 161.4053 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 164.3319 377.7986)\\\" x=\\\"0 5.56 7.84 12.84\\\">also</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 182.7352 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 185.6617 377.7986)\\\" x=\\\"0 3.33 8.89 11.67 13.95 19.51 24.51 27.29\\\">reflects</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 217.9518 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 220.8784 377.7986)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 237.0014 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 239.928 377.7986)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.74 24.02 29.58 35.14 40.7\\\">additional</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 282.9163 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 285.8428 377.7986)\\\" x=\\\"0 5 10.56 15.56\\\">cash</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 306.9659 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 309.8924 377.7986)\\\" x=\\\"0 5.56 11.12 13.4\\\">paid</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 328.8573 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 331.7839 377.7986)\\\" x=\\\"0 2.78 8.34 13.9 19.46 24.46\\\">today,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.0251 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 361.9516 377.7986)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 367.0102 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 369.9368 377.7986)\\\" x=\\\"0 5.56 11.12 16.12\\\">any.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.8382 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 391.7647 377.7986)\\\" x=\\\"0 6.67 12.23 17.79\\\">Your</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 412.8878 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 415.8143 377.7986)\\\" x=\\\"0 2.78 8.34 11.12 16.68\\\">total</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.7743 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 437.7009 377.7986)\\\" x=\\\"0 2.28 7.84 10.12 12.9 15.18 20.74\\\">initial</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 460.7233 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 463.6499 377.7986)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 502.0044 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 504.931 377.7986)\\\" x=\\\"0 5.56 11.12\\\">due</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.6155 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 524.5421 377.7986)\\\" x=\\\"0 2.78 8.34 13.9 19.46\\\">today</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.005 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 551.9316 377.7986)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.2118 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 562.1384 377.7986)\\\" x=\\\"0\\\">$</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 366.4803)\\\" x=\\\"0 5.56 8.34 13.9 19.46\\\">0.00,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 62.9412 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 66.7951 366.4803)\\\" x=\\\"0 7.22 12.78 15.06 20.06\\\">which</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 92.4201 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 96.274 366.4803)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 103.5543 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 107.4082 366.4803)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 121.3096 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 125.1635 366.4803)\\\" x=\\\"0 5 10.56\\\">sum</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 144.0551 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 147.909 366.4803)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 156.2488 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 160.1027 366.4803)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 174.0041 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 177.858 366.4803)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 29.51 35.07\\\">Required</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 218.4976 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 222.3515 366.4803)\\\" x=\\\"0 2.78 8.34 10.62 13.4 15.68 21.24\\\">Initial</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.872 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 249.7259 366.4803)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46\\\">Payment,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.9672 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 295.8211 366.4803)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 300.8797 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 304.7336 366.4803)\\\" x=\\\"0 5.56 11.12 16.12\\\">any,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 323.6349 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 327.4888 366.4803)\\\" x=\\\"0 6.67 10 15.56 20.56 26.12 31.12 36.12 38.4 43.96\\\">Processing</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 377.0152 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 380.8691 366.4803)\\\" x=\\\"0 6.11 11.67 17.23\\\">Fee,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 400.8789 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 404.7328 366.4803)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 409.7914 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 413.6453 366.4803)\\\" x=\\\"0 5.56 11.12 16.12\\\">any,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 432.5466 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 436.4005 366.4803)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 453.0851 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 456.939 366.4803)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 473.062 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 476.916 366.4803)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.74 24.02 29.58 35.14 40.7\\\">additional</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 519.9042 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 523.7581 366.4803)\\\" x=\\\"0 5 10.56 15.56\\\">cash</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 544.8812 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 548.7351 366.4803)\\\" x=\\\"0 5.56 11.12 13.4\\\">paid</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 355.1619)\\\" x=\\\"0 2.78 8.34 13.9 19.46 24.46\\\">today.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 67.9412 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 70.9372 355.1619)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 76.4938 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 79.4898 355.1619)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 95.6128 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 98.6088 355.1619)\\\" x=\\\"0 5.56\\\">do</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 109.7318 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 112.7278 355.1619)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 126.6291 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 129.6251 355.1619)\\\" x=\\\"0 3.33 8.89 17.22 19.5\\\">remit</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 151.9054 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 154.9013 355.1619)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 171.0244 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 174.0203 355.1619)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64\\\">applicable</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 219.2303 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 222.2262 355.1619)\\\" x=\\\"0 6.67 10 15.56 20.56 26.12 31.12 36.12 38.4 43.96\\\">Processing</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 271.7526 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 274.7486 355.1619)\\\" x=\\\"0 6.11 11.67\\\">Fee</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.98 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 294.976 355.1619)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 303.8676 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 306.8635 355.1619)\\\" x=\\\"0 2.78 8.34 10.62 13.4 15.68 21.24\\\">Initial</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 330.3841 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 333.38 355.1619)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68\\\">Payment</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 372.8429 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 375.8388 355.1619)\\\" x=\\\"0 5.56\\\">at</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 384.1787 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 387.1747 355.1619)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 401.076 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 404.072 355.1619)\\\" x=\\\"0 2.78 5.06 13.39\\\">time</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 423.0222 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 426.0181 355.1619)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.358 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 437.3539 355.1619)\\\" x=\\\"0 5.56 11.12 14.45 19.45 25.01 30.57 35.57 41.13\\\">purchase,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 481.2699 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 484.2659 355.1619)\\\" x=\\\"0 2.28\\\">it</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.3245 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 492.3205 355.1619)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.6007 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 502.5967 355.1619)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24 31.8\\\">included</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 539.9649 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 542.9608 355.1619)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 550.8026 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.7986 355.1619)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 343.8436)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 75.7781 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 78.9772 343.8436)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46\\\">Payments</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 123.44 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 126.6391 343.8436)\\\" x=\\\"0 5 10.56\\\">set</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 139.9789 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 143.1779 343.8436)\\\" x=\\\"0 2.78 8.34 11.67 14.45\\\">forth</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 163.1877 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 166.3868 343.8436)\\\" x=\\\"0 5.56 11.12 16.68 21.68 27.24\\\">above.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 196.4112 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 199.6102 343.8436)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 216.8416 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 220.0407 343.8436)\\\" x=\\\"0 6.11 11.67 14.45 20.01\\\">Total</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 242.3307 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 245.5297 343.8436)\\\" x=\\\"0 7.22 12.78 17.78\\\">Cost</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 266.0913 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 269.2903 343.8436)\\\" x=\\\"0 5.56 11.12 16.68\\\">does</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.9749 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 294.1739 343.8436)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.0753 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 311.2743 343.8436)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24\\\">include</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 343.0809 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 346.28 343.8436)\\\" x=\\\"0 2.28 7.84 10.62\\\">late</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 362.4616 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 365.6606 343.8436)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57 38.35\\\">payment,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 406.7935 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 409.9925 343.8436)\\\" x=\\\"0 5.56 11.12 16.68 21.68 27.24 30.02 32.8 35.08 40.08 42.36 47.92 53.48\\\">nonsufficient</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.2571 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 469.4562 343.8436)\\\" x=\\\"0 2.78 8.34 13.9 19.46 24.46\\\">funds,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 496.6974 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 499.8964 343.8436)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 27.3 30.08\\\">default,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 532.7577 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 535.9568 343.8436)\\\" x=\\\"0 5.56 7.84 12.84 17.84 23.4 28.96\\\">pickup,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 332.5252)\\\" x=\\\"0 3.33 8.89 11.17 16.73 21.73 24.51 30.07 32.85 38.41 46.74 52.3 57.86 60.64\\\">reinstatement,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 104.1228 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 108.8966 332.5252)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 117.7882 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 122.5619 332.5252)\\\" x=\\\"0 5.56 8.34 13.9 19.46\\\">other</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 145.3549 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 150.1286 332.5252)\\\" x=\\\"0 2.78 8.34 13.9 18.9\\\">fees,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 171.8083 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 176.5821 332.5252)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 181.6407 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 186.4144 332.5252)\\\" x=\\\"0 5.56 11.12 16.12\\\">any,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 205.3158 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.0895 332.5252)\\\" x=\\\"0 5.56 7.84 12.84 17.84 20.12 25.68 30.68 36.24\\\">disclosed</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 251.8962 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 256.6699 332.5252)\\\" x=\\\"0 5.56 11.12 13.4 18.96 26.18\\\">below.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 285.6347 332.5252)\\\" x=\\\"0 4.7737\\\">  </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 295.1822 332.5252)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.4137 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 317.1874 332.5252)\\\" x=\\\"0 5 10.56 15.56\\\">cost</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.5273 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 340.301 332.5252)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.6409 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 353.4146 332.5252)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 372.8677 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 377.6415 332.5252)\\\" x=\\\"0 3.33 8.89 14.45 17.23 22.79\\\">rental</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.7147 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.4884 332.5252)\\\" x=\\\"0 3.33 6.66 13.88 19.44 24.44\\\">(“Cost</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.7101 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 439.4839 332.5252)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.8237 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 452.5975 332.5252)\\\" x=\\\"0 7.22 12.78 18.34 21.12 26.68 28.96 32.29\\\">Rental”)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 488.2225 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 492.9962 332.5252)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 500.2765 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 505.0502 332.5252)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 518.9516 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 523.7253 332.5252)\\\" x=\\\"0 5.56 7.84 10.62 13.4 18.96 22.29 27.85 33.41 38.41\\\">difference</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 321.2068)\\\" x=\\\"0 5.56 11.12 13.9 21.12 26.68 32.24 37.8 40.46 43.24 48.8 54.36 57.02 63.13 68.69 71.47 77.03 79.31 81.97 89.19 94.75 99.75 102.53 105.19 110.75 116.31 121.87 124.53 131.75 137.31 142.31 147.87 150.53 157.2 160.53 162.81 167.81 173.37 176.15 178.81 184.37 189.93 195.49 198.15 205.37 207.65 209.93 212.21 214.87 220.43 225.99 228.65 234.21 236.87 242.43 247.99 250.77 256.33 261.89\\\">between the Total Cost and Cash Price, and will be $ 93.32.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 309.8885)\\\" x=\\\"0 6.67 11.67 17.23 22.79 27.79 30.57 36.13\\\">Expected</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 82.3943 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 86.3823 309.8885)\\\" x=\\\"0 7.22 12.78 15.06 17.34 22.34 27.9 31.23\\\">Delivery</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 122.6177 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 126.6057 309.8885)\\\" x=\\\"0 7.22 12.78 15.56 21.12\\\">Date;</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 150.507 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 154.495 309.8885)\\\" x=\\\"0 6.11 8.39 11.72 16.72\\\">First</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 173.9921 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 177.9801 309.8885)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 213.0582 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 217.0462 309.8885)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46\\\">Payment.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.2874 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 263.2754 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 267.2634 309.8885)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 284.4948 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 288.4828 309.8885)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 29.51 35.07\\\">Required</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.1225 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 333.1105 309.8885)\\\" x=\\\"0 2.78 8.34 10.62 13.4 15.68 21.24\\\">Initial</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 356.631 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 360.619 309.8885)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46\\\">Payment,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.8602 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 406.8482 309.8885)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 411.9068 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 415.8947 309.8885)\\\" x=\\\"0 5.56 11.12 16.12\\\">any,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.7961 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 438.7841 309.8885)\\\" x=\\\"0 5 10.56 15.56 21.12 24.45\\\">covers</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.2372 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 472.2252 309.8885)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.1266 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 490.1146 309.8885)\\\" x=\\\"0 3.33 8.89 14.45 17.23 22.79\\\">rental</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 515.1878 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 519.1758 309.8885)\\\" x=\\\"0 5.56 11.12 14.45 16.73 22.29\\\">period</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 547.0323 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 551.0202 309.8885)\\\" x=\\\"0 2.78 8.34 13.9\\\">that</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 298.5701)\\\" x=\\\"0 5.56 11.12 16.68 18.96 24.52\\\">begins</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 70.2264 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 73.3394 298.5701)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 84.4625 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 87.5755 298.5701)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 101.4769 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 104.59 298.5701)\\\" x=\\\"0 5.56 11.12 13.9\\\">date</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 124.0529 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 127.166 298.5701)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 143.289 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 146.4021 298.5701)\\\" x=\\\"0 3.33 8.89 13.89 19.45 21.73 26.73\\\">receive</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 178.697 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 181.8101 298.5701)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 195.7114 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 198.8245 298.5701)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 236.6175 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 239.7305 298.5701)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.4151 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 259.5282 298.5701)\\\" x=\\\"0 5.56 11.12 16.68\\\">ends</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.2128 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 284.3258 298.5701)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 295.4489 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 298.562 298.5701)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 318.0151 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 321.1281 298.5701)\\\" x=\\\"0 2.78 5.06 8.39 13.39\\\">first</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 337.2951 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 340.4082 298.5701)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.4863 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 378.5994 298.5701)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68\\\">Payment</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 418.0623 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 421.1754 298.5701)\\\" x=\\\"0 5.56 11.12 13.9 19.46\\\">date.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 443.4166 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 446.5297 298.5701)\\\" x=\\\"0 6.67 12.23 17.79\\\">Your</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.6527 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 470.7658 298.5701)\\\" x=\\\"0 2.78 5.06 8.39 13.39\\\">first</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.9328 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 490.0459 298.5701)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 525.124 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 528.237 298.5701)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68\\\">Payment</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 287.2518)\\\" x=\\\"0 5.56 11.12 13.9\\\">date</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.1629 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 63.9277 287.2518)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 77.9902 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.7549 287.2518)\\\" x=\\\"0 5.56\\\">be</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 92.878 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 96.6428 287.2518)\\\" x=\\\"0 5.56\\\">at</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 104.9826 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 108.7474 287.2518)\\\" x=\\\"0 2.28 7.84 13.4 18.4\\\">least</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 129.929 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 133.6938 287.2518)\\\" x=\\\"0 5 10.56 15.56 21.12\\\">seven</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.3784 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 164.1432 287.2518)\\\" x=\\\"0 5.56 11.12 16.12\\\">days</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 185.2662 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 189.031 287.2518)\\\" x=\\\"0 5.56 8.34 11.12 16.68\\\">after</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.0407 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 212.8055 287.2518)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 226.7069 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 230.4717 287.2518)\\\" x=\\\"0 2.28 7.84 10.62 16.18\\\">later</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 249.9834 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 253.7482 287.2518)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.088 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 265.8528 287.2518)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 27.8 33.36 38.92 44.48\\\">07/24/2020</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 315.9016 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 319.6664 287.2518)\\\" x=\\\"0 3.33 5.61\\\">(i)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 328.6068 287.2518)\\\" x=\\\"0 3.7648\\\">  </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 336.1364 287.2518)\\\" x=\\\"0 3.33 6.11 11.67\\\">(the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 353.3678 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 357.1326 287.2518)\\\" x=\\\"0 3.33 10 15 20.56 26.12 31.12 33.9 39.46\\\">“Expected</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.157 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 405.9218 287.2518)\\\" x=\\\"0 7.22 12.78 15.06 17.34 22.34 27.9 31.23\\\">Delivery</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 442.1572 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 445.9219 287.2518)\\\" x=\\\"0 7.22 12.78 15.56 21.12 24.45 27.78\\\">Date”),</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 476.4835 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 480.2482 287.2518)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 496.9328 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 500.6976 287.2518)\\\" x=\\\"0 3.33 5.61 7.89\\\">(ii)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 511.9183 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 515.6831 287.2518)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.5844 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 533.3492 287.2518)\\\" x=\\\"0 5.56 11.12 13.9\\\">date</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.8121 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 556.5769 287.2518)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 275.9334)\\\" x=\\\"0 7.22 12.78 15.06 20.06 25.62 28.28 31.06 36.62 42.18 44.84 51.51 54.84 60.4 65.96 71.52 74.85 77.63 82.63 85.29 87.57 92.57 95.23 100.79 104.12 109.68 114.68 116.96 122.52 128.08 133.64 136.3 141.86 145.19 147.85 153.41 158.97 161.25 163.53 168.53 174.09 177.42 182.98 188.54 191.2 193.98 199.54 202.2 207.2 212.76 218.32\\\">which the Property is provided or delivered to you.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 264.615)\\\" x=\\\"0 5.56 11.12 16.68 20.01 27.23 32.79\\\">100-Day</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 78.4979 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.9917 264.615)\\\" x=\\\"0 7.78 13.34 16.12 18.4 23.96 29.52\\\">Option.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 114.2915 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 117.7853 264.615)\\\" x=\\\"0 6.67\\\">At</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 127.2335 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 130.7273 264.615)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.8504 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 150.3442 264.615)\\\" x=\\\"0 2.78 5.06 13.39\\\">time</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 169.2944 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 172.7882 264.615)\\\" x=\\\"0 5.56 11.12 14.45 16.73 22.29\\\">during</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 200.6446 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 204.1385 264.615)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 218.0398 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 221.5336 264.615)\\\" x=\\\"0 2.78 5.06 8.39 13.39\\\">first</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 237.7006 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 241.1944 264.615)\\\" x=\\\"0 5.56 11.12\\\">100</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.879 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 261.3728 264.615)\\\" x=\\\"0 2.78 6.11 11.67\\\">from</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.3728 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 284.8666 264.615)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 298.768 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 302.2618 264.615)\\\" x=\\\"0 6.67 11.67 17.23 22.79 27.79 30.57 36.13\\\">Expected</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 343.9561 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 347.45 264.615)\\\" x=\\\"0 7.22 12.78 15.06 17.34 22.34 27.9 31.23\\\">Delivery</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.6853 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 387.1791 264.615)\\\" x=\\\"0 7.22 12.78 15.56 21.12\\\">Date,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 411.0805 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 414.5743 264.615)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 428.4757 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 431.9695 264.615)\\\" x=\\\"0 3.33 8.89 14.45 20.01 23.34 30.56 36.12\\\">“100-Day</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 473.0974 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 476.5912 264.615)\\\" x=\\\"0 7.78 13.34 16.12 18.4 23.96 29.52\\\">Option”</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.4428 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 512.9366 264.615)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.8 31.8\\\">applies,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 547.5215 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 551.0154 264.615)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 253.2967)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 56.823 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 59.7295 253.2967)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 78.6211 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.5276 253.2967)\\\" x=\\\"0 5.56 10.56 16.12 21.68 23.96 27.29\\\">acquire</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 114.384 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 117.2905 253.2967)\\\" x=\\\"0 5.56 12.78 18.34 23.9 27.23 32.23 37.79 40.07\\\">ownership</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 162.9301 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 165.8366 253.2967)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 174.1764 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 177.0829 253.2967)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 190.9843 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 193.8907 253.2967)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.6837 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 234.5901 253.2967)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.1517 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 248.0581 253.2967)\\\" x=\\\"0 5.56 11.12 16.12 18.4 23.96\\\">paying</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 277.5845 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 280.4909 253.2967)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.0525 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 293.9589 253.2967)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 307.8603 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 310.7667 253.2967)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 344.1212 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 347.0277 253.2967)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 357.5892 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 360.4957 253.2967)\\\" x=\\\"0 7.22 12.78 15.06 20.06\\\">which</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 386.1207 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 389.0271 253.2967)\\\" x=\\\"0 3.33 5.61\\\">(i)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 397.9676 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 400.874 253.2967)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 414.7754 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 417.6819 253.2967)\\\" x=\\\"0 5 10.56\\\">sum</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 436.5735 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 439.4799 253.2967)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.8198 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 450.7262 253.2967)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 464.6276 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 467.5341 253.2967)\\\" x=\\\"0 5.56 11.12\\\">100</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.2186 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 487.1251 253.2967)\\\" x=\\\"0\\\">–</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 490.0548 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 492.9612 253.2967)\\\" x=\\\"0 7.22 12.78\\\">Day</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 510.7444 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 513.6509 253.2967)\\\" x=\\\"0 6.67 15 20.56 26.12 31.68 34.46\\\">Amount,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 550.8921 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.7986 253.2967)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 241.9783)\\\" x=\\\"0 6.67 10 15.56 20.56 26.12 31.12 36.12 38.4 43.96\\\">Processing</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 90.2264 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 92.924 241.9783)\\\" x=\\\"0 6.11 11.67 17.23\\\">Fee,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 112.9338 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 115.6314 241.9783)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 120.69 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 123.3877 241.9783)\\\" x=\\\"0 5.56 11.12 16.12\\\">any,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 142.289 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 144.9867 241.9783)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64\\\">applicable</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 190.1967 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 192.8943 241.9783)\\\" x=\\\"0 5 10.56 12.84 18.4\\\">sales</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 216.2976 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 218.9953 241.9783)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 227.8869 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 230.5845 241.9783)\\\" x=\\\"0 5.56 10.56\\\">use</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 246.7076 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 249.4052 241.9783)\\\" x=\\\"0 2.78 8.34 13.34 18.9 23.9\\\">taxes,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.0849 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 278.7826 241.9783)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 295.4672 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 298.1648 241.9783)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 314.2879 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 316.9855 241.9783)\\\" x=\\\"0 5.56 11.12 16.68 22.24 24.52\\\">unpaid</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 347.0734 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 349.771 241.9783)\\\" x=\\\"0 2.78 8.34 13.9\\\">fees</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 368.6724 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 371.3701 241.9783)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 384.1533 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 386.8509 241.9783)\\\" x=\\\"0 5.56 11.12 16.12\\\">have</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 408.5355 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 411.2331 241.9783)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01 30.57 36.13\\\">charged,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 450.1492 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 452.8468 241.9783)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.68 32.24\\\">exceeds</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 490.0929 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 492.7906 241.9783)\\\" x=\\\"0 3.33 5.61 7.89\\\">(ii)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 504.0113 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 506.7089 241.9783)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 520.6103 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 523.3079 241.9783)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 556.6624 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 559.3601 241.9783)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 230.66)\\\" x=\\\"0 5.56 11.12 16.12 18.78 21.56 27.12 29.4 32.18 34.46 40.02 42.3 44.96 51.63 57.19 62.19 70.52 76.08 81.64 84.42 87.08 92.64 98.2 103.76 106.42 113.64 119.2 124.76 130.32 132.6 138.16 141.49 144.15 150.82 156.38 161.38 169.71 175.27 180.83 183.61 188.61 191.27 196.27 201.83 207.39 210.05 215.61 221.17 226.17 231.73 234.39 242.72 248.28 253.84 259.4 262.18 264.84 270.95 276.51 282.07 284.73 290.29 295.85 301.41 304.07 311.29 316.85 321.85 324.51 331.18 339.51 345.07 350.63 356.19 358.97 361.63 363.91 368.91 371.57 377.13 379.79 385.35 390.91 393.69 399.25 404.81\\\">any Initial Payment and Regular Payments you have made. The 100 Day Amount is $ 97.70.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 219.3416)\\\" x=\\\"0 6.67 12.23 15.56 17.84\\\">Early</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 63.5418 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 66.4605 219.3416)\\\" x=\\\"0 6.67 12.23 17.23 20.56 28.34 33.9\\\">Buy-Out</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 103.1401 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 106.0588 219.3416)\\\" x=\\\"0 7.78 13.34 16.12 18.4 23.96 29.52\\\">Option.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 138.3586 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 141.2772 219.3416)\\\" x=\\\"0 6.67 9.45 12.23 17.79\\\">After</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 162.3954 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 165.3141 219.3416)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 184.7672 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 187.6858 219.3416)\\\" x=\\\"0 5.56 11.12 16.68 20.01 27.23 32.79\\\">100-Day</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.4837 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 228.4024 219.3416)\\\" x=\\\"0 7.22 12.78 17.78\\\">Cash</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 251.7471 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 254.6657 219.3416)\\\" x=\\\"0 6.67 12.23 17.23 22.79 25.57\\\">Payoff</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 283.0153 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 285.934 219.3416)\\\" x=\\\"0 7.78 13.34 16.12 18.4 23.96\\\">Option</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 315.4555 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 318.3741 219.3416)\\\" x=\\\"0 5.56 11.12\\\">has</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 334.4972 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 337.4158 219.3416)\\\" x=\\\"0 5.56 10.56 16.12 18.4 21.73 27.29 32.85\\\">expired,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 373.0506 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 375.9693 219.3416)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 389.8706 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 392.7893 219.3416)\\\" x=\\\"0 3.33 10 15.56 18.89 21.17\\\">“Early</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 418.9611 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 421.8798 219.3416)\\\" x=\\\"0 6.67 12.23 17.23 20.56 28.34 33.9\\\">Buy-Out</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 458.5595 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 461.4781 219.3416)\\\" x=\\\"0 7.78 13.34 16.12 18.4 23.96 29.52\\\">Option”</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 494.3297 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 497.2484 219.3416)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.8\\\">applies</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.055 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 531.9737 219.3416)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 548.6582 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 551.5769 219.3416)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 208.0232)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 59.5916 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 63.2372 208.0232)\\\" x=\\\"0 5.56 11.12 14.45 19.45 25.01 30.57 35.57\\\">purchase</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 104.3748 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 108.0204 208.0232)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 121.9218 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 125.5673 208.0232)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 163.3603 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 167.0058 208.0232)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 177.5674 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 181.2129 208.0232)\\\" x=\\\"0 5.56 11.12 16.12 18.4 23.96\\\">paying</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 210.7393 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 214.3849 208.0232)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 224.9464 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 228.5919 208.0232)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 242.4933 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 246.1389 208.0232)\\\" x=\\\"0 5 10.56\\\">sum</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 265.0305 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 268.676 208.0232)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 277.0159 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 280.6614 208.0232)\\\" x=\\\"0 3.33 8.89\\\">(1)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 292.8831 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 296.5286 208.0232)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.6517 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 316.2972 208.0232)\\\" x=\\\"0 5.56 11.12 16.12\\\">past</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.1986 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.8442 208.0232)\\\" x=\\\"0 5.56 11.12\\\">due</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.5287 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 359.1743 208.0232)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 394.2524 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 397.898 208.0232)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46 44.46\\\">Payments,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 445.1392 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 448.7847 208.0232)\\\" x=\\\"0 5.56 11.12 16.68 22.24 24.52\\\">unpaid</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 478.8726 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 482.5182 208.0232)\\\" x=\\\"0 2.78 8.34 13.9\\\">fees</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.4196 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 505.0651 208.0232)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.7497 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 525.3952 208.0232)\\\" x=\\\"0 5 10.56 12.84 18.4 23.4 26.18 31.74 36.74\\\">sales/use</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 196.7049)\\\" x=\\\"0 2.78 8.34 13.34 18.9 23.9\\\">taxes,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 67.3797 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 70.748 196.7049)\\\" x=\\\"0 3.33 8.89\\\">(2)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 82.9697 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 86.338 196.7049)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02\\\">70.00%</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 120.254 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 123.6223 196.7049)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 131.9621 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 135.3305 196.7049)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 149.2318 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 152.6001 196.7049)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 185.9546 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 189.3229 196.7049)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 199.8845 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 203.2528 196.7049)\\\" x=\\\"0 7.22 12.78 15.06 20.06\\\">which</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 228.8778 196.7049)\\\" x=\\\"0 3.3683\\\">  </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 235.6144 196.7049)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 249.5157 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 252.8841 196.7049)\\\" x=\\\"0 6.11 11.67 14.45 20.01\\\">Total</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.1741 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 278.5424 196.7049)\\\" x=\\\"0 7.22 12.78 17.78\\\">Cost</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.1039 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 302.4722 196.7049)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.68 32.24\\\">exceeds</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 339.7183 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 343.0866 196.7049)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 356.988 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 360.3563 196.7049)\\\" x=\\\"0 2.78 8.34 10.62 13.4 15.68 21.24\\\">Initial</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.8768 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 387.2451 196.7049)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46\\\">Payment,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 429.4863 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 432.8546 196.7049)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 437.9132 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 441.2815 196.7049)\\\" x=\\\"0 5.56 11.12 16.12\\\">any,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 460.1829 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 463.5512 196.7049)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 480.2358 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 483.6041 196.7049)\\\" x=\\\"0 5 10 15.56 21.12 26.68 32.24 34.52 40.08\\\">scheduled</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.2535 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 532.6218 196.7049)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 185.3865)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46 44.46 47.12 49.9 55.46 58.79 64.35 69.91 75.47 81.03 83.69 86.47 92.03 97.59 100.25 105.81 111.37 114.15 119.71 122.37 127.37 132.93 138.49 141.15 146.71 151.71 157.27 160.6 165.6 167.88 172.88 178.44 181.1 186.1 191.66 197.22 200.55 203.21 208.77 214.33 217.11 219.39 224.95 230.51 233.17 238.73 244.29 249.85 252.51 255.84 261.4 264.73 267.39 272.95 278.51 284.07 286.35 288.63 293.63 299.19 304.75 307.03 312.59 315.25 320.25 325.81 328.09 333.65 338.65 341.31 346.87 350.2 352.86 358.42 363.42 368.98 371.64 374.42 379.98 384.98 390.54 395.54\\\">Payments through the date you exercise your option and (3) applicable sales or use taxes.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 174.0682)\\\" x=\\\"0 7.22 12.78 15.44 22.11 27.67 32.67 38.23 41.56 43.84 46.62 51.62 54.28 61.5 67.06 72.62 78.18 83.18 85.46 88.24 90.9 98.12 103.68 109.24 114.8 117.08 120.41 125.97 131.53 134.31 136.97 144.19 149.75 152.41 157.41 162.97 167.97 173.53 176.86 179.14 181.92 186.92 189.58 195.14 200.7 206.26 211.82 216.82 219.1 221.88 224.54 226.82 231.82 234.48 237.81 243.37 248.93 254.49 256.77 260.1 265.66 271.22 273.88 279.44 285 290.56 296.12 299.45 302.11 304.89 310.45 312.73 317.73 320.39 327.06 332.62 335.95 341.51 347.07 355.4 360.96 366.52 369.3\\\">No Security Deposit Required. No security deposit is required under this Agreement.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 162.7498)\\\" x=\\\"0 5.56 11.12 16.68 21.68\\\">Lease</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 67.9461 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 72.4996 162.7498)\\\" x=\\\"0 6.11 11.67 15 23.33\\\">Term,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 98.608 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 103.1616 162.7498)\\\" x=\\\"0 6.67 12.23 17.79 22.79 28.35 33.91 39.47 45.03 50.59\\\">Subsequent</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 156.5405 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 161.094 162.7498)\\\" x=\\\"0 6.11 11.67 15 23.33 28.33\\\">Terms;</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 192.2024 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 196.7559 162.7498)\\\" x=\\\"0 7.22 12.78 18.34 23.9 31.12 36.68 38.96\\\">Renewal.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.504 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 243.0575 162.7498)\\\" x=\\\"0 6.67 12.23 17.79\\\">Your</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 264.1806 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 268.7341 162.7498)\\\" x=\\\"0 2.28 7.84 10.12 12.9 15.18 20.74\\\">initial</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.7566 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 296.3101 162.7498)\\\" x=\\\"0 2.28 7.84 13.4 18.4\\\">lease</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 320.2749 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 324.8285 162.7498)\\\" x=\\\"0 2.78 8.34 11.67\\\">term</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 344.8285 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 349.382 162.7498)\\\" x=\\\"0 5.56 10.56 16.12 18.4 21.73 27.29\\\">expires</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 381.6769 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 386.2305 162.7498)\\\" x=\\\"0 5.56\\\">60</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 397.3535 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 401.907 162.7498)\\\" x=\\\"0 5.56 11.12 16.12\\\">days</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 423.0301 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 427.5836 162.7498)\\\" x=\\\"0 2.78 6.11 11.67\\\">from</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.5836 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 452.1372 162.7498)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.0385 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 470.5921 162.7498)\\\" x=\\\"0 2.28 7.84 10.62 16.18\\\">later</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 490.1038 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 494.6573 162.7498)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 502.9972 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 507.5507 162.7498)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.4521 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 526.0056 162.7498)\\\" x=\\\"0 6.67 11.67 17.23 22.79 27.79 30.57 36.13\\\">Expected</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 151.4315)\\\" x=\\\"0 7.22 12.78 15.06 17.34 22.34 27.9 31.23\\\">Delivery</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 76.9353 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.1545 151.4315)\\\" x=\\\"0 7.22 12.78 15.56\\\">Date</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 102.2775 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 106.4967 151.4315)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 115.3883 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 119.6074 151.4315)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 133.5088 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 137.7279 151.4315)\\\" x=\\\"0 5.56 11.12 13.9\\\">date</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 157.1908 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 161.4099 151.4315)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 172.533 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 176.7521 151.4315)\\\" x=\\\"0 7.22 12.78 15.06 20.06\\\">which</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 202.3771 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 206.5963 151.4315)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 220.4976 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 224.7168 151.4315)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.5097 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 266.7289 151.4315)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 274.0091 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 278.2283 151.4315)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29 32.85\\\">provided</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 316.6463 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 320.8654 151.4315)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.757 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 333.9761 151.4315)\\\" x=\\\"0 5.56 11.12 13.4 15.68 20.68 26.24 29.57 35.13\\\">delivered</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 374.6744 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 378.8935 151.4315)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 387.2334 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 391.4525 151.4315)\\\" x=\\\"0 5 10.56 16.12\\\">you.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 410.3539 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 414.573 151.4315)\\\" x=\\\"0 7.22 12.78 15.56 17.84\\\">Until</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.6951 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 438.9142 151.4315)\\\" x=\\\"0 3.33 5.61\\\">(i)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.8546 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 452.0738 151.4315)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.1968 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 472.416 151.4315)\\\" x=\\\"0 5.56 11.12 13.9 19.46 21.74\\\">obtain</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.7206 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 503.9398 151.4315)\\\" x=\\\"0 5.56 12.78 18.34 23.9 27.23 32.23 37.79 40.07\\\">ownership</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.5794 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.7986 151.4315)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 140.1131)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 78.493 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 82.2535 140.1131)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 92.815 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 96.5756 140.1131)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29 32.85\\\">provided</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 134.9936 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 138.7541 140.1131)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.5959 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 150.3565 140.1131)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 165.9766 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 169.7371 140.1131)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 221.4315 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 225.192 140.1131)\\\" x=\\\"0 3.33 5.61 7.89\\\">(ii)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 236.4127 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 240.1733 140.1131)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.2963 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 260.0569 140.1131)\\\" x=\\\"0 2.78 8.34 11.67 20 22.28 27.84 33.4 36.18\\\">terminate</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 301.8001 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 305.5606 140.1131)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 321.1807 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 324.9413 140.1131)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 373.8573 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 377.6179 140.1131)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.1794 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 391.9399 140.1131)\\\" x=\\\"0 5.56 11.12 14.45 22.78 25.06 27.84 30.62 36.18\\\">permitted</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 433.6831 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 437.4437 140.1131)\\\" x=\\\"0 5.56 11.12 14.45 20.01 25.57 31.13 36.69 42.25\\\">hereunder</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 483.0345 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 486.795 140.1131)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 503.4796 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 507.2402 140.1131)\\\" x=\\\"0 5 10.56 13.89 17.22 22.78 28.34 33.9 39.46\\\">surrender</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 550.038 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.7986 140.1131)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 128.7947)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 78.493 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.5631 128.7947)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 89.4049 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 92.4749 128.7947)\\\" x=\\\"0 2.28 5.06\\\">its</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 102.5335 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 105.6036 128.7947)\\\" x=\\\"0 5.56 8.89 11.17 16.73 19.01 24.57 30.13\\\">original</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 138.0206 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 141.0907 128.7947)\\\" x=\\\"0 5 10.56 16.12 21.68 23.96 26.74 29.02 34.58 40.14\\\">condition,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 184.0155 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 187.0856 128.7947)\\\" x=\\\"0 2.28 7.84 12.84\\\">less</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 204.9274 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 207.9975 128.7947)\\\" x=\\\"0 3.33 8.89 14.45 19.45 25.01 30.57 36.13 41.69 43.97\\\">reasonable</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.5385 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 260.6086 128.7947)\\\" x=\\\"0 7.22 12.78 18.34\\\">wear</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 282.2834 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 285.3535 128.7947)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.038 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 305.1081 128.7947)\\\" x=\\\"0 2.78 8.34 13.9 17.23\\\">tear,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 325.1179 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 328.188 128.7947)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.7495 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 341.8196 128.7947)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 350.1594 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 353.2295 128.7947)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 367.1309 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 370.201 128.7947)\\\" x=\\\"0 5.56 11.12\\\">end</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 386.8855 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 389.9556 128.7947)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 398.2955 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 401.3656 128.7947)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 406.9271 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 409.9972 128.7947)\\\" x=\\\"0 2.28 7.84 13.4 18.4\\\">lease</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 433.962 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 437.0321 128.7947)\\\" x=\\\"0 2.78 8.34 11.67 20\\\">term,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 459.8104 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 462.8805 128.7947)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 471.7721 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 474.8422 128.7947)\\\" x=\\\"0 3.33 5.61 7.89 10.17\\\">(iii)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 488.3432 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 491.4133 128.7947)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 504.1965 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 507.2666 128.7947)\\\" x=\\\"0 2.78 8.34 11.67 20 22.28 27.84 33.4 36.18\\\">terminate</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.0097 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 552.0798 128.7947)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 117.4764)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 89.616 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 93.7725 117.4764)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 101.6143 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 105.7709 117.4764)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 111.3324 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 115.4889 117.4764)\\\" x=\\\"0 8.33 13.89 19.45 25.01 30.57\\\">manner</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 149.3952 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 153.5517 117.4764)\\\" x=\\\"0 5.56 11.12 14.45 22.78 25.06 27.84 30.62 36.18\\\">permitted</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 195.2948 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 199.4514 117.4764)\\\" x=\\\"0 5.56 11.12 14.45 20.01 25.57 31.13 36.69 42.25 45.58\\\">hereunder,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.8205 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 251.977 117.4764)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 267.5971 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 271.7537 117.4764)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 320.6697 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 324.8262 117.4764)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.8887 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 343.0452 117.4764)\\\" x=\\\"0 5.56 11.12 13.9 19.46 27.79 33.35 36.13 38.41 43.41 48.97 51.25 53.53\\\">automatically</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 401.5804 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 405.7369 117.4764)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 422.4215 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 426.578 117.4764)\\\" x=\\\"0 3.33 8.89 14.45 20.01 25.57 28.35 33.91 39.47 41.75\\\">repeatedly</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 473.3358 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 477.4923 117.4764)\\\" x=\\\"0 3.33 8.89 14.45 20.01\\\">renew</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 504.7287 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 508.8852 117.4764)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 520.5551 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 524.7116 117.4764)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.74 24.02 29.58 35.14 40.7\\\">additional</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 106.158)\\\" x=\\\"0 2.28 7.84 13.4 18.4 23.96 26.62 29.4 34.96 38.29 46.62 51.62 54.4 57.06 62.62 68.18 73.18 78.74 81.4 86.96 92.52 95.18 100.74 106.3 111.3 116.3 118.96 121.24 126.8 129.46 131.74 137.3 142.86 148.42 151.2 156.76\\\">lease terms, each 60 days in length.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 94.8397)\\\" x=\\\"0 8.33 13.89 16.17 21.73 24.51 30.07 35.63 41.19 46.75 51.75\\\">Maintenance</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 98.0193 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 101.2487 94.8397)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 109.5885 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 112.8178 94.8397)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 126.7192 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 129.9485 94.8397)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 170.5198 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 173.7491 94.8397)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 191.5421 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 194.7714 94.8397)\\\" x=\\\"0 5.56 8.89\\\">are</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.2246 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 212.4539 94.8397)\\\" x=\\\"0 3.33 8.89 13.89 19.45 25.01 30.57 35.57 37.85 43.41 45.69\\\">responsible</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 263.7136 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 266.943 94.8397)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 278.6129 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 281.8422 94.8397)\\\" x=\\\"0 8.33 13.89 16.17 21.73 24.51 30.07 32.35 37.91 40.19 45.75\\\">maintaining</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 333.1606 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 336.3899 94.8397)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 345.2815 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 348.5108 94.8397)\\\" x=\\\"0 5 10.56 13.89 18.89 21.17 26.17 28.45 34.01\\\">servicing</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.086 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 391.3154 94.8397)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 405.2167 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 408.446 94.8397)\\\" x=\\\"0 5.56 8.89 14.45 20.01 25.57 28.9 31.68\\\">property</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 445.1306 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 448.3599 94.8397)\\\" x=\\\"0 7.22 12.78 15.06 17.34\\\">while</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 471.2652 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 474.4945 94.8397)\\\" x=\\\"0 2.28\\\">it</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 479.5531 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 482.7825 94.8397)\\\" x=\\\"0 2.28 5.06\\\">its</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 492.8411 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 496.0704 94.8397)\\\" x=\\\"0 5.56 11.12 13.4 18.96\\\">being</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 520.5968 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 523.8261 94.8397)\\\" x=\\\"0 2.28 7.84 13.4 18.4 23.96 29.52\\\">leased.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 556.1308 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 559.3601 94.8397)\\\" x=\\\"0 2.78\\\">In</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 83.5213)\\\" x=\\\"0 5.56 10.56 15.56 21.12 24.45 30.01 35.57 41.13 46.13\\\">accordance</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 92.3992 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 95.7041 83.5213)\\\" x=\\\"0 7.22 9.5 12.28\\\">with</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 113.5459 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 116.8509 83.5213)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 132.471 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 135.7759 83.5213)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 187.4702 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 190.7752 83.5213)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 206.8982 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.2031 83.5213)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 224.2656 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 227.5706 83.5213)\\\" x=\\\"0 5 10.56 16.12 21.68 27.24 32.24\\\">conduct</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.595 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 265.8999 83.5213)\\\" x=\\\"0 5.56 7.84\\\">all</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.022 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 279.3269 83.5213)\\\" x=\\\"0 8.33 13.89 16.17 21.73 24.51 30.07 35.63 41.19 46.75 51.75 57.31\\\">maintenance,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 339.4246 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 342.7295 83.5213)\\\" x=\\\"0 3.33 8.89 14.45 20.01 22.29 25.62 30.62\\\">repairs,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 376.1328 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 379.4377 83.5213)\\\" x=\\\"0 5.56 11.12 16.12 21.68 27.24\\\">upkeep</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 412.2454 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 415.5503 83.5213)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 432.2349 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 435.5398 83.5213)\\\" x=\\\"0 5 10.56 13.89 19.45\\\">care.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 457.7712 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 461.0762 83.5213)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.6328 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 469.9377 83.5213)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.0608 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 489.3657 83.5213)\\\" x=\\\"0 8.33 13.89 19.45 25.01 27.79 33.35 38.35 41.13 46.69 50.02 55.58 58.91 61.13\\\">manufacturer’s</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 555.5034 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 558.8083 83.5213)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 83.5213)\\\" x=\\\"0\\\"> </text></g><clipPath id=\\\"clip0-11\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip0-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 546.6561 L 573.6 546.6561 L 573.6 545.6561 L 34.8 545.6561 L 34.8 546.6561 z \\\"/><path clip-path=\\\"url(#clip0-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.6 545.6561 L 573.6 545.6561 L 573.6 530.3377 L 572.6 530.3377 L 572.6 545.6561 z \\\"/><path clip-path=\\\"url(#clip0-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 545.6561 L 35.8 545.6561 L 35.8 530.3377 L 34.8 530.3377 L 34.8 545.6561 z \\\"/><path clip-path=\\\"url(#clip0-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 530.3377 L 573.6 530.3377 L 573.6 529.3377 L 34.8 529.3377 L 34.8 530.3377 z \\\"/><path clip-path=\\\"url(#clip0-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 81.9217 L 573.6 81.9217 L 573.6 80.9217 L 34.8 80.9217 L 34.8 81.9217 z \\\"/><path clip-path=\\\"url(#clip0-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.6 529.3377 L 573.6 529.3377 L 573.6 81.9217 L 572.6 81.9217 L 572.6 529.3377 z \\\"/><path clip-path=\\\"url(#clip0-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 529.3377 L 35.8 529.3377 L 35.8 81.9217 L 34.8 81.9217 L 34.8 529.3377 z \\\"/><g clip-path=\\\"url(#clip0-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 36.5264)\\\" x=\\\"0 6.498 11.997 14.391 16.785 21.789 26.793 29.295 34.299 39.303 44.307 504 506.3906 508.7812 511.1719 513.5625 515.9531 518.3438 520.7344 523.125 525.5156\\\">UT  07/2019          </text></g><g clip-path=\\\"url(#clip0-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 26.3398)\\\" x=\\\"0 6.003 11.007 16.011 21.015\\\">Page </text></g><g clip-path=\\\"url(#clip0-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 55.8097 26.3398)\\\" x=\\\"0\\\">1</text></g><g clip-path=\\\"url(#clip0-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.815 26.3398)\\\" x=\\\"0 2.394 7.398 9.9\\\"> of </text></g><g clip-path=\\\"url(#clip0-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 73.1021 26.3398)\\\" x=\\\"0\\\">7</text></g><g clip-path=\\\"url(#clip0-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#d9d9d9\\\" style=\\\"font-family:f0-0; font-size:54pt; white-space:pre\\\" transform=\\\"matrix(0.707 0.707 0.707 -0.707 135.6027 198.5094)\\\" x=\\\"0 56.016 96.048 136.08 176.112 216.144 236.16 284.184 324.216 344.232 364.248 416.232 456.264 480.24\\\">Qoppa Software</text></g><g clip-path=\\\"url(#clip0-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#002ba6\\\" style=\\\"font-family:f0-0; font-size:9pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.932 772)\\\" x=\\\"0 9.336 16.008 22.68 29.352 36.024 39.36 47.364 54.036 57.372 60.708 69.372 76.044 80.04 86.712 90.048 94.044 97.38 104.712 111.384 115.38 118.716 126.72 132.72 139.392 142.056 148.728 155.4 158.736 161.4 168.072 174.744 178.08 187.416 194.088 196.752 202.752 206.088 210.084 213.42 220.092 223.428 226.764 233.436 239.436 242.772 246.108 249.444 258.108 266.772 275.436 278.772 285.444 292.116 298.788 305.46 312.132 315.468 321.468 328.14\\\">Qoppa Software - For Evaluation Only - https://www.qoppa.com</text></g></g></svg></svg></g></svg><br>\\n<?xml version='1.0' encoding='UTF-8'?><svg id=\\\"qoppa_document\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" version=\\\"1.1\\\" xmlns=\\\"http://www.w3.org/2000/svg\\\" xmlns:xlink=\\\"http://www.w3.org/1999/xlink\\\"><!-- jPDFWeb v2019R1.03 - Demo Version --><style>title p { display: block; }</style><g id=\\\"qoppa_viewxform\\\" transform=\\\"matrix(1 0 0 1 0 0)\\\"><style type=\\\"text/css\\\">@font-face {font-family:f1-0;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f1-1;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f1-2;src:url(\\\"data:application/font-woff;charset=utf-8;base64,d09GRgABAAAAAAW8AAoAAAAABzQAAQABAAAAAAAAAAAAAAAAAAAAAAAAAABPUy8yAAAA9AAAADcAAABWWalZZmNtYXAAAAEsAAAAUwAAAGwBegIKZ2x5ZgAAAYAAAALfAAADgId/tkZoZWFkAAAEYAAAADMAAAA2GHlkumhoZWEAAASUAAAAIAAAACQGIAKxaG10eAAABLQAAAA0AAAARCRzAuxsb2NhAAAE6AAAACQAAAAkBYYGdm1heHAAAAUMAAAAGAAAACAAFAAzbmFtZQAABSQAAACMAAABPhepMhlwb3N0AAAFsAAAAAwAAAAgAAMAAHicY2Bk8mKcwMDKwMDUxbSbARlwMeogc/8DATI/MCDAkUEBCG8y3fifzBDFdINhLkwOAMp0DLgAeJxjYGBgZGAGYgYGHgYWhgQgLcIgABRhYVBgcGRwZXBn8GTwZwhmCGWI//8fKAsSdQaL+sBE/z/+f/j/of8H/x/4v+//7v+7/m8Em4cBADR/GXUAeJx9kk1ME0EYhmcGu42lUTZQQEgKy5oWQktLt0vbAG20WwJ0m1YskKalbKG7EH7CQYkajAnFGIrCRaUGEE1MxL+bBw/ECzdT0YsHUG8cvZDozXTrbFuMJ2eyySQz7/e+37MfQAAvtImyAAENALAcQtpIqWnIwL1b1+Hnqcvyl+A4JCV4Hgbkt/L3w0P8Fj8EbflfaBsdAAoAVZPRwNodHYytprqGNhgNdJOa0FXVVDM2R4eDIdQEXMhE8crMDwxoEgTLXpr14DUdttvVCU0wpB1PvnqdTHo8E97m5n7/vRU/39ISuOJ241QhnO8J9iQACUAl00hWULRDKczajYZWGDqCM/KDo/jSpsvlcm4toay8LWfCfb23F3t6lJyKXsT6cgBaIEnpShuJuR9IJUfgXXkevkPZwa+DP//29QH3Rf+/L5ZmKZI2EjC9KQijoxuLQ4PlY4TLFZvjvBw3t8G/h7Xe2j5tUnzxUhQ97kmf0ejnV9I8L80Oyff9w4pXFDvu4mxlADA0yewKggK3mFmDj6pCZoakkEbuicMYyubSJ/fH+F4LAEWTZXQZidX1kEHHkf3wfmRtb28NCbmnhS+be4PCJU0Ka04rGqgIcGWUGpPTEQFeiyJ77iN+m0UsZq4w+IYZnAUN2A53r6tSE3SJRmWJ/QkMeGcdAxDWM0IiIaxP+ziOm5rx+TgfOpCknR1RFKXnO5KUmwnwy7h9nk8v8wFQYG3CPhPYp73I2shUF2dGKa/sf+CfuBW3kgfGH/n9p2Lqzq5wsN1qsy0ssB09vqs3+vtVI2eeBU2tdJMw6nLigerTermpkMHQSDk76+vr6ixtgWGn0+WUUnp9uxlX0+mqWk29I91dCiecSeF0rpTJwOIfUJrlwlGtzPPkTbe7oiJutURjFovQ0OBxa63WCxeH4LacXDWbTOZVuCWPpbrdej2A+d/5cWTOP1T+s4piKWTOfUK2xzYA/gBtBuJcAHicY2BkYGAA4rxdv17H89t8ZeBmfgEUYbhtLnAWRv///T+Z6QPTDaA6DgYmkCgAl1oOtgB4nGNgZGBguvE/mSGK2fH/7/+/mT4wAEVQgCAAvv0H1HicY2CAAEZfCGaaDcSXGPSAOADIDmDmYtBjFGOIZtIBsh2BYpcgYkA5HbAajf+/AR7DC3wAAAAAAAAAAAAAABwAUABwAIgAvgDKANoA9AEKAT4BiAGyAcB4nGNgZGBgEGQwYmBiAAFGBjQAAAcrAEh4nJWOMQ6CUBBEH4KKrZUlpRURQkUptZWJhZ1RURPiJ0BD41E8BudzhH8AyGaTN7OTyQJLzrg43gpYawd22EoNPMMntewSsrfsiUvLczZ8LS/kd2QYXVsqXjx40nAQXaUNtTaXE3Dkwlv6T/c+m6vfUHAbnf+QEE9Mn3pdyzFKBET6eaeZ1PIDR/8t33icY2BmwAsAAH0ABA==\\\");}@font-face {font-family:f1-3;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}</style><svg id=\\\"qoppa_page_p1\\\" class=\\\"qoppa_page\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\"><rect class=\\\"qoppa_pageborder\\\" x=\\\"0.5pt\\\" y=\\\"0.5pt\\\" width=\\\"611pt\\\" height=\\\"791pt\\\" fill=\\\"none\\\" /><svg class=\\\"qoppa_pagecontents\\\" x=\\\"0pt\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" viewBox=\\\"0 0 612 792\\\" ><g class=\\\"qoppa_contentstream\\\" transform=\\\"matrix(1 0 0 -1 0 792)\\\" fill=\\\"black\\\" stroke=\\\"black\\\" stroke-width=\\\"1\\\" stroke-linecap=\\\"butt\\\" stroke-linejoin=\\\"miter\\\" stroke-miterlimit=\\\"10\\\"><clipPath id=\\\"clip1-1\\\"><path d=\\\"M 35 487 L 574 487 L 574 770 L 35 770 L 35 487 z \\\"/></clipPath><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 759.4812)\\\" x=\\\"0 5 10.56 12.84 15.12 20.68 24.01 26.23\\\">seller’s</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 71.9353 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 75.2187 759.4812)\\\" x=\\\"0 7.22 12.78 16.11 19.44 25 30.56 33.34\\\">warranty</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 113.5635 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 116.8468 759.4812)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 124.1271 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 127.4105 759.4812)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 135.2523 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 138.5357 759.4812)\\\" x=\\\"0 2.78 8.34 11.67 16.67\\\">force</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.7671 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 164.0505 759.4812)\\\" x=\\\"0 7.22 12.78 18.34\\\">when</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 187.9567 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 191.2401 759.4812)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 207.3631 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.6465 759.4812)\\\" x=\\\"0 5.56 10.56 16.12 21.68 23.96 27.29\\\">acquire</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 243.503 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 246.7863 759.4812)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 260.6877 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 263.9711 759.4812)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 304.5424 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 307.8258 759.4812)\\\" x=\\\"0 2.28\\\">it</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.8844 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 316.1677 759.4812)\\\" x=\\\"0 5 10.56 16.12 18.4\\\">shall</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 336.8513 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 340.1347 759.4812)\\\" x=\\\"0 5.56\\\">be</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.2578 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 354.5411 759.4812)\\\" x=\\\"0 2.78 6.11 11.67 17.23 22.23 25.01 30.57 33.9 37.23 42.79\\\">transferred</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.8956 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 406.179 759.4812)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 414.5188 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 417.8022 759.4812)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 433.9253 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 437.2086 759.4812)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 442.2672 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 445.5506 759.4812)\\\" x=\\\"0 5.56 7.84 10.12 15.68 22.9 28.46\\\">allowed</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 479.5789 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 482.8623 759.4812)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 493.4238 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 496.7072 759.4812)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 510.6086 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 513.892 759.4812)\\\" x=\\\"0 2.78 8.34 11.67 20\\\">terms</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 538.892 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 542.1754 759.4812)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 550.5152 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.7986 759.4812)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 748.1629)\\\" x=\\\"0 7.22 12.78 16.11 19.44 25 30.56 33.34 38.34\\\">warranty.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 736.8445)\\\" x=\\\"0 5.56 11.12 16.12 18.9\\\">Lost,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 62.3797 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 65.5493 736.8445)\\\" x=\\\"0 6.67 9.45 15.01 17.29 22.85 28.41\\\">Stolen,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 96.7407 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 99.9104 736.8445)\\\" x=\\\"0 7.22 12.78 21.11 26.67 32.23 37.79 43.35\\\">Damaged,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.0481 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 149.2177 736.8445)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 158.1093 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 161.279 736.8445)\\\" x=\\\"0 7.22 12.78 17.78 20.56 23.89 29.45 34.45 40.01\\\">Destroyed</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 206.8552 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.0248 736.8445)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 250.5961 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 253.7657 736.8445)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.3224 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 262.492 736.8445)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.3934 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 279.563 736.8445)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 317.356 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 320.5256 736.8445)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 327.8059 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 330.9756 736.8445)\\\" x=\\\"0 2.28 7.84 12.84 15.62\\\">lost,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 349.374 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 352.5437 736.8445)\\\" x=\\\"0 5 7.78 13.34 15.62 21.18 26.74\\\">stolen,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 382.0651 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 385.2348 736.8445)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57 36.13\\\">damaged</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 426.934 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 430.1037 736.8445)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 438.9952 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 442.1649 736.8445)\\\" x=\\\"0 5.56 11.12 16.12 18.9 22.23 27.79 32.79 38.35 43.91\\\">destroyed,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 488.8592 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 492.0289 736.8445)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 508.1519 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 511.3216 736.8445)\\\" x=\\\"0 5.56 11.12 14.45 20.01\\\">agree</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 536.8977 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 540.0674 736.8445)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 548.4072 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 551.5769 736.8445)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 725.5262)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 51.2615 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 55.736 725.5262)\\\" x=\\\"0 5.56\\\">at</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 64.0758 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 68.5503 725.5262)\\\" x=\\\"0 5.56 11.12 16.12\\\">once</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 90.2349 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 94.7094 725.5262)\\\" x=\\\"0 5.56\\\">an</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 105.8324 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 110.3069 725.5262)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 143.6614 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.1359 725.5262)\\\" x=\\\"0 5.56 11.12 16.68 22.24\\\">equal</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 172.6622 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 177.1367 725.5262)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 185.4766 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 189.951 725.5262)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 203.8524 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 208.3269 725.5262)\\\" x=\\\"0 2.28 7.84 12.84 17.84 23.4\\\">lesser</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 235.0603 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 239.5348 725.5262)\\\" x=\\\"0 5.56 8.34\\\">of:</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 250.6529 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 255.1274 725.5262)\\\" x=\\\"0 3.33 8.89\\\">(1)</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 267.3491 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 271.8236 725.5262)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 285.7249 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 290.1994 725.5262)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79 40.01\\\">Property’s</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.2141 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 339.6885 725.5262)\\\" x=\\\"0 2.78 8.34 10.62\\\">fair</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 353.6387 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 358.1132 725.5262)\\\" x=\\\"0 8.33 13.89 17.22 22.22 27.78\\\">market</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.6747 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 393.1492 725.5262)\\\" x=\\\"0 5 10.56 12.84 18.4 23.96\\\">value,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.8924 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 424.3669 725.5262)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.9284 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 439.4029 725.5262)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.7427 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 452.2172 725.5262)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.1185 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 470.593 725.5262)\\\" x=\\\"0 2.78 5.06 13.39\\\">time</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.5432 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 494.0177 725.5262)\\\" x=\\\"0 2.28\\\">it</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.0763 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 503.5508 725.5262)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 510.831 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 515.3055 725.5262)\\\" x=\\\"0 2.28 7.84 12.84 15.62\\\">lost,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 533.704 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 538.1785 725.5262)\\\" x=\\\"0 5 7.78 13.34 15.62 21.18 26.74\\\">stolen,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 714.2078)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57 36.13\\\">damaged</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 82.3992 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 86.9016 714.2078)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 95.7932 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 100.2955 714.2078)\\\" x=\\\"0 5.56 11.12 16.12 18.9 22.23 27.79 32.79 38.35\\\">destroyed</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 144.2115 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.7139 714.2078)\\\" x=\\\"0 3.33 8.89 14.45 17.23 22.79 26.12 34.45 36.73 42.29 47.85\\\">(determined</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 202.1319 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 206.6342 714.2078)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 217.1958 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 221.6981 714.2078)\\\" x=\\\"0 5.56 10.56\\\">us,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 235.038 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 239.5403 714.2078)\\\" x=\\\"0 5.56 10.56 12.84 18.4\\\">using</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 263.5052 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 268.0075 714.2078)\\\" x=\\\"0 5.56\\\">an</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 279.1306 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 283.6329 714.2078)\\\" x=\\\"0 2.28 7.84 13.4 18.96 23.96 26.74 30.07\\\">industry</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 318.7062 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 323.2085 714.2078)\\\" x=\\\"0 5 10.56 12.84 18.4\\\">value</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 347.1734 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 351.6758 714.2078)\\\" x=\\\"0 5.56 11.12 13.4 18.96\\\">guide</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 376.2021 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 380.7045 714.2078)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.4877 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 397.99 714.2078)\\\" x=\\\"0 5 10.56 12.84 18.4 23.4 26.18\\\">select,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 426.95 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 431.4524 714.2078)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 436.511 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 441.0133 714.2078)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 457.1364 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 461.6387 714.2078)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.919 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 473.4214 714.2078)\\\" x=\\\"0 5.56 10.56 16.12 18.4 20.68 26.24 31.8 34.08 39.64 42.97\\\">available);</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 519.1782 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 523.6806 714.2078)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 532.5722 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 537.0745 714.2078)\\\" x=\\\"0 3.33 8.89\\\">(2)</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.2962 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.7986 714.2078)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 702.8895)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57 33.35 36.01 41.01 46.57 52.13 54.79 62.01 67.57 73.13 75.41 80.97 83.63 89.19 94.75 100.31 105.87 108.53 111.31 116.87 119.53 125.09 130.65 135.65 138.31 143.87 146.65 149.31 154.31 159.87 164.87 170.43 173.09 175.87 178.15 186.48 192.04 194.7 197.48 203.04 205.7 211.26 216.26 221.82 225.15 230.15 232.43 237.43 242.99 245.65 248.43 253.99 259.55 262.21 267.77 273.33 278.89 282.22 289.44 295 300 302.66 310.44 316 318.78 321.06 326.62 332.18 334.84 340.4 343.73 346.39 353.06 358.62 361.95 364.23 369.23 371.89 378.56 384.12 389.12 392.45 400.23 405.79 408.57 411.23 419.01 424.57 427.35 429.63 435.19 440.75 443.53 446.19 451.75 456.75 459.41 464.97 470.53 476.09 478.37 480.65 485.65 491.21 496.77 499.05 504.61\\\">amount you would need to pay at such time to exercise the 100-Day Option or Early Buy-Out Option, as applicable.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 691.5711)\\\" x=\\\"0 7.22 12.78 15.06 20.62 25.62 28.4 33.96 36.74 42.3 50.63 56.19 61.75\\\">Reinstatement</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 105.2361 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 108.6807 691.5711)\\\" x=\\\"0 7.22 9.5 15.06 20.62 23.4 28.4\\\">Rights.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 139.8623 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 143.3069 691.5711)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 148.8635 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 152.3081 691.5711)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 168.4311 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 171.8757 691.5711)\\\" x=\\\"0 5.56 8.89\\\">are</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 186.3288 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 189.7734 691.5711)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 197.6152 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 201.0597 691.5711)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 27.3\\\">default</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.1428 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 234.5873 691.5711)\\\" x=\\\"0 5.56 11.12 16.68 19.46 25.02\\\">and/or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.9418 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 266.3864 691.5711)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.2877 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 283.7323 691.5711)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 321.5253 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 324.9698 691.5711)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 332.2501 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 335.6947 691.5711)\\\" x=\\\"0 5 10.56 13.89 17.22 22.78 28.34 33.9 39.46 42.79 48.35\\\">surrendered</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 389.6156 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 393.0601 691.5711)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 401.9517 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 405.3963 691.5711)\\\" x=\\\"0 3.33 8.89 14.45 20.01 25.01 30.01 35.57 40.57 45.57 51.13 56.69\\\">repossessed,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 464.8738 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 468.3184 691.5711)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.4414 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 487.886 691.5711)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 506.7776 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 510.2222 691.5711)\\\" x=\\\"0 3.33 8.89 11.17 16.73 21.73 24.51 30.07 32.85\\\">reinstate</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 548.6353 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 552.0798 691.5711)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 680.2527)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 89.616 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 92.7055 680.2527)\\\" x=\\\"0 7.22 9.5 12.28 17.84 23.4 28.96\\\">without</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 124.4487 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 127.5382 680.2527)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68\\\">losing</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 153.7833 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 156.8728 680.2527)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 172.9958 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 176.0853 680.2527)\\\" x=\\\"0 3.33 5.61 11.17 16.73 19.51\\\">rights</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 200.597 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 203.6865 680.2527)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 212.5781 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 215.6676 680.2527)\\\" x=\\\"0 5.56 11.12 13.9 16.18 21.74 27.3\\\">options</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.9723 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 251.0618 680.2527)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 261.6234 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 264.7129 680.2527)\\\" x=\\\"0 5.56 11.12 16.12 18.4 23.96 29.52\\\">paying:</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 297.0175 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 300.1071 680.2527)\\\" x=\\\"0 3.33 5.61\\\">(i)</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 309.0475 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 312.137 680.2527)\\\" x=\\\"0 5.56 7.84\\\">all</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 322.2591 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 325.3485 680.2527)\\\" x=\\\"0 5.56 11.12 16.12\\\">past</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 344.2499 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 347.3394 680.2527)\\\" x=\\\"0 5.56 11.12\\\">due</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 364.024 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 367.1135 680.2527)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01 30.57 35.57\\\">charges;</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 405.468 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 408.5575 680.2527)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 425.242 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 428.3315 680.2527)\\\" x=\\\"0 3.33 5.61 7.89\\\">(ii)</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 439.5523 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 442.6418 680.2527)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.7003 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 450.7898 680.2527)\\\" x=\\\"0 5.56 7.84 10.12 15.68 22.9 28.46\\\">allowed</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.8182 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 487.9077 680.2527)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 498.4692 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 501.5587 680.2527)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64\\\">applicable</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 546.7686 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 549.8581 680.2527)\\\" x=\\\"0 2.28 7.84 15.06\\\">law,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 668.9344)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 54.6014 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 59.0196 668.9344)\\\" x=\\\"0 3.33 8.89 14.45 19.45 25.01 30.57 36.13 41.69 43.97\\\">reasonable</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 108.5606 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 112.9789 668.9344)\\\" x=\\\"0 5 10.56 15.56 18.34\\\">costs</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.3187 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 140.737 668.9344)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 149.0768 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 153.4951 668.9344)\\\" x=\\\"0 5.56 7.84 12.84 17.84 23.4\\\">pickup</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 182.4599 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 186.8782 668.9344)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 203.5627 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 207.981 668.9344)\\\" x=\\\"0 3.33 8.89 14.45 20.01 22.29 24.57 29.57 35.13 38.46 43.46\\\">redelivery.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 254.2261 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 258.6444 668.9344)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.4373 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 280.8556 668.9344)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.7472 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 304.1654 668.9344)\\\" x=\\\"0 5.56 10.56 16.12 19.45 24.45 26.73 31.73\\\">exercise</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 341.4604 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 345.8786 668.9344)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 365.3317 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 369.75 668.9344)\\\" x=\\\"0 3.33 8.89 11.17 16.73 21.73 24.51 30.07 32.85 38.41 46.74 52.3 57.86\\\">reinstatement</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.3945 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 434.8128 668.9344)\\\" x=\\\"0 3.33 5.61 11.17 16.73\\\">right</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.3245 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 458.7428 668.9344)\\\" x=\\\"0 7.22 9.5 12.28 17.84 20.12\\\">within</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.4263 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 488.8446 668.9344)\\\" x=\\\"0 5.56 11.12\\\">180</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 505.5292 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 509.9474 668.9344)\\\" x=\\\"0 5.56 11.12 16.12\\\">days</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 531.0705 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 535.4887 668.9344)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 543.8286 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 548.2468 668.9344)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 657.616)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 27.3 30.08 32.74 38.3 41.63 44.29 49.29 54.85 58.18 61.51 67.07 72.63 78.19 83.75 87.08 89.86 93.19 98.75 104.31 109.87 114.87 119.87 125.43 130.43 135.43 137.71 143.27 148.83 151.49 157.05 159.83 162.49 165.27 170.83 176.39 179.05 185.72 189.05 194.61 200.17 205.73 209.06 211.84 216.84 219.5 225.06 228.39 231.05 236.05 241.61 246.61 252.17 254.83 257.11 262.67 268.23 273.79 279.35 282.68 285.34 290.9 296.46 299.79 302.07 307.63 313.19 315.85 321.41 324.74 330.3 335.3 337.58 343.14 348.7 354.26 356.92 359.7 365.26 367.92 372.92 378.48 384.04 386.7 392.26 397.82 403.38 408.94 412.27 414.93 420.49 426.05 431.61 433.89 436.17 441.17 446.73 452.29 454.57 460.13 462.79 465.07 470.63 477.85\\\">default or surrender/repossession of the Property or such longer period provided to you under applicable law.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 646.2977)\\\" x=\\\"0 7.22 9.5 15.06 20.62\\\">Right</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 64.1033 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 66.9139 646.2977)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 75.2537 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 78.0643 646.2977)\\\" x=\\\"0 6.11 11.67 15 23.33 25.61 31.17 36.73 39.51 45.07\\\">Terminate.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 125.9158 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 128.7263 646.2977)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.5193 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 149.3299 646.2977)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 168.2215 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 171.032 646.2977)\\\" x=\\\"0 2.78 8.34 11.67 20 22.28 27.84 33.4 36.18\\\">terminate</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 212.7752 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 215.5857 646.2977)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 235.0388 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 237.8494 646.2977)\\\" x=\\\"0 2.28 7.84 13.4 18.4\\\">lease</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 261.8142 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 264.6248 646.2977)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.9793 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 305.7898 646.2977)\\\" x=\\\"0 5.56 11.12 13.4 15.68 21.24 26.8 29.58 31.86 37.42 42.98\\\">obligations</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 353.7781 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 356.5886 646.2977)\\\" x=\\\"0 5.56 11.12 16.68 22.24\\\">under</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 382.1648 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 384.9753 646.2977)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 400.5955 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 403.406 646.2977)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 452.322 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 455.1326 646.2977)\\\" x=\\\"0 7.22 9.5 12.28 17.84 23.4 28.96\\\">without</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.8757 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 489.6863 646.2977)\\\" x=\\\"0 5.56 11.12 16.68 22.24 24.52 27.3\\\">penalty</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.991 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 524.8015 646.2977)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 535.363 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 538.1736 646.2977)\\\" x=\\\"0 5.56 11.12 16.12 18.4 23.96\\\">paying</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 634.9793)\\\" x=\\\"0 5.56 7.84\\\">all</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 50.8221 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 53.7614 634.9793)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 88.8395 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 91.7789 634.9793)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46 44.46\\\">Payments,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 139.0201 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 141.9594 634.9793)\\\" x=\\\"0 2.78 8.34 13.9\\\">fees</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.8608 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 163.8001 634.9793)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 180.4847 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 183.424 634.9793)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01 30.57\\\">charges</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 219.0002 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 221.9396 634.9793)\\\" x=\\\"0 2.78 8.34 13.9\\\">that</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.6192 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 241.5586 634.9793)\\\" x=\\\"0 5.56 8.89\\\">are</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.0117 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 258.951 634.9793)\\\" x=\\\"0 5.56 11.12\\\">due</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.6356 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 278.575 634.9793)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 287.4666 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 290.4059 634.9793)\\\" x=\\\"0 5.56 11.12 16.12\\\">past</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 309.3073 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 312.2466 634.9793)\\\" x=\\\"0 5.56 11.12\\\">due</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 328.9312 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 331.8705 634.9793)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.5551 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 351.4944 634.9793)\\\" x=\\\"0 5 10.56 12.84 18.4 23.96 26.74 32.3 35.63 37.91 40.19\\\">voluntarily</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 396.6898 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 399.6291 634.9793)\\\" x=\\\"0 5 10.56 13.89 17.22 22.78 28.34 33.9 39.46 42.79 45.07 50.63\\\">surrendering</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 455.8303 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 458.7696 634.9793)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.6612 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 470.6005 634.9793)\\\" x=\\\"0 3.33 8.89 11.67 17.23 20.56 26.12 28.4 33.96\\\">returning</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 510.1269 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 513.0663 634.9793)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.9676 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 529.907 634.9793)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 623.6609)\\\" x=\\\"0 2.28 7.84 10.5 12.78 15.56 20.56 23.22 28.78 32.11 34.39 39.95 42.23 47.79 53.35 55.63 58.29 63.29 68.85 74.41 79.97 82.25 85.03 87.31 92.87 98.43 101.21 103.87 106.15 111.71 116.71 121.71 124.37 127.7 133.26 138.82 143.82 149.38 154.94 160.5 166.06 168.34 173.9 176.56 183.78 189.34 194.9 198.23 200.89 206.45 212.01 217.57 220.23 223.01 228.57 234.13 237.46 240.12 245.68 248.46 251.12 253.9 259.46 265.02 267.68 273.24 278.24 283.8 286.08 289.41 294.97 297.75 300.03 305.59 311.15 313.81 319.37 322.15 324.81 330.37 335.93 340.93 343.59 345.87 351.43 356.99 361.99 367.55 370.21 372.99 378.55 381.88 390.21\\\">in its original condition, less reasonable wear and tear at the expiration of any lease term.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 612.3426)\\\" x=\\\"0 5.56 11.12 13.9\\\">Late</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.1629 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 63.3819 612.3426)\\\" x=\\\"0 6.11 11.67 17.23 22.23\\\">Fees.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 88.3917 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 91.6107 612.3426)\\\" x=\\\"0 9.44\\\">We</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 106.6107 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 109.8297 612.3426)\\\" x=\\\"0 3.33 8.89 13.89 19.45 22.78 27.78\\\">reserve</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 143.1744 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 146.3934 612.3426)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.2948 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 163.5138 612.3426)\\\" x=\\\"0 3.33 5.61 11.17 16.73\\\">right</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 183.0255 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 186.2445 612.3426)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 194.5844 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 197.8034 612.3426)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01\\\">charge</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 228.3796 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 231.5986 612.3426)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 237.1601 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 240.3791 612.3426)\\\" x=\\\"0 2.28 7.84 10.62\\\">late</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.5608 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 259.7798 612.3426)\\\" x=\\\"0 2.78 8.34\\\">fee</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 273.6811 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 276.9002 612.3426)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 288.5701 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 291.7891 612.3426)\\\" x=\\\"0 5.56 11.12 16.12\\\">past</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 310.6905 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 313.9095 612.3426)\\\" x=\\\"0 5.56 11.12\\\">due</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 330.594 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 333.8131 612.3426)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57 38.35 43.35\\\">payments,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 379.9459 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 383.1649 612.3426)\\\" x=\\\"0 5.56 8.34 11.12 16.68\\\">after</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.1747 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 406.3937 612.3426)\\\" x=\\\"0 5.56 7.84 10.12 15.68 22.9 25.18 30.74\\\">allowing</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 442.7023 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 445.9213 612.3426)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 457.5912 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 460.8102 612.3426)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 476.9333 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 480.1523 612.3426)\\\" x=\\\"0 5.56 8.89 14.45 19.45\\\">grace</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 505.1669 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 508.3859 612.3426)\\\" x=\\\"0 5.56 11.12 14.45 16.73 22.29 27.85\\\">period,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 539.0207 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 542.2397 612.3426)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 550.5796 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.7986 612.3426)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 601.0242)\\\" x=\\\"0 2.28 7.84 12.84 17.84 23.4\\\">lesser</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 67.4334 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 70.2009 601.0242)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 78.5407 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.3082 601.0242)\\\" x=\\\"0 3.33 5.61\\\">(i)</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 90.2486 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 93.0161 601.0242)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 106.9175 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 109.6849 601.0242)\\\" x=\\\"0 3.33 8.89 11.67\\\">rate</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 126.9164 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 129.6839 601.0242)\\\" x=\\\"0 5.56 7.84 10.12 15.68 22.9 28.46\\\">allowed</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 163.7122 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 166.4797 601.0242)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 177.0412 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 179.8087 601.0242)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64\\\">applicable</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.0186 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 227.7861 601.0242)\\\" x=\\\"0 2.28 7.84\\\">law</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 242.8496 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 245.6171 601.0242)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 254.5087 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 257.2761 601.0242)\\\" x=\\\"0 3.33 5.61 7.89\\\">(ii)</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 268.4968 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 271.2643 601.0242)\\\" x=\\\"0 5.56 11.12 13.9 19.46\\\">$2.00</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 296.2887 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 299.0562 601.0242)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 310.7261 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 313.4936 601.0242)\\\" x=\\\"0 7.22 12.78 18.34 23.34 25.62 30.62\\\">weekly,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 346.8969 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 349.6644 601.0242)\\\" x=\\\"0 5.56 7.84 15.06 20.62 26.18 31.18 33.46 38.46\\\">biweekly,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 390.9095 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 393.677 601.0242)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.5686 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 405.3361 601.0242)\\\" x=\\\"0 5 10.56 18.89 21.17 24.5 32.83 38.39 43.95 46.73 52.29 54.57\\\">semi-monthly</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 464.9113 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 467.6787 601.0242)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57 38.35 43.35\\\">payments,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 513.8116 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 516.579 601.0242)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 525.4706 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 528.2381 601.0242)\\\" x=\\\"0 5.56 11.12 13.9 19.46\\\">$5.00</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.2625 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 556.03 601.0242)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 589.7059)\\\" x=\\\"0 8.33 13.89 19.45 22.23 27.79 30.07 35.07 37.73 43.29 48.85 53.85 62.18 67.74 73.3 76.08 81.08\\\">monthly payments.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 578.3875)\\\" x=\\\"0 7.7783 10.5566 16.1182 21.6797\\\">Other</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 65.7098 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 68.366 578.3875)\\\" x=\\\"0 2.7783 11.1084 16.6699 22.2315 25.5615 28.3398 33.9014 39.4629\\\">Important</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 110.6072 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 113.2635 578.3875)\\\" x=\\\"0 6.1084 11.6699 15 23.3301 28.3301\\\">Terms.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 144.3719 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 147.0281 578.3875)\\\" x=\\\"0 6.6699 12.2314\\\">See</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 164.8211 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 167.4773 578.3875)\\\" x=\\\"0 2.7783 8.3398\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 181.3787 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 184.035 578.3875)\\\" x=\\\"0 5.5615 8.3398 13.9014 19.4629\\\">other</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 206.8279 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 209.4842 578.3875)\\\" x=\\\"0 5.5615 11.123 14.4531 17.2314\\\">parts</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.7156 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 234.3719 578.3875)\\\" x=\\\"0 5.5615\\\">of</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 242.7117 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 245.368 578.3875)\\\" x=\\\"0 2.7783 8.3398 10.6201\\\">this</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 260.9881 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 263.6443 578.3875)\\\" x=\\\"0 6.6699 12.2314 15.5615 21.123 26.6846 35.0147 40.5762 46.1377\\\">Agreement</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.5603 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 315.2166 578.3875)\\\" x=\\\"0 2.7783 8.3398\\\">for</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 326.8865 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 329.5428 578.3875)\\\" x=\\\"0 5.5615 11.1231 16.6846 18.9648 21.7432 24.0234 29.585 35.1465 40.708\\\">additional</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 372.531 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 375.1873 578.3875)\\\" x=\\\"0 2.2803 10.6103 16.1719 21.7334 25.0635 27.8418 33.4033 38.9648\\\">important</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 416.9305 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 419.5867 578.3875)\\\" x=\\\"0 2.2803 7.8418 10.6201 16.1816 19.5117 27.8418 33.4033 36.1816 38.4619 44.0234\\\">information</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 469.1717 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 471.8279 578.3875)\\\" x=\\\"0 5.5615\\\">on</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 482.951 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 485.6072 578.3875)\\\" x=\\\"0 2.7783 8.3398 11.6699 20 22.2803 27.8418 33.4033 36.1816 38.4619 44.0234\\\">termination</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 567.0691)\\\" x=\\\"0 5.5615 8.8916 14.4531 19.4531 25.0146 30.5762 36.1377 39.4678 45.0293 50.0293\\\">procedures,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 93.5076 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 96.1639 567.0691)\\\" x=\\\"0 5.5615 11.1231 14.4531 19.4531 25.0146 30.5762 35.5762\\\">purchase</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 137.3016 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 139.9578 567.0691)\\\" x=\\\"0 5.5615 11.123 13.9014 16.1816 21.7432\\\">option</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 167.2625 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 169.9187 567.0691)\\\" x=\\\"0 3.4301 5.8103 11.4719 17.1334 20.0117 25.1117\\\">rights,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 197.9088 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 200.665 567.0691)\\\" x=\\\"0 3.3801 8.9916 14.0416 19.6531 25.2646 30.8762 35.9262 38.2565 43.868 46.1983 48.5285 50.8588 53.6871 56.0174 61.6289\\\">responsibilities</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 267.3439 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 270.0502 567.0691)\\\" x=\\\"0 3.0283 8.8399\\\">for</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 282.4701 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 285.3764 567.0691)\\\" x=\\\"0 2.4303 8.1418 13.2918 18.4418\\\">loss,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 306.7465 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 309.5527 567.0691)\\\" x=\\\"0 5.6615 11.3231 19.7531 25.4146 31.0762\\\">damage</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 346.2904 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 349.0467 567.0691)\\\" x=\\\"0 5.8615\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 358.5383 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 361.4945 567.0691)\\\" x=\\\"0 5.6115 11.2231 16.2731 19.1014 22.4814 28.093 33.143 35.9713 38.3016 43.9131\\\">destruction</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 411.0191 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 413.7254 567.0691)\\\" x=\\\"0 5.8615\\\">of</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 422.6652 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 425.6215 567.0691)\\\" x=\\\"0 3.0283 8.8398\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 440.2729 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 443.1791 567.0691)\\\" x=\\\"0 6.7699 10.2 15.8615 21.523 27.1846 30.6146 33.493 38.593\\\">Property,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.6504 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 487.4066 567.0691)\\\" x=\\\"0 5.6615 10.7615 13.6398 19.3014 24.9629\\\">actual</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 514.7498 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 517.506 567.0691)\\\" x=\\\"0 5.6615\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.5976 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 529.3539 567.0691)\\\" x=\\\"0 2.3803 10.8103 16.4719 18.8522 21.2324 26.894\\\">implied</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 555.7508)\\\" x=\\\"0 7.2717 12.8832 16.2633 19.6434 25.2549 30.8664 33.6947 36.025 41.6365 46.6865\\\">warranties,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 90.2148 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 92.9211 555.7508)\\\" x=\\\"0 2.8283 8.4398 13.4898 19.1014 24.1514\\\">taxes,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 119.9008 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 122.607 555.7508)\\\" x=\\\"0 5.7115 8.6398 14.3514 20.0629\\\">other</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.15 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.9563 555.7508)\\\" x=\\\"0 5.1 10.7615 16.423 19.8531 25.5146 31.1762\\\">charges</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 185.2324 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 187.9887 555.7508)\\\" x=\\\"0 5.6115 11.223\\\">and</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 204.8232 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 207.5295 555.7508)\\\" x=\\\"0 5.5615 11.1231 16.6846 22.2461 24.5264 27.3047 29.585 35.1465\\\">penalties</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.676 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 250.3322 555.7508)\\\" x=\\\"0 5 10.5615\\\">you</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 266.4553 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 269.1115 555.7508)\\\" x=\\\"0 8.3301 13.8916\\\">may</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 288.0031 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 290.6594 555.7508)\\\" x=\\\"0 2.2803 7.8418 12.8418 18.4033 21.7334\\\">incur,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 315.1711 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 317.8273 555.7508)\\\" x=\\\"0 5.5615 11.123\\\">and</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 334.5119 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 337.1682 555.7508)\\\" x=\\\"0 5.5615 8.3398 13.9014 19.4629\\\">other</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.9611 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 362.6174 555.7508)\\\" x=\\\"0 2.2803 10.6103 16.1719 21.7334 25.0635 27.8418 33.4033 38.9648\\\">important</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 404.3605 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.0168 555.7508)\\\" x=\\\"0 2.2803 7.8418 10.6201 16.1816 19.5117 27.8418 33.4033 36.1816 38.4619 44.0234 49.585\\\">information.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 459.3801 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 462.0363 555.7508)\\\" x=\\\"0 6.6699 12.2314\\\">You</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 479.8293 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 482.4855 555.7508)\\\" x=\\\"0 5.5615 10.5615 15.5615 21.1231 26.6846 33.9063 36.1865 41.7481 47.3096 52.8711\\\">acknowledge</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 540.9182 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 543.5744 555.7508)\\\" x=\\\"0 2.7783 8.3398 13.9014\\\">that</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 544.4324)\\\" x=\\\"0 7.2717\\\">we</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 53.5832 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 56.2895 544.4324)\\\" x=\\\"0 5.5615 8.8916 14.4531 19.4531 21.7334 27.2949 32.8564\\\">provided</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 94.7074 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 97.3637 544.4324)\\\" x=\\\"0 5 10.5615\\\">you</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 113.4867 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 116.143 544.4324)\\\" x=\\\"0 7.2217 9.502 12.2803\\\">with</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 133.9848 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 136.641 544.4324)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 142.4525 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 145.3588 544.4324)\\\" x=\\\"0 5 10.5615 18.8916 24.4531 26.7334 32.2949 35.0733 40.6348\\\">completed</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 191.5551 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 194.2113 544.4324)\\\" x=\\\"0 5 10.5615 16.1231\\\">copy</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 215.3344 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 217.9906 544.4324)\\\" x=\\\"0 5.6115\\\">of</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 226.4305 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 229.1367 544.4324)\\\" x=\\\"0 2.7783 8.3398 10.6201\\\">this</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 244.7568 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 247.4131 544.4324)\\\" x=\\\"0 6.6699 12.2315 15.5615 21.123 26.6846 35.0146 40.5762 46.1377 48.916\\\">Agreement.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.1074 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 301.7637 544.4324)\\\" x=\\\"0 6.6699 12.2314\\\">You</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.5566 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 322.2129 544.4324)\\\" x=\\\"0 5.5615 10.5615 15.5615 21.123 26.6846 33.9062 36.1865 41.748 47.3096 52.8711\\\">acknowledge</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.6455 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 383.3017 544.4324)\\\" x=\\\"0 2.7783 8.3399 13.9014\\\">that</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 399.9814 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 402.6377 544.4324)\\\" x=\\\"0 7.2717\\\">we</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 415.5209 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 418.2271 544.4324)\\\" x=\\\"0 8.3301 13.8916 19.4531\\\">made</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 443.2418 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 445.898 544.4324)\\\" x=\\\"0 2.7783 8.3399\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 459.7994 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 462.8557 544.4324)\\\" x=\\\"0 5.5615 7.8418 12.8418 17.8418 20.1221 25.6836 30.6836 36.2451 39.5752 45.1367\\\">disclosures</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.9924 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 516.0486 544.4324)\\\" x=\\\"0 5.6115\\\">at</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 524.4885 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 527.5447 544.4324)\\\" x=\\\"0 5.6115\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 533.1141)\\\" x=\\\"0 5.5615 11.123 13.9014 19.4629 22.793\\\">before</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 69.0545 533.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 72.1107 533.1141)\\\" x=\\\"0 2.7783 8.3398\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 86.0121 533.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 89.0684 533.1141)\\\" x=\\\"0 5 10.5615 16.123 21.123 26.6846 35.0146 43.3447 48.9062 51.6846 53.9648 59.5264\\\">consummation</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 154.1562 533.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 157.2125 533.1141)\\\" x=\\\"0 5.6115\\\">of</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 165.6523 533.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 168.7086 533.1141)\\\" x=\\\"0 2.7783 8.3398\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 182.61 533.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 185.6662 533.1141)\\\" x=\\\"0 6.6699 12.2314 15.5615 21.123 26.6846 35.0146 40.5762 46.1377 48.916\\\">Agreement.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 519.7957)\\\" x=\\\"0 6.67 8.95 11.23 13.89 19.45 22.23 27.79 33.35 36.68 39.34 42.12 47.68 53.24 58.24 60.9 68.12 73.68 75.96 80.96 86.52 89.18 97.51 103.07 108.07 110.73 116.29 121.85 124.51 129.51 135.07 140.63 143.96 149.52 155.08 160.64 163.42 166.08 168.36 173.92 178.92 181.2 186.76 192.32 197.88 200.54 203.32 208.88 214.44 219.44 222.1 224.88 230.44 233.77\\\">All other fees which may be charged, include fees for:</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 22.7 506.4773)\\\" x=\\\"0 3.33 8.89\\\">(1)</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 506.4773)\\\" x=\\\"0 3.33 8.89 12.22 14.88 22.1 27.66 30.44 36 39.33 44.89 50.45 56.01 58.67 65.34 70.9 75.9 84.23 89.79 95.35 98.13 103.13 105.79 111.35 114.68 117.34 124.56 130.12 135.68 140.68 146.24 149.02 151.8 154.08 159.08 161.36 166.92 172.48 175.26 177.92 184.03 189.59 195.15 200.71 205.71 208.37 214.48 220.04 225.6 228.38 231.04 236.6 239.26 244.82 250.38 253.16 258.72\\\">(1) Returned Payments or Nonsufficient Funds Fee: $ 20.00</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:8.25pt\\\" transform=\\\"matrix(1 0 0 -1 22.7 495.159)\\\" x=\\\"0 3.663 9.779\\\">(2)</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 495.159)\\\" x=\\\"0 3.33 8.89 12.22 14.88 22.1 27.66 29.94 35.5 40.5 43.28 48.84 51.62 57.18 65.51 71.07 76.63 79.41 82.07 88.18 93.74 99.3 104.3 107.08 109.74 116.96 122.52 128.08 133.64 136.3 139.63 145.19 147.97 153.53 159.09 162.42 165.08 167.86 173.42 178.98 184.54 187.2 192.76 195.04 200.04 205.04 210.6 216.16 218.82 224.38 229.94 235.5 238.16 241.49 247.05 252.61 258.17 260.45 262.73 267.73 273.29 276.62 281.62 284.28 289.28 294.84 300.4 303.73 309.29 314.85 319.85 322.51 328.07 330.35 332.63 338.19 345.41 350.97 356.53 359.19 364.75 369.75 372.41 374.69 380.25 387.47\\\">(2) Reinstatement Fees: None (other than pickup and redelivery charges allowed by law)</text></g><clipPath id=\\\"clip1-2\\\"><path d=\\\"M 35 448 L 574 448 L 574 488 L 35 488 L 35 448 z \\\"/></clipPath><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 35.3 487.0594 L 573.1 487.0594 L 573.1 448.1043 L 35.3 448.1043 L 35.3 487.0594 z \\\"/><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 40.7 484.0594 L 567.7 484.0594 L 567.7 450.1043 L 40.7 450.1043 L 40.7 484.0594 z \\\"/><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 40.7 484.0594 L 52.7 484.0594 L 52.7 472.0594 L 40.7 472.0594 L 40.7 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 474.8406)\\\" x=\\\"0 6.67\\\">By</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 52.3699 484.0594 L 55.3699 484.0594 L 55.3699 472.0594 L 52.3699 472.0594 L 52.3699 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 52.3699 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 55.339 484.0594 L 90.339 484.0594 L 90.339 472.0594 L 55.339 472.0594 L 55.339 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 55.339 474.8406)\\\" x=\\\"0 5 7.28 12.84 18.4 20.68 26.24 31.8\\\">signing,</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 89.924 484.0594 L 92.924 484.0594 L 92.924 472.0594 L 89.924 472.0594 L 89.924 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 89.924 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 92.8931 484.0594 L 109.8931 484.0594 L 109.8931 472.0594 L 92.8931 472.0594 L 92.8931 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 92.8931 474.8406)\\\" x=\\\"0 5 10.56\\\">you</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 109.0162 484.0594 L 112.0162 484.0594 L 112.0162 472.0594 L 109.0162 472.0594 L 109.0162 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 109.0162 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 111.9853 484.0594 L 137.9853 484.0594 L 137.9853 472.0594 L 111.9853 472.0594 L 111.9853 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 111.9853 474.8406)\\\" x=\\\"0 5.56 11.12 14.45 20.01\\\">agree</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 137.5614 484.0594 L 140.5614 484.0594 L 140.5614 472.0594 L 137.5614 472.0594 L 137.5614 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 137.5615 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 140.5306 484.0594 L 157.5306 484.0594 L 157.5306 472.0594 L 140.5306 472.0594 L 140.5306 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 140.5306 474.8406)\\\" x=\\\"0 2.78 8.34 13.9\\\">that</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 157.2103 484.0594 L 160.2103 484.0594 L 160.2103 472.0594 L 157.2103 472.0594 L 157.2103 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 157.2103 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 160.1794 484.0594 L 177.1794 484.0594 L 177.1794 472.0594 L 160.1794 472.0594 L 160.1794 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 160.1794 474.8406)\\\" x=\\\"0 5 10.56\\\">you</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 176.3024 484.0594 L 179.3024 484.0594 L 179.3024 472.0594 L 176.3024 472.0594 L 176.3024 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 176.3024 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 179.2715 484.0594 L 217.2715 484.0594 L 217.2715 472.0594 L 179.2715 472.0594 L 179.2715 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 179.2715 474.8406)\\\" x=\\\"0 3.33 8.89 13.89 19.45 21.73 26.73 32.29\\\">received</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 217.128 484.0594 L 220.128 484.0594 L 220.128 472.0594 L 217.128 472.0594 L 217.128 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 217.128 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 220.0971 484.0594 L 226.0971 484.0594 L 226.0971 472.0594 L 220.0971 472.0594 L 220.0971 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 220.0971 474.8406)\\\" x=\\\"0\\\">a</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 225.6586 484.0594 L 228.6586 484.0594 L 228.6586 472.0594 L 225.6586 472.0594 L 225.6586 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.6586 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 228.6277 484.0594 L 258.6277 484.0594 L 258.6277 472.0594 L 228.6277 472.0594 L 228.6277 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 228.6277 474.8406)\\\" x=\\\"0 2.28 7.84 13.4 15.68 21.24 23.52\\\">legible</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 257.7147 484.0594 L 260.7147 484.0594 L 260.7147 472.0594 L 257.7147 472.0594 L 257.7147 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.7147 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 260.6838 484.0594 L 282.6838 484.0594 L 282.6838 472.0594 L 260.6838 472.0594 L 260.6838 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 260.6838 474.8406)\\\" x=\\\"0 5 10.56 16.12\\\">copy</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 281.8068 484.0594 L 284.8068 484.0594 L 284.8068 472.0594 L 281.8068 472.0594 L 281.8068 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.8068 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 284.7759 484.0594 L 293.7759 484.0594 L 293.7759 472.0594 L 284.7759 472.0594 L 284.7759 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 284.7759 474.8406)\\\" x=\\\"0 5.56\\\">of</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 293.1158 484.0594 L 296.1158 484.0594 L 296.1158 472.0594 L 293.1158 472.0594 L 293.1158 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 293.1158 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 296.0849 484.0594 L 312.0849 484.0594 L 312.0849 472.0594 L 296.0849 472.0594 L 296.0849 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 296.0849 474.8406)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 311.705 484.0594 L 314.705 484.0594 L 314.705 472.0594 L 311.705 472.0594 L 311.705 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 311.705 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 314.6742 484.0594 L 366.6742 484.0594 L 366.6742 472.0594 L 314.6742 472.0594 L 314.6742 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 314.6741 474.8406)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement.</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 366.3685 484.0594 L 369.3685 484.0594 L 369.3685 472.0594 L 366.3685 472.0594 L 366.3685 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 366.3685 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 369.3376 484.0594 L 387.3376 484.0594 L 387.3376 472.0594 L 369.3376 472.0594 L 369.3376 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 369.3376 474.8406)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 387.1306 484.0594 L 390.1306 484.0594 L 390.1306 472.0594 L 387.1306 472.0594 L 387.1306 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 387.1306 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 390.0997 484.0594 L 416.0997 484.0594 L 416.0997 472.0594 L 390.0997 472.0594 L 390.0997 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 390.0997 474.8406)\\\" x=\\\"0 5.56 11.12 14.45 20.01\\\">agree</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 415.6759 484.0594 L 418.6759 484.0594 L 418.6759 472.0594 L 415.6759 472.0594 L 415.6759 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 415.6759 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 418.645 484.0594 L 427.645 484.0594 L 427.645 472.0594 L 418.645 472.0594 L 418.645 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 418.645 474.8406)\\\" x=\\\"0 2.78\\\">to</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 426.9848 484.0594 L 429.9848 484.0594 L 429.9848 472.0594 L 426.9848 472.0594 L 426.9848 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 426.9848 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 429.9539 484.0594 L 443.9539 484.0594 L 443.9539 472.0594 L 429.9539 472.0594 L 429.9539 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 429.9539 474.8406)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 443.8553 484.0594 L 446.8553 484.0594 L 446.8553 472.0594 L 443.8553 472.0594 L 443.8553 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 443.8553 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 446.8244 484.0594 L 471.8244 484.0594 L 471.8244 472.0594 L 446.8244 472.0594 L 446.8244 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 446.8244 474.8406)\\\" x=\\\"0 2.78 8.34 11.67 20\\\">terms</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 471.8244 484.0594 L 474.8244 484.0594 L 474.8244 472.0594 L 471.8244 472.0594 L 471.8244 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 471.8244 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 474.7935 484.0594 L 483.7935 484.0594 L 483.7935 472.0594 L 474.7935 472.0594 L 474.7935 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 474.7935 474.8406)\\\" x=\\\"0 5.56\\\">of</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 483.1334 484.0594 L 486.1334 484.0594 L 486.1334 472.0594 L 483.1334 472.0594 L 483.1334 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 483.1334 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 486.1025 484.0594 L 502.1025 484.0594 L 502.1025 472.0594 L 486.1025 472.0594 L 486.1025 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 486.1025 474.8406)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 501.7226 484.0594 L 504.7226 484.0594 L 504.7226 472.0594 L 501.7226 472.0594 L 501.7226 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.7226 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 504.6917 484.0594 L 553.6918 484.0594 L 553.6918 472.0594 L 504.6917 472.0594 L 504.6917 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 504.6917 474.8406)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 553.6078 484.0594 L 556.6078 484.0594 L 556.6078 472.0594 L 553.6078 472.0594 L 553.6078 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.6078 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 556.5769 484.0594 L 568.5769 484.0594 L 568.5769 472.0594 L 556.5769 472.0594 L 556.5769 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 556.5769 474.8406)\\\" x=\\\"0 5.56\\\">on</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 567.7 484.0594 L 570.7 484.0594 L 570.7 472.0594 L 567.7 472.0594 L 567.7 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 40.7 472.741 L 51.7 472.741 L 51.7 460.741 L 40.7 460.741 L 40.7 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 463.5223)\\\" x=\\\"0 5.56 7.84\\\">all</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 50.8221 472.741 L 54.8221 472.741 L 54.8221 460.741 L 50.8221 460.741 L 50.8221 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 50.8221 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 54.1471 472.741 L 60.1471 472.741 L 60.1471 460.741 L 54.1471 460.741 L 54.1471 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 54.1471 463.5223)\\\" x=\\\"0\\\">6</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 59.7087 472.741 L 63.7087 472.741 L 63.7087 460.741 L 59.7087 460.741 L 59.7087 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 59.7087 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 63.0337 472.741 L 94.0337 472.741 L 94.0337 460.741 L 63.0337 460.741 L 63.0337 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 63.0337 463.5223)\\\" x=\\\"0 5.56 11.12 16.68 22.24 27.24\\\">pages,</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 93.0582 472.741 L 97.0582 472.741 L 97.0582 460.741 L 93.0582 460.741 L 93.0582 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 93.0582 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 96.3832 472.741 L 136.3832 472.741 L 136.3832 460.741 L 96.3832 460.741 L 96.3832 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 96.3832 463.5223)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24 28.52 34.08\\\">including</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 136.0317 472.741 L 140.0317 472.741 L 140.0317 460.741 L 136.0317 460.741 L 136.0317 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.0317 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 139.3568 472.741 L 153.3568 472.741 L 153.3568 460.741 L 139.3568 460.741 L 139.3568 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 139.3568 463.5223)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 153.2581 472.741 L 157.2581 472.741 L 157.2581 460.741 L 153.2581 460.741 L 153.2581 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 153.2581 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 156.5832 472.741 L 203.5832 472.741 L 203.5832 460.741 L 156.5832 460.741 L 156.5832 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 156.5832 463.5223)\\\" x=\\\"0 3.55 10.77 16.33 21.33 24.11 29.67 38 43.56\\\">&quot;Customer</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 203.4777 472.741 L 207.4777 472.741 L 207.4777 460.741 L 203.4777 460.741 L 203.4777 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 203.4777 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 206.8028 472.741 L 265.8028 472.741 L 265.8028 460.741 L 206.8028 460.741 L 206.8028 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 206.8028 463.5223)\\\" x=\\\"0 6.67 12.23 15.01 20.57 26.13 29.46 31.74 36.74 42.3 45.08 47.36 52.92\\\">Authorization</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 265.2891 472.741 L 269.2891 472.741 L 269.2891 460.741 L 265.2891 460.741 L 265.2891 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 265.2891 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 268.6142 472.741 L 280.6142 472.741 L 280.6142 460.741 L 268.6142 460.741 L 268.6142 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 268.6142 463.5223)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 280.2841 472.741 L 284.2841 472.741 L 284.2841 460.741 L 280.2841 460.741 L 280.2841 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.2841 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 283.6092 472.741 L 328.6092 472.741 L 328.6092 460.741 L 283.6092 460.741 L 283.6092 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 283.6092 463.5223)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46\\\">Payments</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 328.0721 472.741 L 332.0721 472.741 L 332.0721 460.741 L 328.0721 460.741 L 328.0721 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 328.0721 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 331.3972 472.741 L 344.3972 472.741 L 344.3972 460.741 L 331.3972 460.741 L 331.3972 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 331.3972 463.5223)\\\" x=\\\"0 5 7.28\\\">via</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 344.239 472.741 L 348.239 472.741 L 348.239 460.741 L 344.239 460.741 L 344.239 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 344.239 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 347.564 472.741 L 375.564 472.741 L 375.564 460.741 L 347.564 460.741 L 347.564 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 347.564 463.5223)\\\" x=\\\"0 6.67 13.89 21.11 23.89\\\">ACH,&quot;</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 375.0055 472.741 L 379.0055 472.741 L 379.0055 460.741 L 375.0055 460.741 L 375.0055 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.0054 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 378.3305 472.741 L 392.3305 472.741 L 392.3305 460.741 L 378.3305 460.741 L 378.3305 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 378.3305 463.5223)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 392.2319 472.741 L 396.2319 472.741 L 396.2319 460.741 L 392.2319 460.741 L 392.2319 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 392.2319 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 395.557 472.741 L 445.557 472.741 L 445.557 460.741 L 395.557 460.741 L 395.557 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 395.557 463.5223)\\\" x=\\\"0 3.55 10.22 13.55 19.11 21.39 24.17 27.5 33.06 35.84 38.12 43.68\\\">&quot;Arbitration</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 444.8001 472.741 L 448.8001 472.741 L 448.8001 460.741 L 444.8001 460.741 L 444.8001 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 444.8001 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 448.1252 472.741 L 480.1252 472.741 L 480.1252 460.741 L 448.1252 460.741 L 448.1252 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 448.1252 463.5223)\\\" x=\\\"0 7.22 9.5 15.06 20.62 25.62\\\">Clause</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 479.3117 472.741 L 483.3117 472.741 L 483.3117 460.741 L 479.3117 460.741 L 479.3117 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 479.3117 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 482.6368 472.741 L 499.6368 472.741 L 499.6368 460.741 L 482.6368 460.741 L 482.6368 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 482.6368 463.5223)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 499.3214 472.741 L 503.3214 472.741 L 503.3214 460.741 L 499.3214 460.741 L 499.3214 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.3214 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 502.6465 472.741 L 534.6465 472.741 L 534.6465 460.741 L 502.6465 460.741 L 502.6465 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 502.6465 463.5223)\\\" x=\\\"0 9.44 15 17.28 22.28 27.84\\\">Waiver</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 533.8184 472.741 L 537.8184 472.741 L 537.8184 460.741 L 533.8184 460.741 L 533.8184 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 533.8183 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 537.1434 472.741 L 546.1434 472.741 L 546.1434 460.741 L 537.1434 460.741 L 537.1434 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 537.1434 463.5223)\\\" x=\\\"0 5.56\\\">of</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 545.4833 472.741 L 549.4833 472.741 L 549.4833 460.741 L 545.4833 460.741 L 545.4833 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 545.4833 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 548.8083 472.741 L 567.8083 472.741 L 567.8083 460.741 L 548.8083 460.741 L 548.8083 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 548.8083 463.5223)\\\" x=\\\"0 5 10.56 13.89\\\">Jury</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 567.7 472.741 L 570.7 472.741 L 570.7 460.741 L 567.7 460.741 L 567.7 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 40.7 461.4227 L 187.7 461.4227 L 187.7 449.4227 L 40.7 449.4227 L 40.7 461.4227 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 452.2039)\\\" x=\\\"0 6.11 9.44 11.72 17.28 19.56 22.34 25.89 28.55 34.11 39.67 45.23 47.89 50.67 56.23 61.79 64.45 70.01 72.79 78.35 83.91 87.24 89.9 92.68 98.24 101.57 109.9 114.9 117.56 123.12 128.68 130.96 136.52 143.74\\\">Trial,&quot; and the other terms below.</text></g><clipPath id=\\\"clip1-3\\\"><path d=\\\"M 35 404 L 574 404 L 574 449 L 35 449 L 35 404 z \\\"/></clipPath><g clip-path=\\\"url(#clip1-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 435.7132)\\\" x=\\\"0 7.22 12.78 17.78 20.56 26.12 34.45 40.01 43.34 46 52.67 54.95 60.51 66.07 71.63 74.41 79.97 83.3 88.86\\\">Customer Signature:</text></g><clipPath id=\\\"clip1-4\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip1-4)\\\" fill=\\\"#fff\\\" stroke=\\\"none\\\" d=\\\"M 409.8 425.0359 L 439.8433 425.0359 L 439.8433 417.0244 L 409.8 417.0244 L 409.8 425.0359 z \\\"/><clipPath id=\\\"clip1-5\\\"><path d=\\\"M 409 417 L 440 417 L 440 426 L 409 426 L 409 417 z \\\"/></clipPath><path clip-path=\\\"url(#clip1-5)\\\" fill=\\\"#fff\\\" stroke=\\\"none\\\" d=\\\"M 409.8 425.0359 L 439.55 425.0359 L 439.55 423.9041 L 409.8 423.9041 L 409.8 425.0359 z \\\"/><path clip-path=\\\"url(#clip1-5)\\\" fill=\\\"#fff\\\" stroke=\\\"none\\\" d=\\\"M 409.8 425.0359 L 416.8 425.0359 L 416.8 423.0359 L 409.8 423.0359 L 409.8 425.0359 z \\\"/><g clip-path=\\\"url(#clip1-5)\\\"><text stroke=\\\"none\\\" fill=\\\"#fff\\\" style=\\\"font-family:f1-2; font-size:0.75pt\\\" transform=\\\"matrix(1 0 0 -1 409.8 424.1141)\\\" x=\\\"0 0.722 1.5 2.222 2.944 3.496 4.163 4.996 5.663 5.941\\\">DOCU_EMAIL</text></g><clipPath id=\\\"clip1-6\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip1-6)\\\" fill=\\\"#fff\\\" stroke=\\\"none\\\" d=\\\"M 164.15 417.4676 L 192.2025 417.4676 L 192.2025 406.447 L 164.15 406.447 L 164.15 417.4676 z \\\"/><clipPath id=\\\"clip1-7\\\"><path d=\\\"M 164 407 L 192 407 L 192 418 L 164 418 L 164 407 z \\\"/></clipPath><g clip-path=\\\"url(#clip1-7)\\\"><text stroke=\\\"none\\\" fill=\\\"#fff\\\" style=\\\"font-family:f1-2; font-size:0.75pt\\\" transform=\\\"matrix(1 0 0 -1 164.15 416.5457)\\\" x=\\\"0 0.722 1.5 2.222 2.944 3.496 4.163 4.441 5.219\\\">DOCU_SIGN</text></g><clipPath id=\\\"clip1-8\\\"><path d=\\\"M 35 343 L 389 343 L 389 405 L 35 405 L 35 343 z \\\"/></clipPath><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 392.5858)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 57.9314 392.5858)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 62.5791 392.5858)\\\" x=\\\"0 5.56 11.12 16.68 21.68\\\">Lease</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 89.8252 392.5858)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 94.4728 392.5858)\\\" x=\\\"0 7.22 12.78 21.11 26.67 32.23 37.79 42.79 44.7\\\">Company&apos;s</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 144.1798 392.5858)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.8275 392.5858)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 28.35 30.63 35.63 41.19\\\">authorized</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 195.5853 392.5858)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 200.2329 392.5858)\\\" x=\\\"0 5 7.28 12.84 18.4 23.96 26.74 32.3 35.63\\\">signature</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 241.4292 392.5858)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 246.0768 392.5858)\\\" x=\\\"0 2.28 7.84 13.4 15.68 20.68 26.24 29.02 34.58\\\">indicates</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 285.6618 392.5858)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 290.3094 392.5858)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 304.2108 392.5858)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 308.8584 392.5858)\\\" x=\\\"0 5.56 11.12 16.68 21.68\\\">Lease</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 336.1045 392.5858)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 340.7521 392.5858)\\\" x=\\\"0 7.22 12.78 21.11 26.67 32.23 37.79\\\">Company</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.55 392.5858)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 381.2675)\\\" x=\\\"0 5.56 11.12\\\">has</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 56.823 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 59.5613 381.2675)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.68 29.46 35.02\\\">accepted</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 100.1472 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 102.8854 381.2675)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 116.7868 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 119.525 381.2675)\\\" x=\\\"0 2.78 8.34 11.67 20 25\\\">terms,</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 147.3033 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 150.0416 381.2675)\\\" x=\\\"0 5 10.56 16.12 21.68 23.96 26.74 29.02 34.58 40.14\\\">conditions</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 195.1881 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 197.9263 381.2675)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 214.6109 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 217.3491 381.2675)\\\" x=\\\"0 5.56 11.12 13.4 15.68 21.24 26.8 29.58 31.86 37.42 42.98\\\">obligations</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 265.3374 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 268.0756 381.2675)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.4154 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 279.1537 381.2675)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 293.055 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 295.7933 381.2675)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 344.7093 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 347.4475 381.2675)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 364.1321 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 366.8703 381.2675)\\\" x=\\\"0 2.78 8.34 13.9\\\">that</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.55 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 369.9491)\\\" x=\\\"0 2.78 8.34 13.9 16.56 22.12 27.68 33.24 38.24 43.8 46.46 53.68 59.24 67.57 73.13 78.69 84.25 89.25 91.91 97.47 103.03 106.36 111.92 117.48 122.48 125.14 127.92 133.48 136.14 138.92 144.48 146.76 151.76 154.42 161.09 166.65 169.98 175.54 181.1 189.43 194.99 200.55 203.33\\\">the Lease Company agrees to this Agreement.</text></g><clipPath id=\\\"clip1-10\\\"><path d=\\\"M 388 343 L 574 343 L 574 405 L 388 405 L 388 343 z \\\"/></clipPath><g clip-path=\\\"url(#clip1-10)\\\"><g transform=\\\"matrix(0.75 0 0 -0.7619 416.525 401.8046)\\\"><image xlink:href=\\\"data:image/png;base64,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\\\" width=\\\"172\\\" height=\\\"42\\\" id=\\\"img43-0-9\\\"/></g></g><g clip-path=\\\"url(#clip1-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 394.35 359.0858)\\\" x=\\\"0 6.67 12.23 17.79 23.35 26.01 33.23 39.34 47.12 49.78 55.34 60.9 68.12 70.78 77.45 82.45 85.23 87.89 96.22 101.78 104.56 107.34 110 116.67 120 125.56 132.78 138.34 140.62 146.18\\\">Snap RTO LLC By: Matt Browning</text></g><g clip-path=\\\"url(#clip1-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 394.35 347.7675)\\\" x=\\\"0 6.11 8.39 11.17 13.45 19.01 21.79 24.45 31.67 39.45\\\">Title: COO</text></g><clipPath id=\\\"clip1-11\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 770.2 L 573.6 770.2 L 573.6 769.2 L 34.8 769.2 L 34.8 770.2 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.6 769.2 L 573.6 769.2 L 573.6 487.5594 L 572.6 487.5594 L 572.6 769.2 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 769.2 L 35.8 769.2 L 35.8 487.5594 L 34.8 487.5594 L 34.8 769.2 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 487.5594 L 573.6 487.5594 L 573.6 486.5594 L 34.8 486.5594 L 34.8 487.5594 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.6 486.5594 L 573.6 486.5594 L 573.6 448.6043 L 572.6 448.6043 L 572.6 486.5594 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 486.5594 L 35.8 486.5594 L 35.8 448.6043 L 34.8 448.6043 L 34.8 486.5594 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 448.6043 L 573.6 448.6043 L 573.6 447.6043 L 34.8 447.6043 L 34.8 448.6043 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.6 447.6043 L 573.6 447.6043 L 573.6 405.3046 L 572.6 405.3046 L 572.6 447.6043 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 447.6043 L 35.8 447.6043 L 35.8 405.3046 L 34.8 405.3046 L 34.8 447.6043 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 405.3046 L 389.45 405.3046 L 389.45 404.3046 L 34.8 404.3046 L 34.8 405.3046 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 344.1679 L 389.45 344.1679 L 389.45 343.1679 L 34.8 343.1679 L 34.8 344.1679 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 404.3046 L 35.8 404.3046 L 35.8 344.1679 L 34.8 344.1679 L 34.8 404.3046 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 389.45 405.3046 L 573.6 405.3046 L 573.6 404.3046 L 389.45 404.3046 L 389.45 405.3046 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 389.45 344.1679 L 573.6 344.1679 L 573.6 343.1679 L 389.45 343.1679 L 389.45 344.1679 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.6 404.3046 L 573.6 404.3046 L 573.6 344.1679 L 572.6 344.1679 L 572.6 404.3046 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 388.45 404.3046 L 389.45 404.3046 L 389.45 344.1679 L 388.45 344.1679 L 388.45 404.3046 z \\\"/><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 331.4491)\\\" x=\\\"0 7.22 15 21.11 23.89 31.11\\\">NOTICE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 70.8783 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 73.8798 331.4491)\\\" x=\\\"0 6.11\\\">TO</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 87.7666 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 90.7681 331.4491)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 110.7681 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 113.7696 331.4491)\\\" x=\\\"0 7.22 15 22.22 28.89 36.11 44.44 51.11 58.33\\\">CONSUMER:</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 174.8829 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 177.8844 331.4491)\\\" x=\\\"0 6.67 14.45\\\">YOU</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 199.5543 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 202.5558 331.4491)\\\" x=\\\"0 7.22 13.89 20.56\\\">HAVE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 229.7873 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 232.7888 331.4491)\\\" x=\\\"0 7.22\\\">NO</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.7888 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 250.7903 331.4491)\\\" x=\\\"0 7.78 17.22 24.44 31.11 38.33 45 52.22 55\\\">OWNERSHIP</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.4603 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 315.4618 331.4491)\\\" x=\\\"0 7.22 10 17.78 25 31.11\\\">RIGHTS</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 353.2401 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 356.2416 331.4491)\\\" x=\\\"0 2.78\\\">IN</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 366.2416 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 369.2431 331.4491)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 389.2431 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 392.2447 331.4491)\\\" x=\\\"0 6.67 13.89 21.67 28.34 35.01 42.23 48.34\\\">PROPERTY</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.2544 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 450.256 331.4491)\\\" x=\\\"0 7.22 14.44 20 26.67 33.34\\\">UNLESS</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 490.2706 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 493.2721 331.4491)\\\" x=\\\"0 6.67 13.89\\\">AND</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 514.3854 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 517.3869 331.4491)\\\" x=\\\"0 7.22 14.44 20.55 23.33\\\">UNTIL</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 546.2785 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 549.2801 331.4491)\\\" x=\\\"0 6.67 14.45\\\">YOU</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 320.1308)\\\" x=\\\"0 6.67 12.23 18.9 26.12\\\">ELECT</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 65.3315 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 71.359 320.1308)\\\" x=\\\"0 6.11\\\">TO</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 85.2457 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 91.2732 320.1308)\\\" x=\\\"0 6.67 13.34 20.56 28.34 36.67\\\">BECOME</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 134.613 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 140.6406 320.1308)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.6406 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 166.6681 320.1308)\\\" x=\\\"0 7.78 17.22 24.44 31.11\\\">OWNER</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 204.9982 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 211.0257 320.1308)\\\" x=\\\"0 7.78\\\">OF</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 224.9124 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 230.9399 320.1308)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 250.9399 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 256.9675 320.1308)\\\" x=\\\"0 6.67 13.89 21.67 28.34 35.01 42.23 48.34\\\">PROPERTY</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 311.9772 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 318.0048 320.1308)\\\" x=\\\"0 6.67 12.78 18.89 25.56\\\">AFTER</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 350.7831 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 356.8106 320.1308)\\\" x=\\\"0 8.33 15 21.67 24.45 31.67\\\">MAKING</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 396.2588 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 402.2864 320.1308)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 422.2864 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 428.3139 320.1308)\\\" x=\\\"0 7.22 13.89 21.11 27.78 34.45 41.12 47.79 55.01\\\">NECESSARY</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.9984 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 496.026 320.1308)\\\" x=\\\"0 6.67 13.34 20.01 28.34 35.01 42.23 48.34\\\">PAYMENTS</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.0357 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0633 320.1308)\\\" x=\\\"0 6.11\\\">TO</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 308.8124)\\\" x=\\\"0 6.67 13.89 21.67 28.89 31.67 38.89\\\">ACQUIRE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 78.6615 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 82.9084 308.8124)\\\" x=\\\"0 7.78 17.22 24.44 31.11 38.33 45 52.22 55 61.67\\\">OWNERSHIP,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 147.3567 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 151.6035 308.8124)\\\" x=\\\"0 6.67 13.89\\\">AND</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 172.7168 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 176.9637 308.8124)\\\" x=\\\"0 6.67 14.45\\\">YOU</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 198.6336 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 202.8805 308.8124)\\\" x=\\\"0 7.22 13.89 20.56\\\">HAVE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 230.112 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 234.3589 308.8124)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 254.3589 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 258.6057 308.8124)\\\" x=\\\"0 5.56 12.23 20.01 26.68\\\">LEGAL</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.8469 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 295.0938 308.8124)\\\" x=\\\"0 6.67 13.89 20 27.22 35 42.22 45 51.11\\\">AUTHORITY</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 352.8722 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 357.119 308.8124)\\\" x=\\\"0 6.11\\\">TO</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.0058 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 375.2527 308.8124)\\\" x=\\\"0 6.67 13.89 21.11 27.78 34.45\\\">ACCEPT</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 415.8142 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 420.0611 308.8124)\\\" x=\\\"0 6.11 8.89 15 20.56\\\">TITLE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.2876 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 451.5345 308.8124)\\\" x=\\\"0 6.11\\\">TO</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 465.4212 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 469.6681 308.8124)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.6681 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 493.915 308.8124)\\\" x=\\\"0 6.67 13.89 21.67 28.34 35.01 42.23 48.34 55.01\\\">PROPERTY.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.7031 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 555.95 308.8124)\\\" x=\\\"0 7.22\\\">DO</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 297.494)\\\" x=\\\"0 7.22 15\\\">NOT</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 54.2084 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 57.2636 297.494)\\\" x=\\\"0 6.67 9.45 17.23\\\">SIGN</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 81.7118 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 84.767 297.494)\\\" x=\\\"0 6.11 13.33 16.11\\\">THIS</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 107.5453 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 110.6005 297.494)\\\" x=\\\"0 6.67 14.45 21.67 28.34 35.01 43.34 50.01 57.23\\\">AGREEMENT</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 173.9404 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 176.9956 297.494)\\\" x=\\\"0 6.67 13.34 19.45 27.23 34.45\\\">BEFORE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 218.1137 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 221.1689 297.494)\\\" x=\\\"0 6.67 14.45\\\">YOU</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 242.8389 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 245.8941 297.494)\\\" x=\\\"0 7.22 13.89 20.56\\\">READ</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 273.6773 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 276.7325 297.494)\\\" x=\\\"0 6.67 12.23\\\">ALL</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 294.5254 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 297.5806 297.494)\\\" x=\\\"0 6.67 13.34 21.12 27.79\\\">PAGES</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 332.0386 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 335.0938 297.494)\\\" x=\\\"0 7.78\\\">OF</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.9805 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 352.0357 297.494)\\\" x=\\\"0 2.78\\\">IT</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 360.9225 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 363.9777 297.494)\\\" x=\\\"0 7.78\\\">OR</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 378.9777 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 382.0329 297.494)\\\" x=\\\"0 2.78\\\">IF</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 390.9196 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 393.9748 297.494)\\\" x=\\\"0 2.78\\\">IT</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.8615 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 405.9167 297.494)\\\" x=\\\"0 7.22 15 22.22 28.33 35 37.78 45\\\">CONTAINS</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 457.5866 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 460.6418 297.494)\\\" x=\\\"0 6.67 13.89\\\">ANY</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 481.2033 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 484.2585 297.494)\\\" x=\\\"0 6.67 12.23 18.9 26.12\\\">BLANK</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 517.0515 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 520.1067 297.494)\\\" x=\\\"0 6.67 13.34 20.01 27.23\\\">SPACE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 554.0081 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0633 297.494)\\\" x=\\\"0 6.11\\\">TO</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 286.1757)\\\" x=\\\"0 6.67\\\">BE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 46.4398 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 49.3908 286.1757)\\\" x=\\\"0 6.11 8.89 14.45 20.01 26.68\\\">FILLED</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 83.2922 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 86.2431 286.1757)\\\" x=\\\"0 2.78 10\\\">IN.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 99.0214 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 101.9724 286.1757)\\\" x=\\\"0 6.67 14.45\\\">YOU</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 123.6423 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 126.5933 286.1757)\\\" x=\\\"0 6.67 13.89\\\">ARE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 147.1548 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 150.1057 286.1757)\\\" x=\\\"0 6.67 13.89 20 22.78 28.89 34.45 41.12\\\">ENTITLED</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 198.4456 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 201.3965 286.1757)\\\" x=\\\"0 6.11\\\">TO</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 215.2832 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 218.2342 286.1757)\\\" x=\\\"0\\\">A</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 224.9041 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 227.8551 286.1757)\\\" x=\\\"0 7.22 15 23.33 30 35.56 42.23 48.34 55.01 60.57\\\">COMPLETELY</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 295.0963 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 298.0472 286.1757)\\\" x=\\\"0 6.11 8.89 14.45 20.01 26.68 33.9 37.23 40.01\\\">FILLED-IN</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 345.2787 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 348.2296 286.1757)\\\" x=\\\"0 7.22 15 21.67\\\">COPY</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 376.5695 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 379.5204 286.1757)\\\" x=\\\"0 7.78\\\">OF</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.4071 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 396.3581 286.1757)\\\" x=\\\"0 6.11 13.33 16.11\\\">THIS</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.1364 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 422.0874 286.1757)\\\" x=\\\"0 6.67 14.45 21.67 28.34 35.01 43.34 50.01 57.23\\\">AGREEMENT</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 485.4272 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 488.3781 286.1757)\\\" x=\\\"0 9.44 16.66 23.33\\\">WHEN</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 518.9299 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 521.8809 286.1757)\\\" x=\\\"0 6.67 14.45\\\">YOU</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 543.5508 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 546.5017 286.1757)\\\" x=\\\"0 6.67 9.45 17.23\\\">SIGN</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 274.8573)\\\" x=\\\"0 2.78 8.89\\\">IT.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 261.539)\\\" x=\\\"0 6.11 12.78 20 28.33 31.11 38.33 45 51.11 53.89 61.67 68.89\\\">TERMINATION.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 104.765 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 108.0706 261.539)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 125.8636 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 129.1692 261.539)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 148.0608 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 151.3663 261.539)\\\" x=\\\"0 2.78 8.34 11.67 20 22.28 27.84 33.4 36.18\\\">terminate</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 193.1095 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 196.4151 261.539)\\\" x=\\\"0 3.33 8.89 14.45 20.01\\\">(end)</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 219.7598 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 223.0654 261.539)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.6855 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 241.9911 261.539)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.9071 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 294.2127 261.539)\\\" x=\\\"0 5.56\\\">at</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.5525 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 305.8581 261.539)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.7595 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 323.065 261.539)\\\" x=\\\"0 5.56 11.12\\\">end</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 339.7496 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 343.0552 261.539)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.395 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 354.7006 261.539)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 370.8236 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 374.1292 261.539)\\\" x=\\\"0 2.28 7.84 13.4 18.4\\\">lease</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 398.0941 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 401.3996 261.539)\\\" x=\\\"0 2.78 8.34 11.67\\\">term</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 421.3996 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 424.7052 261.539)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 435.2667 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 438.5723 261.539)\\\" x=\\\"0 5 10.56 13.34 15.62 20.62 23.4 28.4 30.68 36.24\\\">satisfying</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 480.3741 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 483.6796 261.539)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 497.581 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 500.8866 261.539)\\\" x=\\\"0 3.33 8.89 14.45 20.01 22.29 25.62 31.18 39.51 45.07 50.63 53.41\\\">requirements</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.3046 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 562.6101 261.539)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 250.2206)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 48.7201 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 51.7761 250.2206)\\\" x=\\\"0 5.56 11.12 14.45 20.01 25.57 28.9 34.46 40.02 45.58\\\">paragraph.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 100.1453 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 103.2013 250.2206)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 120.9943 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 124.0503 250.2206)\\\" x=\\\"0 8.33 13.89 18.89\\\">must</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 145.7202 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.7762 250.2206)\\\" x=\\\"0 5.56 8.89 14.45 22.78 28.34 31.12 33.4\\\">promptly</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 187.1795 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 190.2355 250.2206)\\\" x=\\\"0 3.33 8.89 11.67 17.23 20.56\\\">return</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 216.3586 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 219.4146 250.2206)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.3159 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 236.3719 250.2206)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 274.1649 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 277.2209 250.2206)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 285.5608 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 288.6168 250.2206)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.1783 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 302.2343 250.2206)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 310.0761 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 313.1321 250.2206)\\\" x=\\\"0 5.56 10.56 15.56 21.12 24.45 30.01 35.57 41.13 46.13\\\">accordance</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 364.8313 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 367.8874 250.2206)\\\" x=\\\"0 7.22 9.5 12.28\\\">with</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 385.7291 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 388.7852 250.2206)\\\" x=\\\"0 5.56 11.12\\\">our</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.2383 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 406.2943 250.2206)\\\" x=\\\"0 5.56 7.84 11.17 16.73 21.73 24.51 26.79 32.35 37.91\\\">directions</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 449.2093 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 452.2653 250.2206)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.9499 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 472.0059 250.2206)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 488.129 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 491.185 250.2206)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57 33.35\\\">amounts</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.5395 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 532.5955 250.2206)\\\" x=\\\"0 5.56 10.56 15.56 18.89 24.45 30.01 35.57\\\">accrued.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 238.9022)\\\" x=\\\"0 9.44\\\">We</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 48.1 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 51.2677 238.9022)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 70.1593 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 73.327 238.9022)\\\" x=\\\"0 2.78 8.34 11.67 20 22.28 27.84 33.4 36.18\\\">terminate</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 115.0702 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 118.2379 238.9022)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 133.858 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 137.0257 238.9022)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 185.9417 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 189.1094 238.9022)\\\" x=\\\"0 5.56\\\">at</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 197.4493 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 200.617 238.9022)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 216.74 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 219.9077 238.9022)\\\" x=\\\"0 2.78 5.06 13.39\\\">time</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.8579 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 242.0256 238.9022)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.0842 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 250.2519 238.9022)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 266.375 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 269.5427 238.9022)\\\" x=\\\"0 5.56 8.89\\\">are</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 283.9958 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 287.1635 238.9022)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 295.0053 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 298.173 238.9022)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 27.3\\\">default</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 328.256 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 331.4237 238.9022)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 339.7636 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 342.9313 238.9022)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 362.3844 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 365.5521 238.9022)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.9066 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.0743 238.9022)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 415.9659 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 419.1336 238.9022)\\\" x=\\\"0 5.56 8.34 13.9 19.46\\\">other</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 441.9266 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 445.0943 238.9022)\\\" x=\\\"0 5.56 11.12 13.4 15.68 21.24 26.8 29.58 31.86 37.42 42.98 47.98\\\">obligations.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 495.8609 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 499.0286 238.9022)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 516.8216 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 519.9893 238.9022)\\\" x=\\\"0 8.33 13.89 18.89\\\">must</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 541.6592 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 544.8269 238.9022)\\\" x=\\\"0 3.33 8.89 11.67 17.23 20.56\\\">return</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 227.5839)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.0014 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 50.6007 227.5839)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 88.3937 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 91.9931 227.5839)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 100.3329 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 103.9323 227.5839)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 117.8336 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 121.433 227.5839)\\\" x=\\\"0 5.56 7.84 13.4 18.4\\\">place</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 145.3978 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.9972 227.5839)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 161.7804 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 165.3797 227.5839)\\\" x=\\\"0 5.56 11.12 16.12 18.4 23.96 29.52 35.08 37.86 43.42\\\">designate.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 211.5858 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 215.1852 227.5839)\\\" x=\\\"0 7.22 12.78 18.34\\\">Upon</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 239.0914 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 242.6908 227.5839)\\\" x=\\\"0 2.78 8.34 11.67 20 22.28 27.84 33.4 36.18 38.46 44.02 49.58\\\">termination,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 295.0541 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 298.6534 227.5839)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 314.7765 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 318.3758 227.5839)\\\" x=\\\"0 5.56 11.12 14.45 20.01\\\">agree</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 343.952 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 347.5513 227.5839)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.8912 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 359.4905 227.5839)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.6136 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 379.2129 227.5839)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.1143 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 396.7137 227.5839)\\\" x=\\\"0 2.78 8.34 10.62 12.9 18.46 25.68 27.96 33.52\\\">following</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 435.8006 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 439.3999 227.5839)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01 30.57 35.57\\\">charges:</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 477.7544 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 481.3538 227.5839)\\\" x=\\\"0 6.67 12.23\\\">Any</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 498.5852 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 502.1846 227.5839)\\\" x=\\\"0 5.56 11.12 16.68 22.24 24.52\\\">unpaid</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 532.2725 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 535.8718 227.5839)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 216.2655)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46 44.46\\\">Payments,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 80.3412 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 83.8455 216.2655)\\\" x=\\\"0 2.78 8.34 13.9\\\">fees</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 102.7469 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 106.2512 216.2655)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 122.9358 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 126.4401 216.2655)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01 30.57 35.57\\\">charges,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 164.7946 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 168.299 216.2655)\\\" x=\\\"0 5.56 7.84 13.4\\\">plus</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 186.7023 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 190.2066 216.2655)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 206.3297 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 209.834 216.2655)\\\" x=\\\"0 5.56 8.34 11.12 13.4 18.4 20.68 26.24\\\">official</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.3545 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 241.8588 216.2655)\\\" x=\\\"0 2.78 8.34 13.9\\\">fees</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 260.7602 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 264.2645 216.2655)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.9491 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 284.4534 216.2655)\\\" x=\\\"0 2.78 8.34 13.34 18.9\\\">taxes</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.3548 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 311.8591 216.2655)\\\" x=\\\"0 2.28 10.61 16.17 21.73 26.73 32.29\\\">imposed</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 349.7156 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 353.2199 216.2655)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 361.0617 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 364.566 216.2655)\\\" x=\\\"0 5 10.56 16.12 21.68 27.24 32.24 35.02 37.3 42.86\\\">connection</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 412.9938 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 416.4981 216.2655)\\\" x=\\\"0 7.22 9.5 12.28\\\">with</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.3399 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 437.8442 216.2655)\\\" x=\\\"0 2.78 8.34 11.67 20 22.28 27.84 33.4 36.18 38.46 44.02 49.58\\\">termination,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 490.2075 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 493.7118 216.2655)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24 28.52 34.08 39.64\\\">including,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 536.1386 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 539.6429 216.2655)\\\" x=\\\"0 5.56 11.12\\\">but</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.5443 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0486 216.2655)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 204.9472)\\\" x=\\\"0 2.28 4.56 12.89 15.17 17.95 23.51\\\">limited</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 62.1723 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 64.9349 204.9472)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 73.2747 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 76.0373 204.9472)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 92.1604 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 94.923 204.9472)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64\\\">applicable</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 140.133 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 142.8956 204.9472)\\\" x=\\\"0 2.78 5.06 10.62 16.18 21.18\\\">fines,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 166.8555 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 169.6182 204.9472)\\\" x=\\\"0 5 10.56 13.89 18.89 24.45 30.01 33.34 38.9 44.46 49.46\\\">surcharges,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 221.8642 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 224.6269 204.9472)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 241.3114 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 244.0741 204.9472)\\\" x=\\\"0 2.78 8.34 13.34 18.9 23.9\\\">taxes.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 270.7537 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 273.5164 204.9472)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.3093 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 294.0719 204.9472)\\\" x=\\\"0 8.33 13.89 18.89\\\">must</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 315.7419 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 318.5045 204.9472)\\\" x=\\\"0 5.56 7.84 12.84\\\">also</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 336.9078 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 339.6704 204.9472)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.7935 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 358.5561 204.9472)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 374.6791 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 377.4417 204.9472)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.12 31.12 33.4 38.4\\\">excessive</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 421.4066 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 424.1692 204.9472)\\\" x=\\\"0 7.22 12.78 18.34\\\">wear</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 445.844 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 448.6066 204.9472)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 465.2912 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 468.0538 204.9472)\\\" x=\\\"0 5.56 10.56\\\">use</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.1769 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 486.9395 204.9472)\\\" x=\\\"0 2.78 8.34 13.9\\\">fees</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 505.8408 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 508.6035 204.9472)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 519.165 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 521.9276 204.9472)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29 32.85\\\">provided</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 560.3456 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 563.1082 204.9472)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 193.6288)\\\" x=\\\"0 2.78 8.34 10.62 15.62 18.28 24.95 30.51 33.84 39.4 44.96 53.29 58.85 64.41 67.19 69.97 72.63 77.63 83.19 88.75 91.03 96.59 101.59 104.37 107.03 109.81 115.37 118.03 120.31 122.59 130.92 133.2 135.98 141.54 144.32 146.6 152.16 157.72 162.72 165.38 170.94 173.72 176.38 181.94 187.5 193.06 195.34 197.62 202.62 208.18 213.74 216.02 221.58 224.24 226.52 232.08 239.3\\\">this Agreement, subject to limitations of applicable law.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 180.3105)\\\" x=\\\"0 8.33 15 17.78 25 31.11 37.78 45 51.67 58.89 66.11 72.78\\\">MAINTENANCE.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 108.6615 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 111.6829 180.3105)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 129.4758 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 132.4972 180.3105)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.5597 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 149.581 180.3105)\\\" x=\\\"0 5 10.56 16.12\\\">keep</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 171.2656 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 174.287 180.3105)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 188.1883 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 191.2097 180.3105)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 229.0026 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 232.024 180.3105)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 239.8658 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 242.8871 180.3105)\\\" x=\\\"0 5.56 11.12 16.68\\\">good</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 265.1332 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 268.1546 180.3105)\\\" x=\\\"0 7.22 12.78 16.11 21.11 23.39 28.95\\\">working</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.6712 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 305.6925 180.3105)\\\" x=\\\"0 5.56 8.89 14.45 20.01\\\">order</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.0373 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 332.0586 180.3105)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.7432 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 351.7645 180.3105)\\\" x=\\\"0 3.33 8.89 14.45 20.01 22.29 25.62\\\">repair.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.1679 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 383.1892 180.3105)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 400.9822 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 404.0035 180.3105)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 418.066 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 421.0874 180.3105)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 437.2104 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 440.2318 180.3105)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.3548 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 459.3762 180.3105)\\\" x=\\\"0 5.56 11.12 16.68 20.01 25.57 28.35 30.63 36.19\\\">operating</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.134 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 504.1553 180.3105)\\\" x=\\\"0 5 10.56 15.56 18.34 23.34\\\">costs.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 530.2735 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 533.2948 180.3105)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.0878 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 554.1092 180.3105)\\\" x=\\\"0 7.22 9.5 11.78 14.06\\\">will,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 168.9921)\\\" x=\\\"0 5.56\\\">at</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 41.4398 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 44.1473 168.9921)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 63.6004 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 66.3078 168.9921)\\\" x=\\\"0 5.56 10.56 16.12 21.68 27.24 32.24 37.8\\\">expense,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 106.8938 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 109.6012 168.9921)\\\" x=\\\"0 5 10.56 13.89 18.89 21.17 26.17\\\">service</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 141.3346 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 144.042 168.9921)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 157.9434 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 160.6508 168.9921)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 198.4438 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 201.1512 168.9921)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 208.993 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 211.7005 168.9921)\\\" x=\\\"0 5.56 10.56 15.56 21.12 24.45 30.01 35.57 41.13 46.13\\\">accordance</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 263.3997 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 266.1071 168.9921)\\\" x=\\\"0 7.22 9.5 12.28\\\">with</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 283.9489 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 286.6563 168.9921)\\\" x=\\\"0 8.33 13.89 19.45 25.01 27.79 33.35 38.35 41.13 46.69 50.02 55.58\\\">manufacturer</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 345.5723 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 348.2798 168.9921)\\\" x=\\\"0 5 7.78 13.34 18.9 24.46 30.02 33.35 38.91 43.91\\\">standards.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 394.9741 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 397.6815 168.9921)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.2382 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 405.9456 168.9921)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.847 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 422.5544 168.9921)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 460.3474 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 463.0548 168.9921)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 470.3351 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 473.0425 168.9921)\\\" x=\\\"0 3.33 8.89 13.89 19.45 21.73 24.01 29.57 35.13\\\">recalled,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 510.9576 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 513.665 168.9921)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.788 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 532.4955 168.9921)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 546.558 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 549.2654 168.9921)\\\" x=\\\"0 5.56 11.12 16.12\\\">have</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 157.6738)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.0014 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 51.506 157.6738)\\\" x=\\\"0 3.33 8.89 13.89 19.45 21.73\\\">recall</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 75.5196 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 80.0242 157.6738)\\\" x=\\\"0 3.33 8.89 14.45 20.01 22.29 25.62\\\">repairs</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 110.6492 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 115.1538 157.6738)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 124.0454 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 128.5499 157.6738)\\\" x=\\\"0 5 10.56 13.89 18.89 21.17 26.17\\\">service</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.2833 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 164.7879 157.6738)\\\" x=\\\"0 5.56 11.12 14.45 17.23 22.79 26.12 34.45 40.01 45.57\\\">performed.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 213.1424 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 217.647 157.6738)\\\" x=\\\"0 2.78\\\">In</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.9868 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 230.4914 157.6738)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 244.3928 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 248.8974 157.6738)\\\" x=\\\"0 5.56 10.56 16.12 21.68\\\">event</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 273.3603 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 277.8648 157.6738)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.7662 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 296.2708 157.6738)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 334.0637 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.5683 157.6738)\\\" x=\\\"0 5.56 11.12\\\">has</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 354.6914 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 359.1959 157.6738)\\\" x=\\\"0 8.33 13.89 18.89 24.45 30.01 35.57 37.85 42.85 48.41\\\">mechanical</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 409.8942 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 414.3988 157.6738)\\\" x=\\\"0 5.56 8.89 14.45 20.01 22.29 27.85 36.18 41.18\\\">problems,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 458.3636 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 462.8682 157.6738)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 478.9912 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 483.4958 157.6738)\\\" x=\\\"0 5.56 11.12 14.45 20.01\\\">agree</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.072 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 513.5766 157.6738)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.9164 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 526.421 157.6738)\\\" x=\\\"0 3.33 8.89 11.67 17.23 20.56\\\">return</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.544 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0486 157.6738)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 146.3554)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79 40.45 43.23 48.79 51.45 57.01 62.01 64.67 67.45 73.01 76.34 79 84.56 89.56 95.12 97.4 102.96 108.52 111.3 113.58 119.14 124.7 127.48 130.14 135.7 141.26 146.82 149.6 152.26 154.54 157.32 159.98 165.54 171.1 176.1 181.66 186.66 191.66 197.22 200.55 205.55 208.33 210.99 214.32 219.88 225.44 231 233.28 236.61\\\">Property to us for evaluation, and, if necessary, repair.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 133.037)\\\" x=\\\"0 6.67 12.78 19.45 26.67 33.89 40.56 47.78 55\\\">STANDARDS</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 94.7748 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 97.7681 133.037)\\\" x=\\\"0 6.11 13.89\\\">FOR</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 118.8765 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 121.8699 133.037)\\\" x=\\\"0 9.44 16.11 22.78\\\">WEAR</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 151.8699 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 154.8632 133.037)\\\" x=\\\"0 6.67 13.89\\\">AND</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 175.9765 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 178.9698 133.037)\\\" x=\\\"0 7.22 13.89 20.56\\\">USE.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 202.3096 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 205.303 133.037)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 223.0959 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 226.0893 133.037)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 244.9809 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 247.9742 133.037)\\\" x=\\\"0 5.56\\\">be</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.0972 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 262.0906 133.037)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01 30.57\\\">charged</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 298.2283 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 301.2216 133.037)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.8915 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 315.8849 133.037)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.12\\\">excess</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 347.0079 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 350.0012 133.037)\\\" x=\\\"0 7.22 12.78 18.34\\\">wear</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.676 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 374.6694 133.037)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 391.3539 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 394.3473 133.037)\\\" x=\\\"0 5.56 10.56\\\">use</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 410.4703 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 413.4636 133.037)\\\" x=\\\"0 7.22 12.78 18.34\\\">when</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 437.3699 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 440.3632 133.037)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.4863 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 459.4796 133.037)\\\" x=\\\"0 3.33 8.89 11.67 17.23 20.56\\\">return</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 485.6026 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 488.596 133.037)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 502.4973 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 505.4907 133.037)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 543.2836 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 546.277 133.037)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 554.6168 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.6101 133.037)\\\" x=\\\"0 5.56 10.56\\\">us.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 121.7187)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 50.3314 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 54.7254 121.7187)\\\" x=\\\"0 2.78 8.34 10.62 12.9 18.46 25.68 27.96 33.52\\\">following</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 93.8123 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 98.2062 121.7187)\\\" x=\\\"0 5 7.78 13.34 18.9 24.46 30.02 33.35 38.91\\\">standards</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 142.1222 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 146.5161 121.7187)\\\" x=\\\"0 5.56 11.12 16.68 18.96\\\">apply</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 170.4809 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 174.8748 121.7187)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 186.5447 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 190.9386 121.7187)\\\" x=\\\"0 5.56 11.12 13.9 19.46 22.79 31.12 33.4 38.96 41.24 46.8\\\">determining</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 243.3068 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 247.7007 121.7187)\\\" x=\\\"0 5.56 11.12 14.45 20.01 25.57 30.57 36.13 41.69 47.25 52.81 55.09\\\">unreasonable</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.3648 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 312.7587 121.7187)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 321.6503 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 326.0442 121.7187)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.12\\\">excess</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 357.1672 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 361.5611 121.7187)\\\" x=\\\"0 7.22 12.78 18.34\\\">wear</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.2359 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 387.6298 121.7187)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 404.3144 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 408.7083 121.7187)\\\" x=\\\"0 5.56 10.56 16.12\\\">use:</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 427.6097 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 432.0036 121.7187)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 449.7965 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 454.1904 121.7187)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.2529 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 472.6468 121.7187)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.5482 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 490.9421 121.7187)\\\" x=\\\"0 5.56 11.12 13.4 18.96\\\">paint</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.6853 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 517.0792 121.7187)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 525.9708 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 530.3647 121.7187)\\\" x=\\\"0 2.28 7.84 10.62 13.4 18.96\\\">letter</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.6547 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0486 121.7187)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 110.4003)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 70.893 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 75.8495 110.4003)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 84.7411 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 89.6976 110.4003)\\\" x=\\\"0 8.33 13.89 19.45 21.73 24.51\\\">modify</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 119.2094 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 124.1659 110.4003)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 140.2889 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 145.2455 110.4003)\\\" x=\\\"0 2.28 7.84 13.4 18.96 21.74 24.02 26.8 29.08 34.08 39.64 42.42 44.7 50.26\\\">identification</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 201.0707 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 206.0272 110.4003)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57\\\">number</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 239.9335 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 244.89 110.4003)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 253.2298 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 258.1864 110.4003)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 272.0877 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 277.0443 110.4003)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 317.6156 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 322.5721 110.4003)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 340.3651 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 345.3216 110.4003)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.3841 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 364.3407 110.4003)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 378.242 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 383.1985 110.4003)\\\" x=\\\"0 5.56 11.12 16.68\\\">add,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.6614 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.618 110.4003)\\\" x=\\\"0 3.33 8.89 17.22 22.78 27.78\\\">remove</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 440.9627 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 445.9192 110.4003)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.8108 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 459.7674 110.4003)\\\" x=\\\"0 8.33 13.89 19.45 21.73 24.51\\\">modify</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.2791 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 494.2356 110.4003)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 510.3587 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 515.3152 110.4003)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.12 31.12 36.68 40.01 42.29 47.85 52.85\\\">accessories,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 99.082)\\\" x=\\\"0 5.56 11.12 16.68 18.96 24.52 32.85 38.41 43.97\\\">equipment</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 79.8578 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 83.9642 99.082)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 92.8558 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 96.9621 99.082)\\\" x=\\\"0 5.56 11.12 14.45 17.23\\\">parts</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 119.1936 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 123.2999 99.082)\\\" x=\\\"0 7.22 9.5 12.28 17.84 23.4 28.96\\\">without</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 155.0431 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 159.1494 99.082)\\\" x=\\\"0 5.56 11.12\\\">our</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 173.6025 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 177.7089 99.082)\\\" x=\\\"0 5.56 8.89 11.17 16.73\\\">prior</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 197.7724 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 201.8787 99.082)\\\" x=\\\"0 7.22 10.55 12.83 15.61 18.39 23.95\\\">written</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.3904 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 235.4968 99.082)\\\" x=\\\"0 5.56 11.12 14.45 22.78 25.06 30.06 35.06 37.34 42.9 48.46\\\">permission.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 286.7419 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 290.8482 99.082)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.0797 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 312.186 99.082)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 349.979 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 354.0853 99.082)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 368.1478 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 372.2542 99.082)\\\" x=\\\"0 5.56 11.12 13.9\\\">not:</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.9339 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 393.0402 99.082)\\\" x=\\\"0 7.22 12.78 17.78\\\">Have</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 416.3849 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 420.4913 99.082)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57 36.13\\\">damage,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 459.4073 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 463.5136 99.082)\\\" x=\\\"0 8.33 13.89 18.89 24.45 30.01 35.57 37.85 42.85 48.41\\\">mechanical</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 514.2119 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 518.3182 99.082)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 527.2098 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 531.3162 99.082)\\\" x=\\\"0 5.56 7.84 13.4 18.4 21.18 24.51 26.79 31.79 37.35\\\">electrical</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 87.7636)\\\" x=\\\"0 8.33 13.89 16.17 18.95 24.51 30.07 35.07 37.85 40.13 45.69\\\">malfunction</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 84.3549 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 87.8075 87.7636)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 98.369 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 101.8216 87.7636)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64 45.2\\\">applicable;</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 149.8099 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 153.2625 87.7636)\\\" x=\\\"0 5.56\\\">be</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 164.3855 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 167.8382 87.7636)\\\" x=\\\"0 2.78 8.34 11.67 17.23\\\">torn,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 187.8479 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 191.3005 87.7636)\\\" x=\\\"0 5.56 11.12 14.45 20.01 25.57 31.13\\\">burned,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.2165 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 228.6691 87.7636)\\\" x=\\\"0 5 7.78 13.34 15.62 21.18 26.74\\\">stained</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 260.9738 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 264.4264 87.7636)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 273.318 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 276.7706 87.7636)\\\" x=\\\"0 5 10.56 13.89 19.45 25.01 30.57 36.13 41.69\\\">shredded;</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 321.2482 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 324.7008 87.7636)\\\" x=\\\"0 5.56 11.12 16.12\\\">have</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 346.3853 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 349.8379 87.7636)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 365.961 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 369.4136 87.7636)\\\" x=\\\"0 5.56 11.12 16.68 19.46 24.46\\\">dents,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 396.6548 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 400.1074 87.7636)\\\" x=\\\"0 8.33 13.89 16.17 21.73\\\">mold,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 424.6191 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 428.0717 87.7636)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 436.9633 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 440.4159 87.7636)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57\\\">damage</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 476.5536 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 480.0062 87.7636)\\\" x=\\\"0 2.78 6.11 11.67\\\">from</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 500.0062 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 503.4588 87.7636)\\\" x=\\\"0 7.22 12.78 15.56 21.12 24.45\\\">water,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 530.6903 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 534.1429 87.7636)\\\" x=\\\"0 5 10.56 16.12 21.68\\\">sand,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 558.6058 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 562.0584 87.7636)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 76.4452)\\\" x=\\\"0 2.78 6.11 11.67 17.23 22.23 24.51 30.07 35.63 38.41 41.07 46.63 49.96 52.62 58.18 63.74 68.74 74.3 76.96 79.24 84.8 90.36 95.92 101.48 104.81 110.37 115.93 118.21 123.77 126.43 131.99 137.55 140.88 143.66 148.66 151.44 154.1 160.77 166.33 171.89 174.55 182.88 188.44 193.44 196.22 198.88 202.21 207.77 210.55 216.11 219.44 225 227.66 230.44 236 241.56 244.22 250.89 254.22 259.78 265.34 270.9 274.23 277.01 282.01 284.67 291.89 294.17 296.95 302.51 305.17 310.73 313.01 315.29 317.95 323.51 326.29 328.95 331.23 334.01 339.01 341.67 347.23 350.56 352.84 358.4 360.68 366.24 371.8 374.08 376.74 382.3 387.86 391.19 393.97 398.97\\\">freezing; or have inoperable parts. You must return the Property with all of its original parts.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 36.5264)\\\" x=\\\"0 6.498 11.997 14.391 16.785 21.789 26.793 29.295 34.299 39.303 44.307 504 506.3906 508.7812 511.1719 513.5625 515.9531 518.3438 520.7344 523.125 525.5156\\\">UT  07/2019          </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 26.3398)\\\" x=\\\"0 6.003 11.007 16.011 21.015\\\">Page </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 55.8097 26.3398)\\\" x=\\\"0\\\">2</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.815 26.3398)\\\" x=\\\"0 2.394 7.398 9.9\\\"> of </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 73.1021 26.3398)\\\" x=\\\"0\\\">7</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#d9d9d9\\\" style=\\\"font-family:f1-0; font-size:54pt; white-space:pre\\\" transform=\\\"matrix(0.707 0.707 0.707 -0.707 135.6027 198.5094)\\\" x=\\\"0 56.016 96.048 136.08 176.112 216.144 236.16 284.184 324.216 344.232 364.248 416.232 456.264 480.24\\\">Qoppa Software</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#002ba6\\\" style=\\\"font-family:f1-0; font-size:9pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.932 772)\\\" x=\\\"0 9.336 16.008 22.68 29.352 36.024 39.36 47.364 54.036 57.372 60.708 69.372 76.044 80.04 86.712 90.048 94.044 97.38 104.712 111.384 115.38 118.716 126.72 132.72 139.392 142.056 148.728 155.4 158.736 161.4 168.072 174.744 178.08 187.416 194.088 196.752 202.752 206.088 210.084 213.42 220.092 223.428 226.764 233.436 239.436 242.772 246.108 249.444 258.108 266.772 275.436 278.772 285.444 292.116 298.788 305.46 312.132 315.468 321.468 328.14\\\">Qoppa Software - For Evaluation Only - https://www.qoppa.com</text></g></g></svg></svg></g></svg><br>\\n<?xml version='1.0' encoding='UTF-8'?><svg id=\\\"qoppa_document\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" version=\\\"1.1\\\" xmlns=\\\"http://www.w3.org/2000/svg\\\" xmlns:xlink=\\\"http://www.w3.org/1999/xlink\\\"><!-- jPDFWeb v2019R1.03 - Demo Version --><style>title p { display: block; }</style><g id=\\\"qoppa_viewxform\\\" transform=\\\"matrix(1 0 0 1 0 0)\\\"><style type=\\\"text/css\\\">@font-face {font-family:f2-0;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f2-1;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f2-2;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}</style><svg id=\\\"qoppa_page_p2\\\" class=\\\"qoppa_page\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\"><rect class=\\\"qoppa_pageborder\\\" x=\\\"0.5pt\\\" y=\\\"0.5pt\\\" width=\\\"611pt\\\" height=\\\"791pt\\\" fill=\\\"none\\\" /><svg class=\\\"qoppa_pagecontents\\\" x=\\\"0pt\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" viewBox=\\\"0 0 612 792\\\" ><g class=\\\"qoppa_contentstream\\\" transform=\\\"matrix(1 0 0 -1 0 792)\\\" fill=\\\"black\\\" stroke=\\\"black\\\" stroke-width=\\\"1\\\" stroke-linecap=\\\"butt\\\" stroke-linejoin=\\\"miter\\\" stroke-miterlimit=\\\"10\\\"><clipPath id=\\\"clip2-1\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 758.4812)\\\" x=\\\"0 9.44 16.11 23.33 30.55 37.22 44.44 50.55 53.33 60 66.67\\\">WARRANTIES.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 102.5482 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 106.2624 758.4812)\\\" x=\\\"0 9.44\\\">We</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 121.2624 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 124.9766 758.4812)\\\" x=\\\"0 8.33 13.89 18.89\\\">make</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 149.4298 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 153.1439 758.4812)\\\" x=\\\"0 5.56\\\">no</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 164.267 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 167.9812 758.4812)\\\" x=\\\"0 5.56 10.56 16.12 19.45 25.01 30.01\\\">express</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 202.9958 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 206.71 758.4812)\\\" x=\\\"0 7.22 12.78 16.11 19.44 25 30.56 33.34\\\">warranty</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.0548 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 248.769 758.4812)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.892 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 263.6062 758.4812)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 277.5076 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 281.2218 758.4812)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 321.7931 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 325.5072 758.4812)\\\" x=\\\"0 5.56 11.12 16.68\\\">and,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 344.9701 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 348.6843 758.4812)\\\" x=\\\"0 5.56 11.12 13.4 18.96 23.96\\\">unless</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 377.6492 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 381.3634 758.4812)\\\" x=\\\"0 5.56 8.89 14.45 20.01 22.29 27.85 30.13 32.91 38.47\\\">prohibited</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 425.4015 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 429.1157 758.4812)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 439.6772 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 443.3914 758.4812)\\\" x=\\\"0 2.28 7.84 15.06\\\">law,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 461.2332 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 464.9474 758.4812)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 478.8487 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 482.5629 758.4812)\\\" x=\\\"0 2.78 8.34 10.62 12.9 18.46 25.68 27.96 33.52\\\">following</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.6498 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 525.364 758.4812)\\\" x=\\\"0 5 10.56 16.12 18.9 24.46 30.02 35.02 40.58\\\">sentences</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 747.1629)\\\" x=\\\"0 5.56 11.12 16.68 18.96 23.96\\\">apply.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 59.8432 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 63.102 747.1629)\\\" x=\\\"0 6.67 14.45\\\">YOU</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 84.772 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 88.0308 747.1629)\\\" x=\\\"0 6.67 13.89\\\">ARE</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 108.5924 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 111.8512 747.1629)\\\" x=\\\"0 5.56 12.23 18.9 25.57 28.35 35.57\\\">LEASING</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 155.2008 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 158.4597 747.1629)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 178.4597 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 181.7186 747.1629)\\\" x=\\\"0 6.67 13.89 21.67 28.34 35.01 42.23 48.34\\\">PROPERTY</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 236.7284 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 239.9872 747.1629)\\\" x=\\\"0 3.33 10\\\">“AS</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.6572 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 259.916 747.1629)\\\" x=\\\"0 2.78 9.45 12.78\\\">IS”.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.4727 747.1629)\\\" x=\\\"0 3.2589\\\">  </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 281.9904 747.1629)\\\" x=\\\"0 9.44\\\">WE</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 298.0988 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 301.3577 747.1629)\\\" x=\\\"0 8.33 15 21.67\\\">MAKE</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.6975 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 332.9564 747.1629)\\\" x=\\\"0 7.22\\\">NO</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 347.9564 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 351.2153 747.1629)\\\" x=\\\"0 6.67 13.34 20.01 27.23 33.9 40.57\\\">EXPRESS</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 398.4565 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 401.7153 747.1629)\\\" x=\\\"0 9.44 16.11 23.33 30.55 37.22 44.44 50.55 53.33 60\\\">WARRANTIES</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.3853 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 471.6442 747.1629)\\\" x=\\\"0 7.78\\\">ON</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.6442 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 489.903 747.1629)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.903 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 513.1619 747.1629)\\\" x=\\\"0 6.67 13.89 21.67 28.34 35.01 42.23 48.34 55.01\\\">PROPERTY.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 735.8445)\\\" x=\\\"0 9.44\\\">WE</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 49.2084 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 59.5638 735.8445)\\\" x=\\\"0 7.22 10 16.67 23.89 29.45 36.12 38.9\\\">DISCLAIM</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 106.7953 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 117.1507 735.8445)\\\" x=\\\"0 6.67 13.89\\\">ANY</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 137.7122 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.0676 735.8445)\\\" x=\\\"0 9.44 16.11 23.33 30.55 37.22 44.44 50.55 53.33 60\\\">WARRANTIES</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 214.7375 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 225.0929 735.8445)\\\" x=\\\"0 2.78 11.11 17.78 23.34 26.12 32.79\\\">IMPLIED</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 265.1027 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 275.4581 735.8445)\\\" x=\\\"0 6.67\\\">BY</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 288.798 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 299.1534 735.8445)\\\" x=\\\"0 5.56 12.23 21.67\\\">LAW,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 323.6016 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 333.957 735.8445)\\\" x=\\\"0 2.78 10 17.22 22.78 30 37.22 40 47.22\\\">INCLUDING</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.9619 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 399.3173 735.8445)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.3173 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 429.6728 735.8445)\\\" x=\\\"0 2.78 11.11 17.78 23.34 26.12 32.79\\\">IMPLIED</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 469.6825 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 480.0379 735.8445)\\\" x=\\\"0 9.44 16.11 23.33 30.55 37.22 44.44 50.55 53.33 60\\\">WARRANTIES</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 546.7079 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0633 735.8445)\\\" x=\\\"0 7.78\\\">OF</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 724.5262)\\\" x=\\\"0 8.33 15 22.22 29.44 36.66 43.33 50.55 56.66 63.33 70 72.78 78.34 81.12 87.23 93.9 96.56 103.23 110.45 117.67 120.33 126.44 129.22 135.33 142.55 149.22 155.89 162.56 165.22 171.33 179.11 186.33 188.99 195.66 202.88 209.55 212.21 218.88 225.55 232.77 238.88 241.66 248.88 256.1 261.66 268.33 275.55 278.21 284.88 292.1 299.32 305.99 313.77 320.44 327.11\\\">MERCHANTABILITY AND FITNESS FOR ANY PARTICULAR PURPOSE.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 711.2078)\\\" x=\\\"0 7.22 13.89 20 26.67 33.89 39.45 45.56 48.34 51 58.22 64.89 71.56 79.34 86.01 92.68 99.35 106.02 112.69 115.47 123.25 130.47 133.25 135.91 142.58 149.8 157.02 159.68 167.46 173.57 180.79 187.46 194.68 197.34 204.56 211.23 219.56 226.23 233.45 236.23 242.9 249.57 252.35 255.01 261.68 267.24 272.8 275.46 282.68 284.96 287.24 289.52 292.18 297.74 303.3 305.96 308.24 313.8 316.46 322.02 327.58 330.36 335.92 341.48 343.76 346.54 349.2 354.76 357.54 360.2 362.98 368.54 370.82 375.82 378.48 385.15 390.71 394.04 399.6 405.16 413.49 419.05 424.61 427.39 430.05 432.33 435.11\\\">DEFAULT, REPOSSESSION, AND OTHER REMEDIES. You will be in default of this Agreement if:</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 697.8895)\\\" x=\\\"0 3.33 5.99 12.66 18.22 23.78 26.44 32 37.56 40.22 45.78 51.34 54.12 56.78 62.34 67.9 72.9 75.56 81.12 86.68 91.68 94.34 99.9 105.46 110.46 118.79 124.35 129.91 132.69 135.35 140.91 144.24 146.9 152.46 155.24 160.8 166.36 169.69 172.35 177.91 186.24 191.8 197.36 202.92 205.7 208.36 213.92 219.48 225.04 230.6 233.93 236.59 239.37 244.93 250.49 253.15 259.82 265.38 268.71 274.27 279.83 288.16 293.72 299.28 302.06 304.72 310.28 315.28 317.94 323.5 326.83 332.39 337.39 339.67 345.23 350.79 356.35 359.01 364.57 367.9 370.56 377.78 383.34 388.9 394.46 397.12 404.34 409.9 412.56 420.89 426.45 431.45 437.01 439.67 445.23 450.79 459.12 464.68 470.24 475.8\\\">- You do not pay any payment or other amount under the Agreement as provided or when we make demand.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 684.5711)\\\" x=\\\"0 3.33 5.99 12.66 18.22 23.78 26.44 32 34.28 39.28 44.84 47.5 53.06 58.06 60.72 66.28 71.84 76.84 79.5 82.28 87.84 90.12 95.12 100.68 103.34 108.9 112.23 114.89 123.22 125.5 130.5 132.78 138.34 143.9 149.46 151.74 157.3 162.86 165.52 167.8 173.36 176.14 181.7 185.03 193.36 198.92 201.7 203.98 209.54 215.1\\\">- You give us any false or misleading information.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 671.2527)\\\" x=\\\"0\\\">-</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 36.4301 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.1823 671.2527)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 57.9753 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 61.7275 671.2527)\\\" x=\\\"0 2.28 7.84 12.84\\\">lose</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 80.1308 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 83.883 671.2527)\\\" x=\\\"0 5.56 11.12 16.12 21.12 26.68 31.68 36.68 38.96 44.52\\\">possession</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 133.9709 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 137.7231 671.2527)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.0629 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 149.8151 671.2527)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 163.7165 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 167.4687 671.2527)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 205.2617 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 209.0139 671.2527)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 219.5754 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 223.3276 671.2527)\\\" x=\\\"0 5 10.56 16.12 18.9 21.18 26.18 31.18 36.74 39.52 41.8 47.36 52.92\\\">confiscation,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 279.0307 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 282.7829 671.2527)\\\" x=\\\"0 2.78 8.34 11.67 14.45 20.01 22.29 25.07 30.63 33.96\\\">forfeiture</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 322.3044 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 326.0566 671.2527)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 334.9482 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.7004 671.2527)\\\" x=\\\"0 5.56 8.34 13.9 19.46\\\">other</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 361.4934 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 365.2456 671.2527)\\\" x=\\\"0 2.28 7.84 12.84 18.4 20.68 26.24 31.8 34.58 40.14 43.47\\\">involuntary</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 413.7222 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 417.4744 671.2527)\\\" x=\\\"0 2.78 6.11 11.67 17.23 22.23 25.01 30.57\\\">transfer</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 451.3757 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 455.1279 671.2527)\\\" x=\\\"0 3.33 8.89 14.45 20.01 23.34 28.9 31.18 36.74 41.74\\\">regardless</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.876 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 505.6282 671.2527)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 513.968 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 517.7202 671.2527)\\\" x=\\\"0 7.22 12.78 18.34 21.12 26.68 32.24\\\">whether</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.2964 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0486 671.2527)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 659.9344)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79 40.45 42.73 47.73 50.39 53.17 58.73 64.29 66.95 71.95 77.51 83.07 85.35 90.91 95.91 98.69 101.35 106.91 109.69 112.35 114.63 120.19 125.75 128.03 133.03 135.31 140.87 143.15 145.81 151.37 154.7 157.36 162.92 168.48 176.81 179.09 184.65 186.93 191.93 194.71 198.04 203.6 206.38 208.66 213.66 219.22 221.88 227.44 230.77 236.33 241.33 246.89 252.45 258.01 260.29 265.85 271.41 276.41\\\">Property is the subject of judicial or administrative proceedings.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 646.616)\\\" x=\\\"0 3.33 5.99 12.66 18.22 23.78 26.44 32 34.28 39.84 42.5 48.06 53.62 59.18 61.84 64.62 70.18 75.74 79.07 84.63 87.29 89.57 94.57 97.23 102.79 108.35 111.01 116.01 121.57 124.9 129.9 132.18 137.18 139.46 145.02 150.58 153.24 158.24 163.8 168.8 171.58 177.14 185.47 191.03 194.36\\\">- You die and there is no surviving customer.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 633.2977)\\\" x=\\\"0 3.33 5.99 12.1 17.66 23.22 25.88 32.55 35.88 41.44 47 52.56 55.89 58.67 63.67 66.33 68.61 73.61 76.27 78.55 84.11 89.11 91.89 94.67 97.33 102.33 105.11 110.67 112.95 118.51 124.07 126.73 132.29 135.62 138.28 143.84 149.4 157.73 163.29 168.85 174.41 179.97 182.63 188.19 193.75 198.75 204.31 209.87 215.43 218.09 221.42 226.98 232.54 238.1 240.38 243.71\\\">- The Property is lost, stolen or damaged beyond repair.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 619.9793)\\\" x=\\\"0 3.33 5.99 12.66 18.22 23.78 26.44 32 37 42 44.28 49.84 55.4 58.06 60.84 66.4 71.96 74.62 81.29 86.85 90.18 95.74 101.3 109.63 115.19 120.75 123.53 126.19 131.75 135.08 137.74 140.52 143.85 149.41 154.97 159.97 162.75 168.31 171.64 174.3 177.08 182.64 188.2 190.86 197.53 200.86 206.42 211.98 217.54 220.87 223.65 228.65\\\">- You assign the Agreement or transfer the Property.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 606.6609)\\\" x=\\\"0 3.33 5.99 13.21 18.77 21.05 26.61 31.61 36.61 39.27 44.83 48.16 53.72 59.28 61.56 67.12 69.4 72.18 77.74 83.3 85.96 91.52 96.52 99.18 101.46 107.02 114.24 117.02 119.68 124.68 130.24 135.8 138.46 143.46 145.74 151.3 153.58 159.14 161.92 167.48 170.14 175.7 181.26 186.26 188.92 195.59 201.15 204.48 210.04 215.6 223.93 229.49 235.05 237.83 240.49 243.27 248.83 252.16 260.49\\\">- Unless prohibited by law, you violate any Agreement term.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 593.3426)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 38.6566 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 41.5168 593.3426)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 57.1369 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 59.9971 593.3426)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 108.9131 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 111.7732 593.3426)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 119.0535 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 121.9136 593.3426)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 129.7554 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 132.6156 593.3426)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 27.3 30.08\\\">default,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 165.4769 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 168.3371 593.3426)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 181.1202 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 183.9804 593.3426)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 202.872 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 205.7321 593.3426)\\\" x=\\\"0 5.56\\\">at</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 214.072 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 216.9321 593.3426)\\\" x=\\\"0 5.56 11.12\\\">our</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.3853 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 234.2454 593.3426)\\\" x=\\\"0 5.56 7.84 13.4 18.4 21.18 23.46 29.02 34.58\\\">election,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 271.6087 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 274.4688 593.3426)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.1534 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 294.0135 593.3426)\\\" x=\\\"0 5 10.56 16.12 18.4 23.96 28.96\\\">subject</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 325.7567 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 328.6169 593.3426)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 336.9567 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 339.8168 593.3426)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.9399 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 358.8 593.3426)\\\" x=\\\"0 7.22 12.78 15.06 17.84 20.12 25.68\\\">waiting</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 390.0452 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 392.9053 593.3426)\\\" x=\\\"0 5.56 11.12 14.45 16.73 22.29\\\">period</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 420.7618 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 423.6219 593.3426)\\\" x=\\\"0 2.28 10.61 16.17 21.73 26.73 32.29\\\">imposed</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 461.4783 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 464.3385 593.3426)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.9 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 477.7602 593.3426)\\\" x=\\\"0 2.28 7.84 15.06\\\">law,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 495.602 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 498.4621 593.3426)\\\" x=\\\"0 2.78 8.34 13.34\\\">take</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 517.3635 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 520.2236 593.3426)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 536.3467 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 539.2068 593.3426)\\\" x=\\\"0 5.56 10.56 13.34 15.62 21.18 26.74\\\">actions</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 582.0242)\\\" x=\\\"0 5.56 11.12 14.45 22.78 25.06 27.84 30.62 36.18 41.74 44.4 49.96 54.96 57.62 59.9 65.46 72.68 75.46 78.12 80.4 85.96 90.96 93.24 98.8 104.36 106.64 112.2 117.76 120.42 127.64 129.92 132.7 138.26 143.82 149.38 152.16 154.82 157.1 159.38 167.71 169.99 172.77 178.33 181.11 183.39 188.95 194.51 197.17 202.73 208.29 213.85 216.51 222.07 224.85 227.51 230.29 235.85 241.41 244.07 246.85 252.41 254.69 256.97 262.53 269.75 272.03 277.59 283.15 285.81 291.37 296.37 299.15 301.43 306.99 312.55 317.55 320.33 322.99 328.55 334.11 339.67 345.23 347.89 353.45 356.23 358.89 366.11 371.67 373.95 378.95 384.51 387.17 394.39 396.67 398.95 401.23 403.89 408.89 414.45 417.78 423.34 426 431 436.56 442.12 445.45 448.11 453.67 459.23 462.01 467.57 473.13 475.41 478.19\\\">permitted by law, including without limitation one of the following actions, none of which will cure your default:</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 568.7059)\\\" x=\\\"0 3.33 10.55 16.11 18.89 21.17\\\">-Until</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 56.5522 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 59.9757 568.7059)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 76.0988 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 79.5223 568.7059)\\\" x=\\\"0 5.56 11.12 14.45 19.45 25.01 30.57 35.57\\\">purchase</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 120.66 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 124.0836 568.7059)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 137.985 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 141.4086 568.7059)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 179.2015 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 182.6251 568.7059)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 193.1866 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 196.6102 568.7059)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29 32.85\\\">provided</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 235.0282 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 238.4518 568.7059)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 246.2936 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 249.7171 568.7059)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 265.3372 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 268.7608 568.7059)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 320.4552 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 323.8787 568.7059)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 332.7703 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 336.1939 568.7059)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 350.0953 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 353.5189 568.7059)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 391.3118 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 394.7354 568.7059)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.0157 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 405.4393 568.7059)\\\" x=\\\"0 3.33 8.89 14.45 20.01 25.01 30.01 35.57 40.57 45.57 51.13\\\">repossessed</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 462.1385 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 465.5621 568.7059)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.4537 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 477.8772 568.7059)\\\" x=\\\"0 5 10.56 13.89 17.22 22.78 28.34 33.9 39.46 42.79 48.35 53.91\\\">surrendered,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 534.5765 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 538 568.7059)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 545.8418 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 549.2654 568.7059)\\\" x=\\\"0 5.56 11.12 16.12\\\">each</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 557.3875)\\\" x=\\\"0 5 10.56 15.56\\\">case</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 54.2231 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 56.9386 557.3875)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 67.5001 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 70.2156 557.3875)\\\" x=\\\"0 5.56 11.12 14.45 22.78 25.06 27.84 30.62 36.18\\\">permitted</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 111.9588 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 114.6743 557.3875)\\\" x=\\\"0 5.56 11.12 16.68 22.24\\\">under</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 140.2505 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 142.966 557.3875)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 158.5862 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 161.3017 557.3875)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 212.996 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 215.7115 557.3875)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.3317 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 234.0472 557.3875)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 282.9632 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 285.6787 557.3875)\\\" x=\\\"0 5 10.56 16.12 18.4\\\">shall</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 306.3623 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 309.0779 557.3875)\\\" x=\\\"0 5 10.56 16.12 18.9 21.18 26.74 32.3\\\">continue</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 346.9441 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 349.6596 557.3875)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 357.9994 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 360.715 557.3875)\\\" x=\\\"0 3.33 8.89 14.45 20.01 27.23\\\">renew,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 390.7296 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 393.4452 557.3875)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 410.1297 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 412.8453 557.3875)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 425.6285 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 428.344 557.3875)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.2356 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 449.9511 557.3875)\\\" x=\\\"0 5 10.56 16.12 18.9 21.18 26.74 32.3\\\">continue</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 487.8173 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 490.5329 557.3875)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 498.8727 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 501.5882 557.3875)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01\\\">charge</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 532.1644 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 534.88 557.3875)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.003 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.7185 557.3875)\\\" x=\\\"0 3.33 8.89 14.45\\\">rent</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 546.0691)\\\" x=\\\"0 5.56 11.12 16.68 22.24 25.57 28.23 31.01 36.57 42.13 44.79 47.57 53.13 56.46 64.79 69.79 72.45 78.01 80.79 83.45 86.23 91.79 94.07 99.07 101.73 108.4 113.96 117.29 122.85 128.41 136.74 142.3 147.86 150.64\\\">under the terms of this Agreement.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 532.7508)\\\" x=\\\"0 3.33 12.77 18.33 20.99 29.32 34.88 39.88 42.54 45.32 50.88 55.88 61.44 64.1 69.66 75.22 80.22 82.88 88.44 93.44 96.22 98.5 104.06 109.62 112.28 119.5 125.06 127.72 133.28 138.84 141.12 143.4 148.96 153.96 159.52 162.18 164.96 170.52 173.18 178.74 184.3 186.96 192.52 198.08 203.08 208.64 213.64 218.64 224.2 227.53 232.53 235.19 240.75 244.08 246.74 252.3 257.86 262.86 265.14 270.14 275.7 281.26 283.54 289.1 291.76 294.54 300.1 302.76 308.32 311.65 317.21 319.99 325.55 330.55 333.33 335.99 341.55 347.11 350.44 353.1 355.38 360.94 363.72 369.28 372.61 378.17 383.17 385.95 388.61 390.89 396.45 399.11 401.89 407.45 413.01 415.67 422.34 425.67 431.23 436.79 442.35 445.68 448.46 453.46\\\">-We may take any action we believe to be necessary or advisable to protect our interest in the Property.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 519.4324)\\\" x=\\\"0 3.33 12.77\\\">-We</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 51.4301 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 54.7506 519.4324)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 73.6422 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 76.9627 519.4324)\\\" x=\\\"0 5.56 11.12 16.68 21.68 27.24 30.02 35.58 37.86 40.14\\\">peacefully</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 122.1092 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 125.4297 519.4324)\\\" x=\\\"0 3.33 8.89 14.45 20.01 25.01 30.01 35.57 40.57\\\">repossess</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 171.0058 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 174.3263 519.4324)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 188.2277 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 191.5482 519.4324)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 229.3411 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 232.6616 519.4324)\\\" x=\\\"0 7.22 12.78 18.34 21.67 27.23 32.23 37.79\\\">wherever</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 273.7896 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 277.1101 519.4324)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 289.8933 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 293.2138 519.4324)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.1054 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 315.4259 519.4324)\\\" x=\\\"0 2.78 5.06 10.62\\\">find</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 331.6075 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 334.928 519.4324)\\\" x=\\\"0 2.28 5.06\\\">it.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 342.7649 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 346.0854 519.4324)\\\" x=\\\"0 9.44\\\">We</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 361.0854 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 364.4059 519.4324)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 378.4684 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 381.7889 519.4324)\\\" x=\\\"0 5.56 7.84 12.84\\\">give</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 400.1922 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 403.5127 519.4324)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.6358 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 422.9563 519.4324)\\\" x=\\\"0 3.33 8.89 14.45 20.01 25.01 30.01 35.57 40.57 45.57 47.85 53.41\\\">repossession</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 481.9358 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 485.2562 519.4324)\\\" x=\\\"0 5.56 11.12 13.9 16.18 21.18 26.74\\\">notices</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 516.9994 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 520.3199 519.4324)\\\" x=\\\"0 3.33 8.89 14.45 20.01 22.29 25.62 31.18\\\">required</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 557.068 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 560.3885 519.4324)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 508.1141)\\\" x=\\\"0 2.28 7.84 15.06\\\">law.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 50.9418 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 53.8695 508.1141)\\\" x=\\\"0 6.67 9.45 12.23 17.79\\\">After</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 74.9876 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 77.9153 508.1141)\\\" x=\\\"0 3.33 8.89 14.45 20.01 25.01 30.01 35.57 40.57 45.57 47.85 53.41\\\">repossession</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.8948 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 139.8224 508.1141)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 148.714 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 151.6417 508.1141)\\\" x=\\\"0 5 10.56 13.89 17.22 22.78 28.34 33.9 39.46 42.79\\\">surrender,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 197.2178 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 200.1455 508.1141)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 212.9287 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 215.8564 508.1141)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 229.9189 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 232.8465 508.1141)\\\" x=\\\"0 5.56 11.12 13.4\\\">hold</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 251.8114 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 254.739 508.1141)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 268.6404 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 271.568 508.1141)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.1393 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 315.067 508.1141)\\\" x=\\\"0 5 10.56 16.12 18.4 23.96 28.96\\\">subject</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 346.8101 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 349.7378 508.1141)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 358.0776 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 361.0053 508.1141)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 377.1283 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 380.056 508.1141)\\\" x=\\\"0 3.33 5.61 11.17 16.73\\\">right</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 399.5677 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 402.4954 508.1141)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 418.6184 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 421.5461 508.1141)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 440.4377 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 443.3653 508.1141)\\\" x=\\\"0 5.56 11.12 16.12\\\">have</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 465.0499 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 467.9776 508.1141)\\\" x=\\\"0 5.56 11.12 16.68 22.24\\\">under</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 493.5537 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 496.4814 508.1141)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64\\\">applicable</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 541.6914 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 544.619 508.1141)\\\" x=\\\"0 2.28 7.84\\\">law</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.6825 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 562.6101 508.1141)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 496.7957)\\\" x=\\\"0 5 10.56 13.89 19.45 22.11 24.89 30.45 36.01 38.67 44.23 49.79 52.57 58.13 63.69 65.97 68.75 71.41 76.97 80.3 82.96 86.29 91.85 96.85 102.41 107.41 112.97 116.3 118.96 121.74 127.3 132.86 135.52 142.19 145.52 151.08 156.64 162.2 165.53 168.31 173.31\\\">cure the default or recover the Property.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 483.4773)\\\" x=\\\"0 3.33 10 15.56 23.89 28.89 31.55 38.77 44.33 46.99 51.99 57.55 63.11 68.67 74.23 76.89 79.67 85.23 90.23 92.51 98.07 103.63 106.29 111.85 117.41 122.41 125.07 130.63 136.19 139.52 147.85 150.13 152.91 155.69 161.25 166.81 169.47 175.03 180.03 182.81 185.09 190.65 196.21 198.87 206.09 208.37 210.65 212.93 215.59 221.15 226.71 229.37 234.93 240.49 246.05 251.61 257.17 259.83 262.61 268.17 270.83 273.61 279.17 284.73 287.39 292.95 301.28 306.84 312.4 317.96 320.74 323.4 328.96 333.96 338.96 342.29 347.85 353.41 358.97 361.75 364.41 369.97 375.53 377.81 383.37 388.37 393.37 396.03 401.59 404.92 410.48 416.04 418.32 423.88 426.16 428.94 434.5 440.06 442.72 448.28 453.28 455.94 458.22 463.78 471\\\">-Sums we spend taking any permitted action will be added to the amount accrued, unless prohibited by law.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 456.8406)\\\" x=\\\"0 6.11 12.78 19.45 26.12 32.79\\\">TAXES.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 68.6664 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 72.5196 456.8406)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 90.3126 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 94.1658 456.8406)\\\" x=\\\"0 8.33 13.89 18.89\\\">must</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 115.8357 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 119.689 456.8406)\\\" x=\\\"0 2.28 10.61 18.94 24.5 30.06 32.34 37.9 40.68 46.24 48.52\\\">immediately</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 173.2144 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 177.0676 456.8406)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 193.1906 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 197.0439 456.8406)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 205.9355 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 209.7887 456.8406)\\\" x=\\\"0 3.33 8.89 11.17 19.5 25.06 30.62 33.95 38.95\\\">reimburse</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 254.3053 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 258.1585 456.8406)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 268.72 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 272.5733 456.8406)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 277.6319 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 281.4851 456.8406)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 294.2683 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 298.1215 456.8406)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 314.2446 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 318.0978 456.8406)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.7677 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 333.6209 456.8406)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 349.744 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 353.5972 456.8406)\\\" x=\\\"0 5.56 7.84\\\">all</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 363.7193 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 367.5725 456.8406)\\\" x=\\\"0 5.56 11.12 16.12 21.68 25.01 30.57 38.9 44.46 50.02\\\">government</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 420.3801 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 424.2334 456.8406)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01 30.57\\\">charges</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 459.8095 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 463.6628 456.8406)\\\" x=\\\"0 3.33 8.89 11.17 16.73 19.51 21.79 27.35\\\">relating</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 496.5778 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 500.431 456.8406)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 508.7709 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 512.6241 456.8406)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.5255 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 530.3787 456.8406)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 445.5223)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24 28.52 34.08 39.64\\\">including,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 75.5268 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 78.3573 445.5223)\\\" x=\\\"0 5.56 11.12\\\">but</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 92.2586 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 95.0891 445.5223)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 108.9905 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 111.8209 445.5223)\\\" x=\\\"0 2.28 4.56 12.89 15.17 17.95 23.51\\\">limited</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 140.8932 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 143.7237 445.5223)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 152.0635 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 154.894 445.5223)\\\" x=\\\"0 2.78 8.34 13.9 18.9\\\">fees,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 176.5737 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 179.4042 445.5223)\\\" x=\\\"0 2.78 8.34 13.34 18.9 23.9\\\">taxes,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 206.0839 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 208.9144 445.5223)\\\" x=\\\"0 2.78 5.06 10.62 16.18\\\">fines</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 230.096 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 232.9265 445.5223)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 249.6111 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 252.4416 445.5223)\\\" x=\\\"0 5 10.56 13.89 18.89 24.45 30.01 33.34 38.9 44.46 49.46\\\">surcharges,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 304.6877 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 307.5181 445.5223)\\\" x=\\\"0 7.22 12.78 18.34 21.12 26.68 32.24\\\">whether</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 343.0943 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 345.9248 445.5223)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.12 31.12 36.68\\\">assessed</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.1709 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 391.0014 445.5223)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.1244 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 404.9549 445.5223)\\\" x=\\\"0 5 10.56 16.12\\\">you,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 423.8563 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 426.6868 445.5223)\\\" x=\\\"0 5.56 10.56\\\">us,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 440.0266 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 442.8571 445.5223)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 451.7487 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 454.5792 445.5223)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.4806 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 471.311 445.5223)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 511.8823 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 514.7128 445.5223)\\\" x=\\\"0 9.44\\\">We</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.7128 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 532.5433 445.5223)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.4349 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 554.2654 445.5223)\\\" x=\\\"0 5.56 11.12\\\">add</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 434.2039)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.0014 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 50.123 434.2039)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 83.4775 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 86.5991 434.2039)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 94.9389 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 98.0606 434.2039)\\\" x=\\\"0 7.22 12.78 18.34\\\">what</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 119.1836 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 122.3052 434.2039)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 138.4283 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 141.5499 434.2039)\\\" x=\\\"0 5.56 12.78\\\">owe</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 159.8946 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 163.0162 434.2039)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 173.5777 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 176.6994 434.2039)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 181.758 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 184.8796 434.2039)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 201.0026 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 204.1242 434.2039)\\\" x=\\\"0 5.56\\\">do</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 215.2473 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 218.3689 434.2039)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 232.2703 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 235.3919 434.2039)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 251.5149 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 254.6365 434.2039)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 265.1981 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 268.3197 434.2039)\\\" x=\\\"0 7.22 12.78 18.34\\\">when</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 292.2259 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 295.3476 434.2039)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.1307 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 311.2524 434.2039)\\\" x=\\\"0 8.33 13.89 18.89\\\">make</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.7055 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.8271 434.2039)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57 36.13\\\">demand.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 377.7431 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 380.8647 434.2039)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 386.4214 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 389.543 434.2039)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 405.666 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 408.7877 434.2039)\\\" x=\\\"0 5.56\\\">do</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.9107 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 423.0323 434.2039)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 436.9337 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 440.0553 434.2039)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.1783 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 459.3 434.2039)\\\" x=\\\"0 5 10.56 15.56\\\">such</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 480.423 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 483.5446 434.2039)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57 33.35\\\">amounts</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.8991 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 525.0207 434.2039)\\\" x=\\\"0 7.22 12.78 18.34\\\">when</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 548.927 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 552.0486 434.2039)\\\" x=\\\"0 2.78 8.34 13.9\\\">they</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 422.8855)\\\" x=\\\"0 5.56 8.89\\\">are</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.5531 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 50.576 422.8855)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.12 31.12 36.68\\\">assessed</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 92.8221 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 95.845 422.8855)\\\" x=\\\"0 3.33 8.89 14.45 16.73 22.29 27.29\\\">(unless</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 128.1399 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 131.1627 422.8855)\\\" x=\\\"0 5 10.56 15.56\\\">such</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 152.2858 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 155.3087 422.8855)\\\" x=\\\"0 3.33 8.89 13.89 19.45 21.73 24.51\\\">results</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 184.8204 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 187.8433 422.8855)\\\" x=\\\"0 2.78 6.11 11.67\\\">from</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 207.8433 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.8661 422.8855)\\\" x=\\\"0 5.56 11.12\\\">our</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.3192 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 228.3421 422.8855)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.8 32.36 37.92 42.92 48.48 51.81\\\">negligence),</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 282.9417 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 285.9646 422.8855)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.0876 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 305.1105 422.8855)\\\" x=\\\"0 8.33 13.89 18.89\\\">must</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 326.7804 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 329.8033 422.8855)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 345.9264 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 348.9492 422.8855)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 365.0723 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 368.0951 422.8855)\\\" x=\\\"0 5.56 11.12 16.68 22.24 24.52 27.3 29.58 35.14\\\">penalties</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 408.2416 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 411.2645 422.8855)\\\" x=\\\"0 7.22 12.78 18.34\\\">when</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 435.1707 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 438.1936 422.8855)\\\" x=\\\"0 5.56 11.12\\\">due</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.8782 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 457.9011 422.8855)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.7927 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 469.8155 422.8855)\\\" x=\\\"0 3.33 8.89 11.17 19.5 25.06 30.62 33.95 38.95\\\">reimburse</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 514.3321 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 517.355 422.8855)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 527.9165 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 530.9394 422.8855)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 535.998 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 539.0209 422.8855)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.8041 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 554.8269 422.8855)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 411.5672)\\\" x=\\\"0 2.78 8.34 13.9 22.23\\\">them.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 58.1098 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 61.0597 411.5672)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 78.8527 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.8026 411.5672)\\\" x=\\\"0 8.33 13.89 18.89\\\">must</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 103.4725 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 106.4225 411.5672)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 122.5455 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 125.4955 411.5672)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 139.3968 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 142.3467 411.5672)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01 30.57\\\">charges</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 177.9229 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 180.8729 411.5672)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 188.7147 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 191.6646 411.5672)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 207.2847 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.2346 411.5672)\\\" x=\\\"0 5.56 11.12 14.45 20.01 25.57 28.9 34.46 40.02\\\">paragraph</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 255.8255 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 258.7754 411.5672)\\\" x=\\\"0 5.56 10.56 16.12\\\">even</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.46 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 283.4099 411.5672)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 288.4685 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 291.4184 411.5672)\\\" x=\\\"0 5 10.56 15.56\\\">such</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.5415 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 315.4914 411.5672)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01 30.57\\\">charges</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.0676 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 354.0175 411.5672)\\\" x=\\\"0 5.56 8.89\\\">are</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 368.4707 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 371.4206 411.5672)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 385.322 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 388.2719 411.5672)\\\" x=\\\"0 5.56 7.84 10.12 12.4 17.96\\\">billed</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 411.7973 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 414.7472 411.5672)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 423.0871 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 426.037 411.5672)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 436.5985 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 439.5485 411.5672)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 448.4401 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 451.39 411.5672)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 459.7298 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 462.6798 411.5672)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 478.8028 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 481.7528 411.5672)\\\" x=\\\"0 5.56 11.12 13.9 16.18\\\">until</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 500.2147 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 503.1646 411.5672)\\\" x=\\\"0 5.56 8.34 11.12 16.68\\\">after</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 523.1744 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 526.1243 411.5672)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 540.0257 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 542.9756 411.5672)\\\" x=\\\"0 5.56 11.12\\\">end</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.6602 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 562.6101 411.5672)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 400.2488)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.0014 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 49.7259 400.2488)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 98.6419 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 101.3665 400.2488)\\\" x=\\\"0 2.78 8.34 11.67 20\\\">term,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 124.1448 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 126.8693 400.2488)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 137.4308 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 140.1554 400.2488)\\\" x=\\\"0 2.28 7.84 13.4\\\">long</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 159.1202 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 161.8448 400.2488)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 172.4063 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 175.1308 400.2488)\\\" x=\\\"0 5 10.56 15.56\\\">such</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 196.2539 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 198.9784 400.2488)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01 30.57\\\">charges</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 234.5546 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 237.2791 400.2488)\\\" x=\\\"0 5.56 8.89\\\">are</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 251.7322 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 254.4568 400.2488)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64\\\">applicable</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.6667 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 302.3913 400.2488)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 310.7311 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 313.4556 400.2488)\\\" x=\\\"0 5 10.56 18.89\\\">some</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 337.9088 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 340.6333 400.2488)\\\" x=\\\"0 5.56 11.12 14.45\\\">part</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 357.8648 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 360.5893 400.2488)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 368.9291 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 371.6537 400.2488)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 385.555 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 388.2796 400.2488)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 437.1956 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 439.9201 400.2488)\\\" x=\\\"0 2.78 8.34 11.67 20\\\">term.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 462.6985 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 465.423 400.2488)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 483.216 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 485.9405 400.2488)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 500.003 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 502.7275 400.2488)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 516.6289 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 519.3534 400.2488)\\\" x=\\\"0 5.56 11.12 16.12\\\">have</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 541.038 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 543.7625 400.2488)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.1024 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 554.8269 400.2488)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 388.9305)\\\" x=\\\"0 5.56 11.12 14.45 17.11 19.39 24.95 29.95 35.51 43.84 49.4 52.06 54.84 60.4 65.4 70.96 75.96\\\">our income taxes.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 375.6121)\\\" x=\\\"0 6.11 8.89 15 20.56 27.23 30.01 32.67 42.11 47.67 50.33 53.66 59.22 62 67.56 69.84 75.4 78.06 80.84 83.12 85.9 88.18 93.74 96.4 99.18 104.74 107.4 110.18 115.74 121.3 123.96 130.63 133.96 139.52 145.08 150.64 153.97 156.75 161.75 164.41 167.19 172.75 176.08 178.74 181.52 187.08 192.64 195.3 198.08 203.64 206.97 215.3 217.96 223.52 226.3 228.96 231.74 237.3 242.86 245.52 247.8 253.36 258.92 263.92 269.48 272.14 277.7 283.26 288.82 291.48 297.04 302.6 305.38 307.66 309.94 312.6 317.6 323.16 328.72 331.38 336.94 341.94 347.5 353.06 355.34 358.67 364.23 366.89 372.45 379.67 385.23 390.79 394.12 399.12 404.68 406.96 412.52\\\">TITLE. We retain title to the Property for the term of the lease and until you acquire ownership.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 362.2937)\\\" x=\\\"0 6.67 13.34 20.01 28.34 35.01 42.23 48.34 55.01 57.79 60.45 69.89 75.45 78.11 83.67 89.23 94.23 99.79 102.45 107.45 112.45 118.01 123.57 129.13 134.69 136.97 142.53 148.09 150.75 156.31 161.87 167.43 169.71 172.49 177.49 180.15 182.93 186.26 191.82 200.15 202.81 207.81 213.37 218.93 222.26 224.92 229.92 235.48 241.04 246.04 251.04 253.32 258.88 264.44 267.1 272.66 277.66 282.66 288.22 293.78 299.34 302.12 304.9 307.56 313.12 318.12 320.78 326.34 329.67 335.23 340.23 342.51 348.07 353.63 359.19 361.85 367.41 372.97 375.25 380.81 388.03\\\">PAYMENTS. We have scheduled debits from your checking account, as provided below:</text></g><clipPath id=\\\"clip2-2\\\"><path d=\\\"M 35 328 L 574 328 L 574 345 L 35 345 L 35 328 z \\\"/></clipPath><g clip-path=\\\"url(#clip2-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.2825 332.657)\\\" x=\\\"0 7.22 15 22.22 28.89 36.11 44.44 51.11 58.33 60.99 67.66 74.88 80.99 88.21 95.99 103.21 105.99 112.1 118.77 124.88 127.66 135.44 142.66 145.32 151.43 159.21 166.43 169.09 175.76 182.43 189.1 197.43 204.1 211.32 217.43 224.1 226.76 233.43 236.21 242.88 245.54 252.21 259.43 266.65 269.31 272.64 279.31 286.53 293.75 296.41 303.63 310.3 316.97 319.75 325.86 332.53\\\">CONSUMER AUTHORIZATION FOR PAYMENTS VIA ACH (ACH DEBITS)</text></g><clipPath id=\\\"clip2-3\\\"><path d=\\\"M 35 79 L 574 79 L 574 329 L 35 329 L 35 79 z \\\"/></clipPath><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 316.3387)\\\" x=\\\"0 6.67 13.89\\\">ACH</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 61.7883 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 66.1692 316.3387)\\\" x=\\\"0 7.22 12.78 18.34 20.62 23.4\\\">Debits</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 94.5725 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 98.9533 316.3387)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 110.6233 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 115.0041 316.3387)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46 42.79 47.79\\\">Payment(s)</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 166.1272 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 170.508 316.3387)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 187.1926 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 191.5735 316.3387)\\\" x=\\\"0 7.22 12.78 18.34 23.9\\\">Range</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 221.0412 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 225.4221 316.3387)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.762 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 238.1428 316.3387)\\\" x=\\\"0 7.22 12.78 18.34 20.62 23.4 28.4\\\">Debits.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 269.3245 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 273.7053 316.3387)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.4983 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 295.8792 316.3387)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 28.35 30.63 35.63\\\">authorize</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 337.0754 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 341.4563 316.3387)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 352.0178 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 356.3987 316.3387)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 364.7385 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 369.1194 316.3387)\\\" x=\\\"0 5.56 11.12 16.68 18.96\\\">debit</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 390.8626 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 395.2434 316.3387)\\\" x=\\\"0 2.78 8.34 13.9 19.46\\\">funds</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.7063 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 424.0872 316.3387)\\\" x=\\\"0 2.78 6.11 11.67\\\">from</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 444.0872 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 448.4681 316.3387)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.9212 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 472.3021 316.3387)\\\" x=\\\"0 5.56 11.12 16.68\\\">bank</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 493.9866 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 498.3675 316.3387)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.68 32.24\\\">account</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 533.3919 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 537.7728 316.3387)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.4427 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.8236 316.3387)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.7249 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 305.0203)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 74.0295 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 77.2781 305.0203)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 85.6179 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 88.8665 305.0203)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 102.7678 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 106.0164 305.0203)\\\" x=\\\"0 2.28 7.84 13.4 18.4\\\">lease</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 129.9813 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 133.2298 305.0203)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57 38.35\\\">payments</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 176.5843 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 179.8329 305.0203)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 196.5174 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 199.766 305.0203)\\\" x=\\\"0 5.56 7.84\\\">all</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.8881 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 213.1366 305.0203)\\\" x=\\\"0 5.56 8.34 13.9 19.46\\\">other</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 235.9296 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 239.1782 305.0203)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57 33.35\\\">amounts</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 277.5327 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 280.7812 305.0203)\\\" x=\\\"0 5.56 10.56 15.56 18.89 24.45 30.01\\\">accrued</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 316.3574 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 319.606 305.0203)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 330.1675 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 333.4161 305.0203)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29 32.85\\\">provided</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.834 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 375.0826 305.0203)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 382.9244 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 386.173 305.0203)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 401.7931 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 405.0417 305.0203)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement,</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.736 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 459.9846 305.0203)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.8264 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 471.0749 305.0203)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.9763 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 488.2249 305.0203)\\\" x=\\\"0 2.78 8.34 10.62 12.9 18.46 25.68 27.96 33.52\\\">following</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 527.3118 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 530.5603 305.0203)\\\" x=\\\"0 3.33 8.89 14.45 20.01\\\">range</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 556.1365 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 559.3851 305.0203)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.7249 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 293.7019)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57 33.35\\\">amounts</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 79.0295 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.706 293.7019)\\\" x=\\\"0 5.56 11.12 13.9 19.46\\\">$1.00</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 106.7305 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 109.407 293.7019)\\\" x=\\\"0\\\">-</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 112.7371 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 115.4136 293.7019)\\\" x=\\\"0 5.56 11.12 16.68 22.24 25.02 30.58 36.14\\\">$500.00.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 154.3394 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 157.016 293.7019)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 174.8089 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 177.4855 293.7019)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 28.35 30.63 35.63\\\">authorize</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 218.6818 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 221.3583 293.7019)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.9198 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 234.5964 293.7019)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 242.9362 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 245.6128 293.7019)\\\" x=\\\"0 5.56 11.12 16.68 18.96\\\">debit</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 267.3559 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 270.0325 293.7019)\\\" x=\\\"0 2.28 7.84 12.84 17.84 23.4\\\">lesser</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 296.7659 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 299.4424 293.7019)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57 33.35\\\">amounts</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 337.7969 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 340.4735 293.7019)\\\" x=\\\"0 2.78 8.34 13.9\\\">than</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.9364 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 362.6129 293.7019)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 382.066 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 384.7426 293.7019)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57 38.35\\\">payment,</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 425.8754 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 428.5519 293.7019)\\\" x=\\\"0 5.56 11.12 16.12 21.68\\\">based</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 455.798 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 458.4746 293.7019)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 469.5976 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 472.2742 293.7019)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 491.7273 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 494.4038 293.7019)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 532.7583 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 535.4349 293.7019)\\\" x=\\\"0 5.56 7.84 12.84 15.62 21.18 24.51 29.51\\\">history.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.7249 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 282.3836)\\\" x=\\\"0 7.78 13.34 16.67 19.33 24.89 30.45 36.01 38.29 41.07 46.07 48.73 55.95 58.23 60.51 62.79 65.45 71.01 76.57 79.23 81.51 87.07 89.73 94.73 100.29 105.29 110.85 113.51 116.84 122.4 127.96 133.52 139.08 141.86 144.52 150.08 155.64 157.92 163.48 168.48 173.48 176.14 183.36 188.92 191.58 197.14 202.7 205.48 207.76 210.54 215.54 218.2 223.2 228.76 234.32\\\">Our debits will be in such range, unless we notify you.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 269.0652)\\\" x=\\\"0 6.67 13.89 21.11 23.77 30.99 36.55 42.11 44.39 47.17 52.17 54.83 57.61 63.17 66.5 69.16 76.38 81.94 84.72 90.28 93.61 99.17 104.73 110.29 112.95 119.62 125.18 130.18 138.51 144.07 149.63 152.41 155.07 161.18 166.74 172.3 175.08 177.74 184.41 189.97 195.53 198.19 203.75 209.31 212.09 217.65 223.21 226.54 228.82 233.82 239.38 242.04 247.6 252.6 255.26 258.04 263.6 266.26 271.82 277.38 282.94 285.22 288 290.66 296.22 298.88 304.44 310 312.78 318.34 323.9 326.56 329.34 334.9 338.23 340.89 346.45 352.01 357.01 359.67 363 368.56 371.34 376.9 380.23 385.79 391.35 396.91 399.57 405.13 410.69 415.69 424.02 429.58 435.14 437.92 440.58 443.36 448.92 454.48\\\">ACH Debits for Returned Payment Fee. You authorize us to debit $ 20.00 for an* D E M O *payment fee.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 255.7469)\\\" x=\\\"0 7.22 12.78 15.56 17.84 22.84\\\">Notice</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 69.0783 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 72.6034 255.7469)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 80.9433 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 84.4684 255.7469)\\\" x=\\\"0 6.67 12.23 15.56 17.84 23.4 26.18 28.46 34.02 39.58\\\">Variation.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 126.8317 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 130.3568 255.7469)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 135.9135 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 139.4386 255.7469)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 145.0001 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.5253 255.7469)\\\" x=\\\"0 5.56 11.12 16.68 18.96\\\">debit</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 170.2684 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 173.7935 255.7469)\\\" x=\\\"0 2.78 8.34 10.62 12.9\\\">falls</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 191.6939 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 195.2191 255.7469)\\\" x=\\\"0 5.56 11.12 13.9 18.9 21.18 26.74\\\">outside</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 227.5238 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 231.0489 255.7469)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 244.9503 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 248.4754 255.7469)\\\" x=\\\"0 5 10.56 16.12 21.12 23.4 26.18 28.46 34.02\\\">specified</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 288.0603 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 291.5855 255.7469)\\\" x=\\\"0 3.33 8.89 14.45 20.01 25.57\\\">range,</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.94 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 323.4651 255.7469)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 336.2483 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 339.7734 255.7469)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 353.8359 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 357.3611 255.7469)\\\" x=\\\"0 5.56 13.89 19.45 21.73\\\">email</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 381.3747 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 384.8999 255.7469)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 401.0229 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 404.548 255.7469)\\\" x=\\\"0 5.56 11.12 13.9 16.18 21.18\\\">notice</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 431.2912 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 434.8163 255.7469)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 443.1562 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 446.6813 255.7469)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 460.5827 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 464.1078 255.7469)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 497.4623 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 500.9874 255.7469)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 517.672 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 521.1971 255.7469)\\\" x=\\\"0 5.56 11.12 13.9\\\">date</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 540.66 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 544.1852 255.7469)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 555.3082 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 558.8333 255.7469)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.7249 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 244.4285)\\\" x=\\\"0 5.56 8.34 11.12 16.68 20.01 22.67 29.89 35.45 37.73 42.73 48.29 50.95 58.17 63.73 66.39 73.61 75.89 78.17 80.45 83.11 88.67 94.23 99.79 102.07 104.85 107.51 112.51 118.07 123.07 128.63 131.29 136.85 145.18 150.74 156.3 161.86 164.64 167.42 170.08 176.75 182.31 187.87 190.53 197.75 200.03 202.31 204.59 207.25 212.81 218.37 221.15 223.81 229.37 232.15 234.81 237.09 242.65 248.21 253.21 255.99 258.65 264.21 269.77 272.43 277.43 282.99 285.27 290.83 296.39 301.95 307.51 310.84 313.5 319.06 324.62 329.62 334.62 336.53 339.19 344.75 350.31 353.09 355.37 360.37 365.93\\\">after which we will debit such amount. You will get at least 10 calendar days&apos; notice.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 231.1102)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68\\\">Payment</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 80.1379 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 85.2907 231.1102)\\\" x=\\\"0 7.22 12.78 15.56 21.12 26.12\\\">Dates.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 114.192 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 119.3448 231.1102)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 137.1377 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 142.2905 231.1102)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 28.35 30.63 35.63\\\">authorize</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 183.4868 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 188.6395 231.1102)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.74\\\">debits</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 215.3827 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 220.5354 231.1102)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.6585 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 236.8113 231.1102)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.7028 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 250.8556 231.1102)\\\" x=\\\"0 5.56 8.34 11.12 16.68\\\">after</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 270.8654 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 276.0181 231.1102)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 289.9195 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 295.0722 231.1102)\\\" x=\\\"0 5.56 11.12 13.9 19.46\\\">dates</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.5351 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 324.6879 231.1102)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 336.3578 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 341.5106 231.1102)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 379.865 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 385.0178 231.1102)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29 32.85\\\">provided</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 423.4358 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 428.5885 231.1102)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 436.4303 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 441.5831 231.1102)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 455.4844 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 460.6372 231.1102)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement,</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.3315 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 517.4843 231.1102)\\\" x=\\\"0 5.56 11.12 13.4 18.96 23.96\\\">unless</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 546.4491 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 551.6019 231.1102)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.7249 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 219.7918)\\\" x=\\\"0 5.56 8.34 13.9 19.46 22.79 30.01 32.29 37.29\\\">otherwise</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 83.5315 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 86.8927 219.7918)\\\" x=\\\"0 5.56 7.84 11.17 16.73 21.73\\\">direct</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 111.4044 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 114.7656 219.7918)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 125.3271 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 128.6884 219.7918)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.5302 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 139.8914 219.7918)\\\" x=\\\"0 7.22 10.55 12.83 15.61 17.89 23.45 29.01\\\">writing.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 171.6834 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 175.0446 219.7918)\\\" x=\\\"0 9.44\\\">We</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 190.0446 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 193.4058 219.7918)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 207.4683 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.8296 219.7918)\\\" x=\\\"0 5.56 11.12 16.68 18.96\\\">debit</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 232.5727 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 235.9339 219.7918)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.057 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 250.4182 219.7918)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.3098 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 262.671 219.7918)\\\" x=\\\"0 5.56 8.34 11.12 16.68\\\">after</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 282.6808 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 286.0421 219.7918)\\\" x=\\\"0 5.56 10.56 16.12 19.45\\\">every</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 310.4952 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 313.8564 219.7918)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 352.2109 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 355.5721 219.7918)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29 32.85\\\">provided</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.9901 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 397.3513 219.7918)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 405.1931 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 408.5543 219.7918)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 424.1745 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 427.5357 219.7918)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement;</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 479.23 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 482.5912 219.7918)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29 32.85 38.41\\\">provided,</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 523.7875 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 527.1488 219.7918)\\\" x=\\\"0 5.56 11.12 18.34 23.9 28.9 34.46 37.79\\\">however,</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.7249 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 208.4734)\\\" x=\\\"0 2.78 8.34 13.9\\\">that</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 57.3547 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 60.5776 208.4734)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 73.3608 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 76.5836 208.4734)\\\" x=\\\"0 3.33 8.89 13.89 19.45 22.78 27.78\\\">reserve</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 109.9284 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 113.1512 208.4734)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 127.0526 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 130.2755 208.4734)\\\" x=\\\"0 3.33 5.61 11.17 16.73\\\">right</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 149.7872 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 153.01 208.4734)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 161.3499 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 164.5728 208.4734)\\\" x=\\\"0 5.56 11.12 16.68 18.96\\\">debit</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 186.3159 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 189.5388 208.4734)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 200.6618 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 203.8847 208.4734)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 217.7861 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 221.0089 208.4734)\\\" x=\\\"0 5.56 11.12 16.68 21.68 23.96 29.52\\\">banking</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.0968 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 259.3197 208.4734)\\\" x=\\\"0 5.56 11.12\\\">day</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.4427 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 278.6656 208.4734)\\\" x=\\\"0 2.28 10.61 18.94 24.5 30.06 32.34 37.9 40.68 46.24 48.52\\\">immediately</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 332.191 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 335.4139 208.4734)\\\" x=\\\"0 5.56 8.89 14.45 19.45 25.01 30.57 32.85 38.41\\\">preceding</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 379.3934 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 382.6162 208.4734)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.0694 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 405.2922 208.4734)\\\" x=\\\"0 3.33 8.89 14.45 20.01 22.29 27.85\\\">regular</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 436.4787 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 439.7016 208.4734)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 478.0561 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 481.279 208.4734)\\\" x=\\\"0 5.56 11.12 13.9\\\">date</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 500.7419 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 503.9647 208.4734)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.0233 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 512.2462 208.4734)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.1476 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 529.3704 208.4734)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.7249 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 197.1551)\\\" x=\\\"0 5.56 11.12 13.9 19.46 22.12 24.9 30.46 32.74 35.02 40.02 42.68 48.24 53.8 56.46 62.02 64.68 70.24 75.8 81.36 84.69 90.25 95.81 101.37 106.37 108.65 114.21 119.77 122.43 127.99 133.55 138.55 141.21 144.54 146.82 149.6 155.16 157.94 160.72 163.38 168.94 171.6 177.16 182.72 185 187.28 192.84 198.4 203.4 206.06 211.62 214.95 217.61 224.83 230.39 235.95 240.95 246.51 252.07 257.63 260.29 265.85 271.41 276.41 279.74\\\">date falls on a non-banking day (i.e., a holiday or weekend day).</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 183.8367)\\\" x=\\\"0 7.22 12.78 16.11 19.44 25 30 32.78 35.06 40.62 46.18 51.18 53.96 56.62 63.29 68.85 74.41 77.07 82.63 88.19 90.97 96.53 102.09 105.42 107.7 112.7 118.26 120.92 126.48 131.48 134.14 136.92 142.48 145.14 150.7 156.26 161.82 164.1 166.88 169.54 175.1 180.66 186.22 188.88 193.88 197.21 202.77 208.33 210.61 213.39 216.05 221.05 226.61 232.17 235.5 238.16 243.72 248.72 253.72 259.28 264.84 270.4 273.18 275.84 278.62 284.18 286.84 291.84 297.4 300.73 304.06 309.62 314.62 317.4 320.06 325.62 328.95 332.28 337.84 341.17 346.17\\\">Corrections. You authorize us to debit and credit your* D E M O * correct errors.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 170.5184)\\\" x=\\\"0 6.67 9.45 12.23 17.79 22.79 25.57 27.85 32.85 38.41 41.07 48.29 53.85 56.63 62.19 64.97 67.63 73.74 79.3 84.86 87.52 90.3 93.63 99.19 104.75 109.75 115.31 120.31 123.09 125.37 130.93 136.49 138.4 143.4 146.06 151.62 154.4 157.18 162.74 167.74 170.52 172.8 177.8 183.36 186.02 191.58 197.14 199.92 205.48 208.14 210.42 215.42 218.08 220.86 226.42 231.98 234.64 241.31 246.87 250.2 255.76 261.32 269.65 275.21 280.77 283.55 286.21 293.43 298.99 301.77 307.33 309.99 315.55 318.88 324.44 329.44 331.72 337.28 342.84 348.4 351.06 356.62 362.18 367.74 372.74 378.3\\\">Effective Date. The transaction&apos;s effective date is the Agreement Date provided above.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 157.2)\\\" x=\\\"0 6.67 11.67 16.67 22.23 27.79 33.35 36.13 38.79 44.35 49.91 55.47 58.13 65.35 70.91 76.47 79.25 81.53 87.09 92.65 95.43 98.09 104.76 110.32 115.88 118.54 124.1 129.66 132.44 138 143.56 146.89 149.17 154.17 159.73 162.39 165.17 170.73 176.29 178.95 184.51 190.07 195.63 197.91 200.69 205.69 208.35 211.13 216.69 219.35 222.13 227.69 229.97 234.97 237.63 243.19 248.19 253.19 258.75 264.31 269.87 272.65 275.43 278.09 285.31 290.87 299.2 304.76 310.32 313.65 316.31 320.2 324.09 327.98 331.87 335.76 341.32 346.88 352.44 358 360.66 367.88 373.44 379 381.78 384.06 389.62 395.18 397.84 405.06 410.62 418.95 424.51 430.07 433.4 436.06 439.95 443.84 447.73 451.62 455.51 461.07 466.63 472.19 477.75\\\">Account and Routing. You authorize the debits to this account: Number *****3968 Routing Number *****1451.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 143.8816)\\\" x=\\\"0 7.22 12.78 18.34 23.9 29.46\\\">Change</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 75.7043 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 78.8745 143.8816)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 86.7163 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 89.8865 143.8816)\\\" x=\\\"0 6.67 11.67 16.67 22.23 27.79 33.35\\\">Account</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 126.0193 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 129.1895 143.8816)\\\" x=\\\"0 2.78 8.34 11.12 16.68 20.01 28.34 33.9 36.68 38.96 44.52 50.08\\\">Information:</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 182.0508 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 185.221 143.8816)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 203.0139 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 206.1841 143.8816)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 28.35 30.63 35.63\\\">authorize</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.3804 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 250.5506 143.8816)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 261.1121 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 264.2823 143.8816)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 272.6222 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 275.7923 143.8816)\\\" x=\\\"0 5.56 11.12 16.68 18.96\\\">debit</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 297.5355 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 300.7057 143.8816)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 316.8287 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 319.9989 143.8816)\\\" x=\\\"0 5.56 11.12\\\">new</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.3437 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 341.5138 143.8816)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.68 32.24\\\">account</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 376.5382 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 379.7084 143.8816)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 395.8315 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 399.0017 143.8816)\\\" x=\\\"0 5.56 7.84 12.84\\\">give</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 417.405 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 420.5752 143.8816)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 431.1367 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 434.3069 143.8816)\\\" x=\\\"0 2.28 7.84 10.62 16.18 19.51 27.84 33.4 36.18 38.46 44.02\\\">information</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 483.8918 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 487.062 143.8816)\\\" x=\\\"0 2.78 8.34 11.67\\\">for.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.5103 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 504.6805 143.8816)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 510.2371 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 513.4073 143.8816)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.5303 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 532.7005 143.8816)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.68 32.24\\\">account</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.7249 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 132.5633)\\\" x=\\\"0 2.28 7.28 9.94 13.27 18.83 21.11 26.67 31.67 34.45 40.01 45.57 48.23 55.45 61.01 63.67 70.89 73.17 75.45 77.73 80.39 85.95 91.51 97.07 99.35 102.13 104.79 110.35 115.91 120.91 123.57 129.13 134.13 139.13 144.69 150.25 155.81 158.59 161.25 168.47 174.03 176.69 182.25 187.81 192.81 198.37 201.03 206.59 212.15 214.81 217.59 219.87 222.15 227.71\\\">is re* D E M O *ill debit any account we have on file.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 119.2449)\\\" x=\\\"0 6.67 9.45 15.01 20.57 23.23 29.9 35.46 40.46 48.79 54.35 59.91 62.69 67.69 70.47 73.13 79.8 85.36 90.92 93.58 101.91 107.47 112.47 115.13 120.13 122.91 128.47 134.03 136.69 142.25 147.81 152.81 161.14 166.7 172.26 175.04 177.7 183.26 186.04 188.7 190.98 196.54 202.1 207.1 209.88 212.54 215.32 220.88 224.21 229.77 235.33 237.99 243.55 249.11 254.67 259.67 261.95 267.51 273.07 275.73 281.29 286.85 291.85 296.85 299.51 305.07 310.63 313.41 318.97 322.3 327.86 330.52 336.08 338.74 344.3 349.86 354.86 363.19 368.75 374.31 377.09\\\">Stop Payments. You may stop payment at least three banking days before a payment.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 105.9266)\\\" x=\\\"0 7.22 12.78 17.78 23.34 28.34 33.9 36.68 38.96 44.52 50.08\\\">Revocation,</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 93.5412 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 97.2277 105.9266)\\\" x=\\\"0 7.22 12.78 18.34 23.34 28.9 31.18 33.46 39.02 41.8 44.08 49.64 55.2\\\">Cancellation,</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 155.216 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 158.9024 105.9266)\\\" x=\\\"0 6.11 11.67 15 23.33 25.61 31.17 36.73 39.51 41.79 47.35 52.91\\\">Termination.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 214.5958 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 218.2823 105.9266)\\\" x=\\\"0 6.11 11.67 13.95\\\">This</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 237.2325 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 240.9189 105.9266)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 28.35 30.63 35.63 41.19 43.97 46.25 51.81\\\">authorization</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 298.2968 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 301.9833 105.9266)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.8\\\">applies</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 333.7899 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 337.4764 105.9266)\\\" x=\\\"0 5.56 11.12 13.9 16.18\\\">until</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.9383 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 359.6248 105.9266)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.7478 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 379.4343 105.9266)\\\" x=\\\"0 3.33 8.89 13.89 19.45 24.45\\\">revoke</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 409.449 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 413.1354 105.9266)\\\" x=\\\"0 2.28 5.06\\\">it.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 420.9723 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 424.6588 105.9266)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 442.4518 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 446.1382 105.9266)\\\" x=\\\"0 8.33 13.89 18.89\\\">must</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.8082 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 471.4946 105.9266)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29\\\">provide</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 504.3511 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 508.0375 105.9266)\\\" x=\\\"0 5.56\\\">at</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 516.3774 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 520.0639 105.9266)\\\" x=\\\"0 2.28 7.84 13.4 18.4\\\">least</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 541.2455 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 544.932 105.9266)\\\" x=\\\"0 2.78 8.34 11.67 17.23\\\">three</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.7249 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 94.6082)\\\" x=\\\"0 5.56 11.12 16.12 21.12 23.03 25.69 31.25 36.81 39.59 41.87 46.87 52.43 55.09 57.87 63.43 66.09 71.09 76.65 82.21 87.21 92.77 95.05 97.83 100.49 107.71 113.27 115.55 117.83 120.49 126.05 128.83 131.49 134.82 140.38 145.94 151.5 154.83 157.49 163.05 168.61 174.17 177.5 183.06 188.62 194.18 199.74 202.4 207.96 210.74 213.4 215.68 221.24 226.8 231.8 234.58 237.24 240.02 245.58 248.91 254.47 260.03 262.69 268.25 273.81 278.81 283.81 286.47 292.03 297.59 300.37 305.93 309.26 314.82 317.48 320.26 325.82 331.38 334.04 339.6 342.93 348.49 354.05 359.61 364.61 370.17 375.73 378.39 383.95 386.73 389.51 395.07 400.07 402.85 405.13 410.13 415.69 418.35 423.91 429.47 432.25 437.81 440.47 446.03 448.81 451.47 454.25 459.81 465.37 468.03 470.81 476.37 479.7 488.03 490.31 495.87 501.43 504.21 506.49 512.05 517.61\\\">days&apos; notice to cancel. Call at (100) 000-0006 at least three days before the proposed effective date of the termination.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 81.2898)\\\" x=\\\"0 7.78 10.56 16.12 21.68 25.01 27.67 34.89 40.45 46.01 51.57 57.13 62.69 67.69 70.47 73.13 80.35 85.91 88.69 90.97 93.75 98.75 101.41 106.97 111.97 114.63 120.19 122.97 125.63 127.91 133.47 139.03 144.03 146.81 149.47 152.25 154.53 159.53 165.09 167.75 173.31 178.87 183.87 186.15 191.71 197.27 202.27 207.27 209.93 215.49 221.05 226.05 231.05 233.71 239.27 244.83 247.61 253.17 256.5 262.06 264.72 267.5 273.06 278.62 281.28 286.84 292.4 297.4 300.18 302.84 308.4 310.68 312.96 315.24 317.52 323.08 328.64 331.3 336.86 342.42 345.2 350.76 353.42 355.7 358.48 361.14 366.14 371.7 377.26 380.59 383.25 388.81 393.81 398.81 404.37 409.93 415.49 418.27 420.93 423.21 428.77 431.55 437.11 440.44 448.77 454.33 457.11 459.39 464.95 470.51 473.17 478.17 483.73 489.29 494.85 500.41 505.97 510.97\\\">Other Changes. Notify us at least five business days before the next billing date if your account information changes.</text></g><clipPath id=\\\"clip2-4\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip2-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.775 345.3758 L 573.625 345.3758 L 573.625 344.3758 L 34.775 344.3758 L 34.775 345.3758 z \\\"/><path clip-path=\\\"url(#clip2-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.625 344.3758 L 573.625 344.3758 L 573.625 329.0574 L 572.625 329.0574 L 572.625 344.3758 z \\\"/><path clip-path=\\\"url(#clip2-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.775 344.3758 L 35.775 344.3758 L 35.775 329.0574 L 34.775 329.0574 L 34.775 344.3758 z \\\"/><path clip-path=\\\"url(#clip2-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.775 329.0574 L 573.625 329.0574 L 573.625 328.0574 L 34.775 328.0574 L 34.775 329.0574 z \\\"/><path clip-path=\\\"url(#clip2-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.775 79.6902 L 573.625 79.6902 L 573.625 78.6902 L 34.775 78.6902 L 34.775 79.6902 z \\\"/><path clip-path=\\\"url(#clip2-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.625 328.0574 L 573.625 328.0574 L 573.625 79.6902 L 572.625 79.6902 L 572.625 328.0574 z \\\"/><path clip-path=\\\"url(#clip2-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.775 328.0574 L 35.775 328.0574 L 35.775 79.6902 L 34.775 79.6902 L 34.775 328.0574 z \\\"/><g clip-path=\\\"url(#clip2-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 36.5264)\\\" x=\\\"0 6.498 11.997 14.391 16.785 21.789 26.793 29.295 34.299 39.303 44.307 504 506.3906 508.7812 511.1719 513.5625 515.9531 518.3438 520.7344 523.125 525.5156\\\">UT  07/2019          </text></g><g clip-path=\\\"url(#clip2-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 26.3398)\\\" x=\\\"0 6.003 11.007 16.011 21.015\\\">Page </text></g><g clip-path=\\\"url(#clip2-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 55.8097 26.3398)\\\" x=\\\"0\\\">3</text></g><g clip-path=\\\"url(#clip2-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.815 26.3398)\\\" x=\\\"0 2.394 7.398 9.9\\\"> of </text></g><g clip-path=\\\"url(#clip2-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 73.1021 26.3398)\\\" x=\\\"0\\\">7</text></g><g clip-path=\\\"url(#clip2-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#d9d9d9\\\" style=\\\"font-family:f2-0; font-size:54pt; white-space:pre\\\" transform=\\\"matrix(0.707 0.707 0.707 -0.707 135.6027 198.5094)\\\" x=\\\"0 56.016 96.048 136.08 176.112 216.144 236.16 284.184 324.216 344.232 364.248 416.232 456.264 480.24\\\">Qoppa Software</text></g><g clip-path=\\\"url(#clip2-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#002ba6\\\" style=\\\"font-family:f2-0; font-size:9pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.932 772)\\\" x=\\\"0 9.336 16.008 22.68 29.352 36.024 39.36 47.364 54.036 57.372 60.708 69.372 76.044 80.04 86.712 90.048 94.044 97.38 104.712 111.384 115.38 118.716 126.72 132.72 139.392 142.056 148.728 155.4 158.736 161.4 168.072 174.744 178.08 187.416 194.088 196.752 202.752 206.088 210.084 213.42 220.092 223.428 226.764 233.436 239.436 242.772 246.108 249.444 258.108 266.772 275.436 278.772 285.444 292.116 298.788 305.46 312.132 315.468 321.468 328.14\\\">Qoppa Software - For Evaluation Only - https://www.qoppa.com</text></g></g></svg></svg></g></svg><br>\\n<?xml version='1.0' encoding='UTF-8'?><svg id=\\\"qoppa_document\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" version=\\\"1.1\\\" xmlns=\\\"http://www.w3.org/2000/svg\\\" xmlns:xlink=\\\"http://www.w3.org/1999/xlink\\\"><!-- jPDFWeb v2019R1.03 - Demo Version --><style>title p { display: block; }</style><g id=\\\"qoppa_viewxform\\\" transform=\\\"matrix(1 0 0 1 0 0)\\\"><style type=\\\"text/css\\\">@font-face {font-family:f3-0;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f3-1;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f3-2;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}</style><svg id=\\\"qoppa_page_p3\\\" class=\\\"qoppa_page\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\"><rect class=\\\"qoppa_pageborder\\\" x=\\\"0.5pt\\\" y=\\\"0.5pt\\\" width=\\\"611pt\\\" height=\\\"791pt\\\" fill=\\\"none\\\" /><svg class=\\\"qoppa_pagecontents\\\" x=\\\"0pt\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" viewBox=\\\"0 0 612 792\\\" ><g class=\\\"qoppa_contentstream\\\" transform=\\\"matrix(1 0 0 -1 0 792)\\\" fill=\\\"black\\\" stroke=\\\"black\\\" stroke-width=\\\"1\\\" stroke-linecap=\\\"butt\\\" stroke-linejoin=\\\"miter\\\" stroke-miterlimit=\\\"10\\\"><clipPath id=\\\"clip3-1\\\"><path d=\\\"M 35 730 L 574 730 L 574 770 L 35 770 L 35 730 z \\\"/></clipPath><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 757.4812)\\\" x=\\\"0 6.6699 11.6699 16.6699 22.2314 27.793 35.0146 37.2949 42.8565 48.418 53.9795 62.3096 67.8711 73.4326 76.2109 81.2109\\\">Acknowledgments.</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 124.6643 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 127.3205 757.4812)\\\" x=\\\"0 6.6699 12.2314\\\">You</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 145.1135 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 147.7697 757.4812)\\\" x=\\\"0 3.3301 8.8916 14.4531\\\">read</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 167.7844 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 170.4406 757.4812)\\\" x=\\\"0 2.7783 8.3398 10.6201\\\">this</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 186.0607 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 188.717 757.4812)\\\" x=\\\"0 5.5615 11.1231 13.9014 19.4629 25.0244 28.3545 30.6348 35.6348 41.1963 43.9746 46.2549 51.8164\\\">authorization</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 246.0949 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 248.7512 757.4812)\\\" x=\\\"0 2.2803\\\">in</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.593 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 259.2492 757.4812)\\\" x=\\\"0 5.5615 8.8916 11.1719 16.7334 19.5117\\\">print,</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.5393 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 284.1955 757.4812)\\\" x=\\\"0 5.5615\\\">on</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 295.3186 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 297.9748 757.4812)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 303.5363 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 306.1926 757.4812)\\\" x=\\\"0 5 10.5615 18.8916 24.4531 30.0146 32.793 38.3545\\\">computer</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 347.8771 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 350.5334 757.4812)\\\" x=\\\"0 5 10 13.3301 18.8916 24.4531 30.0147\\\">screen,</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.3264 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 385.9826 757.4812)\\\" x=\\\"0 5.5615\\\">or</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 394.8742 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 397.5305 757.4812)\\\" x=\\\"0 5.5615 8.3398 13.9014 19.4629\\\">other</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 420.3234 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 422.9797 757.4812)\\\" x=\\\"0 5 7.2803 12.2803 17.8418 23.4033\\\">visual</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 448.6633 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 451.3195 757.4812)\\\" x=\\\"0 5.5615 7.8418 12.8418 18.4033 20.6836 26.2451 31.2451\\\">display.</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 485.343 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 487.9992 757.4812)\\\" x=\\\"0 6.6699 12.2314\\\">You</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 505.7922 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 508.4484 757.4812)\\\" x=\\\"0 5.5615 10.5615 15.5615 21.1231 26.6846 33.9062 36.1865 41.7481 47.3096 52.8711\\\">acknowledge</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 566.8811 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 746.1629)\\\" x=\\\"0 5.5615 11.1231\\\">and</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 57.3596 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 60.0158 746.1629)\\\" x=\\\"0 5.5615 11.123 14.4531 20.0146\\\">agree</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 85.592 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 88.2482 746.1629)\\\" x=\\\"0 2.7783\\\">to</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 96.5881 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 99.2443 746.1629)\\\" x=\\\"0 2.7783 8.3398\\\">the</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 113.1457 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 115.802 746.1629)\\\" x=\\\"0 2.7783 8.3398 10.6201 12.9004 18.4619 25.6836 27.9639 33.5254 39.0869\\\">following:</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 157.6672 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 160.3234 746.1629)\\\" x=\\\"0 2.7783 8.3398 10.6201\\\">this</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 175.9436 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 178.5998 746.1629)\\\" x=\\\"0 6.6699 13.8916\\\">ACH</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 199.7131 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 202.0693 746.1629)\\\" x=\\\"0 7.2217 12.7832 18.3447 20.625\\\">Debit</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.4727 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 227.8289 746.1629)\\\" x=\\\"0 6.6699 12.2314 15.0098 20.5713 26.1328 29.4629 31.7432 36.7432 42.3047 45.083 47.3633 52.9248\\\">Authorization</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 286.3152 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 288.6715 746.1629)\\\" x=\\\"0 2.2803\\\">is</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 295.9518 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 298.308 746.1629)\\\" x=\\\"0 5.5615 11.123\\\">not</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.2094 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 314.5656 746.1629)\\\" x=\\\"0 5.5615\\\">an</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 325.6887 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 328.0449 746.1629)\\\" x=\\\"0 2.2803 7.8418 12.8418 15.6201 18.9502 24.5117 32.8418 38.4033 43.9648\\\">instrument</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 374.7881 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 377.1443 746.1629)\\\" x=\\\"0 5.5615 11.123 16.123 21.6846 25.0146 30.5762 36.1377\\\">governed</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 418.8436 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 421.1998 746.1629)\\\" x=\\\"0 5.5615\\\">by</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 431.7613 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 434.1176 746.1629)\\\" x=\\\"0 6.6699 10 12.7783 15.0586 20.0586 22.3389\\\">Article</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 462.018 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 464.3742 746.1629)\\\" x=\\\"0\\\">3</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 469.9357 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 472.292 746.1629)\\\" x=\\\"0 5.5615\\\">of</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 480.6318 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 482.9881 746.1629)\\\" x=\\\"0 2.7783 8.3398\\\">the</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 496.8895 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 499.2457 746.1629)\\\" x=\\\"0 7.2217 12.7832 15.0635 17.8418 23.4033 26.7334\\\">Uniform</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 734.8445)\\\" x=\\\"0 7.2217 12.7832 21.1133 29.4434 35.0049 38.335 43.335 45.6152 51.1768\\\">Commercial</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 94.132 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 96.4883 734.8445)\\\" x=\\\"0 7.2217 12.7832 18.3447 23.9062\\\">Code.</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 123.1728 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 125.5291 734.8445)\\\" x=\\\"0 6.6699 10 12.2803 17.8418\\\">Print</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.1492 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.5055 734.8445)\\\" x=\\\"0 5.5615 11.1231\\\">and</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 165.19 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 167.5463 734.8445)\\\" x=\\\"0 3.3301 8.8916 11.6699 17.2314 19.5117\\\">retain</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 192.6195 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 194.9758 734.8445)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 200.5373 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 202.8936 734.8445)\\\" x=\\\"0 5.5615 11.123 14.4531\\\">hard</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 222.9082 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 225.2645 734.8445)\\\" x=\\\"0 5 10.5615 16.123\\\">copy</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 246.3875 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 248.7437 734.8445)\\\" x=\\\"0 5.5615\\\">or</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.6353 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 259.9916 734.8445)\\\" x=\\\"0 5.5615 7.8418 13.4033 18.4033 21.1816 24.5117 30.0733 35.6348 37.915\\\">electronic</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.9066 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 305.5629 734.8445)\\\" x=\\\"0 5 10.5615 16.123\\\">copy</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 326.6859 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 329.3422 734.8445)\\\" x=\\\"0 5.5615\\\">of</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 337.682 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 340.3383 734.8445)\\\" x=\\\"0 2.7783 8.3398 10.6201\\\">this</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.9584 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 358.6147 734.8445)\\\" x=\\\"0 6.6699 13.8916\\\">ACH</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 379.7279 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 382.0842 734.8445)\\\" x=\\\"0 7.2217 12.7832 18.3447 20.625\\\">Debit</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 405.4875 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.8438 734.8445)\\\" x=\\\"0 6.6699 12.2314 15.0098 20.5713 26.1328 29.4629 31.7432 36.7432 42.3047 45.083 47.3633 52.9248 58.4863\\\">Authorization.</text></g><clipPath id=\\\"clip3-2\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip3-2)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.775 770.2 L 573.625 770.2 L 573.625 769.2 L 34.775 769.2 L 34.775 770.2 z \\\"/><path clip-path=\\\"url(#clip3-2)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.775 731.2449 L 573.625 731.2449 L 573.625 730.2449 L 34.775 730.2449 L 34.775 731.2449 z \\\"/><path clip-path=\\\"url(#clip3-2)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.625 769.2 L 573.625 769.2 L 573.625 731.2449 L 572.625 731.2449 L 572.625 769.2 z \\\"/><path clip-path=\\\"url(#clip3-2)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.775 769.2 L 35.775 769.2 L 35.775 731.2449 L 34.775 731.2449 L 34.775 769.2 z \\\"/><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 718.5262)\\\" x=\\\"0 7.22 15 22.22 25.55 34.99 41.66 44.44 51.11 57.78 65 67.78 70.44 79.88 85.44 88.1 93.66 99.22 101.88 107.44 113 115.78 118.44 125.66 131.22 133.5 138.5 144.06 146.72 152.28 157.84 161.17 163.83 167.16 169.44 175 180.56 183.34 188.34 191 196.56 199.89 202.55 205.88 211.44 219.77 225.33 230.89 233.17 238.73 243.73 246.39 251.95 257.51 263.07 268.63 271.96 274.62 277.4 282.96 285.24 290.24 292.9 299.57 305.13 308.46 314.02 319.58 327.91 333.47 339.03 341.81 344.47 350.03 355.03 357.69 360.47 366.03 368.31 370.59 372.87 378.43 383.99 386.65 389.43 394.99 397.65 403.21 408.21 413.77 417.1 422.1 424.38 429.38 434.94 437.6 440.38 445.94 451.5 459.83 462.49 468.05 470.83 473.49 479.05 484.61 489.61 492.27 495.05 497.33 505.66 511.22\\\">NON-WAIVER. We do not waive our rights or remedies under this Agreement by failing to exercise them at any time.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 705.2078)\\\" x=\\\"0 7.22 15 23.33 31.66 38.88 46.1 48.88 56.1 62.77 68.88 71.66 78.88 86.66 89.32 98.76 101.54 107.65 114.87 117.53 124.2 131.98 139.2 141.98 144.64 151.86 158.53 164.09 169.65 172.31 179.53 186.2 193.42 201.2 208.42 215.64 218.42 225.64 233.42 236.2 238.86 242.19 247.75 253.31 258.87 262.2 264.86 270.42 275.98 281.54 284.87 290.43 295.99 301.55\\\">COMMUNICATING WITH YOU; CALL RECORDING: (100) 000-0006</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 691.8895)\\\" x=\\\"0 6.67 13.89 20 22.78 30\\\">ENTIRE</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 69.7699 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 74.2589 691.8895)\\\" x=\\\"0 6.67 14.45 21.67 28.34 35.01 43.34 50.01 57.23 63.34\\\">AGREEMENT,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 140.377 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 144.866 691.8895)\\\" x=\\\"0 7.22\\\">NO</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 159.866 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 164.3549 691.8895)\\\" x=\\\"0 6.67 13.89 21.11 23.89 30 32.78 40.56 47.78 54.45\\\">ADDITIONAL</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 224.3647 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 228.8536 691.8895)\\\" x=\\\"0 6.67 13.89 21.67 30 32.78 39.45 46.12 52.79\\\">PROMISES,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 284.42 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 288.9089 691.8895)\\\" x=\\\"0 9.44 16.66 19.44 25.55 31.66 38.33\\\">WRITTEN</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 334.4558 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.9447 691.8895)\\\" x=\\\"0 6.67 13.89\\\">AND</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 360.058 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 364.547 691.8895)\\\" x=\\\"0 6.67 9.45 17.23 24.45 31.12\\\">SIGNED</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.8868 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.3757 691.8895)\\\" x=\\\"0 7.22 14.44 21.11 28.33 36.11 42.78\\\">CHANGES</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.8289 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 461.3178 691.8895)\\\" x=\\\"0 7.78 15 20.56 27.23\\\">ONLY.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 491.3276 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 495.8165 691.8895)\\\" x=\\\"0 6.11 11.67 13.95\\\">This</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 514.7667 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 519.2556 691.8895)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 680.5711)\\\" x=\\\"0 2.78 8.34 13.9 19.46 22.24 27.8 33.36\\\">together</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 69.7943 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 72.8324 680.5711)\\\" x=\\\"0 7.22 9.5 12.28\\\">with</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 90.6742 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 93.7124 680.5711)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 107.6137 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 110.6518 680.5711)\\\" x=\\\"0 5.56 8.34 13.9 19.46\\\">other</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 133.4448 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 136.4829 680.5711)\\\" x=\\\"0 5.56 11.12 16.12 21.68 30.01 35.57 41.13 43.91\\\">documents</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 185.3989 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 188.437 680.5711)\\\" x=\\\"0 3.33 8.89 11.67 17.23 20.56 23.89 29.45\\\">referred</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 223.4517 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 226.4898 680.5711)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 234.8296 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 237.8677 680.5711)\\\" x=\\\"0 5.56 11.12 14.45 20.01 22.29 27.85\\\">herein,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 268.5025 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 271.5406 680.5711)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24 28.52 34.08\\\">including</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 311.189 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 314.2271 680.5711)\\\" x=\\\"0 5.56 11.12\\\">but</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 328.1285 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 331.1666 680.5711)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 345.068 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 348.1061 680.5711)\\\" x=\\\"0 2.28 4.56 12.89 15.17 17.95 23.51\\\">limited</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 377.1783 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 380.2165 680.5711)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.5563 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 391.5944 680.5711)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 411.0475 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 414.0856 680.5711)\\\" x=\\\"0 5.56 11.12 14.45 19.45 25.01 30.57 35.57\\\">purchase</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 455.2233 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 458.2614 680.5711)\\\" x=\\\"0 3.33 8.89 13.89 19.45 21.73 27.29\\\">receipt</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 488.3347 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 491.3728 680.5711)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 508.0574 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 511.0955 680.5711)\\\" x=\\\"0 2.78 5.06 10.62 16.18\\\">final</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.5574 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 532.5955 680.5711)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 669.2527)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 66.4545 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 69.6146 669.2527)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 86.2991 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 89.4592 669.2527)\\\" x=\\\"0 5 10 15.56 21.12 26.68 32.24 34.52 40.08\\\">schedule,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 132.3254 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 135.4855 669.2527)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 142.7658 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 145.9259 669.2527)\\\" x=\\\"0 5.56 11.12\\\">our</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.379 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 163.5391 669.2527)\\\" x=\\\"0 5.56 11.12 13.9 16.18 19.51\\\">entire</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 188.6123 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 191.7724 669.2527)\\\" x=\\\"0 5.56 11.12 14.45 20.01 25.57 33.9 39.46 45.02 47.8\\\">agreement.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 242.3583 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 245.5184 669.2527)\\\" x=\\\"0 9.44\\\">We</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 260.5184 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 263.6785 669.2527)\\\" x=\\\"0 5.56 11.12 16.12\\\">have</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 285.363 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 288.5231 669.2527)\\\" x=\\\"0 8.33 13.89 19.45\\\">made</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 313.5378 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 316.6978 669.2527)\\\" x=\\\"0 5.56\\\">no</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 327.8209 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 330.981 669.2527)\\\" x=\\\"0 5.56 8.89 14.45 22.78 25.06 30.06 35.62\\\">promises</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.606 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 374.766 669.2527)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.1059 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 386.266 669.2527)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.389 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 405.5491 669.2527)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.4504 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 422.6105 669.2527)\\\" x=\\\"0 5 10.56 16.12 18.9 24.46 26.74 32.3 37.86\\\">contained</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.0383 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 469.1983 669.2527)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 477.0401 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 480.2002 669.2527)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 495.8203 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 498.9804 669.2527)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 547.8964 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 551.0565 669.2527)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.9481 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 563.1082 669.2527)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 657.9344)\\\" x=\\\"0 5 10.56 15.56 21.12 23.78 29.34 32.12 37.68 43.24 46.57 49.23 54.79 60.35 65.35 70.91 79.24 84.8 90.36 93.14 98.14 100.92 103.58 110.25 115.81 120.81 123.47 128.47 134.03 139.59 145.15 150.71 156.27 158.93 161.71 167.27 169.93 172.71 178.27 180.55 185.55 188.21 194.88 200.44 203.77 209.33 214.89 223.22 228.78 234.34 237.12 239.78 248.11 253.67 258.67 261.45 264.11 269.67 275.23 277.89 285.11 288.44 290.72 293.5 296.28 301.84 307.4 310.06 315.62 321.18 326.74 329.4 334.4 336.68 342.24 347.8 353.36 358.92 361.58 367.14 372.14 374.8 379.8 385.36 390.92 393.58 399.14 404.7 410.26 412.92 418.48 423.48\\\">such other documents. Any change to this Agreement must be written and signed by you and us.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 644.616)\\\" x=\\\"0 7.22 14.44 21.11 27.22 35 43.33 50\\\">CUSTOMER</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 90.3217 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 93.5458 644.616)\\\" x=\\\"0 8.33 16.11 23.33 26.11 32.22 35 41.67\\\">MODIFIED</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 142.4325 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 145.6566 644.616)\\\" x=\\\"0 6.67 13.34 20.01 28.34 35.01 42.23\\\">PAYMENT</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 193.9964 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 197.2205 644.616)\\\" x=\\\"0 7.22 13.89 20 26.67\\\">DATES</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 230.5603 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 233.7844 644.616)\\\" x=\\\"0 6.67 13.89\\\">AND</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 254.8977 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 258.1218 644.616)\\\" x=\\\"0 6.11 13.33 20 27.78 35 41.67 48.89 56.11 62.78\\\">FREQUENCY.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 323.6833 644.616)\\\" x=\\\"0 3.2241\\\">  </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 330.1315 644.616)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 347.3629 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 350.587 644.616)\\\" x=\\\"0 5.56 11.12 13.9 19.46\\\">dates</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.0499 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 378.274 644.616)\\\" x=\\\"0 2.78 8.34 11.67\\\">for,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 392.7222 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 395.9463 644.616)\\\" x=\\\"0 2.78 6.11 11.67 17.23 22.79 28.35 33.91 38.91\\\">frequency</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 439.8623 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 443.0864 644.616)\\\" x=\\\"0 5.56 8.34\\\">of,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.2046 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 457.4286 644.616)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57\\\">number</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 491.3349 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 494.559 644.616)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 502.8988 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 506.1229 644.616)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 522.8075 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 526.0316 644.616)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.386 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 562.6101 644.616)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 633.2977)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 68.1781 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 72.0521 633.2977)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46\\\">Payments</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 116.515 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 120.389 633.2977)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 128.2308 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 132.1048 633.2977)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 147.7249 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 151.5989 633.2977)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 200.5149 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 204.3889 633.2977)\\\" x=\\\"0 5.56 8.89\\\">are</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 218.842 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 222.716 633.2977)\\\" x=\\\"0 5.56 11.12 16.12 21.68\\\">based</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 249.9621 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 253.8361 633.2977)\\\" x=\\\"0 5.56 11.12 16.68\\\">upon</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.0822 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 279.9562 633.2977)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 293.8575 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 297.7315 633.2977)\\\" x=\\\"0 5.56 11.12 16.12 21.68 27.24\\\">payday</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.9776 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 333.8516 633.2977)\\\" x=\\\"0 2.28 7.84 10.62 16.18 19.51 27.84 33.4 36.18 38.46 44.02\\\">information</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.4366 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 387.3105 633.2977)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.4336 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.3076 633.2977)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29 32.85\\\">provided</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 445.7255 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 449.5995 633.2977)\\\" x=\\\"0 7.22 9.5 12.28\\\">with</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.4413 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 471.3153 633.2977)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 490.7684 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 494.6424 633.2977)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 34.58 36.86 42.42 47.98\\\">application.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 545.409 633.2977)\\\" x=\\\"0 3.874\\\">  </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.157 633.2977)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 621.9793)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 51.9916 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 55.3463 621.9793)\\\" x=\\\"0 5 10.56 16.12 18.9 24.46 29.46\\\">contact</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 87.5875 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 90.9422 621.9793)\\\" x=\\\"0 5.56 11.12\\\">our</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 105.3953 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 108.75 621.9793)\\\" x=\\\"0 5 10.56 15.56 18.34 23.9 32.23 37.79\\\">customer</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 149.873 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 153.2277 621.9793)\\\" x=\\\"0 5 10.56 13.89 18.89 21.17 26.17\\\">service</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 184.9611 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 188.3158 621.9793)\\\" x=\\\"0 5.56 11.12 16.68 22.24 25.57 28.35 36.68 42.24 47.8\\\">department</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.9017 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 242.2564 621.9793)\\\" x=\\\"0 5.56 8.89\\\">or,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 253.9263 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 257.281 621.9793)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.3396 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 265.6942 621.9793)\\\" x=\\\"0 5.56 10.56 16.12 18.4 20.68 26.24 31.8 34.08\\\">available</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 305.3427 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 308.6973 621.9793)\\\" x=\\\"0 5.56 10.56\\\">use</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 324.8204 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 328.1751 621.9793)\\\" x=\\\"0 5.56 11.12 13.9 19.46 27.79 33.35 36.13 41.69\\\">automated</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.4309 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 378.7856 621.9793)\\\" x=\\\"0 8.33 13.89 19.45 25.01 30.01\\\">means,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 411.5786 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 414.9332 621.9793)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.9918 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 423.3465 621.9793)\\\" x=\\\"0 5.56 10.56 16.12 18.4 20.68 26.24 31.8 34.08 39.64\\\">available,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 465.7733 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 469.128 621.9793)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 477.4678 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 480.8225 621.9793)\\\" x=\\\"0 3.33 8.89 14.45 20.01 25.57 30.57\\\">request</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 514.177 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 517.5316 621.9793)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 523.0932 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 526.4478 621.9793)\\\" x=\\\"0 5 10.56 16.12 21.68 27.24\\\">change</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.2555 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 562.6101 621.9793)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 610.6609)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.0014 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 51.6173 610.6609)\\\" x=\\\"0 5 10 15.56 21.12 26.68 32.24 34.52 40.08\\\">scheduled</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 97.2667 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 101.8826 610.6609)\\\" x=\\\"0 5.56 11.12 13.9 19.46\\\">dates</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 126.3454 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 130.9613 610.6609)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 142.6313 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 147.2471 610.6609)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 163.9317 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 168.5476 610.6609)\\\" x=\\\"0 2.78 6.11 11.67 17.23 22.79 28.35 33.91 38.91\\\">frequency</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 212.4636 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 217.0795 610.6609)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.4193 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 230.0352 610.6609)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 265.1134 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 269.7292 610.6609)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46 44.46\\\">Payments.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 316.9705 610.6609)\\\" x=\\\"0 4.6159\\\">  </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 326.2022 610.6609)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 331.7589 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 336.3748 610.6609)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 349.158 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 353.7739 610.6609)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.68\\\">accept</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.2367 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 387.8526 610.6609)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.4142 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 398.03 610.6609)\\\" x=\\\"0 5 10.56 16.12 21.68 27.24\\\">change</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.8377 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 435.4535 610.6609)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 443.2953 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 447.9112 610.6609)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 461.8126 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 466.4285 610.6609)\\\" x=\\\"0 5 10 15.56 21.12 26.68 32.24 34.52 40.08\\\">scheduled</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.0779 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 516.6938 610.6609)\\\" x=\\\"0 5.56 11.12 13.9 19.46\\\">dates</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 541.1567 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 545.7726 610.6609)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 557.4425 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 562.0584 610.6609)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 599.3426)\\\" x=\\\"0 2.78 6.11 11.67 17.23 22.79 28.35 33.91 38.91\\\">frequency</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 77.016 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 80.7576 599.3426)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 89.0974 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 92.839 599.3426)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 127.9171 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 131.6587 599.3426)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46 44.46\\\">Payments,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 178.8999 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 182.6415 599.3426)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 196.5429 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 200.2844 599.3426)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.6389 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 237.3805 599.3426)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.7204 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 249.4619 599.3426)\\\" x=\\\"0 5.56 11.12 16.12\\\">each</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 271.1465 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 274.8881 599.3426)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 309.9662 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 313.7078 599.3426)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68\\\">Payment</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 353.1707 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 356.9123 599.3426)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 370.9748 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 374.7163 599.3426)\\\" x=\\\"0 5.56 11.12 13.9 19.46 27.79 33.35 36.13 38.41 43.41 48.97 51.25 53.53\\\">automatically</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 433.2515 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 436.9931 599.3426)\\\" x=\\\"0 5.56\\\">be</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 448.1161 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 451.8577 599.3426)\\\" x=\\\"0 8.33 13.89 19.45 21.73 24.51 26.79 32.35\\\">modified</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.7727 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 493.5143 599.3426)\\\" x=\\\"0 5\\\">so</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 504.0758 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 507.8174 599.3426)\\\" x=\\\"0 2.78 8.34 13.9\\\">that</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 524.4971 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 528.2387 599.3426)\\\" x=\\\"0 2.78 8.34 13.9\\\">that</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 544.9184 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 548.6599 599.3426)\\\" x=\\\"0 6.11 11.67 14.45 20.01\\\">Total</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 588.0242)\\\" x=\\\"0 7.22 12.78 17.78 20.56\\\">Cost,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 56.4398 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 60.6221 588.0242)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 77.3067 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.489 588.0242)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 95.3903 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 99.5726 588.0242)\\\" x=\\\"0 5.56 11.12 14.45 16.73 22.29\\\">period</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 127.4291 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 131.6113 588.0242)\\\" x=\\\"0 5.56 10.56 16.12\\\">over</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 151.0645 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 155.2467 588.0242)\\\" x=\\\"0 7.22 12.78 15.06 20.06\\\">which</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 180.8717 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 185.054 588.0242)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 198.9554 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 203.1377 588.0242)\\\" x=\\\"0 6.11 11.67 14.45 20.01\\\">Total</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.4277 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 229.61 588.0242)\\\" x=\\\"0 7.22 12.78 17.78\\\">Cost</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 250.1715 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 254.3538 588.0242)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 261.6341 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 265.8163 588.0242)\\\" x=\\\"0 5.56 11.12 13.4 18.96\\\">paid,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 287.5595 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 291.7418 588.0242)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 305.8043 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 309.9866 588.0242)\\\" x=\\\"0 3.33 8.89 17.22 22.78 25.06\\\">remain</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 340.6116 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 344.7938 588.0242)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 358.6952 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 362.8775 588.0242)\\\" x=\\\"0 5 10.56 18.89\\\">same</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 387.3306 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 391.5129 588.0242)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.0744 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 406.2567 588.0242)\\\" x=\\\"0 5.56 8.89 11.17 16.73\\\">prior</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 426.3202 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 430.5025 588.0242)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 438.8423 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 443.0246 588.0242)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.9259 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 461.1082 588.0242)\\\" x=\\\"0 3.33 8.89 14.45 20.01 25.57 30.57 33.35 38.91\\\">requested</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 505.5858 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 509.768 588.0242)\\\" x=\\\"0 5 10.56 16.12 21.68 27.24 32.8\\\">change.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 545.354 588.0242)\\\" x=\\\"0 4.1823\\\">  </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.7185 588.0242)\\\" x=\\\"0 6.67 12.23\\\">Any</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 576.7059)\\\" x=\\\"0 3.33 8.89 11.67 17.23 22.79 27.79 33.35\\\">refences</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 71.4545 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 75.2825 576.7059)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 83.1243 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 86.9523 576.7059)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 102.5725 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 106.4005 576.7059)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 155.3165 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 159.1445 576.7059)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 167.4844 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 171.3124 576.7059)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 185.2138 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 189.0418 576.7059)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57 33.9\\\">number,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.7264 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 229.5544 576.7059)\\\" x=\\\"0 2.78 6.11 11.67 17.23 22.79 28.35 33.91 38.91 43.91\\\">frequency,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.2488 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 280.0768 576.7059)\\\" x=\\\"0 2.78 5.06 13.39 15.67 21.23\\\">timing</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 306.8688 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 310.6968 576.7059)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 327.3814 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 331.2094 576.7059)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 364.5639 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 368.3919 576.7059)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 376.7318 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 380.5598 576.7059)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 415.6379 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 419.466 576.7059)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46\\\">Payments</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 463.9289 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 467.7569 576.7059)\\\" x=\\\"0 3.33 8.89 11.67 17.23 20.56\\\">refers</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 493.3184 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 497.1465 576.7059)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 505.4863 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 509.3143 576.7059)\\\" x=\\\"0 5 10.56 15.56\\\">such</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 530.4374 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 534.2654 576.7059)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57 33.9\\\">number,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 565.3875)\\\" x=\\\"0 2.78 6.11 11.67 17.23 22.79 28.35 33.91 38.91 43.91 46.69 49.35 52.13 54.41 62.74 68.3 70.96 76.52 82.08 87.64 90.3 95.86 104.19 109.75 115.31 120.87 123.65 126.31 131.87 136.87 139.53 147.86 153.42 158.42 161.08 166.64 172.2 174.86 183.19 188.75 194.31 196.59 199.37 201.65 207.21 212.77 215.43 220.99 225.99 228.65 235.32 240.88 246.44 252 254.66 260.22 263 265.66 270.66 276.22 281.78 285.11 287.77 291.1 296.66 302.22 307.78 313.34 318.34 321.12\\\">frequency, time and amount as may be modified by Snap at your request.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 552.0691)\\\" x=\\\"0 6.67 13.34 20.01 26.68 33.9 40.57 47.24 50.02 55.58 58.36 64.47 71.14\\\">SEVERABILITY.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 107.016 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 110.2288 552.0691)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 115.7855 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 118.9983 552.0691)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 124.5598 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 127.7726 552.0691)\\\" x=\\\"0 5 10.56 16.12 19.45\\\">court</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 150.004 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 153.2169 552.0691)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 162.1085 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 165.3213 552.0691)\\\" x=\\\"0 5.56 8.34 13.9 19.46\\\">other</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 188.1142 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 191.327 552.0691)\\\" x=\\\"0 5.56 7.84 12.84 18.4 23.96 26.74\\\">dispute</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 223.6317 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 226.8445 552.0691)\\\" x=\\\"0 3.33 8.89 13.89 19.45 21.73 27.29 30.07 32.35 37.91\\\">resolution</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 270.3211 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 273.5339 552.0691)\\\" x=\\\"0 5.56 11.12 16.68\\\">body</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 295.2185 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 298.4313 552.0691)\\\" x=\\\"0 2.78 5.06 10.62 16.18\\\">finds</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.6129 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 322.8257 552.0691)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.9488 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 342.1616 552.0691)\\\" x=\\\"0 5.56 11.12 14.45\\\">part</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.393 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 362.6058 552.0691)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 370.9457 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 374.1585 552.0691)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 389.7786 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 392.9914 552.0691)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 441.9074 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 445.1202 552.0691)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 453.4601 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 456.6729 552.0691)\\\" x=\\\"0 5.56\\\">be</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.7959 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 471.0087 552.0691)\\\" x=\\\"0 5 10.56 12.84\\\">void</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.4121 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 492.6249 552.0691)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.5165 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 504.7293 552.0691)\\\" x=\\\"0 5.56 11.12 16.68 22.24 25.02 30.58 33.91 38.91 44.47 50.03 55.59 57.87 63.43\\\">u* D E M O *e,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 540.7508)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 48.7201 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 53.1394 540.7508)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 102.0554 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 106.4747 540.7508)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 113.755 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 118.1743 540.7508)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 126.5142 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 130.9335 540.7508)\\\" x=\\\"0 5.56\\\">be</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 142.0565 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 146.4758 540.7508)\\\" x=\\\"0 3.33 8.89 14.45\\\">read</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 166.4905 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 170.9097 540.7508)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 181.4713 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 185.8906 540.7508)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 190.9492 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 195.3685 540.7508)\\\" x=\\\"0 2.78 8.34 13.9\\\">that</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 212.0482 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 216.4675 540.7508)\\\" x=\\\"0 5.56 11.12 14.45\\\">part</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.6989 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 238.1182 540.7508)\\\" x=\\\"0 7.22 12.78 16.11\\\">were</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.793 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 264.2123 540.7508)\\\" x=\\\"0 5.56 11.12 16.12 21.68\\\">never</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 289.227 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 293.6463 540.7508)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.2078 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 303.6271 540.7508)\\\" x=\\\"0 5.56 11.12 14.45\\\">part</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 320.8585 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 325.2778 540.7508)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 333.6177 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.037 540.7508)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 353.6571 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 358.0764 540.7508)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 409.7707 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 414.19 540.7508)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 431.4215 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 435.8408 540.7508)\\\" x=\\\"0 3.33 8.89 13.89\\\">rest</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 452.5107 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 456.93 540.7508)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 465.2699 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 469.6891 540.7508)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 483.5905 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 488.0098 540.7508)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 536.9258 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 541.3451 540.7508)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 555.4076 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 559.8269 540.7508)\\\" x=\\\"0 5.56\\\">be</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 529.4324)\\\" x=\\\"0 5.56 11.12 13.9 19.46 22.79 27.79 33.35 38.91 44.47 46.75 52.31\\\">enforceable.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 516.1141)\\\" x=\\\"0 6.67 13.89 21.67 28.89 31.67 38.34 41.12 47.23 53.9\\\">PROHIBITED</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 94.2182 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 97.4569 516.1141)\\\" x=\\\"0 6.67 13.89 20 26.67\\\">ACTS.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 126.9051 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 130.1438 516.1141)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 147.9368 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 151.1754 516.1141)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 165.2379 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 168.4766 516.1141)\\\" x=\\\"0 5 10.56 16.12\\\">keep</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 190.1612 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 193.3999 516.1141)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 207.3013 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.5399 516.1141)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 248.3329 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 251.5716 516.1141)\\\" x=\\\"0 2.78 6.11 11.67\\\">free</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 268.8031 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 272.0417 516.1141)\\\" x=\\\"0 2.78 6.11 11.67\\\">from</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 292.0417 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 295.2804 516.1141)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 311.4035 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 314.6422 516.1141)\\\" x=\\\"0 2.28 4.56 10.12 15.68\\\">liens</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.3258 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.5645 516.1141)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 347.4561 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 350.6947 516.1141)\\\" x=\\\"0 5 7.28 12.84 15.12 23.45 28.45\\\">claims.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 381.9252 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 385.1639 516.1141)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.9569 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 406.1956 516.1141)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 420.2581 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 423.4968 516.1141)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 437.3981 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 440.6368 516.1141)\\\" x=\\\"0 5.56 11.12 18.34\\\">pawn</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 464.5431 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 467.7818 516.1141)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 476.6734 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 479.912 516.1141)\\\" x=\\\"0 5.56 7.84 13.4 18.96 24.52\\\">pledge</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.9999 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 513.2386 516.1141)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 527.14 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 530.3787 516.1141)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 504.7957)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 50.893 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 55.1549 504.7957)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 69.2174 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 73.4794 504.7957)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 87.3807 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 91.6427 504.7957)\\\" x=\\\"0 8.33 13.89 18.89\\\">move</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 116.0958 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 120.3578 504.7957)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 134.2592 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 138.5211 504.7957)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 176.3141 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 180.576 504.7957)\\\" x=\\\"0 5.56 11.12 13.9 18.9 21.18 26.74\\\">outside</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 212.8807 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 217.1427 504.7957)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.4825 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 229.7445 504.7957)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 243.6458 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 247.9078 504.7957)\\\" x=\\\"0 5.56 11.12 16.68 20.01 25.57 30.57\\\">address</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 283.484 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 287.7459 504.7957)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 303.869 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 308.1309 504.7957)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29 32.85\\\">provided</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 346.5489 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 350.8109 504.7957)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.1507 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 363.4127 504.7957)\\\" x=\\\"0 5.56 10.56\\\">us,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 376.7525 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 381.0145 504.7957)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 397.699 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 401.961 504.7957)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 412.5225 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 416.7845 504.7957)\\\" x=\\\"0 5.56 11.12 16.68 22.24 25.02 30.58 36.14\\\">updated,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 455.7103 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 459.9722 504.7957)\\\" x=\\\"0 5.56 11.12 13.4 18.96 23.96\\\">unless</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 488.9371 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 493.199 504.7957)\\\" x=\\\"0 2.28\\\">it</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 498.2576 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 502.5196 504.7957)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.7998 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 514.0618 504.7957)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 522.4016 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 526.6636 504.7957)\\\" x=\\\"0 3.33 8.89 11.67 17.23 20.56\\\">return</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.7867 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0486 504.7957)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 493.4773)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 70.893 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 74.775 493.4773)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 83.1148 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 86.9968 493.4773)\\\" x=\\\"0 5.56 10.56\\\">us,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 100.3367 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 104.2187 493.4773)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 113.1103 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 116.9923 493.4773)\\\" x=\\\"0 5.56 11.12\\\">our</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 131.4454 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 135.3274 493.4773)\\\" x=\\\"0 5.56 11.12 16.12 18.4 23.96 29.52 35.08 40.64\\\">designee.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 178.7551 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 182.6371 493.4773)\\\" x=\\\"0 6.11\\\">To</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 194.307 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 198.189 493.4773)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 212.0904 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 215.9724 493.4773)\\\" x=\\\"0 5.56 10.56 13.34 18.9 24.46\\\">extent</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 243.2136 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 247.0956 493.4773)\\\" x=\\\"0 5.56 10.56\\\">use</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 263.2187 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 267.1007 493.4773)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.4405 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 279.3225 493.4773)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 293.2239 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 297.1059 493.4773)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 334.8988 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.7808 493.4773)\\\" x=\\\"0 3.33 8.89 14.45 20.01 22.29 25.62 31.18\\\">requires</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 374.9674 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 378.8494 493.4773)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 394.9724 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 398.8544 493.4773)\\\" x=\\\"0 8.33 10.61 16.17 18.45 26.78 32.34\\\">minimum</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 439.5282 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 443.4102 493.4773)\\\" x=\\\"0 5 8.33 10.61 13.39 18.95 22.28 24.56\\\">criteria</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 473.5323 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 477.4143 493.4773)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.0842 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 492.9662 493.4773)\\\" x=\\\"0 5.56 10.56 16.12\\\">use,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 511.8676 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 515.7496 493.4773)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24 28.52 34.08\\\">including</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 555.3981 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 559.2801 493.4773)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 482.159)\\\" x=\\\"0 5.56 10.56 16.12 24.45 30.01 32.29\\\">example</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 70.9565 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 74.5435 482.159)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 80.105 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 83.6921 482.159)\\\" x=\\\"0 5.56 11.12 14.45 22.78 25.06 27.84\\\">permit,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 114.3123 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 117.8993 482.159)\\\" x=\\\"0 2.28 4.56 9.56 15.12 20.68 25.68 31.24\\\">license,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 151.9228 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 155.5098 482.159)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 164.4014 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 167.9885 482.159)\\\" x=\\\"0 8.33 10.61 16.17 18.45 26.78 32.34\\\">minimum</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 208.6624 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 212.2494 482.159)\\\" x=\\\"0 5.56 11.12 16.68\\\">age,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.7123 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 235.2994 482.159)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 251.4224 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 255.0095 482.159)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 269.072 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 272.6591 482.159)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 286.5605 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 290.1476 482.159)\\\" x=\\\"0 5.56 7.84 10.12 15.68\\\">allow</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 313.0528 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 316.6399 482.159)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 332.7629 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 336.35 482.159)\\\" x=\\\"0 2.28 10.61 16.17 19.5 25.06 30.62 36.18\\\">improper</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.8666 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 379.4537 482.159)\\\" x=\\\"0 5.56 10.56\\\">use</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 395.5767 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 399.1638 482.159)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 407.5037 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 411.0907 482.159)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 424.9921 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 428.5792 482.159)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 469.1505 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 472.7376 482.159)\\\" x=\\\"0 6.67\\\">As</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.4075 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 487.9946 482.159)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64 45.2\\\">applicable,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 535.9828 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 539.5699 482.159)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.2399 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 554.8269 482.159)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 470.8406)\\\" x=\\\"0 5.56 11.12 16.68 19.46\\\">boat,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 55.3412 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 60.5175 470.8406)\\\" x=\\\"0 8.33 13.89 16.67 22.23 25.56 27.84 32.84 38.4\\\">motorized</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 104.4823 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 109.6586 470.8406)\\\" x=\\\"0 5 10.56 16.12 18.4 23.4 25.68 31.24\\\">vehicle,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 143.6821 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.8584 470.8406)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 157.75 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 162.9263 470.8406)\\\" x=\\\"0 5.56 8.34 13.9 19.46 22.79 30.01 32.29 37.29\\\">otherwise</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 205.7827 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.959 470.8406)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64 45.2\\\">applicable,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 258.9473 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 264.1236 470.8406)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.2466 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 285.4229 470.8406)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.4854 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 304.6617 470.8406)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 318.5631 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 323.7394 470.8406)\\\" x=\\\"0 5.56 11.12 14.45 22.78 25.06\\\">permit</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.5812 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 356.7575 470.8406)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 372.8805 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 378.0568 470.8406)\\\" x=\\\"0 5.56 11.12 14.45 19.45 25.01 30.57\\\">person,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 411.4113 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 416.5876 470.8406)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24 28.52 34.08\\\">including</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.236 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 461.4123 470.8406)\\\" x=\\\"0 5 10.56 16.12 19.45 24.45 30.01 32.29 35.07\\\">yourself,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.2639 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 504.4402 470.8406)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.78 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 517.9563 470.8406)\\\" x=\\\"0 5.56 11.12 16.68 20.01 25.57 28.35\\\">operate</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.8723 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0486 470.8406)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 459.5223)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 70.893 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 75.2445 459.5223)\\\" x=\\\"0 7.22 12.78 15.06 17.34\\\">while</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 98.1497 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 102.5012 459.5223)\\\" x=\\\"0 5 10.56 15.56\\\">such</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 123.6243 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 127.9757 459.5223)\\\" x=\\\"0 5.56 11.12 14.45 19.45 25.01\\\">person</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 158.5519 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 162.9034 459.5223)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 170.1837 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 174.5351 459.5223)\\\" x=\\\"0 2.28 10.61 16.17 21.73 24.01 27.34 32.9\\\">impaired</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 213.0019 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 217.3534 459.5223)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 227.915 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 232.2664 459.5223)\\\" x=\\\"0 5.56 8.89 14.45 20.01 25.01\\\">drugs,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 260.0594 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 264.4109 459.5223)\\\" x=\\\"0 5.56 7.84 12.84 18.4 23.96 29.52\\\">alcohol</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 296.2175 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 300.569 459.5223)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 309.4606 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 313.8121 459.5223)\\\" x=\\\"0 2.78 6.11 11.67\\\">from</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 333.8121 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.1636 459.5223)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 354.2866 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 358.6381 459.5223)\\\" x=\\\"0 5.56 8.34 13.9 19.46\\\">other</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 381.4311 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 385.7826 459.5223)\\\" x=\\\"0 5 10.56 16.12 21.12 26.68\\\">cause.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 415.2455 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 419.5969 459.5223)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 437.3899 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 441.7414 459.5223)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 455.8039 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 460.1554 459.5223)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.0567 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 478.4082 459.5223)\\\" x=\\\"0 5.56 10.56\\\">use</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 494.5313 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 498.8828 459.5223)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.7841 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 517.1356 459.5223)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 554.9286 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 559.2801 459.5223)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 448.2039)\\\" x=\\\"0 5 10.56 18.89 27.22 32.78 36.11 41.11 43.39 48.95 51.23 53.89 59.45 65.01 68.34 73.9 79.46 84.46 90.02 95.02\\\">commercial purposes.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 434.8855)\\\" x=\\\"0 9.44 16.11 23.33 30.55 33.33 40.55 48.33\\\">WARNING:</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 84.2084 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 87.8242 434.8855)\\\" x=\\\"0 7.22 12.78 15.06 20.62 25.62\\\">Unless</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 118.4492 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 122.065 434.8855)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 138.188 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 141.8038 434.8855)\\\" x=\\\"0 5.56 11.12 16.12\\\">have</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 163.4883 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 167.1041 434.8855)\\\" x=\\\"0 5.56 10.56 16.12 21.68 23.96 27.29 32.85\\\">acquired</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 205.5221 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 209.1378 434.8855)\\\" x=\\\"0 5.56 12.78 18.34 23.9 27.23 32.23 37.79 40.07\\\">ownership</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 254.7775 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 258.3933 434.8855)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 266.7331 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 270.3489 434.8855)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 284.2503 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 287.866 434.8855)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 328.4373 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 332.0531 434.8855)\\\" x=\\\"0 5.56 8.34 11.12 16.68 25.01 30.57 33.35 35.63 41.19\\\">attempting</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 378.806 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 382.4218 434.8855)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 390.7616 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 394.3774 434.8855)\\\" x=\\\"0 5 10.56 12.84 15.12\\\">sell,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 412.2778 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 415.8936 434.8855)\\\" x=\\\"0 5.56 11.12 18.34 23.9\\\">pawn,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 442.5781 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 446.1939 434.8855)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 455.0855 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 458.7013 434.8855)\\\" x=\\\"0 2.28 4.56 10.12\\\">lien</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.3849 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 478.0007 434.8855)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 491.902 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 495.5178 434.8855)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 533.3108 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 536.9265 434.8855)\\\" x=\\\"0 5 7.28 12.84 15.12 20.68 23.46 29.02\\\">violates</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 423.5672)\\\" x=\\\"0 5 7.78 13.34 16.12 21.68 24.34 26.62 32.18 39.4\\\">state law.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 410.2488)\\\" x=\\\"0 6.67 13.34 20.01 22.79 30.57 37.79 46.12 52.79 60.01 66.12\\\">ASSIGNMENT.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 101.9965 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 104.9066 410.2488)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 122.6995 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 125.6096 410.2488)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 144.5012 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 147.4112 410.2488)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 161.3126 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 164.2227 410.2488)\\\" x=\\\"0 5.56 10.56 15.56 17.84 23.4\\\">assign</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 193.1875 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 196.0976 410.2488)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 211.7177 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 214.6278 410.2488)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 263.5438 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 266.4538 410.2488)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.3454 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 278.2555 410.2488)\\\" x=\\\"0 2.78 6.11 11.67 17.23 22.23 25.01 30.57\\\">transfer</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.1569 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 315.0669 410.2488)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 328.9683 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 331.8784 410.2488)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 369.6713 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 372.5814 410.2488)\\\" x=\\\"0 7.22 9.5 12.28 17.84 23.4 28.96\\\">without</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 404.3246 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.2346 410.2488)\\\" x=\\\"0 5.56 11.12\\\">our</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 421.6877 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 424.5978 410.2488)\\\" x=\\\"0 5.56 8.89 11.17 16.73\\\">prior</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 444.6613 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 447.5713 410.2488)\\\" x=\\\"0 7.22 10.55 12.83 15.61 18.39 23.95\\\">written</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 477.0831 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 479.9931 410.2488)\\\" x=\\\"0 5.56 11.12 14.45 22.78 25.06 30.06 35.06 37.34 42.9 48.46\\\">permission.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 531.2382 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 534.1483 410.2488)\\\" x=\\\"0 9.44\\\">We</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.1483 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 552.0584 410.2488)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 398.9305)\\\" x=\\\"0 5.56 10.56 15.56 17.84 23.4 28.96 31.62 37.18 39.46 41.74 44.4 49.96 52.74 55.4 60.96 66.52 69.85 72.51 75.84 78.12 83.68 89.24 92.02 97.02 99.68 105.24 110.8 116.36 121.92 125.25 127.91 130.69 136.25 138.53 143.53 146.19 152.86 158.42 161.75 167.31 172.87 181.2 186.76 192.32 195.1 197.88 200.54 207.21 212.77 217.77 220.43 225.99 231.55 234.88 239.88 245.44 251 253.66 260.88 266.44 269.1 274.66 279.66 284.66 286.94 292.5 298.06 300.72 303 305.78 308.44 311.22 316.78 319.44 327.77 333.33 338.33 340.99 344.32 349.88 355.44 360.44 365.44 367.72 373.28 378.84 381.5 383.78 386.56\\\">assign all of our ri* D E M O *this Agreement. Any person we assign it to may reassign it.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 385.6121)\\\" x=\\\"0 6.67 13.89 21.11 28.89 36.11\\\">ACCORD</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 76.435 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 79.3433 385.6121)\\\" x=\\\"0 6.67 13.89\\\">AND</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 100.4566 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 103.3649 385.6121)\\\" x=\\\"0 6.67 13.34 19.45 22.23 28.9 35.01 41.68 48.9 55.01 57.79 65.57 72.79\\\">SATISFACTION.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 178.9265 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 181.8348 385.6121)\\\" x=\\\"0 6.67 12.23\\\">Any</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 199.0662 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 201.9746 385.6121)\\\" x=\\\"0 5 7.78 13.34 16.12 21.68 30.01 35.57 41.13\\\">statement</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.8857 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 248.794 385.6121)\\\" x=\\\"0 5.56 10.56 15.56 21.12 29.45 35.01 40.57 46.13 51.13 53.41 58.97\\\">accompanying</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 313.3351 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 316.2434 385.6121)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.6965 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.6049 385.6121)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 376.9593 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 379.8677 385.6121)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.2075 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 391.1159 385.6121)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 405.0172 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.9256 385.6121)\\\" x=\\\"0 5.56 8.34 11.12 16.68 21.68\\\">effect</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 432.3836 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 435.2919 385.6121)\\\" x=\\\"0 2.78 8.34 13.9\\\">that</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 451.9716 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 454.88 385.6121)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.3331 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 477.2414 385.6121)\\\" x=\\\"0 5.56 11.12 13.4 18.96 24.52 29.52\\\">balance</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.3293 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 515.2376 385.6121)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 522.5179 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 525.4263 385.6121)\\\" x=\\\"0 5.56 11.12 13.4\\\">paid</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 544.3911 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 547.2995 385.6121)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 555.1412 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 558.0496 385.6121)\\\" x=\\\"0 2.78 8.34 10.62\\\">full</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 374.2937)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.1625 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 50.8231 374.2937)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 64.7245 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 68.3851 374.2937)\\\" x=\\\"0 5.56 7.84 13.4\\\">bind</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 87.35 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 91.0106 374.2937)\\\" x=\\\"0 5.56 10.56\\\">us.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 104.3505 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 108.0111 374.2937)\\\" x=\\\"0 7.78 13.34\\\">Our</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 124.681 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 128.3417 374.2937)\\\" x=\\\"0 5.56 11.12 16.68 22.24 27.24 29.52\\\">deposit</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.6464 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 164.307 374.2937)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 172.6468 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 176.3075 374.2937)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 192.4305 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 196.0912 374.2937)\\\" x=\\\"0 5 10.56 15.56\\\">such</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 217.2142 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 220.8748 374.2937)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.2293 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 262.89 374.2937)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.9525 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 280.6131 374.2937)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 294.5145 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 298.1751 374.2937)\\\" x=\\\"0 5 10.56 16.12 21.12 23.9 26.18 28.96 34.52 37.3\\\">constitute</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 341.0365 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 344.6971 374.2937)\\\" x=\\\"0 5.56\\\">an</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.8201 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 359.4808 374.2937)\\\" x=\\\"0 5.56 10.56 15.56 21.12 24.45\\\">accord</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 389.4954 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 393.1561 374.2937)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 409.8406 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 413.5013 374.2937)\\\" x=\\\"0 5 10.56 13.34 15.62 20.62 23.4 28.96 33.96 36.74 39.02 44.58 50.14\\\">satisfaction,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.4212 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 470.0818 374.2937)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.7664 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 490.427 374.2937)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 503.2102 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 506.8709 374.2937)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 525.7625 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 529.4231 374.2937)\\\" x=\\\"0 5.56 11.12 16.68 18.96\\\">apply</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.388 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0486 374.2937)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 362.9754)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57 38.35 41.01 43.79 49.35 52.01 57.01 62.57 68.13 71.46 74.12 79.68 84.68 89.68 95.24 100.8 106.36 109.14\\\">payment to your account.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 349.657)\\\" x=\\\"0 2.78 10 16.67 23.89 31.11 37.78 45 52.22 58.89 61.67 64.33 73.77 79.33 81.99 87.55 93.11 95.77 101.33 106.89 109.67 112.33 115.66 121.22 126.78 132.34 134.62 137.95 143.51 146.17 151.17 156.73 162.29 164.95 167.73 173.29 175.95 181.51 187.07 190.4 195.4 200.96 206.52 211.52 217.08 219.74 222.02 227.58 232.58 238.14 241.47 247.03 252.59 257.59 263.15 265.81 268.59 271.92 277.48 285.81 288.47 294.03 299.03 301.69 307.25 312.81 318.37 321.03 328.25 333.81 336.47 342.03 347.59 352.59 358.15 360.81 366.37 371.93 374.71 377.37 382.93 386.26 391.82 396.82 399.1 404.66 410.22 415.78 418.44 424 429.56 434.56 437.22 439.5 445.06 450.06 455.62 458.95 464.51 470.07 475.07 480.63 483.29 486.07 491.63 494.29 499.29 504.85 510.41\\\">INSURANCE. We do not require you to purchase insurance from us and we have not provided any insurance to you.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 336.3387)\\\" x=\\\"0 7.22 13.89 21.11 27.78 30.56 37.23 43.34 46.12 48.78 56 61.56 67.12 72.68 75.34 80.34 85.9 91.46 94.79 97.45 100.78 106.34 111.9 117.46 123.02 128.02 130.8 133.58 136.24 143.46 149.02 151.68 157.24 160.57 166.13 168.79 172.12 177.68 183.24 188.8 191.08 194.41 199.97 205.53 208.19 210.97 216.53 219.19 224.75 228.08 233.64 238.64 240.92 246.48 252.04 254.7 259.7 265.26 270.82 273.48 280.7 282.98 285.76 291.32 293.98 299.54 302.2 309.42 312.75 315.03 317.81 320.59 326.15 331.71 334.37 337.7 343.26 348.26 353.82 356.1 361.66 364.44 367.1 369.88 375.44 378.77 381.43 386.99 392.55 397.55 403.11 405.77 411.33 416.89 421.89 430.22 435.78 441.34 444.12 446.78 455.11 460.67 466.23 471.79\\\">RECEIPT. Upon your request, we are required to provide you with a written receipt for each payment made.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 323.0203)\\\" x=\\\"0 7.78 15.56 22.23 28.9 36.12 43.34 46.12 53.34\\\">GOVERNING</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 94.2182 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 97.2444 323.0203)\\\" x=\\\"0 5.56 12.23 21.67\\\">LAW.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 121.6926 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 124.7189 323.0203)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 141.9503 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 144.9765 323.0203)\\\" x=\\\"0 2.28 7.84\\\">law</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.04 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 163.0663 323.0203)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 171.4061 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 174.4323 323.0203)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 188.3337 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 191.3599 323.0203)\\\" x=\\\"0 5 7.78 13.34 16.12\\\">state</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 213.0396 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 216.0658 323.0203)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 223.9076 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 226.9339 323.0203)\\\" x=\\\"0 7.22 12.78 15.06 20.06\\\">which</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 252.5589 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 255.5851 323.0203)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 271.7082 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 274.7344 323.0203)\\\" x=\\\"0 3.33 8.89 13.89 16.17 21.73\\\">reside</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.0293 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 305.0555 323.0203)\\\" x=\\\"0 7.22 12.78 18.34\\\">when</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 328.9618 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 331.988 323.0203)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.1111 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 351.1373 323.0203)\\\" x=\\\"0 5 7.28 12.84 18.4 23.96\\\">signed</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.6637 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 383.6899 323.0203)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 399.31 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 402.3363 323.0203)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 451.2523 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 454.2785 323.0203)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 470.9631 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 473.9893 323.0203)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64\\\">applicable</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 519.1993 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 522.2255 323.0203)\\\" x=\\\"0 2.78 8.34 13.9 19.46 22.79 28.35\\\">federal</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.8603 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 555.8865 323.0203)\\\" x=\\\"0 2.28 7.84\\\">law</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 311.7019)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.1625 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 50.5142 311.7019)\\\" x=\\\"0 5.56 11.12 16.12 21.68 25.01\\\">govern</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 81.0904 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 84.4421 311.7019)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 98.3434 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 101.6951 311.7019)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 150.6111 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 153.9628 311.7019)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 170.6474 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 173.9991 311.7019)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 187.9005 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 191.2521 311.7019)\\\" x=\\\"0 2.28 7.84 10.62 16.18 19.51 25.07 28.4 33.96 36.74 42.3 45.08 47.36 52.92\\\">interpretation</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 249.7385 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 253.0902 311.7019)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 261.43 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 264.7817 311.7019)\\\" x=\\\"0 2.28 5.06\\\">it,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 272.6186 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 275.9703 311.7019)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.68\\\">except</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 305.4332 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 308.7849 311.7019)\\\" x=\\\"0 2.78 8.34 13.9\\\">that</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 325.4646 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 328.8163 311.7019)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 342.7176 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 346.0693 311.7019)\\\" x=\\\"0 6.11 11.67 17.23 22.79 26.12 31.68\\\">Federal</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.0342 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 383.3859 311.7019)\\\" x=\\\"0 6.67 10 15.56 17.84 20.62 23.95 29.51 32.29 34.57 40.13\\\">Arbitration</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 429.0792 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 432.4309 311.7019)\\\" x=\\\"0 6.67 11.67\\\">Act</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 446.8791 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 450.2308 311.7019)\\\" x=\\\"0 5.56 10.56 16.12 19.45 25.01 30.01 35.01 37.29\\\">expressly</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 492.5258 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 495.8775 311.7019)\\\" x=\\\"0 5.56 11.12 16.12 21.68 25.01 30.57\\\">governs</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 531.4536 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 534.8053 311.7019)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 548.7067 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 552.0584 311.7019)\\\" x=\\\"0 5 10.56 13.89\\\">Jury</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 300.3836)\\\" x=\\\"0 6.11 9.44 11.72 17.28 19.56 22.22 31.66 37.22 39.5 44.5 50.06 53.39 56.05 61.61 67.17 72.73 75.39 82.06 85.39 90.95 93.23 96.01 99.34 104.9 107.68 109.96 115.52 121.08 123.74 130.96 133.24 138.8 144.36 149.36 154.92 157.7 160.36 167.03 172.59 178.15 180.81 186.37 191.37 196.37 201.93 207.49 214.71 216.99 222.55 228.11 233.67 239.23 241.89 244.67 250.23 255.79 258.57 261.23 266.23 271.79 277.35 280.01 283.34 288.9 293.9 296.18 301.74 307.3 309.96 315.52 318.3 320.96 323.74 329.3 334.86 337.52 343.08 348.64 354.2 357.53 363.09 368.09 373.09 375.75 378.03 380.31 385.31 388.09 393.65 399.21 401.87 407.43 412.99 418.55 423.55 429.11 431.77 437.33 442.89 445.55 448.33 453.89 459.45 462.11 468.78 474.34 477.67 483.23 488.79 497.12 502.68 508.24 511.02 513.68 520.9 526.46 529.24 534.8\\\">Trial Waiver and Arbitration Clause. You acknowledge that you reside at the address listed above on the Agreement Date.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 287.0652)\\\" x=\\\"0 7.22 15 22.22 28.89 36.11 44.44 51.11\\\">CONSUMER</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 91.435 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 94.8938 287.0652)\\\" x=\\\"0 7.22 13.89 20.56 28.34 35.56 41.67\\\">REPORT.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 139.3421 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 142.8009 287.0652)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.5939 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 164.0527 287.0652)\\\" x=\\\"0 5.56 11.12 16.12\\\">have</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 185.7373 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 189.1961 287.0652)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 28.35 30.63 35.63 41.19\\\">authorized</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 235.9539 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 239.4128 287.0652)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 249.9743 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 253.4331 287.0652)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 261.773 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 265.2318 287.0652)\\\" x=\\\"0 5.56 11.12 13.9 19.46 21.74\\\">obtain</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 292.5365 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 295.9953 287.0652)\\\" x=\\\"0 5.56 11.12\\\">one</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.6799 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 316.1388 287.0652)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 325.0304 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 328.4892 287.0652)\\\" x=\\\"0 8.33 13.89 17.22\\\">more</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.2724 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 354.7312 287.0652)\\\" x=\\\"0 5 10.56 16.12 21.12 26.68 35.01 40.57\\\">consumer</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 398.6375 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 402.0963 287.0652)\\\" x=\\\"0 3.33 8.89 14.45 20.01 23.34 26.12\\\">reports</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 433.2194 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 436.6782 287.0652)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.8013 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 451.2601 287.0652)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.3832 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 470.842 287.0652)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 478.6838 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 482.1427 287.0652)\\\" x=\\\"0 5 10.56 16.12 21.68 27.24 32.24 35.02 37.3 42.86\\\">connection</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 530.5704 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 534.0292 287.0652)\\\" x=\\\"0 7.22 9.5 12.28\\\">with</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.871 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 555.3299 287.0652)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 275.7469)\\\" x=\\\"0 2.78 6.11 11.67 17.23 22.23 27.79 32.79 35.57 37.85 43.41 48.97\\\">transaction.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 262.4285)\\\" x=\\\"0 7.22 14.44 21.11 28.33 31.11\\\">CREDIT</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 70.3217 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 73.874 262.4285)\\\" x=\\\"0 7.22 13.89 20.56 28.34 35.56 41.67 44.45 51.67 59.45\\\">REPORTING.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.1005 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 139.6529 262.4285)\\\" x=\\\"0 9.44\\\">We</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 154.6529 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 158.2051 262.4285)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 177.0967 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 180.6491 262.4285)\\\" x=\\\"0 3.33 8.89 14.45 20.01 23.34\\\">report</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 206.7721 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.3244 262.4285)\\\" x=\\\"0 2.28 7.84 10.62 16.18 19.51 27.84 33.4 36.18 38.46 44.02\\\">information</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.9094 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 263.4617 262.4285)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 271.8015 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 275.3538 262.4285)\\\" x=\\\"0 5 8.33 13.89 19.45 21.73\\\">credit</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.8655 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 303.4178 262.4285)\\\" x=\\\"0 5.56 11.12 14.45 20.01 25.57 31.13\\\">bureaus</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 339.5555 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 343.1078 262.4285)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.9994 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 355.5517 262.4285)\\\" x=\\\"0 5.56 8.34 13.9 19.46\\\">other</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 378.3447 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 381.897 262.4285)\\\" x=\\\"0 2.78 8.34 10.62 13.95 19.51 22.84 28.4 33.96 37.29 40.07 42.35 47.91\\\">third-parties</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.812 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 438.3644 262.4285)\\\" x=\\\"0 5.56 11.12 16.68 22.24\\\">about</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 463.3888 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 466.9411 262.4285)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.3942 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 489.9465 262.4285)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.68 32.24 35.02\\\">account,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 527.7492 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 531.3015 262.4285)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24 28.52 34.08\\\">including</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 251.1102)\\\" x=\\\"0 2.28 7.84 10.62 16.18 18.84 24.4 27.73 30.39 38.72 41 46 51 56.56 62.12 64.78 70.34 75.9 80.9 89.23 94.79 100.35 103.13 108.13 110.91 113.57 119.13 124.69 130.25 132.91 138.47 144.03 149.03 151.69 157.25 162.81 167.81 170.09 172.87 175.15 180.15 185.71 188.37 193.93 197.26 199.92 205.48 211.04 216.6 222.16 224.94 227.22 232.22 237.78 240.44 246 251 256 261.56 267.12 272.68 275.46 278.12 280.4 285.96 288.74 294.3 297.63 305.96 311.52 314.3 316.58 322.14 327.7 330.36 338.69 344.25 349.25 351.91 357.47 363.03 365.69 369.02 374.58 377.36 379.64 385.2 390.2 392.98 398.54 404.1 406.76 409.04 414.6 417.26 422.26 427.82 433.38 436.71 439.37 444.37 447.7 453.26 458.82 461.1 463.88 466.54 469.87 475.43 480.99 486.55 489.88 492.66\\\">late or missed payments, and any positive or negative account information may be reflected in your credit report.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 237.7918)\\\" x=\\\"0 2.78 10 17.22 23.89 32.22 39.44 42.22 48.33 51.11 58.33 65 71.11 73.89 81.67 88.89\\\">INDEMNIFICATION.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 124.765 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 128.29 237.7918)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.083 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 149.608 237.7918)\\\" x=\\\"0 5.56 11.12 14.45 20.01\\\">agree</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 175.1842 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 178.7092 237.7918)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 187.0491 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 190.5741 237.7918)\\\" x=\\\"0 2.28 7.84 13.4 18.96 27.29 32.85 35.13 37.91\\\">indemnify</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.4891 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 237.0141 237.7918)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.5756 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 251.1006 237.7918)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 267.7852 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 271.3102 237.7918)\\\" x=\\\"0 5.56 11.12 13.4\\\">hold</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.2751 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 293.8001 237.7918)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 304.3616 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 307.8866 237.7918)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 324.5712 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 328.0962 237.7918)\\\" x=\\\"0 5.56 11.12\\\">our</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 342.5493 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 346.0743 237.7918)\\\" x=\\\"0 5.56 10.56 15.56 17.84 23.4 28.96 34.52 40.08 45.08\\\">assignees,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.9405 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 397.4655 237.7918)\\\" x=\\\"0 5.56 11.12 16.68 22.24 25.02 30.02\\\">agents,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.2683 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 433.7933 237.7918)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 450.4779 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 454.0029 237.7918)\\\" x=\\\"0 2.28 7.84 12.84 18.4 21.73 27.29 30.62\\\">insurers</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.6279 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 493.1529 237.7918)\\\" x=\\\"0 5.56 11.12 14.45 22.78 25.06 30.62 35.62\\\">harmless</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 533.7779 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 537.3029 237.7918)\\\" x=\\\"0 2.78 6.11 11.67\\\">from</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 557.3029 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 560.8279 237.7918)\\\" x=\\\"0 5.56 7.84\\\">all</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 226.4734)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57 36.13 41.13\\\">damages,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 77.016 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 80.4241 226.4734)\\\" x=\\\"0 2.28 7.84 10.12 15.68 19.01 21.29 26.85 31.85\\\">injuries,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 115.0579 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 118.466 226.4734)\\\" x=\\\"0 5 7.28 12.84 15.12 23.45 28.45\\\">claims,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 149.6965 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 153.1046 226.4734)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57 36.13 41.13\\\">demands,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 197.0206 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 200.4287 226.4734)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 217.1132 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 220.5214 226.4734)\\\" x=\\\"0 5.56 10.56 16.12 21.68 27.24 32.24 37.8 42.8\\\">expenses,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 266.1073 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 269.5154 226.4734)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24 28.52 34.08\\\">including</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 309.1638 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 312.5719 226.4734)\\\" x=\\\"0 3.33 8.89 14.45 19.45 25.01 30.57 36.13 41.69 43.97\\\">reasonable</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 362.1129 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 365.521 226.4734)\\\" x=\\\"0 5.56 8.34 11.12 16.68 20.01 25.57 31.13 36.13 38.04\\\">attorney&apos;s</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 408.563 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 411.9711 226.4734)\\\" x=\\\"0 2.78 8.34 13.9\\\">fees</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.8725 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 434.2806 226.4734)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 442.6204 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 446.0285 226.4734)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 459.9299 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 463.338 226.4734)\\\" x=\\\"0 5.56 10.56 13.34 18.9 24.46\\\">extent</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 490.5792 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 493.9873 226.4734)\\\" x=\\\"0 5.56 11.12 14.45 22.78 25.06 27.84 30.62 36.18\\\">permitted</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 535.7305 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 539.1386 226.4734)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.7001 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.1082 226.4734)\\\" x=\\\"0 2.28 7.84 15.06\\\">law,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 215.1551)\\\" x=\\\"0 5.56 8.89 11.17 16.17 18.45 24.01\\\">arising</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 62.6752 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 67.1149 215.1551)\\\" x=\\\"0 5.56 11.12\\\">out</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 81.0163 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 85.4561 215.1551)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 93.7959 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 98.2356 215.1551)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 112.137 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 116.5767 215.1551)\\\" x=\\\"0 5 10.56 16.12 21.68 23.96 26.74 29.02 34.58 40.14\\\">condition,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 159.5016 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 163.9413 215.1551)\\\" x=\\\"0 8.33 13.89 16.17 21.73 24.51 30.07 35.63 41.19 46.75 51.75 57.31\\\">maintenance,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 224.039 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 228.4787 215.1551)\\\" x=\\\"0 5.56 10.56\\\">use</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 244.6017 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 249.0415 215.1551)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.9331 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 262.3728 215.1551)\\\" x=\\\"0 5.56 11.12 16.68 20.01 25.57 28.35 30.63 36.19\\\">operation</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 304.1307 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 308.5704 215.1551)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 316.9102 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 321.35 215.1551)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.2514 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 339.6911 215.1551)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.2624 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 384.7021 215.1551)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24 28.52 34.08\\\">including</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 424.3506 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 428.7903 215.1551)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.3518 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 438.7916 215.1551)\\\" x=\\\"0 5 7.28 12.84 15.12\\\">claim</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 462.2437 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 466.6835 215.1551)\\\" x=\\\"0 5.56 11.12 16.68 22.24\\\">under</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 492.2597 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 496.6994 215.1551)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 510.6008 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 515.0405 215.1551)\\\" x=\\\"0 5 7.78 11.11 13.39 18.39\\\">strict</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 536.2075 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 540.6472 215.1551)\\\" x=\\\"0 2.28 4.56 10.12 15.68 17.96 20.24 22.52 25.3\\\">liability</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 203.8367)\\\" x=\\\"0 5.56 11.12 16.12 18.9 22.23 24.51 30.07 35.63\\\">doctrine.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 190.5184)\\\" x=\\\"0 7.2217 15 21.1084 23.8867 31.1084 37.7783 44.4482\\\">NOTICES.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 80.3266 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 82.9828 190.5184)\\\" x=\\\"0 7.2217 12.7832 15.5615 17.8418 22.8418 28.4033\\\">Notices</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 116.3861 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 119.0424 190.5184)\\\" x=\\\"0 8.3301 13.8916\\\">may</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 137.934 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 140.5902 190.5184)\\\" x=\\\"0 5.5615\\\">be</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 151.7133 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 154.3695 190.5184)\\\" x=\\\"0 5.5615 7.8418 12.8418 18.4033\\\">given</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 178.3344 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 180.9906 190.5184)\\\" x=\\\"0 5.5615 11.123 14.4531 19.4531 25.0146 30.5762 36.1377 38.418 40.6982\\\">personally</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 226.6889 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 229.3451 190.5184)\\\" x=\\\"0 5.5615\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.2367 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 240.893 190.5184)\\\" x=\\\"0 5 10.5615 16.123\\\">sent</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.7943 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 262.4506 190.5184)\\\" x=\\\"0 5.5615\\\">by</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 273.0121 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 275.6684 190.5184)\\\" x=\\\"0 2.7783 5.0586 8.3887 13.3887\\\">first</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.8353 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 294.4916 190.5184)\\\" x=\\\"0 5 7.2803 12.8418 17.8418\\\">class</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 317.3334 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 319.9896 190.5184)\\\" x=\\\"0 8.3301 13.8916 16.1719 18.4522\\\">mail.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 341.2201 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 343.8764 190.5184)\\\" x=\\\"0 7.2217 12.7832 15.5615 17.8418 22.8418\\\">Notice</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 372.2797 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 374.9359 190.5184)\\\" x=\\\"0 8.3301 13.8916 16.1719 18.4522 24.0137\\\">mailed</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 404.5111 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.1674 190.5184)\\\" x=\\\"0 2.7783\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 415.5072 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 418.1635 190.5184)\\\" x=\\\"0 5.5615\\\">us</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 428.725 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 431.3812 190.5184)\\\" x=\\\"0 8.3301 13.8916 18.8916\\\">must</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 453.0512 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 455.7074 190.5184)\\\" x=\\\"0 5.5615\\\">be</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.8305 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 469.4867 190.5184)\\\" x=\\\"0 5 10.5615 16.1231\\\">sent</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 488.3881 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 491.0443 190.5184)\\\" x=\\\"0 2.7783\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.3842 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 502.0404 190.5184)\\\" x=\\\"0 2.7783 8.3398\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 515.9418 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 518.5981 190.5184)\\\" x=\\\"0 5.5615 11.123 16.6846 20.0146 25.5762 30.5762\\\">address</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 179.2)\\\" x=\\\"0 5 10.5615 16.1231 23.3447\\\">shown</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 62.0063 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 64.6625 179.2)\\\" x=\\\"0 2.2803\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 72.5043 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 75.1606 179.2)\\\" x=\\\"0 2.7783 8.3398 10.6201\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 90.7807 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 93.4369 179.2)\\\" x=\\\"0 6.6699 12.2314 15.5615 21.123 26.6846 35.0146 40.5762 46.1377 48.916\\\">Agreement,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 145.1312 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 147.7875 179.2)\\\" x=\\\"0 5.6115\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 156.7791 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 159.4854 179.2)\\\" x=\\\"0 5.6115\\\">as</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 170.1469 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 172.8531 179.2)\\\" x=\\\"0 7.2717\\\">we</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 185.7363 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 188.4426 179.2)\\\" x=\\\"0 5.5615 8.3398 13.9014 19.4629 22.793 30.0147 32.2949 37.2949\\\">otherwise</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.299 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 233.9553 179.2)\\\" x=\\\"0 5.5615 7.8418 11.1719 16.7334 21.7334\\\">direct</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 258.467 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 261.1232 179.2)\\\" x=\\\"0 2.7783 6.1084 11.6699\\\">from</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.1232 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 283.7795 179.2)\\\" x=\\\"0 2.7783 5.0586 13.3887\\\">time</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.7297 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 305.3859 179.2)\\\" x=\\\"0 2.8283\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 313.8258 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 316.532 179.2)\\\" x=\\\"0 2.7783 5.0586 13.3887 18.9502\\\">time.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.2605 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 340.9168 179.2)\\\" x=\\\"0 7.2217 12.7832 15.5615 17.8418 22.8418 28.4033\\\">Notices</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 374.3201 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 376.9764 179.2)\\\" x=\\\"0 2.8283\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 385.4162 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 388.1225 179.2)\\\" x=\\\"0 5.6115\\\">us</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 398.784 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 401.4902 179.2)\\\" x=\\\"0 5.5615 8.8916\\\">are</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 415.9434 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 418.5996 179.2)\\\" x=\\\"0 5.5615 11.1231 16.6846 25.0147 30.5762\\\">deemed</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.7373 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 457.3936 179.2)\\\" x=\\\"0 5.5615 7.8418 12.8418 18.4033\\\">given</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 481.3584 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 484.0147 179.2)\\\" x=\\\"0 7.2217 12.7832 18.3447\\\">when</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 507.9209 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 510.5771 179.2)\\\" x=\\\"0 2.7783 8.3398 13.9014\\\">they</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.4785 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 532.1348 179.2)\\\" x=\\\"0 5.5615 8.8916\\\">are</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 167.8816)\\\" x=\\\"0 5.5615 11.1231 14.4531 19.4531 25.0146 30.5762 36.1377 38.418 40.6982\\\">personally</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 78.7982 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.4545 167.8816)\\\" x=\\\"0 5.5615 7.8418 12.8418 18.4033\\\">given</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 105.4193 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 108.0756 167.8816)\\\" x=\\\"0 5.5615\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 116.9672 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 119.6234 167.8816)\\\" x=\\\"0 5.5615 10.5615 13.3398 18.9014 24.4629 26.7432 29.0234\\\">actually</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 153.6469 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 156.3031 167.8816)\\\" x=\\\"0 3.3301 8.8916 13.8916 19.4531 21.7334 26.7334 32.2949\\\">received</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 194.1596 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 196.8158 167.8816)\\\" x=\\\"0 5.6615\\\">at</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 205.3557 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 208.1119 167.8816)\\\" x=\\\"0 5.6115 11.223\\\">our</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 222.715 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 225.4213 167.8816)\\\" x=\\\"0 5.5615 11.123 16.6846 20.0146 25.5762 30.5762 35.5762\\\">address.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 263.7758 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 266.432 167.8816)\\\" x=\\\"0 7.2217 12.7832 15.5615 17.8418 22.8418 28.4033\\\">Notices</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.8353 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 302.4916 167.8816)\\\" x=\\\"0 5.6115 8.9916\\\">are</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 317.0947 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 319.801 167.8816)\\\" x=\\\"0 5.5615 11.123 16.6846 25.0146 30.5762\\\">deemed</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.9387 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 358.5949 167.8816)\\\" x=\\\"0 5.5615 7.8418 12.8418 18.4033\\\">given</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 382.5598 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 385.216 167.8816)\\\" x=\\\"0 2.8783\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.7559 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 396.5121 167.8816)\\\" x=\\\"0 5.05 10.6615\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 412.7852 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 415.4914 167.8816)\\\" x=\\\"0 7.2717 12.8832 18.4947\\\">when</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 439.5977 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 442.3039 167.8816)\\\" x=\\\"0 2.8283 8.4398 14.0514\\\">they</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 461.4053 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 464.1115 167.8816)\\\" x=\\\"0 5.6115 8.9916\\\">are</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 478.7147 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 481.4209 167.8816)\\\" x=\\\"0 5.5615 11.1231 14.4531 19.4531 25.0146 30.5762 36.1377 38.418 40.6982\\\">personally</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 527.1191 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 529.7754 167.8816)\\\" x=\\\"0 5.5615 7.8418 12.8418 18.4033\\\">given</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.7402 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 556.3965 167.8816)\\\" x=\\\"0 5.6615\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 156.5633)\\\" x=\\\"0 7.2717 12.8832 18.4947\\\">when</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 57.2063 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 59.9125 156.5633)\\\" x=\\\"0 5.5615 7.8418 13.4033 18.4033 23.9648\\\">placed</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 89.4389 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 92.0951 156.5633)\\\" x=\\\"0 2.3803\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 100.1369 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 102.8932 156.5633)\\\" x=\\\"0 2.8283 8.4398\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 116.9445 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 119.6508 156.5633)\\\" x=\\\"0 8.3301 13.8916 16.1719 18.4522\\\">mail,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 140.8813 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 143.5375 156.5633)\\\" x=\\\"0 5.5615 11.123 16.6846 20.0147 25.5762 30.5762 35.5762 41.1377\\\">addressed</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 190.2367 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 192.893 156.5633)\\\" x=\\\"0 2.7783\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 201.2328 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 203.8891 156.5633)\\\" x=\\\"0 5 10.5615\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 220.0121 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 222.6684 156.5633)\\\" x=\\\"0 5.5615\\\">at</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.0082 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 233.6645 156.5633)\\\" x=\\\"0 5 10.5615 16.123\\\">your</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 253.1176 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 255.7738 156.5633)\\\" x=\\\"0 5.5615 11.1231 16.6846 20.0147 25.5762 30.5762\\\">address</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.35 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 294.0062 156.5633)\\\" x=\\\"0 2.7783 8.3399 13.9014\\\">then</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 313.4691 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 316.1254 156.5633)\\\" x=\\\"0 5 10.5615 16.1231 23.3447\\\">shown</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 345.0316 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 347.6879 156.5633)\\\" x=\\\"0 5.5615\\\">on</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 358.8109 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 361.4672 156.5633)\\\" x=\\\"0 5.5615 11.1231\\\">our</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.9203 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 378.5766 156.5633)\\\" x=\\\"0 3.3301 8.8916 13.8916 19.4531 22.7832 28.3447 33.3447\\\">records,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 414.6996 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 417.3559 156.5633)\\\" x=\\\"0 5.5615 10.5615 16.123\\\">even</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 439.0404 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 441.6967 156.5633)\\\" x=\\\"0 2.7783 8.3398 13.9014 19.4629 25.0244\\\">though</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 472.2826 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 474.9389 156.5633)\\\" x=\\\"0 5 10.5615\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 491.0619 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 493.7182 156.5633)\\\" x=\\\"0 8.3301 10.6104 16.1719 21.7334\\\">might</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 518.2299 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 520.8861 156.5633)\\\" x=\\\"0 5.5615 11.123\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 145.2449)\\\" x=\\\"0 5.5615 10.5615 13.3398 18.9014 24.4629 26.7432 29.0234\\\">actually</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 67.1234 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 69.7797 145.2449)\\\" x=\\\"0 3.3301 8.8916 13.8916 19.4531 21.7334 26.7334\\\">receive</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 102.0746 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 104.7309 145.2449)\\\" x=\\\"0 5.5615 11.123\\\">our</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 119.184 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 121.8402 145.2449)\\\" x=\\\"0 8.3301 13.8916 16.1719 18.4521 24.0137\\\">mailed</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 151.4154 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 154.0717 145.2449)\\\" x=\\\"0 5.5615 11.1231 13.9014 16.1816 21.1816 26.7432\\\">notice.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 183.5932 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 186.2494 145.2449)\\\" x=\\\"0 6.6699 12.2314\\\">You</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 204.0424 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 206.6986 145.2449)\\\" x=\\\"0 5.8115 11.6231 15.2031 21.0146\\\">agree</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.5248 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 236.4311 145.2449)\\\" x=\\\"0 2.9283 8.6398 14.3514\\\">that</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 253.7107 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 256.517 145.2449)\\\" x=\\\"0 5.8615\\\">30</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 268.24 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 271.1963 145.2449)\\\" x=\\\"0 5.7115 11.4231 16.5731 21.7231\\\">days&apos;</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 294.9785 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 297.7848 145.2449)\\\" x=\\\"0 5.6615 11.3231 14.2014 16.5816 21.6816\\\">notice</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 325.1279 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 327.8842 145.2449)\\\" x=\\\"0 2.5803\\\">is</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.7645 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.7207 145.2449)\\\" x=\\\"0 3.4301 9.0916 14.7531 19.8531 25.5146 31.1762 36.8377 42.4992 44.8795 50.541\\\">reasonable,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 392.14 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 394.8963 145.2449)\\\" x=\\\"0 5.6615 11.3231 13.7033 19.3648 24.4648\\\">unless</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 424.4611 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 427.2174 145.2449)\\\" x=\\\"0 5.15 8.0783 13.7899 16.7182\\\">state</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 449.6471 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 452.4533 145.2449)\\\" x=\\\"0 2.5303 8.3418\\\">law</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.2668 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 471.173 145.2449)\\\" x=\\\"0 3.4301 9.0916 14.7531 20.4146 22.7949 26.225 31.8865\\\">requires</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 508.1596 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 510.9158 145.2449)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 517.0773 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 520.3336 145.2449)\\\" x=\\\"0 2.3803 8.0418 13.7033 19.3649 25.0264\\\">longer</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 133.9266)\\\" x=\\\"0 5.6615 11.3231 14.7531 17.1334 22.7949 28.4564\\\">period,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 64.4348 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 67.191 133.9266)\\\" x=\\\"0 2.5803\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 75.6328 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 78.5891 133.9266)\\\" x=\\\"0 7.3717 13.0832 15.5135 20.6635\\\">which</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 104.9641 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 107.7703 133.9266)\\\" x=\\\"0 5.15 10.8615 16.0115\\\">case</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 129.4934 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 132.2996 133.9266)\\\" x=\\\"0 5.25 11.0615\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 149.1727 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 152.0789 133.9266)\\\" x=\\\"0 5.7115 11.423 14.9031 20.6146\\\">agree</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 178.4051 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 181.2113 133.9266)\\\" x=\\\"0 2.9283 8.6398 14.3514\\\">that</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 198.491 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 201.2973 133.9266)\\\" x=\\\"0 3.0283 8.8398\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 215.9486 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 218.8549 133.9266)\\\" x=\\\"0 5.05 7.8783 13.4898 16.3182 21.9297 25.3098 28.7898 34.5014 40.2129 45.9244 48.3547 51.8348 57.5463\\\">state-required</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 282.1127 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 284.9189 133.9266)\\\" x=\\\"0 5.6615 11.3231 14.7531 17.1334 22.7949\\\">period</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 313.3754 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 316.1316 133.9266)\\\" x=\\\"0 2.5803\\\">is</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 324.0119 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 329.5182 133.9266)\\\" x=\\\"0 3.3301 8.8916 14.4531 19.4531 25.0147 30.5762 36.1377 41.6992 43.9795 49.541\\\">reasonable.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 381.8375 133.9266)\\\" x=\\\"0 2.6562\\\">  </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 387.15 133.9266)\\\" x=\\\"0 6.6699 12.2314\\\">You</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 404.943 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.5992 133.9266)\\\" x=\\\"0 5.5615 11.123 13.9014 19.4629 25.0244 28.3545 30.6348 35.6348\\\">authorize</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 448.7955 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 451.4518 133.9266)\\\" x=\\\"0 5.5615\\\">us</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 462.0133 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 464.6695 133.9266)\\\" x=\\\"0 2.7783\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 473.0094 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 475.6656 133.9266)\\\" x=\\\"0 5 10.5615 16.123\\\">send</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 497.3502 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 500.0064 133.9266)\\\" x=\\\"0 5.5615 11.1231 13.9014 16.1816 21.1816 26.7432\\\">notices</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 531.7496 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 534.4059 133.9266)\\\" x=\\\"0 2.7783\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 542.7457 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 545.402 133.9266)\\\" x=\\\"0 5 10.5615 16.123\\\">your</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 122.6082)\\\" x=\\\"0 5.56 13.89 19.45 21.73 24.01 26.67 32.23 37.79 43.35 46.68 52.24 57.24 62.24 64.9 70.46 76.02 78.3 83.86 88.86 93.86 96.52 102.08 105.41 110.97 116.53 118.81 124.37 126.65 129.43 134.99 140.55 143.21 148.77 153.77 156.43 158.71 164.27 171.49\\\">email address unless prohibited by law.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 109.2898)\\\" x=\\\"0 5 12.22 19.44\\\">JURY</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 59.2133 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 63.5195 109.2898)\\\" x=\\\"0 6.11 13.33 16.11 22.78\\\">TRIAL</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 91.8594 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 96.1656 109.2898)\\\" x=\\\"0 9.44 16.11 18.89 25.56 32.23\\\">WAIVER</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 135.6138 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 139.9201 109.2898)\\\" x=\\\"0 6.67 13.89\\\">AND</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 161.0334 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 165.3396 109.2898)\\\" x=\\\"0 6.67 13.89 20.56 23.34 29.45 36.67 43.34 49.45 52.23 60.01\\\">ARBITRATION</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 232.5662 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 236.8724 109.2898)\\\" x=\\\"0 7.22 12.78 19.45 26.67 33.34 40.01\\\">CLAUSE.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 279.6654 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 283.9716 109.2898)\\\" x=\\\"0 6.67\\\">By</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 295.6415 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 299.9478 109.2898)\\\" x=\\\"0 5 7.28 12.84 18.4 20.68 26.24 31.8\\\">signing,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 334.5327 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.8389 109.2898)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 354.962 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 359.2682 109.2898)\\\" x=\\\"0 5.56 11.12 14.45 20.01\\\">agree</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 384.8444 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 389.1507 109.2898)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 397.4905 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 401.7967 109.2898)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 417.4168 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 421.7231 109.2898)\\\" x=\\\"0 5 10.56 13.89\\\">Jury</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 440.6147 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 444.9209 109.2898)\\\" x=\\\"0 6.11 9.44 11.72 17.28\\\">Trial</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 464.4815 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 468.7877 109.2898)\\\" x=\\\"0 9.44 15 17.28 22.28 27.84\\\">Waiver</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.9596 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 504.2658 109.2898)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 520.9504 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 525.2566 109.2898)\\\" x=\\\"0 6.67 10 15.56 17.84 20.62 23.95 29.51 32.29 34.57 40.13\\\">Arbitration</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 97.9715)\\\" x=\\\"0 7.22 9.5 15.06 20.62 25.62 31.18 33.84 37.17 40.5 47.72 50 55.56 61.12 66.12 71.68 75.01 78.34\\\">Clause (“Clause”).</text></g><clipPath id=\\\"clip3-3\\\"><path d=\\\"M 35 76 L 573 76 L 573 94 L 35 94 L 35 76 z \\\"/></clipPath><path clip-path=\\\"url(#clip3-3)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 93.8719 L 572.95 93.8719 L 572.95 76.8719 L 35.45 76.8719 L 35.45 93.8719 z \\\"/><path clip-path=\\\"url(#clip3-3)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.15 91.8719 L 572.45 91.8719 L 572.45 80.5535 L 39.15 80.5535 L 39.15 91.8719 z \\\"/><path clip-path=\\\"url(#clip3-3)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 253.9396 91.8719 L 357.9396 91.8719 L 357.9396 79.8719 L 253.9396 79.8719 L 253.9396 91.8719 z \\\"/><g clip-path=\\\"url(#clip3-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 253.9396 82.6531)\\\" x=\\\"0 6.67 12.23 17.23 22.23 27.79 31.12 36.68 42.24 47.8 53.36 56.02 61.58 67.14 72.7 75.36 82.03 87.03 92.59 98.15\\\">Background and Scope</text></g><clipPath id=\\\"clip3-4\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip3-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 94.3719 L 573.45 94.3719 L 573.45 93.3719 L 34.95 93.3719 L 34.95 94.3719 z \\\"/><path clip-path=\\\"url(#clip3-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 77.3719 L 573.45 77.3719 L 573.45 76.3719 L 34.95 76.3719 L 34.95 77.3719 z \\\"/><path clip-path=\\\"url(#clip3-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 93.3719 L 573.45 93.3719 L 573.45 77.3719 L 572.45 77.3719 L 572.45 93.3719 z \\\"/><path clip-path=\\\"url(#clip3-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 93.3719 L 35.95 93.3719 L 35.95 77.3719 L 34.95 77.3719 L 34.95 93.3719 z \\\"/><g clip-path=\\\"url(#clip3-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 36.5264)\\\" x=\\\"0 6.498 11.997 14.391 16.785 21.789 26.793 29.295 34.299 39.303 44.307 504 506.3906 508.7812 511.1719 513.5625 515.9531 518.3438 520.7344 523.125 525.5156\\\">UT  07/2019          </text></g><g clip-path=\\\"url(#clip3-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 26.3398)\\\" x=\\\"0 6.003 11.007 16.011 21.015\\\">Page </text></g><g clip-path=\\\"url(#clip3-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 55.8097 26.3398)\\\" x=\\\"0\\\">4</text></g><g clip-path=\\\"url(#clip3-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.815 26.3398)\\\" x=\\\"0 2.394 7.398 9.9\\\"> of </text></g><g clip-path=\\\"url(#clip3-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 73.1021 26.3398)\\\" x=\\\"0\\\">7</text></g><g clip-path=\\\"url(#clip3-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#d9d9d9\\\" style=\\\"font-family:f3-0; font-size:54pt; white-space:pre\\\" transform=\\\"matrix(0.707 0.707 0.707 -0.707 135.6027 198.5094)\\\" x=\\\"0 56.016 96.048 136.08 176.112 216.144 236.16 284.184 324.216 344.232 364.248 416.232 456.264 480.24\\\">* D E M O *are</text></g><g clip-path=\\\"url(#clip3-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#002ba6\\\" style=\\\"font-family:f3-0; font-size:9pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.932 772)\\\" x=\\\"0 9.336 16.008 22.68 29.352 36.024 39.36 47.364 54.036 57.372 60.708 69.372 76.044 80.04 86.712 90.048 94.044 97.38 104.712 111.384 115.38 118.716 126.72 132.72 139.392 142.056 148.728 155.4 158.736 161.4 168.072 174.744 178.08 187.416 194.088 196.752 202.752 206.088 210.084 213.42 220.092 223.428 226.764 233.436 239.436 242.772 246.108 249.444 258.108 266.772 275.436 278.772 285.444 292.116 298.788 305.46 312.132 315.468 321.468 328.14\\\">Qoppa Software - For Evaluation Only - https://www.qoppa.com</text></g></g></svg></svg></g></svg><br>\\n<?xml version='1.0' encoding='UTF-8'?><svg id=\\\"qoppa_document\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" version=\\\"1.1\\\" xmlns=\\\"http://www.w3.org/2000/svg\\\" xmlns:xlink=\\\"http://www.w3.org/1999/xlink\\\"><!-- jPDFWeb v2019R1.03 - Demo Version --><style>title p { display: block; }</style><g id=\\\"qoppa_viewxform\\\" transform=\\\"matrix(1 0 0 1 0 0)\\\"><style type=\\\"text/css\\\">@font-face {font-family:f4-0;src:url(\\\"data:application/font-woff;charset=utf-8;base64,d09GRgABAAAAAAp8AAoAAAAADcAAAQABAAAAAAAAAAAAAAAAAAAAAAAAAABPUy8yAAAA9AAAADcAAABWWd9ZMmNtYXAAAAEsAAAAbAAAAIwCiwM0Z2x5ZgAAAZgAAAdLAAAJ6ArdyapoZWFkAAAI5AAAADEAAAA2GI9khmhoZWEAAAkYAAAAIAAAACQGNwJvaG10eAAACTgAAABeAAAAgDkXBShsb2NhAAAJmAAAAEIAAABCI1gg9G1heHAAAAncAAAAGAAAACAAIwA9bmFtZQAACfQAAAB8AAAA5g9SKYxwb3N0AAAKcAAAAAwAAAAgAAMAAHicY2Bk8mKcwMDKwMDUxbSbARlwMeogc/8DATI/MCDAkUEBCG8y3fyvxxDFdJPhEkwOAMlSDLoAeJxjYGBgZGAGYgYGHgYWhgYgLcMgABThYVBg0GewYnBj8GcIZAhmSGRIZkhjyGQoZ6j8/x+oSoFBFyjriiSbypDBkAOS/f/4//X/Z/8f/r/7/67/O/+v+b/6/6r/K/8v/78MbA9OAAAj1iOqeJxtVktsG9cVnXuHpChTEr/DjyRSHI44/IlUpeGQkvgTbepPkZJlUTQlWVLNWq2h2rHrohsv4iJo4P6SOqmRxIukDYqiWRTtJmgBN0CCBu1CRhZd1E5bdFOgdtuVG7SAAY16Z0gmClAOMPPmzX33nnfueUdigPEzf4QEjDIswwDHy5BQnsJovc7QK9Og+3tMU/2W5gT5vSb91Hnm+DE48VCd5+wS+9HcR27829EgRWNrDRroWxfD2GWJs9LKRrMJP242lQ9a66sUeInWm7SancuK68p5+K5yA3519AQP1/+0/nSdgih+heIlGnZ/Gm8VrCgpN2FF+cUOHtb+sq7cV0OpfuL4E/wzPmTMzBBFO11Ol6HL0CWG6EqntDHNSal0Kk0z8P07W9usbnfv7t3tbYT6xtuXTxcRSzPPXcvnAUslfIjN5i/f2bmA7MUv/fT1y5fLUC7f+db8Aq6svvjCwgKj1Rw9/j0+wUfMIDN5oqb61ArTi6A+qahLpA8G+jDeAhBKq1EqmpSK5m5jk0WfL+Hz+Ya80aAoJKKR9A8IIjQ2X9uanWMxm7k96HSa3S63yxUIBPiwkwPIZvCRbn//JxdmZkdcVktP0eLiBtzdp/Bi890fXrq0DDMzr3/93DnWoDeaTaf0M91Wa38glz17ZW1N63P8+N+4T5yN0QuBEsQ2+vZOQoE20LSzjbq9m/Q4BcB/DInEcm58nGUnJ4vNtbN6Q21j58ZGravRVSisnU4m2e7trYWyLCMuLlz9yuKCEZ7N8Ty43cW009nriMZuXB/7AkxMPW/cCooIPt9M2eOxcpHIxs7YGMjyV1WOReqrHh1MjMmQrlQqCVAXp3IpnCBZ1rikS1YnA7QRvdoL9XK0+i5zxenaQSIBaDDYt7r1OhhNJKbOjcQwl6vFQyEv+PlMjueNoIv4+WhUFNE7OLoXDML1XZ5HiEaXngwT82arxRK22TASmykHg106o7FbjLuc4HInL/ZRPb3VIosODrNZjePg8SfwT7QxfItjFa8GXsV6UqKaIOB7vT6fND88jEP+hsz7DRuWqUztQNXk1OTzSxNpC+xJA/2AqfTGcjbLQnB4wrRNJMLs3IsHy2UdRCKrLW2Kx0+JNydjZAKfVTarIpXG26UFQ7u0yim8g+HwdCESBoMhFpsfDQSs5/vzhfWtuXkdCe3WfLWCIBcjEcRYLDdfH4l7vWOmRljEfOHefqWi1+VzP6f9GqlamjQ1cEJTnMQJdHIFWZLFjnqiRrPZ1s85oNmsVyokigtWj9uGt1hA6O2LT5WUPHxQWuXjCT2yekbj8gzd/kHn3UVKsKbanFHiTstpeM8nhqS1xCjUYdA7nhdFqOOhcszbbQAj8fPKj2Az7vPRVteVv1ImVHMy9zRPU32LgKoJz9Tph4fNLx49I0vr1G7HMZJVogg8PErSfJFhCLKNiWrzXAfVCXSpdtdpmGwNXdZidUAU87IgWAbEYHExHCK8dkc6z/vrDk6a9fpIpQthpxPA7YlEPG7A+Mhp5TtQj/F+xFAorbwPF8PeQWRHR/PKI8JR0rixadxwn+dGaHPzylAonKvSCagD9S4fVLkxLERUJ4kn1pU3YSXj84rBivIHbdPI8HT2uinn5zxVOOGpXOdsqZ7qvZHNqN555WqhAJjJ3FwUxXB4aWVYgHAIbexS+ca3z5yBublvXl1eLmEqtbGblNlsZrmRkluaLR1PooHqOZjhzi7GTxg5iUgduxwtfmUi9lUuGJzYzuVZmMo8N8LzzvrH84EAHYvZJf8Q+P1oKAVIbKXS7YNqRQc2u1fBB5O6YrFSkyRgC/nyYjbTPi+T8LhTWy/I7aKqr0jqzmVJc/DO0aVOwuO6i+dj1zJTmM9dSAeDzpWPV6gkDPnLM8FhCAR+p3hJd7pK9eB2qQQuZ6A0qctkF8v5AguSVKsUiy1tTdOtQbW5k73r/AlRdfMyN9Af8zg4u89iMXMJj4caV4263QBGo2lV9TI2FksrD7W+ATNEnvOA8pGv25NtErs6Qjhh8F3/z+DjSWmvkkxa6jreH40KAqLb4/za3CySo+3WJib6NrqDQXlEGEb9VGY6GwrDC9lwGHm+2pOwO/r6Iv6eXt2gb6i2Go1AKFzvzbvdCA7HWNRitph5P+GzHv8XevG+6hF2zRscbQgaKNWVNK/4Wb1u7uNOdRtNPY4+s308IMD0NN5/t6S8HzxlQgBgqyw90OOpwmLpVotL2vvfiQfNI9RuqXnpwH7a0bT1DXS6StZ0yliv9ofDU3uRKKJB+XWSrN4w0H8TBo6eVUIeD7CSVIFNytlLiR9TTmJ3ACVWYC+//Grjt2c/pFW78NZnHqEjIT2glx4tbgAo1AQCu3P9SmP/G7W3N/e/vPUWrbkEbyjX4KWjZ/CScq2z1nKcgH+1cNO6NtZRaP/TUiAwdnjl/CNOGC5ZTD193b09Jotot5u4D3fuoOHoN7lYDIFl2TUdIthtQxNUaOt/bprEGQB4nGNgZGBgAOL9uy5diOe3+crAzfwCKMJw21zgLIL+r8fMyHQTqI6DgQkkCgBowQuoAAAAeJxjYGRgYLr5X48hitmRgeH/fWZGBqAIClAAAHbABKt4nGNggABGXyAWA9MKQDoKzAbSTLMZ/JmSGQKYuRj0QRjI12XSYVBj/MKgDqTVgWo4gLQzwz0IZnZkcATyXYBYGUqrAc10AKqXB6oVBPKdgGxepksMLEBaAABlFhBuAAAAAAAAAAAAAAAAAA4AGgAoADoAUgBoAKIBAgFUAbQB8AIsAloChAKYAqQC6AMSA0oDiAPGA+4EPgRsBJYEqgTIBPQAAHicY2BkYGBQYLBhYGIAAUYGNAAACboAYXicdcq9CoJgFIfxx+9anRobHCMUoguohq7AIVrEQoMXDROhpWvvD50xObyHH897gIQLAV64BFK9nz05NfssyMwBKzbmUD6ZI/lqjuWRIz1P3gw8aGhVztxxTNqjWk3FQTeO25+fDzv2s71UGXip9XSsKdiSa2buv2bjHPt4nGNgZsALAAB9AAQ=\\\");}@font-face {font-family:f4-1;src:url(\\\"data:application/font-woff;charset=utf-8;base64,d09GRgABAAAAABJAAAoAAAAAGXAAAQABAAAAAAAAAAAAAAAAAAAAAAAAAABPUy8yAAAA9AAAADcAAABWXq1b6mNtYXAAAAEsAAAAbwAAAIwCTwMmZ2x5ZgAAAZwAAA5HAAAUJJG2JE9oZWFkAAAP5AAAADEAAAA2HL9rVmhoZWEAABAYAAAAIAAAACQOWQX9aG10eAAAEDgAAAC5AAABGBjqGZNsb2NhAAAQ9AAAAJAAAACQp5asOG1heHAAABGEAAAAGAAAACAASwA1bmFtZQAAEZwAAACYAAABdhyGNgFwb3N0AAASNAAAAAwAAAAgAAMAAHicY2Bk8mKcwMDKwMDUxbSbARlwMeogc/8DATI/MCDAkUEBCG+y5f4LYtjBlsu4DiYHAMOSDEgAeJx1jTEKwgAUQ5/o2MEDOEgRiuAJXMRFpDiIUMSx13DygG5qWwcR60Genzo3EAJ5gQADhmFIGHGJnDCOJmFKyow5S1ZsyNlTcOTEWWP1pxmLoGu27Dh0tFS/tn58+/JpY23lw7s3r91Pr37FPSNgAHiclVcLVFRXln33vqriq6HEgtBI9FEWhKCiPApEAY0CFkj4i2ATfpEC+aj8YoBW5I8iKoqKNH5GbZtls6rVGNQSumPhmKQVxRiXiQxxEsempR11OU7ahqrrnPteFcGsdK+ey6rHq3r33HvOvvvscx6DmUT2LK6W6hkpY8cwSKlw5B1VwhVxAws2zEUZ9CrVPyUjyOWpcGVgsEz0q2iJs6yQkTFTmLlg6eTspJhuxXp4eqj9ApydnHmsUisVMiuZwkEq9/BUTpMqeLV/gL/az9PDExdu8/EZyU9bvOh2/jmHfiXpzNevL0T7/sPJMAO1539eVJSS8hLvn71wYS5xw0Nv8vzGQRV20aNY144OeUHBGXI1znRLNUY+nHvw13bVNb/vysziqV+ISWXPIi8hHnM0yGtSBOKcShKPM6S3GRv6Re6AlPSCM8gd5F1NOtFaEo/uo+/Q9+g+8SVTyFTiK9pFgp2PaOdITXh6iUTe5E41GHVKbxOOvEVmEg7dQM/R/6AbYNND7qNaZoCxZRjAlZ+uVPgCCKh2IDs7289vYOByRkxMLcxbhi7gXFwIyDKIU3A413QPe+DCT+i+PXCha7DiGmAMA36HgQMhVvjdBvEIdZHkVtQl1Y+Fw48MZlJfjUicwd83GGewdPf0kDsE+PO+zk5yBysZO0vuwMEHB27XwNjeTK/NRImG0beVDQ0oEa1qbGpqJL8j3Q0N0mSTtckev8AvqT8PKAFgXWuKMeYgIjnPMq08+e3T4l5A4Ye2qPEqmLeEYSS2MI+D3Tl/1Wzx9JXuVjIr3l/0BDgjo38KTmJrCpIiKZIlJ2/aNHSjaotDv2109Pqq8PD4+G+HExLYa7ql9+5VVB49U/ZhacnlpvDw8LDyxvy8j89WVDSI57MG4nWF/ebDF//XNhO34gA8855KQEOtBNLyvuJEVpLry5eWXjlTXq4w/OI/C4OCyBNvTWdcfEx0XVNERL9tTc3NG83NERpWNSchMa0rLz8rU/9o8eINxr0rI7c3rloVHV2gLyqqqrrWlJ0N2M+E2KdLB+BuCrAFyTmlXIkUnJyX8zeRAdVebTNl4+K+q1iCj5oy2C+MASfJMZQmxJEEcXBwhO6UC2qO5f0nu+052W2ID+XhIuOTkLbCQ9uSklYlNuW/F+XQr6ir0z9o2tbUdP54odReZxwrT0npaM/JWfpu/fWcnLZ9339dXZNs4YgbYDaFeZuiNnkjdppwRjzktBKIMnlT5NL2682RKyMiKpoTEvAbCYmNt1wMLsXFvzGN1dU9Gdy8pWrLhV5cfzg9vW1PVlZjI9qJ7Hbu+uaT1FTjEOm6cH7P3ls36htorFmAkzPEKhN5DzSWOBtX4mem4dtYIdXrxl5I1ZRuSWY/32BcGUh1ZDlDvwD/AMADCXdm7ydOXjHdWQIfs+PsmtiYmpqYmLCw/QfCwsj9keCQgsLgEPXfyso+/eOHZS/JzfqGr7+pb0D1v1oB41fpoWHLl4eFooLc09mBMLJP9+y6e0QL48jdXS3PLpYUF5dcfAYYJpnzTMRwwi/qjSMW/BSODDCccAtcYtcAhisjzRg6JCQ0fvmm4c3ikhPYimK4BUA838eqD6WJGDaQYvJi106KIatCKefP791z60ZDPT1DQR8kKkDJSlA9Xj6hEhLVgKmMshCYJXEAH1lGaVaRaa/lH0+BnJw0+PDAAKl951llVNSMGaUl3t6nZ8yorJwzt6bm9mc11XJY2htNXxlZsljtl5W1OknfEhSs1SYmZuk2FpUU91NpekUYRpoMZ2tF1Q8pEe/IOfLIEbH4lmlg4BjWnhoyRv6AMFUs9AeyDCfjLlOyWF9OgL+PwdYapHY25YbgrBckkoWhHKKlRHSYk3OzAvyRFmm+io0jJ8gR5Hc+MjIq6t+Inm1YEb7zdkPDqOkHrEJ2O3bgk8FBtUZJWoB/wUd+PEmqzMicrf1Kt3btWPj69UL+ZbwakaaJuiUF5gQoZSLZLPJpTgkrGU0K1vbvx48rPp+al9c9XF1dU3P/NwWF9p8rurqeki/0Fy/qXbZuHe1MTOzoQDOQ28GO+Pjm29XVA9fJcXJ84Log4TRWaQbEasvIaaSzRIH2QlZUn70QhGWHlpaUlpaSy+R/DegW/qtJQXyk9rt3k7+T5/vadPghvgN+U8wewTp2VG/loBziR/LIuJn1Mt5lM8eHJWE69EyHPtWNhYuaSW1o/ae1kKqTaFFtVBrwGVMM60rPBrfr0FVxrlQpro+Uck6upPPlvFTZb5IZDHisX6o3ncRrwOCsKRrm98K8KrE+wXweVfX30+WEfQNejbCp8Gya8EzIZmCtOVflbKph4cJ1n/Xn5fVcy82V6o3yPy5ejOw9ezZs2FiEppj99hHrvIp6wkl8TAEGtlkntYcdhOcyGTy3p3HZCKGBtsh5mYwMkyJSQoYvoGM6dOyCVD++SHJ1LFxyf5yjn0lx2gi+UdfBVqq8aGKuXmCZz8CiUlIPFvXjlcL5Ub4MCdo08+fqrMgTSlAqAKzbvZaWlp3D3+zY0bLjHrn27zCQGvldgdHSeQg5ozc7YZC/kL90dkrDBwfJKfK7W4ODgygJJQ0OmvkiMQqxuZozw5ISLC8kgtBkQVYAczZULQ+dMyc25hJpMRhQEbJraVmxoqL8nGlYaj9tWmhocl14uMkaR5aUfLt9w0bO3cLHPCH3OIGP5nTz8Jxo4GjG8UIqOkNGa9FNtCg+7hMSwxbFHjyYnBwaWlBwyrTJgHI2JiWptn8pdRnbERhI1n+9QDJTq22vz8vjOGBJybJluaTc3LeBhj4GDBeIOSfu4ulhVtJZjkLKmbVzIl5LNcQDz/cfiI8vKbnSr1mRknIMxbj12bS3v3y8a2fh+nFjTs7aD453V5S/ccn6YIfL5s19+5JT3nnH23vevNTs4GDyw5clIOVnoVj5qwMCykuWL4+OOXGvuVnwC3pbSY+gYUJ9olFLesY3oe/60UOxPNmLeQQcoJxxMWuGvwvwxkH0kd4KbuMHl7duXbK0PzPz0qXMTAPnvqXKJWTJli3Ilo01fkzu/xIG4tj3jKfPNDR88AFdF9azKhd5bIOVNlRFaa8n6yZDpOcR6SFD19E+PcpEGXq0H5iZJDlFP8DOsXHKf7oGqK80SjhPugaidJZkkCgS+RgvNeClkLXv4+PGj017cSH7Hpx/NOTmiCSY+QXjwTAcL6cKO8vchQDy0AyIeaqWWYowx7PevcXF18lKRa+18aOAAHv7VFOVVnv4wW7f1avf1wYFoY5qrPvvuDhy8Zy7ux9fTHY0Jq1qOKWBc5gTd1/UwWbggLcQq9tPehEqNWpRGsxNj6b6UEVoqEZTcai8r+/DbkPV1uLiwTNb8IsebfaVm+tyqyV/GAuPzz/QjqTje9sOCDhoIK6HENdPdd1SrJ0tJKP5igN1pWUKgyR0eXpjIozG9OWhEoOirFT3fVNjY5NLcvLJNF9fbc6frmlzfH3TTyYnt7aSv5GXe1qFWOheIxCLA40FMFTKxZUtyE3aF6Dr3dR9eWuVEEH14fKwUE1E+aEKqZ645LUfIMbxtrb2sz3Z2is3c9dVi2tLvCEOa1rLkbmTdkaTQ/Lk1A4/xoIcnOLiikpjY53JaM+WKqd+SWzMB7VrUuzZmU2ND77dvm3nTlzesTIqKuqgaX1Kyon3ed+UlAtzkU1ra9teYiRje/dQ/BwgsCzIUQV8USvN3qtpc6igTQcvxwu+4NzDFi30/SW529nZy7a2paZ7eNqesCen09qMG9hW8Zw1JF7glz3j9ZN+KUCpmAyTePpq5XShe2K9f8RmMmIaTd1of0np5/DWtcCCkjF+Ajn1V5oI3d7Vq7HAAchqlvYVcrEmyUWWwY0DR1nV17d7d948nz5y8HSLUPpengoMrDHF4x7UeETgKNhphJpm7rUUtLKBXV+fVH/9i/Eh6HsukETzHMeJOSKPFWIrKsx3cgrh/X3fq9ZoBMOTdd5zph611az4rwk/X4q1lia9UGsDEI+D0Z4nJAcoj1K+wx2omSSxS6B7OllmemixM+8t1lwN9ctcc+GZTAW4z4IvNFyZFQVb/RoMlhuZiuhXREbmLX10vKGvr3bbGg+P3rptKR4efRQKd27zp0cax4cAnoUL6wAe83/mR4xhn38BY4lKWOR1jC38nqink3p7GWvmtCAGwHEcKKaneBVy8/sH9M21UszNHO21P+VoWYMlO1v3IGtKbHqWJFfY5+f1Rv7/0xvWa2w5Gp0kOJTnuWaeu/1znsPr8z/gdu/PUtr0yIIzPgvrwxsmeu0k8dl5bx/a1NeXs3vl2xK1dXcbgPzkAG2FmCWgS6fBxuv1Omv2i8fcT2vsLE/lNCyD/Ep7//Kn8+eHLEm/a9trQ9LPFeQnrb7UGxQUElxGxnDfdJf0jNb2kJB5Pq4zQsJmz96PvFYn1e1ZtMjH5y03TcSC+QZyCvZXvnqOPaVzaV1TiYiAssO7MX1lEYsk4IE95y6YP8O1u7u3tnbKFH//0oiQFmu3twrx2jZkTV62mU5ufPfdd7zsYb1GoVapKNcElTWvCbWX8w2gylp7OG/evD6UQ7lmsqZMwzpTJPnoqMhV6KCgJqjo+yetjTxiXcgIGbmOWrtQq0RlNLAh40Pw3FJHe+GeAmmHlHa0GLvSN9bH/c+6n/bfQkvPPfzzObQEzO4KDbfX+BBrb3whmIP9VNjrOXwRcxrMbYRijvPQutFHj0bROvLRKJDTehR7ISNpQSUEm75Bh0kW9RM0k/oJ/bKjRUfgDwktAf5s3hx+Rfq7y972WoRar5sDSHnFTNVNDVyYEN9uCeSV4AecPXsH1rKhvTNS09duBcfeMUXifcZOvN6Uz3YfxQ+PHjW5Akj/B9Q9F2wAeJxjYGRgYADibRP2s8fz23xl4OZgAIHb5gJnYfT/Hf+C2CvZcoHqOBiYQKIAPcQLpAAAAHicY2BkYGDL/RfEsIO99/+O/zfYKxmAIijAFQCxGgdleJwtjjEKwkAQRX9CopBCbCWFgpWFtaQKWImFlWwhQcQj2HqAFMFbbBMPIBbWHsDGA+QexrebLDz+n50/syt1J7zDDL7aRxftglJFWOsK2zDTA117zST6BTSQwwGmYPr7c++Ny6PH2LS/2MjGb53AOh81vrZkXpG0ImcHdXc3yMh1eZctyC6dH940oU7c/6BiboN62DPufRV8HO2TvvfsrXy+7/t87edz5ubUJT7ljQQdKdXiD42+PXQAAAAAAAAAAAAAAAAAABwAaAB6AJYAsADEANIA3gDuARoBLgFmAawBygIAAkACVAKiAuIC9AMuA0wDigPCA+YEAAQWBC4EPARcBGwEigSiBNoFCgVEBZAFpAXQBfIGCgZGBnYGrAbaBxYHOgd4B5gHqgfMB+gH9ggqCEoIfgiuCN4I+Ak4CWAJgAmWCbYJ1An6ChJ4nGNgZGBgcGcwYWBmAAFGBjQAAA0mAIF4nKWMPQrCYBBEX0z8a60s0wuiEaystFAQiSBIsBM1MSB+YmxsPIEH8xgexUnyncCwDLzZ2VmgyQ4Xx2sDHalkh7FcyTVaLCy7TFhb9sRvy3W6fCw3tP8yw3DjyZ2UhDMPQiKWas9Z0ZNSDkoNmRQr99mw5yqf06loxkyVXjj+2X4xIqjU3RY+08bowmdIn4Gmws8fDdE2pHicY2BmwAsAAH0ABA==\\\");}@font-face {font-family:f4-2;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}</style><svg id=\\\"qoppa_page_p4\\\" class=\\\"qoppa_page\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\"><rect class=\\\"qoppa_pageborder\\\" x=\\\"0.5pt\\\" y=\\\"0.5pt\\\" width=\\\"611pt\\\" height=\\\"791pt\\\" fill=\\\"none\\\" /><svg class=\\\"qoppa_pagecontents\\\" x=\\\"0pt\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" viewBox=\\\"0 0 612 792\\\" ><g class=\\\"qoppa_contentstream\\\" transform=\\\"matrix(1 0 0 -1 0 792)\\\" fill=\\\"black\\\" stroke=\\\"black\\\" stroke-width=\\\"1\\\" stroke-linecap=\\\"butt\\\" stroke-linejoin=\\\"miter\\\" stroke-miterlimit=\\\"10\\\"><clipPath id=\\\"clip4-1\\\"><path d=\\\"M 35 748 L 130 748 L 130 770 L 35 770 L 35 748 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-1)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 769.7 L 129.35 769.7 L 129.35 748.5906 L 35.45 748.5906 L 35.45 769.7 z \\\"/><path clip-path=\\\"url(#clip4-1)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 767.7 L 125.25 767.7 L 125.25 758.6453 L 39.55 758.6453 L 39.55 767.7 z \\\"/><path clip-path=\\\"url(#clip4-1)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 47.9683 767.7 L 116.9684 767.7 L 116.9684 757.7 L 47.9683 757.7 L 47.9683 767.7 z \\\"/><g clip-path=\\\"url(#clip4-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.9684 760.325)\\\" x=\\\"0 7.552 12 16.448 18.672 20.8 22.624 26.624 28.752 33.2 35.864 40.312 42.136 44.36 47.024 51.472 53.696 55.52 59.968 64.416\\\">What is arbitration?</text></g><clipPath id=\\\"clip4-2\\\"><path d=\\\"M 129 748 L 206 748 L 206 770 L 129 770 L 129 748 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 138.6945 760.325)\\\" x=\\\"0 5.336 9.784 11.912 16.36 18.184 20.408 24.856 27.52 31.968 36.416 38.64 40.464 44.464 48.912 51.04 53.264\\\">An alternative to</text></g><g clip-path=\\\"url(#clip4-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 157.5461 751.2703)\\\" x=\\\"0 4 8.448 12.896 15.56 17.784\\\">court.</text></g><clipPath id=\\\"clip4-3\\\"><path d=\\\"M 205 748 L 573 748 L 573 770 L 205 770 L 205 748 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 760.325)\\\" x=\\\"0 2.224\\\">In</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 216.5219 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 220.3852 760.325)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 26.768 31.216 35.664\\\">arbitration,</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 258.2758 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 262.139 760.325)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 266.5883 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 270.4515 760.325)\\\" x=\\\"0 2.224 6.672 8.496 11.16\\\">third</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 286.0609 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 289.9242 760.325)\\\" x=\\\"0 4.448 8.896 11.56 13.784\\\">party</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 307.7094 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 311.5727 760.325)\\\" x=\\\"0 2.664 5.504 10.84 13.504 17.952 19.776 22 26.448 29.112 31.952\\\">(&quot;Arbiter&quot;)</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 346.1898 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 350.0531 760.325)\\\" x=\\\"0 4 8.448 10.272 14.272 18.72\\\">solves</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 372.7758 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 376.639 760.325)\\\" x=\\\"0 5.776 7.6 11.6 16.048 20.496 22.72 27.168\\\">Disputes</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 407.8109 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 411.6742 760.325)\\\" x=\\\"0 1.824\\\">in</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 417.9477 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 421.8109 760.325)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 426.2601 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 430.1234 760.325)\\\" x=\\\"0 4.448 8.896 13.344 16.008 17.832 22.28\\\">hearing</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.8578 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 460.7211 760.325)\\\" x=\\\"0 2.664 5.504 9.952 14.4 18.848 21.512 23.336 27.784 32.232 35.072 37.736\\\">(&quot;hearing&quot;).</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 500.6859 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 504.5492 760.325)\\\" x=\\\"0 5.336 9.784 14.232\\\">You,</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.0062 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 524.8695 760.325)\\\" x=\\\"0 2.664 7.112 8.936 13.384 15.608 20.056\\\">related</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.3773 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 553.2406 760.325)\\\" x=\\\"0 2.224 6.672 8.496 11.16\\\">third</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 751.2703)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056 24.056 26.28 28.408 32.856 37.304 41.752 43.88 49.656 54.104 56.328 58.456 64.232 68.68 70.504 74.504 78.952 81.08 83.304 87.752 92.2 94.328 96.992 98.816 103.264 107.712 109.936 112.064 114.288 118.736 120.864 125.312 129.76 131.888 134.112 138.56 140.688 144.688 149.136 153.584 156.248 158.472 160.696 162.824 168.16 172.608 176.608 181.056 183.184 186.024 190.472 194.92 197.584 199.808 201.632 206.08 210.08 212.92 215.048 217.272 221.72 224.384 228.832 233.28 235.408 237.232 241.68 244.344 248.344 250.472 252.696 255.36 257.184 261.632 263.456 267.456\\\">parties, and we, waive the right to go to court. Such &quot;parties&quot; forgo jury trials.</text></g><clipPath id=\\\"clip4-4\\\"><path d=\\\"M 35 727 L 130 727 L 130 749 L 35 749 L 35 727 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-4)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 748.5906 L 129.35 748.5906 L 129.35 727.4813 L 35.45 727.4813 L 35.45 748.5906 z \\\"/><path clip-path=\\\"url(#clip4-4)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 746.5906 L 125.25 746.5906 L 125.25 728.4813 L 39.55 728.4813 L 39.55 746.5906 z \\\"/><path clip-path=\\\"url(#clip4-4)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 41.6461 746.5906 L 123.6461 746.5906 L 123.6461 736.5906 L 41.6461 736.5906 L 41.6461 746.5906 z \\\"/><g clip-path=\\\"url(#clip4-4)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 41.6461 739.2156)\\\" x=\\\"0 2.224 6.224 8.352 10.176 12.4 14.528 18.976 20.8 23.024 25.248 29.696 32.36 36.808 41.256 43.48 45.608 47.832 50.496 54.944 61.608 63.736 67.736 72.184 76.632 79.296\\\">Is it different from court</text></g><path clip-path=\\\"url(#clip4-4)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 56.4156 737.5359 L 108.4156 737.5359 L 108.4156 727.5359 L 56.4156 727.5359 L 56.4156 737.5359 z \\\"/><g clip-path=\\\"url(#clip4-4)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 56.4156 730.1609)\\\" x=\\\"0 4.448 8.896 13.344 15.472 17.296 21.744 24.408 28.408 30.536 32.76 35.424 37.248 41.696 43.52 47.52\\\">and jury trials?</text></g><clipPath id=\\\"clip4-5\\\"><path d=\\\"M 129 727 L 206 727 L 206 749 L 129 749 L 129 727 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-5)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 159.5461 739.2156)\\\" x=\\\"0 5.336 9.784 13.784\\\">Yes.</text></g><clipPath id=\\\"clip4-6\\\"><path d=\\\"M 205 727 L 573 727 L 573 749 L 205 749 L 205 727 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 739.2156)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 223.6351 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 226.6552 739.2156)\\\" x=\\\"0 4.448 8.896 13.344 16.008 17.832 22.28\\\">hearing</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 253.3896 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 256.4096 739.2156)\\\" x=\\\"0 1.824\\\">is</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.2338 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 265.2539 739.2156)\\\" x=\\\"0 4.448 7.112 8.936 12.936 17.384 19.608\\\">private</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 289.3125 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 292.3325 739.2156)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 305.6802 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 308.7002 739.2156)\\\" x=\\\"0 1.824 6.272 10.272\\\">less</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 322.9737 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 325.9937 739.2156)\\\" x=\\\"0 2.224 6.672 9.336 16 20.448\\\">formal</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.2672 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 351.2872 739.2156)\\\" x=\\\"0 2.224 6.672 11.12\\\">than</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 366.8575 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 369.8776 739.2156)\\\" x=\\\"0 4 8.448 12.896 15.56 17.784\\\">court.</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 389.8854 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 392.9055 739.2156)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608\\\">Arbiters</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 420.5148 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 423.5349 739.2156)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 438.6482 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 441.6682 739.2156)\\\" x=\\\"0 1.824 3.648 10.312 12.136\\\">limit</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.0276 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 459.0477 739.2156)\\\" x=\\\"0 4.448 7.112 11.56 14.224 18.672 23.12 27.568 30.232 32.056 36.504\\\">pre-hearing</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 500.0086 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 503.0286 739.2156)\\\" x=\\\"0 2.224 6.672 10.672\\\">fact</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 515.9232 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 518.9432 739.2156)\\\" x=\\\"0 2.224 4.048 8.496 12.944 14.768 19.216 23.664\\\">finding,</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 544.8338 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 547.8539 739.2156)\\\" x=\\\"0 4 8.448 10.272 12.096 16.544\\\">called</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 730.1609)\\\" x=\\\"0 2.84 7.288 9.112 13.112 17.112 21.56 25.56 30.008 32.672 36.672 38.896 41.736 43.864 48.752 53.2 57.648 59.776 64.224 68.672 72.672 74.496 78.496 80.32 84.768 89.216 91.344 93.168 97.168 99.296 101.52 103.344 107.792 112.24 114.064 116.288 118.416 124.192 128.64 133.088 135.752 137.976 141.976 144.104 146.768 151.216 153.88 158.328 160.152 164.152 166.28 170.728 174.728 179.176 181.84 184.064 188.512 191.176 195.624 197.752 203.088 205.752 210.2 212.024 214.248 218.696 221.36 225.36\\\">&quot;discovery.&quot; The decision is final. Courts rarely overturn Arbiters.</text></g><clipPath id=\\\"clip4-7\\\"><path d=\\\"M 35 706 L 130 706 L 130 728 L 35 728 L 35 706 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-7)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 727.4813 L 129.35 727.4813 L 129.35 706.3719 L 35.45 706.3719 L 35.45 727.4813 z \\\"/><path clip-path=\\\"url(#clip4-7)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 725.4813 L 125.25 725.4813 L 125.25 707.3719 L 39.55 707.3719 L 39.55 725.4813 z \\\"/><path clip-path=\\\"url(#clip4-7)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 44.2789 725.4813 L 121.2789 725.4813 L 121.2789 715.4813 L 44.2789 715.4813 L 44.2789 725.4813 z \\\"/><g clip-path=\\\"url(#clip4-7)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 44.2789 718.1062)\\\" x=\\\"0 7.552 12 16.448 18.576 23.024 27.472 31.92 35.92 38.048 40.272 44.72 49.168 51.296 57.072 58.896 63.344 67.792 71.792\\\">Who does the Clause</text></g><path clip-path=\\\"url(#clip4-7)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 70.3941 716.4266 L 95.3941 716.4266 L 95.3941 706.4266 L 70.3941 706.4266 L 70.3941 716.4266 z \\\"/><g clip-path=\\\"url(#clip4-7)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 70.3941 709.0516)\\\" x=\\\"0 4 8.448 12.448 16.896 19.56\\\">cover?</text></g><clipPath id=\\\"clip4-8\\\"><path d=\\\"M 129 706 L 206 706 L 206 728 L 129 728 L 129 706 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 144.5226 718.1062)\\\" x=\\\"0 5.336 9.784 14.232 16.456 18.584 24.36 28.36 30.584 32.712 37.16 41.608\\\">You, Us, and</text></g><g clip-path=\\\"url(#clip4-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 154.4348 709.0516)\\\" x=\\\"0 6.224 8.448 12.896 17.344 20.008 24.008\\\">Others.</text></g><clipPath id=\\\"clip4-9\\\"><path d=\\\"M 205 706 L 573 706 L 573 728 L 205 728 L 205 706 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 718.1062)\\\" x=\\\"0 4.888 9.336 11.16\\\">This</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.0101 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 228.5163 718.1062)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496\\\">Clause</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 253.4655 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 256.9716 718.1062)\\\" x=\\\"0 4.448 8.896 12.896 17.344 20.008 24.456\\\">governs</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 285.4326 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 288.9387 718.1062)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 300.0598 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 303.5659 718.1062)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056 24.056\\\">parties,</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.8472 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 333.3533 718.1062)\\\" x=\\\"0 2.224 6.672 11.12 12.944\\\">their</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.9627 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 352.4688 718.1062)\\\" x=\\\"0 4.448 8.896 10.72 13.384 17.384\\\">heirs,</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 372.0782 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 375.5844 718.1062)\\\" x=\\\"0 4 8.448 12.448 16.448 20.896 24.896 28.896 33.344 36.008 40.008\\\">successors,</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 417.8187 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 421.3249 718.1062)\\\" x=\\\"0 4.448 8.448 12.448 14.272 18.72 23.168 27.168\\\">assigns,</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 450.7194 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 454.2255 718.1062)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.5732 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 471.0793 718.1062)\\\" x=\\\"0 2.224 6.672 8.496 11.16\\\">third</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.6887 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 490.1949 718.1062)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056\\\">parties</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 514.2535 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 517.7596 718.1062)\\\" x=\\\"0 2.664 7.112 8.936 13.384 15.608 20.056\\\">related</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 542.2674 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 545.7735 718.1062)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.4454 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 555.9515 718.1062)\\\" x=\\\"0 4.448 8.896\\\">any</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 709.0516)\\\" x=\\\"0 5.776 7.6 11.6 16.048 20.496 22.72 27.168\\\">Dispute.</text></g><clipPath id=\\\"clip4-10\\\"><path d=\\\"M 35 630 L 130 630 L 130 707 L 35 707 L 35 630 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-10)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 706.3719 L 129.35 706.3719 L 129.35 630.9344 L 35.45 630.9344 L 35.45 706.3719 z \\\"/><path clip-path=\\\"url(#clip4-10)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 704.3719 L 125.25 704.3719 L 125.25 686.2625 L 39.55 686.2625 L 39.55 704.3719 z \\\"/><path clip-path=\\\"url(#clip4-10)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 47.7711 704.3719 L 117.7711 704.3719 L 117.7711 694.3719 L 47.7711 694.3719 L 47.7711 704.3719 z \\\"/><g clip-path=\\\"url(#clip4-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.7711 696.9969)\\\" x=\\\"0 7.552 12 13.824 17.824 22.272 24.4 30.176 32 36 40.448 44.896 47.12 51.568 55.568 57.696 62.144 64.808\\\">Which Disputes are</text></g><path clip-path=\\\"url(#clip4-10)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 65.9449 695.3172 L 98.9449 695.3172 L 98.9449 685.3172 L 65.9449 685.3172 L 65.9449 695.3172 z \\\"/><g clip-path=\\\"url(#clip4-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 65.9449 687.9422)\\\" x=\\\"0 4 8.448 12.448 16.896 19.56 24.008 28.456\\\">covered?</text></g><clipPath id=\\\"clip4-11\\\"><path d=\\\"M 129 630 L 206 630 L 206 707 L 129 707 L 129 630 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 145.298 696.9969)\\\" x=\\\"0 5.336 7.16 8.984 11.112 16.888 18.712 22.712 27.16 31.608 33.832 38.28 42.28\\\">All Disputes.</text></g><clipPath id=\\\"clip4-12\\\"><path d=\\\"M 205 630 L 573 630 L 573 707 L 205 707 L 205 630 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 696.9969)\\\" x=\\\"0 2.224\\\">In</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 216.5219 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 220.3165 696.9969)\\\" x=\\\"0 2.224 6.672 8.496\\\">this</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 232.8126 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 236.6072 696.9969)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496 24.944\\\">Clause,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 263.7791 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 267.5738 696.9969)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 278.6949 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 282.4895 696.9969)\\\" x=\\\"0 5.776 10.224 12.888\\\">word</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.8293 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 303.624 696.9969)\\\" x=\\\"0 2.84 8.616 10.44 14.44 18.888 23.336 25.56 30.008 34.008\\\">&quot;Disputes&quot;</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 340.4755 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 344.2702 696.9969)\\\" x=\\\"0 4.448 8.896\\\">has</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 357.1686 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 360.9633 696.9969)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 372.0844 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 375.879 696.9969)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456 24.904 28.904\\\">broadest</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 407.0118 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 410.8065 696.9969)\\\" x=\\\"0 4.448 8.896 12.896 16.896 18.72 23.168 24.992\\\">possible</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 440.2518 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 444.0464 696.9969)\\\" x=\\\"0 6.664 11.112 15.56 20.008 21.832 26.28 30.728\\\">meaning.</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 477.0034 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 480.7981 696.9969)\\\" x=\\\"0 4.888 9.336 11.16\\\">This</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 495.9582 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 499.7529 696.9969)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496\\\">Clause</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 524.7021 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 528.4968 696.9969)\\\" x=\\\"0 4.448 8.896 12.896 17.344 20.008 24.456\\\">governs</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 556.9577 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 560.7523 696.9969)\\\" x=\\\"0 4.448 6.272\\\">all</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 687.9422)\\\" x=\\\"0 2.84 8.616 10.44 14.44 18.888 23.336 25.56 30.008 34.008\\\">&quot;Disputes&quot;</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 246.7015 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 248.8785 687.9422)\\\" x=\\\"0 1.824 6.272 10.272 14.72 16.544 20.544 22.368 26.816\\\">involving</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.148 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 282.3249 687.9422)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 293.446 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 295.6229 687.9422)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056 24.056\\\">parties.</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 321.9041 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 324.081 687.9422)\\\" x=\\\"0 4.888 9.336 11.16\\\">This</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 339.2412 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 341.4181 687.9422)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44\\\">includes</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 370.8634 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 373.0403 687.9422)\\\" x=\\\"0 4.448 6.272\\\">all</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 381.1379 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 383.3148 687.9422)\\\" x=\\\"0 4 5.824 10.272 12.096 18.76\\\">claims</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 406.0765 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 408.2534 687.9422)\\\" x=\\\"0 4.448 8.448 12.896\\\">even</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 425.6011 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 427.778 687.9422)\\\" x=\\\"0 1.824 6.272 10.72 12.544 15.208 19.656 23.656 25.88 27.704\\\">indirectly</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 459.485 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 461.6619 687.9422)\\\" x=\\\"0 2.664 7.112 8.936 13.384 15.608 20.056\\\">related</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.1698 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 488.3466 687.9422)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 495.0185 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 497.1954 687.9422)\\\" x=\\\"0 4 8.448 12.896\\\">your</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.7579 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 514.9348 687.9422)\\\" x=\\\"0 4.448 8.896 13.344 15.168 16.992 20.992 25.44 27.664 29.488 33.936\\\">application</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.3254 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 555.5023 687.9422)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 678.8875)\\\" x=\\\"0 4.448 8.896 11.56 16.008 20.456 27.12 31.568 36.016 38.24\\\">agreements</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 252.0961 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 254.4013 678.8875)\\\" x=\\\"0 5.776 7.6 9.824\\\">with</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 268.6747 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 270.9799 678.8875)\\\" x=\\\"0 4.448 8.448\\\">us.</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.6518 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 283.957 678.8875)\\\" x=\\\"0 4.888 9.336 11.16\\\">This</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.1172 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 301.4224 678.8875)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44\\\">includes</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 330.8677 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 333.1729 678.8875)\\\" x=\\\"0 4 5.824 10.272 12.096 18.76\\\">claims</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.9346 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 358.2398 678.8875)\\\" x=\\\"0 2.664 7.112 8.936 13.384 15.608 20.056\\\">related</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 382.7477 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 385.0529 678.8875)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 391.7247 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 394.0299 678.8875)\\\" x=\\\"0 1.824 6.272 8.496 12.944 15.608 22.272 26.72 28.944 30.768 35.216\\\">information</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 433.6979 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 436.0031 678.8875)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 448.9016 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 451.2068 678.8875)\\\" x=\\\"0 4.448 7.112 11.56 15.56 17.384 21.832 26.28 30.28 32.104\\\">previously</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 487.3161 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 489.6213 678.8875)\\\" x=\\\"0 4.448 8.896 12.896\\\">gave</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 506.969 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 509.2742 678.8875)\\\" x=\\\"0 4.448 8.448\\\">us.</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 519.9461 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 522.2513 678.8875)\\\" x=\\\"0 2.224\\\">It</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.6966 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 529.0018 678.8875)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44\\\">includes</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 558.4471 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 560.7523 678.8875)\\\" x=\\\"0 4.448 6.272\\\">all</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 669.8328)\\\" x=\\\"0 4.448 8.896 12.896\\\">past</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 224.9711 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 227.1634 669.8328)\\\" x=\\\"0 4.448 8.896 11.56 16.008 20.456 27.12 31.568 36.016 38.24 42.24\\\">agreements.</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 271.6321 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 273.8245 669.8328)\\\" x=\\\"0 2.224\\\">It</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 278.2698 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 280.4621 669.8328)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44 29.44\\\">includes,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.13 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 314.3223 669.8328)\\\" x=\\\"0 4.448\\\">as</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 322.7716 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 324.9639 669.8328)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 340.0772 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 342.2695 669.8328)\\\" x=\\\"0 4.448\\\">be</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.1679 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 353.3602 669.8328)\\\" x=\\\"0 4.448 8.896 13.344 15.168 16.992 20.992 25.44 29.888 31.712 36.16\\\">applicable,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 391.7508 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 393.9431 669.8328)\\\" x=\\\"0 4.448 8.896\\\">any</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 406.8416 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 409.0339 669.8328)\\\" x=\\\"0 4.448 8.896 13.344 15.168 17.392 19.216 23.664 28.112 32.56\\\">additional</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 443.4245 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 445.6168 669.8328)\\\" x=\\\"0 4.448 8.896 11.56 13.384 17.832 22.28 26.28\\\">periods,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.1246 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 476.3169 669.8328)\\\" x=\\\"0 4.448 8.448 10.672 15.12 19.568 23.568 25.392 29.84 34.288 38.288\\\">extensions,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 516.8326 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 519.0249 669.8328)\\\" x=\\\"0 2.664 7.112 11.56 16.008 21.784 26.232 28.056 32.056\\\">renewals,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.31 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 555.5023 669.8328)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 660.7781)\\\" x=\\\"0 4.448 6.272 10.72 15.168 19.168\\\">plans.</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.2445 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 233.5225 660.7781)\\\" x=\\\"0 2.224\\\">It</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 237.9678 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 240.2458 660.7781)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44\\\">includes</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 269.6911 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 271.9691 660.7781)\\\" x=\\\"0 4 5.824 10.272 12.096 18.76\\\">claims</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 294.7308 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 297.0088 660.7781)\\\" x=\\\"0 2.664 7.112 8.936 13.384 15.608 20.056\\\">related</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 321.5167 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 323.7946 660.7781)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 330.4665 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 332.7445 660.7781)\\\" x=\\\"0 4.448 8.896 15.56 20.008 24.456 28.904\\\">damaged</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 366.1039 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 368.3819 660.7781)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456 23.12 25.344 29.344\\\">property,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 399.9522 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 402.2302 660.7781)\\\" x=\\\"0 4.448 8.896 12.896 17.344 21.792 24.016\\\">buyout,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 428.4724 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 430.7504 660.7781)\\\" x=\\\"0 2.664 7.112 8.936 13.384 17.384 19.608 24.056 26.28 30.728 37.392 41.84 46.288 48.512\\\">r* D E M O *t,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 481.4887 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 483.7667 660.7781)\\\" x=\\\"0 1.824 6.272 10.272 14.272\\\">loss,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 500.2627 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 502.5408 660.7781)\\\" x=\\\"0 4.448 8.896 15.56 20.008 24.456 28.904\\\">damage,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 533.6736 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 535.9516 660.7781)\\\" x=\\\"0 5.776 10.224 12.888 15.552 20 24.448 26.672 30.672\\\">warranty,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 651.7234)\\\" x=\\\"0 6.664 11.112 12.936 17.384 19.608 24.056 28.504 32.952 37.4 41.4 45.848\\\">maintenance,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.9281 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 260.595 651.7234)\\\" x=\\\"0 4 8.448 10.272 12.096 16.544 20.544 22.768 24.592 29.04 33.488\\\">collection,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 296.3099 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 298.9768 651.7234)\\\" x=\\\"0 4.448 8.896 12.896 16.896 21.344 25.344 29.344 31.168 35.616 40.064\\\">possession,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 341.2697 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 343.9366 651.7234)\\\" x=\\\"0 4.448 7.112 8.936 12.936 17.384 21.384 25.384\\\">privacy,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.546 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 374.2129 651.7234)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 387.5606 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 390.2275 651.7234)\\\" x=\\\"0 4 8.448 12.448 14.672 19.12 25.784 30.232\\\">customer</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 423.1259 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 425.7928 651.7234)\\\" x=\\\"0 1.824 6.272 8.496 12.944 15.608 22.272 26.72 28.944 30.768 35.216 39.664\\\">information.</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.6834 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 470.3503 651.7234)\\\" x=\\\"0 2.224\\\">It</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.7957 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 477.4626 651.7234)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44\\\">includes</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 506.9079 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 509.5748 651.7234)\\\" x=\\\"0 4 5.824 10.272 12.096 18.76\\\">claims</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 532.3365 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 535.0034 651.7234)\\\" x=\\\"0 2.664 7.112 8.936 13.384 15.608 20.056\\\">related</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.5112 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 562.1781 651.7234)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 642.6688)\\\" x=\\\"0 4 8.448 10.672 12.896 14.72 19.168\\\">setting</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.4672 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 236.1411 642.6688)\\\" x=\\\"0 4.448 8.448 10.272 14.72\\\">aside</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 255.313 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 257.987 642.6688)\\\" x=\\\"0 2.224 6.672 8.496\\\">this</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 270.4831 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 273.157 642.6688)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496 24.944\\\">Clause.</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 300.3289 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 303.0029 642.6688)\\\" x=\\\"0 2.224\\\">It</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 307.4482 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 310.1221 642.6688)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44\\\">includes</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 339.5674 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 342.2414 642.6688)\\\" x=\\\"0 4 5.824 10.272 12.096 18.76\\\">claims</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 365.0031 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 367.6771 642.6688)\\\" x=\\\"0 4.448 8.896 13.344 17.792\\\">about</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 387.6966 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 390.3706 642.6688)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 401.4917 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 404.1656 642.6688)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496 24.944 26.472\\\">Clause&apos;s</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.6422 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 437.3161 642.6688)\\\" x=\\\"0 4 8.448 10.272 12.096 16.544 18.368 20.592\\\">validity</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 461.9099 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 464.5838 642.6688)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 477.9315 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 480.6055 642.6688)\\\" x=\\\"0 4 8 12.448 16.896 21.344\\\">scope.</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 504.1758 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 506.8497 642.6688)\\\" x=\\\"0 2.224\\\">It</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 511.295 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 513.969 642.6688)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44\\\">includes</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 543.4143 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 546.0883 642.6688)\\\" x=\\\"0 4 5.824 10.272 12.096 18.76\\\">claims</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 633.6141)\\\" x=\\\"0 4.448 8.896 13.344 17.792 20.016 22.144 27.92 32.368 36.816 39.04 43.488 47.936 50.6 52.728 54.952 59.4 61.528 65.976 68.64 73.088 74.912 77.136 79.8 84.248 86.472 90.92\\\">about whether to arbitrate.</text></g><clipPath id=\\\"clip4-13\\\"><path d=\\\"M 35 578 L 130 578 L 130 631 L 35 631 L 35 578 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-13)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 630.9344 L 129.35 630.9344 L 129.35 578.6609 L 35.45 578.6609 L 35.45 630.9344 z \\\"/><path clip-path=\\\"url(#clip4-13)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 628.9344 L 125.25 628.9344 L 125.25 619.8797 L 39.55 619.8797 L 39.55 628.9344 z \\\"/><path clip-path=\\\"url(#clip4-13)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 41.1227 628.9344 L 124.1227 628.9344 L 124.1227 618.9344 L 41.1227 618.9344 L 41.1227 628.9344 z \\\"/><g clip-path=\\\"url(#clip4-13)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 41.1227 621.5594)\\\" x=\\\"0 5.336 8 12.448 14.576 18.576 23.024 27.472 29.6 35.376 39.824 41.648 45.648 47.472 51.92 56.368 58.496 61.16 62.984 67.432 71.88 74.104 78.104\\\">Are you waiving rights?</text></g><clipPath id=\\\"clip4-14\\\"><path d=\\\"M 129 578 L 206 578 L 206 631 L 129 631 L 129 578 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-14)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 159.5461 621.5594)\\\" x=\\\"0 5.336 9.784 13.784\\\">Yes.</text></g><clipPath id=\\\"clip4-15\\\"><path d=\\\"M 205 578 L 573 578 L 573 631 L 205 631 L 205 578 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-15)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 621.5594)\\\" x=\\\"0 5.336 9.784 14.232\\\">You </text></g><g clip-path=\\\"url(#clip4-15)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 225.85 621.5594)\\\" x=\\\"0 5.776 10.224 12.048 16.048\\\">waive</text></g><path clip-path=\\\"url(#clip4-15)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 225.85 620.213 L 225.85 620.213 L 245.85 620.213 L 246.1833 620.213 L 246.1833 619.5464 L 245.85 619.5464 L 225.85 619.5464 L 225.5167 619.5464 L 225.5167 620.213 z \\\"/><g clip-path=\\\"url(#clip4-15)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.85 621.5594)\\\" x=\\\"0 2.128 6.128 10.576 15.024 17.688 19.816 22.48 24.304 28.752 33.2 35.424 39.424 41.552 43.776 48.224\\\"> your rights to:</text></g><g clip-path=\\\"url(#clip4-15)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 611.5047)\\\" x=\\\"0 4.448 6.672 8.8 14.576 19.024 23.024 27.472 29.6 31.424 35.872 38.536 40.36 44.808 48.808 50.936 54.936 59.384 61.208 65.208 69.656 71.784 77.56 79.384 83.384 87.832 92.28 94.504 98.952 102.952\\\">1. Have juries solve Disputes.</text></g><g clip-path=\\\"url(#clip4-15)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 601.45)\\\" x=\\\"0 4.448 6.672 8.8 14.576 19.024 23.024 27.472 29.6 33.6 38.048 42.496 45.16 47.384 51.384 53.608 55.736 60.184 62.408 66.856 71.304 73.968 76.096 78.32 82.768 87.216 91.664 93.792 97.792 104.456 108.904 110.728 112.552 115.216 119.216 121.04 125.488 127.312 133.976 137.976 140.104 144.104 148.552 153 155.664 157.888 161.888 164.112 166.24 170.24 174.688 176.512 180.512 184.96 187.088 192.864 194.688 198.688 203.136 207.584 209.808 214.256 218.256\\\">2. Have courts, other than small-claims courts, solve Disputes.</text></g><g clip-path=\\\"url(#clip4-15)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 591.3953)\\\" x=\\\"0 4.448 6.672 8.8 14.136 18.584 21.248 25.248 29.696 31.824 36.272 40.272 42.4 46.848 48.976 53.424 56.088 57.912 61.912 66.36 68.584 73.032 75.16 79.608 81.832 84.056 88.504 91.168 95.616 100.064 104.064 106.192 110.64 115.088 119.536 123.984 126.648 131.096 132.92 135.048 139.496 142.16 144.288 146.112 150.56 152.688 157.136 159.264 161.928 166.376 170.824 173.488 177.936 181.936 186.384 190.832 193.056 197.504 199.728 201.552 205.552 210 212.128 216.128 220.576 225.024 229.472 233.472 235.296 237.52 241.52\\\">3. Serve as a private attorney general or in a* D E M O *tive capacity.</text></g><g clip-path=\\\"url(#clip4-15)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 581.3406)\\\" x=\\\"0 4.448 6.672 8.8 14.136 18.584 20.712 22.536 26.984 29.112 33.56 35.688 39.688 41.512 45.96 49.96 53.96 56.088 60.536 64.536 66.76 68.584 73.032 77.48\\\">4. Be in a class action.</text></g><clipPath id=\\\"clip4-16\\\"><path d=\\\"M 35 530 L 130 530 L 130 579 L 35 579 L 35 530 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-16)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 578.6609 L 129.35 578.6609 L 129.35 530.3875 L 35.45 530.3875 L 35.45 578.6609 z \\\"/><path clip-path=\\\"url(#clip4-16)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 576.6609 L 125.25 576.6609 L 125.25 558.5516 L 39.55 558.5516 L 39.55 576.6609 z \\\"/><path clip-path=\\\"url(#clip4-16)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 44.0152 576.6609 L 121.0152 576.6609 L 121.0152 566.6609 L 44.0152 566.6609 L 44.0152 576.6609 z \\\"/><g clip-path=\\\"url(#clip4-16)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 44.0152 569.2859)\\\" x=\\\"0 5.336 8 12.448 14.576 18.576 23.024 27.472 29.6 35.376 39.824 41.648 45.648 47.472 51.92 56.368 58.496 62.496 64.32 68.768 72.768\\\">Are you waiving class</text></g><path clip-path=\\\"url(#clip4-16)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 58.6109 567.6063 L 106.6109 567.6063 L 106.6109 557.6063 L 58.6109 557.6063 L 58.6109 567.6063 z \\\"/><g clip-path=\\\"url(#clip4-16)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 58.6109 560.2312)\\\" x=\\\"0 4.448 8.448 10.672 12.496 16.944 21.392 23.52 26.184 28.008 32.456 36.904 39.128 43.128\\\">action rights?</text></g><clipPath id=\\\"clip4-17\\\"><path d=\\\"M 129 530 L 206 530 L 206 579 L 129 579 L 129 530 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-17)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 159.5461 569.2859)\\\" x=\\\"0 5.336 9.784 13.784\\\">Yes.</text></g><clipPath id=\\\"clip4-18\\\"><path d=\\\"M 205 530 L 573 530 L 573 579 L 205 579 L 205 530 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 569.2859)\\\" x=\\\"0 5.7774 12 17.7774 23.5547 28.4414\\\">COURTS</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 243.6273 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 245.7523 569.2859)\\\" x=\\\"0 5.3359 11.1133\\\">AND</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.643 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 264.768 569.2859)\\\" x=\\\"0 5.3359 11.1133 16.4492 18.6719 23.5586 28.8945 34.6719\\\">ARBITERS</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 304.7758 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 306.9008 569.2859)\\\" x=\\\"0\\\">W</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 306.9008 567.9396 L 306.9008 567.9396 L 314.9008 567.9396 L 315.2341 567.9396 L 315.2341 567.2729 L 314.9008 567.2729 L 306.9008 567.2729 L 306.5674 567.2729 L 306.5674 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 314.4515 569.2859)\\\" x=\\\"0\\\">O</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 314.4515 567.9396 L 314.4515 567.9396 L 320.4515 567.9396 L 320.7849 567.9396 L 320.7849 567.2729 L 320.4515 567.2729 L 314.4515 567.2729 L 314.1182 567.2729 L 314.1182 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 320.6742 569.2859)\\\" x=\\\"0\\\">N</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 320.6742 567.9396 L 320.6742 567.9396 L 326.6742 567.9396 L 327.0075 567.9396 L 327.0075 567.2729 L 326.6742 567.2729 L 320.6742 567.2729 L 320.3409 567.2729 L 320.3409 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 326.4515 569.2859)\\\" x=\\\"0\\\">&apos;</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 326.4515 567.9396 L 326.4515 567.9396 L 328.4515 567.9396 L 328.7849 567.9396 L 328.7849 567.2729 L 328.4515 567.2729 L 326.4515 567.2729 L 326.1182 567.2729 L 326.1182 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 327.9789 569.2859)\\\" x=\\\"0\\\">T</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 327.9789 567.9396 L 327.9789 567.9396 L 332.9789 567.9396 L 333.3122 567.9396 L 333.3122 567.2729 L 332.9789 567.2729 L 327.9789 567.2729 L 327.6456 567.2729 L 327.6456 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 332.8656 569.2859)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 332.8656 567.9396 L 332.8656 567.9396 L 334.8656 567.9396 L 335.1989 567.9396 L 335.1989 567.2729 L 334.8656 567.2729 L 332.8656 567.2729 L 332.5323 567.2729 L 332.5323 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 334.9906 569.2859)\\\" x=\\\"0\\\">A</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 334.9906 567.9396 L 334.9906 567.9396 L 339.9906 567.9396 L 340.3239 567.9396 L 340.3239 567.2729 L 339.9906 567.2729 L 334.9906 567.2729 L 334.6573 567.2729 L 334.6573 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 340.3265 569.2859)\\\" x=\\\"0\\\">L</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 340.3265 567.9396 L 340.3265 567.9396 L 344.3265 567.9396 L 344.6599 567.9396 L 344.6599 567.2729 L 344.3265 567.2729 L 340.3265 567.2729 L 339.9932 567.2729 L 339.9932 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 344.7758 569.2859)\\\" x=\\\"0\\\">L</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 344.7758 567.9396 L 344.7758 567.9396 L 348.7758 567.9396 L 349.1091 567.9396 L 349.1091 567.2729 L 348.7758 567.2729 L 344.7758 567.2729 L 344.4424 567.2729 L 344.4424 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 349.225 569.2859)\\\" x=\\\"0\\\">O</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 349.225 567.9396 L 349.225 567.9396 L 355.225 567.9396 L 355.5583 567.9396 L 355.5583 567.2729 L 355.225 567.2729 L 349.225 567.2729 L 348.8917 567.2729 L 348.8917 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 355.4477 569.2859)\\\" x=\\\"0\\\">W</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 355.4477 567.9396 L 355.4477 567.9396 L 363.4477 567.9396 L 363.781 567.9396 L 363.781 567.2729 L 363.4477 567.2729 L 355.4477 567.2729 L 355.1143 567.2729 L 355.1143 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 362.9984 569.2859)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 362.9984 567.9396 L 362.9984 567.9396 L 364.9984 567.9396 L 365.3318 567.9396 L 365.3318 567.2729 L 364.9984 567.2729 L 362.9984 567.2729 L 362.6651 567.2729 L 362.6651 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 365.1234 569.2859)\\\" x=\\\"0\\\">C</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 365.1234 567.9396 L 365.1234 567.9396 L 371.1234 567.9396 L 371.4568 567.9396 L 371.4568 567.2729 L 371.1234 567.2729 L 365.1234 567.2729 L 364.7901 567.2729 L 364.7901 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 370.9008 569.2859)\\\" x=\\\"0\\\">L</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 370.9008 567.9396 L 370.9008 567.9396 L 374.9008 567.9396 L 375.2341 567.9396 L 375.2341 567.2729 L 374.9008 567.2729 L 370.9008 567.2729 L 370.5674 567.2729 L 370.5674 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 375.35 569.2859)\\\" x=\\\"0\\\">A</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 375.35 567.9396 L 375.35 567.9396 L 380.35 567.9396 L 380.6833 567.9396 L 380.6833 567.2729 L 380.35 567.2729 L 375.35 567.2729 L 375.0167 567.2729 L 375.0167 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 380.6859 569.2859)\\\" x=\\\"0\\\">S</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 380.6859 567.9396 L 380.6859 567.9396 L 385.6859 567.9396 L 386.0193 567.9396 L 386.0193 567.2729 L 385.6859 567.2729 L 380.6859 567.2729 L 380.3526 567.2729 L 380.3526 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 386.0219 569.2859)\\\" x=\\\"0\\\">S</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 386.0219 567.9396 L 386.0219 567.9396 L 391.0219 567.9396 L 391.3552 567.9396 L 391.3552 567.2729 L 391.0219 567.2729 L 386.0219 567.2729 L 385.6885 567.2729 L 385.6885 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 391.3578 569.2859)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 391.3578 567.9396 L 391.3578 567.9396 L 393.3578 567.9396 L 393.6911 567.9396 L 393.6911 567.2729 L 393.3578 567.2729 L 391.3578 567.2729 L 391.0245 567.2729 L 391.0245 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 393.4828 569.2859)\\\" x=\\\"0\\\">A</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 393.4828 567.9396 L 393.4828 567.9396 L 398.4828 567.9396 L 398.8161 567.9396 L 398.8161 567.2729 L 398.4828 567.2729 L 393.4828 567.2729 L 393.1495 567.2729 L 393.1495 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 398.8187 569.2859)\\\" x=\\\"0\\\">C</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 398.8187 567.9396 L 398.8187 567.9396 L 404.8187 567.9396 L 405.1521 567.9396 L 405.1521 567.2729 L 404.8187 567.2729 L 398.8187 567.2729 L 398.4854 567.2729 L 398.4854 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 404.5961 569.2859)\\\" x=\\\"0\\\">T</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 404.5961 567.9396 L 404.5961 567.9396 L 409.5961 567.9396 L 409.9294 567.9396 L 409.9294 567.2729 L 409.5961 567.2729 L 404.5961 567.2729 L 404.2628 567.2729 L 404.2628 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 409.4828 569.2859)\\\" x=\\\"0\\\">I</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 409.4828 567.9396 L 409.4828 567.9396 L 411.4828 567.9396 L 411.8161 567.9396 L 411.8161 567.2729 L 411.4828 567.2729 L 409.4828 567.2729 L 409.1495 567.2729 L 409.1495 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 411.7055 569.2859)\\\" x=\\\"0\\\">O</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 411.7055 567.9396 L 411.7055 567.9396 L 417.7055 567.9396 L 418.0388 567.9396 L 418.0388 567.2729 L 417.7055 567.2729 L 411.7055 567.2729 L 411.3721 567.2729 L 411.3721 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 417.9281 569.2859)\\\" x=\\\"0\\\">N</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 417.9281 567.9396 L 417.9281 567.9396 L 423.9281 567.9396 L 424.2614 567.9396 L 424.2614 567.2729 L 423.9281 567.2729 L 417.9281 567.2729 L 417.5948 567.2729 L 417.5948 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 423.7055 569.2859)\\\" x=\\\"0\\\">S</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 423.7055 567.9396 L 423.7055 567.9396 L 428.7055 567.9396 L 429.0388 567.9396 L 429.0388 567.2729 L 428.7055 567.2729 L 423.7055 567.2729 L 423.3721 567.2729 L 423.3721 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 429.0414 569.2859)\\\" x=\\\"0\\\">.</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 429.0414 567.9396 L 429.0414 567.9396 L 431.0414 567.9396 L 431.3747 567.9396 L 431.3747 567.2729 L 431.0414 567.2729 L 429.0414 567.2729 L 428.7081 567.2729 L 428.7081 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 431.264 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 433.389 569.2859)\\\" x=\\\"0 5.3359 9.7852\\\">You</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.6234 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 449.7484 569.2859)\\\" x=\\\"0\\\">w</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 449.7484 567.9396 L 449.7484 567.9396 L 455.7484 567.9396 L 456.0818 567.9396 L 456.0818 567.2729 L 455.7484 567.2729 L 449.7484 567.2729 L 449.4151 567.2729 L 449.4151 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 455.5258 569.2859)\\\" x=\\\"0\\\">a</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 455.5258 567.9396 L 455.5258 567.9396 L 459.5258 567.9396 L 459.8591 567.9396 L 459.8591 567.2729 L 459.5258 567.2729 L 455.5258 567.2729 L 455.1924 567.2729 L 455.1924 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 459.975 569.2859)\\\" x=\\\"0\\\">i</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 459.975 567.9396 L 459.975 567.9396 L 461.975 567.9396 L 462.3083 567.9396 L 462.3083 567.2729 L 461.975 567.2729 L 459.975 567.2729 L 459.6417 567.2729 L 459.6417 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 461.7992 569.2859)\\\" x=\\\"0\\\">v</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 461.7992 567.9396 L 461.7992 567.9396 L 465.7992 567.9396 L 466.1325 567.9396 L 466.1325 567.2729 L 465.7992 567.2729 L 461.7992 567.2729 L 461.4659 567.2729 L 461.4659 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 465.7992 569.2859)\\\" x=\\\"0\\\">e</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 465.7992 567.9396 L 465.7992 567.9396 L 469.7992 567.9396 L 470.1325 567.9396 L 470.1325 567.2729 L 469.7992 567.2729 L 465.7992 567.2729 L 465.4659 567.2729 L 465.4659 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 470.2484 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 472.3734 569.2859)\\\" x=\\\"0 4 8.4492 12.8984\\\">your</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 487.9359 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 490.0609 569.2859)\\\" x=\\\"0 2.6641 4.4883 8.9375 13.3867 15.6094\\\">rights</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.6703 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 511.7953 569.2859)\\\" x=\\\"0 2.2227\\\">to</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 518.4672 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 520.5922 569.2859)\\\" x=\\\"0 4.4492\\\">be</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.4906 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 531.6156 569.2859)\\\" x=\\\"0 1.8242\\\">in</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 537.889 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 540.014 569.2859)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 544.4633 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 546.5883 569.2859)\\\" x=\\\"0\\\">c</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 546.5883 567.9396 L 546.5883 567.9396 L 550.5883 567.9396 L 550.9216 567.9396 L 550.9216 567.2729 L 550.5883 567.2729 L 546.5883 567.2729 L 546.2549 567.2729 L 546.2549 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 550.5883 569.2859)\\\" x=\\\"0\\\">l</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 550.5883 567.9396 L 550.5883 567.9396 L 552.5883 567.9396 L 552.9216 567.9396 L 552.9216 567.2729 L 552.5883 567.2729 L 550.5883 567.2729 L 550.2549 567.2729 L 550.2549 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 552.4125 569.2859)\\\" x=\\\"0\\\">a</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 552.4125 567.9396 L 552.4125 567.9396 L 556.4125 567.9396 L 556.7458 567.9396 L 556.7458 567.2729 L 556.4125 567.2729 L 552.4125 567.2729 L 552.0792 567.2729 L 552.0792 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 556.8617 569.2859)\\\" x=\\\"0\\\">s</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 556.8617 567.9396 L 556.8617 567.9396 L 560.8617 567.9396 L 561.1951 567.9396 L 561.1951 567.2729 L 560.8617 567.2729 L 556.8617 567.2729 L 556.5284 567.2729 L 556.5284 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 560.8617 569.2859)\\\" x=\\\"0\\\">s</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 560.8617 567.9396 L 560.8617 567.9396 L 564.8617 567.9396 L 565.1951 567.9396 L 565.1951 567.2729 L 564.8617 567.2729 L 560.8617 567.2729 L 560.5284 567.2729 L 560.5284 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 560.2312)\\\" x=\\\"0\\\">a</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 209.85 558.8849 L 209.85 558.8849 L 213.85 558.8849 L 214.1833 558.8849 L 214.1833 558.2182 L 213.85 558.2182 L 209.85 558.2182 L 209.5167 558.2182 L 209.5167 558.8849 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 214.2992 560.2312)\\\" x=\\\"0\\\">c</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 214.2992 558.8849 L 214.2992 558.8849 L 218.2992 558.8849 L 218.6325 558.8849 L 218.6325 558.2182 L 218.2992 558.2182 L 214.2992 558.2182 L 213.9659 558.2182 L 213.9659 558.8849 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 218.2992 560.2312)\\\" x=\\\"0\\\">t</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 218.2992 558.8849 L 218.2992 558.8849 L 220.2992 558.8849 L 220.6325 558.8849 L 220.6325 558.2182 L 220.2992 558.2182 L 218.2992 558.2182 L 217.9659 558.2182 L 217.9659 558.8849 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 220.5219 560.2312)\\\" x=\\\"0\\\">i</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 220.5219 558.8849 L 220.5219 558.8849 L 222.5219 558.8849 L 222.8552 558.8849 L 222.8552 558.2182 L 222.5219 558.2182 L 220.5219 558.2182 L 220.1885 558.2182 L 220.1885 558.8849 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 222.3461 560.2312)\\\" x=\\\"0\\\">o</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 222.3461 558.8849 L 222.3461 558.8849 L 226.3461 558.8849 L 226.6794 558.8849 L 226.6794 558.2182 L 226.3461 558.2182 L 222.3461 558.2182 L 222.0128 558.2182 L 222.0128 558.8849 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 226.7953 560.2312)\\\" x=\\\"0\\\">n</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 226.7953 558.8849 L 226.7953 558.8849 L 230.7953 558.8849 L 231.1286 558.8849 L 231.1286 558.2182 L 230.7953 558.2182 L 226.7953 558.2182 L 226.462 558.2182 L 226.462 558.8849 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 231.2445 560.2312)\\\" x=\\\"0\\\">,</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.4672 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 235.5922 560.2312)\\\" x=\\\"0 4.4492\\\">as</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 244.0414 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 246.1664 560.2312)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 250.6156 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 252.7406 560.2312)\\\" x=\\\"0 2.6641 7.1133 11.5625 14.2266 18.6758 22.6758 27.125 31.5742 33.7969 38.2461 40.4688 42.293 46.293\\\">representative</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 303.4828 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 305.6078 560.2312)\\\" x=\\\"0 4.4492 8.8984\\\">and</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 318.9555 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 321.0805 560.2312)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 325.5297 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 327.6547 560.2312)\\\" x=\\\"0 6.6641 11.1133 17.7773 22.2266 26.6758 29.3398\\\">member.</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.2172 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 361.3422 560.2312)\\\" x=\\\"0 6.2227 10.6719 12.4961\\\">Only</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 377.8383 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 379.9633 560.2312)\\\" x=\\\"0 1.8242 6.2734 10.7227 12.5469 16.5469 18.3711 22.8203 27.2695 31.7188\\\">individual</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 413.5062 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 415.6312 560.2312)\\\" x=\\\"0 4.4492 7.1133 11.5625 13.3867 15.6094 18.2734 22.7227 24.9453 26.7695 31.2188 35.668\\\">arbitration,</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 453.5219 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 455.6469 560.2312)\\\" x=\\\"0 4.4492\\\">or</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 462.7601 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 464.8851 560.2312)\\\" x=\\\"0 4 10.6641 15.1133 16.9375 18.7617 21.4258 25.4258 27.25 31.6992 33.5234 40.1875\\\">small-claims</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.0727 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 511.1977 560.2312)\\\" x=\\\"0 4 8.4492 12.8984 15.5625 17.7851 21.7851\\\">courts,</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 535.2055 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 537.3305 560.2312)\\\" x=\\\"0 5.7773 7.6016 9.4258\\\">will</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 551.1766)\\\" x=\\\"0 4 8.4492 10.2734 14.2734\\\">solve</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 228.5726 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 230.6976 551.1766)\\\" x=\\\"0 5.7773 7.6016 11.6016 16.0508 20.5 22.7227 27.1719 31.1719\\\">Disputes.</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 264.0922 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 266.2172 551.1766)\\\" x=\\\"0 5.3359 9.7852\\\">You</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.4515 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 282.5765 551.1766)\\\" x=\\\"0 5.7774 10.2266 12.0508 16.0508\\\">waive</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 303.0765 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 304.9015 551.1766)\\\" x=\\\"0 4 8.4492 12.8984\\\">your</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 320.464 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 322.289 551.1766)\\\" x=\\\"0 2.6641 4.4883 8.9375 13.3867\\\">right</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 337.8984 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 339.7234 551.1766)\\\" x=\\\"0 2.2227\\\">to</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 346.3953 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 348.2203 551.1766)\\\" x=\\\"0 4.4492 8.8984 12.8984\\\">have</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 365.568 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 367.393 551.1766)\\\" x=\\\"0 2.6641 7.1133 11.5625 14.2266 18.6758 22.6758 27.125 31.5742 33.7969 38.2461 40.4687 42.293 46.293\\\">representative</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 418.1351 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 419.9601 551.1766)\\\" x=\\\"0 4 5.8242 10.2734 12.0977 18.7617 22.7617\\\">claims.</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 444.9445 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 446.7695 551.1766)\\\" x=\\\"0 5.7774 10.2266 12.0508 16.5 20.5\\\">Unless</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 471.2695 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 473.0945 551.1766)\\\" x=\\\"0 2.6641 7.1133 11.1133 15.5625 18.2266 22.2266 26.6758\\\">reversed</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 504.2195 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 506.0445 551.1766)\\\" x=\\\"0 4.4492\\\">on</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 514.943 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 516.768 551.1766)\\\" x=\\\"0 4.4492 8.8984 13.3477 17.7969 22.2461 24.0703\\\">appeal,</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 543.0609 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 544.8859 551.1766)\\\" x=\\\"0 1.8242\\\">if</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 548.9328 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 550.7578 551.1766)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 542.1219)\\\" x=\\\"0 4 8.4492 12.8984 15.5625\\\">court</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 227.6351 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 229.4601 542.1219)\\\" x=\\\"0 1.8242 6.2734 10.2734 14.7227 16.5469 18.3711 22.8203 27.2695 29.4922 33.9414\\\">invalidates</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 267.4015 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 269.2265 542.1219)\\\" x=\\\"0 2.2227 6.6719 8.4961\\\">this</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.7226 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 283.5477 542.1219)\\\" x=\\\"0 5.7773 10.2266 12.0508 16.0508 20.5 23.1641\\\">waiver,</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.9344 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 310.7594 542.1219)\\\" x=\\\"0 2.2226 6.6719 11.1211\\\">then</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 326.3297 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 328.4547 542.1219)\\\" x=\\\"0 2.2227 6.6719\\\">the</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 339.5758 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 341.4008 542.1219)\\\" x=\\\"0 4.4492 8.8984 11.5625 16.0117 20.4609 27.125 31.5742 36.0234\\\">agreement</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 379.6469 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 381.4719 542.1219)\\\" x=\\\"0 2.2227\\\">to</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.1437 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 389.9687 542.1219)\\\" x=\\\"0 4.4492 7.1133 11.5625 13.3867 15.6094 18.2734 22.7227 24.9453\\\">arbitrate</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.3633 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 421.1883 542.1219)\\\" x=\\\"0 5.7774 7.6016 9.4258\\\">will</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 432.4383 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 434.2633 542.1219)\\\" x=\\\"0 4.4492\\\">be</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 443.1617 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 444.9867 542.1219)\\\" x=\\\"0 4 8.4492 10.2734 14.7227\\\">void,</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 461.932 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 463.757 542.1219)\\\" x=\\\"0 4.4492 8.8984\\\">and</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 477.1047 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 478.9297 542.1219)\\\" x=\\\"0 5.7773 7.6016 11.6016 16.0508 20.5 22.7227 27.1719\\\">Disputes</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 510.1016 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 511.9266 542.1219)\\\" x=\\\"0 5.7773 7.6016 9.4258\\\">will</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 523.1766 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 525.0016 542.1219)\\\" x=\\\"0 4.4492\\\">be</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 533.9 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 535.725 542.1219)\\\" x=\\\"0 2.6641 7.1133 11.1133 15.5625 17.3867 21.3867 25.8359\\\">resolved</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 533.0672)\\\" x=\\\"0 4.4492\\\">by</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 218.2992 533.0672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 220.1242 533.0672)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 224.5734 533.0672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 226.3984 533.0672)\\\" x=\\\"0 1.8242 6.2734 10.7227 15.1719 19.6211\\\">judge,</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 248.2422 533.0672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 250.0672 533.0672)\\\" x=\\\"0 4.4492 8.8984\\\">but</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 261.1883 533.0672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 263.0133 533.0672)\\\" x=\\\"0 4.4492 8.8984\\\">not</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 274.1344 533.0672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 275.9594 533.0672)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.4086 533.0672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 282.2336 533.0672)\\\" x=\\\"0 1.8242 6.2734 8.9375 12.9375\\\">jury.</text></g><clipPath id=\\\"clip4-19\\\"><path d=\\\"M 35 491 L 130 491 L 130 531 L 35 531 L 35 491 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-19)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 530.3875 L 129.35 530.3875 L 129.35 491.1688 L 35.45 491.1688 L 35.45 530.3875 z \\\"/><path clip-path=\\\"url(#clip4-19)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 528.3875 L 125.25 528.3875 L 125.25 519.3328 L 39.55 519.3328 L 39.55 528.3875 z \\\"/><path clip-path=\\\"url(#clip4-19)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 49.9664 528.3875 L 114.9664 528.3875 L 114.9664 518.3875 L 49.9664 518.3875 L 49.9664 528.3875 z \\\"/><g clip-path=\\\"url(#clip4-19)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 49.9664 521.0125)\\\" x=\\\"0 7.552 12 16.448 18.672 20.8 22.624 27.072 32.848 34.976 39.424 43.872 48.32 50.144 51.968 56.416 60.416\\\">What law applies?</text></g><clipPath id=\\\"clip4-20\\\"><path d=\\\"M 129 491 L 206 491 L 206 531 L 129 531 L 129 491 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-20)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.009 521.0125)\\\" x=\\\"0 4.888 9.336 13.784 15.912 20.8 25.248 29.696 34.144 36.808 41.256\\\">The Federal</text></g><g clip-path=\\\"url(#clip4-20)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 142.4308 511.9578)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 19.16 23.608 25.832 27.656 32.104 36.552 38.68 44.016 48.016\\\">Arbitration Act</text></g><g clip-path=\\\"url(#clip4-20)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 153.1555 502.9031)\\\" x=\\\"0 2.664 5.504 10.392 15.728 21.064 23.904 26.568\\\">(&quot;FAA&quot;).</text></g><clipPath id=\\\"clip4-21\\\"><path d=\\\"M 205 491 L 573 491 L 573 531 L 205 531 L 205 491 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 521.0125)\\\" x=\\\"0 4.888 9.336 11.16\\\">This</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.0101 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 228.9725 521.0125)\\\" x=\\\"0 2.224 4.888 9.336 13.784 17.784 22.232 26.232 28.456 30.28 34.728\\\">transaction</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 268.1522 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 272.1145 521.0125)\\\" x=\\\"0 1.824 6.272 10.272 14.72 16.544 20.544 24.992\\\">involves</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 301.1106 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 305.0729 521.0125)\\\" x=\\\"0 1.824 6.272 8.496 12.944 15.608 19.608 21.832 26.28 28.504\\\">interstate</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.026 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 341.9884 521.0125)\\\" x=\\\"0 4 8.448 15.112 21.776 26.224 28.888 32.888 37.336\\\">commerce.</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 381.5509 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 385.5132 521.0125)\\\" x=\\\"0 4.888 9.336 13.784 17.784\\\">Thus,</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 405.521 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 409.4834 521.0125)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 420.6045 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 424.5668 521.0125)\\\" x=\\\"0 4.888 10.224\\\">FAA</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 440.1254 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 444.0877 521.0125)\\\" x=\\\"0 4.448 8.896 12.896 17.344 20.008 24.456 28.456\\\">governs.</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.7713 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 478.7336 521.0125)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 483.179 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 487.1413 521.0125)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 491.5905 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 495.5528 521.0125)\\\" x=\\\"0 4 8.448 12.896 15.56\\\">court</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 513.338 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 517.3003 521.0125)\\\" x=\\\"0 2.224 4.048 8.496 12.944\\\">finds</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 534.2456 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 538.208 521.0125)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.3291 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 553.2914 521.0125)\\\" x=\\\"0 4.888 10.224\\\">FAA</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 511.9578)\\\" x=\\\"0 4.448 8.896 13.344 17.344 21.792 23.32\\\">doesn&apos;t</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 235.3969 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 237.5853 511.9578)\\\" x=\\\"0 4.448 8.896 13.344 15.168 19.168\\\">apply,</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 258.9798 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 261.1682 511.9578)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 274.5159 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 276.7043 511.9578)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 287.8254 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 290.0138 511.9578)\\\" x=\\\"0 2.224 4.048 8.496 12.944 14.768 19.216\\\">finding</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 313.6818 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 315.8702 511.9578)\\\" x=\\\"0 4 8.448 12.896 14.424\\\">can&apos;t</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 332.5186 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 334.7071 511.9578)\\\" x=\\\"0 4.448\\\">be</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 343.6055 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 345.7939 511.9578)\\\" x=\\\"0 4.448 8.896 13.344 17.792 22.24 24.064 28.512 32.96\\\">appealed,</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.9853 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 383.1737 511.9578)\\\" x=\\\"0 2.224 6.672 11.12\\\">then</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 398.7441 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 400.9325 511.9578)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 412.0536 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 414.242 511.9578)\\\" x=\\\"0 4 6.224 10.672 12.896\\\">state</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 431.5857 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 433.7742 511.9578)\\\" x=\\\"0 1.824 6.272\\\">law</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 445.825 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 448.0134 511.9578)\\\" x=\\\"0 5.776 10.224 14.672 17.336\\\">where</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 469.8024 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 471.9908 511.9578)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.8893 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 487.0777 511.9578)\\\" x=\\\"0 5.776 10.224 12.888\\\">were</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 504.4175 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 506.606 511.9578)\\\" x=\\\"0 5.776 10.224 14.672\\\">when</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 525.731 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 527.9194 511.9578)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 540.8178 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 543.0062 511.9578)\\\" x=\\\"0 4 5.824 10.272 14.72 19.168 23.616\\\">signed,</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 502.9031)\\\" x=\\\"0 4.448 8.896 12.896 17.344 20.008 24.456 28.456\\\">governs.</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 240.5336 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 243.9142 502.9031)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.6993 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 261.0799 502.9031)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 284.6893 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 288.0699 502.9031)\\\" x=\\\"0 6.664 11.112 15.112\\\">must</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 305.4058 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 308.7864 502.9031)\\\" x=\\\"0 4.448 8.896 13.344 15.168\\\">apply</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 327.9582 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 331.3388 502.9031)\\\" x=\\\"0 4 8.448 12.896 16.896 19.12 23.568 28.016 30.24 32.064 36.064\\\">substantive</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.8545 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 375.235 502.9031)\\\" x=\\\"0 1.824 6.272\\\">law</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 387.2858 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 390.6664 502.9031)\\\" x=\\\"0 4 8.448 12.896 16.896 18.72 22.72 24.944 29.392 33.84\\\">consistent</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 426.7328 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 430.1134 502.9031)\\\" x=\\\"0 5.776 7.6 9.824\\\">with</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 444.3868 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 447.7674 502.9031)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 458.8885 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 462.2691 502.9031)\\\" x=\\\"0 4.888 10.224 15.56\\\">FAA.</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 480.0503 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 483.4309 502.9031)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 497.2161 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 500.5966 502.9031)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 524.206 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 527.5866 502.9031)\\\" x=\\\"0 6.664 11.112 15.112\\\">must</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 544.9225 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 548.3031 502.9031)\\\" x=\\\"0 2.224 6.672 8.496 10.32 14.768\\\">follow</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 493.8484)\\\" x=\\\"0 4 6.224 10.672 12.896 17.344 19.568 24.016 28.016 30.144 34.592 36.816 38.944 40.768 42.592 49.256 51.08 53.304 57.752 59.976 61.8 66.248 70.696 72.824 77.272 81.72 86.168 88.296 92.744 95.408 97.232 101.232 103.056 104.88 109.328 113.776 118.224 120.352 124.352 126.176 130.624 132.448 139.112 143.112\\\">statutes of limitation and privilege claims.</text></g><clipPath id=\\\"clip4-22\\\"><path d=\\\"M 35 433 L 130 433 L 130 492 L 35 492 L 35 433 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-22)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 491.1688 L 129.35 491.1688 L 129.35 433.8406 L 35.45 433.8406 L 35.45 491.1688 z \\\"/><path clip-path=\\\"url(#clip4-22)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 489.1688 L 125.25 489.1688 L 125.25 471.0594 L 39.55 471.0594 L 39.55 489.1688 z \\\"/><path clip-path=\\\"url(#clip4-22)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 45.443 489.1688 L 119.443 489.1688 L 119.443 479.1688 L 45.443 479.1688 L 45.443 489.1688 z \\\"/><g clip-path=\\\"url(#clip4-22)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 45.443 481.7937)\\\" x=\\\"0 5.776 10.224 14.672 16.8 19.024 23.472 27.92 30.048 34.496 38.944 41.608 43.832 45.656 50.104 54.104 56.232 58.456 61.12 65.12 67.248 69.472\\\">Can the * D E M O * to</text></g><path clip-path=\\\"url(#clip4-22)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 46.6363 480.1141 L 118.6363 480.1141 L 118.6363 470.1141 L 46.6363 470.1141 L 46.6363 480.1141 z \\\"/><g clip-path=\\\"url(#clip4-22)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 46.6363 472.7391)\\\" x=\\\"0 4 8.448 10.272 14.272 18.72 20.848 26.624 28.448 32.448 36.896 41.344 43.568 48.016 52.016 54.144 56.368 58.192 60.856 64.856 67.08\\\">solve Disputes first?</text></g><clipPath id=\\\"clip4-23\\\"><path d=\\\"M 129 433 L 206 433 L 206 492 L 129 492 L 129 433 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-23)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 159.5461 481.7937)\\\" x=\\\"0 5.336 9.784 13.784\\\">Yes.</text></g><clipPath id=\\\"clip4-24\\\"><path d=\\\"M 205 433 L 573 433 L 573 492 L 205 492 L 205 433 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 481.7937)\\\" x=\\\"0 7.552\\\">We</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 221.85 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 224.092 481.7937)\\\" x=\\\"0 4 8.448\\\">can</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 236.9904 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 239.2324 481.7937)\\\" x=\\\"0 2.224 4.888\\\">try</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 248.1191 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 250.3611 481.7937)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.033 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 259.275 481.7937)\\\" x=\\\"0 4 8.448 10.272 14.272\\\">solve</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 277.9976 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 280.2396 481.7937)\\\" x=\\\"0 5.776 7.6 11.6 16.048 20.496 22.72 27.168\\\">Disputes</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 311.4115 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 313.6535 481.7937)\\\" x=\\\"0 1.824\\\">if</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 317.7004 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 319.9424 481.7937)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 332.8408 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 335.0828 481.7937)\\\" x=\\\"0 4 8.448 10.272\\\">call</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 347.1805 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 349.4224 481.7937)\\\" x=\\\"0 4.448\\\">us</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 357.8717 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 360.1137 481.7937)\\\" x=\\\"0 4.448\\\">at</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 366.7855 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 369.0275 481.7937)\\\" x=\\\"0 2.664 7.112 11.56 16.008\\\">(100)</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 387.7033 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 389.9453 481.7937)\\\" x=\\\"0 4.448 8.896 13.344 16.008 20.456 24.904 29.352 33.8\\\">000-0006.</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 425.9766 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 428.2185 481.7937)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 432.6639 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 434.9058 481.7937)\\\" x=\\\"0 2.224 6.672 8.496\\\">this</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.4019 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 449.6439 481.7937)\\\" x=\\\"0 4.448 8.896 13.344 17.344 21.792 23.32\\\">doesn&apos;t</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 475.1908 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 477.4328 481.7937)\\\" x=\\\"0 4 8.448 10.272 14.272\\\">solve</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 496.1555 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 498.3974 481.7937)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.5185 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 511.7605 481.7937)\\\" x=\\\"0 5.776 7.6 11.6 16.048 20.496 22.72 27.168\\\">Dispute,</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 541.1551 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 543.3971 481.7937)\\\" x=\\\"0 6.664 11.112 12.936\\\">mail</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 558.1588 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 560.4008 481.7937)\\\" x=\\\"0 4.448\\\">us</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 472.7391)\\\" x=\\\"0 5.776 8.44 10.264 12.488 14.712 19.16\\\">written</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.4594 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 235.6405 472.7391)\\\" x=\\\"0 4.448 8.896 11.12 12.944 16.944 21.392\\\">notice,</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.2577 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 261.4388 472.7391)\\\" x=\\\"0 5.776 7.6 9.824 14.272 16.096\\\">within</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.9857 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 284.1668 472.7391)\\\" x=\\\"0 4.448 8.896\\\">100</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 297.5145 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 299.6956 472.7391)\\\" x=\\\"0 4.448 8.896 12.896\\\">days</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 316.594 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 318.7752 472.7391)\\\" x=\\\"0 4.448\\\">of</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 325.447 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 327.6282 472.7391)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.7493 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 340.9304 472.7391)\\\" x=\\\"0 5.776 7.6 11.6 16.048 20.496 22.72\\\">Dispute</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 368.1023 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 370.2834 472.7391)\\\" x=\\\"0 4.448 8.896 11.12 15.568\\\">date.</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.0763 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 390.2575 472.7391)\\\" x=\\\"0 2.224\\\">In</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 396.9293 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 399.1105 472.7391)\\\" x=\\\"0 4 8.448 12.896\\\">your</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 414.673 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 416.8541 472.7391)\\\" x=\\\"0 4.448 8.896 11.12 12.944 16.944 21.392\\\">notice,</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 440.4713 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 442.6524 472.7391)\\\" x=\\\"0 2.224 6.672 8.496\\\">tell</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 452.9727 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 455.1539 472.7391)\\\" x=\\\"0 4.448\\\">us</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 463.6031 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 465.7842 472.7391)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 476.9053 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 479.0864 472.7391)\\\" x=\\\"0 4.448 8.896 11.12 15.568 17.392 19.216\\\">details</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 502.3052 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 504.4863 472.7391)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 517.834 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 520.0151 472.7391)\\\" x=\\\"0 4.448 8.896\\\">how</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 534.6909 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 536.872 472.7391)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.7704 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 551.9515 472.7391)\\\" x=\\\"0 5.776 10.224 14.672\\\">want</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 463.6844)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 216.5219 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 219.4635 463.6844)\\\" x=\\\"0 4 8.448 10.272 14.272\\\">solve</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.1861 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 241.1277 463.6844)\\\" x=\\\"0 1.824 4.048\\\">it.</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.3973 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 250.3389 463.6844)\\\" x=\\\"0 7.552\\\">We</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.3389 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 265.2805 463.6844)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.5305 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 279.4721 463.6844)\\\" x=\\\"0 2.224 4.888\\\">try</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 288.3588 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 291.3004 463.6844)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 297.9723 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 300.9139 463.6844)\\\" x=\\\"0 4 8.448 10.272 14.272\\\">solve</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.6366 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 322.5782 463.6844)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 333.6993 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 336.6409 463.6844)\\\" x=\\\"0 5.776 7.6 11.6 16.048 20.496 22.72 27.168\\\">Dispute.</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 366.0354 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 368.977 463.6844)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 373.4224 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 376.364 463.6844)\\\" x=\\\"0 5.776\\\">we</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 386.5905 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 389.5321 463.6844)\\\" x=\\\"0 6.664 11.112 15.112\\\">make</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 409.0947 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 412.0363 463.6844)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 416.4855 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 419.4271 463.6844)\\\" x=\\\"0 5.776 8.44 10.264 12.488 14.712 19.16\\\">written</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 443.0365 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 445.9781 463.6844)\\\" x=\\\"0 4.448 6.672 8.896 13.344\\\">offer</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 461.9859 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 464.9275 463.6844)\\\" x=\\\"0 2.664 5.504 10.84 15.288 17.512 19.736 21.56 26.008 32.672 37.12 41.568\\\">(&quot;Settlement</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 508.7205 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 511.6621 463.6844)\\\" x=\\\"0 6.224 8.448 10.672 15.12 17.784 20.624 23.288\\\">Offer&quot;),</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 537.1699 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 540.1115 463.6844)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.0099 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 555.9515 463.6844)\\\" x=\\\"0 4 8.448\\\">can</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 454.6297)\\\" x=\\\"0 2.664 7.112 8.936 13.384 17.384\\\">reject</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 229.4594 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 233.7138 454.6297)\\\" x=\\\"0 1.824\\\">it</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 237.7606 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 242.015 454.6297)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 255.3627 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 259.6171 454.6297)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 29.392\\\">arbitrate.</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.2343 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 295.4887 454.6297)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.934 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 304.1884 454.6297)\\\" x=\\\"0 5.776\\\">we</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 314.4149 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 318.6693 454.6297)\\\" x=\\\"0 4.448 8.896 13.344 14.872\\\">don&apos;t</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.767 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 340.0214 454.6297)\\\" x=\\\"0 4 8.448 10.272 14.272\\\">solve</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 358.744 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 362.9984 454.6297)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 374.1195 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 378.3739 454.6297)\\\" x=\\\"0 5.776 7.6 11.6 16.048 20.496 22.72 27.168\\\">Dispute,</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 407.7684 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 412.0228 454.6297)\\\" x=\\\"0 4.448 6.272 8.496 12.944 17.392\\\">either</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 432.0814 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 436.3358 454.6297)\\\" x=\\\"0 4.448 8.896 11.56 13.784\\\">party</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.121 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 458.3754 454.6297)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 473.4887 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 477.7431 454.6297)\\\" x=\\\"0 4 6.224 10.672 13.336\\\">start</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 493.3016 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 497.556 454.6297)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 26.768 31.216 35.664\\\">arbitration.</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 535.4467 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 539.7011 454.6297)\\\" x=\\\"0 4.888\\\">To</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.037 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 553.2914 454.6297)\\\" x=\\\"0 4 6.224 10.672 13.336\\\">start</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 445.575)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 26.768 31.216 35.664\\\">arbitration,</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.7406 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 250.0233 445.575)\\\" x=\\\"0 4 8.448 12.896 15.12 19.568 23.568\\\">contact</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.8162 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 278.0989 445.575)\\\" x=\\\"0 4.448\\\">an</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 286.9973 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 289.28 445.575)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.8893 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 315.172 445.575)\\\" x=\\\"0 4.448\\\">or</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 322.2853 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 324.5679 445.575)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 26.768 31.216\\\">arbitration</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 360.2359 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 362.5185 445.575)\\\" x=\\\"0 4.448 7.112 11.56 16.008\\\">group</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 382.9795 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 385.2621 445.575)\\\" x=\\\"0 1.824 3.648 7.648 9.872 14.32 18.768\\\">listed.</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 406.2543 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 408.5369 445.575)\\\" x=\\\"0 5.776\\\">No</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 418.7635 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 421.0461 445.575)\\\" x=\\\"0 4.448 8.896 11.56 13.784\\\">party</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 438.8313 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 441.1139 445.575)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 452.3639 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 454.6466 445.575)\\\" x=\\\"0 4.448 6.272 10.272 14.272 16.096 20.544 24.544\\\">disclose</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 483.6427 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 485.9253 445.575)\\\" x=\\\"0 4 8.448 10.672 12.896 14.72 19.168 25.832 30.28 34.728\\\">settlement</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 522.8785 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 525.1611 445.575)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456 24.456 28.904 30.728\\\">proposals</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.8955 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 562.1781 445.575)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 436.5203)\\\" x=\\\"0 2.224 6.672 11.12 13.248 18.584 21.248 25.696 27.52 29.744 34.192 36.856 38.984 43.432 47.88 50.544 52.368 56.816 61.264 63.392 67.84 70.504 74.952 76.776 79 81.664 86.112 88.336 90.16 94.608 99.056\\\">the Arbiter during arbitration.</text></g><clipPath id=\\\"clip4-25\\\"><path d=\\\"M 35 412 L 130 412 L 130 434 L 35 434 L 35 412 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-25)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 433.8406 L 129.35 433.8406 L 129.35 412.7313 L 35.45 412.7313 L 35.45 433.8406 z \\\"/><path clip-path=\\\"url(#clip4-25)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 431.8406 L 125.25 431.8406 L 125.25 413.7313 L 39.55 413.7313 L 39.55 431.8406 z \\\"/><path clip-path=\\\"url(#clip4-25)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 40.0543 431.8406 L 127.0543 431.8406 L 127.0543 421.8406 L 40.0543 421.8406 L 40.0543 431.8406 z \\\"/><g clip-path=\\\"url(#clip4-25)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.0543 424.4656)\\\" x=\\\"0 5.776 10.224 16 18.128 22.128 26.576 31.024 35.472 37.296 41.744 43.872 47.872 52.32 56.768 58.896 62.896 67.344 71.792 74.016 78.464 82.464\\\">How should you contact</text></g><path clip-path=\\\"url(#clip4-25)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 75.9508 422.7859 L 88.9508 422.7859 L 88.9508 412.7859 L 75.9508 412.7859 L 75.9508 422.7859 z \\\"/><g clip-path=\\\"url(#clip4-25)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 75.9508 415.4109)\\\" x=\\\"0 4.448 8.448\\\">us?</text></g><clipPath id=\\\"clip4-26\\\"><path d=\\\"M 129 412 L 206 412 L 206 434 L 129 434 L 129 412 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-26)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 153.3273 424.4656)\\\" x=\\\"0 5.336 9.336 11.464 18.128 22.576 24.4 26.224\\\">By mail.</text></g><clipPath id=\\\"clip4-27\\\"><path d=\\\"M 205 412 L 573 412 L 573 434 L 205 434 L 205 412 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 424.4656)\\\" x=\\\"0 5.336 9.784 14.232\\\">Send</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 228.5336 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 231.2172 424.4656)\\\" x=\\\"0 6.664 11.112 12.936\\\">mail</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.9789 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 248.6625 424.4656)\\\" x=\\\"0 2.224 6.672\\\">to:</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.557 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 260.2406 424.4656)\\\" x=\\\"0 5.336 9.784 14.232\\\">Snap</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 278.9242 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 281.6078 424.4656)\\\" x=\\\"0 5.776 10.664\\\">RTO</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 298.4945 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 301.1781 424.4656)\\\" x=\\\"0 4.448 8.896\\\">LLC</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 315.8539 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 318.5375 424.4656)\\\" x=\\\"0 5.336 7.56 9.784 14.232 18.68 20.904 22.728 27.176 31.624\\\">Attention:</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 352.3851 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 355.0687 424.4656)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 19.16 23.608 25.832 27.656 32.104 36.552\\\">Arbitration.</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.8461 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 396.5297 424.4656)\\\" x=\\\"0 5.336 7.56 13.784\\\">P.O.</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 412.5336 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 415.2172 424.4656)\\\" x=\\\"0 5.336 9.784\\\">Box</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 429.0023 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 431.6859 424.4656)\\\" x=\\\"0 4.448 8.896 13.344 17.792 22.24\\\">26561,</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.1547 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 458.8383 424.4656)\\\" x=\\\"0 5.336 9.784 11.608\\\">Salt</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 472.6703 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 475.3539 424.4656)\\\" x=\\\"0 4.448 8.896 12.896\\\">Lake</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 492.7015 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 495.3851 424.4656)\\\" x=\\\"0 5.776 7.6 9.824 13.824\\\">City,</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 511.432 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 514.1156 424.4656)\\\" x=\\\"0 5.776\\\">UT</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 524.7797 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 527.4633 424.4656)\\\" x=\\\"0 4.448 8.896 13.344 17.792 22.24\\\">84126.</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.932 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 554.6156 424.4656)\\\" x=\\\"0 5.336 9.784\\\">You</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 415.4109)\\\" x=\\\"0 4 8.448 12.896 15.024 19.024 23.472 25.296 27.12 29.248 33.696 37.696 39.824 44.272 46.936 49.064 53.512 57.512 61.96 64.088 68.088 72.536 75.2 77.424 79.248 81.472 83.296 87.744 92.192 94.32 100.984 105.432 107.256 109.08 111.208 113.432 117.88 120.008 124.008 128.456 132.904 135.128 136.952 139.616 146.28 148.408 151.072 155.52 159.52 163.968 165.792 170.24 172.464\\\">can call us or use certified mail to confirm receipt.</text></g><clipPath id=\\\"clip4-28\\\"><path d=\\\"M 35 373 L 130 373 L 130 413 L 35 413 L 35 373 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-28)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 412.7313 L 129.35 412.7313 L 129.35 373.5125 L 35.45 373.5125 L 35.45 412.7313 z \\\"/><path clip-path=\\\"url(#clip4-28)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 410.7313 L 125.25 410.7313 L 125.25 392.6219 L 39.55 392.6219 L 39.55 410.7313 z \\\"/><path clip-path=\\\"url(#clip4-28)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 41.9508 410.7313 L 122.9508 410.7313 L 122.9508 400.7313 L 41.9508 400.7313 L 41.9508 410.7313 z \\\"/><g clip-path=\\\"url(#clip4-28)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 41.9508 403.3562)\\\" x=\\\"0 5.776 10.224 14.672 16.8 20.8 27.464 31.912 33.736 35.56 38.224 42.224 44.048 48.496 50.32 56.984 60.984 63.112 67.112 71.56 76.008 78.672\\\">Can small-claims court</text></g><path clip-path=\\\"url(#clip4-28)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 43.3219 401.6766 L 122.3219 401.6766 L 122.3219 391.6766 L 43.3219 391.6766 L 43.3219 401.6766 z \\\"/><g clip-path=\\\"url(#clip4-28)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 43.3219 394.3016)\\\" x=\\\"0 4 8.448 10.272 14.272 18.72 20.848 24.848 29.296 35.96 40.408 42.536 48.312 50.136 54.136 58.584 63.032 65.256 69.704 73.704\\\">solve s* D E M O *s?</text></g><clipPath id=\\\"clip4-29\\\"><path d=\\\"M 129 373 L 206 373 L 206 413 L 129 413 L 129 373 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-29)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 159.5461 403.3562)\\\" x=\\\"0 5.336 9.784 13.784\\\">Yes.</text></g><clipPath id=\\\"clip4-30\\\"><path d=\\\"M 205 373 L 573 373 L 573 413 L 205 413 L 205 373 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 403.3562)\\\" x=\\\"0 5.3359 9.7852 13.7852\\\">Each</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 228.0844 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 229.9094 403.3562)\\\" x=\\\"0 4.4492 8.8984 11.5625 13.7851\\\">party</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.6945 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 249.5195 403.3562)\\\" x=\\\"0 4.4492 8.8984\\\">has</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.418 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 264.243 403.3562)\\\" x=\\\"0 2.2227 6.6719\\\">the</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.3641 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 277.1891 403.3562)\\\" x=\\\"0 2.6641 4.4883 8.9375 13.3867\\\">right</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 292.7984 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 294.6234 403.3562)\\\" x=\\\"0 2.2227\\\">to</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 301.2953 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 303.1203 403.3562)\\\" x=\\\"0 4.4492 7.1133 11.5625 13.3867 15.6094 18.2734 22.7227 24.9453 29.3945\\\">arbitrate,</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 334.7375 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 336.5625 403.3562)\\\" x=\\\"0 4.4492\\\">or</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 343.6758 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 345.5008 403.3562)\\\" x=\\\"0 2.2227\\\">to</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 352.1727 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 353.9976 403.3562)\\\" x=\\\"0 4.4492\\\">go</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 362.8961 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 364.7211 403.3562)\\\" x=\\\"0 2.2227\\\">to</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.393 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 373.218 403.3562)\\\" x=\\\"0 4 10.6641 15.1133 16.9375 18.7617 21.4258 25.4258 27.25 31.6992 33.5234 40.1875\\\">small-claims</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 417.4055 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 419.2305 403.3562)\\\" x=\\\"0 4 8.4492 12.8984 15.5625\\\">court</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 437.0156 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 438.8406 403.3562)\\\" x=\\\"0 1.8242\\\">if</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 442.8875 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 444.7125 403.3562)\\\" x=\\\"0 2.2227 6.6719\\\">the</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 455.8336 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 457.6586 403.3562)\\\" x=\\\"0 4 10.6641 15.1133 16.9375 18.7617 21.4258 25.4258 27.25 31.6992 33.5234 40.1875\\\">small-claims</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.8461 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 503.6711 403.3562)\\\" x=\\\"0 4 8.4492 12.8984 15.5625\\\">court</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.4562 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 523.2812 403.3562)\\\" x=\\\"0 4.4492 8.8984\\\">has</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 536.1797 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 538.0047 403.3562)\\\" x=\\\"0 2.2227 6.6719\\\">the</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 394.3016)\\\" x=\\\"0 4.4492 8.8984 14.6758 19.125\\\">power</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.639 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 233.464 394.3016)\\\" x=\\\"0 2.2227\\\">to</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 240.1359 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 241.9609 394.3016)\\\" x=\\\"0 4.4492 8.8984 13.3477\\\">hear</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.9726 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 260.0976 394.3016)\\\" x=\\\"0 2.2226 6.6719\\\">the</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 271.2187 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 273.3437 394.3016)\\\" x=\\\"0 5.7773 7.6016 11.6016 16.0508 20.5 22.7227 27.1719\\\">Dispute.</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.7383 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 304.8633 394.3016)\\\" x=\\\"0 5.3359 8 12.4492 14.2734 16.4961 19.1602 23.6094 25.832 27.6562 32.1055\\\">Arbitration</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 341.418 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 343.543 394.3016)\\\" x=\\\"0 5.7773 7.6016 9.4258\\\">will</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 354.793 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 356.918 394.3016)\\\" x=\\\"0 4 8.4492 10.2734 14.2734\\\">solve</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.6406 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 377.7656 394.3016)\\\" x=\\\"0 4.4492 6.2734\\\">all</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 385.8633 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 387.9883 394.3016)\\\" x=\\\"0 5.7774 7.6016 11.6016 16.0508 20.5 22.7227 27.1719\\\">Disputes</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.1601 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 421.2851 394.3016)\\\" x=\\\"0 2.2227 6.6719 11.1211\\\">that</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.6289 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 436.7539 394.3016)\\\" x=\\\"0 2.2226 6.6719\\\">the</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.875 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 450 394.3016)\\\" x=\\\"0 4 10.6641 15.1133 16.9375 18.7617 21.4258 25.4258 27.25 31.6992 33.5234 40.1875\\\">small-claims</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 494.1875 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 496.3125 394.3016)\\\" x=\\\"0 4 8.4492 12.8984 15.5625\\\">court</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 514.0976 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 516.2226 394.3016)\\\" x=\\\"0 4.4492 8.8984 13.3477\\\">does</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 533.5703 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 535.6953 394.3016)\\\" x=\\\"0 4.4492 8.8984\\\">not</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 546.8164 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 548.9414 394.3016)\\\" x=\\\"0 4.4492 8.8984 12.8984\\\">have</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 385.2469)\\\" x=\\\"0 2.2227 6.6719\\\">the</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 220.9711 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 223.0961 385.2469)\\\" x=\\\"0 4.4492 8.8984 14.6758 19.125\\\">power</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 244.8852 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 247.0101 385.2469)\\\" x=\\\"0 2.2227\\\">to</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 253.682 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 255.807 385.2469)\\\" x=\\\"0 4.4492 8.8984 13.3477 16.0117\\\">hear.</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 274.0414 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 276.1664 385.2469)\\\" x=\\\"0 2.2226\\\">If</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.6117 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 282.7367 385.2469)\\\" x=\\\"0 2.2227 6.6719 11.1211 13.7852\\\">there</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 300.9711 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 303.0961 385.2469)\\\" x=\\\"0 1.8242\\\">is</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.9203 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 311.0453 385.2469)\\\" x=\\\"0 4.4492\\\">an</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.9437 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 322.0687 385.2469)\\\" x=\\\"0 4.4492 8.8984 13.3477 17.7969 22.2461\\\">appeal</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 346.139 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 348.264 385.2469)\\\" x=\\\"0 2.2227 4.8867 9.3359\\\">from</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 364.264 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 366.389 385.2469)\\\" x=\\\"0 4 10.6641 15.1133 16.9375 18.7617 21.4258 25.4258 27.25 31.6992 33.5234 40.1875\\\">small-claims</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 410.5765 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 412.7015 385.2469)\\\" x=\\\"0 4 8.4492 12.8984 15.5625 17.7852\\\">court,</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 432.7094 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 434.8344 385.2469)\\\" x=\\\"0 4.4492\\\">or</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 441.9477 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 444.0727 385.2469)\\\" x=\\\"0 1.8242\\\">if</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 448.1195 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 450.2445 385.2469)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.6937 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 456.8187 385.2469)\\\" x=\\\"0 5.7773 7.6016 11.6016 16.0508 20.5 22.7227\\\">Dispute</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 483.9906 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 486.1156 385.2469)\\\" x=\\\"0 4 8.4492 12.8984 17.3476 21.7969 26.2461\\\">changes</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 516.3617 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 518.4867 385.2469)\\\" x=\\\"0 4\\\">so</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.9359 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 529.0609 385.2469)\\\" x=\\\"0 2.2227 6.6719 11.1211\\\">that</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 542.4047 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 544.5297 385.2469)\\\" x=\\\"0 2.2227 6.6719\\\">the</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 376.1922)\\\" x=\\\"0 4 10.6641 15.1133 16.9375 18.7617 21.4258 25.4258 27.25 31.6992 33.5234 40.1875\\\">small-claims</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 254.0375 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 256.1625 376.1922)\\\" x=\\\"0 4 8.4492 12.8984 15.5625\\\">court</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 273.9477 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 276.0727 376.1922)\\\" x=\\\"0 1.8242 6.2734 10.2734 14.7226\\\">loses</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 294.7953 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 296.9203 376.1922)\\\" x=\\\"0 2.2227 6.6719\\\">the</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.0414 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 310.1664 376.1922)\\\" x=\\\"0 4.4492 8.8984 14.6758 19.125\\\">power</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 331.9555 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 333.7805 376.1922)\\\" x=\\\"0 2.2227\\\">to</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 340.4523 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 342.2773 376.1922)\\\" x=\\\"0 4.4492 8.8984 13.3477\\\">hear</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 358.289 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 360.1141 376.1922)\\\" x=\\\"0 1.8242 4.0469\\\">it,</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 366.3836 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 368.2086 376.1922)\\\" x=\\\"0 2.2226 6.6719 11.1211\\\">then</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.7789 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 385.6039 376.1922)\\\" x=\\\"0 2.2227 6.6719\\\">the</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 396.725 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 398.55 376.1922)\\\" x=\\\"0 5.7773 7.6016 11.6016 16.0508 20.5 22.7227\\\">Dispute</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 425.7219 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 427.5469 376.1922)\\\" x=\\\"0 5.7773 7.6016 9.4258\\\">will</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 438.7969 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 440.6219 376.1922)\\\" x=\\\"0 4.4492 8.8984 10.7227\\\">only</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 455.3445 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 457.1695 376.1922)\\\" x=\\\"0 4.4492\\\">be</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.068 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 467.893 376.1922)\\\" x=\\\"0 4.4492 8.8984 13.3477 16.0117\\\">heard</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 488.3539 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 490.1789 376.1922)\\\" x=\\\"0 4.4492\\\">by</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 498.6281 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 500.4531 376.1922)\\\" x=\\\"0 4.4492\\\">an</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.3516 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 511.1766 376.1922)\\\" x=\\\"0 5.3359 8 12.4492 14.2734 16.4961 20.9453 23.6094\\\">Arbiter.</text></g><clipPath id=\\\"clip4-31\\\"><path d=\\\"M 35 343 L 130 343 L 130 374 L 35 374 L 35 343 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-31)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 373.5125 L 129.35 373.5125 L 129.35 343.3484 L 35.45 343.3484 L 35.45 373.5125 z \\\"/><path clip-path=\\\"url(#clip4-31)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 371.5125 L 125.25 371.5125 L 125.25 362.4578 L 39.55 362.4578 L 39.55 371.5125 z \\\"/><path clip-path=\\\"url(#clip4-31)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 41.5875 371.5125 L 123.5875 371.5125 L 123.5875 361.5125 L 41.5875 361.5125 L 41.5875 371.5125 z \\\"/><g clip-path=\\\"url(#clip4-31)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 41.5875 364.1375)\\\" x=\\\"0 5.776 10.224 12.352 16.8 19.024 23.472 27.92 30.584 32.712 37.16 41.608 43.832 45.656 50.104 54.552 58.552 60.68 65.128 69.128 70.952 74.952 77.176\\\">Do other options exist?</text></g><clipPath id=\\\"clip4-32\\\"><path d=\\\"M 129 343 L 206 343 L 206 374 L 129 374 L 129 343 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-32)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 159.5461 364.1375)\\\" x=\\\"0 5.336 9.784 13.784\\\">Yes.</text></g><clipPath id=\\\"clip4-33\\\"><path d=\\\"M 205 343 L 573 343 L 573 374 L 205 374 L 205 343 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 364.1375)\\\" x=\\\"0 5.336 9.784 12.008\\\">Both</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 226.307 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 228.8021 364.1375)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056\\\">parties</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 252.8607 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 255.3557 364.1375)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 270.469 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 272.964 364.1375)\\\" x=\\\"0 4.448 8.448\\\">use</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 285.8625 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 288.3575 364.1375)\\\" x=\\\"0 1.824 6.272 12.048 14.272 18.72\\\">lawful</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.9044 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 311.3995 364.1375)\\\" x=\\\"0 4 8.448 10.272 12.496 15.16 19.608 24.056 25.88\\\">self-help</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 341.7315 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 344.2265 364.1375)\\\" x=\\\"0 2.664 7.112 13.776 18.224 22.672 24.496 28.944 32.944\\\">remedies.</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 379.3984 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 381.8935 364.1375)\\\" x=\\\"0 4.888 9.336 11.16\\\">This</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 397.0536 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 399.5487 364.1375)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44\\\">includes</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 428.994 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 431.489 364.1375)\\\" x=\\\"0 4 8.448 10.672 13.336 17.784 20.008\\\">set-off</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 453.7195 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 456.2146 364.1375)\\\" x=\\\"0 4.448\\\">or</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 463.3279 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 465.8229 364.1375)\\\" x=\\\"0 2.664 7.112 11.56 16.008 20.008 24.008 28.456 32.456 36.456 38.28 42.728\\\">repossession</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 513.0065 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 515.5015 364.1375)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 528.8492 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 531.3443 364.1375)\\\" x=\\\"0 4 8.448 10.272\\\">sale</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 546.0669 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 548.562 364.1375)\\\" x=\\\"0 4.448\\\">of</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 555.2339 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 557.7289 364.1375)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 355.0828)\\\" x=\\\"0 5.336 8 12.448 16.896 21.344 24.008 26.232 30.232\\\">Property.</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 242.307 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 245.9017 355.0828)\\\" x=\\\"0 5.336 9.784 12.008\\\">Both</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.3587 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 265.9534 355.0828)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056\\\">parties</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.0119 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 293.6066 355.0828)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.7199 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 312.3145 355.0828)\\\" x=\\\"0 4 8.448 12.896\\\">seek</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.213 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 332.8076 355.0828)\\\" x=\\\"0 2.664 7.112 13.776 18.224 22.672 24.496 28.944\\\">remedies</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 365.7568 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 369.3515 355.0828)\\\" x=\\\"0 5.776 10.224 12.048 16.048\\\">which</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 389.8515 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 393.4461 355.0828)\\\" x=\\\"0 4.448 8.896 13.344 14.872\\\">don&apos;t</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 410.5438 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 414.1384 355.0828)\\\" x=\\\"0 4 5.824 10.272 12.096\\\">claim</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 432.9002 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 436.4948 355.0828)\\\" x=\\\"0 6.664 11.112 15.56 20.008\\\">money</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 460.5065 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 464.1012 355.0828)\\\" x=\\\"0 4.448 8.896 15.56 20.008 24.456 28.904 32.904\\\">damages.</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.234 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 502.8287 355.0828)\\\" x=\\\"0 4.888 9.336 11.16\\\">This</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 517.9888 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 521.5835 355.0828)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44\\\">includes</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.0288 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 554.6234 355.0828)\\\" x=\\\"0 4.448 7.112 11.56\\\">pre-</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 346.0281)\\\" x=\\\"0 1.824 6.272 10.72 15.168 21.832 26.28 30.728 32.952 35.08 39.08 43.528 45.352 49.352 53.8 56.464 60.912 63.136 65.264 67.088 71.536 73.36 77.808 82.256 86.256 88.48 90.304 94.752 99.2 103.2 105.424 107.552 112 114.664 116.792 121.24 125.688 130.136 131.96 134.184 138.632 143.08 144.904 149.352 151.48 154.144 158.592 160.416 162.24 166.688 168.912\\\">judgment seizure, injunctions, or equitable relief.</text></g><clipPath id=\\\"clip4-34\\\"><path d=\\\"M 35 295 L 130 295 L 130 344 L 35 344 L 35 295 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-34)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 343.3484 L 129.35 343.3484 L 129.35 295.075 L 35.45 295.075 L 35.45 343.3484 z \\\"/><path clip-path=\\\"url(#clip4-34)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 341.3484 L 125.25 341.3484 L 125.25 323.2391 L 39.55 323.2391 L 39.55 341.3484 z \\\"/><path clip-path=\\\"url(#clip4-34)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 55.0406 341.3484 L 110.0406 341.3484 L 110.0406 331.3484 L 55.0406 331.3484 L 55.0406 341.3484 z \\\"/><g clip-path=\\\"url(#clip4-34)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 55.0406 333.9734)\\\" x=\\\"0 7.552 9.376 11.2 13.024 15.152 17.376 21.824 23.648 27.648 29.776 35.552 37.376 41.824 46.272 50.272\\\">Will this Clause</text></g><path clip-path=\\\"url(#clip4-34)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 47.3375 332.2938 L 118.3375 332.2938 L 118.3375 322.2938 L 47.3375 322.2938 L 47.3375 332.2938 z \\\"/><g clip-path=\\\"url(#clip4-34)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.3375 324.9187)\\\" x=\\\"0 4 8.448 12.896 15.12 16.944 21.392 25.84 30.288 32.416 34.64 39.088 41.216 45.664 50.112 54.112 58.56 61.224 65.672\\\">continue to govern?</text></g><clipPath id=\\\"clip4-35\\\"><path d=\\\"M 129 295 L 206 295 L 206 344 L 129 344 L 129 295 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-35)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.8976 333.9734)\\\" x=\\\"0 5.336 9.784 13.784 16.008 18.136 22.584 27.032 28.856 33.304 37.304\\\">Yes, unless</text></g><g clip-path=\\\"url(#clip4-35)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 135.7785 324.9187)\\\" x=\\\"0 4.448 6.672 11.12 15.568 18.232 24.008 25.832 29.832 34.28 36.408 40.856 45.304 47.968 52.416 56.864 61.312\\\">otherwise agreed.</text></g><clipPath id=\\\"clip4-36\\\"><path d=\\\"M 205 295 L 573 295 L 573 344 L 205 344 L 205 295 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 333.9734)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 223.6351 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 227.574 333.9734)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496\\\">Clause</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 252.5233 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 256.4622 333.9734)\\\" x=\\\"0 4 6.224 10.672 14.672\\\">stays</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.134 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 279.0729 333.9734)\\\" x=\\\"0 4.448 6.672 8.896 13.344 17.344 19.568 21.392 25.392 29.84\\\">effective,</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 311.1354 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 315.0743 333.9734)\\\" x=\\\"0 4.448 8.896 10.72 15.168 19.168\\\">unless</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.2462 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 342.1851 333.9734)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 353.3062 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 357.2451 333.9734)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056\\\">parties</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 381.3037 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 385.2426 333.9734)\\\" x=\\\"0 4 5.824 10.272\\\">sign</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 399.9652 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 403.9041 333.9734)\\\" x=\\\"0 4.448\\\">an</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 412.8026 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 416.7415 333.9734)\\\" x=\\\"0 4.448 8.896 11.56 16.008 20.456 27.12 31.568 36.016\\\">agreement</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.9875 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 458.9264 333.9734)\\\" x=\\\"0 4 6.224 10.672 12.896 14.72 19.168\\\">stating</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 482.5436 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 486.4825 333.9734)\\\" x=\\\"0 1.824\\\">it</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 490.5294 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 494.4683 333.9734)\\\" x=\\\"0 4.448 8.896 13.344 17.344 21.792 23.32 25.544\\\">doesn&apos;t.</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 522.2378 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 526.1767 333.9734)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 539.9619 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 543.9008 333.9734)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496\\\">Clause</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 324.9187)\\\" x=\\\"0 4.448 8.896 12.896 17.344 20.008 24.456\\\">governs</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.3109 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 241.2057 324.9187)\\\" x=\\\"0 1.824\\\">if</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.2526 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 248.1473 324.9187)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 261.0458 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 263.9405 324.9187)\\\" x=\\\"0 2.664 7.112 11.112 15.112 16.936 21.384\\\">rescind</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 289.7765 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 292.6712 324.9187)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 303.7923 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 306.6871 324.9187)\\\" x=\\\"0 2.224 4.888 9.336 13.784 17.784 22.232 26.232 28.456 30.28 34.728 39.176\\\">transaction.</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.0894 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 350.9842 324.9187)\\\" x=\\\"0 2.224\\\">It</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.4295 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 358.3243 324.9187)\\\" x=\\\"0 4.448 8.896 12.896 17.344 20.008 24.456\\\">governs</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 386.7852 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 389.68 324.9187)\\\" x=\\\"0 1.824\\\">if</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.7268 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 396.6216 324.9187)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 409.52 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 412.4148 324.9187)\\\" x=\\\"0 4.448 8.896 11.12 15.568 20.016 21.84 24.064\\\">default,</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 438.7038 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 441.5986 324.9187)\\\" x=\\\"0 2.664 7.112 11.56 16.008 21.784\\\">renew,</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 465.6103 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 468.5051 324.9187)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456 24.456\\\">prepay,</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 495.1887 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 498.0834 324.9187)\\\" x=\\\"0 4.448\\\">or</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 505.1967 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 508.0915 324.9187)\\\" x=\\\"0 4.448 8.896 12.896\\\">pay.</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 523.2126 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 526.1073 324.9187)\\\" x=\\\"0 2.224\\\">It</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 530.5527 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 533.4474 324.9187)\\\" x=\\\"0 4.448 8.896 12.896 17.344 20.008 24.456\\\">governs</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 561.9084 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 564.8031 324.9187)\\\" x=\\\"0 1.824\\\">if</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 315.8641)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 222.7484 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 227.0199 315.8641)\\\" x=\\\"0 2.224 6.672 9.336 16 17.824 22.272 26.72 28.944 33.392\\\">terminate,</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.6371 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 266.9086 315.8641)\\\" x=\\\"0 1.824\\\">if</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 270.9555 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 275.2269 315.8641)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 288.1254 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 292.3969 315.8641)\\\" x=\\\"0 2.664 7.112 8.936 13.384 17.384 19.608 24.056 26.28 30.728\\\">reinstate,</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 325.35 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 329.6215 315.8641)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 342.9691 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 347.2406 315.8641)\\\" x=\\\"0 1.824\\\">if</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.2875 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 355.559 315.8641)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 368.4574 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 372.7289 315.8641)\\\" x=\\\"0 2.664 7.112 9.336 13.784 16.448\\\">return</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.6273 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 397.8988 315.8641)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 409.0199 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 413.2914 315.8641)\\\" x=\\\"0 5.336 8 12.448 16.896 21.344 24.008 26.232 30.232\\\">Property.</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 445.7484 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 450.0199 315.8641)\\\" x=\\\"0 2.224\\\">It</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.4652 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 458.7367 315.8641)\\\" x=\\\"0 4.448 8.896 12.896 17.344 20.008 24.456\\\">governs</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 487.1977 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 491.4691 315.8641)\\\" x=\\\"0 1.824\\\">if</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 495.516 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 499.7875 315.8641)\\\" x=\\\"0 4 8.448 12.896\\\">your</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 515.35 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 519.6215 315.8641)\\\" x=\\\"0 5.336 9.784 12.448 16.896 21.344 28.008 32.456 36.904\\\">Agreement</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 558.7543 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 563.0258 315.8641)\\\" x=\\\"0 1.824\\\">is</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 306.8094)\\\" x=\\\"0 1.824 8.488 12.936 17.384 21.384 23.608 28.056\\\">impacted</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 242.3578 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 248.4078 306.8094)\\\" x=\\\"0 4.448\\\">by</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.857 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 262.907 306.8094)\\\" x=\\\"0 4.448 8.896 13.344 17.344 20.008 24.456 28.904 31.128 35.128 39.128\\\">bankruptcy.</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 304.2625 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 310.3125 306.8094)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 324.0976 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 330.1477 306.8094)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496\\\">Clause</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.0969 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 361.1469 306.8094)\\\" x=\\\"0 2.664 7.112 13.776 18.224 20.048 24.496\\\">remains</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 389.6469 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 395.6969 306.8094)\\\" x=\\\"0 4.448 6.672 8.896 13.344 17.344 19.568 21.392 25.392 29.84\\\">effective,</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 427.7594 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 433.8094 306.8094)\\\" x=\\\"0 4.448 8.896 12.896 17.344 19.168 21.392\\\">despite</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 459.6531 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 465.7031 306.8094)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 470.1523 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 476.2023 306.8094)\\\" x=\\\"0 2.224 4.888 9.336 13.784 17.784 22.232 26.232 28.456 30.28 34.728 39.176 40.704\\\">transaction&apos;s</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 520.9094 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 526.9594 306.8094)\\\" x=\\\"0 2.224 6.672 9.336 16 17.824 22.272 26.72 28.944 30.768 35.216 39.664\\\">termination,</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 297.7547)\\\" x=\\\"0 4.448 11.112 15.56 20.008 24.456 31.12 35.568 40.016 42.24 44.464 46.592 51.04 55.04 59.488 61.312 63.976 68.424 70.648 72.472 76.92 81.368 83.592 85.72 90.168 92.832 94.96 99.408 103.856 106.52 108.744 113.192 115.856 122.52 126.968 131.416 135.416 139.864\\\">amendment, expiration, or performance.</text></g><clipPath id=\\\"clip4-37\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 770.2 L 129.85 770.2 L 129.85 769.2 L 34.95 769.2 L 34.95 770.2 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 769.2 L 35.95 769.2 L 35.95 749.0906 L 34.95 749.0906 L 34.95 769.2 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 770.2 L 206.25 770.2 L 206.25 769.2 L 129.85 769.2 L 129.85 770.2 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 769.2 L 129.85 769.2 L 129.85 749.0906 L 128.85 749.0906 L 128.85 769.2 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 770.2 L 573.45 770.2 L 573.45 769.2 L 206.25 769.2 L 206.25 770.2 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 769.2 L 573.45 769.2 L 573.45 749.0906 L 572.45 749.0906 L 572.45 769.2 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 769.2 L 206.25 769.2 L 206.25 749.0906 L 205.25 749.0906 L 205.25 769.2 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 749.0906 L 129.85 749.0906 L 129.85 748.0906 L 34.95 748.0906 L 34.95 749.0906 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 748.0906 L 35.95 748.0906 L 35.95 727.9813 L 34.95 727.9813 L 34.95 748.0906 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 749.0906 L 206.25 749.0906 L 206.25 748.0906 L 129.85 748.0906 L 129.85 749.0906 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 748.0906 L 129.85 748.0906 L 129.85 727.9813 L 128.85 727.9813 L 128.85 748.0906 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 749.0906 L 573.45 749.0906 L 573.45 748.0906 L 206.25 748.0906 L 206.25 749.0906 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 748.0906 L 573.45 748.0906 L 573.45 727.9813 L 572.45 727.9813 L 572.45 748.0906 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 748.0906 L 206.25 748.0906 L 206.25 727.9813 L 205.25 727.9813 L 205.25 748.0906 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 727.9813 L 129.85 727.9813 L 129.85 726.9813 L 34.95 726.9813 L 34.95 727.9813 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 726.9813 L 35.95 726.9813 L 35.95 706.8719 L 34.95 706.8719 L 34.95 726.9813 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 727.9813 L 206.25 727.9813 L 206.25 726.9813 L 129.85 726.9813 L 129.85 727.9813 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 726.9813 L 129.85 726.9813 L 129.85 706.8719 L 128.85 706.8719 L 128.85 726.9813 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 727.9813 L 573.45 727.9813 L 573.45 726.9813 L 206.25 726.9813 L 206.25 727.9813 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 726.9813 L 573.45 726.9813 L 573.45 706.8719 L 572.45 706.8719 L 572.45 726.9813 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 726.9813 L 206.25 726.9813 L 206.25 706.8719 L 205.25 706.8719 L 205.25 726.9813 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 706.8719 L 129.85 706.8719 L 129.85 705.8719 L 34.95 705.8719 L 34.95 706.8719 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 705.8719 L 35.95 705.8719 L 35.95 631.4344 L 34.95 631.4344 L 34.95 705.8719 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 706.8719 L 206.25 706.8719 L 206.25 705.8719 L 129.85 705.8719 L 129.85 706.8719 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 705.8719 L 129.85 705.8719 L 129.85 631.4344 L 128.85 631.4344 L 128.85 705.8719 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 706.8719 L 573.45 706.8719 L 573.45 705.8719 L 206.25 705.8719 L 206.25 706.8719 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 705.8719 L 573.45 705.8719 L 573.45 631.4344 L 572.45 631.4344 L 572.45 705.8719 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 705.8719 L 206.25 705.8719 L 206.25 631.4344 L 205.25 631.4344 L 205.25 705.8719 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 631.4344 L 129.85 631.4344 L 129.85 630.4344 L 34.95 630.4344 L 34.95 631.4344 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 630.4344 L 35.95 630.4344 L 35.95 579.1609 L 34.95 579.1609 L 34.95 630.4344 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 631.4344 L 206.25 631.4344 L 206.25 630.4344 L 129.85 630.4344 L 129.85 631.4344 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 630.4344 L 129.85 630.4344 L 129.85 579.1609 L 128.85 579.1609 L 128.85 630.4344 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 631.4344 L 573.45 631.4344 L 573.45 630.4344 L 206.25 630.4344 L 206.25 631.4344 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 630.4344 L 573.45 630.4344 L 573.45 579.1609 L 572.45 579.1609 L 572.45 630.4344 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 630.4344 L 206.25 630.4344 L 206.25 579.1609 L 205.25 579.1609 L 205.25 630.4344 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 579.1609 L 129.85 579.1609 L 129.85 578.1609 L 34.95 578.1609 L 34.95 579.1609 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 578.1609 L 35.95 578.1609 L 35.95 530.8875 L 34.95 530.8875 L 34.95 578.1609 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 579.1609 L 206.25 579.1609 L 206.25 578.1609 L 129.85 578.1609 L 129.85 579.1609 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 578.1609 L 129.85 578.1609 L 129.85 530.8875 L 128.85 530.8875 L 128.85 578.1609 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 579.1609 L 573.45 579.1609 L 573.45 578.1609 L 206.25 578.1609 L 206.25 579.1609 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 578.1609 L 573.45 578.1609 L 573.45 530.8875 L 572.45 530.8875 L 572.45 578.1609 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 578.1609 L 206.25 578.1609 L 206.25 530.8875 L 205.25 530.8875 L 205.25 578.1609 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 530.8875 L 129.85 530.8875 L 129.85 529.8875 L 34.95 529.8875 L 34.95 530.8875 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 529.8875 L 35.95 529.8875 L 35.95 491.6688 L 34.95 491.6688 L 34.95 529.8875 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 530.8875 L 206.25 530.8875 L 206.25 529.8875 L 129.85 529.8875 L 129.85 530.8875 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 529.8875 L 129.85 529.8875 L 129.85 491.6688 L 128.85 491.6688 L 128.85 529.8875 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 530.8875 L 573.45 530.8875 L 573.45 529.8875 L 206.25 529.8875 L 206.25 530.8875 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 529.8875 L 573.45 529.8875 L 573.45 491.6688 L 572.45 491.6688 L 572.45 529.8875 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 529.8875 L 206.25 529.8875 L 206.25 491.6688 L 205.25 491.6688 L 205.25 529.8875 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 491.6688 L 129.85 491.6688 L 129.85 490.6688 L 34.95 490.6688 L 34.95 491.6688 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 490.6688 L 35.95 490.6688 L 35.95 434.3406 L 34.95 434.3406 L 34.95 490.6688 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 491.6688 L 206.25 491.6688 L 206.25 490.6688 L 129.85 490.6688 L 129.85 491.6688 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 490.6688 L 129.85 490.6688 L 129.85 434.3406 L 128.85 434.3406 L 128.85 490.6688 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 491.6688 L 573.45 491.6688 L 573.45 490.6688 L 206.25 490.6688 L 206.25 491.6688 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 490.6688 L 573.45 490.6688 L 573.45 434.3406 L 572.45 434.3406 L 572.45 490.6688 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 490.6688 L 206.25 490.6688 L 206.25 434.3406 L 205.25 434.3406 L 205.25 490.6688 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 434.3406 L 129.85 434.3406 L 129.85 433.3406 L 34.95 433.3406 L 34.95 434.3406 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 433.3406 L 35.95 433.3406 L 35.95 413.2313 L 34.95 413.2313 L 34.95 433.3406 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 434.3406 L 206.25 434.3406 L 206.25 433.3406 L 129.85 433.3406 L 129.85 434.3406 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 433.3406 L 129.85 433.3406 L 129.85 413.2313 L 128.85 413.2313 L 128.85 433.3406 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 434.3406 L 573.45 434.3406 L 573.45 433.3406 L 206.25 433.3406 L 206.25 434.3406 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 433.3406 L 573.45 433.3406 L 573.45 413.2313 L 572.45 413.2313 L 572.45 433.3406 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 433.3406 L 206.25 433.3406 L 206.25 413.2313 L 205.25 413.2313 L 205.25 433.3406 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 413.2313 L 129.85 413.2313 L 129.85 412.2313 L 34.95 412.2313 L 34.95 413.2313 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 412.2313 L 35.95 412.2313 L 35.95 374.0125 L 34.95 374.0125 L 34.95 412.2313 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 413.2313 L 206.25 413.2313 L 206.25 412.2313 L 129.85 412.2313 L 129.85 413.2313 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 412.2313 L 129.85 412.2313 L 129.85 374.0125 L 128.85 374.0125 L 128.85 412.2313 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 413.2313 L 573.45 413.2313 L 573.45 412.2313 L 206.25 412.2313 L 206.25 413.2313 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 412.2313 L 573.45 412.2313 L 573.45 374.0125 L 572.45 374.0125 L 572.45 412.2313 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 412.2313 L 206.25 412.2313 L 206.25 374.0125 L 205.25 374.0125 L 205.25 412.2313 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 374.0125 L 129.85 374.0125 L 129.85 373.0125 L 34.95 373.0125 L 34.95 374.0125 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 373.0125 L 35.95 373.0125 L 35.95 343.8484 L 34.95 343.8484 L 34.95 373.0125 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 374.0125 L 206.25 374.0125 L 206.25 373.0125 L 129.85 373.0125 L 129.85 374.0125 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 373.0125 L 129.85 373.0125 L 129.85 343.8484 L 128.85 343.8484 L 128.85 373.0125 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 374.0125 L 573.45 374.0125 L 573.45 373.0125 L 206.25 373.0125 L 206.25 374.0125 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 373.0125 L 573.45 373.0125 L 573.45 343.8484 L 572.45 343.8484 L 572.45 373.0125 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 373.0125 L 206.25 373.0125 L 206.25 343.8484 L 205.25 343.8484 L 205.25 373.0125 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 343.8484 L 129.85 343.8484 L 129.85 342.8484 L 34.95 342.8484 L 34.95 343.8484 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 295.575 L 129.85 295.575 L 129.85 294.575 L 34.95 294.575 L 34.95 295.575 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 342.8484 L 35.95 342.8484 L 35.95 295.575 L 34.95 295.575 L 34.95 342.8484 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 343.8484 L 206.25 343.8484 L 206.25 342.8484 L 129.85 342.8484 L 129.85 343.8484 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 295.575 L 206.25 295.575 L 206.25 294.575 L 129.85 294.575 L 129.85 295.575 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 342.8484 L 129.85 342.8484 L 129.85 295.575 L 128.85 295.575 L 128.85 342.8484 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 343.8484 L 573.45 343.8484 L 573.45 342.8484 L 206.25 342.8484 L 206.25 343.8484 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 295.575 L 573.45 295.575 L 573.45 294.575 L 206.25 294.575 L 206.25 295.575 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 342.8484 L 573.45 342.8484 L 573.45 295.575 L 572.45 295.575 L 572.45 342.8484 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 342.8484 L 206.25 342.8484 L 206.25 295.575 L 205.25 295.575 L 205.25 342.8484 z \\\"/><g clip-path=\\\"url(#clip4-37)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 286.1385 282.8562)\\\" x=\\\"0 6.67 10 15.56 20.56 26.12 31.12\\\">Process</text></g><clipPath id=\\\"clip4-38\\\"><path d=\\\"M 35 214 L 128 214 L 128 272 L 35 272 L 35 214 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-38)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.2 271.652 L 127.6 271.652 L 127.6 214.3238 L 35.2 214.3238 L 35.2 271.652 z \\\"/><path clip-path=\\\"url(#clip4-38)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.3 269.652 L 123.5 269.652 L 123.5 251.5426 L 39.3 251.5426 L 39.3 269.652 z \\\"/><path clip-path=\\\"url(#clip4-38)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 44.7652 269.652 L 118.7652 269.652 L 118.7652 259.652 L 44.7652 259.652 L 44.7652 269.652 z \\\"/><g clip-path=\\\"url(#clip4-38)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 44.7652 262.277)\\\" x=\\\"0 5.776 10.224 16 18.128 22.576 27.024 31.472 35.472 37.6 42.048 44.712 49.16 50.984 53.208 55.872 60.32 62.544 64.368 68.816\\\">How does arbitration</text></g><path clip-path=\\\"url(#clip4-38)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 71.3961 260.5973 L 92.3961 260.5973 L 92.3961 250.5973 L 71.3961 250.5973 L 71.3961 260.5973 z \\\"/><g clip-path=\\\"url(#clip4-38)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 71.3961 253.2223)\\\" x=\\\"0 4 6.224 10.672 13.336 15.56\\\">start?</text></g><clipPath id=\\\"clip4-39\\\"><path d=\\\"M 127 214 L 206 214 L 206 272 L 127 272 L 127 214 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-39)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 137.6496 262.277)\\\" x=\\\"0 6.664 11.112 12.936 14.76 16.584 21.032 25.48 27.608 32.056 34.184 38.632 43.08 45.304 47.128 51.128 55.576\\\">Mailing a notice.</text></g><clipPath id=\\\"clip4-40\\\"><path d=\\\"M 205 214 L 574 214 L 574 272 L 205 272 L 205 214 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 262.277)\\\" x=\\\"0 5.336 7.16 9.384 13.832 18.28\\\">Either</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 230.5453 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 233.8153 262.277)\\\" x=\\\"0 4.448 8.896 11.56 13.784\\\">party</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 251.6004 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 254.8704 262.277)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 269.9837 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 273.2536 262.277)\\\" x=\\\"0 6.664 11.112 12.936\\\">mail</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 288.0154 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 291.2853 262.277)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.4064 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 305.6764 262.277)\\\" x=\\\"0 4.448 6.672 11.12 15.568\\\">other</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 323.9108 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 327.1807 262.277)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 331.6299 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 334.8999 262.277)\\\" x=\\\"0 2.664 7.112 11.56 16.008 20.456 24.456\\\">request</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 361.5835 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 364.8535 262.277)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.5253 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 374.7953 262.277)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 29.392\\\">arbitrate,</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 406.4125 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 409.6825 262.277)\\\" x=\\\"0 4.448 8.448 12.896\\\">even</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 427.0301 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 430.3001 262.277)\\\" x=\\\"0 1.824\\\">if</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.3469 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 437.6169 262.277)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 442.0661 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 445.3361 262.277)\\\" x=\\\"0 1.824 6.272 12.048 16.048 20.496 22.32\\\">lawsuit</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 469.883 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 473.1529 262.277)\\\" x=\\\"0 4.448 8.896\\\">has</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.0514 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 489.3213 262.277)\\\" x=\\\"0 4.448 8.896 13.344\\\">been</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 507.1182 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 510.3882 262.277)\\\" x=\\\"0 2.224 4.048 5.872 10.32 14.768\\\">filed.</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 527.3804 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 530.6503 262.277)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 544.4355 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 547.7055 262.277)\\\" x=\\\"0 4.448 8.896 11.12 12.944 16.944\\\">notice</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 253.2223)\\\" x=\\\"0 4 8.448 12.896 17.344 19.168\\\">should</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.2211 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 236.4008 253.2223)\\\" x=\\\"0 4.448 8.896 12.896 16.896 19.56 21.384 25.832\\\">describe</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 266.6859 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 269.8656 253.2223)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.9867 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 284.1664 253.2223)\\\" x=\\\"0 5.776 7.6 11.6 16.048 20.496 22.72\\\">Dispute</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 311.3383 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 314.518 253.2223)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 327.8656 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 331.0453 253.2223)\\\" x=\\\"0 2.664 7.112 8.936 10.76 15.208\\\">relief</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.4789 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 351.6586 253.2223)\\\" x=\\\"0 4 8.448 12.896 17.344 21.792 24.016\\\">sought.</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 377.9008 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 381.0805 253.2223)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 394.8656 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 398.0453 253.2223)\\\" x=\\\"0 2.664 7.112 11.112 15.56 17.384 21.384 23.208 27.656\\\">receiving</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.1547 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 433.3344 253.2223)\\\" x=\\\"0 4.448 8.896 11.56 13.784\\\">party</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 451.1195 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 454.2992 253.2223)\\\" x=\\\"0 6.664 11.112 15.112\\\">must</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 471.6351 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 474.8148 253.2223)\\\" x=\\\"0 6.664 11.112 12.936\\\">mail</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.5765 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 492.7562 253.2223)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 497.2055 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 500.3851 253.2223)\\\" x=\\\"0 2.664 7.112 11.112 15.56 20.008 24.456 28.456\\\">response</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 533.2953 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 536.475 253.2223)\\\" x=\\\"0 5.776 7.6 9.824 14.272 16.096\\\">within</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 557.0219 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 560.2015 253.2223)\\\" x=\\\"0 4.448\\\">20</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 244.1676)\\\" x=\\\"0 4.448 8.896 12.896 16.896\\\">days.</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 228.7211 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 231.1538 244.1676)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 235.5991 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 238.0317 244.1676)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 250.9302 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 253.3629 244.1676)\\\" x=\\\"0 6.664 11.112 12.936\\\">mail</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 268.1246 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 270.5573 244.1676)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.6783 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 284.111 244.1676)\\\" x=\\\"0 4.448 8.896 15.56 20.008 24.456 28.904\\\">demand,</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 315.2438 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 317.6765 244.1676)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 330.575 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 333.0076 244.1676)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.1209 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 350.5536 244.1676)\\\" x=\\\"0 4 8.448 12.896 17.344 21.344\\\">choose</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 376.3505 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 378.7831 244.1676)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 389.9042 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 392.3369 244.1676)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 26.768 31.216\\\">arbitration</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 428.0049 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 430.4375 244.1676)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456\\\">group.</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 453.1211 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 455.5538 244.1676)\\\" x=\\\"0 6.224 8.888\\\">Or,</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.6632 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 469.0959 244.1676)\\\" x=\\\"0 4 8.448 12.896\\\">your</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.6584 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 487.091 244.1676)\\\" x=\\\"0 4.448 8.896 15.56 20.008 24.456\\\">demand</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 516.0012 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 518.4339 244.1676)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 533.5471 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 535.9798 244.1676)\\\" x=\\\"0 4 6.224 10.672 12.896\\\">state</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.3236 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 555.7562 244.1676)\\\" x=\\\"0 2.224 6.672 11.12\\\">that</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 235.1129)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 222.4984 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 224.7098 235.1129)\\\" x=\\\"0 5.776 10.224 14.672\\\">want</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 241.6082 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 243.8196 235.1129)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 254.9407 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 257.152 235.1129)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056\\\">parties</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.2106 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 283.4219 235.1129)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.0938 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 292.3052 235.1129)\\\" x=\\\"0 4 8.448 12.896 17.344 21.344\\\">choose</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 318.1021 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 320.3134 235.1129)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 324.7626 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 326.974 235.1129)\\\" x=\\\"0 1.824 6.272 10.272 14.72\\\">local</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 343.5208 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 345.7322 235.1129)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608\\\">Arbiter.</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.5642 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 373.7756 235.1129)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 378.2209 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 380.4322 235.1129)\\\" x=\\\"0 2.664 7.112 8.936 13.384 15.608 20.056\\\">related</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 404.94 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 407.1514 235.1129)\\\" x=\\\"0 2.224 6.672 8.496 11.16\\\">third</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 422.7608 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 424.9721 235.1129)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056\\\">parties</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 449.0307 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 451.2421 235.1129)\\\" x=\\\"0 4.448\\\">or</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 458.3553 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 460.5667 235.1129)\\\" x=\\\"0 5.776\\\">we</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 470.7932 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 473.0046 235.1129)\\\" x=\\\"0 6.664 11.112 12.936\\\">mail</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 487.7663 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 489.9777 235.1129)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.0988 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 503.3101 235.1129)\\\" x=\\\"0 4.448 8.896 15.56 20.008 24.456 28.904\\\">demand,</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 534.4429 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 536.6543 235.1129)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.5527 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 551.7641 235.1129)\\\" x=\\\"0 6.664 11.112 15.112\\\">must</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 226.0582)\\\" x=\\\"0 2.664 7.112 11.112 15.56 20.008 24.456\\\">respond</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.5101 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 241.2739 226.0582)\\\" x=\\\"0 1.824\\\">in</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.5474 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 250.3112 226.0582)\\\" x=\\\"0 4.448\\\">20</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.2096 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 261.9734 226.0582)\\\" x=\\\"0 4.448 8.896 12.896 16.896\\\">days.</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.0945 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 283.8583 226.0582)\\\" x=\\\"0 5.336 9.784 14.232\\\">Your</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 300.7567 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 303.5205 226.0582)\\\" x=\\\"0 2.664 7.112 11.112 15.56 20.008 24.456 28.456\\\">response</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 336.4306 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 339.1944 226.0582)\\\" x=\\\"0 6.664 11.112 15.112\\\">must</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 356.5304 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 359.2942 226.0582)\\\" x=\\\"0 4 8.448 12.896 17.344 21.344\\\">choose</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 385.091 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 387.8548 226.0582)\\\" x=\\\"0 4.448\\\">an</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 396.7533 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 399.517 226.0582)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 26.768 31.216\\\">arbitration</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 435.185 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 437.9488 226.0582)\\\" x=\\\"0 4.448 7.112 11.56 16.008\\\">group</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 458.4097 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 461.1735 226.0582)\\\" x=\\\"0 4.448\\\">or</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.2868 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 471.0506 226.0582)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456 24.456\\\">propose</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.9607 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 502.7245 226.0582)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 507.1737 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 509.9375 226.0582)\\\" x=\\\"0 1.824 6.272 10.272 14.72\\\">local</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.4844 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 529.2482 226.0582)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608\\\">Arbiter.</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 555.0802 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 557.844 226.0582)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 562.2893 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 565.0531 226.0582)\\\" x=\\\"0 1.824\\\">it</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 217.0035)\\\" x=\\\"0 4.448 8.896 13.344 17.344 21.792 23.32 25.544 27.768 29.896 35.672 40.12 42.248 48.912 53.36 57.36 59.488 63.488 67.936 72.384 76.832 80.832 85.28 87.408 89.632 94.08 98.528 100.656 105.104 107.768 112.216 116.664 121.112\\\">doesn&apos;t, we may choose the group.</text></g><clipPath id=\\\"clip4-41\\\"><path d=\\\"M 35 137 L 128 137 L 128 215 L 35 215 L 35 137 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-41)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.2 214.3238 L 127.6 214.3238 L 127.6 137.8863 L 35.2 137.8863 L 35.2 214.3238 z \\\"/><path clip-path=\\\"url(#clip4-41)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.3 212.3238 L 123.5 212.3238 L 123.5 203.2691 L 39.3 203.2691 L 39.3 212.3238 z \\\"/><path clip-path=\\\"url(#clip4-41)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 53.191 212.3238 L 110.191 212.3238 L 110.191 202.3238 L 53.191 202.3238 L 53.191 212.3238 z \\\"/><g clip-path=\\\"url(#clip4-41)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 53.191 204.9488)\\\" x=\\\"0 7.552 12 16.448 18.576 23.024 25.688 30.136 31.96 34.184 36.848 41.296 43.52 47.968 51.968\\\">* D E M O *tes?</text></g><clipPath id=\\\"clip4-42\\\"><path d=\\\"M 127 137 L 206 137 L 206 215 L 127 215 L 127 137 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-42)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 134.4621 204.9488)\\\" x=\\\"0 5.336 10.672 16.008 18.232 20.36 24.36 29.696 36.36 41.696 43.92 46.048 50.496 53.16 55.288 59.736\\\">AAA, JAMS, or an</text></g><g clip-path=\\\"url(#clip4-42)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 140.1164 195.8941)\\\" x=\\\"0 4.448 8.896 11.56 16.008 20.456 24.904 27.032 32.368 35.032 39.48 41.304 43.528 47.976 50.64\\\">agreed Arbiter.</text></g><clipPath id=\\\"clip4-43\\\"><path d=\\\"M 205 137 L 574 137 L 574 215 L 205 215 L 205 137 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 204.9488)\\\" x=\\\"0 5.336 9.784\\\">You</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 223.8344 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 226.373 204.9488)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 241.4863 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 244.025 204.9488)\\\" x=\\\"0 4 8.448 10.272 14.72 18.72\\\">select</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 264.9703 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 267.509 204.9488)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 278.6301 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 281.1687 204.9488)\\\" x=\\\"0 5.336 12 16.448 19.112 20.936 24.936 29.384\\\">American</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 315.0047 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 317.5433 204.9488)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 19.16 23.608 25.832 27.656 32.104\\\">Arbitration</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 354.098 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 356.6367 204.9488)\\\" x=\\\"0 5.336 9.336 13.336 17.784 21.784 23.608 28.056 30.28 32.104 36.552\\\">Association</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 397.6406 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 400.1793 204.9488)\\\" x=\\\"0 2.664 5.504 10.84 16.176 21.512 24.352\\\">(&quot;AAA&quot;)</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 427.1949 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 429.7336 204.9488)\\\" x=\\\"0 2.664 7.112 9.776 14.224 18.672 23.12 25.784 30.232 34.68 39.128 41.792 46.24 50.688 55.136 59.584\\\">(1-800-778-7879)</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 491.9953 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 494.534 204.9488)\\\" x=\\\"0 4.448 6.672 8.896 13.344 15.568 17.792 20.016 25.792 31.568 37.344 39.568 44.016 48.464 51.128 53.352 57.8 60.464\\\">http://www.adr.org</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.448 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 561.9867 204.9488)\\\" x=\\\"0 4.448\\\">or</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 195.8941)\\\" x=\\\"0 4 9.336 16\\\">JAMS</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 185.8395)\\\" x=\\\"0 2.664 7.112 9.776 14.224 18.672 23.12 25.784 30.232 34.68 39.128 41.792 46.24 50.688 55.136 59.584\\\">(1-800-352-5267)</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 271.8617 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 274.6277 185.8395)\\\" x=\\\"0 4.448 6.672 8.896 13.344 15.568 17.792 20.016 25.792 31.568 37.344 39.568 41.392 45.84 52.504 56.504 60.952 65.4 68.064 70.288 74.288 78.736 85.4\\\">http://www.jamsadr.com.</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 362.2527 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 365.0186 185.8395)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 378.8038 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 381.5697 185.8395)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056\\\">parties</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 405.6283 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 408.3943 185.8395)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 423.5075 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 426.2735 185.8395)\\\" x=\\\"0 4.448 6.272 10.272\\\">also</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 440.9961 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 443.7621 185.8395)\\\" x=\\\"0 4.448 8.896 11.56 16.008\\\">agree</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 464.223 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 466.989 185.8395)\\\" x=\\\"0 1.824\\\">in</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 473.2624 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 476.0284 185.8395)\\\" x=\\\"0 5.776 8.44 10.264 12.488 14.312 18.76\\\">writing</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.2393 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 502.0053 185.8395)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 508.6771 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 511.4431 185.8395)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 515.8923 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 518.6583 185.8395)\\\" x=\\\"0 1.824 6.272 10.272 14.72\\\">local</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 535.2051 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 537.9711 185.8395)\\\" x=\\\"0 4.448 6.672 8.896 13.344 16.008 20.456 24.904 28.904\\\">attorney,</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 176.7848)\\\" x=\\\"0 2.664 7.112 9.336 11.16 13.824 18.272\\\">retired</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 232.3227 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 235.2385 176.7848)\\\" x=\\\"0 1.824 6.272 10.72 15.168 19.616\\\">judge,</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.0823 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 259.9982 176.7848)\\\" x=\\\"0 4.448\\\">or</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 267.1114 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 270.0273 176.7848)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 293.6367 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 296.5526 176.7848)\\\" x=\\\"0 1.824\\\">in</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.826 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 305.7419 176.7848)\\\" x=\\\"0 4.448 8.896 13.344\\\">good</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 323.5388 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 326.4547 176.7848)\\\" x=\\\"0 4 6.224 10.672 15.12 19.568 21.392 25.84\\\">standing</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 356.7477 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 359.6635 176.7848)\\\" x=\\\"0 5.776 7.6 9.824\\\">with</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 373.937 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 376.8529 176.7848)\\\" x=\\\"0 4.448\\\">an</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 385.7513 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 388.6672 176.7848)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 26.768 31.216\\\">arbitration</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 424.3351 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 427.251 176.7848)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456\\\">group.</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 449.9346 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 452.8505 176.7848)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.6357 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 469.5516 176.7848)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 493.1609 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 496.0768 176.7848)\\\" x=\\\"0 6.664 11.112 15.112\\\">must</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 513.4127 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 516.3286 176.7848)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944\\\">arbitrate</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 545.7232 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 548.6391 176.7848)\\\" x=\\\"0 4.448 8.896 13.344 17.792\\\">under</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 167.7301)\\\" x=\\\"0 5.336 10.672\\\">AAA</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.6078 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 228.6503 167.7301)\\\" x=\\\"0 4.448\\\">or</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 235.7636 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 238.8062 167.7301)\\\" x=\\\"0 4 9.336 16\\\">JAMS</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 260.1421 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 263.1846 167.7301)\\\" x=\\\"0 4 8.448 12.896 16.896 21.344 28.008 32.456\\\">consumer</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 298.3096 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 301.3522 167.7301)\\\" x=\\\"0 2.664 7.112 8.936 13.384 17.384\\\">rules.</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 320.9615 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 324.0041 167.7301)\\\" x=\\\"0 5.336 9.784\\\">You</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.2384 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 341.281 167.7301)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 356.3943 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 359.4368 167.7301)\\\" x=\\\"0 4.448 8.896\\\">get</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 370.5579 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 373.6004 167.7301)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 378.0497 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 381.0922 167.7301)\\\" x=\\\"0 4 8.448 12.896\\\">copy</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 397.9906 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 401.0331 167.7301)\\\" x=\\\"0 4.448\\\">of</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 407.705 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 410.7476 167.7301)\\\" x=\\\"0 2.224 6.672 11.12 15.12\\\">these</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.3179 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 433.3604 167.7301)\\\" x=\\\"0 2.664 7.112 8.936 13.384\\\">rules</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 450.7471 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 453.7897 167.7301)\\\" x=\\\"0 2.224 4.888 9.336\\\">from</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 469.7897 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 472.8322 167.7301)\\\" x=\\\"0 4 8.448 12.448\\\">such</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.7306 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 492.7732 167.7301)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456\\\">group.</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 515.4568 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 518.4993 167.7301)\\\" x=\\\"0 5.336 9.784\\\">Any</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 532.2845 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 535.327 167.7301)\\\" x=\\\"0 2.664 7.112 8.936 13.384\\\">rules</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.7137 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 555.7562 167.7301)\\\" x=\\\"0 2.224 6.672 11.12\\\">that</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 158.6754)\\\" x=\\\"0 4 8.448 12.896 15.12 16.944 18.768 22.768\\\">conflict</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 234.5922 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 237.7758 158.6754)\\\" x=\\\"0 5.776 7.6 9.824\\\">with</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 252.0492 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 255.2328 158.6754)\\\" x=\\\"0 4.448 8.896\\\">any</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 268.1312 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 271.3148 158.6754)\\\" x=\\\"0 4.448\\\">of</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 277.9867 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 281.1703 158.6754)\\\" x=\\\"0 4.448 8.896\\\">our</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 292.7328 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 295.9164 158.6754)\\\" x=\\\"0 4.448 8.896 11.56 16.008 20.456 27.12 31.568 36.016 38.24\\\">agreements</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.1625 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 341.3461 158.6754)\\\" x=\\\"0 5.776 7.6 9.824\\\">with</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.6195 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 358.8031 158.6754)\\\" x=\\\"0 4 8.448 12.896\\\">you,</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 373.9242 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 377.1078 158.6754)\\\" x=\\\"0 4.448 8.896 13.344 14.872\\\">don&apos;t</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 394.2055 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 397.389 158.6754)\\\" x=\\\"0 4.448 8.896 13.344 15.168 19.168\\\">apply.</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 418.7836 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 421.9672 158.6754)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 426.4125 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 429.5961 158.6754)\\\" x=\\\"0 2.224 6.672 11.12 15.12\\\">these</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 449.1664 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 452.35 158.6754)\\\" x=\\\"0 4.448 8.896 11.12 12.944 17.392 21.84\\\">options</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 478.1937 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 481.3773 158.6754)\\\" x=\\\"0 4.448 7.112 11.56 16.008 17.536\\\">aren&apos;t</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.139 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 504.3227 158.6754)\\\" x=\\\"0 4.448 8.448 12.896 14.72 16.544 20.992 25.44 27.264 31.712\\\">available,</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 538.264 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 541.4476 158.6754)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 554.7953 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 557.9789 158.6754)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 149.6207)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056\\\">parties</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.6586 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 236.2535 149.6207)\\\" x=\\\"0 4 8.448 12.896 14.424\\\">can&apos;t</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 252.9019 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 255.4968 149.6207)\\\" x=\\\"0 4.448 8.896 11.56 16.008\\\">agree</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.9578 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 278.5527 149.6207)\\\" x=\\\"0 4.448\\\">on</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 287.4511 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 290.046 149.6207)\\\" x=\\\"0 4.448 8.896 13.344 15.568 20.016 24.464 27.128\\\">another,</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.4015 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 321.9964 149.6207)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 326.4456 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 329.0405 149.6207)\\\" x=\\\"0 4 8.448 12.896 15.56\\\">court</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 346.8256 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 349.4205 149.6207)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 364.5338 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 367.1287 149.6207)\\\" x=\\\"0 4 8.448 12.896 17.344 21.344\\\">choose</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 392.9256 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 395.5205 149.6207)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 406.6416 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 409.2365 149.6207)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456\\\">group.</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 431.9201 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 434.515 149.6207)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 448.3001 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 450.895 149.6207)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056\\\">parties</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.9536 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 477.5485 149.6207)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 488.7985 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 491.3934 149.6207)\\\" x=\\\"0 2.224 6.672 11.12\\\">then</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 506.9637 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 509.5586 149.6207)\\\" x=\\\"0 4.448 8.896 11.12 15.568 17.392\\\">obtain</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 531.4024 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 533.9973 149.6207)\\\" x=\\\"0 4.448\\\">an</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 542.8957 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 545.4906 149.6207)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 140.566)\\\" x=\\\"0 4.448 8.896 13.344 17.792 20.456 22.584 26.584 31.032 35.032 39.48 41.608 46.056 48.72 53.168 57.616 62.064 63.592 67.592 69.72 72.384 76.832 78.656 83.104 87.104 89.328 91.456 96.792 101.24 105.24 109.688 111.816 117.152 119.816 124.264 126.088 128.312 132.76 135.424 137.552 144.216 148.664 152.664 154.888 157.016 161.464 165.912 168.136 172.584 175.248 179.248 183.696 185.824 189.824 194.272 198.72 201.384 203.512 207.96 212.408 215.072 219.52 223.968 230.632 235.08 239.528 241.752 245.752 247.88 253.656 255.48 257.704 262.152 264.28 268.728 272.728 274.952 277.08 281.528 285.528 287.656 289.88 294.328 298.776 302.776 304.904 309.352 312.016 316.464 318.592 324.368 327.032 328.856 331.08 333.304 337.752 342.2\\\">under such group&apos;s rules. Such Arbiter must enforce your agreements with us, as they are written.</text></g><clipPath id=\\\"clip4-44\\\"><path d=\\\"M 35 116 L 128 116 L 128 138 L 35 138 L 35 116 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-44)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.2 137.8863 L 127.6 137.8863 L 127.6 116.777 L 35.2 116.777 L 35.2 137.8863 z \\\"/><path clip-path=\\\"url(#clip4-44)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.3 135.8863 L 123.5 135.8863 L 123.5 117.777 L 39.3 117.777 L 39.3 135.8863 z \\\"/><path clip-path=\\\"url(#clip4-44)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.6754 135.8863 L 125.6754 135.8863 L 125.6754 125.8863 L 39.6754 125.8863 L 39.6754 135.8863 z \\\"/><g clip-path=\\\"url(#clip4-44)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 39.6754 128.5113)\\\" x=\\\"0 7.552 9.376 11.2 13.024 15.152 17.376 21.824 26.272 28.4 32.848 37.296 41.744 44.408 46.232 50.68 55.128 57.256 61.704 66.152 68.28 72.728 77.176 79\\\">Will the hearing be held</text></g><path clip-path=\\\"url(#clip4-44)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 66.9449 126.8316 L 95.9449 126.8316 L 95.9449 116.8316 L 66.9449 116.8316 L 66.9449 126.8316 z \\\"/><g clip-path=\\\"url(#clip4-44)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 66.9449 119.4567)\\\" x=\\\"0 4.448 8.896 13.344 16.008 20.456 24.456\\\">nearby?</text></g><clipPath id=\\\"clip4-45\\\"><path d=\\\"M 127 116 L 206 116 L 206 138 L 127 138 L 127 116 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-45)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 158.5461 128.5113)\\\" x=\\\"0 5.336 9.784 13.784\\\">Yes.</text></g><clipPath id=\\\"clip4-46\\\"><path d=\\\"M 205 116 L 574 116 L 574 138 L 205 138 L 205 116 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-46)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 128.5113)\\\" x=\\\"0 4.888 9.336 13.784 15.912 21.248 23.912 28.36 30.184 32.408 36.856 39.52 41.648 47.424 49.248 51.072 52.896 55.024 59.472 62.136 66.584 71.032 73.696 75.824 78.048 82.496 86.944 89.072 93.52 97.968 102.416 105.08 106.904 111.352 115.8 117.928 123.704 125.528 127.752 132.2 134.024 138.472 140.6 145.048 149.496 151.624 158.288 160.112 161.936 166.384 170.384 172.512 176.96 179.184 181.312 185.312 189.76 194.208 196.872 199 203.448 207.896 214.56 219.008 221.136 225.584 228.248 230.376 236.152 240.6 245.048 247.712 252.16 254.288 256.512 260.96 265.408 267.536 269.76 272.424 276.872 281.32 285.32 289.768 293.768 295.992 297.816 302.264 306.712 308.84 313.288 317.288 321.288 325.736 328.4 331.064 335.512 339.96\\\">The Arbiter will order the hearing within 30 miles of your home or where the transaction occurred.</text></g><clipPath id=\\\"clip4-47\\\"><path d=\\\"M 35 74 L 128 74 L 128 117 L 35 117 L 35 74 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-47)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.2 116.777 L 127.6 116.777 L 127.6 74.777 L 35.2 74.777 L 35.2 116.777 z \\\"/><path clip-path=\\\"url(#clip4-47)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.3 114.777 L 123.5 114.777 L 123.5 105.7223 L 39.3 105.7223 L 39.3 114.777 z \\\"/><path clip-path=\\\"url(#clip4-47)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 43.6695 114.777 L 119.6695 114.777 L 119.6695 104.777 L 43.6695 104.777 L 43.6695 114.777 z \\\"/><g clip-path=\\\"url(#clip4-47)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 43.6695 107.402)\\\" x=\\\"0 7.552 12 16.448 18.672 20.8 25.248 29.696 34.144 38.592 40.816 42.944 47.392 51.84 56.288 60.736 65.184 67.008 71.008\\\">What about appeals?</text></g><clipPath id=\\\"clip4-48\\\"><path d=\\\"M 127 74 L 206 74 L 206 117 L 127 117 L 127 74 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-48)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 145.2277 107.402)\\\" x=\\\"0 5.336 9.784 14.232 18.68 23.128 24.952 28.952 31.08 35.528 38.192\\\">Appeals are</text></g><g clip-path=\\\"url(#clip4-48)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 153.8098 98.3473)\\\" x=\\\"0 1.824 3.648 10.312 12.136 14.36 18.808 23.256\\\">limited.</text></g><clipPath id=\\\"clip4-49\\\"><path d=\\\"M 205 74 L 574 74 L 574 117 L 205 117 L 205 74 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 107.402)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 223.3852 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 227.8141 107.402)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608 25.136\\\">Arbiter&apos;s</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.9508 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 261.3798 107.402)\\\" x=\\\"0 4.448 8.896 12.896 14.72 18.72 20.544 24.992\\\">decision</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.8251 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 295.2541 107.402)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 306.5041 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 310.933 107.402)\\\" x=\\\"0 4.448\\\">be</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.8314 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 324.2604 107.402)\\\" x=\\\"0 2.224 4.048 8.496 12.944 14.768\\\">final.</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 341.2526 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 345.6815 107.402)\\\" x=\\\"0\\\">A</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.0175 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 355.4464 107.402)\\\" x=\\\"0 4.448 8.896 11.56 13.784\\\">party</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 373.2316 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 377.6605 107.402)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 392.7738 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 397.2028 107.402)\\\" x=\\\"0 2.224 4.048 5.872\\\">file</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 407.5231 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 411.952 107.402)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 423.0731 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 427.5021 107.402)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608 25.136\\\">Arbiter&apos;s</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.6388 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 461.0678 107.402)\\\" x=\\\"0 4.448 10.224 14.672 17.336\\\">award</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 482.8568 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 487.2858 107.402)\\\" x=\\\"0 5.776 7.6 9.824\\\">with</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.5592 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 505.9882 107.402)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 517.1093 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 521.5382 107.402)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456\\\">proper</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 544.6632 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 549.0922 107.402)\\\" x=\\\"0 4 8.448 12.896 15.56 17.784\\\">court.</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 98.3473)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 19.16 23.608 25.832 27.656 32.104\\\">Arbitration</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 246.1547 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 248.4088 98.3473)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.6588 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 261.913 98.3473)\\\" x=\\\"0 4 8.448 10.272 14.272\\\">solve</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.6356 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 282.8898 98.3473)\\\" x=\\\"0 4.448 8.896 13.344 17.792 22.24 24.064\\\">appeals</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 310.9601 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 313.2142 98.3473)\\\" x=\\\"0 4.448\\\">of</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.8861 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 322.1403 98.3473)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 326.5895 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 328.8436 98.3473)\\\" x=\\\"0 4 10.664 15.112 16.936 18.76 21.424 25.424 27.248 31.696 33.52 40.184\\\">small-claims</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 373.0311 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 375.2853 98.3473)\\\" x=\\\"0 4 8.448 12.896 15.56\\\">court</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.0704 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 395.3246 98.3473)\\\" x=\\\"0 1.824 6.272 10.72 15.168 19.616 26.28 30.728 35.176 37.4\\\">judgement.</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.9535 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 437.2077 98.3473)\\\" x=\\\"0\\\">A</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 442.5436 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 444.7977 98.3473)\\\" x=\\\"0 4.448 8.896 11.56 13.784\\\">party</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 462.5829 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 464.837 98.3473)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 479.9503 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 482.2045 98.3473)\\\" x=\\\"0 4.448 8.896 13.344 17.792 22.24\\\">appeal</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 506.2748 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 508.5289 98.3473)\\\" x=\\\"0 4.448 8.896 13.344 17.792\\\">under</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 528.9899 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 531.244 98.3473)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 542.3651 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 544.6193 98.3473)\\\" x=\\\"0 4.888 10.224 15.56\\\">FAA.</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 562.4005 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 564.6547 98.3473)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 89.2926)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 220.7211 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 223.3349 89.2926)\\\" x=\\\"0 4.448 11.112 15.56 20.008 24.456\\\">amount</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 250.0185 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 252.6324 89.2926)\\\" x=\\\"0 1.824\\\">in</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 258.9058 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 261.5196 89.2926)\\\" x=\\\"0 4 8.448 12.896 15.12 17.784 22.232 26.232 30.68 33.344 37.344\\\">controversy</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.8673 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 305.4811 89.2926)\\\" x=\\\"0 4.448 8.448 12.448 16.896 21.344 25.792\\\">exceeds</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.278 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 337.8918 89.2926)\\\" x=\\\"0 4.448 8.896 11.12 15.568 20.016 24.464 26.688 31.136 35.584\\\">$1,500.00,</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.7043 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 378.3182 89.2926)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 382.7674 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 385.3812 89.2926)\\\" x=\\\"0 4.448 8.896 11.56 13.784\\\">party</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.1664 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 405.7802 89.2926)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 420.8935 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 423.5074 89.2926)\\\" x=\\\"0 4.448 8.896 13.344 17.792 22.24\\\">appeal</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.5777 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 450.1915 89.2926)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 461.3126 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 463.9264 89.2926)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608 25.136\\\">Arbiter&apos;s</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 493.0632 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 495.677 89.2926)\\\" x=\\\"0 2.224 4.048 8.496 12.944 14.768 19.216 23.664\\\">finding.</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.5676 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 524.1815 89.2926)\\\" x=\\\"0 5.336 9.784 13.784\\\">Such</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 542.4158 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 545.0297 89.2926)\\\" x=\\\"0 4.448 8.896 13.344 17.792 22.24\\\">appeal</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 80.2379)\\\" x=\\\"0 5.776 7.6 9.424 11.248 13.376 17.824 22.272 24.4 26.624 31.072 33.2\\\">will be to a</text></g><clipPath id=\\\"clip4-50\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 272.152 L 128.1 272.152 L 128.1 271.152 L 34.7 271.152 L 34.7 272.152 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 271.152 L 35.7 271.152 L 35.7 214.8238 L 34.7 214.8238 L 34.7 271.152 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.1 272.152 L 206 272.152 L 206 271.152 L 128.1 271.152 L 128.1 272.152 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127.1 271.152 L 128.1 271.152 L 128.1 214.8238 L 127.1 214.8238 L 127.1 271.152 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 272.152 L 573.7 272.152 L 573.7 271.152 L 206 271.152 L 206 272.152 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.7 271.152 L 573.7 271.152 L 573.7 214.8238 L 572.7 214.8238 L 572.7 271.152 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 271.152 L 206 271.152 L 206 214.8238 L 205 214.8238 L 205 271.152 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 214.8238 L 128.1 214.8238 L 128.1 213.8238 L 34.7 213.8238 L 34.7 214.8238 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 213.8238 L 35.7 213.8238 L 35.7 138.3863 L 34.7 138.3863 L 34.7 213.8238 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.1 214.8238 L 206 214.8238 L 206 213.8238 L 128.1 213.8238 L 128.1 214.8238 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127.1 213.8238 L 128.1 213.8238 L 128.1 138.3863 L 127.1 138.3863 L 127.1 213.8238 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 214.8238 L 573.7 214.8238 L 573.7 213.8238 L 206 213.8238 L 206 214.8238 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.7 213.8238 L 573.7 213.8238 L 573.7 138.3863 L 572.7 138.3863 L 572.7 213.8238 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 213.8238 L 206 213.8238 L 206 138.3863 L 205 138.3863 L 205 213.8238 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 138.3863 L 128.1 138.3863 L 128.1 137.3863 L 34.7 137.3863 L 34.7 138.3863 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 137.3863 L 35.7 137.3863 L 35.7 117.277 L 34.7 117.277 L 34.7 137.3863 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.1 138.3863 L 206 138.3863 L 206 137.3863 L 128.1 137.3863 L 128.1 138.3863 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127.1 137.3863 L 128.1 137.3863 L 128.1 117.277 L 127.1 117.277 L 127.1 137.3863 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 138.3863 L 573.7 138.3863 L 573.7 137.3863 L 206 137.3863 L 206 138.3863 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.7 137.3863 L 573.7 137.3863 L 573.7 117.277 L 572.7 117.277 L 572.7 137.3863 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 137.3863 L 206 137.3863 L 206 117.277 L 205 117.277 L 205 137.3863 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 117.277 L 128.1 117.277 L 128.1 116.277 L 34.7 116.277 L 34.7 117.277 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 75.277 L 128.1 75.277 L 128.1 74.277 L 34.7 74.277 L 34.7 75.277 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 116.277 L 35.7 116.277 L 35.7 75.277 L 34.7 75.277 L 34.7 116.277 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.1 117.277 L 206 117.277 L 206 116.277 L 128.1 116.277 L 128.1 117.277 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.1 75.277 L 206 75.277 L 206 74.277 L 128.1 74.277 L 128.1 75.277 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127.1 116.277 L 128.1 116.277 L 128.1 75.277 L 127.1 75.277 L 127.1 116.277 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 117.277 L 573.7 117.277 L 573.7 116.277 L 206 116.277 L 206 117.277 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 75.277 L 573.7 75.277 L 573.7 74.277 L 206 74.277 L 206 75.277 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.7 116.277 L 573.7 116.277 L 573.7 75.277 L 572.7 75.277 L 572.7 116.277 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 116.277 L 206 116.277 L 206 75.277 L 205 75.277 L 205 116.277 z \\\"/><g clip-path=\\\"url(#clip4-50)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 36.5264)\\\" x=\\\"0 6.498 11.997 14.391 16.785 21.789 26.793 29.295 34.299 39.303 44.307 504 506.3906 508.7812 511.1719 513.5625 515.9531 518.3438 520.7344 523.125 525.5156\\\">UT  07/2019          </text></g><g clip-path=\\\"url(#clip4-50)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 26.3398)\\\" x=\\\"0 6.003 11.007 16.011 21.015\\\">Page </text></g><g clip-path=\\\"url(#clip4-50)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 55.8097 26.3398)\\\" x=\\\"0\\\">5</text></g><g clip-path=\\\"url(#clip4-50)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.815 26.3398)\\\" x=\\\"0 2.394 7.398 9.9\\\"> of </text></g><g clip-path=\\\"url(#clip4-50)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 73.1021 26.3398)\\\" x=\\\"0\\\">7</text></g><g clip-path=\\\"url(#clip4-50)\\\"><text stroke=\\\"none\\\" fill=\\\"#d9d9d9\\\" style=\\\"font-family:f4-0; font-size:54pt; white-space:pre\\\" transform=\\\"matrix(0.707 0.707 0.707 -0.707 135.6027 198.5094)\\\" x=\\\"0 56.016 96.048 136.08 176.112 216.144 236.16 284.184 324.216 344.232 364.248 416.232 456.264 480.24\\\">Qoppa Software</text></g><g clip-path=\\\"url(#clip4-50)\\\"><text stroke=\\\"none\\\" fill=\\\"#002ba6\\\" style=\\\"font-family:f4-0; font-size:9pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.932 772)\\\" x=\\\"0 9.336 16.008 22.68 29.352 36.024 39.36 47.364 54.036 57.372 60.708 69.372 76.044 80.04 86.712 90.048 94.044 97.38 104.712 111.384 115.38 118.716 126.72 132.72 139.392 142.056 148.728 155.4 158.736 161.4 168.072 174.744 178.08 187.416 194.088 196.752 202.752 206.088 210.084 213.42 220.092 223.428 226.764 233.436 239.436 242.772 246.108 249.444 258.108 266.772 275.436 278.772 285.444 292.116 298.788 305.46 312.132 315.468 321.468 328.14\\\">Qoppa Software - For Evaluation Only - https://www.qoppa.com</text></g></g></svg></svg></g></svg><br>\\n<?xml version='1.0' encoding='UTF-8'?><svg id=\\\"qoppa_document\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" version=\\\"1.1\\\" xmlns=\\\"http://www.w3.org/2000/svg\\\" xmlns:xlink=\\\"http://www.w3.org/1999/xlink\\\"><!-- jPDFWeb v2019R1.03 - Demo Version --><style>title p { display: block; }</style><g id=\\\"qoppa_viewxform\\\" transform=\\\"matrix(1 0 0 1 0 0)\\\"><style type=\\\"text/css\\\">@font-face {font-family:f5-0;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f5-1;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f5-2;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}</style><svg id=\\\"qoppa_page_p5\\\" class=\\\"qoppa_page\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\"><rect class=\\\"qoppa_pageborder\\\" x=\\\"0.5pt\\\" y=\\\"0.5pt\\\" width=\\\"611pt\\\" height=\\\"791pt\\\" fill=\\\"none\\\" /><svg class=\\\"qoppa_pagecontents\\\" x=\\\"0pt\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" viewBox=\\\"0 0 612 792\\\" ><g class=\\\"qoppa_contentstream\\\" transform=\\\"matrix(1 0 0 -1 0 792)\\\" fill=\\\"black\\\" stroke=\\\"black\\\" stroke-width=\\\"1\\\" stroke-linecap=\\\"butt\\\" stroke-linejoin=\\\"miter\\\" stroke-miterlimit=\\\"10\\\"><clipPath id=\\\"clip5-1\\\"><path d=\\\"M 35 727 L 128 727 L 128 770 L 35 770 L 35 727 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-1)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.2 769.7 L 127.6 769.7 L 127.6 727.7 L 35.2 727.7 L 35.2 769.7 z \\\"/><clipPath id=\\\"clip5-2\\\"><path d=\\\"M 205 727 L 574 727 L 574 770 L 205 770 L 205 727 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 760.325)\\\" x=\\\"0 4.448 7.112 12.448 15.112 19.56 21.384 23.608 28.056\\\">3-Arbiter</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 240.3227 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 243.109 760.325)\\\" x=\\\"0 4.448 8.896 13.344 17.792\\\">panel</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.7301 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 265.5165 760.325)\\\" x=\\\"0 2.224 4.888 9.336\\\">from</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.5165 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 284.3029 760.325)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 295.424 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 298.2103 760.325)\\\" x=\\\"0 4 8.448 15.112\\\">same</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 317.7728 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 320.5592 760.325)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 26.768 31.216\\\">arbitration</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 356.2272 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 359.0136 760.325)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456\\\">group.</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 381.6972 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 384.4835 760.325)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 398.2687 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 401.0551 760.325)\\\" x=\\\"0 4.448 8.896 13.344 17.792 22.24\\\">appeal</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 425.1254 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 427.9118 760.325)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 439.1618 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 441.9481 760.325)\\\" x=\\\"0 4.448\\\">be</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 450.8466 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 453.6329 760.325)\\\" x=\\\"0 4.448\\\">de</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 462.5314 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 465.3178 760.325)\\\" x=\\\"0 4.448 8.896 12.896 17.344\\\">novo,</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.8881 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 487.6745 760.325)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.0221 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 503.8085 760.325)\\\" x=\\\"0 4 8.448 10.272 14.272 18.72\\\">solved</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.9804 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 529.7667 760.325)\\\" x=\\\"0 4.448\\\">by</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 538.216 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 541.0023 760.325)\\\" x=\\\"0 6.664 11.112 12.936 17.384 20.048 21.872 24.096\\\">majority</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 751.2703)\\\" x=\\\"0 4 8.448 10.672 15.12\\\">vote.</text></g><clipPath id=\\\"clip5-3\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-3)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 770.2 L 128.1 770.2 L 128.1 769.2 L 34.7 769.2 L 34.7 770.2 z \\\"/><path clip-path=\\\"url(#clip5-3)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 728.2 L 128.1 728.2 L 128.1 727.2 L 34.7 727.2 L 34.7 728.2 z \\\"/><path clip-path=\\\"url(#clip5-3)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 769.2 L 35.7 769.2 L 35.7 728.2 L 34.7 728.2 L 34.7 769.2 z \\\"/><path clip-path=\\\"url(#clip5-3)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.1 770.2 L 206 770.2 L 206 769.2 L 128.1 769.2 L 128.1 770.2 z \\\"/><path clip-path=\\\"url(#clip5-3)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.1 728.2 L 206 728.2 L 206 727.2 L 128.1 727.2 L 128.1 728.2 z \\\"/><path clip-path=\\\"url(#clip5-3)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127.1 769.2 L 128.1 769.2 L 128.1 728.2 L 127.1 728.2 L 127.1 769.2 z \\\"/><path clip-path=\\\"url(#clip5-3)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 770.2 L 573.7 770.2 L 573.7 769.2 L 206 769.2 L 206 770.2 z \\\"/><path clip-path=\\\"url(#clip5-3)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 728.2 L 573.7 728.2 L 573.7 727.2 L 206 727.2 L 206 728.2 z \\\"/><path clip-path=\\\"url(#clip5-3)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.7 769.2 L 573.7 769.2 L 573.7 728.2 L 572.7 728.2 L 572.7 769.2 z \\\"/><path clip-path=\\\"url(#clip5-3)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 769.2 L 206 769.2 L 206 728.2 L 205 728.2 L 205 769.2 z \\\"/><g clip-path=\\\"url(#clip5-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 241.2386 715.4812)\\\" x=\\\"0 6.67 10 15.56 17.84 20.62 23.95 29.51 32.29 34.57 40.13 45.69 48.35 54.46 60.02 65.58 70.58 73.24 78.8 84.36 89.92 92.58 99.25 106.47 112.03 115.36 120.92\\\">Ar* D E M O *ees and Awards</text></g><clipPath id=\\\"clip5-4\\\"><path d=\\\"M 35 680 L 128 680 L 128 705 L 35 705 L 35 680 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-4)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.6 704.277 L 127.5 704.277 L 127.5 680.277 L 35.6 680.277 L 35.6 704.277 z \\\"/><path clip-path=\\\"url(#clip5-4)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.7 700.777 L 123.4 700.777 L 123.4 682.6676 L 39.7 682.6676 L 39.7 700.777 z \\\"/><path clip-path=\\\"url(#clip5-4)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 52.677 700.777 L 110.677 700.777 L 110.677 690.777 L 52.677 690.777 L 52.677 700.777 z \\\"/><g clip-path=\\\"url(#clip5-4)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 52.677 693.4019)\\\" x=\\\"0 7.552 9.376 11.2 13.024 15.152 20.928 25.376 27.504 31.952 36.4 40.4 44.848 49.296 53.296\\\">Will we advance</text></g><path clip-path=\\\"url(#clip5-4)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 51.093 691.7223 L 112.093 691.7223 L 112.093 681.7223 L 51.093 681.7223 L 51.093 691.7223 z \\\"/><g clip-path=\\\"url(#clip5-4)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 51.093 684.3473)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 19.16 23.608 25.832 27.656 32.104 36.552 38.68 43.568 48.016 52.464 56.464\\\">Arbitration Fees?</text></g><clipPath id=\\\"clip5-5\\\"><path d=\\\"M 127 680 L 206 680 L 206 705 L 127 705 L 127 680 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-5)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 135.7422 693.4019)\\\" x=\\\"0 5.336 9.784 13.784 16.008 18.136 22.584 27.032 29.256 31.384 35.384 39.832 44.28 46.408 53.072 57.52\\\">Yes, but you may</text></g><g clip-path=\\\"url(#clip5-5)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 148.541 684.3473)\\\" x=\\\"0 4.448 8.896 12.896 15.024 19.024 23.472 27.472 29.696 33.696\\\">pay costs.</text></g><clipPath id=\\\"clip5-6\\\"><path d=\\\"M 205 680 L 573 680 L 573 705 L 205 705 L 205 680 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 693.4019)\\\" x=\\\"0 7.552\\\">We</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 221.6 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 224.0728 693.4019)\\\" x=\\\"0 4.448 8.896 12.896 17.344 21.792 25.792\\\">advance</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 254.3189 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 256.7917 693.4019)\\\" x=\\\"0 4 8.448 12.896\\\">your</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 272.3542 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 274.827 693.4019)\\\" x=\\\"0 2.84 8.176 10.84 15.288 17.112 19.336 22 26.448 28.672 30.496 34.944\\\">&quot;Arbitration</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 314.2216 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 316.6944 693.4019)\\\" x=\\\"0 4.888 9.336 13.784 17.784\\\">Fees&quot;</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 337.3194 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 339.7922 693.4019)\\\" x=\\\"0 1.824\\\">if</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 343.8391 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 346.3119 693.4019)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.2103 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 361.6831 693.4019)\\\" x=\\\"0 4.448 8.448\\\">ask</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 374.1323 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 376.6051 693.4019)\\\" x=\\\"0 4.448\\\">us</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 385.0544 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 387.5272 693.4019)\\\" x=\\\"0 2.224 6.672\\\">to.</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 396.4217 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 398.8945 693.4019)\\\" x=\\\"0 4.888 9.336 11.16\\\">This</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 414.0547 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 416.5275 693.4019)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44\\\">includes</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 445.9728 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 448.4456 693.4019)\\\" x=\\\"0 2.224 4.048 5.872 7.696 12.144 16.592\\\">filing,</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.262 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 469.7348 693.4019)\\\" x=\\\"0 4.448 8.896 15.56 17.384 21.832 23.656 27.656 29.88 32.544 36.992 39.216 41.04 45.04 49.488\\\">administrative,</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.4497 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 523.9225 693.4019)\\\" x=\\\"0 4.448 8.896 13.344 16.008 17.832 22.28 26.728\\\">hearing,</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.8795 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 555.3523 693.4019)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 684.3473)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608 25.136 29.136 31.264 33.488 37.936 42.384 46.384 48.608 50.736 56.072 60.52 64.968 67.096 71.544 75.992 79.992 82.12 86.12 90.568 95.016 97.68 99.808 104.256 106.48 108.704 113.152 115.816 120.264 124.712 128.712 130.84 133.064 137.512 141.96 145.96 148.088 152.536 156.984 161.432 163.56 168.008 170.232 174.68 179.128 181.792 183.92 188.368 192.368 196.816 201.264 205.712 209.712 214.16 218.16\\\">Arbiter&apos;s fees. You pay your attorney fees and other expenses.</text></g><clipPath id=\\\"clip5-7\\\"><path d=\\\"M 35 656 L 128 656 L 128 681 L 35 681 L 35 656 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-7)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.6 680.277 L 127.5 680.277 L 127.5 656.6769 L 35.6 656.6769 L 35.6 680.277 z \\\"/><path clip-path=\\\"url(#clip5-7)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.7 676.277 L 123.4 676.277 L 123.4 658.1676 L 39.7 658.1676 L 39.7 676.277 z \\\"/><path clip-path=\\\"url(#clip5-7)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 50.0715 676.277 L 113.0715 676.277 L 113.0715 666.277 L 50.0715 666.277 L 50.0715 676.277 z \\\"/><g clip-path=\\\"url(#clip5-7)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 50.0715 668.9019)\\\" x=\\\"0 5.336 8 12.448 14.576 19.024 23.472 30.136 34.584 39.032 43.48 47.48 49.608 54.056 58.504\\\">Are damages and</text></g><path clip-path=\\\"url(#clip5-7)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 40.4641 667.2223 L 123.4641 667.2223 L 123.4641 657.2223 L 40.4641 657.2223 L 40.4641 667.2223 z \\\"/><g clip-path=\\\"url(#clip5-7)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.4641 659.8473)\\\" x=\\\"0 4.448 6.672 8.896 13.344 16.008 20.456 24.904 28.904 31.032 33.256 37.704 42.152 46.152 48.28 52.728 57.176 61.176 65.176 67 71.448 73.272 77.72\\\">attorney fees possible?</text></g><clipPath id=\\\"clip5-8\\\"><path d=\\\"M 127 656 L 206 656 L 206 681 L 127 681 L 127 656 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 139.625 668.9019)\\\" x=\\\"0 5.336 9.784 13.784 16.008 18.136 19.96 22.184 24.312 28.76 30.584 32.408 36.856 42.632 47.08 51.528\\\">Yes, if allowed.</text></g><clipPath id=\\\"clip5-9\\\"><path d=\\\"M 205 656 L 573 656 L 573 681 L 205 681 L 205 656 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 668.9019)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 223.3852 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 225.9124 668.9019)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 249.5218 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 252.049 668.9019)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 267.1623 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 269.6895 668.9019)\\\" x=\\\"0 4.448 10.224 14.672 17.336\\\">award</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.4786 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 294.0058 668.9019)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 305.1269 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 307.6542 668.9019)\\\" x=\\\"0 4 8.448 15.112\\\">same</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 327.2167 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 329.7439 668.9019)\\\" x=\\\"0 4.448 8.896 15.56 20.008 24.456 28.904\\\">damages</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 362.6541 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 365.1813 668.9019)\\\" x=\\\"0 4.448\\\">as</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 373.6305 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 376.1578 668.9019)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.607 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 383.1342 668.9019)\\\" x=\\\"0 4 8.448 12.896 15.56 17.784\\\">court.</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.142 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 405.6693 668.9019)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608\\\">Arbiters</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 433.2786 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 435.8059 668.9019)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 450.9192 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 453.4464 668.9019)\\\" x=\\\"0 4.448 10.224 14.672 17.336\\\">award</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 475.2355 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 477.7627 668.9019)\\\" x=\\\"0 2.664 7.112 11.56 15.56 20.008 24.456 28.904 33.352 35.176\\\">reasonable</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 517.3955 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 519.9227 668.9019)\\\" x=\\\"0 4.448 6.672 8.896 13.344 16.008 20.456 24.904\\\">attorney</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 548.829 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 551.3562 668.9019)\\\" x=\\\"0 2.224 6.672 11.12 15.12\\\">fees,</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 659.8473)\\\" x=\\\"0 4.448 8.896 13.344 15.472 19.92 23.92 28.368 32.816 37.264 41.264 45.712 49.712 51.936 54.064 55.888 58.112 60.24 64.688 66.512 68.336 72.784 78.56 83.008 87.456 89.584 94.032 98.032 100.16 101.984 106.432 112.208\\\">and expenses, * D E M O *by law.</text></g><clipPath id=\\\"clip5-10\\\"><path d=\\\"M 35 633 L 128 633 L 128 657 L 35 657 L 35 633 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-10)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.6 656.6769 L 127.5 656.6769 L 127.5 633.077 L 35.6 633.077 L 35.6 656.6769 z \\\"/><path clip-path=\\\"url(#clip5-10)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.7 652.6769 L 123.4 652.6769 L 123.4 634.5676 L 39.7 634.5676 L 39.7 652.6769 z \\\"/><path clip-path=\\\"url(#clip5-10)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 40.675 652.6769 L 124.675 652.6769 L 124.675 642.6769 L 40.675 642.6769 L 40.675 652.6769 z \\\"/><g clip-path=\\\"url(#clip5-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 645.3019)\\\" x=\\\"0 7.552 9.376 11.2 13.024 15.152 19.152 23.6 28.048 30.176 34.624 39.072 43.072 45.2 50.536 53.2 57.648 59.472 61.696 64.36 68.808 71.032 72.856 77.304\\\">Will you pay Arbitration</text></g><path clip-path=\\\"url(#clip5-10)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 52.7473 643.6223 L 110.7473 643.6223 L 110.7473 633.6223 L 52.7473 633.6223 L 52.7473 643.6223 z \\\"/><g clip-path=\\\"url(#clip5-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 52.7473 636.2473)\\\" x=\\\"0 4.888 9.336 13.784 17.784 19.912 21.736 23.96 26.088 30.088 34.536 38.984 41.112 46.888 48.712 53.16\\\">Fees if you win?</text></g><clipPath id=\\\"clip5-11\\\"><path d=\\\"M 127 633 L 206 633 L 206 657 L 127 657 L 127 633 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 160.2754 645.3019)\\\" x=\\\"0 5.776 10.224\\\">No.</text></g><clipPath id=\\\"clip5-12\\\"><path d=\\\"M 205 633 L 573 633 L 573 657 L 205 657 L 205 633 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 645.3019)\\\" x=\\\"0 2.224 4.448 6.576 8.8 13.248 17.696 19.824 25.16 27.824 32.272 34.096 36.32 40.768 43.432 45.56 50.008 55.784 60.232 62.896 67.344 71.344 73.472 77.472 81.92 86.368 88.496 90.72 95.168 99.616 104.064 108.064 110.288 112.416 116.416 120.864 125.312 127.44 131.888 136.336 140.784 142.312 144.536 146.664 149.328 153.776 155.6 162.264 166.712 171.16 173.824 177.824 182.272 184.4 188.848 192.848 194.976 197.2 201.648 206.096 208.224 213.56 216.224 220.672 222.496 224.72 227.384 231.832 234.056 235.88 240.328 244.776 246.904 251.792 256.24 260.688 264.688\\\">If the Arbiter awards you funds, you don&apos;t reimburse us the Arbitration Fees.</text></g><clipPath id=\\\"clip5-13\\\"><path d=\\\"M 35 601 L 128 601 L 128 634 L 35 634 L 35 601 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-13)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.6 633.077 L 127.5 633.077 L 127.5 601.9129 L 35.6 601.9129 L 35.6 633.077 z \\\"/><path clip-path=\\\"url(#clip5-13)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.7 629.077 L 123.4 629.077 L 123.4 610.9676 L 39.7 610.9676 L 39.7 629.077 z \\\"/><path clip-path=\\\"url(#clip5-13)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 51.1711 629.077 L 112.1711 629.077 L 112.1711 619.077 L 51.1711 619.077 L 51.1711 629.077 z \\\"/><g clip-path=\\\"url(#clip5-13)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 51.1711 621.702)\\\" x=\\\"0 7.552 9.376 11.2 13.024 15.152 19.152 23.6 28.048 30.176 34.624 38.624 43.072 45.736 47.864 52.312 56.76\\\">Will you ever pay</text></g><path clip-path=\\\"url(#clip5-13)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 51.093 620.0223 L 112.093 620.0223 L 112.093 610.0223 L 51.093 610.0223 L 51.093 620.0223 z \\\"/><g clip-path=\\\"url(#clip5-13)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 51.093 612.6473)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 19.16 23.608 25.832 27.656 32.104 36.552 38.68 43.568 48.016 52.464 56.464\\\">Arbitration Fees?</text></g><clipPath id=\\\"clip5-14\\\"><path d=\\\"M 127 601 L 206 601 L 206 634 L 127 634 L 127 601 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-14)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 152.2715 621.702)\\\" x=\\\"0 5.336 9.784 13.784 16.008 21.784 26.232\\\">Yes/No.</text></g><clipPath id=\\\"clip5-15\\\"><path d=\\\"M 205 601 L 573 601 L 573 634 L 205 634 L 205 601 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 621.702)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 214.0453 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 217.6688 621.702)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 228.7898 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 232.4133 621.702)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.0227 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 259.6461 621.702)\\\" x=\\\"0 4.448 8.896 13.344 17.344 21.792 23.32\\\">doesn&apos;t</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 285.193 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 288.8164 621.702)\\\" x=\\\"0 4.448 10.224 14.672 17.336\\\">award</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 310.6055 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 314.2289 621.702)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 327.1273 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 330.7508 621.702)\\\" x=\\\"0 2.224 6.672 11.12 15.568 19.568\\\">funds,</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 352.5437 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 356.1672 621.702)\\\" x=\\\"0 2.224 6.672 11.12\\\">then</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.7375 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 375.3609 621.702)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.2594 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 391.8828 621.702)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 406.9961 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 410.6195 621.702)\\\" x=\\\"0 2.664 7.112 11.56 16.008\\\">repay</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.6312 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 434.2547 621.702)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 445.3758 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 448.9992 621.702)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 19.16 23.608 25.832 27.656 32.104\\\">Arbitration</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 485.5539 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 489.1773 621.702)\\\" x=\\\"0 4.888 9.336 13.784 17.784\\\">Fees.</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.1851 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 512.8086 621.702)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.5937 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 530.2172 621.702)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.8265 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 557.45 621.702)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 612.6473)\\\" x=\\\"0 4.448 8.896 12.896 14.72 19.168\\\">decide</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.2211 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 236.7228 612.6473)\\\" x=\\\"0 5.776 10.224 14.672 16.896 21.344 25.792\\\">whether</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 265.1838 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 268.6855 612.6473)\\\" x=\\\"0 4 8.448 12.896 14.424 16.248\\\">you&apos;ll</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 286.7597 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 290.2614 612.6473)\\\" x=\\\"0 4.448 8.896 12.896\\\">pay.</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 305.3825 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 308.8842 612.6473)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 313.3295 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 316.8312 612.6473)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.7297 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 333.2314 612.6473)\\\" x=\\\"0 6.664 11.112 15.112\\\">must</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 350.5673 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 354.0691 612.6473)\\\" x=\\\"0 4.448 8.896\\\">pay</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 366.9675 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 370.4692 612.6473)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 19.16 23.608 25.832 27.656 32.104\\\">Arbitration</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 407.0239 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 410.5256 612.6473)\\\" x=\\\"0 4.888 9.336 13.784 17.784\\\">Fees,</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.5334 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 434.0351 612.6473)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 445.1562 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 448.658 612.6473)\\\" x=\\\"0 4.448 11.112 15.56 20.008 24.456\\\">amount</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 475.3415 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 478.8433 612.6473)\\\" x=\\\"0 5.776 10.224 14.672 16.2\\\">won&apos;t</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 497.269 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 500.7708 612.6473)\\\" x=\\\"0 4.448 8.448 12.448 16.896 21.344\\\">exceed</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.5676 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 530.0694 612.6473)\\\" x=\\\"0 4 6.224 10.672 12.896\\\">state</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 547.4131 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 550.9148 612.6473)\\\" x=\\\"0 4 8.448 12.896 15.56\\\">court</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 603.5926)\\\" x=\\\"0 4 8.448 12.448 14.672 18.672\\\">costs.</text></g><clipPath id=\\\"clip5-16\\\"><path d=\\\"M 35 534 L 128 534 L 128 602 L 35 602 L 35 534 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-16)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.6 601.9129 L 127.5 601.9129 L 127.5 534.5301 L 35.6 534.5301 L 35.6 601.9129 z \\\"/><path clip-path=\\\"url(#clip5-16)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.7 597.9129 L 123.4 597.9129 L 123.4 579.8035 L 39.7 579.8035 L 39.7 597.9129 z \\\"/><path clip-path=\\\"url(#clip5-16)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 45.2063 597.9129 L 118.2063 597.9129 L 118.2063 587.9129 L 45.2063 587.9129 L 45.2063 597.9129 z \\\"/><g clip-path=\\\"url(#clip5-16)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 45.2063 590.5379)\\\" x=\\\"0 7.552 12 16.448 18.672 20.8 25.248 29.696 34.144 38.592 43.04 47.488 51.488 53.616 55.44 57.664 59.792 63.792 68.24\\\">What happens if you</text></g><path clip-path=\\\"url(#clip5-16)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 73.3 588.8582 L 90.3 588.8582 L 90.3 578.8582 L 73.3 578.8582 L 73.3 588.8582 z \\\"/><g clip-path=\\\"url(#clip5-16)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 73.3 581.4832)\\\" x=\\\"0 5.776 7.6 12.048\\\">win?</text></g><clipPath id=\\\"clip5-17\\\"><path d=\\\"M 127 534 L 206 534 L 206 602 L 127 602 L 127 534 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-17)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 131.9356 590.5379)\\\" x=\\\"0 5.336 9.784 14.232 16.36 20.36 24.808 29.256 31.08 35.528 37.656 42.104 46.552 48.776 50.904 57.568 62.016 64.68\\\">You could get more</text></g><g clip-path=\\\"url(#clip5-17)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 139.2246 581.4832)\\\" x=\\\"0 2.224 6.672 11.12 15.568 17.696 19.92 24.368 28.816 30.944 36.28 38.944 43.392 45.216 47.44 51.888\\\">than the Arbiter</text></g><g clip-path=\\\"url(#clip5-17)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 150.0449 572.4285)\\\" x=\\\"0 4.448 10.224 14.672 17.336 21.784 26.232 30.68\\\">awarded.</text></g><clipPath id=\\\"clip5-18\\\"><path d=\\\"M 205 534 L 573 534 L 573 602 L 205 602 L 205 534 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 590.5379)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 214.0453 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 216.367 590.5379)\\\" x=\\\"0 4.448\\\">an</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.2654 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 227.5871 590.5379)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608 25.136\\\">Arbiter&apos;s</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.7238 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 259.0455 590.5379)\\\" x=\\\"0 4.448 10.224 14.672 17.336\\\">award</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.8345 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 283.1562 590.5379)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 289.8281 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 292.1498 590.5379)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 305.0482 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 307.3699 590.5379)\\\" x=\\\"0 4.448 8.448 12.448 16.896 21.344 25.792\\\">exceeds</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 337.1667 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 339.4884 590.5379)\\\" x=\\\"0 4.448 8.896\\\">our</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.0509 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 353.3726 590.5379)\\\" x=\\\"0 1.824 6.272 10.272\\\">last</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 365.8687 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 368.1903 590.5379)\\\" x=\\\"0 5.336 9.784 12.008 14.232 16.056 20.504 27.168 31.616 36.064\\\">Settlement</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 406.4794 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 408.8011 590.5379)\\\" x=\\\"0 6.224 8.448 10.672 15.12 17.784\\\">Offer,</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 428.805 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 431.1266 590.5379)\\\" x=\\\"0 5.776\\\">we</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 441.3532 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 443.6749 590.5379)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.9249 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 457.2465 590.5379)\\\" x=\\\"0 4.448 8.896\\\">pay</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 470.145 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 472.4666 590.5379)\\\" x=\\\"0\\\">3</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 476.9159 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 479.2375 590.5379)\\\" x=\\\"0 4.448 11.112 15.56 20.008 24.456 26.68 30.68\\\">amounts.</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.1438 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 514.4654 590.5379)\\\" x=\\\"0 7.552\\\">We</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.4654 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 528.7871 590.5379)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 540.0371 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 542.3588 590.5379)\\\" x=\\\"0 4.448 8.896\\\">pay</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 555.2572 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 557.5789 590.5379)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 581.4832)\\\" x=\\\"0 4.448 7.112 11.56 16.008 18.232 22.68\\\">greater</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 234.9477 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 238.6632 581.4832)\\\" x=\\\"0 4.448\\\">of</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.3351 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 249.0506 581.4832)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 260.1717 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 263.8872 581.4832)\\\" x=\\\"0 4.448 10.224 14.672 17.336\\\">award</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 285.6762 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 289.3918 581.4832)\\\" x=\\\"0 4.448 11.112 15.56 20.008 24.456\\\">amount</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 316.0754 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 319.7909 581.4832)\\\" x=\\\"0 4.448\\\">or</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 326.9042 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 330.6197 581.4832)\\\" x=\\\"0 4.448 8.896 13.344 17.792 20.016 24.464\\\">$500.00</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.5376 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 363.2532 581.4832)\\\" x=\\\"0 2.664 5.504 9.952 14.4 18.848 23.296\\\">(&quot;bonus</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 390.5539 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 394.2695 581.4832)\\\" x=\\\"0 4.448 8.896 12.896 19.56 24.008 28.456 30.68 33.52 36.184\\\">payment&quot;).</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 432.6796 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 436.3951 581.4832)\\\" x=\\\"0 7.552\\\">We</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 448.3951 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 452.1107 581.4832)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 463.3607 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 467.0762 581.4832)\\\" x=\\\"0 4.448 8.896\\\">pay</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 479.9746 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 483.6901 581.4832)\\\" x=\\\"0 4 8.448 12.896\\\">your</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.2526 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 502.9682 581.4832)\\\" x=\\\"0 4.448 6.672 8.896 13.344 16.008 20.456 24.904\\\">attorney</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 531.8744 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 535.5899 581.4832)\\\" x=\\\"0 2.224 8 9.824 13.824\\\">twice</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.8634 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 557.5789 581.4832)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 572.4285)\\\" x=\\\"0 4.448 6.672 8.896 13.344 16.008 20.456 24.904\\\">attorney</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.5063 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 242.1723 572.4285)\\\" x=\\\"0 2.224 6.672 11.12\\\">fees</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.2934 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 260.9594 572.4285)\\\" x=\\\"0 4 8.448 12.896 15.12 19.568 22.232 24.896 29.344\\\">conferred</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 294.7563 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 298.4224 572.4285)\\\" x=\\\"0 2.664 5.504 9.952 12.176 14.4 18.848 21.512 25.96 30.408\\\">(&quot;attorney</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 332.8325 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 336.4986 572.4285)\\\" x=\\\"0 4.448 7.112 11.56 18.224 20.048 24.496 31.16 34 36.664\\\">premium&quot;).</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.3892 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 379.0552 572.4285)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.5005 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 387.1666 572.4285)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 398.2877 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 401.9537 572.4285)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 425.5631 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 429.2291 572.4285)\\\" x=\\\"0 4.448 7.112 11.56 16.008 18.672 22.672\\\">orders,</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.1276 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 457.7936 572.4285)\\\" x=\\\"0 5.776\\\">we</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.0202 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 471.6862 572.4285)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 482.9362 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 486.6023 572.4285)\\\" x=\\\"0 4.448 8.896\\\">pay</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.5007 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 503.1667 572.4285)\\\" x=\\\"0 2.664 7.112 11.56 15.56 20.008 24.456 28.904 33.352 35.176\\\">reasonable</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 542.7996 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 546.4656 572.4285)\\\" x=\\\"0 4.448 8.448 12.896 17.344 20.008\\\">expert</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 563.3738)\\\" x=\\\"0 5.776 7.6 9.824 14.272 18.72 22.72\\\">witness</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 236.3227 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 238.5023 563.3738)\\\" x=\\\"0 4 8.448 12.448 14.672\\\">costs</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.1741 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 259.3537 563.3738)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 272.7014 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 274.881 563.3738)\\\" x=\\\"0 4.448 6.672 11.12 15.568\\\">other</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 293.1153 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 295.2949 563.3738)\\\" x=\\\"0 4 8.448 12.448 14.672\\\">costs</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 313.9668 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 316.1464 563.3738)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.0448 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 331.2244 563.3738)\\\" x=\\\"0 1.824 6.272 10.272 14.72 17.384 20.048 24.496\\\">incurred</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 360.1736 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 362.3532 563.3738)\\\" x=\\\"0 2.664 5.504 9.504 13.952 17.952\\\">(&quot;cost</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 382.529 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 384.7086 563.3738)\\\" x=\\\"0 4.448 7.112 11.56 18.224 20.048 24.496 31.16 34 36.664\\\">premium&quot;).</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 423.5992 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 425.7788 563.3738)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.2241 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 432.4037 563.3738)\\\" x=\\\"0 5.776\\\">we</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 442.6303 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 444.8099 563.3738)\\\" x=\\\"0 4.448 8.896 12.896 17.344\\\">never</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 464.8216 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 467.0012 563.3738)\\\" x=\\\"0 6.664 11.112 15.56\\\">made</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 487.0129 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 489.1925 563.3738)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 493.6417 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 495.8213 563.3738)\\\" x=\\\"0 5.336 9.784 12.008 14.232 16.056 20.504 27.168 31.616 36.064\\\">Settlement</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 534.1103 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 536.2899 563.3738)\\\" x=\\\"0 6.224 8.448 10.672 15.12 17.784\\\">Offer,</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 556.2938 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 558.4734 563.3738)\\\" x=\\\"0 5.776\\\">we</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 554.3191)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 220.85 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 224.1983 554.3191)\\\" x=\\\"0 4.448 8.896\\\">pay</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 237.0968 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 240.4451 554.3191)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 251.5662 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 254.9145 554.3191)\\\" x=\\\"0 4.448 8.896 13.344 17.792\\\">bonus</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.7114 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 280.0597 554.3191)\\\" x=\\\"0 4.448 8.896 12.896 19.56 24.008 28.456 30.68\\\">payment,</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.966 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 316.3143 554.3191)\\\" x=\\\"0 4.448 6.672 8.896 13.344 16.008 20.456 24.904\\\">attorney</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 345.2206 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 348.5689 554.3191)\\\" x=\\\"0 4.448 7.112 11.56 18.224 20.048 24.496 31.16\\\">premium,</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 381.9556 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 385.3039 554.3191)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 398.6516 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 401.9999 554.3191)\\\" x=\\\"0 4.448 8.896\\\">any</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 414.8984 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 418.2467 554.3191)\\\" x=\\\"0 4 8.448 12.448\\\">cost</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 432.9186 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 436.2669 554.3191)\\\" x=\\\"0 4.448 7.112 11.56 18.224 20.048 24.496 31.16\\\">premium.</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 469.6536 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 473.002 554.3191)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.7871 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 490.1355 554.3191)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 513.7448 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 517.0932 554.3191)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 532.2064 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 535.5548 554.3191)\\\" x=\\\"0 4.448 7.112 11.56 16.008\\\">order</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 554.2306 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 557.5789 554.3191)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 545.2645)\\\" x=\\\"0 4.448 7.112 11.56 15.56 20.008 24.008\\\">process</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 237.6117 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 240.0494 545.2645)\\\" x=\\\"0 2.224 6.672\\\">for</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 249.3853 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 251.8229 545.2645)\\\" x=\\\"0 4.448 8.896 12.896 19.56 24.008 28.456 30.68\\\">payment.</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 284.7292 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 287.1668 545.2645)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.6121 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 294.0498 545.2645)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 298.499 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 300.9366 545.2645)\\\" x=\\\"0 1.824 6.272\\\">law</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.9874 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 315.425 545.2645)\\\" x=\\\"0 4.448 6.272 8.096 12.544 18.32\\\">allows</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 337.7493 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 340.1869 545.2645)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 353.0853 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 355.523 545.2645)\\\" x=\\\"0 6.664 11.112 13.776 18.224\\\">more,</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.9722 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 378.4098 545.2645)\\\" x=\\\"0 2.224 6.672 8.496\\\">this</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 390.9059 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 393.3436 545.2645)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496\\\">Clause</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 418.2928 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 420.7304 545.2645)\\\" x=\\\"0 5.776 10.224 14.672 16.2\\\">won&apos;t</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 439.1562 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 441.5938 545.2645)\\\" x=\\\"0 4.448 7.112 11.56 15.56 20.008 24.456\\\">prevent</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.2774 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 470.7151 545.2645)\\\" x=\\\"0 4 8.448 12.448\\\">such</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 487.6135 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 490.0511 545.2645)\\\" x=\\\"0 4.448 10.224 14.672 17.336 21.784\\\">award.</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 514.0628 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 516.5005 545.2645)\\\" x=\\\"0 7.552\\\">We</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 528.5005 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 530.9381 545.2645)\\\" x=\\\"0 5.776 10.224 14.672 16.2\\\">won&apos;t</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.3639 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 551.8015 545.2645)\\\" x=\\\"0 4 8.448 12.896\\\">seek</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 536.2098)\\\" x=\\\"0 4.448 6.672 8.896 13.344 16.008 20.456 24.904 28.904 31.032 33.256 37.704 42.152 46.152 48.28 52.728 57.176 61.624 63.752 68.2 72.2 76.648 81.096 85.544 89.544 93.992 97.992\\\">attorney fees and expenses.</text></g><clipPath id=\\\"clip5-19\\\"><path d=\\\"M 35 510 L 128 510 L 128 535 L 35 535 L 35 510 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-19)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.6 534.5301 L 127.5 534.5301 L 127.5 510.5301 L 35.6 510.5301 L 35.6 534.5301 z \\\"/><path clip-path=\\\"url(#clip5-19)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.7 530.5301 L 123.4 530.5301 L 123.4 512.4207 L 39.7 512.4207 L 39.7 530.5301 z \\\"/><path clip-path=\\\"url(#clip5-19)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 51.2317 530.5301 L 112.2317 530.5301 L 112.2317 520.5301 L 51.2317 520.5301 L 51.2317 530.5301 z \\\"/><g clip-path=\\\"url(#clip5-19)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 51.2317 523.1551)\\\" x=\\\"0 5.776 10.224 14.672 16.8 21.248 25.696 27.824 32.272 38.048 42.496 45.16 49.608 51.736 56.184\\\">Can an award be</text></g><path clip-path=\\\"url(#clip5-19)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 62.1535 521.4754 L 101.1535 521.4754 L 101.1535 511.4754 L 62.1535 511.4754 L 62.1535 521.4754 z \\\"/><g clip-path=\\\"url(#clip5-19)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 62.1535 514.1004)\\\" x=\\\"0 4.448 8.448 12.896 14.72 19.168 20.992 25.44 29.888 34.336\\\">explained?</text></g><clipPath id=\\\"clip5-20\\\"><path d=\\\"M 127 510 L 206 510 L 206 535 L 127 535 L 127 510 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-20)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 158.4961 523.1551)\\\" x=\\\"0 5.336 9.784 13.784\\\">Yes.</text></g><clipPath id=\\\"clip5-21\\\"><path d=\\\"M 205 510 L 573 510 L 573 535 L 205 535 L 205 510 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 523.1551)\\\" x=\\\"0\\\">A</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 214.9359 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 218.2265 523.1551)\\\" x=\\\"0 4.448 8.896 11.56 13.784\\\">party</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 236.0117 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 239.3023 523.1551)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 254.4155 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 257.7061 523.1551)\\\" x=\\\"0 2.664 7.112 11.56 16.008 20.456 24.456\\\">request</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 284.3897 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 287.6803 523.1551)\\\" x=\\\"0 4.448 8.896 11.12 15.568 17.392 19.216\\\">details</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 310.899 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 314.1896 523.1551)\\\" x=\\\"0 2.224 4.888 9.336\\\">from</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 330.1896 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 333.4802 523.1551)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 344.6013 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 347.8919 523.1551)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608\\\">Arbiter,</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 373.7239 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 377.0145 523.1551)\\\" x=\\\"0 5.776 7.6 9.824 14.272 16.096\\\">within</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 397.5613 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 400.8519 523.1551)\\\" x=\\\"0 4.448\\\">14</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 409.7504 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 413.0409 523.1551)\\\" x=\\\"0 4.448 8.896 12.896\\\">days</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 429.9394 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 433.23 523.1551)\\\" x=\\\"0 4.448\\\">of</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 439.9018 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 443.1924 523.1551)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.3135 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 457.6041 523.1551)\\\" x=\\\"0 2.664 7.112 8.936 10.76 15.208 19.656\\\">ruling.</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 479.4869 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 482.7775 523.1551)\\\" x=\\\"0 5.776 10.224 14.672\\\">Upon</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.9025 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 505.193 523.1551)\\\" x=\\\"0 4 8.448 12.448\\\">such</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 522.0915 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 525.3821 523.1551)\\\" x=\\\"0 2.664 7.112 11.56 16.008 20.456 24.456 26.68\\\">request,</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 554.2883 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 557.5789 523.1551)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 514.1004)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608 25.736 31.512 33.336 35.16 36.984 39.112 43.56 47.56 52.008 53.832 58.28 60.104 64.552 66.68 68.904 73.352 77.8 79.928 82.592 87.04 88.864 90.688 95.136 99.584 101.712 103.536 107.984 110.112 115.888 118.552 120.376 122.6 124.424 128.872 133.32\\\">Arbiter will explain the ruling in writing.</text></g><clipPath id=\\\"clip5-22\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 704.777 L 128 704.777 L 128 703.777 L 35.1 703.777 L 35.1 704.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 703.777 L 36.1 703.777 L 36.1 680.777 L 35.1 680.777 L 35.1 703.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128 704.777 L 206 704.777 L 206 703.777 L 128 703.777 L 128 704.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127 703.777 L 128 703.777 L 128 680.777 L 127 680.777 L 127 703.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 704.777 L 573.3 704.777 L 573.3 703.777 L 206 703.777 L 206 704.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.3 703.777 L 573.3 703.777 L 573.3 680.777 L 572.3 680.777 L 572.3 703.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 703.777 L 206 703.777 L 206 680.777 L 205 680.777 L 205 703.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 680.777 L 128 680.777 L 128 679.777 L 35.1 679.777 L 35.1 680.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 679.777 L 36.1 679.777 L 36.1 657.1769 L 35.1 657.1769 L 35.1 679.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128 680.777 L 206 680.777 L 206 679.777 L 128 679.777 L 128 680.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127 679.777 L 128 679.777 L 128 657.1769 L 127 657.1769 L 127 679.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 680.777 L 573.3 680.777 L 573.3 679.777 L 206 679.777 L 206 680.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.3 679.777 L 573.3 679.777 L 573.3 657.1769 L 572.3 657.1769 L 572.3 679.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 679.777 L 206 679.777 L 206 657.1769 L 205 657.1769 L 205 679.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 657.1769 L 128 657.1769 L 128 656.1769 L 35.1 656.1769 L 35.1 657.1769 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 656.1769 L 36.1 656.1769 L 36.1 633.577 L 35.1 633.577 L 35.1 656.1769 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128 657.1769 L 206 657.1769 L 206 656.1769 L 128 656.1769 L 128 657.1769 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127 656.1769 L 128 656.1769 L 128 633.577 L 127 633.577 L 127 656.1769 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 657.1769 L 573.3 657.1769 L 573.3 656.1769 L 206 656.1769 L 206 657.1769 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.3 656.1769 L 573.3 656.1769 L 573.3 633.577 L 572.3 633.577 L 572.3 656.1769 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 656.1769 L 206 656.1769 L 206 633.577 L 205 633.577 L 205 656.1769 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 633.577 L 128 633.577 L 128 632.577 L 35.1 632.577 L 35.1 633.577 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 632.577 L 36.1 632.577 L 36.1 602.4129 L 35.1 602.4129 L 35.1 632.577 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128 633.577 L 206 633.577 L 206 632.577 L 128 632.577 L 128 633.577 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127 632.577 L 128 632.577 L 128 602.4129 L 127 602.4129 L 127 632.577 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 633.577 L 573.3 633.577 L 573.3 632.577 L 206 632.577 L 206 633.577 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.3 632.577 L 573.3 632.577 L 573.3 602.4129 L 572.3 602.4129 L 572.3 632.577 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 632.577 L 206 632.577 L 206 602.4129 L 205 602.4129 L 205 632.577 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 602.4129 L 128 602.4129 L 128 601.4129 L 35.1 601.4129 L 35.1 602.4129 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 601.4129 L 36.1 601.4129 L 36.1 535.0301 L 35.1 535.0301 L 35.1 601.4129 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128 602.4129 L 206 602.4129 L 206 601.4129 L 128 601.4129 L 128 602.4129 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127 601.4129 L 128 601.4129 L 128 535.0301 L 127 535.0301 L 127 601.4129 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 602.4129 L 573.3 602.4129 L 573.3 601.4129 L 206 601.4129 L 206 602.4129 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.3 601.4129 L 573.3 601.4129 L 573.3 535.0301 L 572.3 535.0301 L 572.3 601.4129 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 601.4129 L 206 601.4129 L 206 535.0301 L 205 535.0301 L 205 601.4129 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 535.0301 L 128 535.0301 L 128 534.0301 L 35.1 534.0301 L 35.1 535.0301 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 511.0301 L 128 511.0301 L 128 510.0301 L 35.1 510.0301 L 35.1 511.0301 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 534.0301 L 36.1 534.0301 L 36.1 511.0301 L 35.1 511.0301 L 35.1 534.0301 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128 535.0301 L 206 535.0301 L 206 534.0301 L 128 534.0301 L 128 535.0301 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128 511.0301 L 206 511.0301 L 206 510.0301 L 128 510.0301 L 128 511.0301 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127 534.0301 L 128 534.0301 L 128 511.0301 L 127 511.0301 L 127 534.0301 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 535.0301 L 573.3 535.0301 L 573.3 534.0301 L 206 534.0301 L 206 535.0301 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 511.0301 L 573.3 511.0301 L 573.3 510.0301 L 206 510.0301 L 206 511.0301 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.3 534.0301 L 573.3 534.0301 L 573.3 511.0301 L 572.3 511.0301 L 572.3 534.0301 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 534.0301 L 206 534.0301 L 206 511.0301 L 205 511.0301 L 205 534.0301 z \\\"/><g clip-path=\\\"url(#clip5-22)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 273.1062 500.3113)\\\" x=\\\"0 7.78 10.56 16.12 21.68 25.01 27.67 35.45 41.01 43.79 46.07 51.63 57.19\\\">Other Options</text></g><clipPath id=\\\"clip5-23\\\"><path d=\\\"M 35 438 L 128 438 L 128 490 L 35 490 L 35 438 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-23)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.6 489.107 L 127.5 489.107 L 127.5 438.107 L 35.6 438.107 L 35.6 489.107 z \\\"/><path clip-path=\\\"url(#clip5-23)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.7 485.607 L 123.4 485.607 L 123.4 458.443 L 39.7 458.443 L 39.7 485.607 z \\\"/><path clip-path=\\\"url(#clip5-23)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 48.2942 485.607 L 115.2942 485.607 L 115.2942 475.607 L 48.2942 475.607 L 48.2942 485.607 z \\\"/><g clip-path=\\\"url(#clip5-23)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 48.2942 478.232)\\\" x=\\\"0 2.224 4.448 6.576 10.576 15.024 19.472 21.6 26.048 30.496 34.944 36.472 38.696 40.824 46.6 51.048 55.496 57.72 59.848 62.072\\\">If you don&apos;t want to</text></g><path clip-path=\\\"url(#clip5-23)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 43.8078 476.5524 L 119.8078 476.5524 L 119.8078 466.5524 L 43.8078 466.5524 L 43.8078 476.5524 z \\\"/><g clip-path=\\\"url(#clip5-23)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 43.8078 469.1774)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 29.392 31.616 33.744 37.744 42.192 46.64 48.768 52.768 57.216 61.664 63.792 67.792 70.016 71.84 73.664\\\">arbitrate, can you still</text></g><path clip-path=\\\"url(#clip5-23)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 49.8254 467.4977 L 113.8254 467.4977 L 113.8254 457.4977 L 49.8254 457.4977 L 49.8254 467.4977 z \\\"/><g clip-path=\\\"url(#clip5-23)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 49.8254 460.1227)\\\" x=\\\"0 4.448 8.896 11.12 13.248 17.696 19.824 22.048 24.712 29.16 33.608 37.608 42.056 46.056 48.28 50.104 54.552 59\\\">get a transaction?</text></g><clipPath id=\\\"clip5-24\\\"><path d=\\\"M 127 438 L 206 438 L 206 490 L 127 490 L 127 438 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-24)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.1817 478.232)\\\" x=\\\"0 5.336 9.784 13.784 16.008 18.136 23.472 27.92 32.368 34.496 38.496 42.944 47.392 49.52 53.968 58.416\\\">Yes. You can get</text></g><g clip-path=\\\"url(#clip5-24)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 137.2266 469.1774)\\\" x=\\\"0 4.448 8.896 11.56 13.688 17.688 22.136 24.8 28.8 30.624 34.624 39.072 43.072 45.2 49.648 54.096\\\">our* D E M O *nd</text></g><g clip-path=\\\"url(#clip5-24)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 143.668 460.1227)\\\" x=\\\"0 4.448 8.896 12.896 14.72 19.168 23.616 25.744 30.192 34.64 36.864 38.992 41.216\\\">decide not to</text></g><g clip-path=\\\"url(#clip5-24)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 150.6914 451.068)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 29.392\\\">arbitrate.</text></g><clipPath id=\\\"clip5-25\\\"><path d=\\\"M 205 438 L 573 438 L 573 490 L 205 490 L 205 438 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-25)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 478.232)\\\" x=\\\"0 5.776 10.224 14.672 18.672 20.496 24.944 29.392 32.056 34.184 36.408 40.856 45.304 49.304 53.752 55.88 59.88 64.328 68.776 70.6 74.6 79.048 83.048\\\">Consider these choices:</text></g><g clip-path=\\\"url(#clip5-25)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 469.1774)\\\" x=\\\"0 4.448 6.672 8.8 11.024 15.472 17.696 22.144 24.808 31.472 35.92 37.744 39.872 45.648 47.472 51.472 55.92 60.368 62.592 67.04 69.168 74.944 79.392 83.392 87.84 89.664 94.112 96.336 98.16 102.608 107.056 109.28 111.408 117.184 121.632 126.08 128.304 132.752 136.752 138.976 141.104 145.552 149.552 151.776 153.904 158.352 162.8 167.248 169.376 173.824 176.048 178.272 182.72 189.384 193.832 196.056 198.184 200.408 204.856 206.984 210.984 215.432 217.656 219.88 221.704 226.152 228.28 232.728 237.176 241.176 243.304 249.08 250.904 254.904 259.352 263.8 266.024 270.472 274.472\\\">1. Informal Dispute Resolution. Contact us, and attempt to settle any Disputes.</text></g><g clip-path=\\\"url(#clip5-25)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 460.1227)\\\" x=\\\"0 4.448 6.672 8.8 14.136 20.8 25.248 27.072 28.896 31.56 35.56 37.384 41.832 43.656 50.32 54.32 56.448 62.224 66.672 71.12 73.784 76.008 78.232 80.36 85.696 90.144 94.592 98.592 100.72 102.944 107.392 109.52 113.52 117.968 119.792 123.792 128.24 130.368 136.144 137.968 141.968 146.416 150.864 153.088 157.536 161.536 163.664 165.488 169.936 172.064 176.064 182.728 187.176 189 190.824 193.488 197.488 199.312 203.76 205.584 212.248 216.248 218.376 222.376 226.824 231.272 233.936 236.16 238.384 240.512 246.288 248.112 250.336 254.784 256.608 261.056 263.184 267.184 269.408 273.856 276.08 280.528 282.656 284.48 288.928 294.704 296.832 298.656 300.48 307.144 308.968 311.192 315.192\\\">2. Small-claims Court. Seek to solve Disputes in small-claims court, within state law limits.</text></g><g clip-path=\\\"url(#clip5-25)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 451.068)\\\" x=\\\"0 4.448 6.672 8.8 15.024 19.472 21.696 23.824 28.272 30.4 34.848 39.296 43.744 47.744 52.192 54.32 61.872 63.696 65.92 70.368 74.816 79.264 81.488 83.616 85.84 90.288 94.736 96.864 102.64 104.464 108.912 113.36 117.36 121.808 124.032 126.16 133.712 136.376 138.2 140.424 144.872 147 149.224 153.672 155.8 160.248 164.248 166.376 170.824 175.272 179.72 181.848 186.296 190.296 194.296 196.424 198.648 203.096 205.76 207.888 212.336 216.784 218.912 224.248 228.696 231.36 235.808 240.256 246.92 251.368 255.816 258.04 260.168 265.944 267.768 269.992 274.44 278.888 283.336 285.56 287.688 289.912 294.36 298.808 300.936 306.712 308.536 312.984 317.432 321.432 325.88\\\">3. Get a Lease Without the Clause. Write to us and ask for an Agreement without the Clause.</text></g><g clip-path=\\\"url(#clip5-25)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 442.0133)\\\" x=\\\"0 4.448 6.672 8.8 15.024 19.472 21.696 24.36 30.584 35.032 37.256 39.384 43.832 46.056 48.184 53.52 56.184 60.632 62.456 64.68 67.344 71.792 74.016 75.84 80.288 84.736 86.96 89.088 94.424 96.248 100.696 105.144 107.272 111.72 116.168 120.616 122.744 124.968 129.416 133.864 138.312 140.44 142.664 144.488 151.152 155.6 157.424 161.424 163.552 168 172.448 174.672 177.336 181.784 186.232 188.456\\\">4. Opt-Out of Arbitration. Sign and then timely opt-out.</text></g><clipPath id=\\\"clip5-26\\\"><path d=\\\"M 35 405 L 128 405 L 128 439 L 35 439 L 35 405 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-26)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.6 438.107 L 127.5 438.107 L 127.5 405.107 L 35.6 405.107 L 35.6 438.107 z \\\"/><path clip-path=\\\"url(#clip5-26)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.7 434.607 L 123.4 434.607 L 123.4 416.4977 L 39.7 416.4977 L 39.7 434.607 z \\\"/><path clip-path=\\\"url(#clip5-26)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 42.1633 434.607 L 121.1633 434.607 L 121.1633 424.607 L 42.1633 424.607 L 42.1633 434.607 z \\\"/><g clip-path=\\\"url(#clip5-26)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 42.1633 427.232)\\\" x=\\\"0 5.776 10.224 14.672 16.8 20.8 25.248 29.696 31.824 36.272 40.72 42.944 45.608 50.056 54.504 56.728 58.856 63.304 65.528 67.656 69.88 74.328\\\">Can you opt-out of the</text></g><path clip-path=\\\"url(#clip5-26)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 66.8508 425.5524 L 96.8508 425.5524 L 96.8508 415.5524 L 66.8508 415.5524 L 66.8508 425.5524 z \\\"/><g clip-path=\\\"url(#clip5-26)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 66.8508 418.1774)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496 24.944\\\">Clause?</text></g><clipPath id=\\\"clip5-27\\\"><path d=\\\"M 127 405 L 206 405 L 206 439 L 127 439 L 127 405 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-27)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 140.7617 427.232)\\\" x=\\\"0 5.336 9.784 13.784 16.008 18.136 25.688 27.512 29.736 34.184 36.008 40.456 42.584 47.032\\\">Yes. Within 60</text></g><g clip-path=\\\"url(#clip5-27)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 156.9395 418.1774)\\\" x=\\\"0 4.448 8.896 12.896 16.896\\\">days.</text></g><clipPath id=\\\"clip5-28\\\"><path d=\\\"M 205 405 L 573 405 L 573 439 L 205 439 L 205 405 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 427.232)\\\" x=\\\"0 7.552 10.216 12.04 14.264\\\">Write</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 228.3109 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 232.8069 427.232)\\\" x=\\\"0 4.448\\\">us</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 241.2562 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 245.7522 427.232)\\\" x=\\\"0 5.776 7.6 9.824 14.272 16.096\\\">within</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 266.299 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 270.795 427.232)\\\" x=\\\"0 4.448\\\">60</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 279.6935 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 284.1895 427.232)\\\" x=\\\"0 4 8.448 10.272 14.72 19.168 23.616 28.064\\\">calendar</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 314.9238 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 319.4198 427.232)\\\" x=\\\"0 4.448 8.896 12.896\\\">days</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 336.3183 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 340.8143 427.232)\\\" x=\\\"0 4.448\\\">of</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 347.4861 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 351.9821 427.232)\\\" x=\\\"0 4 5.824 10.272 14.72 16.544 20.992\\\">signing</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 377.4274 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 381.9234 427.232)\\\" x=\\\"0 4 8.448 12.896\\\">your</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 397.4859 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 401.9819 427.232)\\\" x=\\\"0 4.448 8.896 11.56 16.008 20.456 27.12 31.568 36.016\\\">agreement</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 440.228 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 444.724 427.232)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 451.3959 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 455.8919 427.232)\\\" x=\\\"0 4.448 8.896 11.12 13.784 18.232 22.68\\\">opt-out</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 480.7981 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 485.2941 427.232)\\\" x=\\\"0 4.448\\\">of</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 491.966 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 496.462 427.232)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 507.5831 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 512.0791 427.232)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496\\\">Clause</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 537.0283 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 541.5243 427.232)\\\" x=\\\"0 2.224 6.672\\\">for</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 550.8602 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 555.3562 427.232)\\\" x=\\\"0 2.224 6.672 11.12\\\">that</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 418.1774)\\\" x=\\\"0 4.448 8.896 11.56 16.008 20.456 27.12 31.568 36.016 38.24\\\">agreement.</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 250.0688 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 252.4616 418.1774)\\\" x=\\\"0 4.448 6.272 10.272\\\">List</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 264.9577 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 267.3505 418.1774)\\\" x=\\\"0 4 8.448 12.896\\\">your</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 282.913 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 285.3058 418.1774)\\\" x=\\\"0 4.448 8.896 15.56 20.008\\\">name,</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 307.5402 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 309.933 418.1774)\\\" x=\\\"0 4.448 8.896 13.344 16.008 20.456 24.456 28.456\\\">address,</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 340.6166 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 343.0095 418.1774)\\\" x=\\\"0 4.448 8.448 12.448 16.896 21.344 25.792\\\">account</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.029 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 373.4218 418.1774)\\\" x=\\\"0 4.448 8.896 15.56 20.008 24.456\\\">number</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 400.5468 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 402.9397 418.1774)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 416.2873 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 418.6801 418.1774)\\\" x=\\\"0 4.448 8.896 11.12 15.568\\\">date.</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 436.4731 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 438.8659 418.1774)\\\" x=\\\"0 4.448 6.272 10.272\\\">List</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 451.362 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 453.7549 418.1774)\\\" x=\\\"0 2.224 6.672 11.12\\\">that</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.0986 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 469.4914 418.1774)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 482.3899 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 484.7827 418.1774)\\\" x=\\\"0 2.84 7.288 11.736\\\">&quot;opt</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 498.7437 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 501.1365 418.1774)\\\" x=\\\"0 4.448 8.896 11.12 13.344\\\">out.&quot;</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 517.3201 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 519.7129 418.1774)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 524.1582 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 526.551 418.1774)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 539.4495 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 541.8423 418.1774)\\\" x=\\\"0 4.448 8.896\\\">opt</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.9634 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 555.3562 418.1774)\\\" x=\\\"0 4.448 8.896 11.12\\\">out,</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 409.1227)\\\" x=\\\"0 1.824 4.048 6.176 11.952 13.776 15.6 17.424 19.552 24 28.448 30.272 34.272 36.4 40.848 45.296 49.744 51.568 55.568 57.696 59.92 64.368 66.496 68.72 73.168 77.616 79.84 81.968 86.416 90.864 93.528 97.976 102.424 109.088 113.536 117.984 120.208\\\">it will only apply to that agreement.</text></g><clipPath id=\\\"clip5-29\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 489.607 L 128 489.607 L 128 488.607 L 35.1 488.607 L 35.1 489.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 488.607 L 36.1 488.607 L 36.1 438.607 L 35.1 438.607 L 35.1 488.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128 489.607 L 206 489.607 L 206 488.607 L 128 488.607 L 128 489.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127 488.607 L 128 488.607 L 128 438.607 L 127 438.607 L 127 488.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 489.607 L 573.3 489.607 L 573.3 488.607 L 206 488.607 L 206 489.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.3 488.607 L 573.3 488.607 L 573.3 438.607 L 572.3 438.607 L 572.3 488.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 488.607 L 206 488.607 L 206 438.607 L 205 438.607 L 205 488.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 438.607 L 128 438.607 L 128 437.607 L 35.1 437.607 L 35.1 438.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 405.607 L 128 405.607 L 128 404.607 L 35.1 404.607 L 35.1 405.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 437.607 L 36.1 437.607 L 36.1 405.607 L 35.1 405.607 L 35.1 437.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128 438.607 L 206 438.607 L 206 437.607 L 128 437.607 L 128 438.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128 405.607 L 206 405.607 L 206 404.607 L 128 404.607 L 128 405.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127 437.607 L 128 437.607 L 128 405.607 L 127 405.607 L 127 437.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 438.607 L 573.3 438.607 L 573.3 437.607 L 206 437.607 L 206 438.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 405.607 L 573.3 405.607 L 573.3 404.607 L 206 404.607 L 206 405.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.3 437.607 L 573.3 437.607 L 573.3 405.607 L 572.3 405.607 L 572.3 437.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 437.607 L 206 437.607 L 206 405.607 L 205 405.607 L 205 437.607 z \\\"/><g clip-path=\\\"url(#clip5-29)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 162.1492 377.7699)\\\" x=\\\"0 6.67 10 12.28 17.84 20.62 23.28 28.84 34.4 39.96 42.62 45.95 51.51 54.29 59.85 62.13 67.69 70.35 75.91 78.57 84.13 89.69 93.02 98.58 101.24 106.24 111.8 117.36 122.36 125.02 130.58 133.91 136.57 142.13 144.41 149.97 154.97 157.75 161.08 166.64 172.2 174.48 179.48 182.14 187.14 192.7 198.26 203.26 205.92 211.48 214.26 216.92 219.7 225.26 227.54 232.54 235.2 241.87 247.43 250.76 256.32 261.88 270.21 275.77 281.33\\\">Print and retain a hard copy or electronic copy of this Agreement</text></g><g clip-path=\\\"url(#clip5-29)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 36.5264)\\\" x=\\\"0 6.498 11.997 14.391 16.785 21.789 26.793 29.295 34.299 39.303 44.307 504 506.3906 508.7812 511.1719 513.5625 515.9531 518.3438 520.7344 523.125 525.5156\\\">UT  07/2019          </text></g><g clip-path=\\\"url(#clip5-29)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 26.3398)\\\" x=\\\"0 6.003 11.007 16.011 21.015\\\">Page </text></g><g clip-path=\\\"url(#clip5-29)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 55.8097 26.3398)\\\" x=\\\"0\\\">6</text></g><g clip-path=\\\"url(#clip5-29)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.815 26.3398)\\\" x=\\\"0 2.394 7.398 9.9\\\"> of </text></g><g clip-path=\\\"url(#clip5-29)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 73.1021 26.3398)\\\" x=\\\"0\\\">7</text></g><g clip-path=\\\"url(#clip5-29)\\\"><text stroke=\\\"none\\\" fill=\\\"#d9d9d9\\\" style=\\\"font-family:f5-0; font-size:54pt; white-space:pre\\\" transform=\\\"matrix(0.707 0.707 0.707 -0.707 135.6027 198.5094)\\\" x=\\\"0 56.016 96.048 136.08 176.112 216.144 236.16 284.184 324.216 344.232 364.248 416.232 456.264 480.24\\\">Qoppa Software</text></g><g clip-path=\\\"url(#clip5-29)\\\"><text stroke=\\\"none\\\" fill=\\\"#002ba6\\\" style=\\\"font-family:f5-0; font-size:9pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.932 772)\\\" x=\\\"0 9.336 16.008 22.68 29.352 36.024 39.36 47.364 54.036 57.372 60.708 69.372 76.044 80.04 86.712 90.048 94.044 97.38 104.712 111.384 115.38 118.716 126.72 132.72 139.392 142.056 148.728 155.4 158.736 161.4 168.072 174.744 178.08 187.416 194.088 196.752 202.752 206.088 210.084 213.42 220.092 223.428 226.764 233.436 239.436 242.772 246.108 249.444 258.108 266.772 275.436 278.772 285.444 292.116 298.788 305.46 312.132 315.468 321.468 328.14\\\">Qoppa Software - For Evaluation Only - https://www.qoppa.com</text></g></g></svg></svg></g></svg><br>\\n<?xml version='1.0' encoding='UTF-8'?><svg id=\\\"qoppa_document\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" version=\\\"1.1\\\" xmlns=\\\"http://www.w3.org/2000/svg\\\" xmlns:xlink=\\\"http://www.w3.org/1999/xlink\\\"><!-- jPDFWeb v2019R1.03 - Demo Version --><style>title p { display: block; }</style><g id=\\\"qoppa_viewxform\\\" transform=\\\"matrix(1 0 0 1 0 0)\\\"><style type=\\\"text/css\\\">@font-face {font-family:f6-0;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f6-1;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f6-2;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}</style><svg id=\\\"qoppa_page_p6\\\" class=\\\"qoppa_page\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\"><rect class=\\\"qoppa_pageborder\\\" x=\\\"0.5pt\\\" y=\\\"0.5pt\\\" width=\\\"611pt\\\" height=\\\"791pt\\\" fill=\\\"none\\\" /><svg class=\\\"qoppa_pagecontents\\\" x=\\\"0pt\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" viewBox=\\\"0 0 612 792\\\" ><g class=\\\"qoppa_contentstream\\\" transform=\\\"matrix(1 0 0 -1 0 792)\\\" fill=\\\"black\\\" stroke=\\\"black\\\" stroke-width=\\\"1\\\" stroke-linecap=\\\"butt\\\" stroke-linejoin=\\\"miter\\\" stroke-miterlimit=\\\"10\\\"><clipPath id=\\\"clip6-1\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 284.4843 735.5809)\\\" x=\\\"0 6.67 11.67 17.23 19.51 25.07 27.35\\\">Exhibit</text></g><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(0.99 0 0 -1 314.4843 735.5809)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 317.4843 735.5809)\\\" x=\\\"0\\\">A</text></g><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 94.4 699.1621)\\\" x=\\\"0 3.2783 9.3398 14.8398 20.9014 23.6816 29.1816\\\">Invoice</text></g><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 129.6432 699.1621)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 132.7994 699.1621)\\\" x=\\\"0\\\">#</text></g><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 138.8609 699.1621)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 142.0172 699.1621)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 142.0172 697.4792 L 142.0172 697.4792 L 145.0172 697.4792 L 145.4339 697.4792 L 145.4339 696.6458 L 145.0172 696.6458 L 142.0172 696.6458 L 141.6005 696.6458 L 141.6005 697.4792 z \\\"/><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 145.1734 699.1621)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 145.1734 697.4792 L 145.1734 697.4792 L 148.1734 697.4792 L 148.5901 697.4792 L 148.5901 696.6458 L 148.1734 696.6458 L 145.1734 696.6458 L 144.7568 696.6458 L 144.7568 697.4792 z \\\"/><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 148.3297 699.1621)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 148.3297 697.4792 L 148.3297 697.4792 L 151.3297 697.4792 L 151.7464 697.4792 L 151.7464 696.6458 L 151.3297 696.6458 L 148.3297 696.6458 L 147.913 696.6458 L 147.913 697.4792 z \\\"/><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 151.4859 699.1621)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 151.4859 697.4792 L 151.4859 697.4792 L 154.4859 697.4792 L 154.9026 697.4792 L 154.9026 696.6458 L 154.4859 696.6458 L 151.4859 696.6458 L 151.0693 696.6458 L 151.0693 697.4792 z \\\"/><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 154.6422 699.1621)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 154.6422 697.4792 L 154.6422 697.4792 L 157.6422 697.4792 L 158.0589 697.4792 L 158.0589 696.6458 L 157.6422 696.6458 L 154.6422 696.6458 L 154.2255 696.6458 L 154.2255 697.4792 z \\\"/><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 157.7984 699.1621)\\\" x=\\\"0\\\">0</text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 157.7984 697.4792 L 157.7984 697.4792 L 163.7984 697.4792 L 164.2151 697.4792 L 164.2151 696.6458 L 163.7984 696.6458 L 157.7984 696.6458 L 157.3818 696.6458 L 157.3818 697.4792 z \\\"/><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 163.86 699.1621)\\\" x=\\\"0\\\">4</text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 163.86 697.4792 L 163.86 697.4792 L 169.86 697.4792 L 170.2766 697.4792 L 170.2766 696.6458 L 169.86 696.6458 L 163.86 696.6458 L 163.4433 696.6458 L 163.4433 697.4792 z \\\"/><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 169.9215 699.1621)\\\" x=\\\"0\\\">1</text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 169.9215 697.4792 L 169.9215 697.4792 L 175.9215 697.4792 L 176.3382 697.4792 L 176.3382 696.6458 L 175.9215 696.6458 L 169.9215 696.6458 L 169.5048 696.6458 L 169.5048 697.4792 z \\\"/><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 175.983 699.1621)\\\" x=\\\"0\\\">2</text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 175.983 697.4792 L 175.983 697.4792 L 181.983 697.4792 L 182.3997 697.4792 L 182.3997 696.6458 L 181.983 696.6458 L 175.983 696.6458 L 175.5663 696.6458 L 175.5663 697.4792 z \\\"/><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 182.0445 699.1621)\\\" x=\\\"0\\\">9</text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 182.0445 697.4792 L 182.0445 697.4792 L 188.0445 697.4792 L 188.4612 697.4792 L 188.4612 696.6458 L 188.0445 696.6458 L 182.0445 696.6458 L 181.6279 696.6458 L 181.6279 697.4792 z \\\"/><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 188.1061 699.1621)\\\" x=\\\"0\\\">9</text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 188.1061 697.4792 L 188.1061 697.4792 L 194.1061 697.4792 L 194.5227 697.4792 L 194.5227 696.6458 L 194.1061 696.6458 L 188.1061 696.6458 L 187.6894 696.6458 L 187.6894 697.4792 z \\\"/><clipPath id=\\\"clip6-2\\\"><path d=\\\"M 71 551 L 537 551 L 537 572 L 71 572 L 71 551 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 286.9417 561.1477)\\\" x=\\\"0 6.003 9 14.004 19.008 24.012 28.512 31.014\\\">Products</text></g><clipPath id=\\\"clip6-3\\\"><path d=\\\"M 71 531 L 165 531 L 165 552 L 71 552 L 71 531 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 106.4173 541.1477)\\\" x=\\\"0 7.497 12.501 17.505 22.509\\\">Model</text></g><clipPath id=\\\"clip6-4\\\"><path d=\\\"M 164 531 L 258 531 L 258 552 L 164 552 L 164 531 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-4)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 189.1385 541.1477)\\\" x=\\\"0 6.498 11.502 16.002 20.502 23.499 25.551 30.555 33.057 35.109 40.113\\\">Description</text></g><clipPath id=\\\"clip6-5\\\"><path d=\\\"M 257 531 L 351 531 L 351 552 L 257 552 L 257 531 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-5)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 297.6995 541.1477)\\\" x=\\\"0 7.002 9.504\\\">Qty</text></g><clipPath id=\\\"clip6-6\\\"><path d=\\\"M 350 531 L 444 531 L 444 552 L 350 552 L 350 531 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-6)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 387.4212 541.1477)\\\" x=\\\"0 6.003 9 11.052 15.552\\\">Price</text></g><clipPath id=\\\"clip6-7\\\"><path d=\\\"M 443 531 L 537 531 L 537 552 L 443 552 L 443 531 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-7)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 460.2107 541.1477)\\\" x=\\\"0 6.003 10.503 13.005 18.009 23.013 28.017 33.021 38.025 40.419 46.422 49.419 51.471 55.971\\\">Extended Price</text></g><clipPath id=\\\"clip6-8\\\"><path d=\\\"M 164 511 L 258 511 L 258 532 L 164 532 L 164 511 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 178.6472 522.0696)\\\" x=\\\"0 5.336 9.784 12.448 16.448 18.272 22.272 26.72 30.72 32.848 37.296 41.744 46.192 48.32 53.208 57.656 62.104\\\">Services and Fees</text></g><clipPath id=\\\"clip6-9\\\"><path d=\\\"M 257 511 L 351 511 L 351 532 L 257 532 L 257 511 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 302.4754 522.0696)\\\" x=\\\"0\\\">1</text></g><clipPath id=\\\"clip6-10\\\"><path d=\\\"M 350 511 L 444 511 L 444 532 L 350 532 L 350 511 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 378.8426 522.0696)\\\" x=\\\"0 4.448 6.576 11.024 13.248 17.696 22.144 26.592 28.816 33.264\\\">$ 3,784.97</text></g><clipPath id=\\\"clip6-11\\\"><path d=\\\"M 443 511 L 537 511 L 537 532 L 443 532 L 443 511 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 471.8426 522.0696)\\\" x=\\\"0 4.448 6.576 11.024 13.248 17.696 22.144 26.592 28.816 33.264\\\">$ 3,784.97</text></g><clipPath id=\\\"clip6-12\\\"><path d=\\\"M 164 491 L 258 491 L 258 512 L 164 512 L 164 491 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 196.364 502.0696)\\\" x=\\\"0 6.664 11.112 13.336 15.56 18.224 22.672 26.672\\\">Mattress</text></g><clipPath id=\\\"clip6-13\\\"><path d=\\\"M 257 491 L 351 491 L 351 512 L 257 512 L 257 491 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-13)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 302.4754 502.0696)\\\" x=\\\"0\\\">1</text></g><clipPath id=\\\"clip6-14\\\"><path d=\\\"M 350 491 L 444 491 L 444 512 L 350 512 L 350 491 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-14)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 386.6277 502.0696)\\\" x=\\\"0 4.448 6.576 11.024 13.248 17.696\\\">$ 1.00</text></g><clipPath id=\\\"clip6-15\\\"><path d=\\\"M 443 491 L 537 491 L 537 512 L 443 512 L 443 491 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 479.6277 502.0696)\\\" x=\\\"0 4.448 6.576 11.024 13.248 17.696\\\">$ 1.00</text></g><clipPath id=\\\"clip6-16\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 71.2 572.4446 L 537.2 572.4446 L 537.2 571.4446 L 71.2 571.4446 L 71.2 572.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 536.2 571.4446 L 537.2 571.4446 L 537.2 552.4446 L 536.2 552.4446 L 536.2 571.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 71.2 571.4446 L 72.2 571.4446 L 72.2 552.4446 L 71.2 552.4446 L 71.2 571.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 71.2 552.4446 L 165.2 552.4446 L 165.2 551.4446 L 71.2 551.4446 L 71.2 552.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 71.2 551.4446 L 72.2 551.4446 L 72.2 532.4446 L 71.2 532.4446 L 71.2 551.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 165.2 552.4446 L 258.2 552.4446 L 258.2 551.4446 L 165.2 551.4446 L 165.2 552.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 164.2 551.4446 L 165.2 551.4446 L 165.2 532.4446 L 164.2 532.4446 L 164.2 551.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 258.2 552.4446 L 351.2 552.4446 L 351.2 551.4446 L 258.2 551.4446 L 258.2 552.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 257.2 551.4446 L 258.2 551.4446 L 258.2 532.4446 L 257.2 532.4446 L 257.2 551.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 351.2 552.4446 L 444.2 552.4446 L 444.2 551.4446 L 351.2 551.4446 L 351.2 552.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 350.2 551.4446 L 351.2 551.4446 L 351.2 532.4446 L 350.2 532.4446 L 350.2 551.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 444.2 552.4446 L 537.2 552.4446 L 537.2 551.4446 L 444.2 551.4446 L 444.2 552.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 536.2 551.4446 L 537.2 551.4446 L 537.2 532.4446 L 536.2 532.4446 L 536.2 551.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 443.2 551.4446 L 444.2 551.4446 L 444.2 532.4446 L 443.2 532.4446 L 443.2 551.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 71.2 532.4446 L 165.2 532.4446 L 165.2 531.4446 L 71.2 531.4446 L 71.2 532.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 71.2 531.4446 L 72.2 531.4446 L 72.2 512.4446 L 71.2 512.4446 L 71.2 531.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 165.2 532.4446 L 258.2 532.4446 L 258.2 531.4446 L 165.2 531.4446 L 165.2 532.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 164.2 531.4446 L 165.2 531.4446 L 165.2 512.4446 L 164.2 512.4446 L 164.2 531.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 258.2 532.4446 L 351.2 532.4446 L 351.2 531.4446 L 258.2 531.4446 L 258.2 532.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 257.2 531.4446 L 258.2 531.4446 L 258.2 512.4446 L 257.2 512.4446 L 257.2 531.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 351.2 532.4446 L 444.2 532.4446 L 444.2 531.4446 L 351.2 531.4446 L 351.2 532.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 350.2 531.4446 L 351.2 531.4446 L 351.2 512.4446 L 350.2 512.4446 L 350.2 531.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 444.2 532.4446 L 537.2 532.4446 L 537.2 531.4446 L 444.2 531.4446 L 444.2 532.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 536.2 531.4446 L 537.2 531.4446 L 537.2 512.4446 L 536.2 512.4446 L 536.2 531.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 443.2 531.4446 L 444.2 531.4446 L 444.2 512.4446 L 443.2 512.4446 L 443.2 531.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 71.2 512.4446 L 165.2 512.4446 L 165.2 511.4446 L 71.2 511.4446 L 71.2 512.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 71.2 492.4446 L 165.2 492.4446 L 165.2 491.4446 L 71.2 491.4446 L 71.2 492.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 71.2 511.4446 L 72.2 511.4446 L 72.2 492.4446 L 71.2 492.4446 L 71.2 511.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 165.2 512.4446 L 258.2 512.4446 L 258.2 511.4446 L 165.2 511.4446 L 165.2 512.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 165.2 492.4446 L 258.2 492.4446 L 258.2 491.4446 L 165.2 491.4446 L 165.2 492.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 164.2 511.4446 L 165.2 511.4446 L 165.2 492.4446 L 164.2 492.4446 L 164.2 511.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 258.2 512.4446 L 351.2 512.4446 L 351.2 511.4446 L 258.2 511.4446 L 258.2 512.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 258.2 492.4446 L 351.2 492.4446 L 351.2 491.4446 L 258.2 491.4446 L 258.2 492.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 257.2 511.4446 L 258.2 511.4446 L 258.2 492.4446 L 257.2 492.4446 L 257.2 511.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 351.2 512.4446 L 444.2 512.4446 L 444.2 511.4446 L 351.2 511.4446 L 351.2 512.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 351.2 492.4446 L 444.2 492.4446 L 444.2 491.4446 L 351.2 491.4446 L 351.2 492.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 350.2 511.4446 L 351.2 511.4446 L 351.2 492.4446 L 350.2 492.4446 L 350.2 511.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 444.2 512.4446 L 537.2 512.4446 L 537.2 511.4446 L 444.2 511.4446 L 444.2 512.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 444.2 492.4446 L 537.2 492.4446 L 537.2 491.4446 L 444.2 491.4446 L 444.2 492.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 536.2 511.4446 L 537.2 511.4446 L 537.2 492.4446 L 536.2 492.4446 L 536.2 511.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 443.2 511.4446 L 444.2 511.4446 L 444.2 492.4446 L 443.2 492.4446 L 443.2 511.4446 z \\\"/><clipPath id=\\\"clip6-17\\\"><path d=\\\"M 264 464 L 404 464 L 404 478 L 264 478 L 264 464 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-17)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.9359 468.3239)\\\" x=\\\"0 5.336 9.784 14.232 16.36 21.248 25.696 27.92 32.368 34.192\\\">Sub Total:</text></g><clipPath id=\\\"clip6-18\\\"><path d=\\\"M 403 464 L 535 464 L 535 478 L 403 478 L 403 464 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.55 468.3239)\\\" x=\\\"0 4.448 6.576 11.024 13.248 17.696 22.144 26.592 28.816 33.264\\\">$ 3,785.97</text></g><clipPath id=\\\"clip6-19\\\"><path d=\\\"M 264 451 L 404 451 L 404 465 L 264 465 L 264 451 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-19)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 358.6078 454.8239)\\\" x=\\\"0 5.336 9.784 11.608 16.056 20.056 22.184 27.072 31.52 35.52\\\">Sales Tax:</text></g><clipPath id=\\\"clip6-20\\\"><path d=\\\"M 403 451 L 535 451 L 535 465 L 403 465 L 403 451 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-20)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.55 454.8239)\\\" x=\\\"0 4.448 6.576 11.024 15.472 17.696 22.144\\\">$ 86.03</text></g><clipPath id=\\\"clip6-21\\\"><path d=\\\"M 264 437 L 404 437 L 404 452 L 264 452 L 264 437 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.7758 441.3239)\\\" x=\\\"0 4.888 9.336 11.56 16.008 17.832 19.96 22.184 26.632 30.632 35.08 36.904 40.904 45.352\\\">Total Invoice:</text></g><clipPath id=\\\"clip6-22\\\"><path d=\\\"M 403 437 L 535 437 L 535 452 L 403 452 L 403 437 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-22)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.55 441.3239)\\\" x=\\\"0 4.448 6.576 11.024 13.248 17.696 22.144 26.592 28.816 33.264\\\">$ 3,872.00</text></g><clipPath id=\\\"clip6-23\\\"><path d=\\\"M 264 424 L 404 424 L 404 438 L 264 438 L 264 424 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-23)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 284.3578 427.8239)\\\" x=\\\"0 5.336 12 14.224 16.352 22.128 26.576 31.024 33.152 38.04 42.488 46.936 51.384 55.384 57.512 60.176 65.952 68.176 72.624 74.752 80.088 82.752 87.2 91.2 93.328 98.216 102.664 107.112 109.776\\\">Amt Due Today (w/o Proc Fee):</text></g><clipPath id=\\\"clip6-24\\\"><path d=\\\"M 403 424 L 535 424 L 535 438 L 403 438 L 403 424 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.55 427.8239)\\\" x=\\\"0 4.448 6.576 11.024 13.248 17.696 22.144 26.592 28.816 33.264\\\">$ 3,784.30</text></g><clipPath id=\\\"clip6-25\\\"><path d=\\\"M 264 410 L 404 410 L 404 425 L 264 425 L 264 410 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-25)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.4242 414.3239)\\\" x=\\\"0 5.336 9.784 14.232 16.056 18.184 23.96 28.408 32.408 34.632 36.76 42.536 46.984 50.984 55.432 57.56 62.896 67.344 69.472 74.36 78.808 83.256 87.704 91.704\\\">Addl Cust Cash Pd Today:</text></g><clipPath id=\\\"clip6-26\\\"><path d=\\\"M 403 410 L 535 410 L 535 425 L 403 425 L 403 410 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-26)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.55 414.3239)\\\" x=\\\"0 4.448 6.576 11.024 13.248 17.696\\\">$ 0.00</text></g><clipPath id=\\\"clip6-27\\\"><path d=\\\"M 264 397 L 404 397 L 404 411 L 264 411 L 264 397 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 333.8422 400.8239)\\\" x=\\\"0 5.336 9.784 14.232 18.68 20.808 26.584 31.032 35.032 39.48 41.608 47.384 51.384 55.832 60.28\\\">Snap Cash Used:</text></g><clipPath id=\\\"clip6-28\\\"><path d=\\\"M 403 397 L 535 397 L 535 411 L 403 411 L 403 397 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.55 400.8239)\\\" x=\\\"0 4.448 6.576 11.024 15.472 17.696 22.144\\\">$ 87.70</text></g><clipPath id=\\\"clip6-29\\\"><path d=\\\"M 264 383 L 404 383 L 404 398 L 264 398 L 264 383 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-29)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 274.8227 387.3239)\\\" x=\\\"0 5.336 8 12.448 16.448 18.576 23.464 27.912 32.36 34.488 40.264 44.712 46.536 48.36 52.808 56.808 59.032 63.48 67.928 70.056 72.72 77.168 81.168 83.296 89.96 94.408 97.072 101.072 105.52 109.968 114.416 116.64 119.304\\\">Proc Fee Collected (by Merchant):</text></g><clipPath id=\\\"clip6-30\\\"><path d=\\\"M 403 383 L 535 383 L 535 398 L 403 398 L 403 383 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.55 387.3239)\\\" x=\\\"0 4.448 6.576 11.024 13.248 17.696\\\">$ 0.00</text></g><clipPath id=\\\"clip6-31\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip6-31)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 403.55 464.9489 L 534.3 464.9489 L 534.3 464.4489 L 403.55 464.4489 L 403.55 464.9489 z \\\"/><path clip-path=\\\"url(#clip6-31)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 403.55 451.4489 L 534.3 451.4489 L 534.3 450.9489 L 403.55 450.9489 L 403.55 451.4489 z \\\"/><path clip-path=\\\"url(#clip6-31)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 403.55 437.9489 L 534.3 437.9489 L 534.3 437.4489 L 403.55 437.4489 L 403.55 437.9489 z \\\"/><path clip-path=\\\"url(#clip6-31)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 403.55 424.4489 L 534.3 424.4489 L 534.3 423.9489 L 403.55 423.9489 L 403.55 424.4489 z \\\"/><path clip-path=\\\"url(#clip6-31)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 403.55 410.9489 L 534.3 410.9489 L 534.3 410.4489 L 403.55 410.4489 L 403.55 410.9489 z \\\"/><path clip-path=\\\"url(#clip6-31)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 403.55 397.4489 L 534.3 397.4489 L 534.3 396.9489 L 403.55 396.9489 L 403.55 397.4489 z \\\"/><path clip-path=\\\"url(#clip6-31)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 403.55 383.9489 L 534.3 383.9489 L 534.3 383.4489 L 403.55 383.4489 L 403.55 383.9489 z \\\"/><g clip-path=\\\"url(#clip6-31)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 36.5264)\\\" x=\\\"0 6.498 11.997 14.391 16.785 21.789 26.793 29.295 34.299 39.303 44.307 504 506.3906 508.7812 511.1719 513.5625 515.9531 518.3438 520.7344 523.125 525.5156\\\">UT  07/2019          </text></g><g clip-path=\\\"url(#clip6-31)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 26.3398)\\\" x=\\\"0 6.003 11.007 16.011 21.015\\\">Page </text></g><g clip-path=\\\"url(#clip6-31)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 55.8097 26.3398)\\\" x=\\\"0\\\">7</text></g><g clip-path=\\\"url(#clip6-31)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.815 26.3398)\\\" x=\\\"0 2.394 7.398 9.9\\\"> of </text></g><g clip-path=\\\"url(#clip6-31)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 73.1021 26.3398)\\\" x=\\\"0\\\">7</text></g><g clip-path=\\\"url(#clip6-31)\\\"><text stroke=\\\"none\\\" fill=\\\"#d9d9d9\\\" style=\\\"font-family:f6-0; font-size:54pt; white-space:pre\\\" transform=\\\"matrix(0.707 0.707 0.707 -0.707 135.6027 198.5094)\\\" x=\\\"0 56.016 96.048 136.08 176.112 216.144 236.16 284.184 324.216 344.232 364.248 416.232 456.264 480.24\\\">Qoppa Software</text></g><g clip-path=\\\"url(#clip6-31)\\\"><text stroke=\\\"none\\\" fill=\\\"#002ba6\\\" style=\\\"font-family:f6-0; font-size:9pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.932 772)\\\" x=\\\"0 9.336 16.008 22.68 29.352 36.024 39.36 47.364 54.036 57.372 60.708 69.372 76.044 80.04 86.712 90.048 94.044 97.38 104.712 111.384 115.38 118.716 126.72 132.72 139.392 142.056 148.728 155.4 158.736 161.4 168.072 174.744 178.08 187.416 194.088 196.752 202.752 206.088 210.084 213.42 220.092 223.428 226.764 233.436 239.436 242.772 246.108 249.444 258.108 266.772 275.436 278.772 285.444 292.116 298.788 305.46 312.132 315.468 321.468 328.14\\\">Qoppa Software - For Evaluation Only - https://www.qoppa.com</text></g></g></svg></svg></g></svg><br>\\n</body> \\n </html>\\n\"\n        }\n    },\n    \"success\": true,\n    \"status\": 200\n}"},{"id":"ccde7e60-bad8-4c1c-8fec-b8367b49f824","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Content-Type","value":"application/json"},{"key":"Request-Id","value":"123"}],"url":{"raw":"{{baseUrl}}/platform/v1/application/{{applicationId}}/agreement?renderType=html&document=agreement","host":["{{baseUrl}}"],"path":["platform","v1","application","{{applicationId}}","agreement"],"query":[{"key":"renderType","value":"html"},{"key":"document","value":"agreement"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"136"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 16 Jul 2020 17:02:21 GMT"},{"key":"x-amzn-RequestId","value":"7bdbe015-ee4e-47a5-a8c5-70f56a2cde04"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"Pxo0aFo-PHcFy6A="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f10881c-f4d45cc21e4bc05a15184b31"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 0a72bb7be10458e1aefa37a097f21894.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"Zcwg0uNr6gJ8ilLNW9-r5krSpR6T7Z-LLnNpLYvub6tAYp-Dx30msw=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"status\": 404,\n    \"error\": [\n        {\n            \"code\": \"application_invalid\",\n            \"type\": \"invalid_request_error\",\n            \"message\": \"Application not found\"\n        }\n    ]\n}"},{"id":"bb3db3c9-f2b5-4c02-b33f-4be11ebcbcb6","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Content-Type","value":"application/json"},{"key":"Request-Id","value":"123"}],"url":{"raw":"{{baseUrl}}/platform/v1/application/{{applicationId}}/agreement?renderType=html&document=agreement","host":["{{baseUrl}}"],"path":["platform","v1","application","{{applicationId}}","agreement"],"query":[{"key":"renderType","value":"html"},{"key":"document","value":"agreement"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1825083"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:24:43 GMT"},{"key":"x-amzn-RequestId","value":"40b52282-2a30-4df6-8cdf-82aa447ca6b3"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P02OxEfnPHcF9yw="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d0c4-8b923ff4b1bf11f48fb3b3b8"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"OcTSGzIIqa3esIfeYqbdx2iywfRfpBgLnbSAPl3aJcuDg_Vl84kX2A=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"agreementInformation\": {\n            \"applicationId\": \"{{applicationId}}\",\n            \"customerInformation\": {\n                \"dobDate\": \"1977-07-07\",\n                \"customerId\": \"000007777\",\n                \"customerIdType\": \"SSN4\",\n                \"mobilePhone\": \"1000000019\",\n                \"mobilePhoneCountry\": \"US\",\n                \"email\": \"test@test.com\",\n                \"firstName\": \"John\",\n                \"lastName\": \"Smith\",\n                \"billingAddress\": {\n                    \"streetAddress\": \"123mainst\",\n                    \"city\": \"Saltlakecity\",\n                    \"state\": \"UT\",\n                    \"country\": \"US\",\n                    \"postalCode\": \"84001\"\n                }\n            },\n            \"snapFinanceInformation\": {\n                \"businessName\": \"Snap RTO LLC\",\n                \"snapAddress\": {\n                    \"streetAddress\": \"Any street in town\",\n                    \"city\": \"Salt Lake City\",\n                    \"state\": \"UT\",\n                    \"country\": \"US\",\n                    \"postalCode\": \"84126\"\n                },\n                \"email\": \"test@test.com\",\n                \"phoneNumber\": \"1000000007\",\n                \"phoneNumberCode\": \"US\"\n            },\n            \"agreementDetails\": \"<!DOCTYPE html>\\n<html>\\n\\t<head>\\n\\t\\t<meta charset=\\\"utf-8\\\">\\n\\t\\t<style type=\\\"text/css\\\">\\n\\t\\t\\tbody {background-color:lightgray; text-align:center;}\\n\\t\\t\\t.qoppa_pageborder {fill:white;}\\n\\t\\t\\t#qoppa_document {padding:5px; margin:auto;}\\n\\t\\t</style>\\n\\t</head>\\n\\t<body>\\n<?xml version='1.0' encoding='UTF-8'?><svg id=\\\"qoppa_document\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" version=\\\"1.1\\\" xmlns=\\\"http://www.w3.org/2000/svg\\\" xmlns:xlink=\\\"http://www.w3.org/1999/xlink\\\"><!-- jPDFWeb v2019R1.03 - Demo Version --><style>title p { display: block; }</style><g id=\\\"qoppa_viewxform\\\" transform=\\\"matrix(1 0 0 1 0 0)\\\"><style type=\\\"text/css\\\">@font-face {font-family:f0-0;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f0-1;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f0-2;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}</style><svg id=\\\"qoppa_page_p0\\\" class=\\\"qoppa_page\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\"><rect class=\\\"qoppa_pageborder\\\" x=\\\"0.5pt\\\" y=\\\"0.5pt\\\" width=\\\"611pt\\\" height=\\\"791pt\\\" fill=\\\"none\\\" /><svg class=\\\"qoppa_pagecontents\\\" x=\\\"0pt\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" viewBox=\\\"0 0 612 792\\\" ><g class=\\\"qoppa_contentstream\\\" transform=\\\"matrix(1 0 0 -1 0 792)\\\" fill=\\\"black\\\" stroke=\\\"black\\\" stroke-width=\\\"1\\\" stroke-linecap=\\\"butt\\\" stroke-linejoin=\\\"miter\\\" stroke-miterlimit=\\\"10\\\"><clipPath id=\\\"clip0-1\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><g clip-path=\\\"url(#clip0-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:8.25pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 213.8098 759.5594)\\\" x=\\\"0 7.942 15.279 23.221 29.942 37.279 43.395 47.058 54.395 62.337 70.279 78.221 86.163 93.5 100.837 108.174 111.1 118.437 126.995 134.937 142.274 149.611 158.774 166.111 174.053\\\">RENTAL-PURCHASE AGREEMENT</text></g><clipPath id=\\\"clip0-2\\\"><path d=\\\"M 35 701 L 285 701 L 285 758 L 35 758 L 35 701 z \\\"/></clipPath><g clip-path=\\\"url(#clip0-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 745.5311)\\\" x=\\\"0 5.56 11.12 16.68 21.68 27.24 29.9 37.12 42.68 51.01 56.57 62.13 67.69 72.69 75.35 78.68 84.24 89.8 94.8 99.8 105.36 108.69 112.02 114.8 117.46 124.13 131.35 138.02 144.69 147.35 154.57 160.68 168.46 171.12 176.68 182.24\\\">Lease Company (Lessor): SNAP RTO LLC</text></g><g clip-path=\\\"url(#clip0-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 732.2127)\\\" x=\\\"0 6.67 9.45 17.23 20.01 22.67 29.34 34.9 39.9 42.56 48.12 53.68 59.24 64.8\\\">P.O. Box 26561</text></g><g clip-path=\\\"url(#clip0-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 718.8943)\\\" x=\\\"0 6.67 12.23 14.51 17.29 19.95 25.51 31.07 36.07 41.63 44.29 51.51 53.79 56.57 61.57 64.35 67.01 74.23 80.34 83 88.56 94.12 99.68 105.24\\\">Salt Lake City, UT 84126</text></g><g clip-path=\\\"url(#clip0-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 705.576)\\\" x=\\\"0 6.67 12.23 17.79 23.35 28.91 31.69 34.35 37.68 43.24 48.8 54.36 57.69 60.35 65.91 71.47 77.03 80.36 85.92 91.48 97.04\\\">Phone: (877) 557-3769</text></g><clipPath id=\\\"clip0-3\\\"><path d=\\\"M 284 701 L 574 701 L 574 758 L 284 758 L 284 701 z \\\"/></clipPath><g clip-path=\\\"url(#clip0-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.225 745.5311)\\\" x=\\\"0 5.56 11.12 16.12 21.12 26.68 32.24 35.02 37.68 42.68 48.24 53.8 59.36 62.02 64.68 71.35 79.68 81.96 84.74\\\">Lessee: John  Smith</text></g><g clip-path=\\\"url(#clip0-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 290.225 732.2127)\\\" x=\\\"0 5.56 11.12 16.68 25.01 30.57 32.85 38.41 43.41\\\">123mainst</text></g><g clip-path=\\\"url(#clip0-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.225 718.8943)\\\" x=\\\"0 6.67 12.23 14.51 17.29 19.57 25.13 30.13 35.69 40.69 42.97 45.75 50.75 53.53 56.19 63.41 69.52 72.18 77.74 83.3 88.86 94.42\\\">Saltlakecity, UT 84001</text></g><g clip-path=\\\"url(#clip0-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 290.225 705.576)\\\" x=\\\"0 2.28 7.84 13.4 15.68 21.24 26.8 32.36 37.36 47.51 53.07 58.07 66.4 71.96 74.74 79.74 85.3\\\">jbolanos@acme.com</text></g><clipPath id=\\\"clip0-4\\\"><path d=\\\"M 35 674 L 285 674 L 285 702 L 35 702 L 35 674 z \\\"/></clipPath><g clip-path=\\\"url(#clip0-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 689.7576)\\\" x=\\\"0 6.67 12.23 17.79 20.07 22.35 27.35 32.91 35.69 37.97 43.53 49.09 51.75 54.53 61.75 64.53 67.19 72.75 78.31 83.87 89.43 94.99 100.55 106.11 111.67 117.23 126.67 133.89\\\">Application ID: 200717000WUT</text></g><clipPath id=\\\"clip0-5\\\"><path d=\\\"M 284 674 L 428 674 L 428 702 L 284 702 L 284 674 z \\\"/></clipPath><g clip-path=\\\"url(#clip0-5)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.225 689.7576)\\\" x=\\\"0 5.56 11.12 16.68 21.68 27.24 29.9 37.12 42.68 45.46 51.02 53.8 56.46 62.02 67.58 70.36 75.92 81.48 84.26 89.82 95.38 100.94\\\">Lease Date: 07/17/2020</text></g><g clip-path=\\\"url(#clip0-5)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.225 678.4393)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 27.68 34.35\\\">10:22 AM</text></g><clipPath id=\\\"clip0-6\\\"><path d=\\\"M 427 674 L 574 674 L 574 702 L 427 702 L 427 674 z \\\"/></clipPath><g clip-path=\\\"url(#clip0-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 433.375 689.7576)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79 40.45 47.67 53.23 58.79 64.35 66.63 69.41 71.69 77.25 82.81 85.59 88.25 95.47 101.03\\\">Property Condition: New</text></g><clipPath id=\\\"clip0-7\\\"><path d=\\\"M 35 631 L 574 631 L 574 675 L 35 675 L 35 631 z \\\"/></clipPath><g clip-path=\\\"url(#clip0-7)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 662.6209)\\\" x=\\\"0 7.22 12.78 17.78 22.78 26.11 28.39 33.95 36.73 39.01 44.57 50.13 52.79 58.35 61.13 63.79 69.35 74.91 80.47 86.03 91.03 93.69 99.25 104.81 107.09 112.65 118.21 120.87 126.43 131.99 135.32 140.32 145.88 151.44 156.44 162 167.56 170.22 173 176.33 181.89 190.22 192.88 195.66 201.22 206.78 209.44 216.66 222.22 225 230.56 232.84 235.12 240.68 244.01 246.67 250 252.78 258.34 263.9 266.56 269.89 276.56 279.89 285.45 291.01 296.57 299.9 302.68 307.68 311.01 314.34 317 319.78 325.34 328.67 331.45 337.01 342.57 345.9 348.56 354.12 359.12 364.68 366.96 372.52 374.8 380.36 385.92 391.48 394.14 396.42 401.98 404.64 411.31 416.31 421.87 424.15 429.71 431.99 434.77 437.43 444.1\\\">Description of goods being purchased from th* D E M O *(the “Property”) further explained in Exhibit A:</text></g><g clip-path=\\\"url(#clip0-7)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 649.3025)\\\" x=\\\"0 6.67 12.23 15.56 20.56 22.84 27.84 33.4 38.4 41.06 46.62 52.18 57.74 60.4 66.51 72.07 77.63 82.63 85.41 88.07 96.4 101.96 104.74 107.52 110.85 116.41 121.41\\\">Services and Fees, Mattress</text></g><clipPath id=\\\"clip0-8\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.025 757.4998 L 285.075 757.4998 L 285.075 756.9998 L 35.025 756.9998 L 35.025 757.4998 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.025 756.9998 L 35.525 756.9998 L 35.525 701.7264 L 35.025 701.7264 L 35.025 756.9998 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 285.075 757.4998 L 573.375 757.4998 L 573.375 756.9998 L 285.075 756.9998 L 285.075 757.4998 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.875 756.9998 L 573.375 756.9998 L 573.375 701.7264 L 572.875 701.7264 L 572.875 756.9998 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 284.575 756.9998 L 285.075 756.9998 L 285.075 701.7264 L 284.575 701.7264 L 284.575 756.9998 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.025 701.7264 L 285.075 701.7264 L 285.075 701.2264 L 35.025 701.2264 L 35.025 701.7264 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.025 701.2264 L 35.525 701.2264 L 35.525 674.5897 L 35.025 674.5897 L 35.025 701.2264 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 285.075 701.7264 L 428.225 701.7264 L 428.225 701.2264 L 285.075 701.2264 L 285.075 701.7264 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 284.575 701.2264 L 285.075 701.2264 L 285.075 674.5897 L 284.575 674.5897 L 284.575 701.2264 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 428.225 701.7264 L 573.375 701.7264 L 573.375 701.2264 L 428.225 701.2264 L 428.225 701.7264 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.875 701.2264 L 573.375 701.2264 L 573.375 674.5897 L 572.875 674.5897 L 572.875 701.2264 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 427.725 701.2264 L 428.225 701.2264 L 428.225 674.5897 L 427.725 674.5897 L 427.725 701.2264 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.025 674.5897 L 573.375 674.5897 L 573.375 674.0897 L 35.025 674.0897 L 35.025 674.5897 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.025 632.1346 L 573.375 632.1346 L 573.375 631.6346 L 35.025 631.6346 L 35.025 632.1346 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.875 674.0897 L 573.375 674.0897 L 573.375 632.1346 L 572.875 632.1346 L 572.875 674.0897 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.025 674.0897 L 35.525 674.0897 L 35.525 632.1346 L 35.025 632.1346 L 35.025 674.0897 z \\\"/><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 620.1658)\\\" x=\\\"0 6.11 13.89 21.11 29.44 36.11 42.22 45 52.78\\\">FORMATION</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 93.0951 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 97.0295 620.1658)\\\" x=\\\"0 7.78\\\">OF</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 110.9162 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 114.8506 620.1658)\\\" x=\\\"0 6.67 14.45 21.67 28.34 35.01 43.34 50.01 57.23 63.34\\\">AGREEMENT.</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 180.9688 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 184.9032 620.1658)\\\" x=\\\"0 6.67\\\">By</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 196.5731 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 200.5075 620.1658)\\\" x=\\\"0 5 7.28 12.84 18.4 20.68 26.24\\\">signing</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 232.3141 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 236.2485 620.1658)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 251.8686 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 255.803 620.1658)\\\" x=\\\"0 7.22 12.78 18.34 21.12 26.68 28.96 32.29 38.96 44.52 47.85 52.85 58.41 63.97 68.97\\\">Rental-Purchase</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 330.344 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 334.2784 620.1658)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement,</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 385.9727 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 389.9071 620.1658)\\\" x=\\\"0 5.56 7.84 12.84\\\">also</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 408.3105 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 412.2448 620.1658)\\\" x=\\\"0 5 10.56 16.12 23.34\\\">known</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 441.1511 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 445.0855 620.1658)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 455.647 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 459.5814 620.1658)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 465.1429 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 469.0773 620.1658)\\\" x=\\\"0 5.56 11.12 16.68 21.68\\\">Lease</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 496.3234 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 500.2578 620.1658)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.1738 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.1082 620.1658)\\\" x=\\\"0 7.22 9.5 12.28\\\">with</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 608.8475)\\\" x=\\\"0 7.78 13.34 16.12 18.4 23.96\\\">Option</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 62.6215 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 66.5575 608.8475)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 74.8974 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 78.8334 608.8475)\\\" x=\\\"0 6.67 12.23 15.56 20.56 26.12 31.68 36.68\\\">Purchase</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 121.0795 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 125.0155 608.8475)\\\" x=\\\"0 3.33 6.11 11.67 13.95\\\">(this</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 143.9657 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 147.9017 608.8475)\\\" x=\\\"0 3.33 10 15.56 18.89 24.45 30.01 38.34 43.9 49.46 52.24 55.57 58.9\\\">“Agreement”),</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.5863 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 213.5223 608.8475)\\\" x=\\\"0 5 10.56 16.12\\\">you,</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 232.4237 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 236.3597 608.8475)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 250.2611 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 254.1971 608.8475)\\\" x=\\\"0 7.22 12.78 17.78 20.56 26.12 34.45 40.01 43.34 46.67 51.67\\\">Customer(s)</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 309.202 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 313.138 608.8475)\\\" x=\\\"0 3.33 6.66 11.66 17.22 22.78\\\">(“you”</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 339.2513 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 343.1873 608.8475)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.8719 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 363.8079 608.8475)\\\" x=\\\"0 3.33 8.33 13.89 19.45 22.78 26.11\\\">“your”)</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.2513 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 397.1873 608.8475)\\\" x=\\\"0 5 10.56 16.12 21.68 26.68\\\">choose</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 429.4334 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 433.3695 608.8475)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 441.7093 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 445.6453 608.8475)\\\" x=\\\"0 2.28 7.84 13.4 18.4\\\">lease</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 469.6102 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 473.5462 608.8475)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 487.4476 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 491.3836 608.8475)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.1766 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 533.1126 608.8475)\\\" x=\\\"0 2.78 6.11 11.67\\\">from</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.1126 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0486 608.8475)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 597.5291)\\\" x=\\\"0 5.56 11.12 16.68 21.68\\\">Lease</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.3461 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 63.7235 597.5291)\\\" x=\\\"0 7.22 12.78 21.11 26.67 32.23 37.79\\\">Company</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 106.5213 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 109.8987 597.5291)\\\" x=\\\"0 3.33 6.66 13.88 19.44 22.22\\\">(“we,”</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 135.4505 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 138.8278 597.5291)\\\" x=\\\"0 3.33 8.89 13.89 16.67\\\">“us,”</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 158.8278 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 162.2052 597.5291)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 178.8898 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 182.2672 597.5291)\\\" x=\\\"0 3.33 8.89 14.45 17.78 21.11\\\">“our”)</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 206.7105 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.0879 597.5291)\\\" x=\\\"0 5.56 10.56 15.56 21.12 24.45 30.01 32.29 37.85\\\">according</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 253.5059 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 256.8832 597.5291)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 265.2231 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 268.6005 597.5291)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 282.5018 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 285.8792 597.5291)\\\" x=\\\"0 2.78 8.34 11.67 20\\\">terms</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 310.8792 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 314.2566 597.5291)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 322.5964 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 325.9738 597.5291)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 341.5939 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 344.9713 597.5291)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement.</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 396.6656 597.5291)\\\" x=\\\"0 3.3774\\\">  </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 403.4204 597.5291)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 420.6518 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 424.0292 597.5291)\\\" x=\\\"0 2.78 8.34 11.67\\\">term</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 444.0292 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 447.4066 597.5291)\\\" x=\\\"0 3.33 10.55 16.11 18.89 24.45 26.73 29.01 34.57 37.9\\\">“Retailer”</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 488.6419 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 492.0193 597.5291)\\\" x=\\\"0 8.33 13.89 19.45 25.01 30.01 36.68 42.24 47.8 52.8 57.8 61.13 67.8 73.36\\\">meansEbaycrYou</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 586.2107)\\\" x=\\\"0 5.56 11.12 16.12 21.68 24.34 27.12 32.68 38.24 40.9 44.23 46.51 52.07 57.63 60.41 63.19 65.85 71.41 76.97 79.75 82.41 87.97 93.53 96.31 98.97 101.75 107.31 112.87 115.53 121.09 126.65 128.93 131.21 136.77 142.33 145.11 147.39 152.95 158.51 161.29 163.95 166.73 172.29 174.95 180.51 185.51 191.07 196.63 198.91 202.24 207.8 210.46 216.02 223.24 228.8 234.36 237.69 242.69 248.25 250.53 256.09 258.75 264.31 267.09 269.75 272.53 278.09 283.65 286.31 292.98 296.31 301.87 307.43 312.99 316.32 319.1 324.1 326.76 332.32 337.32 339.98 345.54 351.1 356.1 361.1 364.43 366.71 372.27 377.83 383.39 386.05 391.61 397.17 400.5 406.06 408.34 413.9\\\">have the right, but not the obligation, to acquire ownership of the Property as described herein.</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 572.8924)\\\" x=\\\"0 6.67 13.89 21.67 28.89 31.67 38.34 41.12 47.23 50.01 57.79\\\">ACQUISITION</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 98.1049 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 101.7037 572.8924)\\\" x=\\\"0 7.78\\\">OF</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 115.5905 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 119.1893 572.8924)\\\" x=\\\"0 6.67 13.89 21.67 28.34 35.01 42.23 48.34\\\">PROPERTY</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 174.1991 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 177.798 572.8924)\\\" x=\\\"0 6.67\\\">AS</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 191.1378 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 194.7367 572.8924)\\\" x=\\\"0 6.67 14.45 21.12 28.34 34.45\\\">AGENT;</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.9632 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 235.5621 572.8924)\\\" x=\\\"0 7.22 13.89\\\">NEW</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 258.8922 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 262.4911 572.8924)\\\" x=\\\"0 7.22 15 22.22 29.44 32.22 38.33 41.11 48.89 56.11\\\">CONDITION;</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 321.3778 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 324.9766 572.8924)\\\" x=\\\"0 7.22 13.89 20.56 27.78 35 37.78 44.45 50.56 53.34 61.12 68.34\\\">DESCRIPTION.</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 396.0948 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 399.6937 572.8924)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 417.4866 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 421.0855 572.8924)\\\" x=\\\"0 5.56 8.89\\\">are</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 435.5386 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 439.1375 572.8924)\\\" x=\\\"0 5.56 11.12 13.9 19.46 21.74 27.3 29.58 35.14\\\">obtaining</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 479.8455 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 483.4444 572.8924)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 497.3458 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 500.9446 572.8924)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 538.7376 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 542.3365 572.8924)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.898 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 556.4968 572.8924)\\\" x=\\\"0 5.56 11.12\\\">our</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 561.574)\\\" x=\\\"0 5.56 11.12 16.68 22.24 25.02\\\">agent.</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.9027 561.574)\\\" x=\\\"0 4.0087\\\">  </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 68.9202 561.574)\\\" x=\\\"0 9.44\\\">We</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 83.9202 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 87.9288 561.574)\\\" x=\\\"0 5.56 12.78\\\">own</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 106.2736 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 110.2823 561.574)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 124.1837 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 128.1924 561.574)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 165.9853 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 169.994 561.574)\\\" x=\\\"0 5.56 11.12 13.4 18.96 23.96\\\">unless</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 198.9589 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 202.9676 561.574)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 219.6522 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 223.6609 561.574)\\\" x=\\\"0 5.56 11.12 13.9 16.18\\\">until</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 242.1228 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 246.1315 561.574)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.2545 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 266.2632 561.574)\\\" x=\\\"0 8.33 13.89 18.89\\\">make</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.7163 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 294.7251 561.574)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.6264 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 312.6351 561.574)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57 38.35\\\">payments</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.9896 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 359.9983 561.574)\\\" x=\\\"0 5.56 11.12 16.12 21.68 26.68 31.68 37.24 40.57\\\">necessary</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 405.5745 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 409.5832 561.574)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 417.923 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 421.9318 561.574)\\\" x=\\\"0 5.56 10.56 16.12 21.68 23.96 27.29\\\">acquire</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.7882 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 458.7969 561.574)\\\" x=\\\"0 5.56 12.78 18.34 23.9 27.23 32.23 37.79 40.07 45.63\\\">ownership.</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 507.2149 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 511.2236 561.574)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.0165 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 533.0253 561.574)\\\" x=\\\"0 5.56 11.12 14.45 20.01\\\">agree</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 558.6014 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 562.6101 561.574)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 550.2557)\\\" x=\\\"0 5.56 11.12 13.9 19.46 21.74 27.3 29.96 32.74 36.07 41.63 49.96 52.62 55.4 60.96 66.52 69.18 76.4 81.96 84.74 90.3 92.58 94.86 100.42 103.75 106.41 111.97 117.53 119.81 124.81 127.47 133.03 138.59 145.81 148.47 154.03 159.59 165.15 170.71 175.71 178.37 181.15 186.71 190.04 192.7 198.26 203.82 207.15 212.15 217.71 223.27 228.83 231.11 233.89 236.55 239.33 244.89 253.22 255.5 257.78 262.78 265.44 271 274.33 276.99 282.55 288.11 293.67 298.67 304.23 309.79 315.35 317.63 323.19 325.85 331.41 336.97 340.3 345.86 351.42 356.42 361.98 366.98\\\">obtain from the Retailer only new goods for personal, family or household purposes.</text></g><clipPath id=\\\"clip0-9\\\"><path d=\\\"M 35 529 L 574 529 L 574 547 L 35 547 L 35 529 z \\\"/></clipPath><path clip-path=\\\"url(#clip0-9)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 35.3 546.1561 L 573.1 546.1561 L 573.1 529.8377 L 35.3 529.8377 L 35.3 546.1561 z \\\"/><path clip-path=\\\"url(#clip0-9)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 40.7 543.1561 L 555.4 543.1561 L 555.4 531.8377 L 40.7 531.8377 L 40.7 543.1561 z \\\"/><path clip-path=\\\"url(#clip0-9)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 96.7096 543.1561 L 499.7096 543.1561 L 499.7096 531.1561 L 96.7096 531.1561 L 96.7096 543.1561 z \\\"/><g clip-path=\\\"url(#clip0-9)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 96.7096 533.9373)\\\" x=\\\"0 2.78 11.11 17.78 25.56 32.78 38.89 45.56 52.78 58.89 61.55 68.77 75.44 82.66 88.77 95.44 101 104.33 111 118.22 125.44 132.66 139.88 146.55 153.22 159.89 162.55 169.77 172.55 179.22 186.44 192 199.78 206.45 213.67 220.89 227.56 234.23 236.89 239.82 242.48 245.26 252.48 259.7 265.26 272.48 279.7 282.48 289.7 297.48 300.14 307.36 315.14 321.81 327.92 330.58 337.25 344.47 351.69 354.35 361.02 367.69 374.36 382.69 389.36 396.58\\\">IMPORTANT RENTAL-PURCHASE DISCLOSURES – INCLUDING COST AND PAYMENT</text></g><clipPath id=\\\"clip0-10\\\"><path d=\\\"M 35 81 L 574 81 L 574 530 L 35 530 L 35 81 z \\\"/></clipPath><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 517.619)\\\" x=\\\"0 6.11 13.33 16.11\\\">THIS</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 63.4783 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 68.7771 517.619)\\\" x=\\\"0 6.11 13.33 20 27.22 33.89 40.56 47.78 53.89 56.67 64.45\\\">TRANSACTION</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 140.447 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 145.7457 517.619)\\\" x=\\\"0 2.78\\\">IS</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 155.194 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 160.4927 517.619)\\\" x=\\\"0\\\">A</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 167.1627 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 172.4614 517.619)\\\" x=\\\"0 5.56 12.23 18.9 25.57\\\">LEASE</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 204.7026 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.0014 517.619)\\\" x=\\\"0 6.67 14.45 21.67 28.34 35.01 43.34 50.01 57.23\\\">AGREEMENT</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 273.3412 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 278.64 517.619)\\\" x=\\\"0 9.44 12.22 18.33\\\">WITH</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 304.1868 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 309.4856 517.619)\\\" x=\\\"0 7.78 14.45 20.56 23.34 31.12\\\">OPTION</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 347.8206 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 353.1193 517.619)\\\" x=\\\"0 6.11\\\">TO</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 367.006 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 372.3048 517.619)\\\" x=\\\"0 6.67 13.89 21.11 28.33 35.55 42.22 48.89 55.56\\\">PURCHASE.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.6495 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 435.9483 517.619)\\\" x=\\\"0 6.67 14.45\\\">YOU</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 457.6182 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 462.9169 517.619)\\\" x=\\\"0 9.44 12.22 17.78\\\">WILL</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.2568 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 491.5555 517.619)\\\" x=\\\"0 7.22 15\\\">NOT</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.6639 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 517.9627 517.619)\\\" x=\\\"0 7.78 17.22\\\">OWN</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 542.4012 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 547.6999 517.619)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 506.3006)\\\" x=\\\"0 6.67 13.89 21.67 28.34 35.01 42.23 48.34\\\">PROPERTY</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 95.7098 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 100.6852 506.3006)\\\" x=\\\"0 7.22 14.44 20.55 23.33\\\">UNTIL</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 129.5768 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 134.5522 506.3006)\\\" x=\\\"0 6.67 14.45\\\">YOU</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 156.2221 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 161.1975 506.3006)\\\" x=\\\"0 7.22 13.89 20.56\\\">HAVE</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 188.429 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 193.4044 506.3006)\\\" x=\\\"0 6.67 13.34 16.12\\\">PAID</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 216.7442 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 221.7197 506.3006)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 241.7197 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 246.6951 506.3006)\\\" x=\\\"0 6.11 13.89 20 26.67\\\">TOTAL</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 278.9216 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 283.8971 506.3006)\\\" x=\\\"0 6.67 13.34 20.01 28.34 35.01 42.23 48.34\\\">PAYMENTS</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.9068 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 343.8822 506.3006)\\\" x=\\\"0 7.22 13.89 21.11 27.78 34.45 41.12 47.79 55.01\\\">NECESSARY</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 405.5668 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 410.5422 506.3006)\\\" x=\\\"0 6.11\\\">TO</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 424.4289 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 429.4044 506.3006)\\\" x=\\\"0 6.67 13.89 21.67 28.89 31.67 38.89\\\">ACQUIRE</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.9659 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 479.9413 506.3006)\\\" x=\\\"0 7.78 17.22 24.44 31.11 38.33 45 52.22 55\\\">OWNERSHIP</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 541.6112 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 546.5866 506.3006)\\\" x=\\\"0 6.67 13.89\\\">AND</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 494.9822)\\\" x=\\\"0 7.22 15 23.33 30 35.56\\\">COMPLY</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 82.9314 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 86.988 494.9822)\\\" x=\\\"0 9.44 12.22 18.33\\\">WITH</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 112.5348 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 116.5913 494.9822)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.5913 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 140.6478 494.9822)\\\" x=\\\"0 7.78 17.22 24.44 31.11 38.33 45 52.22 55\\\">OWNERSHIP</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 202.3178 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 206.3743 494.9822)\\\" x=\\\"0 6.11 12.78 20 28.33 35\\\">TERMS.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 244.1526 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 248.2091 494.9822)\\\" x=\\\"0 6.67 14.45\\\">YOU</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 269.879 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 273.9355 494.9822)\\\" x=\\\"0 6.67 13.89\\\">ARE</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 294.497 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 298.5535 494.9822)\\\" x=\\\"0 7.22 15\\\">NOT</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.6619 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 323.7184 494.9822)\\\" x=\\\"0 7.78 14.45 20.01 22.79 30.57 37.24 43.35 50.02\\\">OBLIGATED</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.9548 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 385.0113 494.9822)\\\" x=\\\"0 6.11\\\">TO</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 398.898 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 402.9545 494.9822)\\\" x=\\\"0 6.67 13.34\\\">PAY</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 422.9643 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 427.0208 494.9822)\\\" x=\\\"0\\\">A</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 433.6907 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 437.7472 494.9822)\\\" x=\\\"0 6.67 13.89\\\">SUM</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 459.9689 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 464.0254 494.9822)\\\" x=\\\"0 7.78 15 21.67 28.34 34.45 41.12\\\">GREATER</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.3652 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 516.4217 494.9822)\\\" x=\\\"0 6.11 13.33 20\\\">THAN</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 543.6434 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 547.6999 494.9822)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 483.6639)\\\" x=\\\"0 6.11 13.89 20 26.67 32.23 34.89 41.56 48.23 54.9 63.23 69.9 77.12 83.23 89.9 92.56 98.67 106.45 113.67 116.33 123 125.66 132.33 135.11 142.33 150.11 155.67 162.34 165 170.56 177.23 183.9 190.57 197.24 199.9 206.01 212.68 219.9 228.23\\\">TOTAL PAYMENTS FOR A SINGLE LEASE TERM.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 470.3455)\\\" x=\\\"0 7.22 12.78 17.78\\\">Cash</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 64.0447 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 67.2085 470.3455)\\\" x=\\\"0 6.67 10 12.28 17.28\\\">Price</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 90.0503 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 93.214 470.3455)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 101.5539 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 104.7176 470.3455)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 145.2889 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.4527 470.3455)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 165.6841 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 168.8478 470.3455)\\\" x=\\\"0 7.22 12.78 17.78\\\">Cash</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 192.1926 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 195.3563 470.3455)\\\" x=\\\"0 6.67 10 12.28 17.28\\\">Price</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 218.1981 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 221.3619 470.3455)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 229.7017 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 232.8655 470.3455)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 246.7668 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 249.9306 470.3455)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 287.7235 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 290.8873 470.3455)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 298.1676 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 301.3313 470.3455)\\\" x=\\\"0\\\">$</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 306.8928 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 310.0566 470.3455)\\\" x=\\\"0 5.56 8.34 13.9 19.46 25.02 27.8 33.36 38.92\\\">3,872.00,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.7607 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 354.9244 470.3455)\\\" x=\\\"0 7.22 12.78 15.06 20.06\\\">which</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.5494 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 383.7132 470.3455)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 390.9935 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 394.1572 470.3455)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 408.0586 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 411.2223 470.3455)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 444.5768 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 447.7406 470.3455)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 463.8636 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 467.0274 470.3455)\\\" x=\\\"0 7.22 12.78 18.34 20.62\\\">would</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 493.2139 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 496.3776 470.3455)\\\" x=\\\"0 5.56 11.12 16.12\\\">have</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 518.0622 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 521.226 470.3455)\\\" x=\\\"0 5.56 11.12 13.4\\\">paid</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 540.1908 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 543.3545 470.3455)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 548.4131 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 551.5769 470.3455)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 459.0271)\\\" x=\\\"0 5.56 11.12\\\">had</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 57.3846 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 60.336 459.0271)\\\" x=\\\"0 5.56 11.12 14.45 19.45 25.01 30.57 35.57 41.13\\\">purchased</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 107.0352 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 109.9866 459.0271)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 123.888 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 126.8394 459.0271)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 164.6324 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 167.5838 459.0271)\\\" x=\\\"0 2.78 6.11 11.67\\\">from</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 187.5838 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 190.5352 459.0271)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 204.4366 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 207.388 459.0271)\\\" x=\\\"0 7.22 12.78 15.56 21.12 23.4 25.68 31.24\\\">Retailer</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 241.9632 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 244.9147 459.0271)\\\" x=\\\"0 7.22 9.5 12.28\\\">with</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.7565 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 265.7079 459.0271)\\\" x=\\\"0 5 10.56 15.56\\\">cash</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 286.8309 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 289.7824 459.0271)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 300.9054 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 303.8568 459.0271)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 317.7582 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 320.7096 459.0271)\\\" x=\\\"0 5.56 11.12\\\">day</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 336.8327 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 339.7841 459.0271)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.1239 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 351.0754 459.0271)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 366.6955 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 369.6469 459.0271)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 421.3412 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 424.2927 459.0271)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 25.68 27.96 32.96\\\">inclusive</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 462.8181 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 465.7695 459.0271)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.1093 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 477.0607 459.0271)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 493.1838 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 496.1352 459.0271)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64\\\">applicable</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 541.3452 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 544.2966 459.0271)\\\" x=\\\"0 5 10.56 12.84 18.4\\\">sales</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 447.7088)\\\" x=\\\"0 5.56 8.89 11.55 17.11 22.11 27.67 30.33 33.11 38.67 43.67\\\">or use tax.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 434.3904)\\\" x=\\\"0 6.11 11.67 14.45 20.01\\\">Total</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 62.99 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 66.9187 434.3904)\\\" x=\\\"0 7.22 12.78 17.78\\\">Cost</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 87.4803 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 91.409 434.3904)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 99.7488 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 103.6775 434.3904)\\\" x=\\\"0 5.56 11.12 16.68 21.68 27.24\\\">Lease;</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 133.7019 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 137.6306 434.3904)\\\" x=\\\"0 6.67 12.23 15.56 17.84 23.4 28.96 31.24\\\">Periodic</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 173.8758 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 177.8045 434.3904)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46 44.46\\\">Payments;</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.0457 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 228.9744 434.3904)\\\" x=\\\"0 6.67 10 15.56 20.56 26.12 31.12 36.12 38.4 43.96\\\">Processing</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 278.5007 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 282.4295 434.3904)\\\" x=\\\"0 6.11 11.67 17.23\\\">Fee;</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.4392 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 306.3679 434.3904)\\\" x=\\\"0 2.78 8.34 10.62 13.4 15.68 21.24\\\">Initial</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.8884 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 333.8171 434.3904)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46\\\">Payment;</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 376.0584 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 379.9871 434.3904)\\\" x=\\\"0 7.22 12.78 17.78\\\">Cost</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 400.5486 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 404.4773 434.3904)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 412.8171 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 416.7459 434.3904)\\\" x=\\\"0 7.22 12.78 18.34 21.12 26.68 28.96\\\">Rental.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 448.489 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 452.4177 434.3904)\\\" x=\\\"0 7.22 12.78 15.06 20.62 25.62\\\">Unless</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 483.0427 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 486.9714 434.3904)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 503.0945 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 507.0232 434.3904)\\\" x=\\\"0 5.56 10.56 16.12 19.45 24.45 26.73 31.73\\\">exercise</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 544.3181 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 548.2468 434.3904)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 423.0721)\\\" x=\\\"0 5.56 11.12 16.68 20.01 27.23 32.79\\\">100-Day</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 78.4979 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.2541 423.0721)\\\" x=\\\"0 7.78 13.34 16.12 18.4 23.96\\\">Option</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 110.7756 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 113.5318 423.0721)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 122.4234 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 125.1797 423.0721)\\\" x=\\\"0 6.67 12.23 15.56 17.84\\\">Early</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 148.0215 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 150.7777 423.0721)\\\" x=\\\"0 6.67 12.23 17.23 20.56 28.34 33.9\\\">Buy-Out</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 187.4574 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 190.2136 423.0721)\\\" x=\\\"0 7.78 13.34 16.12 18.4 23.96\\\">Option</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 219.7351 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 222.4914 423.0721)\\\" x=\\\"0 5 10.56\\\">set</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 235.8312 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 238.5875 423.0721)\\\" x=\\\"0 2.78 8.34 11.67 14.45\\\">forth</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 258.5972 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 261.3535 423.0721)\\\" x=\\\"0 5.56 11.12 13.4 18.96 26.18\\\">below,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.3183 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 293.0746 423.0721)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 306.9759 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 309.7322 423.0721)\\\" x=\\\"0 3.33 9.44 15 17.78 23.34\\\">“Total</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.3523 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.1086 423.0721)\\\" x=\\\"0 7.22 12.78 17.78 20.56\\\">Cost”</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 362.0002 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 364.7564 423.0721)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 373.0962 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 375.8525 423.0721)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 389.7539 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 392.5101 423.0721)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.3031 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 433.0593 423.0721)\\\" x=\\\"0 5.56 11.12 16.68 22.24\\\">under</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 458.6355 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 461.3917 423.0721)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 477.0119 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 479.7681 423.0721)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 528.6841 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 531.4404 423.0721)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 545.5029 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 548.2591 423.0721)\\\" x=\\\"0 5.56\\\">be</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.3822 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 562.1384 423.0721)\\\" x=\\\"0\\\">$</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 411.7537)\\\" x=\\\"0 5.56 8.34 13.9 19.46 25.02 27.8 33.36 38.92\\\">3,965.32.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 82.4041 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 85.187 411.7537)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 102.4184 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 105.2013 411.7537)\\\" x=\\\"0 6.11 11.67 14.45 20.01\\\">Total</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 127.4913 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 130.2742 411.7537)\\\" x=\\\"0 7.22 12.78 17.78\\\">Cost</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 150.8357 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 153.6186 411.7537)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.8989 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 163.6817 411.7537)\\\" x=\\\"0 5.56 11.12 16.12 21.68\\\">based</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 190.9279 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 193.7107 411.7537)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 204.8338 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 207.6166 411.7537)\\\" x=\\\"0 5.56\\\">an</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 218.7397 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 221.5226 411.7537)\\\" x=\\\"0 2.78 8.34 10.62 13.4 15.68 21.24\\\">Initial</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.0431 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 247.8259 411.7537)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68\\\">Payment</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 287.2888 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 290.0717 411.7537)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 298.4115 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 301.1944 411.7537)\\\" x=\\\"0\\\">$</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 306.7559 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 309.5388 411.7537)\\\" x=\\\"0 5.56 8.34 13.9\\\">0.00</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.0017 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 331.7846 411.7537)\\\" x=\\\"0 5.56 11.12 16.12 21.68 27.24 29.52\\\">payable</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 366.8725 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 369.6554 411.7537)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.7784 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 383.5613 411.7537)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 397.4626 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 400.2455 411.7537)\\\" x=\\\"0 5.56 11.12 13.9\\\">date</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.7084 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 422.4913 411.7537)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.8311 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 433.614 411.7537)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 449.2341 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 452.017 411.7537)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 500.933 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 503.7159 411.7537)\\\" x=\\\"0 3.33 6.11 11.67\\\">(the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 520.9473 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 523.7302 411.7537)\\\" x=\\\"0 3.33 10.55 16.11 21.67 27.23 29.51 32.84 38.4\\\">“Required</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 400.4353)\\\" x=\\\"0 2.78 8.34 10.62 13.4 15.68 21.24\\\">Initial</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 64.2205 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 68.4622 400.4353)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46 42.79 46.12\\\">Payment”),</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 117.3635 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 121.6052 400.4353)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 126.6638 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 130.9055 400.4353)\\\" x=\\\"0 5.56 11.12 16.12\\\">any,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 149.8068 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 154.0485 400.4353)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 159.61 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 163.8517 400.4353)\\\" x=\\\"0 5.56 8.89 14.45 19.45 25.01 30.01 35.01 37.29 42.85\\\">processing</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 212.2697 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 216.5114 400.4353)\\\" x=\\\"0 2.78 8.34\\\">fee</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 230.4127 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 234.6544 400.4353)\\\" x=\\\"0 3.33 10.55 16.11 18.39 23.39\\\">(which</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 263.6095 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 267.8511 400.4353)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.1314 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 279.3731 400.4353)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 293.2745 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 297.5161 400.4353)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 303.0777 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 307.3193 400.4353)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 345.6738 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 349.9155 400.4353)\\\" x=\\\"0 2.78 8.34 15.56 21.12 24.45 30.01\\\">towards</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 384.9301 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 389.1718 400.4353)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.0732 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.3149 400.4353)\\\" x=\\\"0 5 10.56 15.56\\\">cost</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 425.6547 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 429.8964 400.4353)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 438.2362 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 442.4779 400.4353)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 461.931 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 466.1727 400.4353)\\\" x=\\\"0 3.33 8.89 14.45 17.23 22.79 25.07\\\">rental)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 494.576 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 498.8177 400.4353)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 507.1575 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 511.3992 400.4353)\\\" x=\\\"0\\\">$</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 516.9607 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 521.2024 400.4353)\\\" x=\\\"0 5.56 11.12 13.9 19.46\\\">10.00</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 546.2268 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 550.4685 400.4353)\\\" x=\\\"0 3.33 6.11 11.67\\\">(the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 389.117)\\\" x=\\\"0 3.33 10 13.33 18.89 23.89 29.45 34.45 39.45 41.73 47.29\\\">“Processing</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 93.5564 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 97.3241 389.117)\\\" x=\\\"0 6.11 11.67 17.23 20.56 23.89\\\">Fee”),</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 123.9941 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 127.7617 389.117)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 132.8203 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 136.588 389.117)\\\" x=\\\"0 5.56 11.12 16.12\\\">any,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 155.4894 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 159.2571 389.117)\\\" x=\\\"0 5.56\\\">26</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 170.3801 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 174.1478 389.117)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.74 24.02 29.58 35.14 40.7\\\">additional</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 217.1361 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 220.9038 389.117)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57 38.35\\\">payments</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 264.2583 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 268.026 389.117)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.3658 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 280.1335 389.117)\\\" x=\\\"0\\\">$</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 285.695 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 289.4627 389.117)\\\" x=\\\"0 5.56 8.34 13.9\\\">6.97</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.9256 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 312.6933 389.117)\\\" x=\\\"0 3.33 8.89\\\">(as</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 326.5849 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 330.3526 389.117)\\\" x=\\\"0 5.56 11.12 13.4 18.96 23.96 26.74 32.3 37.86\\\">adjusted,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 370.9971 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 374.7648 389.117)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.3263 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 384.094 389.117)\\\" x=\\\"0 3.33 10.55 16.11 21.67 27.23 29.51 35.07\\\">“Regular</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 422.5022 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 426.2699 389.117)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46 42.79\\\">Payment”)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 472.393 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 476.1607 389.117)\\\" x=\\\"0 5.56 11.12 16.12 21.68\\\">each,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 500.6235 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 504.3912 389.117)\\\" x=\\\"0 5.56 11.12 16.12 21.68 27.24 29.52\\\">payable</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 539.4791 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 543.2468 389.117)\\\" x=\\\"0 5.56 10.56 16.12 19.45\\\">every</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 377.7986)\\\" x=\\\"0 5.56 8.34 13.9 19.46\\\">other</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 63.493 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 66.4195 377.7986)\\\" x=\\\"0 7.22 12.78 18.34 23.34\\\">week.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 92.5426 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 95.4692 377.7986)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 112.7006 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 115.6272 377.7986)\\\" x=\\\"0 6.11 11.67 14.45 20.01\\\">Total</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 137.9172 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 140.8438 377.7986)\\\" x=\\\"0 7.22 12.78 17.78\\\">Cost</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 161.4053 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 164.3319 377.7986)\\\" x=\\\"0 5.56 7.84 12.84\\\">also</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 182.7352 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 185.6617 377.7986)\\\" x=\\\"0 3.33 8.89 11.67 13.95 19.51 24.51 27.29\\\">reflects</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 217.9518 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 220.8784 377.7986)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 237.0014 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 239.928 377.7986)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.74 24.02 29.58 35.14 40.7\\\">additional</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 282.9163 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 285.8428 377.7986)\\\" x=\\\"0 5 10.56 15.56\\\">cash</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 306.9659 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 309.8924 377.7986)\\\" x=\\\"0 5.56 11.12 13.4\\\">paid</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 328.8573 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 331.7839 377.7986)\\\" x=\\\"0 2.78 8.34 13.9 19.46 24.46\\\">today,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.0251 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 361.9516 377.7986)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 367.0102 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 369.9368 377.7986)\\\" x=\\\"0 5.56 11.12 16.12\\\">any.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.8382 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 391.7647 377.7986)\\\" x=\\\"0 6.67 12.23 17.79\\\">Your</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 412.8878 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 415.8143 377.7986)\\\" x=\\\"0 2.78 8.34 11.12 16.68\\\">total</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.7743 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 437.7009 377.7986)\\\" x=\\\"0 2.28 7.84 10.12 12.9 15.18 20.74\\\">initial</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 460.7233 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 463.6499 377.7986)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 502.0044 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 504.931 377.7986)\\\" x=\\\"0 5.56 11.12\\\">due</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.6155 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 524.5421 377.7986)\\\" x=\\\"0 2.78 8.34 13.9 19.46\\\">today</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.005 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 551.9316 377.7986)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.2118 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 562.1384 377.7986)\\\" x=\\\"0\\\">$</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 366.4803)\\\" x=\\\"0 5.56 8.34 13.9 19.46\\\">0.00,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 62.9412 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 66.7951 366.4803)\\\" x=\\\"0 7.22 12.78 15.06 20.06\\\">which</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 92.4201 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 96.274 366.4803)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 103.5543 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 107.4082 366.4803)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 121.3096 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 125.1635 366.4803)\\\" x=\\\"0 5 10.56\\\">sum</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 144.0551 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 147.909 366.4803)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 156.2488 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 160.1027 366.4803)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 174.0041 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 177.858 366.4803)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 29.51 35.07\\\">Required</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 218.4976 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 222.3515 366.4803)\\\" x=\\\"0 2.78 8.34 10.62 13.4 15.68 21.24\\\">Initial</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.872 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 249.7259 366.4803)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46\\\">Payment,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.9672 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 295.8211 366.4803)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 300.8797 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 304.7336 366.4803)\\\" x=\\\"0 5.56 11.12 16.12\\\">any,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 323.6349 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 327.4888 366.4803)\\\" x=\\\"0 6.67 10 15.56 20.56 26.12 31.12 36.12 38.4 43.96\\\">Processing</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 377.0152 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 380.8691 366.4803)\\\" x=\\\"0 6.11 11.67 17.23\\\">Fee,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 400.8789 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 404.7328 366.4803)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 409.7914 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 413.6453 366.4803)\\\" x=\\\"0 5.56 11.12 16.12\\\">any,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 432.5466 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 436.4005 366.4803)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 453.0851 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 456.939 366.4803)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 473.062 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 476.916 366.4803)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.74 24.02 29.58 35.14 40.7\\\">additional</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 519.9042 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 523.7581 366.4803)\\\" x=\\\"0 5 10.56 15.56\\\">cash</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 544.8812 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 548.7351 366.4803)\\\" x=\\\"0 5.56 11.12 13.4\\\">paid</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 355.1619)\\\" x=\\\"0 2.78 8.34 13.9 19.46 24.46\\\">today.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 67.9412 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 70.9372 355.1619)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 76.4938 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 79.4898 355.1619)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 95.6128 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 98.6088 355.1619)\\\" x=\\\"0 5.56\\\">do</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 109.7318 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 112.7278 355.1619)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 126.6291 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 129.6251 355.1619)\\\" x=\\\"0 3.33 8.89 17.22 19.5\\\">remit</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 151.9054 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 154.9013 355.1619)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 171.0244 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 174.0203 355.1619)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64\\\">applicable</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 219.2303 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 222.2262 355.1619)\\\" x=\\\"0 6.67 10 15.56 20.56 26.12 31.12 36.12 38.4 43.96\\\">Processing</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 271.7526 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 274.7486 355.1619)\\\" x=\\\"0 6.11 11.67\\\">Fee</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.98 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 294.976 355.1619)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 303.8676 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 306.8635 355.1619)\\\" x=\\\"0 2.78 8.34 10.62 13.4 15.68 21.24\\\">Initial</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 330.3841 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 333.38 355.1619)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68\\\">Payment</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 372.8429 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 375.8388 355.1619)\\\" x=\\\"0 5.56\\\">at</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 384.1787 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 387.1747 355.1619)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 401.076 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 404.072 355.1619)\\\" x=\\\"0 2.78 5.06 13.39\\\">time</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 423.0222 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 426.0181 355.1619)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.358 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 437.3539 355.1619)\\\" x=\\\"0 5.56 11.12 14.45 19.45 25.01 30.57 35.57 41.13\\\">purchase,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 481.2699 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 484.2659 355.1619)\\\" x=\\\"0 2.28\\\">it</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.3245 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 492.3205 355.1619)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.6007 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 502.5967 355.1619)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24 31.8\\\">included</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 539.9649 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 542.9608 355.1619)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 550.8026 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.7986 355.1619)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 343.8436)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 75.7781 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 78.9772 343.8436)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46\\\">Payments</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 123.44 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 126.6391 343.8436)\\\" x=\\\"0 5 10.56\\\">set</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 139.9789 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 143.1779 343.8436)\\\" x=\\\"0 2.78 8.34 11.67 14.45\\\">forth</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 163.1877 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 166.3868 343.8436)\\\" x=\\\"0 5.56 11.12 16.68 21.68 27.24\\\">above.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 196.4112 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 199.6102 343.8436)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 216.8416 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 220.0407 343.8436)\\\" x=\\\"0 6.11 11.67 14.45 20.01\\\">Total</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 242.3307 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 245.5297 343.8436)\\\" x=\\\"0 7.22 12.78 17.78\\\">Cost</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 266.0913 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 269.2903 343.8436)\\\" x=\\\"0 5.56 11.12 16.68\\\">does</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.9749 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 294.1739 343.8436)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.0753 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 311.2743 343.8436)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24\\\">include</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 343.0809 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 346.28 343.8436)\\\" x=\\\"0 2.28 7.84 10.62\\\">late</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 362.4616 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 365.6606 343.8436)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57 38.35\\\">payment,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 406.7935 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 409.9925 343.8436)\\\" x=\\\"0 5.56 11.12 16.68 21.68 27.24 30.02 32.8 35.08 40.08 42.36 47.92 53.48\\\">nonsufficient</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.2571 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 469.4562 343.8436)\\\" x=\\\"0 2.78 8.34 13.9 19.46 24.46\\\">funds,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 496.6974 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 499.8964 343.8436)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 27.3 30.08\\\">default,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 532.7577 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 535.9568 343.8436)\\\" x=\\\"0 5.56 7.84 12.84 17.84 23.4 28.96\\\">pickup,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 332.5252)\\\" x=\\\"0 3.33 8.89 11.17 16.73 21.73 24.51 30.07 32.85 38.41 46.74 52.3 57.86 60.64\\\">reinstatement,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 104.1228 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 108.8966 332.5252)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 117.7882 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 122.5619 332.5252)\\\" x=\\\"0 5.56 8.34 13.9 19.46\\\">other</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 145.3549 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 150.1286 332.5252)\\\" x=\\\"0 2.78 8.34 13.9 18.9\\\">fees,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 171.8083 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 176.5821 332.5252)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 181.6407 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 186.4144 332.5252)\\\" x=\\\"0 5.56 11.12 16.12\\\">any,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 205.3158 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.0895 332.5252)\\\" x=\\\"0 5.56 7.84 12.84 17.84 20.12 25.68 30.68 36.24\\\">disclosed</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 251.8962 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 256.6699 332.5252)\\\" x=\\\"0 5.56 11.12 13.4 18.96 26.18\\\">below.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 285.6347 332.5252)\\\" x=\\\"0 4.7737\\\">  </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 295.1822 332.5252)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.4137 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 317.1874 332.5252)\\\" x=\\\"0 5 10.56 15.56\\\">cost</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.5273 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 340.301 332.5252)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.6409 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 353.4146 332.5252)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 372.8677 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 377.6415 332.5252)\\\" x=\\\"0 3.33 8.89 14.45 17.23 22.79\\\">rental</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.7147 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.4884 332.5252)\\\" x=\\\"0 3.33 6.66 13.88 19.44 24.44\\\">(“Cost</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.7101 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 439.4839 332.5252)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.8237 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 452.5975 332.5252)\\\" x=\\\"0 7.22 12.78 18.34 21.12 26.68 28.96 32.29\\\">Rental”)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 488.2225 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 492.9962 332.5252)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 500.2765 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 505.0502 332.5252)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 518.9516 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 523.7253 332.5252)\\\" x=\\\"0 5.56 7.84 10.62 13.4 18.96 22.29 27.85 33.41 38.41\\\">difference</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 321.2068)\\\" x=\\\"0 5.56 11.12 13.9 21.12 26.68 32.24 37.8 40.46 43.24 48.8 54.36 57.02 63.13 68.69 71.47 77.03 79.31 81.97 89.19 94.75 99.75 102.53 105.19 110.75 116.31 121.87 124.53 131.75 137.31 142.31 147.87 150.53 157.2 160.53 162.81 167.81 173.37 176.15 178.81 184.37 189.93 195.49 198.15 205.37 207.65 209.93 212.21 214.87 220.43 225.99 228.65 234.21 236.87 242.43 247.99 250.77 256.33 261.89\\\">between the Total Cost and Cash Price, and will be $ 93.32.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 309.8885)\\\" x=\\\"0 6.67 11.67 17.23 22.79 27.79 30.57 36.13\\\">Expected</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 82.3943 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 86.3823 309.8885)\\\" x=\\\"0 7.22 12.78 15.06 17.34 22.34 27.9 31.23\\\">Delivery</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 122.6177 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 126.6057 309.8885)\\\" x=\\\"0 7.22 12.78 15.56 21.12\\\">Date;</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 150.507 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 154.495 309.8885)\\\" x=\\\"0 6.11 8.39 11.72 16.72\\\">First</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 173.9921 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 177.9801 309.8885)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 213.0582 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 217.0462 309.8885)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46\\\">Payment.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.2874 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 263.2754 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 267.2634 309.8885)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 284.4948 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 288.4828 309.8885)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 29.51 35.07\\\">Required</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.1225 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 333.1105 309.8885)\\\" x=\\\"0 2.78 8.34 10.62 13.4 15.68 21.24\\\">Initial</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 356.631 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 360.619 309.8885)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46\\\">Payment,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.8602 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 406.8482 309.8885)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 411.9068 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 415.8947 309.8885)\\\" x=\\\"0 5.56 11.12 16.12\\\">any,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.7961 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 438.7841 309.8885)\\\" x=\\\"0 5 10.56 15.56 21.12 24.45\\\">covers</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.2372 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 472.2252 309.8885)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.1266 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 490.1146 309.8885)\\\" x=\\\"0 3.33 8.89 14.45 17.23 22.79\\\">rental</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 515.1878 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 519.1758 309.8885)\\\" x=\\\"0 5.56 11.12 14.45 16.73 22.29\\\">period</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 547.0323 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 551.0202 309.8885)\\\" x=\\\"0 2.78 8.34 13.9\\\">that</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 298.5701)\\\" x=\\\"0 5.56 11.12 16.68 18.96 24.52\\\">begins</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 70.2264 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 73.3394 298.5701)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 84.4625 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 87.5755 298.5701)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 101.4769 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 104.59 298.5701)\\\" x=\\\"0 5.56 11.12 13.9\\\">date</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 124.0529 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 127.166 298.5701)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 143.289 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 146.4021 298.5701)\\\" x=\\\"0 3.33 8.89 13.89 19.45 21.73 26.73\\\">receive</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 178.697 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 181.8101 298.5701)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 195.7114 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 198.8245 298.5701)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 236.6175 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 239.7305 298.5701)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.4151 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 259.5282 298.5701)\\\" x=\\\"0 5.56 11.12 16.68\\\">ends</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.2128 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 284.3258 298.5701)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 295.4489 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 298.562 298.5701)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 318.0151 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 321.1281 298.5701)\\\" x=\\\"0 2.78 5.06 8.39 13.39\\\">first</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 337.2951 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 340.4082 298.5701)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.4863 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 378.5994 298.5701)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68\\\">Payment</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 418.0623 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 421.1754 298.5701)\\\" x=\\\"0 5.56 11.12 13.9 19.46\\\">date.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 443.4166 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 446.5297 298.5701)\\\" x=\\\"0 6.67 12.23 17.79\\\">Your</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.6527 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 470.7658 298.5701)\\\" x=\\\"0 2.78 5.06 8.39 13.39\\\">first</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.9328 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 490.0459 298.5701)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 525.124 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 528.237 298.5701)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68\\\">Payment</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 287.2518)\\\" x=\\\"0 5.56 11.12 13.9\\\">date</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.1629 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 63.9277 287.2518)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 77.9902 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.7549 287.2518)\\\" x=\\\"0 5.56\\\">be</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 92.878 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 96.6428 287.2518)\\\" x=\\\"0 5.56\\\">at</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 104.9826 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 108.7474 287.2518)\\\" x=\\\"0 2.28 7.84 13.4 18.4\\\">least</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 129.929 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 133.6938 287.2518)\\\" x=\\\"0 5 10.56 15.56 21.12\\\">seven</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.3784 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 164.1432 287.2518)\\\" x=\\\"0 5.56 11.12 16.12\\\">days</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 185.2662 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 189.031 287.2518)\\\" x=\\\"0 5.56 8.34 11.12 16.68\\\">after</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.0407 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 212.8055 287.2518)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 226.7069 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 230.4717 287.2518)\\\" x=\\\"0 2.28 7.84 10.62 16.18\\\">later</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 249.9834 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 253.7482 287.2518)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.088 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 265.8528 287.2518)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 27.8 33.36 38.92 44.48\\\">07/24/2020</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 315.9016 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 319.6664 287.2518)\\\" x=\\\"0 3.33 5.61\\\">(i)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 328.6068 287.2518)\\\" x=\\\"0 3.7648\\\">  </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 336.1364 287.2518)\\\" x=\\\"0 3.33 6.11 11.67\\\">(the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 353.3678 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 357.1326 287.2518)\\\" x=\\\"0 3.33 10 15 20.56 26.12 31.12 33.9 39.46\\\">“Expected</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.157 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 405.9218 287.2518)\\\" x=\\\"0 7.22 12.78 15.06 17.34 22.34 27.9 31.23\\\">Delivery</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 442.1572 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 445.9219 287.2518)\\\" x=\\\"0 7.22 12.78 15.56 21.12 24.45 27.78\\\">Date”),</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 476.4835 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 480.2482 287.2518)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 496.9328 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 500.6976 287.2518)\\\" x=\\\"0 3.33 5.61 7.89\\\">(ii)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 511.9183 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 515.6831 287.2518)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.5844 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 533.3492 287.2518)\\\" x=\\\"0 5.56 11.12 13.9\\\">date</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.8121 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 556.5769 287.2518)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 275.9334)\\\" x=\\\"0 7.22 12.78 15.06 20.06 25.62 28.28 31.06 36.62 42.18 44.84 51.51 54.84 60.4 65.96 71.52 74.85 77.63 82.63 85.29 87.57 92.57 95.23 100.79 104.12 109.68 114.68 116.96 122.52 128.08 133.64 136.3 141.86 145.19 147.85 153.41 158.97 161.25 163.53 168.53 174.09 177.42 182.98 188.54 191.2 193.98 199.54 202.2 207.2 212.76 218.32\\\">which the Property is provided or delivered to you.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 264.615)\\\" x=\\\"0 5.56 11.12 16.68 20.01 27.23 32.79\\\">100-Day</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 78.4979 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.9917 264.615)\\\" x=\\\"0 7.78 13.34 16.12 18.4 23.96 29.52\\\">Option.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 114.2915 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 117.7853 264.615)\\\" x=\\\"0 6.67\\\">At</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 127.2335 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 130.7273 264.615)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.8504 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 150.3442 264.615)\\\" x=\\\"0 2.78 5.06 13.39\\\">time</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 169.2944 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 172.7882 264.615)\\\" x=\\\"0 5.56 11.12 14.45 16.73 22.29\\\">during</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 200.6446 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 204.1385 264.615)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 218.0398 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 221.5336 264.615)\\\" x=\\\"0 2.78 5.06 8.39 13.39\\\">first</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 237.7006 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 241.1944 264.615)\\\" x=\\\"0 5.56 11.12\\\">100</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.879 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 261.3728 264.615)\\\" x=\\\"0 2.78 6.11 11.67\\\">from</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.3728 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 284.8666 264.615)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 298.768 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 302.2618 264.615)\\\" x=\\\"0 6.67 11.67 17.23 22.79 27.79 30.57 36.13\\\">Expected</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 343.9561 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 347.45 264.615)\\\" x=\\\"0 7.22 12.78 15.06 17.34 22.34 27.9 31.23\\\">Delivery</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.6853 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 387.1791 264.615)\\\" x=\\\"0 7.22 12.78 15.56 21.12\\\">Date,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 411.0805 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 414.5743 264.615)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 428.4757 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 431.9695 264.615)\\\" x=\\\"0 3.33 8.89 14.45 20.01 23.34 30.56 36.12\\\">“100-Day</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 473.0974 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 476.5912 264.615)\\\" x=\\\"0 7.78 13.34 16.12 18.4 23.96 29.52\\\">Option”</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.4428 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 512.9366 264.615)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.8 31.8\\\">applies,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 547.5215 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 551.0154 264.615)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 253.2967)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 56.823 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 59.7295 253.2967)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 78.6211 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.5276 253.2967)\\\" x=\\\"0 5.56 10.56 16.12 21.68 23.96 27.29\\\">acquire</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 114.384 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 117.2905 253.2967)\\\" x=\\\"0 5.56 12.78 18.34 23.9 27.23 32.23 37.79 40.07\\\">ownership</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 162.9301 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 165.8366 253.2967)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 174.1764 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 177.0829 253.2967)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 190.9843 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 193.8907 253.2967)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.6837 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 234.5901 253.2967)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.1517 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 248.0581 253.2967)\\\" x=\\\"0 5.56 11.12 16.12 18.4 23.96\\\">paying</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 277.5845 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 280.4909 253.2967)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.0525 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 293.9589 253.2967)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 307.8603 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 310.7667 253.2967)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 344.1212 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 347.0277 253.2967)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 357.5892 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 360.4957 253.2967)\\\" x=\\\"0 7.22 12.78 15.06 20.06\\\">which</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 386.1207 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 389.0271 253.2967)\\\" x=\\\"0 3.33 5.61\\\">(i)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 397.9676 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 400.874 253.2967)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 414.7754 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 417.6819 253.2967)\\\" x=\\\"0 5 10.56\\\">sum</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 436.5735 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 439.4799 253.2967)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.8198 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 450.7262 253.2967)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 464.6276 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 467.5341 253.2967)\\\" x=\\\"0 5.56 11.12\\\">100</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.2186 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 487.1251 253.2967)\\\" x=\\\"0\\\">–</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 490.0548 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 492.9612 253.2967)\\\" x=\\\"0 7.22 12.78\\\">Day</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 510.7444 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 513.6509 253.2967)\\\" x=\\\"0 6.67 15 20.56 26.12 31.68 34.46\\\">Amount,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 550.8921 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.7986 253.2967)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 241.9783)\\\" x=\\\"0 6.67 10 15.56 20.56 26.12 31.12 36.12 38.4 43.96\\\">Processing</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 90.2264 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 92.924 241.9783)\\\" x=\\\"0 6.11 11.67 17.23\\\">Fee,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 112.9338 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 115.6314 241.9783)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 120.69 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 123.3877 241.9783)\\\" x=\\\"0 5.56 11.12 16.12\\\">any,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 142.289 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 144.9867 241.9783)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64\\\">applicable</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 190.1967 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 192.8943 241.9783)\\\" x=\\\"0 5 10.56 12.84 18.4\\\">sales</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 216.2976 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 218.9953 241.9783)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 227.8869 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 230.5845 241.9783)\\\" x=\\\"0 5.56 10.56\\\">use</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 246.7076 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 249.4052 241.9783)\\\" x=\\\"0 2.78 8.34 13.34 18.9 23.9\\\">taxes,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.0849 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 278.7826 241.9783)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 295.4672 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 298.1648 241.9783)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 314.2879 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 316.9855 241.9783)\\\" x=\\\"0 5.56 11.12 16.68 22.24 24.52\\\">unpaid</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 347.0734 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 349.771 241.9783)\\\" x=\\\"0 2.78 8.34 13.9\\\">fees</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 368.6724 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 371.3701 241.9783)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 384.1533 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 386.8509 241.9783)\\\" x=\\\"0 5.56 11.12 16.12\\\">have</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 408.5355 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 411.2331 241.9783)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01 30.57 36.13\\\">charged,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 450.1492 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 452.8468 241.9783)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.68 32.24\\\">exceeds</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 490.0929 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 492.7906 241.9783)\\\" x=\\\"0 3.33 5.61 7.89\\\">(ii)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 504.0113 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 506.7089 241.9783)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 520.6103 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 523.3079 241.9783)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 556.6624 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 559.3601 241.9783)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 230.66)\\\" x=\\\"0 5.56 11.12 16.12 18.78 21.56 27.12 29.4 32.18 34.46 40.02 42.3 44.96 51.63 57.19 62.19 70.52 76.08 81.64 84.42 87.08 92.64 98.2 103.76 106.42 113.64 119.2 124.76 130.32 132.6 138.16 141.49 144.15 150.82 156.38 161.38 169.71 175.27 180.83 183.61 188.61 191.27 196.27 201.83 207.39 210.05 215.61 221.17 226.17 231.73 234.39 242.72 248.28 253.84 259.4 262.18 264.84 270.95 276.51 282.07 284.73 290.29 295.85 301.41 304.07 311.29 316.85 321.85 324.51 331.18 339.51 345.07 350.63 356.19 358.97 361.63 363.91 368.91 371.57 377.13 379.79 385.35 390.91 393.69 399.25 404.81\\\">any Initial Payment and Regular Payments you have made. The 100 Day Amount is $ 97.70.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 219.3416)\\\" x=\\\"0 6.67 12.23 15.56 17.84\\\">Early</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 63.5418 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 66.4605 219.3416)\\\" x=\\\"0 6.67 12.23 17.23 20.56 28.34 33.9\\\">Buy-Out</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 103.1401 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 106.0588 219.3416)\\\" x=\\\"0 7.78 13.34 16.12 18.4 23.96 29.52\\\">Option.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 138.3586 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 141.2772 219.3416)\\\" x=\\\"0 6.67 9.45 12.23 17.79\\\">After</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 162.3954 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 165.3141 219.3416)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 184.7672 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 187.6858 219.3416)\\\" x=\\\"0 5.56 11.12 16.68 20.01 27.23 32.79\\\">100-Day</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.4837 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 228.4024 219.3416)\\\" x=\\\"0 7.22 12.78 17.78\\\">Cash</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 251.7471 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 254.6657 219.3416)\\\" x=\\\"0 6.67 12.23 17.23 22.79 25.57\\\">Payoff</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 283.0153 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 285.934 219.3416)\\\" x=\\\"0 7.78 13.34 16.12 18.4 23.96\\\">Option</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 315.4555 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 318.3741 219.3416)\\\" x=\\\"0 5.56 11.12\\\">has</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 334.4972 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 337.4158 219.3416)\\\" x=\\\"0 5.56 10.56 16.12 18.4 21.73 27.29 32.85\\\">expired,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 373.0506 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 375.9693 219.3416)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 389.8706 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 392.7893 219.3416)\\\" x=\\\"0 3.33 10 15.56 18.89 21.17\\\">“Early</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 418.9611 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 421.8798 219.3416)\\\" x=\\\"0 6.67 12.23 17.23 20.56 28.34 33.9\\\">Buy-Out</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 458.5595 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 461.4781 219.3416)\\\" x=\\\"0 7.78 13.34 16.12 18.4 23.96 29.52\\\">Option”</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 494.3297 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 497.2484 219.3416)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.8\\\">applies</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.055 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 531.9737 219.3416)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 548.6582 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 551.5769 219.3416)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 208.0232)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 59.5916 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 63.2372 208.0232)\\\" x=\\\"0 5.56 11.12 14.45 19.45 25.01 30.57 35.57\\\">purchase</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 104.3748 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 108.0204 208.0232)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 121.9218 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 125.5673 208.0232)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 163.3603 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 167.0058 208.0232)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 177.5674 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 181.2129 208.0232)\\\" x=\\\"0 5.56 11.12 16.12 18.4 23.96\\\">paying</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 210.7393 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 214.3849 208.0232)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 224.9464 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 228.5919 208.0232)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 242.4933 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 246.1389 208.0232)\\\" x=\\\"0 5 10.56\\\">sum</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 265.0305 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 268.676 208.0232)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 277.0159 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 280.6614 208.0232)\\\" x=\\\"0 3.33 8.89\\\">(1)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 292.8831 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 296.5286 208.0232)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.6517 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 316.2972 208.0232)\\\" x=\\\"0 5.56 11.12 16.12\\\">past</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.1986 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.8442 208.0232)\\\" x=\\\"0 5.56 11.12\\\">due</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.5287 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 359.1743 208.0232)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 394.2524 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 397.898 208.0232)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46 44.46\\\">Payments,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 445.1392 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 448.7847 208.0232)\\\" x=\\\"0 5.56 11.12 16.68 22.24 24.52\\\">unpaid</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 478.8726 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 482.5182 208.0232)\\\" x=\\\"0 2.78 8.34 13.9\\\">fees</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.4196 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 505.0651 208.0232)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.7497 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 525.3952 208.0232)\\\" x=\\\"0 5 10.56 12.84 18.4 23.4 26.18 31.74 36.74\\\">sales/use</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 196.7049)\\\" x=\\\"0 2.78 8.34 13.34 18.9 23.9\\\">taxes,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 67.3797 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 70.748 196.7049)\\\" x=\\\"0 3.33 8.89\\\">(2)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 82.9697 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 86.338 196.7049)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02\\\">70.00%</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 120.254 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 123.6223 196.7049)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 131.9621 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 135.3305 196.7049)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 149.2318 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 152.6001 196.7049)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 185.9546 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 189.3229 196.7049)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 199.8845 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 203.2528 196.7049)\\\" x=\\\"0 7.22 12.78 15.06 20.06\\\">which</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 228.8778 196.7049)\\\" x=\\\"0 3.3683\\\">  </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 235.6144 196.7049)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 249.5157 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 252.8841 196.7049)\\\" x=\\\"0 6.11 11.67 14.45 20.01\\\">Total</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.1741 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 278.5424 196.7049)\\\" x=\\\"0 7.22 12.78 17.78\\\">Cost</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.1039 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 302.4722 196.7049)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.68 32.24\\\">exceeds</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 339.7183 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 343.0866 196.7049)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 356.988 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 360.3563 196.7049)\\\" x=\\\"0 2.78 8.34 10.62 13.4 15.68 21.24\\\">Initial</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.8768 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 387.2451 196.7049)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46\\\">Payment,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 429.4863 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 432.8546 196.7049)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 437.9132 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 441.2815 196.7049)\\\" x=\\\"0 5.56 11.12 16.12\\\">any,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 460.1829 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 463.5512 196.7049)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 480.2358 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 483.6041 196.7049)\\\" x=\\\"0 5 10 15.56 21.12 26.68 32.24 34.52 40.08\\\">scheduled</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.2535 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 532.6218 196.7049)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 185.3865)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46 44.46 47.12 49.9 55.46 58.79 64.35 69.91 75.47 81.03 83.69 86.47 92.03 97.59 100.25 105.81 111.37 114.15 119.71 122.37 127.37 132.93 138.49 141.15 146.71 151.71 157.27 160.6 165.6 167.88 172.88 178.44 181.1 186.1 191.66 197.22 200.55 203.21 208.77 214.33 217.11 219.39 224.95 230.51 233.17 238.73 244.29 249.85 252.51 255.84 261.4 264.73 267.39 272.95 278.51 284.07 286.35 288.63 293.63 299.19 304.75 307.03 312.59 315.25 320.25 325.81 328.09 333.65 338.65 341.31 346.87 350.2 352.86 358.42 363.42 368.98 371.64 374.42 379.98 384.98 390.54 395.54\\\">Payments through the date you exercise your option and (3) applicable sales or use taxes.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 174.0682)\\\" x=\\\"0 7.22 12.78 15.44 22.11 27.67 32.67 38.23 41.56 43.84 46.62 51.62 54.28 61.5 67.06 72.62 78.18 83.18 85.46 88.24 90.9 98.12 103.68 109.24 114.8 117.08 120.41 125.97 131.53 134.31 136.97 144.19 149.75 152.41 157.41 162.97 167.97 173.53 176.86 179.14 181.92 186.92 189.58 195.14 200.7 206.26 211.82 216.82 219.1 221.88 224.54 226.82 231.82 234.48 237.81 243.37 248.93 254.49 256.77 260.1 265.66 271.22 273.88 279.44 285 290.56 296.12 299.45 302.11 304.89 310.45 312.73 317.73 320.39 327.06 332.62 335.95 341.51 347.07 355.4 360.96 366.52 369.3\\\">No Security Deposit Required. No security deposit is required under this Agreement.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 162.7498)\\\" x=\\\"0 5.56 11.12 16.68 21.68\\\">Lease</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 67.9461 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 72.4996 162.7498)\\\" x=\\\"0 6.11 11.67 15 23.33\\\">Term,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 98.608 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 103.1616 162.7498)\\\" x=\\\"0 6.67 12.23 17.79 22.79 28.35 33.91 39.47 45.03 50.59\\\">Subsequent</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 156.5405 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 161.094 162.7498)\\\" x=\\\"0 6.11 11.67 15 23.33 28.33\\\">Terms;</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 192.2024 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 196.7559 162.7498)\\\" x=\\\"0 7.22 12.78 18.34 23.9 31.12 36.68 38.96\\\">Renewal.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.504 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 243.0575 162.7498)\\\" x=\\\"0 6.67 12.23 17.79\\\">Your</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 264.1806 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 268.7341 162.7498)\\\" x=\\\"0 2.28 7.84 10.12 12.9 15.18 20.74\\\">initial</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.7566 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 296.3101 162.7498)\\\" x=\\\"0 2.28 7.84 13.4 18.4\\\">lease</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 320.2749 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 324.8285 162.7498)\\\" x=\\\"0 2.78 8.34 11.67\\\">term</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 344.8285 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 349.382 162.7498)\\\" x=\\\"0 5.56 10.56 16.12 18.4 21.73 27.29\\\">expires</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 381.6769 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 386.2305 162.7498)\\\" x=\\\"0 5.56\\\">60</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 397.3535 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 401.907 162.7498)\\\" x=\\\"0 5.56 11.12 16.12\\\">days</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 423.0301 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 427.5836 162.7498)\\\" x=\\\"0 2.78 6.11 11.67\\\">from</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.5836 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 452.1372 162.7498)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.0385 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 470.5921 162.7498)\\\" x=\\\"0 2.28 7.84 10.62 16.18\\\">later</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 490.1038 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 494.6573 162.7498)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 502.9972 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 507.5507 162.7498)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.4521 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 526.0056 162.7498)\\\" x=\\\"0 6.67 11.67 17.23 22.79 27.79 30.57 36.13\\\">Expected</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 151.4315)\\\" x=\\\"0 7.22 12.78 15.06 17.34 22.34 27.9 31.23\\\">Delivery</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 76.9353 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.1545 151.4315)\\\" x=\\\"0 7.22 12.78 15.56\\\">Date</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 102.2775 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 106.4967 151.4315)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 115.3883 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 119.6074 151.4315)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 133.5088 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 137.7279 151.4315)\\\" x=\\\"0 5.56 11.12 13.9\\\">date</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 157.1908 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 161.4099 151.4315)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 172.533 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 176.7521 151.4315)\\\" x=\\\"0 7.22 12.78 15.06 20.06\\\">which</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 202.3771 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 206.5963 151.4315)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 220.4976 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 224.7168 151.4315)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.5097 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 266.7289 151.4315)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 274.0091 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 278.2283 151.4315)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29 32.85\\\">provided</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 316.6463 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 320.8654 151.4315)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.757 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 333.9761 151.4315)\\\" x=\\\"0 5.56 11.12 13.4 15.68 20.68 26.24 29.57 35.13\\\">delivered</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 374.6744 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 378.8935 151.4315)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 387.2334 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 391.4525 151.4315)\\\" x=\\\"0 5 10.56 16.12\\\">you.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 410.3539 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 414.573 151.4315)\\\" x=\\\"0 7.22 12.78 15.56 17.84\\\">Until</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.6951 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 438.9142 151.4315)\\\" x=\\\"0 3.33 5.61\\\">(i)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.8546 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 452.0738 151.4315)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.1968 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 472.416 151.4315)\\\" x=\\\"0 5.56 11.12 13.9 19.46 21.74\\\">obtain</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.7206 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 503.9398 151.4315)\\\" x=\\\"0 5.56 12.78 18.34 23.9 27.23 32.23 37.79 40.07\\\">ownership</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.5794 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.7986 151.4315)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 140.1131)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 78.493 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 82.2535 140.1131)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 92.815 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 96.5756 140.1131)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29 32.85\\\">provided</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 134.9936 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 138.7541 140.1131)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.5959 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 150.3565 140.1131)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 165.9766 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 169.7371 140.1131)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 221.4315 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 225.192 140.1131)\\\" x=\\\"0 3.33 5.61 7.89\\\">(ii)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 236.4127 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 240.1733 140.1131)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.2963 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 260.0569 140.1131)\\\" x=\\\"0 2.78 8.34 11.67 20 22.28 27.84 33.4 36.18\\\">terminate</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 301.8001 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 305.5606 140.1131)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 321.1807 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 324.9413 140.1131)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 373.8573 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 377.6179 140.1131)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.1794 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 391.9399 140.1131)\\\" x=\\\"0 5.56 11.12 14.45 22.78 25.06 27.84 30.62 36.18\\\">permitted</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 433.6831 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 437.4437 140.1131)\\\" x=\\\"0 5.56 11.12 14.45 20.01 25.57 31.13 36.69 42.25\\\">hereunder</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 483.0345 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 486.795 140.1131)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 503.4796 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 507.2402 140.1131)\\\" x=\\\"0 5 10.56 13.89 17.22 22.78 28.34 33.9 39.46\\\">surrender</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 550.038 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.7986 140.1131)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 128.7947)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 78.493 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.5631 128.7947)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 89.4049 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 92.4749 128.7947)\\\" x=\\\"0 2.28 5.06\\\">its</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 102.5335 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 105.6036 128.7947)\\\" x=\\\"0 5.56 8.89 11.17 16.73 19.01 24.57 30.13\\\">original</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 138.0206 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 141.0907 128.7947)\\\" x=\\\"0 5 10.56 16.12 21.68 23.96 26.74 29.02 34.58 40.14\\\">condition,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 184.0155 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 187.0856 128.7947)\\\" x=\\\"0 2.28 7.84 12.84\\\">less</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 204.9274 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 207.9975 128.7947)\\\" x=\\\"0 3.33 8.89 14.45 19.45 25.01 30.57 36.13 41.69 43.97\\\">reasonable</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.5385 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 260.6086 128.7947)\\\" x=\\\"0 7.22 12.78 18.34\\\">wear</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 282.2834 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 285.3535 128.7947)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.038 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 305.1081 128.7947)\\\" x=\\\"0 2.78 8.34 13.9 17.23\\\">tear,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 325.1179 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 328.188 128.7947)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.7495 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 341.8196 128.7947)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 350.1594 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 353.2295 128.7947)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 367.1309 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 370.201 128.7947)\\\" x=\\\"0 5.56 11.12\\\">end</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 386.8855 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 389.9556 128.7947)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 398.2955 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 401.3656 128.7947)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 406.9271 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 409.9972 128.7947)\\\" x=\\\"0 2.28 7.84 13.4 18.4\\\">lease</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 433.962 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 437.0321 128.7947)\\\" x=\\\"0 2.78 8.34 11.67 20\\\">term,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 459.8104 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 462.8805 128.7947)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 471.7721 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 474.8422 128.7947)\\\" x=\\\"0 3.33 5.61 7.89 10.17\\\">(iii)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 488.3432 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 491.4133 128.7947)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 504.1965 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 507.2666 128.7947)\\\" x=\\\"0 2.78 8.34 11.67 20 22.28 27.84 33.4 36.18\\\">terminate</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.0097 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 552.0798 128.7947)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 117.4764)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 89.616 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 93.7725 117.4764)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 101.6143 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 105.7709 117.4764)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 111.3324 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 115.4889 117.4764)\\\" x=\\\"0 8.33 13.89 19.45 25.01 30.57\\\">manner</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 149.3952 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 153.5517 117.4764)\\\" x=\\\"0 5.56 11.12 14.45 22.78 25.06 27.84 30.62 36.18\\\">permitted</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 195.2948 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 199.4514 117.4764)\\\" x=\\\"0 5.56 11.12 14.45 20.01 25.57 31.13 36.69 42.25 45.58\\\">hereunder,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.8205 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 251.977 117.4764)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 267.5971 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 271.7537 117.4764)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 320.6697 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 324.8262 117.4764)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.8887 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 343.0452 117.4764)\\\" x=\\\"0 5.56 11.12 13.9 19.46 27.79 33.35 36.13 38.41 43.41 48.97 51.25 53.53\\\">automatically</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 401.5804 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 405.7369 117.4764)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 422.4215 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 426.578 117.4764)\\\" x=\\\"0 3.33 8.89 14.45 20.01 25.57 28.35 33.91 39.47 41.75\\\">repeatedly</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 473.3358 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 477.4923 117.4764)\\\" x=\\\"0 3.33 8.89 14.45 20.01\\\">renew</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 504.7287 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 508.8852 117.4764)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 520.5551 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 524.7116 117.4764)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.74 24.02 29.58 35.14 40.7\\\">additional</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 106.158)\\\" x=\\\"0 2.28 7.84 13.4 18.4 23.96 26.62 29.4 34.96 38.29 46.62 51.62 54.4 57.06 62.62 68.18 73.18 78.74 81.4 86.96 92.52 95.18 100.74 106.3 111.3 116.3 118.96 121.24 126.8 129.46 131.74 137.3 142.86 148.42 151.2 156.76\\\">lease terms, each 60 days in length.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 94.8397)\\\" x=\\\"0 8.33 13.89 16.17 21.73 24.51 30.07 35.63 41.19 46.75 51.75\\\">Maintenance</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 98.0193 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 101.2487 94.8397)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 109.5885 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 112.8178 94.8397)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 126.7192 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 129.9485 94.8397)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 170.5198 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 173.7491 94.8397)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 191.5421 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 194.7714 94.8397)\\\" x=\\\"0 5.56 8.89\\\">are</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.2246 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 212.4539 94.8397)\\\" x=\\\"0 3.33 8.89 13.89 19.45 25.01 30.57 35.57 37.85 43.41 45.69\\\">responsible</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 263.7136 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 266.943 94.8397)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 278.6129 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 281.8422 94.8397)\\\" x=\\\"0 8.33 13.89 16.17 21.73 24.51 30.07 32.35 37.91 40.19 45.75\\\">maintaining</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 333.1606 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 336.3899 94.8397)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 345.2815 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 348.5108 94.8397)\\\" x=\\\"0 5 10.56 13.89 18.89 21.17 26.17 28.45 34.01\\\">servicing</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.086 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 391.3154 94.8397)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 405.2167 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 408.446 94.8397)\\\" x=\\\"0 5.56 8.89 14.45 20.01 25.57 28.9 31.68\\\">property</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 445.1306 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 448.3599 94.8397)\\\" x=\\\"0 7.22 12.78 15.06 17.34\\\">while</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 471.2652 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 474.4945 94.8397)\\\" x=\\\"0 2.28\\\">it</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 479.5531 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 482.7825 94.8397)\\\" x=\\\"0 2.28 5.06\\\">its</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 492.8411 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 496.0704 94.8397)\\\" x=\\\"0 5.56 11.12 13.4 18.96\\\">being</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 520.5968 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 523.8261 94.8397)\\\" x=\\\"0 2.28 7.84 13.4 18.4 23.96 29.52\\\">leased.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 556.1308 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 559.3601 94.8397)\\\" x=\\\"0 2.78\\\">In</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 83.5213)\\\" x=\\\"0 5.56 10.56 15.56 21.12 24.45 30.01 35.57 41.13 46.13\\\">accordance</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 92.3992 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 95.7041 83.5213)\\\" x=\\\"0 7.22 9.5 12.28\\\">with</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 113.5459 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 116.8509 83.5213)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 132.471 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 135.7759 83.5213)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 187.4702 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 190.7752 83.5213)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 206.8982 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.2031 83.5213)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 224.2656 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 227.5706 83.5213)\\\" x=\\\"0 5 10.56 16.12 21.68 27.24 32.24\\\">conduct</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.595 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 265.8999 83.5213)\\\" x=\\\"0 5.56 7.84\\\">all</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.022 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 279.3269 83.5213)\\\" x=\\\"0 8.33 13.89 16.17 21.73 24.51 30.07 35.63 41.19 46.75 51.75 57.31\\\">maintenance,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 339.4246 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 342.7295 83.5213)\\\" x=\\\"0 3.33 8.89 14.45 20.01 22.29 25.62 30.62\\\">repairs,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 376.1328 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 379.4377 83.5213)\\\" x=\\\"0 5.56 11.12 16.12 21.68 27.24\\\">upkeep</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 412.2454 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 415.5503 83.5213)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 432.2349 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 435.5398 83.5213)\\\" x=\\\"0 5 10.56 13.89 19.45\\\">care.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 457.7712 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 461.0762 83.5213)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.6328 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 469.9377 83.5213)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.0608 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 489.3657 83.5213)\\\" x=\\\"0 8.33 13.89 19.45 25.01 27.79 33.35 38.35 41.13 46.69 50.02 55.58 58.91 61.13\\\">manufacturer’s</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 555.5034 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 558.8083 83.5213)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 83.5213)\\\" x=\\\"0\\\"> </text></g><clipPath id=\\\"clip0-11\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip0-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 546.6561 L 573.6 546.6561 L 573.6 545.6561 L 34.8 545.6561 L 34.8 546.6561 z \\\"/><path clip-path=\\\"url(#clip0-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.6 545.6561 L 573.6 545.6561 L 573.6 530.3377 L 572.6 530.3377 L 572.6 545.6561 z \\\"/><path clip-path=\\\"url(#clip0-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 545.6561 L 35.8 545.6561 L 35.8 530.3377 L 34.8 530.3377 L 34.8 545.6561 z \\\"/><path clip-path=\\\"url(#clip0-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 530.3377 L 573.6 530.3377 L 573.6 529.3377 L 34.8 529.3377 L 34.8 530.3377 z \\\"/><path clip-path=\\\"url(#clip0-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 81.9217 L 573.6 81.9217 L 573.6 80.9217 L 34.8 80.9217 L 34.8 81.9217 z \\\"/><path clip-path=\\\"url(#clip0-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.6 529.3377 L 573.6 529.3377 L 573.6 81.9217 L 572.6 81.9217 L 572.6 529.3377 z \\\"/><path clip-path=\\\"url(#clip0-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 529.3377 L 35.8 529.3377 L 35.8 81.9217 L 34.8 81.9217 L 34.8 529.3377 z \\\"/><g clip-path=\\\"url(#clip0-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 36.5264)\\\" x=\\\"0 6.498 11.997 14.391 16.785 21.789 26.793 29.295 34.299 39.303 44.307 504 506.3906 508.7812 511.1719 513.5625 515.9531 518.3438 520.7344 523.125 525.5156\\\">UT  07/2019          </text></g><g clip-path=\\\"url(#clip0-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 26.3398)\\\" x=\\\"0 6.003 11.007 16.011 21.015\\\">Page </text></g><g clip-path=\\\"url(#clip0-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 55.8097 26.3398)\\\" x=\\\"0\\\">1</text></g><g clip-path=\\\"url(#clip0-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.815 26.3398)\\\" x=\\\"0 2.394 7.398 9.9\\\"> of </text></g><g clip-path=\\\"url(#clip0-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 73.1021 26.3398)\\\" x=\\\"0\\\">7</text></g><g clip-path=\\\"url(#clip0-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#d9d9d9\\\" style=\\\"font-family:f0-0; font-size:54pt; white-space:pre\\\" transform=\\\"matrix(0.707 0.707 0.707 -0.707 135.6027 198.5094)\\\" x=\\\"0 56.016 96.048 136.08 176.112 216.144 236.16 284.184 324.216 344.232 364.248 416.232 456.264 480.24\\\">Qoppa Software</text></g><g clip-path=\\\"url(#clip0-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#002ba6\\\" style=\\\"font-family:f0-0; font-size:9pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.932 772)\\\" x=\\\"0 9.336 16.008 22.68 29.352 36.024 39.36 47.364 54.036 57.372 60.708 69.372 76.044 80.04 86.712 90.048 94.044 97.38 104.712 111.384 115.38 118.716 126.72 132.72 139.392 142.056 148.728 155.4 158.736 161.4 168.072 174.744 178.08 187.416 194.088 196.752 202.752 206.088 210.084 213.42 220.092 223.428 226.764 233.436 239.436 242.772 246.108 249.444 258.108 266.772 275.436 278.772 285.444 292.116 298.788 305.46 312.132 315.468 321.468 328.14\\\">Qoppa Software - For Evaluation Only - https://www.qoppa.com</text></g></g></svg></svg></g></svg><br>\\n<?xml version='1.0' encoding='UTF-8'?><svg id=\\\"qoppa_document\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" version=\\\"1.1\\\" xmlns=\\\"http://www.w3.org/2000/svg\\\" xmlns:xlink=\\\"http://www.w3.org/1999/xlink\\\"><!-- jPDFWeb v2019R1.03 - Demo Version --><style>title p { display: block; }</style><g id=\\\"qoppa_viewxform\\\" transform=\\\"matrix(1 0 0 1 0 0)\\\"><style type=\\\"text/css\\\">@font-face {font-family:f1-0;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f1-1;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f1-2;src:url(\\\"data:application/font-woff;charset=utf-8;base64,d09GRgABAAAAAAW8AAoAAAAABzQAAQABAAAAAAAAAAAAAAAAAAAAAAAAAABPUy8yAAAA9AAAADcAAABWWalZZmNtYXAAAAEsAAAAUwAAAGwBegIKZ2x5ZgAAAYAAAALfAAADgId/tkZoZWFkAAAEYAAAADMAAAA2GHlkumhoZWEAAASUAAAAIAAAACQGIAKxaG10eAAABLQAAAA0AAAARCRzAuxsb2NhAAAE6AAAACQAAAAkBYYGdm1heHAAAAUMAAAAGAAAACAAFAAzbmFtZQAABSQAAACMAAABPhepMhlwb3N0AAAFsAAAAAwAAAAgAAMAAHicY2Bk8mKcwMDKwMDUxbSbARlwMeogc/8DATI/MCDAkUEBCG8y3fifzBDFdINhLkwOAMp0DLgAeJxjYGBgZGAGYgYGHgYWhgQgLcIgABRhYVBgcGRwZXBn8GTwZwhmCGWI//8fKAsSdQaL+sBE/z/+f/j/of8H/x/4v+//7v+7/m8Em4cBADR/GXUAeJx9kk1ME0EYhmcGu42lUTZQQEgKy5oWQktLt0vbAG20WwJ0m1YskKalbKG7EH7CQYkajAnFGIrCRaUGEE1MxL+bBw/ECzdT0YsHUG8cvZDozXTrbFuMJ2eyySQz7/e+37MfQAAvtImyAAENALAcQtpIqWnIwL1b1+Hnqcvyl+A4JCV4Hgbkt/L3w0P8Fj8EbflfaBsdAAoAVZPRwNodHYytprqGNhgNdJOa0FXVVDM2R4eDIdQEXMhE8crMDwxoEgTLXpr14DUdttvVCU0wpB1PvnqdTHo8E97m5n7/vRU/39ISuOJ241QhnO8J9iQACUAl00hWULRDKczajYZWGDqCM/KDo/jSpsvlcm4toay8LWfCfb23F3t6lJyKXsT6cgBaIEnpShuJuR9IJUfgXXkevkPZwa+DP//29QH3Rf+/L5ZmKZI2EjC9KQijoxuLQ4PlY4TLFZvjvBw3t8G/h7Xe2j5tUnzxUhQ97kmf0ejnV9I8L80Oyff9w4pXFDvu4mxlADA0yewKggK3mFmDj6pCZoakkEbuicMYyubSJ/fH+F4LAEWTZXQZidX1kEHHkf3wfmRtb28NCbmnhS+be4PCJU0Ka04rGqgIcGWUGpPTEQFeiyJ77iN+m0UsZq4w+IYZnAUN2A53r6tSE3SJRmWJ/QkMeGcdAxDWM0IiIaxP+ziOm5rx+TgfOpCknR1RFKXnO5KUmwnwy7h9nk8v8wFQYG3CPhPYp73I2shUF2dGKa/sf+CfuBW3kgfGH/n9p2Lqzq5wsN1qsy0ssB09vqs3+vtVI2eeBU2tdJMw6nLigerTermpkMHQSDk76+vr6ixtgWGn0+WUUnp9uxlX0+mqWk29I91dCiecSeF0rpTJwOIfUJrlwlGtzPPkTbe7oiJutURjFovQ0OBxa63WCxeH4LacXDWbTOZVuCWPpbrdej2A+d/5cWTOP1T+s4piKWTOfUK2xzYA/gBtBuJcAHicY2BkYGAA4rxdv17H89t8ZeBmfgEUYbhtLnAWRv///T+Z6QPTDaA6DgYmkCgAl1oOtgB4nGNgZGBguvE/mSGK2fH/7/+/mT4wAEVQgCAAvv0H1HicY2CAAEZfCGaaDcSXGPSAOADIDmDmYtBjFGOIZtIBsh2BYpcgYkA5HbAajf+/AR7DC3wAAAAAAAAAAAAAABwAUABwAIgAvgDKANoA9AEKAT4BiAGyAcB4nGNgZGBgEGQwYmBiAAFGBjQAAAcrAEh4nJWOMQ6CUBBEH4KKrZUlpRURQkUptZWJhZ1RURPiJ0BD41E8BudzhH8AyGaTN7OTyQJLzrg43gpYawd22EoNPMMntewSsrfsiUvLczZ8LS/kd2QYXVsqXjx40nAQXaUNtTaXE3Dkwlv6T/c+m6vfUHAbnf+QEE9Mn3pdyzFKBET6eaeZ1PIDR/8t33icY2BmwAsAAH0ABA==\\\");}@font-face {font-family:f1-3;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}</style><svg id=\\\"qoppa_page_p1\\\" class=\\\"qoppa_page\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\"><rect class=\\\"qoppa_pageborder\\\" x=\\\"0.5pt\\\" y=\\\"0.5pt\\\" width=\\\"611pt\\\" height=\\\"791pt\\\" fill=\\\"none\\\" /><svg class=\\\"qoppa_pagecontents\\\" x=\\\"0pt\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" viewBox=\\\"0 0 612 792\\\" ><g class=\\\"qoppa_contentstream\\\" transform=\\\"matrix(1 0 0 -1 0 792)\\\" fill=\\\"black\\\" stroke=\\\"black\\\" stroke-width=\\\"1\\\" stroke-linecap=\\\"butt\\\" stroke-linejoin=\\\"miter\\\" stroke-miterlimit=\\\"10\\\"><clipPath id=\\\"clip1-1\\\"><path d=\\\"M 35 487 L 574 487 L 574 770 L 35 770 L 35 487 z \\\"/></clipPath><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 759.4812)\\\" x=\\\"0 5 10.56 12.84 15.12 20.68 24.01 26.23\\\">seller’s</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 71.9353 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 75.2187 759.4812)\\\" x=\\\"0 7.22 12.78 16.11 19.44 25 30.56 33.34\\\">warranty</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 113.5635 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 116.8468 759.4812)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 124.1271 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 127.4105 759.4812)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 135.2523 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 138.5357 759.4812)\\\" x=\\\"0 2.78 8.34 11.67 16.67\\\">force</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.7671 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 164.0505 759.4812)\\\" x=\\\"0 7.22 12.78 18.34\\\">when</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 187.9567 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 191.2401 759.4812)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 207.3631 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.6465 759.4812)\\\" x=\\\"0 5.56 10.56 16.12 21.68 23.96 27.29\\\">acquire</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 243.503 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 246.7863 759.4812)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 260.6877 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 263.9711 759.4812)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 304.5424 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 307.8258 759.4812)\\\" x=\\\"0 2.28\\\">it</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.8844 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 316.1677 759.4812)\\\" x=\\\"0 5 10.56 16.12 18.4\\\">shall</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 336.8513 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 340.1347 759.4812)\\\" x=\\\"0 5.56\\\">be</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.2578 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 354.5411 759.4812)\\\" x=\\\"0 2.78 6.11 11.67 17.23 22.23 25.01 30.57 33.9 37.23 42.79\\\">transferred</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.8956 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 406.179 759.4812)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 414.5188 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 417.8022 759.4812)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 433.9253 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 437.2086 759.4812)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 442.2672 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 445.5506 759.4812)\\\" x=\\\"0 5.56 7.84 10.12 15.68 22.9 28.46\\\">allowed</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 479.5789 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 482.8623 759.4812)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 493.4238 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 496.7072 759.4812)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 510.6086 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 513.892 759.4812)\\\" x=\\\"0 2.78 8.34 11.67 20\\\">terms</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 538.892 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 542.1754 759.4812)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 550.5152 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.7986 759.4812)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 748.1629)\\\" x=\\\"0 7.22 12.78 16.11 19.44 25 30.56 33.34 38.34\\\">warranty.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 736.8445)\\\" x=\\\"0 5.56 11.12 16.12 18.9\\\">Lost,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 62.3797 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 65.5493 736.8445)\\\" x=\\\"0 6.67 9.45 15.01 17.29 22.85 28.41\\\">Stolen,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 96.7407 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 99.9104 736.8445)\\\" x=\\\"0 7.22 12.78 21.11 26.67 32.23 37.79 43.35\\\">Damaged,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.0481 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 149.2177 736.8445)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 158.1093 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 161.279 736.8445)\\\" x=\\\"0 7.22 12.78 17.78 20.56 23.89 29.45 34.45 40.01\\\">Destroyed</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 206.8552 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.0248 736.8445)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 250.5961 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 253.7657 736.8445)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.3224 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 262.492 736.8445)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.3934 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 279.563 736.8445)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 317.356 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 320.5256 736.8445)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 327.8059 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 330.9756 736.8445)\\\" x=\\\"0 2.28 7.84 12.84 15.62\\\">lost,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 349.374 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 352.5437 736.8445)\\\" x=\\\"0 5 7.78 13.34 15.62 21.18 26.74\\\">stolen,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 382.0651 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 385.2348 736.8445)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57 36.13\\\">damaged</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 426.934 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 430.1037 736.8445)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 438.9952 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 442.1649 736.8445)\\\" x=\\\"0 5.56 11.12 16.12 18.9 22.23 27.79 32.79 38.35 43.91\\\">destroyed,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 488.8592 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 492.0289 736.8445)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 508.1519 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 511.3216 736.8445)\\\" x=\\\"0 5.56 11.12 14.45 20.01\\\">agree</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 536.8977 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 540.0674 736.8445)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 548.4072 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 551.5769 736.8445)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 725.5262)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 51.2615 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 55.736 725.5262)\\\" x=\\\"0 5.56\\\">at</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 64.0758 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 68.5503 725.5262)\\\" x=\\\"0 5.56 11.12 16.12\\\">once</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 90.2349 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 94.7094 725.5262)\\\" x=\\\"0 5.56\\\">an</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 105.8324 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 110.3069 725.5262)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 143.6614 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.1359 725.5262)\\\" x=\\\"0 5.56 11.12 16.68 22.24\\\">equal</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 172.6622 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 177.1367 725.5262)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 185.4766 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 189.951 725.5262)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 203.8524 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 208.3269 725.5262)\\\" x=\\\"0 2.28 7.84 12.84 17.84 23.4\\\">lesser</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 235.0603 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 239.5348 725.5262)\\\" x=\\\"0 5.56 8.34\\\">of:</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 250.6529 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 255.1274 725.5262)\\\" x=\\\"0 3.33 8.89\\\">(1)</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 267.3491 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 271.8236 725.5262)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 285.7249 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 290.1994 725.5262)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79 40.01\\\">Property’s</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.2141 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 339.6885 725.5262)\\\" x=\\\"0 2.78 8.34 10.62\\\">fair</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 353.6387 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 358.1132 725.5262)\\\" x=\\\"0 8.33 13.89 17.22 22.22 27.78\\\">market</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.6747 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 393.1492 725.5262)\\\" x=\\\"0 5 10.56 12.84 18.4 23.96\\\">value,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.8924 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 424.3669 725.5262)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.9284 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 439.4029 725.5262)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.7427 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 452.2172 725.5262)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.1185 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 470.593 725.5262)\\\" x=\\\"0 2.78 5.06 13.39\\\">time</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.5432 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 494.0177 725.5262)\\\" x=\\\"0 2.28\\\">it</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.0763 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 503.5508 725.5262)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 510.831 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 515.3055 725.5262)\\\" x=\\\"0 2.28 7.84 12.84 15.62\\\">lost,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 533.704 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 538.1785 725.5262)\\\" x=\\\"0 5 7.78 13.34 15.62 21.18 26.74\\\">stolen,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 714.2078)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57 36.13\\\">damaged</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 82.3992 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 86.9016 714.2078)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 95.7932 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 100.2955 714.2078)\\\" x=\\\"0 5.56 11.12 16.12 18.9 22.23 27.79 32.79 38.35\\\">destroyed</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 144.2115 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.7139 714.2078)\\\" x=\\\"0 3.33 8.89 14.45 17.23 22.79 26.12 34.45 36.73 42.29 47.85\\\">(determined</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 202.1319 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 206.6342 714.2078)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 217.1958 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 221.6981 714.2078)\\\" x=\\\"0 5.56 10.56\\\">us,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 235.038 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 239.5403 714.2078)\\\" x=\\\"0 5.56 10.56 12.84 18.4\\\">using</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 263.5052 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 268.0075 714.2078)\\\" x=\\\"0 5.56\\\">an</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 279.1306 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 283.6329 714.2078)\\\" x=\\\"0 2.28 7.84 13.4 18.96 23.96 26.74 30.07\\\">industry</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 318.7062 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 323.2085 714.2078)\\\" x=\\\"0 5 10.56 12.84 18.4\\\">value</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 347.1734 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 351.6758 714.2078)\\\" x=\\\"0 5.56 11.12 13.4 18.96\\\">guide</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 376.2021 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 380.7045 714.2078)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.4877 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 397.99 714.2078)\\\" x=\\\"0 5 10.56 12.84 18.4 23.4 26.18\\\">select,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 426.95 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 431.4524 714.2078)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 436.511 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 441.0133 714.2078)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 457.1364 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 461.6387 714.2078)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.919 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 473.4214 714.2078)\\\" x=\\\"0 5.56 10.56 16.12 18.4 20.68 26.24 31.8 34.08 39.64 42.97\\\">available);</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 519.1782 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 523.6806 714.2078)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 532.5722 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 537.0745 714.2078)\\\" x=\\\"0 3.33 8.89\\\">(2)</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.2962 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.7986 714.2078)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 702.8895)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57 33.35 36.01 41.01 46.57 52.13 54.79 62.01 67.57 73.13 75.41 80.97 83.63 89.19 94.75 100.31 105.87 108.53 111.31 116.87 119.53 125.09 130.65 135.65 138.31 143.87 146.65 149.31 154.31 159.87 164.87 170.43 173.09 175.87 178.15 186.48 192.04 194.7 197.48 203.04 205.7 211.26 216.26 221.82 225.15 230.15 232.43 237.43 242.99 245.65 248.43 253.99 259.55 262.21 267.77 273.33 278.89 282.22 289.44 295 300 302.66 310.44 316 318.78 321.06 326.62 332.18 334.84 340.4 343.73 346.39 353.06 358.62 361.95 364.23 369.23 371.89 378.56 384.12 389.12 392.45 400.23 405.79 408.57 411.23 419.01 424.57 427.35 429.63 435.19 440.75 443.53 446.19 451.75 456.75 459.41 464.97 470.53 476.09 478.37 480.65 485.65 491.21 496.77 499.05 504.61\\\">amount you would need to pay at such time to exercise the 100-Day Option or Early Buy-Out Option, as applicable.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 691.5711)\\\" x=\\\"0 7.22 12.78 15.06 20.62 25.62 28.4 33.96 36.74 42.3 50.63 56.19 61.75\\\">Reinstatement</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 105.2361 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 108.6807 691.5711)\\\" x=\\\"0 7.22 9.5 15.06 20.62 23.4 28.4\\\">Rights.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 139.8623 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 143.3069 691.5711)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 148.8635 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 152.3081 691.5711)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 168.4311 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 171.8757 691.5711)\\\" x=\\\"0 5.56 8.89\\\">are</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 186.3288 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 189.7734 691.5711)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 197.6152 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 201.0597 691.5711)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 27.3\\\">default</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.1428 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 234.5873 691.5711)\\\" x=\\\"0 5.56 11.12 16.68 19.46 25.02\\\">and/or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.9418 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 266.3864 691.5711)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.2877 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 283.7323 691.5711)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 321.5253 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 324.9698 691.5711)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 332.2501 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 335.6947 691.5711)\\\" x=\\\"0 5 10.56 13.89 17.22 22.78 28.34 33.9 39.46 42.79 48.35\\\">surrendered</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 389.6156 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 393.0601 691.5711)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 401.9517 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 405.3963 691.5711)\\\" x=\\\"0 3.33 8.89 14.45 20.01 25.01 30.01 35.57 40.57 45.57 51.13 56.69\\\">repossessed,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 464.8738 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 468.3184 691.5711)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.4414 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 487.886 691.5711)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 506.7776 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 510.2222 691.5711)\\\" x=\\\"0 3.33 8.89 11.17 16.73 21.73 24.51 30.07 32.85\\\">reinstate</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 548.6353 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 552.0798 691.5711)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 680.2527)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 89.616 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 92.7055 680.2527)\\\" x=\\\"0 7.22 9.5 12.28 17.84 23.4 28.96\\\">without</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 124.4487 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 127.5382 680.2527)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68\\\">losing</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 153.7833 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 156.8728 680.2527)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 172.9958 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 176.0853 680.2527)\\\" x=\\\"0 3.33 5.61 11.17 16.73 19.51\\\">rights</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 200.597 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 203.6865 680.2527)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 212.5781 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 215.6676 680.2527)\\\" x=\\\"0 5.56 11.12 13.9 16.18 21.74 27.3\\\">options</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.9723 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 251.0618 680.2527)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 261.6234 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 264.7129 680.2527)\\\" x=\\\"0 5.56 11.12 16.12 18.4 23.96 29.52\\\">paying:</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 297.0175 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 300.1071 680.2527)\\\" x=\\\"0 3.33 5.61\\\">(i)</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 309.0475 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 312.137 680.2527)\\\" x=\\\"0 5.56 7.84\\\">all</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 322.2591 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 325.3485 680.2527)\\\" x=\\\"0 5.56 11.12 16.12\\\">past</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 344.2499 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 347.3394 680.2527)\\\" x=\\\"0 5.56 11.12\\\">due</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 364.024 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 367.1135 680.2527)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01 30.57 35.57\\\">charges;</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 405.468 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 408.5575 680.2527)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 425.242 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 428.3315 680.2527)\\\" x=\\\"0 3.33 5.61 7.89\\\">(ii)</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 439.5523 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 442.6418 680.2527)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.7003 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 450.7898 680.2527)\\\" x=\\\"0 5.56 7.84 10.12 15.68 22.9 28.46\\\">allowed</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.8182 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 487.9077 680.2527)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 498.4692 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 501.5587 680.2527)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64\\\">applicable</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 546.7686 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 549.8581 680.2527)\\\" x=\\\"0 2.28 7.84 15.06\\\">law,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 668.9344)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 54.6014 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 59.0196 668.9344)\\\" x=\\\"0 3.33 8.89 14.45 19.45 25.01 30.57 36.13 41.69 43.97\\\">reasonable</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 108.5606 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 112.9789 668.9344)\\\" x=\\\"0 5 10.56 15.56 18.34\\\">costs</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.3187 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 140.737 668.9344)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 149.0768 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 153.4951 668.9344)\\\" x=\\\"0 5.56 7.84 12.84 17.84 23.4\\\">pickup</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 182.4599 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 186.8782 668.9344)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 203.5627 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 207.981 668.9344)\\\" x=\\\"0 3.33 8.89 14.45 20.01 22.29 24.57 29.57 35.13 38.46 43.46\\\">redelivery.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 254.2261 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 258.6444 668.9344)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.4373 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 280.8556 668.9344)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.7472 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 304.1654 668.9344)\\\" x=\\\"0 5.56 10.56 16.12 19.45 24.45 26.73 31.73\\\">exercise</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 341.4604 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 345.8786 668.9344)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 365.3317 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 369.75 668.9344)\\\" x=\\\"0 3.33 8.89 11.17 16.73 21.73 24.51 30.07 32.85 38.41 46.74 52.3 57.86\\\">reinstatement</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.3945 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 434.8128 668.9344)\\\" x=\\\"0 3.33 5.61 11.17 16.73\\\">right</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.3245 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 458.7428 668.9344)\\\" x=\\\"0 7.22 9.5 12.28 17.84 20.12\\\">within</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.4263 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 488.8446 668.9344)\\\" x=\\\"0 5.56 11.12\\\">180</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 505.5292 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 509.9474 668.9344)\\\" x=\\\"0 5.56 11.12 16.12\\\">days</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 531.0705 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 535.4887 668.9344)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 543.8286 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 548.2468 668.9344)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 657.616)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 27.3 30.08 32.74 38.3 41.63 44.29 49.29 54.85 58.18 61.51 67.07 72.63 78.19 83.75 87.08 89.86 93.19 98.75 104.31 109.87 114.87 119.87 125.43 130.43 135.43 137.71 143.27 148.83 151.49 157.05 159.83 162.49 165.27 170.83 176.39 179.05 185.72 189.05 194.61 200.17 205.73 209.06 211.84 216.84 219.5 225.06 228.39 231.05 236.05 241.61 246.61 252.17 254.83 257.11 262.67 268.23 273.79 279.35 282.68 285.34 290.9 296.46 299.79 302.07 307.63 313.19 315.85 321.41 324.74 330.3 335.3 337.58 343.14 348.7 354.26 356.92 359.7 365.26 367.92 372.92 378.48 384.04 386.7 392.26 397.82 403.38 408.94 412.27 414.93 420.49 426.05 431.61 433.89 436.17 441.17 446.73 452.29 454.57 460.13 462.79 465.07 470.63 477.85\\\">default or surrender/repossession of the Property or such longer period provided to you under applicable law.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 646.2977)\\\" x=\\\"0 7.22 9.5 15.06 20.62\\\">Right</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 64.1033 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 66.9139 646.2977)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 75.2537 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 78.0643 646.2977)\\\" x=\\\"0 6.11 11.67 15 23.33 25.61 31.17 36.73 39.51 45.07\\\">Terminate.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 125.9158 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 128.7263 646.2977)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.5193 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 149.3299 646.2977)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 168.2215 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 171.032 646.2977)\\\" x=\\\"0 2.78 8.34 11.67 20 22.28 27.84 33.4 36.18\\\">terminate</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 212.7752 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 215.5857 646.2977)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 235.0388 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 237.8494 646.2977)\\\" x=\\\"0 2.28 7.84 13.4 18.4\\\">lease</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 261.8142 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 264.6248 646.2977)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.9793 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 305.7898 646.2977)\\\" x=\\\"0 5.56 11.12 13.4 15.68 21.24 26.8 29.58 31.86 37.42 42.98\\\">obligations</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 353.7781 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 356.5886 646.2977)\\\" x=\\\"0 5.56 11.12 16.68 22.24\\\">under</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 382.1648 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 384.9753 646.2977)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 400.5955 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 403.406 646.2977)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 452.322 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 455.1326 646.2977)\\\" x=\\\"0 7.22 9.5 12.28 17.84 23.4 28.96\\\">without</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.8757 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 489.6863 646.2977)\\\" x=\\\"0 5.56 11.12 16.68 22.24 24.52 27.3\\\">penalty</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.991 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 524.8015 646.2977)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 535.363 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 538.1736 646.2977)\\\" x=\\\"0 5.56 11.12 16.12 18.4 23.96\\\">paying</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 634.9793)\\\" x=\\\"0 5.56 7.84\\\">all</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 50.8221 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 53.7614 634.9793)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 88.8395 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 91.7789 634.9793)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46 44.46\\\">Payments,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 139.0201 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 141.9594 634.9793)\\\" x=\\\"0 2.78 8.34 13.9\\\">fees</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.8608 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 163.8001 634.9793)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 180.4847 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 183.424 634.9793)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01 30.57\\\">charges</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 219.0002 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 221.9396 634.9793)\\\" x=\\\"0 2.78 8.34 13.9\\\">that</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.6192 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 241.5586 634.9793)\\\" x=\\\"0 5.56 8.89\\\">are</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.0117 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 258.951 634.9793)\\\" x=\\\"0 5.56 11.12\\\">due</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.6356 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 278.575 634.9793)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 287.4666 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 290.4059 634.9793)\\\" x=\\\"0 5.56 11.12 16.12\\\">past</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 309.3073 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 312.2466 634.9793)\\\" x=\\\"0 5.56 11.12\\\">due</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 328.9312 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 331.8705 634.9793)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.5551 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 351.4944 634.9793)\\\" x=\\\"0 5 10.56 12.84 18.4 23.96 26.74 32.3 35.63 37.91 40.19\\\">voluntarily</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 396.6898 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 399.6291 634.9793)\\\" x=\\\"0 5 10.56 13.89 17.22 22.78 28.34 33.9 39.46 42.79 45.07 50.63\\\">surrendering</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 455.8303 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 458.7696 634.9793)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.6612 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 470.6005 634.9793)\\\" x=\\\"0 3.33 8.89 11.67 17.23 20.56 26.12 28.4 33.96\\\">returning</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 510.1269 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 513.0663 634.9793)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.9676 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 529.907 634.9793)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 623.6609)\\\" x=\\\"0 2.28 7.84 10.5 12.78 15.56 20.56 23.22 28.78 32.11 34.39 39.95 42.23 47.79 53.35 55.63 58.29 63.29 68.85 74.41 79.97 82.25 85.03 87.31 92.87 98.43 101.21 103.87 106.15 111.71 116.71 121.71 124.37 127.7 133.26 138.82 143.82 149.38 154.94 160.5 166.06 168.34 173.9 176.56 183.78 189.34 194.9 198.23 200.89 206.45 212.01 217.57 220.23 223.01 228.57 234.13 237.46 240.12 245.68 248.46 251.12 253.9 259.46 265.02 267.68 273.24 278.24 283.8 286.08 289.41 294.97 297.75 300.03 305.59 311.15 313.81 319.37 322.15 324.81 330.37 335.93 340.93 343.59 345.87 351.43 356.99 361.99 367.55 370.21 372.99 378.55 381.88 390.21\\\">in its original condition, less reasonable wear and tear at the expiration of any lease term.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 612.3426)\\\" x=\\\"0 5.56 11.12 13.9\\\">Late</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.1629 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 63.3819 612.3426)\\\" x=\\\"0 6.11 11.67 17.23 22.23\\\">Fees.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 88.3917 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 91.6107 612.3426)\\\" x=\\\"0 9.44\\\">We</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 106.6107 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 109.8297 612.3426)\\\" x=\\\"0 3.33 8.89 13.89 19.45 22.78 27.78\\\">reserve</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 143.1744 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 146.3934 612.3426)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.2948 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 163.5138 612.3426)\\\" x=\\\"0 3.33 5.61 11.17 16.73\\\">right</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 183.0255 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 186.2445 612.3426)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 194.5844 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 197.8034 612.3426)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01\\\">charge</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 228.3796 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 231.5986 612.3426)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 237.1601 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 240.3791 612.3426)\\\" x=\\\"0 2.28 7.84 10.62\\\">late</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.5608 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 259.7798 612.3426)\\\" x=\\\"0 2.78 8.34\\\">fee</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 273.6811 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 276.9002 612.3426)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 288.5701 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 291.7891 612.3426)\\\" x=\\\"0 5.56 11.12 16.12\\\">past</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 310.6905 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 313.9095 612.3426)\\\" x=\\\"0 5.56 11.12\\\">due</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 330.594 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 333.8131 612.3426)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57 38.35 43.35\\\">payments,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 379.9459 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 383.1649 612.3426)\\\" x=\\\"0 5.56 8.34 11.12 16.68\\\">after</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.1747 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 406.3937 612.3426)\\\" x=\\\"0 5.56 7.84 10.12 15.68 22.9 25.18 30.74\\\">allowing</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 442.7023 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 445.9213 612.3426)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 457.5912 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 460.8102 612.3426)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 476.9333 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 480.1523 612.3426)\\\" x=\\\"0 5.56 8.89 14.45 19.45\\\">grace</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 505.1669 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 508.3859 612.3426)\\\" x=\\\"0 5.56 11.12 14.45 16.73 22.29 27.85\\\">period,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 539.0207 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 542.2397 612.3426)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 550.5796 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.7986 612.3426)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 601.0242)\\\" x=\\\"0 2.28 7.84 12.84 17.84 23.4\\\">lesser</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 67.4334 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 70.2009 601.0242)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 78.5407 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.3082 601.0242)\\\" x=\\\"0 3.33 5.61\\\">(i)</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 90.2486 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 93.0161 601.0242)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 106.9175 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 109.6849 601.0242)\\\" x=\\\"0 3.33 8.89 11.67\\\">rate</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 126.9164 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 129.6839 601.0242)\\\" x=\\\"0 5.56 7.84 10.12 15.68 22.9 28.46\\\">allowed</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 163.7122 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 166.4797 601.0242)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 177.0412 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 179.8087 601.0242)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64\\\">applicable</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.0186 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 227.7861 601.0242)\\\" x=\\\"0 2.28 7.84\\\">law</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 242.8496 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 245.6171 601.0242)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 254.5087 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 257.2761 601.0242)\\\" x=\\\"0 3.33 5.61 7.89\\\">(ii)</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 268.4968 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 271.2643 601.0242)\\\" x=\\\"0 5.56 11.12 13.9 19.46\\\">$2.00</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 296.2887 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 299.0562 601.0242)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 310.7261 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 313.4936 601.0242)\\\" x=\\\"0 7.22 12.78 18.34 23.34 25.62 30.62\\\">weekly,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 346.8969 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 349.6644 601.0242)\\\" x=\\\"0 5.56 7.84 15.06 20.62 26.18 31.18 33.46 38.46\\\">biweekly,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 390.9095 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 393.677 601.0242)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.5686 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 405.3361 601.0242)\\\" x=\\\"0 5 10.56 18.89 21.17 24.5 32.83 38.39 43.95 46.73 52.29 54.57\\\">semi-monthly</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 464.9113 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 467.6787 601.0242)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57 38.35 43.35\\\">payments,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 513.8116 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 516.579 601.0242)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 525.4706 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 528.2381 601.0242)\\\" x=\\\"0 5.56 11.12 13.9 19.46\\\">$5.00</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.2625 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 556.03 601.0242)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 589.7059)\\\" x=\\\"0 8.33 13.89 19.45 22.23 27.79 30.07 35.07 37.73 43.29 48.85 53.85 62.18 67.74 73.3 76.08 81.08\\\">monthly payments.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 578.3875)\\\" x=\\\"0 7.7783 10.5566 16.1182 21.6797\\\">Other</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 65.7098 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 68.366 578.3875)\\\" x=\\\"0 2.7783 11.1084 16.6699 22.2315 25.5615 28.3398 33.9014 39.4629\\\">Important</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 110.6072 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 113.2635 578.3875)\\\" x=\\\"0 6.1084 11.6699 15 23.3301 28.3301\\\">Terms.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 144.3719 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 147.0281 578.3875)\\\" x=\\\"0 6.6699 12.2314\\\">See</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 164.8211 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 167.4773 578.3875)\\\" x=\\\"0 2.7783 8.3398\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 181.3787 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 184.035 578.3875)\\\" x=\\\"0 5.5615 8.3398 13.9014 19.4629\\\">other</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 206.8279 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 209.4842 578.3875)\\\" x=\\\"0 5.5615 11.123 14.4531 17.2314\\\">parts</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.7156 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 234.3719 578.3875)\\\" x=\\\"0 5.5615\\\">of</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 242.7117 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 245.368 578.3875)\\\" x=\\\"0 2.7783 8.3398 10.6201\\\">this</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 260.9881 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 263.6443 578.3875)\\\" x=\\\"0 6.6699 12.2314 15.5615 21.123 26.6846 35.0147 40.5762 46.1377\\\">Agreement</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.5603 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 315.2166 578.3875)\\\" x=\\\"0 2.7783 8.3398\\\">for</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 326.8865 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 329.5428 578.3875)\\\" x=\\\"0 5.5615 11.1231 16.6846 18.9648 21.7432 24.0234 29.585 35.1465 40.708\\\">additional</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 372.531 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 375.1873 578.3875)\\\" x=\\\"0 2.2803 10.6103 16.1719 21.7334 25.0635 27.8418 33.4033 38.9648\\\">important</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 416.9305 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 419.5867 578.3875)\\\" x=\\\"0 2.2803 7.8418 10.6201 16.1816 19.5117 27.8418 33.4033 36.1816 38.4619 44.0234\\\">information</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 469.1717 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 471.8279 578.3875)\\\" x=\\\"0 5.5615\\\">on</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 482.951 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 485.6072 578.3875)\\\" x=\\\"0 2.7783 8.3398 11.6699 20 22.2803 27.8418 33.4033 36.1816 38.4619 44.0234\\\">termination</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 567.0691)\\\" x=\\\"0 5.5615 8.8916 14.4531 19.4531 25.0146 30.5762 36.1377 39.4678 45.0293 50.0293\\\">procedures,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 93.5076 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 96.1639 567.0691)\\\" x=\\\"0 5.5615 11.1231 14.4531 19.4531 25.0146 30.5762 35.5762\\\">purchase</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 137.3016 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 139.9578 567.0691)\\\" x=\\\"0 5.5615 11.123 13.9014 16.1816 21.7432\\\">option</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 167.2625 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 169.9187 567.0691)\\\" x=\\\"0 3.4301 5.8103 11.4719 17.1334 20.0117 25.1117\\\">rights,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 197.9088 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 200.665 567.0691)\\\" x=\\\"0 3.3801 8.9916 14.0416 19.6531 25.2646 30.8762 35.9262 38.2565 43.868 46.1983 48.5285 50.8588 53.6871 56.0174 61.6289\\\">responsibilities</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 267.3439 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 270.0502 567.0691)\\\" x=\\\"0 3.0283 8.8399\\\">for</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 282.4701 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 285.3764 567.0691)\\\" x=\\\"0 2.4303 8.1418 13.2918 18.4418\\\">loss,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 306.7465 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 309.5527 567.0691)\\\" x=\\\"0 5.6615 11.3231 19.7531 25.4146 31.0762\\\">damage</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 346.2904 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 349.0467 567.0691)\\\" x=\\\"0 5.8615\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 358.5383 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 361.4945 567.0691)\\\" x=\\\"0 5.6115 11.2231 16.2731 19.1014 22.4814 28.093 33.143 35.9713 38.3016 43.9131\\\">destruction</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 411.0191 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 413.7254 567.0691)\\\" x=\\\"0 5.8615\\\">of</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 422.6652 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 425.6215 567.0691)\\\" x=\\\"0 3.0283 8.8398\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 440.2729 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 443.1791 567.0691)\\\" x=\\\"0 6.7699 10.2 15.8615 21.523 27.1846 30.6146 33.493 38.593\\\">Property,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.6504 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 487.4066 567.0691)\\\" x=\\\"0 5.6615 10.7615 13.6398 19.3014 24.9629\\\">actual</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 514.7498 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 517.506 567.0691)\\\" x=\\\"0 5.6615\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.5976 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 529.3539 567.0691)\\\" x=\\\"0 2.3803 10.8103 16.4719 18.8522 21.2324 26.894\\\">implied</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 555.7508)\\\" x=\\\"0 7.2717 12.8832 16.2633 19.6434 25.2549 30.8664 33.6947 36.025 41.6365 46.6865\\\">warranties,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 90.2148 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 92.9211 555.7508)\\\" x=\\\"0 2.8283 8.4398 13.4898 19.1014 24.1514\\\">taxes,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 119.9008 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 122.607 555.7508)\\\" x=\\\"0 5.7115 8.6398 14.3514 20.0629\\\">other</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.15 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.9563 555.7508)\\\" x=\\\"0 5.1 10.7615 16.423 19.8531 25.5146 31.1762\\\">charges</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 185.2324 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 187.9887 555.7508)\\\" x=\\\"0 5.6115 11.223\\\">and</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 204.8232 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 207.5295 555.7508)\\\" x=\\\"0 5.5615 11.1231 16.6846 22.2461 24.5264 27.3047 29.585 35.1465\\\">penalties</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.676 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 250.3322 555.7508)\\\" x=\\\"0 5 10.5615\\\">you</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 266.4553 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 269.1115 555.7508)\\\" x=\\\"0 8.3301 13.8916\\\">may</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 288.0031 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 290.6594 555.7508)\\\" x=\\\"0 2.2803 7.8418 12.8418 18.4033 21.7334\\\">incur,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 315.1711 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 317.8273 555.7508)\\\" x=\\\"0 5.5615 11.123\\\">and</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 334.5119 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 337.1682 555.7508)\\\" x=\\\"0 5.5615 8.3398 13.9014 19.4629\\\">other</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.9611 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 362.6174 555.7508)\\\" x=\\\"0 2.2803 10.6103 16.1719 21.7334 25.0635 27.8418 33.4033 38.9648\\\">important</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 404.3605 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.0168 555.7508)\\\" x=\\\"0 2.2803 7.8418 10.6201 16.1816 19.5117 27.8418 33.4033 36.1816 38.4619 44.0234 49.585\\\">information.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 459.3801 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 462.0363 555.7508)\\\" x=\\\"0 6.6699 12.2314\\\">You</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 479.8293 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 482.4855 555.7508)\\\" x=\\\"0 5.5615 10.5615 15.5615 21.1231 26.6846 33.9063 36.1865 41.7481 47.3096 52.8711\\\">acknowledge</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 540.9182 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 543.5744 555.7508)\\\" x=\\\"0 2.7783 8.3398 13.9014\\\">that</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 544.4324)\\\" x=\\\"0 7.2717\\\">we</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 53.5832 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 56.2895 544.4324)\\\" x=\\\"0 5.5615 8.8916 14.4531 19.4531 21.7334 27.2949 32.8564\\\">provided</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 94.7074 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 97.3637 544.4324)\\\" x=\\\"0 5 10.5615\\\">you</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 113.4867 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 116.143 544.4324)\\\" x=\\\"0 7.2217 9.502 12.2803\\\">with</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 133.9848 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 136.641 544.4324)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 142.4525 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 145.3588 544.4324)\\\" x=\\\"0 5 10.5615 18.8916 24.4531 26.7334 32.2949 35.0733 40.6348\\\">completed</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 191.5551 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 194.2113 544.4324)\\\" x=\\\"0 5 10.5615 16.1231\\\">copy</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 215.3344 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 217.9906 544.4324)\\\" x=\\\"0 5.6115\\\">of</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 226.4305 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 229.1367 544.4324)\\\" x=\\\"0 2.7783 8.3398 10.6201\\\">this</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 244.7568 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 247.4131 544.4324)\\\" x=\\\"0 6.6699 12.2315 15.5615 21.123 26.6846 35.0146 40.5762 46.1377 48.916\\\">Agreement.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.1074 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 301.7637 544.4324)\\\" x=\\\"0 6.6699 12.2314\\\">You</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.5566 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 322.2129 544.4324)\\\" x=\\\"0 5.5615 10.5615 15.5615 21.123 26.6846 33.9062 36.1865 41.748 47.3096 52.8711\\\">acknowledge</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.6455 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 383.3017 544.4324)\\\" x=\\\"0 2.7783 8.3399 13.9014\\\">that</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 399.9814 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 402.6377 544.4324)\\\" x=\\\"0 7.2717\\\">we</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 415.5209 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 418.2271 544.4324)\\\" x=\\\"0 8.3301 13.8916 19.4531\\\">made</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 443.2418 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 445.898 544.4324)\\\" x=\\\"0 2.7783 8.3399\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 459.7994 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 462.8557 544.4324)\\\" x=\\\"0 5.5615 7.8418 12.8418 17.8418 20.1221 25.6836 30.6836 36.2451 39.5752 45.1367\\\">disclosures</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.9924 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 516.0486 544.4324)\\\" x=\\\"0 5.6115\\\">at</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 524.4885 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 527.5447 544.4324)\\\" x=\\\"0 5.6115\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 533.1141)\\\" x=\\\"0 5.5615 11.123 13.9014 19.4629 22.793\\\">before</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 69.0545 533.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 72.1107 533.1141)\\\" x=\\\"0 2.7783 8.3398\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 86.0121 533.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 89.0684 533.1141)\\\" x=\\\"0 5 10.5615 16.123 21.123 26.6846 35.0146 43.3447 48.9062 51.6846 53.9648 59.5264\\\">consummation</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 154.1562 533.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 157.2125 533.1141)\\\" x=\\\"0 5.6115\\\">of</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 165.6523 533.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 168.7086 533.1141)\\\" x=\\\"0 2.7783 8.3398\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 182.61 533.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 185.6662 533.1141)\\\" x=\\\"0 6.6699 12.2314 15.5615 21.123 26.6846 35.0146 40.5762 46.1377 48.916\\\">Agreement.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 519.7957)\\\" x=\\\"0 6.67 8.95 11.23 13.89 19.45 22.23 27.79 33.35 36.68 39.34 42.12 47.68 53.24 58.24 60.9 68.12 73.68 75.96 80.96 86.52 89.18 97.51 103.07 108.07 110.73 116.29 121.85 124.51 129.51 135.07 140.63 143.96 149.52 155.08 160.64 163.42 166.08 168.36 173.92 178.92 181.2 186.76 192.32 197.88 200.54 203.32 208.88 214.44 219.44 222.1 224.88 230.44 233.77\\\">All other fees which may be charged, include fees for:</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 22.7 506.4773)\\\" x=\\\"0 3.33 8.89\\\">(1)</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 506.4773)\\\" x=\\\"0 3.33 8.89 12.22 14.88 22.1 27.66 30.44 36 39.33 44.89 50.45 56.01 58.67 65.34 70.9 75.9 84.23 89.79 95.35 98.13 103.13 105.79 111.35 114.68 117.34 124.56 130.12 135.68 140.68 146.24 149.02 151.8 154.08 159.08 161.36 166.92 172.48 175.26 177.92 184.03 189.59 195.15 200.71 205.71 208.37 214.48 220.04 225.6 228.38 231.04 236.6 239.26 244.82 250.38 253.16 258.72\\\">(1) Returned Payments or Nonsufficient Funds Fee: $ 20.00</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:8.25pt\\\" transform=\\\"matrix(1 0 0 -1 22.7 495.159)\\\" x=\\\"0 3.663 9.779\\\">(2)</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 495.159)\\\" x=\\\"0 3.33 8.89 12.22 14.88 22.1 27.66 29.94 35.5 40.5 43.28 48.84 51.62 57.18 65.51 71.07 76.63 79.41 82.07 88.18 93.74 99.3 104.3 107.08 109.74 116.96 122.52 128.08 133.64 136.3 139.63 145.19 147.97 153.53 159.09 162.42 165.08 167.86 173.42 178.98 184.54 187.2 192.76 195.04 200.04 205.04 210.6 216.16 218.82 224.38 229.94 235.5 238.16 241.49 247.05 252.61 258.17 260.45 262.73 267.73 273.29 276.62 281.62 284.28 289.28 294.84 300.4 303.73 309.29 314.85 319.85 322.51 328.07 330.35 332.63 338.19 345.41 350.97 356.53 359.19 364.75 369.75 372.41 374.69 380.25 387.47\\\">(2) Reinstatement Fees: None (other than pickup and redelivery charges allowed by law)</text></g><clipPath id=\\\"clip1-2\\\"><path d=\\\"M 35 448 L 574 448 L 574 488 L 35 488 L 35 448 z \\\"/></clipPath><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 35.3 487.0594 L 573.1 487.0594 L 573.1 448.1043 L 35.3 448.1043 L 35.3 487.0594 z \\\"/><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 40.7 484.0594 L 567.7 484.0594 L 567.7 450.1043 L 40.7 450.1043 L 40.7 484.0594 z \\\"/><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 40.7 484.0594 L 52.7 484.0594 L 52.7 472.0594 L 40.7 472.0594 L 40.7 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 474.8406)\\\" x=\\\"0 6.67\\\">By</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 52.3699 484.0594 L 55.3699 484.0594 L 55.3699 472.0594 L 52.3699 472.0594 L 52.3699 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 52.3699 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 55.339 484.0594 L 90.339 484.0594 L 90.339 472.0594 L 55.339 472.0594 L 55.339 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 55.339 474.8406)\\\" x=\\\"0 5 7.28 12.84 18.4 20.68 26.24 31.8\\\">signing,</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 89.924 484.0594 L 92.924 484.0594 L 92.924 472.0594 L 89.924 472.0594 L 89.924 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 89.924 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 92.8931 484.0594 L 109.8931 484.0594 L 109.8931 472.0594 L 92.8931 472.0594 L 92.8931 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 92.8931 474.8406)\\\" x=\\\"0 5 10.56\\\">you</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 109.0162 484.0594 L 112.0162 484.0594 L 112.0162 472.0594 L 109.0162 472.0594 L 109.0162 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 109.0162 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 111.9853 484.0594 L 137.9853 484.0594 L 137.9853 472.0594 L 111.9853 472.0594 L 111.9853 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 111.9853 474.8406)\\\" x=\\\"0 5.56 11.12 14.45 20.01\\\">agree</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 137.5614 484.0594 L 140.5614 484.0594 L 140.5614 472.0594 L 137.5614 472.0594 L 137.5614 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 137.5615 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 140.5306 484.0594 L 157.5306 484.0594 L 157.5306 472.0594 L 140.5306 472.0594 L 140.5306 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 140.5306 474.8406)\\\" x=\\\"0 2.78 8.34 13.9\\\">that</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 157.2103 484.0594 L 160.2103 484.0594 L 160.2103 472.0594 L 157.2103 472.0594 L 157.2103 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 157.2103 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 160.1794 484.0594 L 177.1794 484.0594 L 177.1794 472.0594 L 160.1794 472.0594 L 160.1794 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 160.1794 474.8406)\\\" x=\\\"0 5 10.56\\\">you</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 176.3024 484.0594 L 179.3024 484.0594 L 179.3024 472.0594 L 176.3024 472.0594 L 176.3024 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 176.3024 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 179.2715 484.0594 L 217.2715 484.0594 L 217.2715 472.0594 L 179.2715 472.0594 L 179.2715 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 179.2715 474.8406)\\\" x=\\\"0 3.33 8.89 13.89 19.45 21.73 26.73 32.29\\\">received</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 217.128 484.0594 L 220.128 484.0594 L 220.128 472.0594 L 217.128 472.0594 L 217.128 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 217.128 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 220.0971 484.0594 L 226.0971 484.0594 L 226.0971 472.0594 L 220.0971 472.0594 L 220.0971 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 220.0971 474.8406)\\\" x=\\\"0\\\">a</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 225.6586 484.0594 L 228.6586 484.0594 L 228.6586 472.0594 L 225.6586 472.0594 L 225.6586 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.6586 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 228.6277 484.0594 L 258.6277 484.0594 L 258.6277 472.0594 L 228.6277 472.0594 L 228.6277 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 228.6277 474.8406)\\\" x=\\\"0 2.28 7.84 13.4 15.68 21.24 23.52\\\">legible</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 257.7147 484.0594 L 260.7147 484.0594 L 260.7147 472.0594 L 257.7147 472.0594 L 257.7147 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.7147 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 260.6838 484.0594 L 282.6838 484.0594 L 282.6838 472.0594 L 260.6838 472.0594 L 260.6838 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 260.6838 474.8406)\\\" x=\\\"0 5 10.56 16.12\\\">copy</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 281.8068 484.0594 L 284.8068 484.0594 L 284.8068 472.0594 L 281.8068 472.0594 L 281.8068 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.8068 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 284.7759 484.0594 L 293.7759 484.0594 L 293.7759 472.0594 L 284.7759 472.0594 L 284.7759 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 284.7759 474.8406)\\\" x=\\\"0 5.56\\\">of</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 293.1158 484.0594 L 296.1158 484.0594 L 296.1158 472.0594 L 293.1158 472.0594 L 293.1158 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 293.1158 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 296.0849 484.0594 L 312.0849 484.0594 L 312.0849 472.0594 L 296.0849 472.0594 L 296.0849 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 296.0849 474.8406)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 311.705 484.0594 L 314.705 484.0594 L 314.705 472.0594 L 311.705 472.0594 L 311.705 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 311.705 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 314.6742 484.0594 L 366.6742 484.0594 L 366.6742 472.0594 L 314.6742 472.0594 L 314.6742 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 314.6741 474.8406)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement.</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 366.3685 484.0594 L 369.3685 484.0594 L 369.3685 472.0594 L 366.3685 472.0594 L 366.3685 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 366.3685 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 369.3376 484.0594 L 387.3376 484.0594 L 387.3376 472.0594 L 369.3376 472.0594 L 369.3376 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 369.3376 474.8406)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 387.1306 484.0594 L 390.1306 484.0594 L 390.1306 472.0594 L 387.1306 472.0594 L 387.1306 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 387.1306 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 390.0997 484.0594 L 416.0997 484.0594 L 416.0997 472.0594 L 390.0997 472.0594 L 390.0997 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 390.0997 474.8406)\\\" x=\\\"0 5.56 11.12 14.45 20.01\\\">agree</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 415.6759 484.0594 L 418.6759 484.0594 L 418.6759 472.0594 L 415.6759 472.0594 L 415.6759 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 415.6759 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 418.645 484.0594 L 427.645 484.0594 L 427.645 472.0594 L 418.645 472.0594 L 418.645 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 418.645 474.8406)\\\" x=\\\"0 2.78\\\">to</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 426.9848 484.0594 L 429.9848 484.0594 L 429.9848 472.0594 L 426.9848 472.0594 L 426.9848 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 426.9848 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 429.9539 484.0594 L 443.9539 484.0594 L 443.9539 472.0594 L 429.9539 472.0594 L 429.9539 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 429.9539 474.8406)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 443.8553 484.0594 L 446.8553 484.0594 L 446.8553 472.0594 L 443.8553 472.0594 L 443.8553 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 443.8553 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 446.8244 484.0594 L 471.8244 484.0594 L 471.8244 472.0594 L 446.8244 472.0594 L 446.8244 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 446.8244 474.8406)\\\" x=\\\"0 2.78 8.34 11.67 20\\\">terms</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 471.8244 484.0594 L 474.8244 484.0594 L 474.8244 472.0594 L 471.8244 472.0594 L 471.8244 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 471.8244 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 474.7935 484.0594 L 483.7935 484.0594 L 483.7935 472.0594 L 474.7935 472.0594 L 474.7935 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 474.7935 474.8406)\\\" x=\\\"0 5.56\\\">of</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 483.1334 484.0594 L 486.1334 484.0594 L 486.1334 472.0594 L 483.1334 472.0594 L 483.1334 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 483.1334 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 486.1025 484.0594 L 502.1025 484.0594 L 502.1025 472.0594 L 486.1025 472.0594 L 486.1025 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 486.1025 474.8406)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 501.7226 484.0594 L 504.7226 484.0594 L 504.7226 472.0594 L 501.7226 472.0594 L 501.7226 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.7226 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 504.6917 484.0594 L 553.6918 484.0594 L 553.6918 472.0594 L 504.6917 472.0594 L 504.6917 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 504.6917 474.8406)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 553.6078 484.0594 L 556.6078 484.0594 L 556.6078 472.0594 L 553.6078 472.0594 L 553.6078 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.6078 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 556.5769 484.0594 L 568.5769 484.0594 L 568.5769 472.0594 L 556.5769 472.0594 L 556.5769 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 556.5769 474.8406)\\\" x=\\\"0 5.56\\\">on</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 567.7 484.0594 L 570.7 484.0594 L 570.7 472.0594 L 567.7 472.0594 L 567.7 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 40.7 472.741 L 51.7 472.741 L 51.7 460.741 L 40.7 460.741 L 40.7 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 463.5223)\\\" x=\\\"0 5.56 7.84\\\">all</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 50.8221 472.741 L 54.8221 472.741 L 54.8221 460.741 L 50.8221 460.741 L 50.8221 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 50.8221 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 54.1471 472.741 L 60.1471 472.741 L 60.1471 460.741 L 54.1471 460.741 L 54.1471 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 54.1471 463.5223)\\\" x=\\\"0\\\">6</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 59.7087 472.741 L 63.7087 472.741 L 63.7087 460.741 L 59.7087 460.741 L 59.7087 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 59.7087 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 63.0337 472.741 L 94.0337 472.741 L 94.0337 460.741 L 63.0337 460.741 L 63.0337 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 63.0337 463.5223)\\\" x=\\\"0 5.56 11.12 16.68 22.24 27.24\\\">pages,</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 93.0582 472.741 L 97.0582 472.741 L 97.0582 460.741 L 93.0582 460.741 L 93.0582 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 93.0582 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 96.3832 472.741 L 136.3832 472.741 L 136.3832 460.741 L 96.3832 460.741 L 96.3832 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 96.3832 463.5223)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24 28.52 34.08\\\">including</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 136.0317 472.741 L 140.0317 472.741 L 140.0317 460.741 L 136.0317 460.741 L 136.0317 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.0317 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 139.3568 472.741 L 153.3568 472.741 L 153.3568 460.741 L 139.3568 460.741 L 139.3568 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 139.3568 463.5223)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 153.2581 472.741 L 157.2581 472.741 L 157.2581 460.741 L 153.2581 460.741 L 153.2581 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 153.2581 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 156.5832 472.741 L 203.5832 472.741 L 203.5832 460.741 L 156.5832 460.741 L 156.5832 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 156.5832 463.5223)\\\" x=\\\"0 3.55 10.77 16.33 21.33 24.11 29.67 38 43.56\\\">&quot;Customer</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 203.4777 472.741 L 207.4777 472.741 L 207.4777 460.741 L 203.4777 460.741 L 203.4777 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 203.4777 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 206.8028 472.741 L 265.8028 472.741 L 265.8028 460.741 L 206.8028 460.741 L 206.8028 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 206.8028 463.5223)\\\" x=\\\"0 6.67 12.23 15.01 20.57 26.13 29.46 31.74 36.74 42.3 45.08 47.36 52.92\\\">Authorization</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 265.2891 472.741 L 269.2891 472.741 L 269.2891 460.741 L 265.2891 460.741 L 265.2891 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 265.2891 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 268.6142 472.741 L 280.6142 472.741 L 280.6142 460.741 L 268.6142 460.741 L 268.6142 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 268.6142 463.5223)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 280.2841 472.741 L 284.2841 472.741 L 284.2841 460.741 L 280.2841 460.741 L 280.2841 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.2841 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 283.6092 472.741 L 328.6092 472.741 L 328.6092 460.741 L 283.6092 460.741 L 283.6092 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 283.6092 463.5223)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46\\\">Payments</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 328.0721 472.741 L 332.0721 472.741 L 332.0721 460.741 L 328.0721 460.741 L 328.0721 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 328.0721 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 331.3972 472.741 L 344.3972 472.741 L 344.3972 460.741 L 331.3972 460.741 L 331.3972 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 331.3972 463.5223)\\\" x=\\\"0 5 7.28\\\">via</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 344.239 472.741 L 348.239 472.741 L 348.239 460.741 L 344.239 460.741 L 344.239 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 344.239 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 347.564 472.741 L 375.564 472.741 L 375.564 460.741 L 347.564 460.741 L 347.564 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 347.564 463.5223)\\\" x=\\\"0 6.67 13.89 21.11 23.89\\\">ACH,&quot;</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 375.0055 472.741 L 379.0055 472.741 L 379.0055 460.741 L 375.0055 460.741 L 375.0055 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.0054 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 378.3305 472.741 L 392.3305 472.741 L 392.3305 460.741 L 378.3305 460.741 L 378.3305 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 378.3305 463.5223)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 392.2319 472.741 L 396.2319 472.741 L 396.2319 460.741 L 392.2319 460.741 L 392.2319 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 392.2319 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 395.557 472.741 L 445.557 472.741 L 445.557 460.741 L 395.557 460.741 L 395.557 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 395.557 463.5223)\\\" x=\\\"0 3.55 10.22 13.55 19.11 21.39 24.17 27.5 33.06 35.84 38.12 43.68\\\">&quot;Arbitration</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 444.8001 472.741 L 448.8001 472.741 L 448.8001 460.741 L 444.8001 460.741 L 444.8001 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 444.8001 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 448.1252 472.741 L 480.1252 472.741 L 480.1252 460.741 L 448.1252 460.741 L 448.1252 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 448.1252 463.5223)\\\" x=\\\"0 7.22 9.5 15.06 20.62 25.62\\\">Clause</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 479.3117 472.741 L 483.3117 472.741 L 483.3117 460.741 L 479.3117 460.741 L 479.3117 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 479.3117 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 482.6368 472.741 L 499.6368 472.741 L 499.6368 460.741 L 482.6368 460.741 L 482.6368 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 482.6368 463.5223)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 499.3214 472.741 L 503.3214 472.741 L 503.3214 460.741 L 499.3214 460.741 L 499.3214 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.3214 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 502.6465 472.741 L 534.6465 472.741 L 534.6465 460.741 L 502.6465 460.741 L 502.6465 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 502.6465 463.5223)\\\" x=\\\"0 9.44 15 17.28 22.28 27.84\\\">Waiver</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 533.8184 472.741 L 537.8184 472.741 L 537.8184 460.741 L 533.8184 460.741 L 533.8184 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 533.8183 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 537.1434 472.741 L 546.1434 472.741 L 546.1434 460.741 L 537.1434 460.741 L 537.1434 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 537.1434 463.5223)\\\" x=\\\"0 5.56\\\">of</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 545.4833 472.741 L 549.4833 472.741 L 549.4833 460.741 L 545.4833 460.741 L 545.4833 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 545.4833 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 548.8083 472.741 L 567.8083 472.741 L 567.8083 460.741 L 548.8083 460.741 L 548.8083 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 548.8083 463.5223)\\\" x=\\\"0 5 10.56 13.89\\\">Jury</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 567.7 472.741 L 570.7 472.741 L 570.7 460.741 L 567.7 460.741 L 567.7 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 40.7 461.4227 L 187.7 461.4227 L 187.7 449.4227 L 40.7 449.4227 L 40.7 461.4227 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 452.2039)\\\" x=\\\"0 6.11 9.44 11.72 17.28 19.56 22.34 25.89 28.55 34.11 39.67 45.23 47.89 50.67 56.23 61.79 64.45 70.01 72.79 78.35 83.91 87.24 89.9 92.68 98.24 101.57 109.9 114.9 117.56 123.12 128.68 130.96 136.52 143.74\\\">Trial,&quot; and the other terms below.</text></g><clipPath id=\\\"clip1-3\\\"><path d=\\\"M 35 404 L 574 404 L 574 449 L 35 449 L 35 404 z \\\"/></clipPath><g clip-path=\\\"url(#clip1-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 435.7132)\\\" x=\\\"0 7.22 12.78 17.78 20.56 26.12 34.45 40.01 43.34 46 52.67 54.95 60.51 66.07 71.63 74.41 79.97 83.3 88.86\\\">Customer Signature:</text></g><clipPath id=\\\"clip1-4\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip1-4)\\\" fill=\\\"#fff\\\" stroke=\\\"none\\\" d=\\\"M 409.8 425.0359 L 439.8433 425.0359 L 439.8433 417.0244 L 409.8 417.0244 L 409.8 425.0359 z \\\"/><clipPath id=\\\"clip1-5\\\"><path d=\\\"M 409 417 L 440 417 L 440 426 L 409 426 L 409 417 z \\\"/></clipPath><path clip-path=\\\"url(#clip1-5)\\\" fill=\\\"#fff\\\" stroke=\\\"none\\\" d=\\\"M 409.8 425.0359 L 439.55 425.0359 L 439.55 423.9041 L 409.8 423.9041 L 409.8 425.0359 z \\\"/><path clip-path=\\\"url(#clip1-5)\\\" fill=\\\"#fff\\\" stroke=\\\"none\\\" d=\\\"M 409.8 425.0359 L 416.8 425.0359 L 416.8 423.0359 L 409.8 423.0359 L 409.8 425.0359 z \\\"/><g clip-path=\\\"url(#clip1-5)\\\"><text stroke=\\\"none\\\" fill=\\\"#fff\\\" style=\\\"font-family:f1-2; font-size:0.75pt\\\" transform=\\\"matrix(1 0 0 -1 409.8 424.1141)\\\" x=\\\"0 0.722 1.5 2.222 2.944 3.496 4.163 4.996 5.663 5.941\\\">DOCU_EMAIL</text></g><clipPath id=\\\"clip1-6\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip1-6)\\\" fill=\\\"#fff\\\" stroke=\\\"none\\\" d=\\\"M 164.15 417.4676 L 192.2025 417.4676 L 192.2025 406.447 L 164.15 406.447 L 164.15 417.4676 z \\\"/><clipPath id=\\\"clip1-7\\\"><path d=\\\"M 164 407 L 192 407 L 192 418 L 164 418 L 164 407 z \\\"/></clipPath><g clip-path=\\\"url(#clip1-7)\\\"><text stroke=\\\"none\\\" fill=\\\"#fff\\\" style=\\\"font-family:f1-2; font-size:0.75pt\\\" transform=\\\"matrix(1 0 0 -1 164.15 416.5457)\\\" x=\\\"0 0.722 1.5 2.222 2.944 3.496 4.163 4.441 5.219\\\">DOCU_SIGN</text></g><clipPath id=\\\"clip1-8\\\"><path d=\\\"M 35 343 L 389 343 L 389 405 L 35 405 L 35 343 z \\\"/></clipPath><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 392.5858)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 57.9314 392.5858)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 62.5791 392.5858)\\\" x=\\\"0 5.56 11.12 16.68 21.68\\\">Lease</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 89.8252 392.5858)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 94.4728 392.5858)\\\" x=\\\"0 7.22 12.78 21.11 26.67 32.23 37.79 42.79 44.7\\\">Company&apos;s</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 144.1798 392.5858)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.8275 392.5858)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 28.35 30.63 35.63 41.19\\\">authorized</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 195.5853 392.5858)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 200.2329 392.5858)\\\" x=\\\"0 5 7.28 12.84 18.4 23.96 26.74 32.3 35.63\\\">signature</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 241.4292 392.5858)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 246.0768 392.5858)\\\" x=\\\"0 2.28 7.84 13.4 15.68 20.68 26.24 29.02 34.58\\\">indicates</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 285.6618 392.5858)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 290.3094 392.5858)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 304.2108 392.5858)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 308.8584 392.5858)\\\" x=\\\"0 5.56 11.12 16.68 21.68\\\">Lease</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 336.1045 392.5858)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 340.7521 392.5858)\\\" x=\\\"0 7.22 12.78 21.11 26.67 32.23 37.79\\\">Company</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.55 392.5858)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 381.2675)\\\" x=\\\"0 5.56 11.12\\\">has</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 56.823 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 59.5613 381.2675)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.68 29.46 35.02\\\">accepted</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 100.1472 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 102.8854 381.2675)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 116.7868 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 119.525 381.2675)\\\" x=\\\"0 2.78 8.34 11.67 20 25\\\">terms,</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 147.3033 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 150.0416 381.2675)\\\" x=\\\"0 5 10.56 16.12 21.68 23.96 26.74 29.02 34.58 40.14\\\">conditions</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 195.1881 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 197.9263 381.2675)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 214.6109 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 217.3491 381.2675)\\\" x=\\\"0 5.56 11.12 13.4 15.68 21.24 26.8 29.58 31.86 37.42 42.98\\\">obligations</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 265.3374 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 268.0756 381.2675)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.4154 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 279.1537 381.2675)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 293.055 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 295.7933 381.2675)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 344.7093 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 347.4475 381.2675)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 364.1321 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 366.8703 381.2675)\\\" x=\\\"0 2.78 8.34 13.9\\\">that</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.55 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 369.9491)\\\" x=\\\"0 2.78 8.34 13.9 16.56 22.12 27.68 33.24 38.24 43.8 46.46 53.68 59.24 67.57 73.13 78.69 84.25 89.25 91.91 97.47 103.03 106.36 111.92 117.48 122.48 125.14 127.92 133.48 136.14 138.92 144.48 146.76 151.76 154.42 161.09 166.65 169.98 175.54 181.1 189.43 194.99 200.55 203.33\\\">the Lease Company agrees to this Agreement.</text></g><clipPath id=\\\"clip1-10\\\"><path d=\\\"M 388 343 L 574 343 L 574 405 L 388 405 L 388 343 z \\\"/></clipPath><g clip-path=\\\"url(#clip1-10)\\\"><g transform=\\\"matrix(0.75 0 0 -0.7619 416.525 401.8046)\\\"><image xlink:href=\\\"data:image/png;base64,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\\\" width=\\\"172\\\" height=\\\"42\\\" id=\\\"img43-0-9\\\"/></g></g><g clip-path=\\\"url(#clip1-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 394.35 359.0858)\\\" x=\\\"0 6.67 12.23 17.79 23.35 26.01 33.23 39.34 47.12 49.78 55.34 60.9 68.12 70.78 77.45 82.45 85.23 87.89 96.22 101.78 104.56 107.34 110 116.67 120 125.56 132.78 138.34 140.62 146.18\\\">Snap RTO LLC By: Matt Browning</text></g><g clip-path=\\\"url(#clip1-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 394.35 347.7675)\\\" x=\\\"0 6.11 8.39 11.17 13.45 19.01 21.79 24.45 31.67 39.45\\\">Title: COO</text></g><clipPath id=\\\"clip1-11\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 770.2 L 573.6 770.2 L 573.6 769.2 L 34.8 769.2 L 34.8 770.2 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.6 769.2 L 573.6 769.2 L 573.6 487.5594 L 572.6 487.5594 L 572.6 769.2 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 769.2 L 35.8 769.2 L 35.8 487.5594 L 34.8 487.5594 L 34.8 769.2 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 487.5594 L 573.6 487.5594 L 573.6 486.5594 L 34.8 486.5594 L 34.8 487.5594 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.6 486.5594 L 573.6 486.5594 L 573.6 448.6043 L 572.6 448.6043 L 572.6 486.5594 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 486.5594 L 35.8 486.5594 L 35.8 448.6043 L 34.8 448.6043 L 34.8 486.5594 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 448.6043 L 573.6 448.6043 L 573.6 447.6043 L 34.8 447.6043 L 34.8 448.6043 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.6 447.6043 L 573.6 447.6043 L 573.6 405.3046 L 572.6 405.3046 L 572.6 447.6043 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 447.6043 L 35.8 447.6043 L 35.8 405.3046 L 34.8 405.3046 L 34.8 447.6043 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 405.3046 L 389.45 405.3046 L 389.45 404.3046 L 34.8 404.3046 L 34.8 405.3046 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 344.1679 L 389.45 344.1679 L 389.45 343.1679 L 34.8 343.1679 L 34.8 344.1679 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 404.3046 L 35.8 404.3046 L 35.8 344.1679 L 34.8 344.1679 L 34.8 404.3046 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 389.45 405.3046 L 573.6 405.3046 L 573.6 404.3046 L 389.45 404.3046 L 389.45 405.3046 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 389.45 344.1679 L 573.6 344.1679 L 573.6 343.1679 L 389.45 343.1679 L 389.45 344.1679 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.6 404.3046 L 573.6 404.3046 L 573.6 344.1679 L 572.6 344.1679 L 572.6 404.3046 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 388.45 404.3046 L 389.45 404.3046 L 389.45 344.1679 L 388.45 344.1679 L 388.45 404.3046 z \\\"/><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 331.4491)\\\" x=\\\"0 7.22 15 21.11 23.89 31.11\\\">NOTICE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 70.8783 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 73.8798 331.4491)\\\" x=\\\"0 6.11\\\">TO</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 87.7666 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 90.7681 331.4491)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 110.7681 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 113.7696 331.4491)\\\" x=\\\"0 7.22 15 22.22 28.89 36.11 44.44 51.11 58.33\\\">CONSUMER:</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 174.8829 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 177.8844 331.4491)\\\" x=\\\"0 6.67 14.45\\\">YOU</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 199.5543 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 202.5558 331.4491)\\\" x=\\\"0 7.22 13.89 20.56\\\">HAVE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 229.7873 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 232.7888 331.4491)\\\" x=\\\"0 7.22\\\">NO</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.7888 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 250.7903 331.4491)\\\" x=\\\"0 7.78 17.22 24.44 31.11 38.33 45 52.22 55\\\">OWNERSHIP</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.4603 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 315.4618 331.4491)\\\" x=\\\"0 7.22 10 17.78 25 31.11\\\">RIGHTS</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 353.2401 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 356.2416 331.4491)\\\" x=\\\"0 2.78\\\">IN</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 366.2416 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 369.2431 331.4491)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 389.2431 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 392.2447 331.4491)\\\" x=\\\"0 6.67 13.89 21.67 28.34 35.01 42.23 48.34\\\">PROPERTY</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.2544 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 450.256 331.4491)\\\" x=\\\"0 7.22 14.44 20 26.67 33.34\\\">UNLESS</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 490.2706 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 493.2721 331.4491)\\\" x=\\\"0 6.67 13.89\\\">AND</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 514.3854 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 517.3869 331.4491)\\\" x=\\\"0 7.22 14.44 20.55 23.33\\\">UNTIL</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 546.2785 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 549.2801 331.4491)\\\" x=\\\"0 6.67 14.45\\\">YOU</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 320.1308)\\\" x=\\\"0 6.67 12.23 18.9 26.12\\\">ELECT</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 65.3315 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 71.359 320.1308)\\\" x=\\\"0 6.11\\\">TO</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 85.2457 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 91.2732 320.1308)\\\" x=\\\"0 6.67 13.34 20.56 28.34 36.67\\\">BECOME</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 134.613 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 140.6406 320.1308)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.6406 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 166.6681 320.1308)\\\" x=\\\"0 7.78 17.22 24.44 31.11\\\">OWNER</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 204.9982 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 211.0257 320.1308)\\\" x=\\\"0 7.78\\\">OF</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 224.9124 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 230.9399 320.1308)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 250.9399 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 256.9675 320.1308)\\\" x=\\\"0 6.67 13.89 21.67 28.34 35.01 42.23 48.34\\\">PROPERTY</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 311.9772 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 318.0048 320.1308)\\\" x=\\\"0 6.67 12.78 18.89 25.56\\\">AFTER</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 350.7831 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 356.8106 320.1308)\\\" x=\\\"0 8.33 15 21.67 24.45 31.67\\\">MAKING</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 396.2588 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 402.2864 320.1308)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 422.2864 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 428.3139 320.1308)\\\" x=\\\"0 7.22 13.89 21.11 27.78 34.45 41.12 47.79 55.01\\\">NECESSARY</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.9984 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 496.026 320.1308)\\\" x=\\\"0 6.67 13.34 20.01 28.34 35.01 42.23 48.34\\\">PAYMENTS</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.0357 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0633 320.1308)\\\" x=\\\"0 6.11\\\">TO</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 308.8124)\\\" x=\\\"0 6.67 13.89 21.67 28.89 31.67 38.89\\\">ACQUIRE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 78.6615 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 82.9084 308.8124)\\\" x=\\\"0 7.78 17.22 24.44 31.11 38.33 45 52.22 55 61.67\\\">OWNERSHIP,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 147.3567 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 151.6035 308.8124)\\\" x=\\\"0 6.67 13.89\\\">AND</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 172.7168 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 176.9637 308.8124)\\\" x=\\\"0 6.67 14.45\\\">YOU</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 198.6336 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 202.8805 308.8124)\\\" x=\\\"0 7.22 13.89 20.56\\\">HAVE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 230.112 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 234.3589 308.8124)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 254.3589 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 258.6057 308.8124)\\\" x=\\\"0 5.56 12.23 20.01 26.68\\\">LEGAL</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.8469 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 295.0938 308.8124)\\\" x=\\\"0 6.67 13.89 20 27.22 35 42.22 45 51.11\\\">AUTHORITY</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 352.8722 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 357.119 308.8124)\\\" x=\\\"0 6.11\\\">TO</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.0058 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 375.2527 308.8124)\\\" x=\\\"0 6.67 13.89 21.11 27.78 34.45\\\">ACCEPT</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 415.8142 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 420.0611 308.8124)\\\" x=\\\"0 6.11 8.89 15 20.56\\\">TITLE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.2876 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 451.5345 308.8124)\\\" x=\\\"0 6.11\\\">TO</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 465.4212 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 469.6681 308.8124)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.6681 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 493.915 308.8124)\\\" x=\\\"0 6.67 13.89 21.67 28.34 35.01 42.23 48.34 55.01\\\">PROPERTY.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.7031 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 555.95 308.8124)\\\" x=\\\"0 7.22\\\">DO</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 297.494)\\\" x=\\\"0 7.22 15\\\">NOT</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 54.2084 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 57.2636 297.494)\\\" x=\\\"0 6.67 9.45 17.23\\\">SIGN</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 81.7118 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 84.767 297.494)\\\" x=\\\"0 6.11 13.33 16.11\\\">THIS</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 107.5453 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 110.6005 297.494)\\\" x=\\\"0 6.67 14.45 21.67 28.34 35.01 43.34 50.01 57.23\\\">AGREEMENT</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 173.9404 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 176.9956 297.494)\\\" x=\\\"0 6.67 13.34 19.45 27.23 34.45\\\">BEFORE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 218.1137 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 221.1689 297.494)\\\" x=\\\"0 6.67 14.45\\\">YOU</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 242.8389 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 245.8941 297.494)\\\" x=\\\"0 7.22 13.89 20.56\\\">READ</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 273.6773 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 276.7325 297.494)\\\" x=\\\"0 6.67 12.23\\\">ALL</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 294.5254 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 297.5806 297.494)\\\" x=\\\"0 6.67 13.34 21.12 27.79\\\">PAGES</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 332.0386 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 335.0938 297.494)\\\" x=\\\"0 7.78\\\">OF</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.9805 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 352.0357 297.494)\\\" x=\\\"0 2.78\\\">IT</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 360.9225 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 363.9777 297.494)\\\" x=\\\"0 7.78\\\">OR</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 378.9777 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 382.0329 297.494)\\\" x=\\\"0 2.78\\\">IF</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 390.9196 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 393.9748 297.494)\\\" x=\\\"0 2.78\\\">IT</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.8615 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 405.9167 297.494)\\\" x=\\\"0 7.22 15 22.22 28.33 35 37.78 45\\\">CONTAINS</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 457.5866 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 460.6418 297.494)\\\" x=\\\"0 6.67 13.89\\\">ANY</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 481.2033 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 484.2585 297.494)\\\" x=\\\"0 6.67 12.23 18.9 26.12\\\">BLANK</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 517.0515 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 520.1067 297.494)\\\" x=\\\"0 6.67 13.34 20.01 27.23\\\">SPACE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 554.0081 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0633 297.494)\\\" x=\\\"0 6.11\\\">TO</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 286.1757)\\\" x=\\\"0 6.67\\\">BE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 46.4398 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 49.3908 286.1757)\\\" x=\\\"0 6.11 8.89 14.45 20.01 26.68\\\">FILLED</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 83.2922 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 86.2431 286.1757)\\\" x=\\\"0 2.78 10\\\">IN.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 99.0214 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 101.9724 286.1757)\\\" x=\\\"0 6.67 14.45\\\">YOU</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 123.6423 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 126.5933 286.1757)\\\" x=\\\"0 6.67 13.89\\\">ARE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 147.1548 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 150.1057 286.1757)\\\" x=\\\"0 6.67 13.89 20 22.78 28.89 34.45 41.12\\\">ENTITLED</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 198.4456 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 201.3965 286.1757)\\\" x=\\\"0 6.11\\\">TO</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 215.2832 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 218.2342 286.1757)\\\" x=\\\"0\\\">A</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 224.9041 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 227.8551 286.1757)\\\" x=\\\"0 7.22 15 23.33 30 35.56 42.23 48.34 55.01 60.57\\\">COMPLETELY</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 295.0963 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 298.0472 286.1757)\\\" x=\\\"0 6.11 8.89 14.45 20.01 26.68 33.9 37.23 40.01\\\">FILLED-IN</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 345.2787 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 348.2296 286.1757)\\\" x=\\\"0 7.22 15 21.67\\\">COPY</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 376.5695 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 379.5204 286.1757)\\\" x=\\\"0 7.78\\\">OF</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.4071 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 396.3581 286.1757)\\\" x=\\\"0 6.11 13.33 16.11\\\">THIS</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.1364 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 422.0874 286.1757)\\\" x=\\\"0 6.67 14.45 21.67 28.34 35.01 43.34 50.01 57.23\\\">AGREEMENT</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 485.4272 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 488.3781 286.1757)\\\" x=\\\"0 9.44 16.66 23.33\\\">WHEN</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 518.9299 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 521.8809 286.1757)\\\" x=\\\"0 6.67 14.45\\\">YOU</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 543.5508 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 546.5017 286.1757)\\\" x=\\\"0 6.67 9.45 17.23\\\">SIGN</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 274.8573)\\\" x=\\\"0 2.78 8.89\\\">IT.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 261.539)\\\" x=\\\"0 6.11 12.78 20 28.33 31.11 38.33 45 51.11 53.89 61.67 68.89\\\">TERMINATION.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 104.765 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 108.0706 261.539)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 125.8636 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 129.1692 261.539)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 148.0608 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 151.3663 261.539)\\\" x=\\\"0 2.78 8.34 11.67 20 22.28 27.84 33.4 36.18\\\">terminate</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 193.1095 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 196.4151 261.539)\\\" x=\\\"0 3.33 8.89 14.45 20.01\\\">(end)</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 219.7598 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 223.0654 261.539)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.6855 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 241.9911 261.539)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.9071 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 294.2127 261.539)\\\" x=\\\"0 5.56\\\">at</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.5525 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 305.8581 261.539)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.7595 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 323.065 261.539)\\\" x=\\\"0 5.56 11.12\\\">end</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 339.7496 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 343.0552 261.539)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.395 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 354.7006 261.539)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 370.8236 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 374.1292 261.539)\\\" x=\\\"0 2.28 7.84 13.4 18.4\\\">lease</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 398.0941 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 401.3996 261.539)\\\" x=\\\"0 2.78 8.34 11.67\\\">term</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 421.3996 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 424.7052 261.539)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 435.2667 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 438.5723 261.539)\\\" x=\\\"0 5 10.56 13.34 15.62 20.62 23.4 28.4 30.68 36.24\\\">satisfying</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 480.3741 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 483.6796 261.539)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 497.581 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 500.8866 261.539)\\\" x=\\\"0 3.33 8.89 14.45 20.01 22.29 25.62 31.18 39.51 45.07 50.63 53.41\\\">requirements</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.3046 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 562.6101 261.539)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 250.2206)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 48.7201 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 51.7761 250.2206)\\\" x=\\\"0 5.56 11.12 14.45 20.01 25.57 28.9 34.46 40.02 45.58\\\">paragraph.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 100.1453 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 103.2013 250.2206)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 120.9943 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 124.0503 250.2206)\\\" x=\\\"0 8.33 13.89 18.89\\\">must</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 145.7202 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.7762 250.2206)\\\" x=\\\"0 5.56 8.89 14.45 22.78 28.34 31.12 33.4\\\">promptly</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 187.1795 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 190.2355 250.2206)\\\" x=\\\"0 3.33 8.89 11.67 17.23 20.56\\\">return</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 216.3586 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 219.4146 250.2206)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.3159 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 236.3719 250.2206)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 274.1649 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 277.2209 250.2206)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 285.5608 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 288.6168 250.2206)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.1783 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 302.2343 250.2206)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 310.0761 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 313.1321 250.2206)\\\" x=\\\"0 5.56 10.56 15.56 21.12 24.45 30.01 35.57 41.13 46.13\\\">accordance</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 364.8313 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 367.8874 250.2206)\\\" x=\\\"0 7.22 9.5 12.28\\\">with</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 385.7291 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 388.7852 250.2206)\\\" x=\\\"0 5.56 11.12\\\">our</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.2383 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 406.2943 250.2206)\\\" x=\\\"0 5.56 7.84 11.17 16.73 21.73 24.51 26.79 32.35 37.91\\\">directions</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 449.2093 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 452.2653 250.2206)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.9499 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 472.0059 250.2206)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 488.129 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 491.185 250.2206)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57 33.35\\\">amounts</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.5395 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 532.5955 250.2206)\\\" x=\\\"0 5.56 10.56 15.56 18.89 24.45 30.01 35.57\\\">accrued.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 238.9022)\\\" x=\\\"0 9.44\\\">We</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 48.1 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 51.2677 238.9022)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 70.1593 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 73.327 238.9022)\\\" x=\\\"0 2.78 8.34 11.67 20 22.28 27.84 33.4 36.18\\\">terminate</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 115.0702 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 118.2379 238.9022)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 133.858 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 137.0257 238.9022)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 185.9417 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 189.1094 238.9022)\\\" x=\\\"0 5.56\\\">at</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 197.4493 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 200.617 238.9022)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 216.74 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 219.9077 238.9022)\\\" x=\\\"0 2.78 5.06 13.39\\\">time</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.8579 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 242.0256 238.9022)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.0842 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 250.2519 238.9022)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 266.375 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 269.5427 238.9022)\\\" x=\\\"0 5.56 8.89\\\">are</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 283.9958 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 287.1635 238.9022)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 295.0053 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 298.173 238.9022)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 27.3\\\">default</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 328.256 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 331.4237 238.9022)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 339.7636 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 342.9313 238.9022)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 362.3844 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 365.5521 238.9022)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.9066 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.0743 238.9022)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 415.9659 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 419.1336 238.9022)\\\" x=\\\"0 5.56 8.34 13.9 19.46\\\">other</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 441.9266 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 445.0943 238.9022)\\\" x=\\\"0 5.56 11.12 13.4 15.68 21.24 26.8 29.58 31.86 37.42 42.98 47.98\\\">obligations.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 495.8609 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 499.0286 238.9022)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 516.8216 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 519.9893 238.9022)\\\" x=\\\"0 8.33 13.89 18.89\\\">must</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 541.6592 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 544.8269 238.9022)\\\" x=\\\"0 3.33 8.89 11.67 17.23 20.56\\\">return</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 227.5839)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.0014 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 50.6007 227.5839)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 88.3937 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 91.9931 227.5839)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 100.3329 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 103.9323 227.5839)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 117.8336 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 121.433 227.5839)\\\" x=\\\"0 5.56 7.84 13.4 18.4\\\">place</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 145.3978 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.9972 227.5839)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 161.7804 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 165.3797 227.5839)\\\" x=\\\"0 5.56 11.12 16.12 18.4 23.96 29.52 35.08 37.86 43.42\\\">designate.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 211.5858 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 215.1852 227.5839)\\\" x=\\\"0 7.22 12.78 18.34\\\">Upon</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 239.0914 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 242.6908 227.5839)\\\" x=\\\"0 2.78 8.34 11.67 20 22.28 27.84 33.4 36.18 38.46 44.02 49.58\\\">termination,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 295.0541 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 298.6534 227.5839)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 314.7765 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 318.3758 227.5839)\\\" x=\\\"0 5.56 11.12 14.45 20.01\\\">agree</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 343.952 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 347.5513 227.5839)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.8912 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 359.4905 227.5839)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.6136 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 379.2129 227.5839)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.1143 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 396.7137 227.5839)\\\" x=\\\"0 2.78 8.34 10.62 12.9 18.46 25.68 27.96 33.52\\\">following</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 435.8006 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 439.3999 227.5839)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01 30.57 35.57\\\">charges:</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 477.7544 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 481.3538 227.5839)\\\" x=\\\"0 6.67 12.23\\\">Any</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 498.5852 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 502.1846 227.5839)\\\" x=\\\"0 5.56 11.12 16.68 22.24 24.52\\\">unpaid</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 532.2725 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 535.8718 227.5839)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 216.2655)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46 44.46\\\">Payments,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 80.3412 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 83.8455 216.2655)\\\" x=\\\"0 2.78 8.34 13.9\\\">fees</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 102.7469 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 106.2512 216.2655)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 122.9358 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 126.4401 216.2655)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01 30.57 35.57\\\">charges,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 164.7946 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 168.299 216.2655)\\\" x=\\\"0 5.56 7.84 13.4\\\">plus</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 186.7023 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 190.2066 216.2655)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 206.3297 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 209.834 216.2655)\\\" x=\\\"0 5.56 8.34 11.12 13.4 18.4 20.68 26.24\\\">official</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.3545 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 241.8588 216.2655)\\\" x=\\\"0 2.78 8.34 13.9\\\">fees</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 260.7602 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 264.2645 216.2655)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.9491 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 284.4534 216.2655)\\\" x=\\\"0 2.78 8.34 13.34 18.9\\\">taxes</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.3548 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 311.8591 216.2655)\\\" x=\\\"0 2.28 10.61 16.17 21.73 26.73 32.29\\\">imposed</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 349.7156 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 353.2199 216.2655)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 361.0617 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 364.566 216.2655)\\\" x=\\\"0 5 10.56 16.12 21.68 27.24 32.24 35.02 37.3 42.86\\\">connection</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 412.9938 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 416.4981 216.2655)\\\" x=\\\"0 7.22 9.5 12.28\\\">with</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.3399 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 437.8442 216.2655)\\\" x=\\\"0 2.78 8.34 11.67 20 22.28 27.84 33.4 36.18 38.46 44.02 49.58\\\">termination,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 490.2075 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 493.7118 216.2655)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24 28.52 34.08 39.64\\\">including,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 536.1386 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 539.6429 216.2655)\\\" x=\\\"0 5.56 11.12\\\">but</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.5443 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0486 216.2655)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 204.9472)\\\" x=\\\"0 2.28 4.56 12.89 15.17 17.95 23.51\\\">limited</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 62.1723 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 64.9349 204.9472)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 73.2747 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 76.0373 204.9472)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 92.1604 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 94.923 204.9472)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64\\\">applicable</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 140.133 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 142.8956 204.9472)\\\" x=\\\"0 2.78 5.06 10.62 16.18 21.18\\\">fines,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 166.8555 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 169.6182 204.9472)\\\" x=\\\"0 5 10.56 13.89 18.89 24.45 30.01 33.34 38.9 44.46 49.46\\\">surcharges,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 221.8642 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 224.6269 204.9472)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 241.3114 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 244.0741 204.9472)\\\" x=\\\"0 2.78 8.34 13.34 18.9 23.9\\\">taxes.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 270.7537 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 273.5164 204.9472)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.3093 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 294.0719 204.9472)\\\" x=\\\"0 8.33 13.89 18.89\\\">must</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 315.7419 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 318.5045 204.9472)\\\" x=\\\"0 5.56 7.84 12.84\\\">also</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 336.9078 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 339.6704 204.9472)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.7935 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 358.5561 204.9472)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 374.6791 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 377.4417 204.9472)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.12 31.12 33.4 38.4\\\">excessive</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 421.4066 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 424.1692 204.9472)\\\" x=\\\"0 7.22 12.78 18.34\\\">wear</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 445.844 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 448.6066 204.9472)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 465.2912 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 468.0538 204.9472)\\\" x=\\\"0 5.56 10.56\\\">use</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.1769 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 486.9395 204.9472)\\\" x=\\\"0 2.78 8.34 13.9\\\">fees</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 505.8408 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 508.6035 204.9472)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 519.165 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 521.9276 204.9472)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29 32.85\\\">provided</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 560.3456 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 563.1082 204.9472)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 193.6288)\\\" x=\\\"0 2.78 8.34 10.62 15.62 18.28 24.95 30.51 33.84 39.4 44.96 53.29 58.85 64.41 67.19 69.97 72.63 77.63 83.19 88.75 91.03 96.59 101.59 104.37 107.03 109.81 115.37 118.03 120.31 122.59 130.92 133.2 135.98 141.54 144.32 146.6 152.16 157.72 162.72 165.38 170.94 173.72 176.38 181.94 187.5 193.06 195.34 197.62 202.62 208.18 213.74 216.02 221.58 224.24 226.52 232.08 239.3\\\">this Agreement, subject to limitations of applicable law.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 180.3105)\\\" x=\\\"0 8.33 15 17.78 25 31.11 37.78 45 51.67 58.89 66.11 72.78\\\">MAINTENANCE.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 108.6615 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 111.6829 180.3105)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 129.4758 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 132.4972 180.3105)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.5597 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 149.581 180.3105)\\\" x=\\\"0 5 10.56 16.12\\\">keep</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 171.2656 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 174.287 180.3105)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 188.1883 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 191.2097 180.3105)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 229.0026 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 232.024 180.3105)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 239.8658 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 242.8871 180.3105)\\\" x=\\\"0 5.56 11.12 16.68\\\">good</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 265.1332 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 268.1546 180.3105)\\\" x=\\\"0 7.22 12.78 16.11 21.11 23.39 28.95\\\">working</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.6712 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 305.6925 180.3105)\\\" x=\\\"0 5.56 8.89 14.45 20.01\\\">order</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.0373 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 332.0586 180.3105)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.7432 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 351.7645 180.3105)\\\" x=\\\"0 3.33 8.89 14.45 20.01 22.29 25.62\\\">repair.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.1679 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 383.1892 180.3105)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 400.9822 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 404.0035 180.3105)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 418.066 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 421.0874 180.3105)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 437.2104 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 440.2318 180.3105)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.3548 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 459.3762 180.3105)\\\" x=\\\"0 5.56 11.12 16.68 20.01 25.57 28.35 30.63 36.19\\\">operating</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.134 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 504.1553 180.3105)\\\" x=\\\"0 5 10.56 15.56 18.34 23.34\\\">costs.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 530.2735 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 533.2948 180.3105)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.0878 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 554.1092 180.3105)\\\" x=\\\"0 7.22 9.5 11.78 14.06\\\">will,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 168.9921)\\\" x=\\\"0 5.56\\\">at</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 41.4398 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 44.1473 168.9921)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 63.6004 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 66.3078 168.9921)\\\" x=\\\"0 5.56 10.56 16.12 21.68 27.24 32.24 37.8\\\">expense,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 106.8938 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 109.6012 168.9921)\\\" x=\\\"0 5 10.56 13.89 18.89 21.17 26.17\\\">service</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 141.3346 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 144.042 168.9921)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 157.9434 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 160.6508 168.9921)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 198.4438 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 201.1512 168.9921)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 208.993 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 211.7005 168.9921)\\\" x=\\\"0 5.56 10.56 15.56 21.12 24.45 30.01 35.57 41.13 46.13\\\">accordance</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 263.3997 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 266.1071 168.9921)\\\" x=\\\"0 7.22 9.5 12.28\\\">with</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 283.9489 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 286.6563 168.9921)\\\" x=\\\"0 8.33 13.89 19.45 25.01 27.79 33.35 38.35 41.13 46.69 50.02 55.58\\\">manufacturer</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 345.5723 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 348.2798 168.9921)\\\" x=\\\"0 5 7.78 13.34 18.9 24.46 30.02 33.35 38.91 43.91\\\">standards.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 394.9741 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 397.6815 168.9921)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.2382 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 405.9456 168.9921)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.847 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 422.5544 168.9921)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 460.3474 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 463.0548 168.9921)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 470.3351 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 473.0425 168.9921)\\\" x=\\\"0 3.33 8.89 13.89 19.45 21.73 24.01 29.57 35.13\\\">recalled,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 510.9576 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 513.665 168.9921)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.788 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 532.4955 168.9921)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 546.558 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 549.2654 168.9921)\\\" x=\\\"0 5.56 11.12 16.12\\\">have</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 157.6738)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.0014 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 51.506 157.6738)\\\" x=\\\"0 3.33 8.89 13.89 19.45 21.73\\\">recall</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 75.5196 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 80.0242 157.6738)\\\" x=\\\"0 3.33 8.89 14.45 20.01 22.29 25.62\\\">repairs</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 110.6492 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 115.1538 157.6738)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 124.0454 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 128.5499 157.6738)\\\" x=\\\"0 5 10.56 13.89 18.89 21.17 26.17\\\">service</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.2833 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 164.7879 157.6738)\\\" x=\\\"0 5.56 11.12 14.45 17.23 22.79 26.12 34.45 40.01 45.57\\\">performed.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 213.1424 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 217.647 157.6738)\\\" x=\\\"0 2.78\\\">In</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.9868 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 230.4914 157.6738)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 244.3928 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 248.8974 157.6738)\\\" x=\\\"0 5.56 10.56 16.12 21.68\\\">event</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 273.3603 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 277.8648 157.6738)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.7662 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 296.2708 157.6738)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 334.0637 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.5683 157.6738)\\\" x=\\\"0 5.56 11.12\\\">has</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 354.6914 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 359.1959 157.6738)\\\" x=\\\"0 8.33 13.89 18.89 24.45 30.01 35.57 37.85 42.85 48.41\\\">mechanical</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 409.8942 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 414.3988 157.6738)\\\" x=\\\"0 5.56 8.89 14.45 20.01 22.29 27.85 36.18 41.18\\\">problems,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 458.3636 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 462.8682 157.6738)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 478.9912 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 483.4958 157.6738)\\\" x=\\\"0 5.56 11.12 14.45 20.01\\\">agree</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.072 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 513.5766 157.6738)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.9164 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 526.421 157.6738)\\\" x=\\\"0 3.33 8.89 11.67 17.23 20.56\\\">return</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.544 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0486 157.6738)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 146.3554)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79 40.45 43.23 48.79 51.45 57.01 62.01 64.67 67.45 73.01 76.34 79 84.56 89.56 95.12 97.4 102.96 108.52 111.3 113.58 119.14 124.7 127.48 130.14 135.7 141.26 146.82 149.6 152.26 154.54 157.32 159.98 165.54 171.1 176.1 181.66 186.66 191.66 197.22 200.55 205.55 208.33 210.99 214.32 219.88 225.44 231 233.28 236.61\\\">Property to us for evaluation, and, if necessary, repair.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 133.037)\\\" x=\\\"0 6.67 12.78 19.45 26.67 33.89 40.56 47.78 55\\\">STANDARDS</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 94.7748 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 97.7681 133.037)\\\" x=\\\"0 6.11 13.89\\\">FOR</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 118.8765 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 121.8699 133.037)\\\" x=\\\"0 9.44 16.11 22.78\\\">WEAR</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 151.8699 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 154.8632 133.037)\\\" x=\\\"0 6.67 13.89\\\">AND</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 175.9765 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 178.9698 133.037)\\\" x=\\\"0 7.22 13.89 20.56\\\">USE.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 202.3096 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 205.303 133.037)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 223.0959 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 226.0893 133.037)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 244.9809 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 247.9742 133.037)\\\" x=\\\"0 5.56\\\">be</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.0972 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 262.0906 133.037)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01 30.57\\\">charged</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 298.2283 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 301.2216 133.037)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.8915 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 315.8849 133.037)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.12\\\">excess</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 347.0079 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 350.0012 133.037)\\\" x=\\\"0 7.22 12.78 18.34\\\">wear</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.676 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 374.6694 133.037)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 391.3539 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 394.3473 133.037)\\\" x=\\\"0 5.56 10.56\\\">use</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 410.4703 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 413.4636 133.037)\\\" x=\\\"0 7.22 12.78 18.34\\\">when</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 437.3699 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 440.3632 133.037)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.4863 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 459.4796 133.037)\\\" x=\\\"0 3.33 8.89 11.67 17.23 20.56\\\">return</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 485.6026 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 488.596 133.037)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 502.4973 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 505.4907 133.037)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 543.2836 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 546.277 133.037)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 554.6168 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.6101 133.037)\\\" x=\\\"0 5.56 10.56\\\">us.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 121.7187)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 50.3314 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 54.7254 121.7187)\\\" x=\\\"0 2.78 8.34 10.62 12.9 18.46 25.68 27.96 33.52\\\">following</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 93.8123 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 98.2062 121.7187)\\\" x=\\\"0 5 7.78 13.34 18.9 24.46 30.02 33.35 38.91\\\">standards</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 142.1222 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 146.5161 121.7187)\\\" x=\\\"0 5.56 11.12 16.68 18.96\\\">apply</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 170.4809 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 174.8748 121.7187)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 186.5447 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 190.9386 121.7187)\\\" x=\\\"0 5.56 11.12 13.9 19.46 22.79 31.12 33.4 38.96 41.24 46.8\\\">determining</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 243.3068 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 247.7007 121.7187)\\\" x=\\\"0 5.56 11.12 14.45 20.01 25.57 30.57 36.13 41.69 47.25 52.81 55.09\\\">unreasonable</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.3648 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 312.7587 121.7187)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 321.6503 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 326.0442 121.7187)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.12\\\">excess</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 357.1672 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 361.5611 121.7187)\\\" x=\\\"0 7.22 12.78 18.34\\\">wear</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.2359 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 387.6298 121.7187)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 404.3144 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 408.7083 121.7187)\\\" x=\\\"0 5.56 10.56 16.12\\\">use:</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 427.6097 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 432.0036 121.7187)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 449.7965 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 454.1904 121.7187)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.2529 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 472.6468 121.7187)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.5482 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 490.9421 121.7187)\\\" x=\\\"0 5.56 11.12 13.4 18.96\\\">paint</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.6853 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 517.0792 121.7187)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 525.9708 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 530.3647 121.7187)\\\" x=\\\"0 2.28 7.84 10.62 13.4 18.96\\\">letter</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.6547 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0486 121.7187)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 110.4003)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 70.893 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 75.8495 110.4003)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 84.7411 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 89.6976 110.4003)\\\" x=\\\"0 8.33 13.89 19.45 21.73 24.51\\\">modify</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 119.2094 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 124.1659 110.4003)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 140.2889 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 145.2455 110.4003)\\\" x=\\\"0 2.28 7.84 13.4 18.96 21.74 24.02 26.8 29.08 34.08 39.64 42.42 44.7 50.26\\\">identification</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 201.0707 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 206.0272 110.4003)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57\\\">number</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 239.9335 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 244.89 110.4003)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 253.2298 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 258.1864 110.4003)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 272.0877 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 277.0443 110.4003)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 317.6156 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 322.5721 110.4003)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 340.3651 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 345.3216 110.4003)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.3841 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 364.3407 110.4003)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 378.242 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 383.1985 110.4003)\\\" x=\\\"0 5.56 11.12 16.68\\\">add,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.6614 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.618 110.4003)\\\" x=\\\"0 3.33 8.89 17.22 22.78 27.78\\\">remove</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 440.9627 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 445.9192 110.4003)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.8108 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 459.7674 110.4003)\\\" x=\\\"0 8.33 13.89 19.45 21.73 24.51\\\">modify</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.2791 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 494.2356 110.4003)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 510.3587 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 515.3152 110.4003)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.12 31.12 36.68 40.01 42.29 47.85 52.85\\\">accessories,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 99.082)\\\" x=\\\"0 5.56 11.12 16.68 18.96 24.52 32.85 38.41 43.97\\\">equipment</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 79.8578 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 83.9642 99.082)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 92.8558 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 96.9621 99.082)\\\" x=\\\"0 5.56 11.12 14.45 17.23\\\">parts</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 119.1936 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 123.2999 99.082)\\\" x=\\\"0 7.22 9.5 12.28 17.84 23.4 28.96\\\">without</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 155.0431 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 159.1494 99.082)\\\" x=\\\"0 5.56 11.12\\\">our</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 173.6025 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 177.7089 99.082)\\\" x=\\\"0 5.56 8.89 11.17 16.73\\\">prior</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 197.7724 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 201.8787 99.082)\\\" x=\\\"0 7.22 10.55 12.83 15.61 18.39 23.95\\\">written</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.3904 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 235.4968 99.082)\\\" x=\\\"0 5.56 11.12 14.45 22.78 25.06 30.06 35.06 37.34 42.9 48.46\\\">permission.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 286.7419 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 290.8482 99.082)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.0797 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 312.186 99.082)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 349.979 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 354.0853 99.082)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 368.1478 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 372.2542 99.082)\\\" x=\\\"0 5.56 11.12 13.9\\\">not:</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.9339 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 393.0402 99.082)\\\" x=\\\"0 7.22 12.78 17.78\\\">Have</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 416.3849 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 420.4913 99.082)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57 36.13\\\">damage,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 459.4073 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 463.5136 99.082)\\\" x=\\\"0 8.33 13.89 18.89 24.45 30.01 35.57 37.85 42.85 48.41\\\">mechanical</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 514.2119 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 518.3182 99.082)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 527.2098 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 531.3162 99.082)\\\" x=\\\"0 5.56 7.84 13.4 18.4 21.18 24.51 26.79 31.79 37.35\\\">electrical</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 87.7636)\\\" x=\\\"0 8.33 13.89 16.17 18.95 24.51 30.07 35.07 37.85 40.13 45.69\\\">malfunction</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 84.3549 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 87.8075 87.7636)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 98.369 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 101.8216 87.7636)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64 45.2\\\">applicable;</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 149.8099 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 153.2625 87.7636)\\\" x=\\\"0 5.56\\\">be</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 164.3855 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 167.8382 87.7636)\\\" x=\\\"0 2.78 8.34 11.67 17.23\\\">torn,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 187.8479 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 191.3005 87.7636)\\\" x=\\\"0 5.56 11.12 14.45 20.01 25.57 31.13\\\">burned,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.2165 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 228.6691 87.7636)\\\" x=\\\"0 5 7.78 13.34 15.62 21.18 26.74\\\">stained</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 260.9738 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 264.4264 87.7636)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 273.318 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 276.7706 87.7636)\\\" x=\\\"0 5 10.56 13.89 19.45 25.01 30.57 36.13 41.69\\\">shredded;</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 321.2482 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 324.7008 87.7636)\\\" x=\\\"0 5.56 11.12 16.12\\\">have</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 346.3853 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 349.8379 87.7636)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 365.961 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 369.4136 87.7636)\\\" x=\\\"0 5.56 11.12 16.68 19.46 24.46\\\">dents,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 396.6548 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 400.1074 87.7636)\\\" x=\\\"0 8.33 13.89 16.17 21.73\\\">mold,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 424.6191 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 428.0717 87.7636)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 436.9633 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 440.4159 87.7636)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57\\\">damage</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 476.5536 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 480.0062 87.7636)\\\" x=\\\"0 2.78 6.11 11.67\\\">from</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 500.0062 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 503.4588 87.7636)\\\" x=\\\"0 7.22 12.78 15.56 21.12 24.45\\\">water,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 530.6903 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 534.1429 87.7636)\\\" x=\\\"0 5 10.56 16.12 21.68\\\">sand,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 558.6058 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 562.0584 87.7636)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 76.4452)\\\" x=\\\"0 2.78 6.11 11.67 17.23 22.23 24.51 30.07 35.63 38.41 41.07 46.63 49.96 52.62 58.18 63.74 68.74 74.3 76.96 79.24 84.8 90.36 95.92 101.48 104.81 110.37 115.93 118.21 123.77 126.43 131.99 137.55 140.88 143.66 148.66 151.44 154.1 160.77 166.33 171.89 174.55 182.88 188.44 193.44 196.22 198.88 202.21 207.77 210.55 216.11 219.44 225 227.66 230.44 236 241.56 244.22 250.89 254.22 259.78 265.34 270.9 274.23 277.01 282.01 284.67 291.89 294.17 296.95 302.51 305.17 310.73 313.01 315.29 317.95 323.51 326.29 328.95 331.23 334.01 339.01 341.67 347.23 350.56 352.84 358.4 360.68 366.24 371.8 374.08 376.74 382.3 387.86 391.19 393.97 398.97\\\">freezing; or have inoperable parts. You must return the Property with all of its original parts.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 36.5264)\\\" x=\\\"0 6.498 11.997 14.391 16.785 21.789 26.793 29.295 34.299 39.303 44.307 504 506.3906 508.7812 511.1719 513.5625 515.9531 518.3438 520.7344 523.125 525.5156\\\">UT  07/2019          </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 26.3398)\\\" x=\\\"0 6.003 11.007 16.011 21.015\\\">Page </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 55.8097 26.3398)\\\" x=\\\"0\\\">2</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.815 26.3398)\\\" x=\\\"0 2.394 7.398 9.9\\\"> of </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 73.1021 26.3398)\\\" x=\\\"0\\\">7</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#d9d9d9\\\" style=\\\"font-family:f1-0; font-size:54pt; white-space:pre\\\" transform=\\\"matrix(0.707 0.707 0.707 -0.707 135.6027 198.5094)\\\" x=\\\"0 56.016 96.048 136.08 176.112 216.144 236.16 284.184 324.216 344.232 364.248 416.232 456.264 480.24\\\">Qoppa Software</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#002ba6\\\" style=\\\"font-family:f1-0; font-size:9pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.932 772)\\\" x=\\\"0 9.336 16.008 22.68 29.352 36.024 39.36 47.364 54.036 57.372 60.708 69.372 76.044 80.04 86.712 90.048 94.044 97.38 104.712 111.384 115.38 118.716 126.72 132.72 139.392 142.056 148.728 155.4 158.736 161.4 168.072 174.744 178.08 187.416 194.088 196.752 202.752 206.088 210.084 213.42 220.092 223.428 226.764 233.436 239.436 242.772 246.108 249.444 258.108 266.772 275.436 278.772 285.444 292.116 298.788 305.46 312.132 315.468 321.468 328.14\\\">Qoppa Software - For Evaluation Only - https://www.qoppa.com</text></g></g></svg></svg></g></svg><br>\\n<?xml version='1.0' encoding='UTF-8'?><svg id=\\\"qoppa_document\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" version=\\\"1.1\\\" xmlns=\\\"http://www.w3.org/2000/svg\\\" xmlns:xlink=\\\"http://www.w3.org/1999/xlink\\\"><!-- jPDFWeb v2019R1.03 - Demo Version --><style>title p { display: block; }</style><g id=\\\"qoppa_viewxform\\\" transform=\\\"matrix(1 0 0 1 0 0)\\\"><style type=\\\"text/css\\\">@font-face {font-family:f2-0;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f2-1;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f2-2;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}</style><svg id=\\\"qoppa_page_p2\\\" class=\\\"qoppa_page\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\"><rect class=\\\"qoppa_pageborder\\\" x=\\\"0.5pt\\\" y=\\\"0.5pt\\\" width=\\\"611pt\\\" height=\\\"791pt\\\" fill=\\\"none\\\" /><svg class=\\\"qoppa_pagecontents\\\" x=\\\"0pt\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" viewBox=\\\"0 0 612 792\\\" ><g class=\\\"qoppa_contentstream\\\" transform=\\\"matrix(1 0 0 -1 0 792)\\\" fill=\\\"black\\\" stroke=\\\"black\\\" stroke-width=\\\"1\\\" stroke-linecap=\\\"butt\\\" stroke-linejoin=\\\"miter\\\" stroke-miterlimit=\\\"10\\\"><clipPath id=\\\"clip2-1\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 758.4812)\\\" x=\\\"0 9.44 16.11 23.33 30.55 37.22 44.44 50.55 53.33 60 66.67\\\">WARRANTIES.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 102.5482 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 106.2624 758.4812)\\\" x=\\\"0 9.44\\\">We</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 121.2624 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 124.9766 758.4812)\\\" x=\\\"0 8.33 13.89 18.89\\\">make</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 149.4298 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 153.1439 758.4812)\\\" x=\\\"0 5.56\\\">no</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 164.267 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 167.9812 758.4812)\\\" x=\\\"0 5.56 10.56 16.12 19.45 25.01 30.01\\\">express</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 202.9958 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 206.71 758.4812)\\\" x=\\\"0 7.22 12.78 16.11 19.44 25 30.56 33.34\\\">warranty</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.0548 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 248.769 758.4812)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.892 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 263.6062 758.4812)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 277.5076 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 281.2218 758.4812)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 321.7931 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 325.5072 758.4812)\\\" x=\\\"0 5.56 11.12 16.68\\\">and,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 344.9701 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 348.6843 758.4812)\\\" x=\\\"0 5.56 11.12 13.4 18.96 23.96\\\">unless</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 377.6492 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 381.3634 758.4812)\\\" x=\\\"0 5.56 8.89 14.45 20.01 22.29 27.85 30.13 32.91 38.47\\\">prohibited</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 425.4015 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 429.1157 758.4812)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 439.6772 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 443.3914 758.4812)\\\" x=\\\"0 2.28 7.84 15.06\\\">law,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 461.2332 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 464.9474 758.4812)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 478.8487 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 482.5629 758.4812)\\\" x=\\\"0 2.78 8.34 10.62 12.9 18.46 25.68 27.96 33.52\\\">following</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.6498 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 525.364 758.4812)\\\" x=\\\"0 5 10.56 16.12 18.9 24.46 30.02 35.02 40.58\\\">sentences</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 747.1629)\\\" x=\\\"0 5.56 11.12 16.68 18.96 23.96\\\">apply.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 59.8432 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 63.102 747.1629)\\\" x=\\\"0 6.67 14.45\\\">YOU</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 84.772 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 88.0308 747.1629)\\\" x=\\\"0 6.67 13.89\\\">ARE</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 108.5924 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 111.8512 747.1629)\\\" x=\\\"0 5.56 12.23 18.9 25.57 28.35 35.57\\\">LEASING</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 155.2008 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 158.4597 747.1629)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 178.4597 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 181.7186 747.1629)\\\" x=\\\"0 6.67 13.89 21.67 28.34 35.01 42.23 48.34\\\">PROPERTY</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 236.7284 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 239.9872 747.1629)\\\" x=\\\"0 3.33 10\\\">“AS</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.6572 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 259.916 747.1629)\\\" x=\\\"0 2.78 9.45 12.78\\\">IS”.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.4727 747.1629)\\\" x=\\\"0 3.2589\\\">  </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 281.9904 747.1629)\\\" x=\\\"0 9.44\\\">WE</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 298.0988 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 301.3577 747.1629)\\\" x=\\\"0 8.33 15 21.67\\\">MAKE</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.6975 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 332.9564 747.1629)\\\" x=\\\"0 7.22\\\">NO</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 347.9564 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 351.2153 747.1629)\\\" x=\\\"0 6.67 13.34 20.01 27.23 33.9 40.57\\\">EXPRESS</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 398.4565 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 401.7153 747.1629)\\\" x=\\\"0 9.44 16.11 23.33 30.55 37.22 44.44 50.55 53.33 60\\\">WARRANTIES</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.3853 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 471.6442 747.1629)\\\" x=\\\"0 7.78\\\">ON</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.6442 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 489.903 747.1629)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.903 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 513.1619 747.1629)\\\" x=\\\"0 6.67 13.89 21.67 28.34 35.01 42.23 48.34 55.01\\\">PROPERTY.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 735.8445)\\\" x=\\\"0 9.44\\\">WE</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 49.2084 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 59.5638 735.8445)\\\" x=\\\"0 7.22 10 16.67 23.89 29.45 36.12 38.9\\\">DISCLAIM</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 106.7953 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 117.1507 735.8445)\\\" x=\\\"0 6.67 13.89\\\">ANY</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 137.7122 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.0676 735.8445)\\\" x=\\\"0 9.44 16.11 23.33 30.55 37.22 44.44 50.55 53.33 60\\\">WARRANTIES</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 214.7375 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 225.0929 735.8445)\\\" x=\\\"0 2.78 11.11 17.78 23.34 26.12 32.79\\\">IMPLIED</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 265.1027 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 275.4581 735.8445)\\\" x=\\\"0 6.67\\\">BY</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 288.798 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 299.1534 735.8445)\\\" x=\\\"0 5.56 12.23 21.67\\\">LAW,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 323.6016 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 333.957 735.8445)\\\" x=\\\"0 2.78 10 17.22 22.78 30 37.22 40 47.22\\\">INCLUDING</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.9619 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 399.3173 735.8445)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.3173 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 429.6728 735.8445)\\\" x=\\\"0 2.78 11.11 17.78 23.34 26.12 32.79\\\">IMPLIED</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 469.6825 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 480.0379 735.8445)\\\" x=\\\"0 9.44 16.11 23.33 30.55 37.22 44.44 50.55 53.33 60\\\">WARRANTIES</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 546.7079 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0633 735.8445)\\\" x=\\\"0 7.78\\\">OF</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 724.5262)\\\" x=\\\"0 8.33 15 22.22 29.44 36.66 43.33 50.55 56.66 63.33 70 72.78 78.34 81.12 87.23 93.9 96.56 103.23 110.45 117.67 120.33 126.44 129.22 135.33 142.55 149.22 155.89 162.56 165.22 171.33 179.11 186.33 188.99 195.66 202.88 209.55 212.21 218.88 225.55 232.77 238.88 241.66 248.88 256.1 261.66 268.33 275.55 278.21 284.88 292.1 299.32 305.99 313.77 320.44 327.11\\\">MERCHANTABILITY AND FITNESS FOR ANY PARTICULAR PURPOSE.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 711.2078)\\\" x=\\\"0 7.22 13.89 20 26.67 33.89 39.45 45.56 48.34 51 58.22 64.89 71.56 79.34 86.01 92.68 99.35 106.02 112.69 115.47 123.25 130.47 133.25 135.91 142.58 149.8 157.02 159.68 167.46 173.57 180.79 187.46 194.68 197.34 204.56 211.23 219.56 226.23 233.45 236.23 242.9 249.57 252.35 255.01 261.68 267.24 272.8 275.46 282.68 284.96 287.24 289.52 292.18 297.74 303.3 305.96 308.24 313.8 316.46 322.02 327.58 330.36 335.92 341.48 343.76 346.54 349.2 354.76 357.54 360.2 362.98 368.54 370.82 375.82 378.48 385.15 390.71 394.04 399.6 405.16 413.49 419.05 424.61 427.39 430.05 432.33 435.11\\\">DEFAULT, REPOSSESSION, AND OTHER REMEDIES. You will be in default of this Agreement if:</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 697.8895)\\\" x=\\\"0 3.33 5.99 12.66 18.22 23.78 26.44 32 37.56 40.22 45.78 51.34 54.12 56.78 62.34 67.9 72.9 75.56 81.12 86.68 91.68 94.34 99.9 105.46 110.46 118.79 124.35 129.91 132.69 135.35 140.91 144.24 146.9 152.46 155.24 160.8 166.36 169.69 172.35 177.91 186.24 191.8 197.36 202.92 205.7 208.36 213.92 219.48 225.04 230.6 233.93 236.59 239.37 244.93 250.49 253.15 259.82 265.38 268.71 274.27 279.83 288.16 293.72 299.28 302.06 304.72 310.28 315.28 317.94 323.5 326.83 332.39 337.39 339.67 345.23 350.79 356.35 359.01 364.57 367.9 370.56 377.78 383.34 388.9 394.46 397.12 404.34 409.9 412.56 420.89 426.45 431.45 437.01 439.67 445.23 450.79 459.12 464.68 470.24 475.8\\\">- You do not pay any payment or other amount under the Agreement as provided or when we make demand.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 684.5711)\\\" x=\\\"0 3.33 5.99 12.66 18.22 23.78 26.44 32 34.28 39.28 44.84 47.5 53.06 58.06 60.72 66.28 71.84 76.84 79.5 82.28 87.84 90.12 95.12 100.68 103.34 108.9 112.23 114.89 123.22 125.5 130.5 132.78 138.34 143.9 149.46 151.74 157.3 162.86 165.52 167.8 173.36 176.14 181.7 185.03 193.36 198.92 201.7 203.98 209.54 215.1\\\">- You give us any false or misleading information.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 671.2527)\\\" x=\\\"0\\\">-</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 36.4301 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.1823 671.2527)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 57.9753 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 61.7275 671.2527)\\\" x=\\\"0 2.28 7.84 12.84\\\">lose</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 80.1308 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 83.883 671.2527)\\\" x=\\\"0 5.56 11.12 16.12 21.12 26.68 31.68 36.68 38.96 44.52\\\">possession</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 133.9709 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 137.7231 671.2527)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.0629 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 149.8151 671.2527)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 163.7165 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 167.4687 671.2527)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 205.2617 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 209.0139 671.2527)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 219.5754 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 223.3276 671.2527)\\\" x=\\\"0 5 10.56 16.12 18.9 21.18 26.18 31.18 36.74 39.52 41.8 47.36 52.92\\\">confiscation,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 279.0307 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 282.7829 671.2527)\\\" x=\\\"0 2.78 8.34 11.67 14.45 20.01 22.29 25.07 30.63 33.96\\\">forfeiture</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 322.3044 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 326.0566 671.2527)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 334.9482 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.7004 671.2527)\\\" x=\\\"0 5.56 8.34 13.9 19.46\\\">other</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 361.4934 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 365.2456 671.2527)\\\" x=\\\"0 2.28 7.84 12.84 18.4 20.68 26.24 31.8 34.58 40.14 43.47\\\">involuntary</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 413.7222 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 417.4744 671.2527)\\\" x=\\\"0 2.78 6.11 11.67 17.23 22.23 25.01 30.57\\\">transfer</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 451.3757 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 455.1279 671.2527)\\\" x=\\\"0 3.33 8.89 14.45 20.01 23.34 28.9 31.18 36.74 41.74\\\">regardless</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.876 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 505.6282 671.2527)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 513.968 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 517.7202 671.2527)\\\" x=\\\"0 7.22 12.78 18.34 21.12 26.68 32.24\\\">whether</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.2964 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0486 671.2527)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 659.9344)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79 40.45 42.73 47.73 50.39 53.17 58.73 64.29 66.95 71.95 77.51 83.07 85.35 90.91 95.91 98.69 101.35 106.91 109.69 112.35 114.63 120.19 125.75 128.03 133.03 135.31 140.87 143.15 145.81 151.37 154.7 157.36 162.92 168.48 176.81 179.09 184.65 186.93 191.93 194.71 198.04 203.6 206.38 208.66 213.66 219.22 221.88 227.44 230.77 236.33 241.33 246.89 252.45 258.01 260.29 265.85 271.41 276.41\\\">Property is the subject of judicial or administrative proceedings.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 646.616)\\\" x=\\\"0 3.33 5.99 12.66 18.22 23.78 26.44 32 34.28 39.84 42.5 48.06 53.62 59.18 61.84 64.62 70.18 75.74 79.07 84.63 87.29 89.57 94.57 97.23 102.79 108.35 111.01 116.01 121.57 124.9 129.9 132.18 137.18 139.46 145.02 150.58 153.24 158.24 163.8 168.8 171.58 177.14 185.47 191.03 194.36\\\">- You die and there is no surviving customer.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 633.2977)\\\" x=\\\"0 3.33 5.99 12.1 17.66 23.22 25.88 32.55 35.88 41.44 47 52.56 55.89 58.67 63.67 66.33 68.61 73.61 76.27 78.55 84.11 89.11 91.89 94.67 97.33 102.33 105.11 110.67 112.95 118.51 124.07 126.73 132.29 135.62 138.28 143.84 149.4 157.73 163.29 168.85 174.41 179.97 182.63 188.19 193.75 198.75 204.31 209.87 215.43 218.09 221.42 226.98 232.54 238.1 240.38 243.71\\\">- The Property is lost, stolen or damaged beyond repair.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 619.9793)\\\" x=\\\"0 3.33 5.99 12.66 18.22 23.78 26.44 32 37 42 44.28 49.84 55.4 58.06 60.84 66.4 71.96 74.62 81.29 86.85 90.18 95.74 101.3 109.63 115.19 120.75 123.53 126.19 131.75 135.08 137.74 140.52 143.85 149.41 154.97 159.97 162.75 168.31 171.64 174.3 177.08 182.64 188.2 190.86 197.53 200.86 206.42 211.98 217.54 220.87 223.65 228.65\\\">- You assign the Agreement or transfer the Property.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 606.6609)\\\" x=\\\"0 3.33 5.99 13.21 18.77 21.05 26.61 31.61 36.61 39.27 44.83 48.16 53.72 59.28 61.56 67.12 69.4 72.18 77.74 83.3 85.96 91.52 96.52 99.18 101.46 107.02 114.24 117.02 119.68 124.68 130.24 135.8 138.46 143.46 145.74 151.3 153.58 159.14 161.92 167.48 170.14 175.7 181.26 186.26 188.92 195.59 201.15 204.48 210.04 215.6 223.93 229.49 235.05 237.83 240.49 243.27 248.83 252.16 260.49\\\">- Unless prohibited by law, you violate any Agreement term.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 593.3426)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 38.6566 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 41.5168 593.3426)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 57.1369 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 59.9971 593.3426)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 108.9131 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 111.7732 593.3426)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 119.0535 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 121.9136 593.3426)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 129.7554 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 132.6156 593.3426)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 27.3 30.08\\\">default,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 165.4769 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 168.3371 593.3426)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 181.1202 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 183.9804 593.3426)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 202.872 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 205.7321 593.3426)\\\" x=\\\"0 5.56\\\">at</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 214.072 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 216.9321 593.3426)\\\" x=\\\"0 5.56 11.12\\\">our</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.3853 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 234.2454 593.3426)\\\" x=\\\"0 5.56 7.84 13.4 18.4 21.18 23.46 29.02 34.58\\\">election,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 271.6087 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 274.4688 593.3426)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.1534 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 294.0135 593.3426)\\\" x=\\\"0 5 10.56 16.12 18.4 23.96 28.96\\\">subject</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 325.7567 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 328.6169 593.3426)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 336.9567 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 339.8168 593.3426)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.9399 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 358.8 593.3426)\\\" x=\\\"0 7.22 12.78 15.06 17.84 20.12 25.68\\\">waiting</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 390.0452 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 392.9053 593.3426)\\\" x=\\\"0 5.56 11.12 14.45 16.73 22.29\\\">period</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 420.7618 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 423.6219 593.3426)\\\" x=\\\"0 2.28 10.61 16.17 21.73 26.73 32.29\\\">imposed</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 461.4783 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 464.3385 593.3426)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.9 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 477.7602 593.3426)\\\" x=\\\"0 2.28 7.84 15.06\\\">law,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 495.602 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 498.4621 593.3426)\\\" x=\\\"0 2.78 8.34 13.34\\\">take</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 517.3635 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 520.2236 593.3426)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 536.3467 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 539.2068 593.3426)\\\" x=\\\"0 5.56 10.56 13.34 15.62 21.18 26.74\\\">actions</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 582.0242)\\\" x=\\\"0 5.56 11.12 14.45 22.78 25.06 27.84 30.62 36.18 41.74 44.4 49.96 54.96 57.62 59.9 65.46 72.68 75.46 78.12 80.4 85.96 90.96 93.24 98.8 104.36 106.64 112.2 117.76 120.42 127.64 129.92 132.7 138.26 143.82 149.38 152.16 154.82 157.1 159.38 167.71 169.99 172.77 178.33 181.11 183.39 188.95 194.51 197.17 202.73 208.29 213.85 216.51 222.07 224.85 227.51 230.29 235.85 241.41 244.07 246.85 252.41 254.69 256.97 262.53 269.75 272.03 277.59 283.15 285.81 291.37 296.37 299.15 301.43 306.99 312.55 317.55 320.33 322.99 328.55 334.11 339.67 345.23 347.89 353.45 356.23 358.89 366.11 371.67 373.95 378.95 384.51 387.17 394.39 396.67 398.95 401.23 403.89 408.89 414.45 417.78 423.34 426 431 436.56 442.12 445.45 448.11 453.67 459.23 462.01 467.57 473.13 475.41 478.19\\\">permitted by law, including without limitation one of the following actions, none of which will cure your default:</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 568.7059)\\\" x=\\\"0 3.33 10.55 16.11 18.89 21.17\\\">-Until</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 56.5522 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 59.9757 568.7059)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 76.0988 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 79.5223 568.7059)\\\" x=\\\"0 5.56 11.12 14.45 19.45 25.01 30.57 35.57\\\">purchase</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 120.66 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 124.0836 568.7059)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 137.985 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 141.4086 568.7059)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 179.2015 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 182.6251 568.7059)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 193.1866 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 196.6102 568.7059)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29 32.85\\\">provided</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 235.0282 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 238.4518 568.7059)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 246.2936 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 249.7171 568.7059)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 265.3372 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 268.7608 568.7059)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 320.4552 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 323.8787 568.7059)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 332.7703 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 336.1939 568.7059)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 350.0953 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 353.5189 568.7059)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 391.3118 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 394.7354 568.7059)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.0157 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 405.4393 568.7059)\\\" x=\\\"0 3.33 8.89 14.45 20.01 25.01 30.01 35.57 40.57 45.57 51.13\\\">repossessed</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 462.1385 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 465.5621 568.7059)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.4537 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 477.8772 568.7059)\\\" x=\\\"0 5 10.56 13.89 17.22 22.78 28.34 33.9 39.46 42.79 48.35 53.91\\\">surrendered,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 534.5765 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 538 568.7059)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 545.8418 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 549.2654 568.7059)\\\" x=\\\"0 5.56 11.12 16.12\\\">each</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 557.3875)\\\" x=\\\"0 5 10.56 15.56\\\">case</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 54.2231 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 56.9386 557.3875)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 67.5001 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 70.2156 557.3875)\\\" x=\\\"0 5.56 11.12 14.45 22.78 25.06 27.84 30.62 36.18\\\">permitted</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 111.9588 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 114.6743 557.3875)\\\" x=\\\"0 5.56 11.12 16.68 22.24\\\">under</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 140.2505 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 142.966 557.3875)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 158.5862 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 161.3017 557.3875)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 212.996 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 215.7115 557.3875)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.3317 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 234.0472 557.3875)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 282.9632 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 285.6787 557.3875)\\\" x=\\\"0 5 10.56 16.12 18.4\\\">shall</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 306.3623 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 309.0779 557.3875)\\\" x=\\\"0 5 10.56 16.12 18.9 21.18 26.74 32.3\\\">continue</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 346.9441 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 349.6596 557.3875)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 357.9994 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 360.715 557.3875)\\\" x=\\\"0 3.33 8.89 14.45 20.01 27.23\\\">renew,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 390.7296 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 393.4452 557.3875)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 410.1297 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 412.8453 557.3875)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 425.6285 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 428.344 557.3875)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.2356 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 449.9511 557.3875)\\\" x=\\\"0 5 10.56 16.12 18.9 21.18 26.74 32.3\\\">continue</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 487.8173 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 490.5329 557.3875)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 498.8727 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 501.5882 557.3875)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01\\\">charge</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 532.1644 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 534.88 557.3875)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.003 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.7185 557.3875)\\\" x=\\\"0 3.33 8.89 14.45\\\">rent</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 546.0691)\\\" x=\\\"0 5.56 11.12 16.68 22.24 25.57 28.23 31.01 36.57 42.13 44.79 47.57 53.13 56.46 64.79 69.79 72.45 78.01 80.79 83.45 86.23 91.79 94.07 99.07 101.73 108.4 113.96 117.29 122.85 128.41 136.74 142.3 147.86 150.64\\\">under the terms of this Agreement.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 532.7508)\\\" x=\\\"0 3.33 12.77 18.33 20.99 29.32 34.88 39.88 42.54 45.32 50.88 55.88 61.44 64.1 69.66 75.22 80.22 82.88 88.44 93.44 96.22 98.5 104.06 109.62 112.28 119.5 125.06 127.72 133.28 138.84 141.12 143.4 148.96 153.96 159.52 162.18 164.96 170.52 173.18 178.74 184.3 186.96 192.52 198.08 203.08 208.64 213.64 218.64 224.2 227.53 232.53 235.19 240.75 244.08 246.74 252.3 257.86 262.86 265.14 270.14 275.7 281.26 283.54 289.1 291.76 294.54 300.1 302.76 308.32 311.65 317.21 319.99 325.55 330.55 333.33 335.99 341.55 347.11 350.44 353.1 355.38 360.94 363.72 369.28 372.61 378.17 383.17 385.95 388.61 390.89 396.45 399.11 401.89 407.45 413.01 415.67 422.34 425.67 431.23 436.79 442.35 445.68 448.46 453.46\\\">-We may take any action we believe to be necessary or advisable to protect our interest in the Property.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 519.4324)\\\" x=\\\"0 3.33 12.77\\\">-We</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 51.4301 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 54.7506 519.4324)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 73.6422 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 76.9627 519.4324)\\\" x=\\\"0 5.56 11.12 16.68 21.68 27.24 30.02 35.58 37.86 40.14\\\">peacefully</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 122.1092 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 125.4297 519.4324)\\\" x=\\\"0 3.33 8.89 14.45 20.01 25.01 30.01 35.57 40.57\\\">repossess</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 171.0058 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 174.3263 519.4324)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 188.2277 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 191.5482 519.4324)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 229.3411 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 232.6616 519.4324)\\\" x=\\\"0 7.22 12.78 18.34 21.67 27.23 32.23 37.79\\\">wherever</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 273.7896 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 277.1101 519.4324)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 289.8933 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 293.2138 519.4324)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.1054 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 315.4259 519.4324)\\\" x=\\\"0 2.78 5.06 10.62\\\">find</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 331.6075 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 334.928 519.4324)\\\" x=\\\"0 2.28 5.06\\\">it.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 342.7649 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 346.0854 519.4324)\\\" x=\\\"0 9.44\\\">We</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 361.0854 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 364.4059 519.4324)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 378.4684 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 381.7889 519.4324)\\\" x=\\\"0 5.56 7.84 12.84\\\">give</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 400.1922 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 403.5127 519.4324)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.6358 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 422.9563 519.4324)\\\" x=\\\"0 3.33 8.89 14.45 20.01 25.01 30.01 35.57 40.57 45.57 47.85 53.41\\\">repossession</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 481.9358 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 485.2562 519.4324)\\\" x=\\\"0 5.56 11.12 13.9 16.18 21.18 26.74\\\">notices</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 516.9994 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 520.3199 519.4324)\\\" x=\\\"0 3.33 8.89 14.45 20.01 22.29 25.62 31.18\\\">required</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 557.068 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 560.3885 519.4324)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 508.1141)\\\" x=\\\"0 2.28 7.84 15.06\\\">law.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 50.9418 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 53.8695 508.1141)\\\" x=\\\"0 6.67 9.45 12.23 17.79\\\">After</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 74.9876 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 77.9153 508.1141)\\\" x=\\\"0 3.33 8.89 14.45 20.01 25.01 30.01 35.57 40.57 45.57 47.85 53.41\\\">repossession</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.8948 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 139.8224 508.1141)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 148.714 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 151.6417 508.1141)\\\" x=\\\"0 5 10.56 13.89 17.22 22.78 28.34 33.9 39.46 42.79\\\">surrender,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 197.2178 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 200.1455 508.1141)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 212.9287 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 215.8564 508.1141)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 229.9189 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 232.8465 508.1141)\\\" x=\\\"0 5.56 11.12 13.4\\\">hold</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 251.8114 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 254.739 508.1141)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 268.6404 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 271.568 508.1141)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.1393 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 315.067 508.1141)\\\" x=\\\"0 5 10.56 16.12 18.4 23.96 28.96\\\">subject</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 346.8101 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 349.7378 508.1141)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 358.0776 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 361.0053 508.1141)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 377.1283 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 380.056 508.1141)\\\" x=\\\"0 3.33 5.61 11.17 16.73\\\">right</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 399.5677 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 402.4954 508.1141)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 418.6184 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 421.5461 508.1141)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 440.4377 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 443.3653 508.1141)\\\" x=\\\"0 5.56 11.12 16.12\\\">have</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 465.0499 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 467.9776 508.1141)\\\" x=\\\"0 5.56 11.12 16.68 22.24\\\">under</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 493.5537 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 496.4814 508.1141)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64\\\">applicable</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 541.6914 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 544.619 508.1141)\\\" x=\\\"0 2.28 7.84\\\">law</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.6825 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 562.6101 508.1141)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 496.7957)\\\" x=\\\"0 5 10.56 13.89 19.45 22.11 24.89 30.45 36.01 38.67 44.23 49.79 52.57 58.13 63.69 65.97 68.75 71.41 76.97 80.3 82.96 86.29 91.85 96.85 102.41 107.41 112.97 116.3 118.96 121.74 127.3 132.86 135.52 142.19 145.52 151.08 156.64 162.2 165.53 168.31 173.31\\\">cure the default or recover the Property.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 483.4773)\\\" x=\\\"0 3.33 10 15.56 23.89 28.89 31.55 38.77 44.33 46.99 51.99 57.55 63.11 68.67 74.23 76.89 79.67 85.23 90.23 92.51 98.07 103.63 106.29 111.85 117.41 122.41 125.07 130.63 136.19 139.52 147.85 150.13 152.91 155.69 161.25 166.81 169.47 175.03 180.03 182.81 185.09 190.65 196.21 198.87 206.09 208.37 210.65 212.93 215.59 221.15 226.71 229.37 234.93 240.49 246.05 251.61 257.17 259.83 262.61 268.17 270.83 273.61 279.17 284.73 287.39 292.95 301.28 306.84 312.4 317.96 320.74 323.4 328.96 333.96 338.96 342.29 347.85 353.41 358.97 361.75 364.41 369.97 375.53 377.81 383.37 388.37 393.37 396.03 401.59 404.92 410.48 416.04 418.32 423.88 426.16 428.94 434.5 440.06 442.72 448.28 453.28 455.94 458.22 463.78 471\\\">-Sums we spend taking any permitted action will be added to the amount accrued, unless prohibited by law.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 456.8406)\\\" x=\\\"0 6.11 12.78 19.45 26.12 32.79\\\">TAXES.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 68.6664 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 72.5196 456.8406)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 90.3126 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 94.1658 456.8406)\\\" x=\\\"0 8.33 13.89 18.89\\\">must</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 115.8357 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 119.689 456.8406)\\\" x=\\\"0 2.28 10.61 18.94 24.5 30.06 32.34 37.9 40.68 46.24 48.52\\\">immediately</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 173.2144 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 177.0676 456.8406)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 193.1906 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 197.0439 456.8406)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 205.9355 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 209.7887 456.8406)\\\" x=\\\"0 3.33 8.89 11.17 19.5 25.06 30.62 33.95 38.95\\\">reimburse</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 254.3053 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 258.1585 456.8406)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 268.72 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 272.5733 456.8406)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 277.6319 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 281.4851 456.8406)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 294.2683 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 298.1215 456.8406)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 314.2446 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 318.0978 456.8406)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.7677 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 333.6209 456.8406)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 349.744 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 353.5972 456.8406)\\\" x=\\\"0 5.56 7.84\\\">all</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 363.7193 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 367.5725 456.8406)\\\" x=\\\"0 5.56 11.12 16.12 21.68 25.01 30.57 38.9 44.46 50.02\\\">government</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 420.3801 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 424.2334 456.8406)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01 30.57\\\">charges</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 459.8095 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 463.6628 456.8406)\\\" x=\\\"0 3.33 8.89 11.17 16.73 19.51 21.79 27.35\\\">relating</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 496.5778 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 500.431 456.8406)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 508.7709 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 512.6241 456.8406)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.5255 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 530.3787 456.8406)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 445.5223)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24 28.52 34.08 39.64\\\">including,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 75.5268 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 78.3573 445.5223)\\\" x=\\\"0 5.56 11.12\\\">but</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 92.2586 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 95.0891 445.5223)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 108.9905 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 111.8209 445.5223)\\\" x=\\\"0 2.28 4.56 12.89 15.17 17.95 23.51\\\">limited</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 140.8932 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 143.7237 445.5223)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 152.0635 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 154.894 445.5223)\\\" x=\\\"0 2.78 8.34 13.9 18.9\\\">fees,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 176.5737 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 179.4042 445.5223)\\\" x=\\\"0 2.78 8.34 13.34 18.9 23.9\\\">taxes,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 206.0839 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 208.9144 445.5223)\\\" x=\\\"0 2.78 5.06 10.62 16.18\\\">fines</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 230.096 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 232.9265 445.5223)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 249.6111 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 252.4416 445.5223)\\\" x=\\\"0 5 10.56 13.89 18.89 24.45 30.01 33.34 38.9 44.46 49.46\\\">surcharges,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 304.6877 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 307.5181 445.5223)\\\" x=\\\"0 7.22 12.78 18.34 21.12 26.68 32.24\\\">whether</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 343.0943 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 345.9248 445.5223)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.12 31.12 36.68\\\">assessed</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.1709 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 391.0014 445.5223)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.1244 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 404.9549 445.5223)\\\" x=\\\"0 5 10.56 16.12\\\">you,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 423.8563 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 426.6868 445.5223)\\\" x=\\\"0 5.56 10.56\\\">us,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 440.0266 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 442.8571 445.5223)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 451.7487 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 454.5792 445.5223)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.4806 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 471.311 445.5223)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 511.8823 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 514.7128 445.5223)\\\" x=\\\"0 9.44\\\">We</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.7128 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 532.5433 445.5223)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.4349 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 554.2654 445.5223)\\\" x=\\\"0 5.56 11.12\\\">add</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 434.2039)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.0014 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 50.123 434.2039)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 83.4775 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 86.5991 434.2039)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 94.9389 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 98.0606 434.2039)\\\" x=\\\"0 7.22 12.78 18.34\\\">what</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 119.1836 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 122.3052 434.2039)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 138.4283 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 141.5499 434.2039)\\\" x=\\\"0 5.56 12.78\\\">owe</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 159.8946 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 163.0162 434.2039)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 173.5777 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 176.6994 434.2039)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 181.758 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 184.8796 434.2039)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 201.0026 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 204.1242 434.2039)\\\" x=\\\"0 5.56\\\">do</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 215.2473 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 218.3689 434.2039)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 232.2703 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 235.3919 434.2039)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 251.5149 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 254.6365 434.2039)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 265.1981 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 268.3197 434.2039)\\\" x=\\\"0 7.22 12.78 18.34\\\">when</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 292.2259 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 295.3476 434.2039)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.1307 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 311.2524 434.2039)\\\" x=\\\"0 8.33 13.89 18.89\\\">make</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.7055 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.8271 434.2039)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57 36.13\\\">demand.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 377.7431 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 380.8647 434.2039)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 386.4214 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 389.543 434.2039)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 405.666 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 408.7877 434.2039)\\\" x=\\\"0 5.56\\\">do</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.9107 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 423.0323 434.2039)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 436.9337 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 440.0553 434.2039)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.1783 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 459.3 434.2039)\\\" x=\\\"0 5 10.56 15.56\\\">such</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 480.423 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 483.5446 434.2039)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57 33.35\\\">amounts</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.8991 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 525.0207 434.2039)\\\" x=\\\"0 7.22 12.78 18.34\\\">when</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 548.927 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 552.0486 434.2039)\\\" x=\\\"0 2.78 8.34 13.9\\\">they</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 422.8855)\\\" x=\\\"0 5.56 8.89\\\">are</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.5531 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 50.576 422.8855)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.12 31.12 36.68\\\">assessed</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 92.8221 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 95.845 422.8855)\\\" x=\\\"0 3.33 8.89 14.45 16.73 22.29 27.29\\\">(unless</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 128.1399 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 131.1627 422.8855)\\\" x=\\\"0 5 10.56 15.56\\\">such</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 152.2858 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 155.3087 422.8855)\\\" x=\\\"0 3.33 8.89 13.89 19.45 21.73 24.51\\\">results</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 184.8204 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 187.8433 422.8855)\\\" x=\\\"0 2.78 6.11 11.67\\\">from</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 207.8433 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.8661 422.8855)\\\" x=\\\"0 5.56 11.12\\\">our</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.3192 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 228.3421 422.8855)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.8 32.36 37.92 42.92 48.48 51.81\\\">negligence),</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 282.9417 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 285.9646 422.8855)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.0876 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 305.1105 422.8855)\\\" x=\\\"0 8.33 13.89 18.89\\\">must</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 326.7804 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 329.8033 422.8855)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 345.9264 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 348.9492 422.8855)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 365.0723 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 368.0951 422.8855)\\\" x=\\\"0 5.56 11.12 16.68 22.24 24.52 27.3 29.58 35.14\\\">penalties</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 408.2416 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 411.2645 422.8855)\\\" x=\\\"0 7.22 12.78 18.34\\\">when</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 435.1707 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 438.1936 422.8855)\\\" x=\\\"0 5.56 11.12\\\">due</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.8782 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 457.9011 422.8855)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.7927 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 469.8155 422.8855)\\\" x=\\\"0 3.33 8.89 11.17 19.5 25.06 30.62 33.95 38.95\\\">reimburse</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 514.3321 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 517.355 422.8855)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 527.9165 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 530.9394 422.8855)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 535.998 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 539.0209 422.8855)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.8041 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 554.8269 422.8855)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 411.5672)\\\" x=\\\"0 2.78 8.34 13.9 22.23\\\">them.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 58.1098 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 61.0597 411.5672)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 78.8527 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.8026 411.5672)\\\" x=\\\"0 8.33 13.89 18.89\\\">must</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 103.4725 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 106.4225 411.5672)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 122.5455 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 125.4955 411.5672)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 139.3968 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 142.3467 411.5672)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01 30.57\\\">charges</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 177.9229 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 180.8729 411.5672)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 188.7147 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 191.6646 411.5672)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 207.2847 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.2346 411.5672)\\\" x=\\\"0 5.56 11.12 14.45 20.01 25.57 28.9 34.46 40.02\\\">paragraph</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 255.8255 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 258.7754 411.5672)\\\" x=\\\"0 5.56 10.56 16.12\\\">even</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.46 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 283.4099 411.5672)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 288.4685 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 291.4184 411.5672)\\\" x=\\\"0 5 10.56 15.56\\\">such</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.5415 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 315.4914 411.5672)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01 30.57\\\">charges</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.0676 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 354.0175 411.5672)\\\" x=\\\"0 5.56 8.89\\\">are</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 368.4707 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 371.4206 411.5672)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 385.322 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 388.2719 411.5672)\\\" x=\\\"0 5.56 7.84 10.12 12.4 17.96\\\">billed</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 411.7973 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 414.7472 411.5672)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 423.0871 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 426.037 411.5672)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 436.5985 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 439.5485 411.5672)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 448.4401 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 451.39 411.5672)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 459.7298 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 462.6798 411.5672)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 478.8028 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 481.7528 411.5672)\\\" x=\\\"0 5.56 11.12 13.9 16.18\\\">until</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 500.2147 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 503.1646 411.5672)\\\" x=\\\"0 5.56 8.34 11.12 16.68\\\">after</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 523.1744 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 526.1243 411.5672)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 540.0257 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 542.9756 411.5672)\\\" x=\\\"0 5.56 11.12\\\">end</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.6602 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 562.6101 411.5672)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 400.2488)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.0014 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 49.7259 400.2488)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 98.6419 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 101.3665 400.2488)\\\" x=\\\"0 2.78 8.34 11.67 20\\\">term,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 124.1448 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 126.8693 400.2488)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 137.4308 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 140.1554 400.2488)\\\" x=\\\"0 2.28 7.84 13.4\\\">long</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 159.1202 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 161.8448 400.2488)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 172.4063 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 175.1308 400.2488)\\\" x=\\\"0 5 10.56 15.56\\\">such</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 196.2539 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 198.9784 400.2488)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01 30.57\\\">charges</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 234.5546 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 237.2791 400.2488)\\\" x=\\\"0 5.56 8.89\\\">are</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 251.7322 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 254.4568 400.2488)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64\\\">applicable</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.6667 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 302.3913 400.2488)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 310.7311 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 313.4556 400.2488)\\\" x=\\\"0 5 10.56 18.89\\\">some</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 337.9088 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 340.6333 400.2488)\\\" x=\\\"0 5.56 11.12 14.45\\\">part</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 357.8648 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 360.5893 400.2488)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 368.9291 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 371.6537 400.2488)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 385.555 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 388.2796 400.2488)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 437.1956 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 439.9201 400.2488)\\\" x=\\\"0 2.78 8.34 11.67 20\\\">term.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 462.6985 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 465.423 400.2488)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 483.216 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 485.9405 400.2488)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 500.003 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 502.7275 400.2488)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 516.6289 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 519.3534 400.2488)\\\" x=\\\"0 5.56 11.12 16.12\\\">have</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 541.038 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 543.7625 400.2488)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.1024 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 554.8269 400.2488)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 388.9305)\\\" x=\\\"0 5.56 11.12 14.45 17.11 19.39 24.95 29.95 35.51 43.84 49.4 52.06 54.84 60.4 65.4 70.96 75.96\\\">our income taxes.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 375.6121)\\\" x=\\\"0 6.11 8.89 15 20.56 27.23 30.01 32.67 42.11 47.67 50.33 53.66 59.22 62 67.56 69.84 75.4 78.06 80.84 83.12 85.9 88.18 93.74 96.4 99.18 104.74 107.4 110.18 115.74 121.3 123.96 130.63 133.96 139.52 145.08 150.64 153.97 156.75 161.75 164.41 167.19 172.75 176.08 178.74 181.52 187.08 192.64 195.3 198.08 203.64 206.97 215.3 217.96 223.52 226.3 228.96 231.74 237.3 242.86 245.52 247.8 253.36 258.92 263.92 269.48 272.14 277.7 283.26 288.82 291.48 297.04 302.6 305.38 307.66 309.94 312.6 317.6 323.16 328.72 331.38 336.94 341.94 347.5 353.06 355.34 358.67 364.23 366.89 372.45 379.67 385.23 390.79 394.12 399.12 404.68 406.96 412.52\\\">TITLE. We retain title to the Property for the term of the lease and until you acquire ownership.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 362.2937)\\\" x=\\\"0 6.67 13.34 20.01 28.34 35.01 42.23 48.34 55.01 57.79 60.45 69.89 75.45 78.11 83.67 89.23 94.23 99.79 102.45 107.45 112.45 118.01 123.57 129.13 134.69 136.97 142.53 148.09 150.75 156.31 161.87 167.43 169.71 172.49 177.49 180.15 182.93 186.26 191.82 200.15 202.81 207.81 213.37 218.93 222.26 224.92 229.92 235.48 241.04 246.04 251.04 253.32 258.88 264.44 267.1 272.66 277.66 282.66 288.22 293.78 299.34 302.12 304.9 307.56 313.12 318.12 320.78 326.34 329.67 335.23 340.23 342.51 348.07 353.63 359.19 361.85 367.41 372.97 375.25 380.81 388.03\\\">PAYMENTS. We have scheduled debits from your checking account, as provided below:</text></g><clipPath id=\\\"clip2-2\\\"><path d=\\\"M 35 328 L 574 328 L 574 345 L 35 345 L 35 328 z \\\"/></clipPath><g clip-path=\\\"url(#clip2-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.2825 332.657)\\\" x=\\\"0 7.22 15 22.22 28.89 36.11 44.44 51.11 58.33 60.99 67.66 74.88 80.99 88.21 95.99 103.21 105.99 112.1 118.77 124.88 127.66 135.44 142.66 145.32 151.43 159.21 166.43 169.09 175.76 182.43 189.1 197.43 204.1 211.32 217.43 224.1 226.76 233.43 236.21 242.88 245.54 252.21 259.43 266.65 269.31 272.64 279.31 286.53 293.75 296.41 303.63 310.3 316.97 319.75 325.86 332.53\\\">CONSUMER AUTHORIZATION FOR PAYMENTS VIA ACH (ACH DEBITS)</text></g><clipPath id=\\\"clip2-3\\\"><path d=\\\"M 35 79 L 574 79 L 574 329 L 35 329 L 35 79 z \\\"/></clipPath><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 316.3387)\\\" x=\\\"0 6.67 13.89\\\">ACH</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 61.7883 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 66.1692 316.3387)\\\" x=\\\"0 7.22 12.78 18.34 20.62 23.4\\\">Debits</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 94.5725 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 98.9533 316.3387)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 110.6233 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 115.0041 316.3387)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46 42.79 47.79\\\">Payment(s)</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 166.1272 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 170.508 316.3387)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 187.1926 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 191.5735 316.3387)\\\" x=\\\"0 7.22 12.78 18.34 23.9\\\">Range</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 221.0412 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 225.4221 316.3387)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.762 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 238.1428 316.3387)\\\" x=\\\"0 7.22 12.78 18.34 20.62 23.4 28.4\\\">Debits.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 269.3245 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 273.7053 316.3387)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.4983 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 295.8792 316.3387)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 28.35 30.63 35.63\\\">authorize</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 337.0754 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 341.4563 316.3387)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 352.0178 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 356.3987 316.3387)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 364.7385 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 369.1194 316.3387)\\\" x=\\\"0 5.56 11.12 16.68 18.96\\\">debit</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 390.8626 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 395.2434 316.3387)\\\" x=\\\"0 2.78 8.34 13.9 19.46\\\">funds</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.7063 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 424.0872 316.3387)\\\" x=\\\"0 2.78 6.11 11.67\\\">from</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 444.0872 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 448.4681 316.3387)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.9212 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 472.3021 316.3387)\\\" x=\\\"0 5.56 11.12 16.68\\\">bank</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 493.9866 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 498.3675 316.3387)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.68 32.24\\\">account</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 533.3919 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 537.7728 316.3387)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.4427 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.8236 316.3387)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.7249 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 305.0203)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 74.0295 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 77.2781 305.0203)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 85.6179 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 88.8665 305.0203)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 102.7678 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 106.0164 305.0203)\\\" x=\\\"0 2.28 7.84 13.4 18.4\\\">lease</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 129.9813 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 133.2298 305.0203)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57 38.35\\\">payments</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 176.5843 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 179.8329 305.0203)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 196.5174 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 199.766 305.0203)\\\" x=\\\"0 5.56 7.84\\\">all</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.8881 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 213.1366 305.0203)\\\" x=\\\"0 5.56 8.34 13.9 19.46\\\">other</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 235.9296 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 239.1782 305.0203)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57 33.35\\\">amounts</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 277.5327 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 280.7812 305.0203)\\\" x=\\\"0 5.56 10.56 15.56 18.89 24.45 30.01\\\">accrued</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 316.3574 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 319.606 305.0203)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 330.1675 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 333.4161 305.0203)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29 32.85\\\">provided</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.834 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 375.0826 305.0203)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 382.9244 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 386.173 305.0203)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 401.7931 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 405.0417 305.0203)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement,</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.736 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 459.9846 305.0203)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.8264 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 471.0749 305.0203)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.9763 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 488.2249 305.0203)\\\" x=\\\"0 2.78 8.34 10.62 12.9 18.46 25.68 27.96 33.52\\\">following</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 527.3118 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 530.5603 305.0203)\\\" x=\\\"0 3.33 8.89 14.45 20.01\\\">range</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 556.1365 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 559.3851 305.0203)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.7249 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 293.7019)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57 33.35\\\">amounts</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 79.0295 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.706 293.7019)\\\" x=\\\"0 5.56 11.12 13.9 19.46\\\">$1.00</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 106.7305 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 109.407 293.7019)\\\" x=\\\"0\\\">-</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 112.7371 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 115.4136 293.7019)\\\" x=\\\"0 5.56 11.12 16.68 22.24 25.02 30.58 36.14\\\">$500.00.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 154.3394 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 157.016 293.7019)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 174.8089 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 177.4855 293.7019)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 28.35 30.63 35.63\\\">authorize</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 218.6818 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 221.3583 293.7019)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.9198 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 234.5964 293.7019)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 242.9362 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 245.6128 293.7019)\\\" x=\\\"0 5.56 11.12 16.68 18.96\\\">debit</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 267.3559 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 270.0325 293.7019)\\\" x=\\\"0 2.28 7.84 12.84 17.84 23.4\\\">lesser</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 296.7659 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 299.4424 293.7019)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57 33.35\\\">amounts</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 337.7969 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 340.4735 293.7019)\\\" x=\\\"0 2.78 8.34 13.9\\\">than</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.9364 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 362.6129 293.7019)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 382.066 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 384.7426 293.7019)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57 38.35\\\">payment,</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 425.8754 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 428.5519 293.7019)\\\" x=\\\"0 5.56 11.12 16.12 21.68\\\">based</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 455.798 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 458.4746 293.7019)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 469.5976 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 472.2742 293.7019)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 491.7273 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 494.4038 293.7019)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 532.7583 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 535.4349 293.7019)\\\" x=\\\"0 5.56 7.84 12.84 15.62 21.18 24.51 29.51\\\">history.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.7249 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 282.3836)\\\" x=\\\"0 7.78 13.34 16.67 19.33 24.89 30.45 36.01 38.29 41.07 46.07 48.73 55.95 58.23 60.51 62.79 65.45 71.01 76.57 79.23 81.51 87.07 89.73 94.73 100.29 105.29 110.85 113.51 116.84 122.4 127.96 133.52 139.08 141.86 144.52 150.08 155.64 157.92 163.48 168.48 173.48 176.14 183.36 188.92 191.58 197.14 202.7 205.48 207.76 210.54 215.54 218.2 223.2 228.76 234.32\\\">Our debits will be in such range, unless we notify you.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 269.0652)\\\" x=\\\"0 6.67 13.89 21.11 23.77 30.99 36.55 42.11 44.39 47.17 52.17 54.83 57.61 63.17 66.5 69.16 76.38 81.94 84.72 90.28 93.61 99.17 104.73 110.29 112.95 119.62 125.18 130.18 138.51 144.07 149.63 152.41 155.07 161.18 166.74 172.3 175.08 177.74 184.41 189.97 195.53 198.19 203.75 209.31 212.09 217.65 223.21 226.54 228.82 233.82 239.38 242.04 247.6 252.6 255.26 258.04 263.6 266.26 271.82 277.38 282.94 285.22 288 290.66 296.22 298.88 304.44 310 312.78 318.34 323.9 326.56 329.34 334.9 338.23 340.89 346.45 352.01 357.01 359.67 363 368.56 371.34 376.9 380.23 385.79 391.35 396.91 399.57 405.13 410.69 415.69 424.02 429.58 435.14 437.92 440.58 443.36 448.92 454.48\\\">ACH Debits for Returned Payment Fee. You authorize us to debit $ 20.00 for an* D E M O *payment fee.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 255.7469)\\\" x=\\\"0 7.22 12.78 15.56 17.84 22.84\\\">Notice</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 69.0783 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 72.6034 255.7469)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 80.9433 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 84.4684 255.7469)\\\" x=\\\"0 6.67 12.23 15.56 17.84 23.4 26.18 28.46 34.02 39.58\\\">Variation.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 126.8317 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 130.3568 255.7469)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 135.9135 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 139.4386 255.7469)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 145.0001 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.5253 255.7469)\\\" x=\\\"0 5.56 11.12 16.68 18.96\\\">debit</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 170.2684 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 173.7935 255.7469)\\\" x=\\\"0 2.78 8.34 10.62 12.9\\\">falls</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 191.6939 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 195.2191 255.7469)\\\" x=\\\"0 5.56 11.12 13.9 18.9 21.18 26.74\\\">outside</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 227.5238 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 231.0489 255.7469)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 244.9503 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 248.4754 255.7469)\\\" x=\\\"0 5 10.56 16.12 21.12 23.4 26.18 28.46 34.02\\\">specified</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 288.0603 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 291.5855 255.7469)\\\" x=\\\"0 3.33 8.89 14.45 20.01 25.57\\\">range,</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.94 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 323.4651 255.7469)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 336.2483 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 339.7734 255.7469)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 353.8359 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 357.3611 255.7469)\\\" x=\\\"0 5.56 13.89 19.45 21.73\\\">email</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 381.3747 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 384.8999 255.7469)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 401.0229 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 404.548 255.7469)\\\" x=\\\"0 5.56 11.12 13.9 16.18 21.18\\\">notice</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 431.2912 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 434.8163 255.7469)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 443.1562 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 446.6813 255.7469)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 460.5827 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 464.1078 255.7469)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 497.4623 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 500.9874 255.7469)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 517.672 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 521.1971 255.7469)\\\" x=\\\"0 5.56 11.12 13.9\\\">date</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 540.66 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 544.1852 255.7469)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 555.3082 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 558.8333 255.7469)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.7249 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 244.4285)\\\" x=\\\"0 5.56 8.34 11.12 16.68 20.01 22.67 29.89 35.45 37.73 42.73 48.29 50.95 58.17 63.73 66.39 73.61 75.89 78.17 80.45 83.11 88.67 94.23 99.79 102.07 104.85 107.51 112.51 118.07 123.07 128.63 131.29 136.85 145.18 150.74 156.3 161.86 164.64 167.42 170.08 176.75 182.31 187.87 190.53 197.75 200.03 202.31 204.59 207.25 212.81 218.37 221.15 223.81 229.37 232.15 234.81 237.09 242.65 248.21 253.21 255.99 258.65 264.21 269.77 272.43 277.43 282.99 285.27 290.83 296.39 301.95 307.51 310.84 313.5 319.06 324.62 329.62 334.62 336.53 339.19 344.75 350.31 353.09 355.37 360.37 365.93\\\">after which we will debit such amount. You will get at least 10 calendar days&apos; notice.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 231.1102)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68\\\">Payment</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 80.1379 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 85.2907 231.1102)\\\" x=\\\"0 7.22 12.78 15.56 21.12 26.12\\\">Dates.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 114.192 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 119.3448 231.1102)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 137.1377 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 142.2905 231.1102)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 28.35 30.63 35.63\\\">authorize</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 183.4868 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 188.6395 231.1102)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.74\\\">debits</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 215.3827 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 220.5354 231.1102)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.6585 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 236.8113 231.1102)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.7028 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 250.8556 231.1102)\\\" x=\\\"0 5.56 8.34 11.12 16.68\\\">after</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 270.8654 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 276.0181 231.1102)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 289.9195 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 295.0722 231.1102)\\\" x=\\\"0 5.56 11.12 13.9 19.46\\\">dates</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.5351 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 324.6879 231.1102)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 336.3578 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 341.5106 231.1102)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 379.865 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 385.0178 231.1102)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29 32.85\\\">provided</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 423.4358 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 428.5885 231.1102)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 436.4303 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 441.5831 231.1102)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 455.4844 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 460.6372 231.1102)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement,</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.3315 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 517.4843 231.1102)\\\" x=\\\"0 5.56 11.12 13.4 18.96 23.96\\\">unless</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 546.4491 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 551.6019 231.1102)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.7249 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 219.7918)\\\" x=\\\"0 5.56 8.34 13.9 19.46 22.79 30.01 32.29 37.29\\\">otherwise</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 83.5315 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 86.8927 219.7918)\\\" x=\\\"0 5.56 7.84 11.17 16.73 21.73\\\">direct</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 111.4044 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 114.7656 219.7918)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 125.3271 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 128.6884 219.7918)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.5302 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 139.8914 219.7918)\\\" x=\\\"0 7.22 10.55 12.83 15.61 17.89 23.45 29.01\\\">writing.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 171.6834 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 175.0446 219.7918)\\\" x=\\\"0 9.44\\\">We</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 190.0446 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 193.4058 219.7918)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 207.4683 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.8296 219.7918)\\\" x=\\\"0 5.56 11.12 16.68 18.96\\\">debit</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 232.5727 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 235.9339 219.7918)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.057 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 250.4182 219.7918)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.3098 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 262.671 219.7918)\\\" x=\\\"0 5.56 8.34 11.12 16.68\\\">after</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 282.6808 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 286.0421 219.7918)\\\" x=\\\"0 5.56 10.56 16.12 19.45\\\">every</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 310.4952 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 313.8564 219.7918)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 352.2109 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 355.5721 219.7918)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29 32.85\\\">provided</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.9901 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 397.3513 219.7918)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 405.1931 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 408.5543 219.7918)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 424.1745 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 427.5357 219.7918)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement;</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 479.23 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 482.5912 219.7918)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29 32.85 38.41\\\">provided,</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 523.7875 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 527.1488 219.7918)\\\" x=\\\"0 5.56 11.12 18.34 23.9 28.9 34.46 37.79\\\">however,</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.7249 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 208.4734)\\\" x=\\\"0 2.78 8.34 13.9\\\">that</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 57.3547 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 60.5776 208.4734)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 73.3608 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 76.5836 208.4734)\\\" x=\\\"0 3.33 8.89 13.89 19.45 22.78 27.78\\\">reserve</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 109.9284 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 113.1512 208.4734)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 127.0526 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 130.2755 208.4734)\\\" x=\\\"0 3.33 5.61 11.17 16.73\\\">right</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 149.7872 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 153.01 208.4734)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 161.3499 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 164.5728 208.4734)\\\" x=\\\"0 5.56 11.12 16.68 18.96\\\">debit</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 186.3159 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 189.5388 208.4734)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 200.6618 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 203.8847 208.4734)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 217.7861 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 221.0089 208.4734)\\\" x=\\\"0 5.56 11.12 16.68 21.68 23.96 29.52\\\">banking</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.0968 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 259.3197 208.4734)\\\" x=\\\"0 5.56 11.12\\\">day</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.4427 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 278.6656 208.4734)\\\" x=\\\"0 2.28 10.61 18.94 24.5 30.06 32.34 37.9 40.68 46.24 48.52\\\">immediately</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 332.191 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 335.4139 208.4734)\\\" x=\\\"0 5.56 8.89 14.45 19.45 25.01 30.57 32.85 38.41\\\">preceding</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 379.3934 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 382.6162 208.4734)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.0694 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 405.2922 208.4734)\\\" x=\\\"0 3.33 8.89 14.45 20.01 22.29 27.85\\\">regular</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 436.4787 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 439.7016 208.4734)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 478.0561 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 481.279 208.4734)\\\" x=\\\"0 5.56 11.12 13.9\\\">date</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 500.7419 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 503.9647 208.4734)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.0233 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 512.2462 208.4734)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.1476 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 529.3704 208.4734)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.7249 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 197.1551)\\\" x=\\\"0 5.56 11.12 13.9 19.46 22.12 24.9 30.46 32.74 35.02 40.02 42.68 48.24 53.8 56.46 62.02 64.68 70.24 75.8 81.36 84.69 90.25 95.81 101.37 106.37 108.65 114.21 119.77 122.43 127.99 133.55 138.55 141.21 144.54 146.82 149.6 155.16 157.94 160.72 163.38 168.94 171.6 177.16 182.72 185 187.28 192.84 198.4 203.4 206.06 211.62 214.95 217.61 224.83 230.39 235.95 240.95 246.51 252.07 257.63 260.29 265.85 271.41 276.41 279.74\\\">date falls on a non-banking day (i.e., a holiday or weekend day).</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 183.8367)\\\" x=\\\"0 7.22 12.78 16.11 19.44 25 30 32.78 35.06 40.62 46.18 51.18 53.96 56.62 63.29 68.85 74.41 77.07 82.63 88.19 90.97 96.53 102.09 105.42 107.7 112.7 118.26 120.92 126.48 131.48 134.14 136.92 142.48 145.14 150.7 156.26 161.82 164.1 166.88 169.54 175.1 180.66 186.22 188.88 193.88 197.21 202.77 208.33 210.61 213.39 216.05 221.05 226.61 232.17 235.5 238.16 243.72 248.72 253.72 259.28 264.84 270.4 273.18 275.84 278.62 284.18 286.84 291.84 297.4 300.73 304.06 309.62 314.62 317.4 320.06 325.62 328.95 332.28 337.84 341.17 346.17\\\">Corrections. You authorize us to debit and credit your* D E M O * correct errors.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 170.5184)\\\" x=\\\"0 6.67 9.45 12.23 17.79 22.79 25.57 27.85 32.85 38.41 41.07 48.29 53.85 56.63 62.19 64.97 67.63 73.74 79.3 84.86 87.52 90.3 93.63 99.19 104.75 109.75 115.31 120.31 123.09 125.37 130.93 136.49 138.4 143.4 146.06 151.62 154.4 157.18 162.74 167.74 170.52 172.8 177.8 183.36 186.02 191.58 197.14 199.92 205.48 208.14 210.42 215.42 218.08 220.86 226.42 231.98 234.64 241.31 246.87 250.2 255.76 261.32 269.65 275.21 280.77 283.55 286.21 293.43 298.99 301.77 307.33 309.99 315.55 318.88 324.44 329.44 331.72 337.28 342.84 348.4 351.06 356.62 362.18 367.74 372.74 378.3\\\">Effective Date. The transaction&apos;s effective date is the Agreement Date provided above.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 157.2)\\\" x=\\\"0 6.67 11.67 16.67 22.23 27.79 33.35 36.13 38.79 44.35 49.91 55.47 58.13 65.35 70.91 76.47 79.25 81.53 87.09 92.65 95.43 98.09 104.76 110.32 115.88 118.54 124.1 129.66 132.44 138 143.56 146.89 149.17 154.17 159.73 162.39 165.17 170.73 176.29 178.95 184.51 190.07 195.63 197.91 200.69 205.69 208.35 211.13 216.69 219.35 222.13 227.69 229.97 234.97 237.63 243.19 248.19 253.19 258.75 264.31 269.87 272.65 275.43 278.09 285.31 290.87 299.2 304.76 310.32 313.65 316.31 320.2 324.09 327.98 331.87 335.76 341.32 346.88 352.44 358 360.66 367.88 373.44 379 381.78 384.06 389.62 395.18 397.84 405.06 410.62 418.95 424.51 430.07 433.4 436.06 439.95 443.84 447.73 451.62 455.51 461.07 466.63 472.19 477.75\\\">Account and Routing. You authorize the debits to this account: Number *****3968 Routing Number *****1451.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 143.8816)\\\" x=\\\"0 7.22 12.78 18.34 23.9 29.46\\\">Change</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 75.7043 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 78.8745 143.8816)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 86.7163 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 89.8865 143.8816)\\\" x=\\\"0 6.67 11.67 16.67 22.23 27.79 33.35\\\">Account</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 126.0193 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 129.1895 143.8816)\\\" x=\\\"0 2.78 8.34 11.12 16.68 20.01 28.34 33.9 36.68 38.96 44.52 50.08\\\">Information:</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 182.0508 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 185.221 143.8816)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 203.0139 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 206.1841 143.8816)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 28.35 30.63 35.63\\\">authorize</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.3804 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 250.5506 143.8816)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 261.1121 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 264.2823 143.8816)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 272.6222 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 275.7923 143.8816)\\\" x=\\\"0 5.56 11.12 16.68 18.96\\\">debit</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 297.5355 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 300.7057 143.8816)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 316.8287 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 319.9989 143.8816)\\\" x=\\\"0 5.56 11.12\\\">new</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.3437 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 341.5138 143.8816)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.68 32.24\\\">account</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 376.5382 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 379.7084 143.8816)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 395.8315 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 399.0017 143.8816)\\\" x=\\\"0 5.56 7.84 12.84\\\">give</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 417.405 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 420.5752 143.8816)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 431.1367 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 434.3069 143.8816)\\\" x=\\\"0 2.28 7.84 10.62 16.18 19.51 27.84 33.4 36.18 38.46 44.02\\\">information</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 483.8918 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 487.062 143.8816)\\\" x=\\\"0 2.78 8.34 11.67\\\">for.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.5103 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 504.6805 143.8816)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 510.2371 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 513.4073 143.8816)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.5303 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 532.7005 143.8816)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.68 32.24\\\">account</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.7249 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 132.5633)\\\" x=\\\"0 2.28 7.28 9.94 13.27 18.83 21.11 26.67 31.67 34.45 40.01 45.57 48.23 55.45 61.01 63.67 70.89 73.17 75.45 77.73 80.39 85.95 91.51 97.07 99.35 102.13 104.79 110.35 115.91 120.91 123.57 129.13 134.13 139.13 144.69 150.25 155.81 158.59 161.25 168.47 174.03 176.69 182.25 187.81 192.81 198.37 201.03 206.59 212.15 214.81 217.59 219.87 222.15 227.71\\\">is re* D E M O *ill debit any account we have on file.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 119.2449)\\\" x=\\\"0 6.67 9.45 15.01 20.57 23.23 29.9 35.46 40.46 48.79 54.35 59.91 62.69 67.69 70.47 73.13 79.8 85.36 90.92 93.58 101.91 107.47 112.47 115.13 120.13 122.91 128.47 134.03 136.69 142.25 147.81 152.81 161.14 166.7 172.26 175.04 177.7 183.26 186.04 188.7 190.98 196.54 202.1 207.1 209.88 212.54 215.32 220.88 224.21 229.77 235.33 237.99 243.55 249.11 254.67 259.67 261.95 267.51 273.07 275.73 281.29 286.85 291.85 296.85 299.51 305.07 310.63 313.41 318.97 322.3 327.86 330.52 336.08 338.74 344.3 349.86 354.86 363.19 368.75 374.31 377.09\\\">Stop Payments. You may stop payment at least three banking days before a payment.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 105.9266)\\\" x=\\\"0 7.22 12.78 17.78 23.34 28.34 33.9 36.68 38.96 44.52 50.08\\\">Revocation,</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 93.5412 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 97.2277 105.9266)\\\" x=\\\"0 7.22 12.78 18.34 23.34 28.9 31.18 33.46 39.02 41.8 44.08 49.64 55.2\\\">Cancellation,</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 155.216 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 158.9024 105.9266)\\\" x=\\\"0 6.11 11.67 15 23.33 25.61 31.17 36.73 39.51 41.79 47.35 52.91\\\">Termination.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 214.5958 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 218.2823 105.9266)\\\" x=\\\"0 6.11 11.67 13.95\\\">This</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 237.2325 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 240.9189 105.9266)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 28.35 30.63 35.63 41.19 43.97 46.25 51.81\\\">authorization</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 298.2968 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 301.9833 105.9266)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.8\\\">applies</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 333.7899 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 337.4764 105.9266)\\\" x=\\\"0 5.56 11.12 13.9 16.18\\\">until</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.9383 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 359.6248 105.9266)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.7478 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 379.4343 105.9266)\\\" x=\\\"0 3.33 8.89 13.89 19.45 24.45\\\">revoke</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 409.449 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 413.1354 105.9266)\\\" x=\\\"0 2.28 5.06\\\">it.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 420.9723 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 424.6588 105.9266)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 442.4518 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 446.1382 105.9266)\\\" x=\\\"0 8.33 13.89 18.89\\\">must</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.8082 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 471.4946 105.9266)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29\\\">provide</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 504.3511 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 508.0375 105.9266)\\\" x=\\\"0 5.56\\\">at</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 516.3774 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 520.0639 105.9266)\\\" x=\\\"0 2.28 7.84 13.4 18.4\\\">least</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 541.2455 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 544.932 105.9266)\\\" x=\\\"0 2.78 8.34 11.67 17.23\\\">three</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.7249 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 94.6082)\\\" x=\\\"0 5.56 11.12 16.12 21.12 23.03 25.69 31.25 36.81 39.59 41.87 46.87 52.43 55.09 57.87 63.43 66.09 71.09 76.65 82.21 87.21 92.77 95.05 97.83 100.49 107.71 113.27 115.55 117.83 120.49 126.05 128.83 131.49 134.82 140.38 145.94 151.5 154.83 157.49 163.05 168.61 174.17 177.5 183.06 188.62 194.18 199.74 202.4 207.96 210.74 213.4 215.68 221.24 226.8 231.8 234.58 237.24 240.02 245.58 248.91 254.47 260.03 262.69 268.25 273.81 278.81 283.81 286.47 292.03 297.59 300.37 305.93 309.26 314.82 317.48 320.26 325.82 331.38 334.04 339.6 342.93 348.49 354.05 359.61 364.61 370.17 375.73 378.39 383.95 386.73 389.51 395.07 400.07 402.85 405.13 410.13 415.69 418.35 423.91 429.47 432.25 437.81 440.47 446.03 448.81 451.47 454.25 459.81 465.37 468.03 470.81 476.37 479.7 488.03 490.31 495.87 501.43 504.21 506.49 512.05 517.61\\\">days&apos; notice to cancel. Call at (100) 000-0006 at least three days before the proposed effective date of the termination.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 81.2898)\\\" x=\\\"0 7.78 10.56 16.12 21.68 25.01 27.67 34.89 40.45 46.01 51.57 57.13 62.69 67.69 70.47 73.13 80.35 85.91 88.69 90.97 93.75 98.75 101.41 106.97 111.97 114.63 120.19 122.97 125.63 127.91 133.47 139.03 144.03 146.81 149.47 152.25 154.53 159.53 165.09 167.75 173.31 178.87 183.87 186.15 191.71 197.27 202.27 207.27 209.93 215.49 221.05 226.05 231.05 233.71 239.27 244.83 247.61 253.17 256.5 262.06 264.72 267.5 273.06 278.62 281.28 286.84 292.4 297.4 300.18 302.84 308.4 310.68 312.96 315.24 317.52 323.08 328.64 331.3 336.86 342.42 345.2 350.76 353.42 355.7 358.48 361.14 366.14 371.7 377.26 380.59 383.25 388.81 393.81 398.81 404.37 409.93 415.49 418.27 420.93 423.21 428.77 431.55 437.11 440.44 448.77 454.33 457.11 459.39 464.95 470.51 473.17 478.17 483.73 489.29 494.85 500.41 505.97 510.97\\\">Other Changes. Notify us at least five business days before the next billing date if your account information changes.</text></g><clipPath id=\\\"clip2-4\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip2-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.775 345.3758 L 573.625 345.3758 L 573.625 344.3758 L 34.775 344.3758 L 34.775 345.3758 z \\\"/><path clip-path=\\\"url(#clip2-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.625 344.3758 L 573.625 344.3758 L 573.625 329.0574 L 572.625 329.0574 L 572.625 344.3758 z \\\"/><path clip-path=\\\"url(#clip2-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.775 344.3758 L 35.775 344.3758 L 35.775 329.0574 L 34.775 329.0574 L 34.775 344.3758 z \\\"/><path clip-path=\\\"url(#clip2-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.775 329.0574 L 573.625 329.0574 L 573.625 328.0574 L 34.775 328.0574 L 34.775 329.0574 z \\\"/><path clip-path=\\\"url(#clip2-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.775 79.6902 L 573.625 79.6902 L 573.625 78.6902 L 34.775 78.6902 L 34.775 79.6902 z \\\"/><path clip-path=\\\"url(#clip2-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.625 328.0574 L 573.625 328.0574 L 573.625 79.6902 L 572.625 79.6902 L 572.625 328.0574 z \\\"/><path clip-path=\\\"url(#clip2-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.775 328.0574 L 35.775 328.0574 L 35.775 79.6902 L 34.775 79.6902 L 34.775 328.0574 z \\\"/><g clip-path=\\\"url(#clip2-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 36.5264)\\\" x=\\\"0 6.498 11.997 14.391 16.785 21.789 26.793 29.295 34.299 39.303 44.307 504 506.3906 508.7812 511.1719 513.5625 515.9531 518.3438 520.7344 523.125 525.5156\\\">UT  07/2019          </text></g><g clip-path=\\\"url(#clip2-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 26.3398)\\\" x=\\\"0 6.003 11.007 16.011 21.015\\\">Page </text></g><g clip-path=\\\"url(#clip2-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 55.8097 26.3398)\\\" x=\\\"0\\\">3</text></g><g clip-path=\\\"url(#clip2-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.815 26.3398)\\\" x=\\\"0 2.394 7.398 9.9\\\"> of </text></g><g clip-path=\\\"url(#clip2-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 73.1021 26.3398)\\\" x=\\\"0\\\">7</text></g><g clip-path=\\\"url(#clip2-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#d9d9d9\\\" style=\\\"font-family:f2-0; font-size:54pt; white-space:pre\\\" transform=\\\"matrix(0.707 0.707 0.707 -0.707 135.6027 198.5094)\\\" x=\\\"0 56.016 96.048 136.08 176.112 216.144 236.16 284.184 324.216 344.232 364.248 416.232 456.264 480.24\\\">Qoppa Software</text></g><g clip-path=\\\"url(#clip2-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#002ba6\\\" style=\\\"font-family:f2-0; font-size:9pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.932 772)\\\" x=\\\"0 9.336 16.008 22.68 29.352 36.024 39.36 47.364 54.036 57.372 60.708 69.372 76.044 80.04 86.712 90.048 94.044 97.38 104.712 111.384 115.38 118.716 126.72 132.72 139.392 142.056 148.728 155.4 158.736 161.4 168.072 174.744 178.08 187.416 194.088 196.752 202.752 206.088 210.084 213.42 220.092 223.428 226.764 233.436 239.436 242.772 246.108 249.444 258.108 266.772 275.436 278.772 285.444 292.116 298.788 305.46 312.132 315.468 321.468 328.14\\\">Qoppa Software - For Evaluation Only - https://www.qoppa.com</text></g></g></svg></svg></g></svg><br>\\n<?xml version='1.0' encoding='UTF-8'?><svg id=\\\"qoppa_document\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" version=\\\"1.1\\\" xmlns=\\\"http://www.w3.org/2000/svg\\\" xmlns:xlink=\\\"http://www.w3.org/1999/xlink\\\"><!-- jPDFWeb v2019R1.03 - Demo Version --><style>title p { display: block; }</style><g id=\\\"qoppa_viewxform\\\" transform=\\\"matrix(1 0 0 1 0 0)\\\"><style type=\\\"text/css\\\">@font-face {font-family:f3-0;src:url(\\\"data:application/font-woff;charset=utf-8;base64,d09GRgABAAAAAAp8AAoAAAAADcAAAQABAAAAAAAAAAAAAAAAAAAAAAAAAABPUy8yAAAA9AAAADcAAABWWd9ZMmNtYXAAAAEsAAAAbAAAAIwCiwM0Z2x5ZgAAAZgAAAdLAAAJ6ArdyapoZWFkAAAI5AAAADEAAAA2GI9khmhoZWEAAAkYAAAAIAAAACQGNwJvaG10eAAACTgAAABeAAAAgDkXBShsb2NhAAAJmAAAAEIAAABCI1gg9G1heHAAAAncAAAAGAAAACAAIwA9bmFtZQAACfQAAAB8AAAA5g9SKYxwb3N0AAAKcAAAAAwAAAAgAAMAAHicY2Bk8mKcwMDKwMDUxbSbARlwMeogc/8DATI/MCDAkUEBCG8y3fyvxxDFdJPhEkwOAMlSDLoAeJxjYGBgZGAGYgYGHgYWhgYgLcMgABThYVBg0GewYnBj8GcIZAhmSGRIZkhjyGQoZ6j8/x+oSoFBFyjriiSbypDBkAOS/f/4//X/Z/8f/r/7/67/O/+v+b/6/6r/K/8v/78MbA9OAAAj1iOqeJxtVktsG9cVnXuHpChTEr/DjyRSHI44/IlUpeGQkvgTbepPkZJlUTQlWVLNWq2h2rHrohsv4iJo4P6SOqmRxIukDYqiWRTtJmgBN0CCBu1CRhZd1E5bdFOgdtuVG7SAAY16Z0gmClAOMPPmzX33nnfueUdigPEzf4QEjDIswwDHy5BQnsJovc7QK9Og+3tMU/2W5gT5vSb91Hnm+DE48VCd5+wS+9HcR27829EgRWNrDRroWxfD2GWJs9LKRrMJP242lQ9a66sUeInWm7SancuK68p5+K5yA3519AQP1/+0/nSdgih+heIlGnZ/Gm8VrCgpN2FF+cUOHtb+sq7cV0OpfuL4E/wzPmTMzBBFO11Ol6HL0CWG6EqntDHNSal0Kk0z8P07W9usbnfv7t3tbYT6xtuXTxcRSzPPXcvnAUslfIjN5i/f2bmA7MUv/fT1y5fLUC7f+db8Aq6svvjCwgKj1Rw9/j0+wUfMIDN5oqb61ArTi6A+qahLpA8G+jDeAhBKq1EqmpSK5m5jk0WfL+Hz+Ya80aAoJKKR9A8IIjQ2X9uanWMxm7k96HSa3S63yxUIBPiwkwPIZvCRbn//JxdmZkdcVktP0eLiBtzdp/Bi890fXrq0DDMzr3/93DnWoDeaTaf0M91Wa38glz17ZW1N63P8+N+4T5yN0QuBEsQ2+vZOQoE20LSzjbq9m/Q4BcB/DInEcm58nGUnJ4vNtbN6Q21j58ZGravRVSisnU4m2e7trYWyLCMuLlz9yuKCEZ7N8Ty43cW009nriMZuXB/7AkxMPW/cCooIPt9M2eOxcpHIxs7YGMjyV1WOReqrHh1MjMmQrlQqCVAXp3IpnCBZ1rikS1YnA7QRvdoL9XK0+i5zxenaQSIBaDDYt7r1OhhNJKbOjcQwl6vFQyEv+PlMjueNoIv4+WhUFNE7OLoXDML1XZ5HiEaXngwT82arxRK22TASmykHg106o7FbjLuc4HInL/ZRPb3VIosODrNZjePg8SfwT7QxfItjFa8GXsV6UqKaIOB7vT6fND88jEP+hsz7DRuWqUztQNXk1OTzSxNpC+xJA/2AqfTGcjbLQnB4wrRNJMLs3IsHy2UdRCKrLW2Kx0+JNydjZAKfVTarIpXG26UFQ7u0yim8g+HwdCESBoMhFpsfDQSs5/vzhfWtuXkdCe3WfLWCIBcjEcRYLDdfH4l7vWOmRljEfOHefqWi1+VzP6f9GqlamjQ1cEJTnMQJdHIFWZLFjnqiRrPZ1s85oNmsVyokigtWj9uGt1hA6O2LT5WUPHxQWuXjCT2yekbj8gzd/kHn3UVKsKbanFHiTstpeM8nhqS1xCjUYdA7nhdFqOOhcszbbQAj8fPKj2Az7vPRVteVv1ImVHMy9zRPU32LgKoJz9Tph4fNLx49I0vr1G7HMZJVogg8PErSfJFhCLKNiWrzXAfVCXSpdtdpmGwNXdZidUAU87IgWAbEYHExHCK8dkc6z/vrDk6a9fpIpQthpxPA7YlEPG7A+Mhp5TtQj/F+xFAorbwPF8PeQWRHR/PKI8JR0rixadxwn+dGaHPzylAonKvSCagD9S4fVLkxLERUJ4kn1pU3YSXj84rBivIHbdPI8HT2uinn5zxVOOGpXOdsqZ7qvZHNqN555WqhAJjJ3FwUxXB4aWVYgHAIbexS+ca3z5yBublvXl1eLmEqtbGblNlsZrmRkluaLR1PooHqOZjhzi7GTxg5iUgduxwtfmUi9lUuGJzYzuVZmMo8N8LzzvrH84EAHYvZJf8Q+P1oKAVIbKXS7YNqRQc2u1fBB5O6YrFSkyRgC/nyYjbTPi+T8LhTWy/I7aKqr0jqzmVJc/DO0aVOwuO6i+dj1zJTmM9dSAeDzpWPV6gkDPnLM8FhCAR+p3hJd7pK9eB2qQQuZ6A0qctkF8v5AguSVKsUiy1tTdOtQbW5k73r/AlRdfMyN9Af8zg4u89iMXMJj4caV4263QBGo2lV9TI2FksrD7W+ATNEnvOA8pGv25NtErs6Qjhh8F3/z+DjSWmvkkxa6jreH40KAqLb4/za3CySo+3WJib6NrqDQXlEGEb9VGY6GwrDC9lwGHm+2pOwO/r6Iv6eXt2gb6i2Go1AKFzvzbvdCA7HWNRitph5P+GzHv8XevG+6hF2zRscbQgaKNWVNK/4Wb1u7uNOdRtNPY4+s308IMD0NN5/t6S8HzxlQgBgqyw90OOpwmLpVotL2vvfiQfNI9RuqXnpwH7a0bT1DXS6StZ0yliv9ofDU3uRKKJB+XWSrN4w0H8TBo6eVUIeD7CSVIFNytlLiR9TTmJ3ACVWYC+//Grjt2c/pFW78NZnHqEjIT2glx4tbgAo1AQCu3P9SmP/G7W3N/e/vPUWrbkEbyjX4KWjZ/CScq2z1nKcgH+1cNO6NtZRaP/TUiAwdnjl/CNOGC5ZTD193b09Jotot5u4D3fuoOHoN7lYDIFl2TUdIthtQxNUaOt/bprEGQB4nGNgZGBgAOL9uy5diOe3+crAzfwCKMJw21zgLIL+r8fMyHQTqI6DgQkkCgBowQuoAAAAeJxjYGRgYLr5X48hitmRgeH/fWZGBqAIClAAAHbABKt4nGNggABGXyAWA9MKQDoKzAbSTLMZ/JmSGQKYuRj0QRjI12XSYVBj/MKgDqTVgWo4gLQzwz0IZnZkcATyXYBYGUqrAc10AKqXB6oVBPKdgGxepksMLEBaAABlFhBuAAAAAAAAAAAAAAAAAA4AGgAoADoAUgBoAKIBAgFUAbQB8AIsAloChAKYAqQC6AMSA0oDiAPGA+4EPgRsBJYEqgTIBPQAAHicY2BkYGBQYLBhYGIAAUYGNAAACboAYXicdcq9CoJgFIfxx+9anRobHCMUoguohq7AIVrEQoMXDROhpWvvD50xObyHH897gIQLAV64BFK9nz05NfssyMwBKzbmUD6ZI/lqjuWRIz1P3gw8aGhVztxxTNqjWk3FQTeO25+fDzv2s71UGXip9XSsKdiSa2buv2bjHPt4nGNgZsALAAB9AAQ=\\\");}@font-face {font-family:f3-1;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f3-2;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}</style><svg id=\\\"qoppa_page_p3\\\" class=\\\"qoppa_page\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\"><rect class=\\\"qoppa_pageborder\\\" x=\\\"0.5pt\\\" y=\\\"0.5pt\\\" width=\\\"611pt\\\" height=\\\"791pt\\\" fill=\\\"none\\\" /><svg class=\\\"qoppa_pagecontents\\\" x=\\\"0pt\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" viewBox=\\\"0 0 612 792\\\" ><g class=\\\"qoppa_contentstream\\\" transform=\\\"matrix(1 0 0 -1 0 792)\\\" fill=\\\"black\\\" stroke=\\\"black\\\" stroke-width=\\\"1\\\" stroke-linecap=\\\"butt\\\" stroke-linejoin=\\\"miter\\\" stroke-miterlimit=\\\"10\\\"><clipPath id=\\\"clip3-1\\\"><path d=\\\"M 35 730 L 574 730 L 574 770 L 35 770 L 35 730 z \\\"/></clipPath><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 757.4812)\\\" x=\\\"0 6.6699 11.6699 16.6699 22.2314 27.793 35.0146 37.2949 42.8565 48.418 53.9795 62.3096 67.8711 73.4326 76.2109 81.2109\\\">Acknowledgments.</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 124.6643 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 127.3205 757.4812)\\\" x=\\\"0 6.6699 12.2314\\\">You</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 145.1135 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 147.7697 757.4812)\\\" x=\\\"0 3.3301 8.8916 14.4531\\\">read</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 167.7844 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 170.4406 757.4812)\\\" x=\\\"0 2.7783 8.3398 10.6201\\\">this</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 186.0607 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 188.717 757.4812)\\\" x=\\\"0 5.5615 11.1231 13.9014 19.4629 25.0244 28.3545 30.6348 35.6348 41.1963 43.9746 46.2549 51.8164\\\">authorization</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 246.0949 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 248.7512 757.4812)\\\" x=\\\"0 2.2803\\\">in</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.593 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 259.2492 757.4812)\\\" x=\\\"0 5.5615 8.8916 11.1719 16.7334 19.5117\\\">print,</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.5393 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 284.1955 757.4812)\\\" x=\\\"0 5.5615\\\">on</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 295.3186 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 297.9748 757.4812)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 303.5363 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 306.1926 757.4812)\\\" x=\\\"0 5 10.5615 18.8916 24.4531 30.0146 32.793 38.3545\\\">computer</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 347.8771 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 350.5334 757.4812)\\\" x=\\\"0 5 10 13.3301 18.8916 24.4531 30.0147\\\">screen,</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.3264 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 385.9826 757.4812)\\\" x=\\\"0 5.5615\\\">or</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 394.8742 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 397.5305 757.4812)\\\" x=\\\"0 5.5615 8.3398 13.9014 19.4629\\\">other</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 420.3234 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 422.9797 757.4812)\\\" x=\\\"0 5 7.2803 12.2803 17.8418 23.4033\\\">visual</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 448.6633 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 451.3195 757.4812)\\\" x=\\\"0 5.5615 7.8418 12.8418 18.4033 20.6836 26.2451 31.2451\\\">display.</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 485.343 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 487.9992 757.4812)\\\" x=\\\"0 6.6699 12.2314\\\">You</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 505.7922 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 508.4484 757.4812)\\\" x=\\\"0 5.5615 10.5615 15.5615 21.1231 26.6846 33.9062 36.1865 41.7481 47.3096 52.8711\\\">acknowledge</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 566.8811 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 746.1629)\\\" x=\\\"0 5.5615 11.1231\\\">and</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 57.3596 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 60.0158 746.1629)\\\" x=\\\"0 5.5615 11.123 14.4531 20.0146\\\">agree</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 85.592 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 88.2482 746.1629)\\\" x=\\\"0 2.7783\\\">to</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 96.5881 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 99.2443 746.1629)\\\" x=\\\"0 2.7783 8.3398\\\">the</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 113.1457 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 115.802 746.1629)\\\" x=\\\"0 2.7783 8.3398 10.6201 12.9004 18.4619 25.6836 27.9639 33.5254 39.0869\\\">following:</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 157.6672 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 160.3234 746.1629)\\\" x=\\\"0 2.7783 8.3398 10.6201\\\">this</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 175.9436 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 178.5998 746.1629)\\\" x=\\\"0 6.6699 13.8916\\\">ACH</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 199.7131 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 202.0693 746.1629)\\\" x=\\\"0 7.2217 12.7832 18.3447 20.625\\\">Debit</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.4727 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 227.8289 746.1629)\\\" x=\\\"0 6.6699 12.2314 15.0098 20.5713 26.1328 29.4629 31.7432 36.7432 42.3047 45.083 47.3633 52.9248\\\">Authorization</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 286.3152 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 288.6715 746.1629)\\\" x=\\\"0 2.2803\\\">is</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 295.9518 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 298.308 746.1629)\\\" x=\\\"0 5.5615 11.123\\\">not</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.2094 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 314.5656 746.1629)\\\" x=\\\"0 5.5615\\\">an</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 325.6887 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 328.0449 746.1629)\\\" x=\\\"0 2.2803 7.8418 12.8418 15.6201 18.9502 24.5117 32.8418 38.4033 43.9648\\\">instrument</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 374.7881 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 377.1443 746.1629)\\\" x=\\\"0 5.5615 11.123 16.123 21.6846 25.0146 30.5762 36.1377\\\">governed</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 418.8436 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 421.1998 746.1629)\\\" x=\\\"0 5.5615\\\">by</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 431.7613 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 434.1176 746.1629)\\\" x=\\\"0 6.6699 10 12.7783 15.0586 20.0586 22.3389\\\">Article</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 462.018 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 464.3742 746.1629)\\\" x=\\\"0\\\">3</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 469.9357 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 472.292 746.1629)\\\" x=\\\"0 5.5615\\\">of</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 480.6318 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 482.9881 746.1629)\\\" x=\\\"0 2.7783 8.3398\\\">the</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 496.8895 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 499.2457 746.1629)\\\" x=\\\"0 7.2217 12.7832 15.0635 17.8418 23.4033 26.7334\\\">Uniform</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 734.8445)\\\" x=\\\"0 7.2217 12.7832 21.1133 29.4434 35.0049 38.335 43.335 45.6152 51.1768\\\">Commercial</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 94.132 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 96.4883 734.8445)\\\" x=\\\"0 7.2217 12.7832 18.3447 23.9062\\\">Code.</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 123.1728 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 125.5291 734.8445)\\\" x=\\\"0 6.6699 10 12.2803 17.8418\\\">Print</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.1492 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.5055 734.8445)\\\" x=\\\"0 5.5615 11.1231\\\">and</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 165.19 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 167.5463 734.8445)\\\" x=\\\"0 3.3301 8.8916 11.6699 17.2314 19.5117\\\">retain</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 192.6195 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 194.9758 734.8445)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 200.5373 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 202.8936 734.8445)\\\" x=\\\"0 5.5615 11.123 14.4531\\\">hard</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 222.9082 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 225.2645 734.8445)\\\" x=\\\"0 5 10.5615 16.123\\\">copy</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 246.3875 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 248.7437 734.8445)\\\" x=\\\"0 5.5615\\\">or</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.6353 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 259.9916 734.8445)\\\" x=\\\"0 5.5615 7.8418 13.4033 18.4033 21.1816 24.5117 30.0733 35.6348 37.915\\\">electronic</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.9066 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 305.5629 734.8445)\\\" x=\\\"0 5 10.5615 16.123\\\">copy</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 326.6859 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 329.3422 734.8445)\\\" x=\\\"0 5.5615\\\">of</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 337.682 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 340.3383 734.8445)\\\" x=\\\"0 2.7783 8.3398 10.6201\\\">this</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.9584 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 358.6147 734.8445)\\\" x=\\\"0 6.6699 13.8916\\\">ACH</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 379.7279 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 382.0842 734.8445)\\\" x=\\\"0 7.2217 12.7832 18.3447 20.625\\\">Debit</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 405.4875 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.8438 734.8445)\\\" x=\\\"0 6.6699 12.2314 15.0098 20.5713 26.1328 29.4629 31.7432 36.7432 42.3047 45.083 47.3633 52.9248 58.4863\\\">Authorization.</text></g><clipPath id=\\\"clip3-2\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip3-2)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.775 770.2 L 573.625 770.2 L 573.625 769.2 L 34.775 769.2 L 34.775 770.2 z \\\"/><path clip-path=\\\"url(#clip3-2)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.775 731.2449 L 573.625 731.2449 L 573.625 730.2449 L 34.775 730.2449 L 34.775 731.2449 z \\\"/><path clip-path=\\\"url(#clip3-2)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.625 769.2 L 573.625 769.2 L 573.625 731.2449 L 572.625 731.2449 L 572.625 769.2 z \\\"/><path clip-path=\\\"url(#clip3-2)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.775 769.2 L 35.775 769.2 L 35.775 731.2449 L 34.775 731.2449 L 34.775 769.2 z \\\"/><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 718.5262)\\\" x=\\\"0 7.22 15 22.22 25.55 34.99 41.66 44.44 51.11 57.78 65 67.78 70.44 79.88 85.44 88.1 93.66 99.22 101.88 107.44 113 115.78 118.44 125.66 131.22 133.5 138.5 144.06 146.72 152.28 157.84 161.17 163.83 167.16 169.44 175 180.56 183.34 188.34 191 196.56 199.89 202.55 205.88 211.44 219.77 225.33 230.89 233.17 238.73 243.73 246.39 251.95 257.51 263.07 268.63 271.96 274.62 277.4 282.96 285.24 290.24 292.9 299.57 305.13 308.46 314.02 319.58 327.91 333.47 339.03 341.81 344.47 350.03 355.03 357.69 360.47 366.03 368.31 370.59 372.87 378.43 383.99 386.65 389.43 394.99 397.65 403.21 408.21 413.77 417.1 422.1 424.38 429.38 434.94 437.6 440.38 445.94 451.5 459.83 462.49 468.05 470.83 473.49 479.05 484.61 489.61 492.27 495.05 497.33 505.66 511.22\\\">NON-WAIVER. We do not waive our rights or remedies under this Agreement by failing to exercise them at any time.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 705.2078)\\\" x=\\\"0 7.22 15 23.33 31.66 38.88 46.1 48.88 56.1 62.77 68.88 71.66 78.88 86.66 89.32 98.76 101.54 107.65 114.87 117.53 124.2 131.98 139.2 141.98 144.64 151.86 158.53 164.09 169.65 172.31 179.53 186.2 193.42 201.2 208.42 215.64 218.42 225.64 233.42 236.2 238.86 242.19 247.75 253.31 258.87 262.2 264.86 270.42 275.98 281.54 284.87 290.43 295.99 301.55\\\">COMMUNICATING WITH YOU; CALL RECORDING: (100) 000-0006</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 691.8895)\\\" x=\\\"0 6.67 13.89 20 22.78 30\\\">ENTIRE</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 69.7699 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 74.2589 691.8895)\\\" x=\\\"0 6.67 14.45 21.67 28.34 35.01 43.34 50.01 57.23 63.34\\\">AGREEMENT,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 140.377 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 144.866 691.8895)\\\" x=\\\"0 7.22\\\">NO</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 159.866 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 164.3549 691.8895)\\\" x=\\\"0 6.67 13.89 21.11 23.89 30 32.78 40.56 47.78 54.45\\\">ADDITIONAL</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 224.3647 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 228.8536 691.8895)\\\" x=\\\"0 6.67 13.89 21.67 30 32.78 39.45 46.12 52.79\\\">PROMISES,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 284.42 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 288.9089 691.8895)\\\" x=\\\"0 9.44 16.66 19.44 25.55 31.66 38.33\\\">WRITTEN</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 334.4558 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.9447 691.8895)\\\" x=\\\"0 6.67 13.89\\\">AND</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 360.058 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 364.547 691.8895)\\\" x=\\\"0 6.67 9.45 17.23 24.45 31.12\\\">SIGNED</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.8868 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.3757 691.8895)\\\" x=\\\"0 7.22 14.44 21.11 28.33 36.11 42.78\\\">CHANGES</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.8289 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 461.3178 691.8895)\\\" x=\\\"0 7.78 15 20.56 27.23\\\">ONLY.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 491.3276 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 495.8165 691.8895)\\\" x=\\\"0 6.11 11.67 13.95\\\">This</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 514.7667 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 519.2556 691.8895)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 680.5711)\\\" x=\\\"0 2.78 8.34 13.9 19.46 22.24 27.8 33.36\\\">together</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 69.7943 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 72.8324 680.5711)\\\" x=\\\"0 7.22 9.5 12.28\\\">with</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 90.6742 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 93.7124 680.5711)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 107.6137 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 110.6518 680.5711)\\\" x=\\\"0 5.56 8.34 13.9 19.46\\\">other</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 133.4448 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 136.4829 680.5711)\\\" x=\\\"0 5.56 11.12 16.12 21.68 30.01 35.57 41.13 43.91\\\">documents</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 185.3989 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 188.437 680.5711)\\\" x=\\\"0 3.33 8.89 11.67 17.23 20.56 23.89 29.45\\\">referred</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 223.4517 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 226.4898 680.5711)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 234.8296 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 237.8677 680.5711)\\\" x=\\\"0 5.56 11.12 14.45 20.01 22.29 27.85\\\">herein,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 268.5025 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 271.5406 680.5711)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24 28.52 34.08\\\">including</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 311.189 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 314.2271 680.5711)\\\" x=\\\"0 5.56 11.12\\\">but</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 328.1285 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 331.1666 680.5711)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 345.068 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 348.1061 680.5711)\\\" x=\\\"0 2.28 4.56 12.89 15.17 17.95 23.51\\\">limited</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 377.1783 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 380.2165 680.5711)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.5563 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 391.5944 680.5711)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 411.0475 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 414.0856 680.5711)\\\" x=\\\"0 5.56 11.12 14.45 19.45 25.01 30.57 35.57\\\">purchase</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 455.2233 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 458.2614 680.5711)\\\" x=\\\"0 3.33 8.89 13.89 19.45 21.73 27.29\\\">receipt</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 488.3347 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 491.3728 680.5711)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 508.0574 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 511.0955 680.5711)\\\" x=\\\"0 2.78 5.06 10.62 16.18\\\">final</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.5574 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 532.5955 680.5711)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 669.2527)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 66.4545 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 69.6146 669.2527)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 86.2991 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 89.4592 669.2527)\\\" x=\\\"0 5 10 15.56 21.12 26.68 32.24 34.52 40.08\\\">schedule,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 132.3254 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 135.4855 669.2527)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 142.7658 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 145.9259 669.2527)\\\" x=\\\"0 5.56 11.12\\\">our</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.379 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 163.5391 669.2527)\\\" x=\\\"0 5.56 11.12 13.9 16.18 19.51\\\">entire</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 188.6123 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 191.7724 669.2527)\\\" x=\\\"0 5.56 11.12 14.45 20.01 25.57 33.9 39.46 45.02 47.8\\\">agreement.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 242.3583 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 245.5184 669.2527)\\\" x=\\\"0 9.44\\\">We</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 260.5184 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 263.6785 669.2527)\\\" x=\\\"0 5.56 11.12 16.12\\\">have</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 285.363 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 288.5231 669.2527)\\\" x=\\\"0 8.33 13.89 19.45\\\">made</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 313.5378 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 316.6978 669.2527)\\\" x=\\\"0 5.56\\\">no</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 327.8209 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 330.981 669.2527)\\\" x=\\\"0 5.56 8.89 14.45 22.78 25.06 30.06 35.62\\\">promises</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.606 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 374.766 669.2527)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.1059 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 386.266 669.2527)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.389 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 405.5491 669.2527)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.4504 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 422.6105 669.2527)\\\" x=\\\"0 5 10.56 16.12 18.9 24.46 26.74 32.3 37.86\\\">contained</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.0383 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 469.1983 669.2527)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 477.0401 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 480.2002 669.2527)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 495.8203 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 498.9804 669.2527)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 547.8964 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 551.0565 669.2527)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.9481 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 563.1082 669.2527)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 657.9344)\\\" x=\\\"0 5 10.56 15.56 21.12 23.78 29.34 32.12 37.68 43.24 46.57 49.23 54.79 60.35 65.35 70.91 79.24 84.8 90.36 93.14 98.14 100.92 103.58 110.25 115.81 120.81 123.47 128.47 134.03 139.59 145.15 150.71 156.27 158.93 161.71 167.27 169.93 172.71 178.27 180.55 185.55 188.21 194.88 200.44 203.77 209.33 214.89 223.22 228.78 234.34 237.12 239.78 248.11 253.67 258.67 261.45 264.11 269.67 275.23 277.89 285.11 288.44 290.72 293.5 296.28 301.84 307.4 310.06 315.62 321.18 326.74 329.4 334.4 336.68 342.24 347.8 353.36 358.92 361.58 367.14 372.14 374.8 379.8 385.36 390.92 393.58 399.14 404.7 410.26 412.92 418.48 423.48\\\">such other documents. Any change to this Agreement must be written and signed by you and us.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 644.616)\\\" x=\\\"0 7.22 14.44 21.11 27.22 35 43.33 50\\\">CUSTOMER</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 90.3217 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 93.5458 644.616)\\\" x=\\\"0 8.33 16.11 23.33 26.11 32.22 35 41.67\\\">MODIFIED</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 142.4325 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 145.6566 644.616)\\\" x=\\\"0 6.67 13.34 20.01 28.34 35.01 42.23\\\">PAYMENT</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 193.9964 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 197.2205 644.616)\\\" x=\\\"0 7.22 13.89 20 26.67\\\">DATES</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 230.5603 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 233.7844 644.616)\\\" x=\\\"0 6.67 13.89\\\">AND</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 254.8977 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 258.1218 644.616)\\\" x=\\\"0 6.11 13.33 20 27.78 35 41.67 48.89 56.11 62.78\\\">FREQUENCY.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 323.6833 644.616)\\\" x=\\\"0 3.2241\\\">  </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 330.1315 644.616)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 347.3629 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 350.587 644.616)\\\" x=\\\"0 5.56 11.12 13.9 19.46\\\">dates</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.0499 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 378.274 644.616)\\\" x=\\\"0 2.78 8.34 11.67\\\">for,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 392.7222 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 395.9463 644.616)\\\" x=\\\"0 2.78 6.11 11.67 17.23 22.79 28.35 33.91 38.91\\\">frequency</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 439.8623 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 443.0864 644.616)\\\" x=\\\"0 5.56 8.34\\\">of,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.2046 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 457.4286 644.616)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57\\\">number</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 491.3349 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 494.559 644.616)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 502.8988 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 506.1229 644.616)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 522.8075 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 526.0316 644.616)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.386 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 562.6101 644.616)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 633.2977)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 68.1781 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 72.0521 633.2977)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46\\\">Payments</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 116.515 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 120.389 633.2977)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 128.2308 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 132.1048 633.2977)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 147.7249 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 151.5989 633.2977)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 200.5149 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 204.3889 633.2977)\\\" x=\\\"0 5.56 8.89\\\">are</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 218.842 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 222.716 633.2977)\\\" x=\\\"0 5.56 11.12 16.12 21.68\\\">based</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 249.9621 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 253.8361 633.2977)\\\" x=\\\"0 5.56 11.12 16.68\\\">upon</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.0822 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 279.9562 633.2977)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 293.8575 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 297.7315 633.2977)\\\" x=\\\"0 5.56 11.12 16.12 21.68 27.24\\\">payday</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.9776 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 333.8516 633.2977)\\\" x=\\\"0 2.28 7.84 10.62 16.18 19.51 27.84 33.4 36.18 38.46 44.02\\\">information</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.4366 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 387.3105 633.2977)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.4336 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.3076 633.2977)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29 32.85\\\">provided</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 445.7255 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 449.5995 633.2977)\\\" x=\\\"0 7.22 9.5 12.28\\\">with</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.4413 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 471.3153 633.2977)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 490.7684 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 494.6424 633.2977)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 34.58 36.86 42.42 47.98\\\">application.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 545.409 633.2977)\\\" x=\\\"0 3.874\\\">  </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.157 633.2977)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 621.9793)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 51.9916 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 55.3463 621.9793)\\\" x=\\\"0 5 10.56 16.12 18.9 24.46 29.46\\\">contact</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 87.5875 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 90.9422 621.9793)\\\" x=\\\"0 5.56 11.12\\\">our</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 105.3953 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 108.75 621.9793)\\\" x=\\\"0 5 10.56 15.56 18.34 23.9 32.23 37.79\\\">customer</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 149.873 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 153.2277 621.9793)\\\" x=\\\"0 5 10.56 13.89 18.89 21.17 26.17\\\">service</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 184.9611 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 188.3158 621.9793)\\\" x=\\\"0 5.56 11.12 16.68 22.24 25.57 28.35 36.68 42.24 47.8\\\">department</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.9017 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 242.2564 621.9793)\\\" x=\\\"0 5.56 8.89\\\">or,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 253.9263 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 257.281 621.9793)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.3396 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 265.6942 621.9793)\\\" x=\\\"0 5.56 10.56 16.12 18.4 20.68 26.24 31.8 34.08\\\">available</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 305.3427 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 308.6973 621.9793)\\\" x=\\\"0 5.56 10.56\\\">use</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 324.8204 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 328.1751 621.9793)\\\" x=\\\"0 5.56 11.12 13.9 19.46 27.79 33.35 36.13 41.69\\\">automated</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.4309 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 378.7856 621.9793)\\\" x=\\\"0 8.33 13.89 19.45 25.01 30.01\\\">means,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 411.5786 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 414.9332 621.9793)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.9918 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 423.3465 621.9793)\\\" x=\\\"0 5.56 10.56 16.12 18.4 20.68 26.24 31.8 34.08 39.64\\\">available,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 465.7733 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 469.128 621.9793)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 477.4678 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 480.8225 621.9793)\\\" x=\\\"0 3.33 8.89 14.45 20.01 25.57 30.57\\\">request</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 514.177 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 517.5316 621.9793)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 523.0932 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 526.4478 621.9793)\\\" x=\\\"0 5 10.56 16.12 21.68 27.24\\\">change</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.2555 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 562.6101 621.9793)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 610.6609)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.0014 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 51.6173 610.6609)\\\" x=\\\"0 5 10 15.56 21.12 26.68 32.24 34.52 40.08\\\">scheduled</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 97.2667 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 101.8826 610.6609)\\\" x=\\\"0 5.56 11.12 13.9 19.46\\\">dates</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 126.3454 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 130.9613 610.6609)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 142.6313 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 147.2471 610.6609)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 163.9317 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 168.5476 610.6609)\\\" x=\\\"0 2.78 6.11 11.67 17.23 22.79 28.35 33.91 38.91\\\">frequency</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 212.4636 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 217.0795 610.6609)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.4193 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 230.0352 610.6609)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 265.1134 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 269.7292 610.6609)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46 44.46\\\">Payments.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 316.9705 610.6609)\\\" x=\\\"0 4.6159\\\">  </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 326.2022 610.6609)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 331.7589 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 336.3748 610.6609)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 349.158 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 353.7739 610.6609)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.68\\\">accept</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.2367 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 387.8526 610.6609)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.4142 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 398.03 610.6609)\\\" x=\\\"0 5 10.56 16.12 21.68 27.24\\\">change</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.8377 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 435.4535 610.6609)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 443.2953 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 447.9112 610.6609)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 461.8126 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 466.4285 610.6609)\\\" x=\\\"0 5 10 15.56 21.12 26.68 32.24 34.52 40.08\\\">scheduled</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.0779 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 516.6938 610.6609)\\\" x=\\\"0 5.56 11.12 13.9 19.46\\\">dates</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 541.1567 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 545.7726 610.6609)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 557.4425 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 562.0584 610.6609)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 599.3426)\\\" x=\\\"0 2.78 6.11 11.67 17.23 22.79 28.35 33.91 38.91\\\">frequency</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 77.016 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 80.7576 599.3426)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 89.0974 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 92.839 599.3426)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 127.9171 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 131.6587 599.3426)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46 44.46\\\">Payments,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 178.8999 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 182.6415 599.3426)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 196.5429 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 200.2844 599.3426)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.6389 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 237.3805 599.3426)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.7204 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 249.4619 599.3426)\\\" x=\\\"0 5.56 11.12 16.12\\\">each</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 271.1465 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 274.8881 599.3426)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 309.9662 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 313.7078 599.3426)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68\\\">Payment</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 353.1707 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 356.9123 599.3426)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 370.9748 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 374.7163 599.3426)\\\" x=\\\"0 5.56 11.12 13.9 19.46 27.79 33.35 36.13 38.41 43.41 48.97 51.25 53.53\\\">automatically</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 433.2515 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 436.9931 599.3426)\\\" x=\\\"0 5.56\\\">be</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 448.1161 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 451.8577 599.3426)\\\" x=\\\"0 8.33 13.89 19.45 21.73 24.51 26.79 32.35\\\">modified</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.7727 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 493.5143 599.3426)\\\" x=\\\"0 5\\\">so</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 504.0758 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 507.8174 599.3426)\\\" x=\\\"0 2.78 8.34 13.9\\\">that</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 524.4971 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 528.2387 599.3426)\\\" x=\\\"0 2.78 8.34 13.9\\\">that</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 544.9184 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 548.6599 599.3426)\\\" x=\\\"0 6.11 11.67 14.45 20.01\\\">Total</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 588.0242)\\\" x=\\\"0 7.22 12.78 17.78 20.56\\\">Cost,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 56.4398 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 60.6221 588.0242)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 77.3067 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.489 588.0242)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 95.3903 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 99.5726 588.0242)\\\" x=\\\"0 5.56 11.12 14.45 16.73 22.29\\\">period</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 127.4291 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 131.6113 588.0242)\\\" x=\\\"0 5.56 10.56 16.12\\\">over</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 151.0645 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 155.2467 588.0242)\\\" x=\\\"0 7.22 12.78 15.06 20.06\\\">which</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 180.8717 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 185.054 588.0242)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 198.9554 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 203.1377 588.0242)\\\" x=\\\"0 6.11 11.67 14.45 20.01\\\">Total</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.4277 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 229.61 588.0242)\\\" x=\\\"0 7.22 12.78 17.78\\\">Cost</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 250.1715 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 254.3538 588.0242)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 261.6341 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 265.8163 588.0242)\\\" x=\\\"0 5.56 11.12 13.4 18.96\\\">paid,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 287.5595 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 291.7418 588.0242)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 305.8043 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 309.9866 588.0242)\\\" x=\\\"0 3.33 8.89 17.22 22.78 25.06\\\">remain</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 340.6116 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 344.7938 588.0242)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 358.6952 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 362.8775 588.0242)\\\" x=\\\"0 5 10.56 18.89\\\">same</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 387.3306 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 391.5129 588.0242)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.0744 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 406.2567 588.0242)\\\" x=\\\"0 5.56 8.89 11.17 16.73\\\">prior</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 426.3202 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 430.5025 588.0242)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 438.8423 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 443.0246 588.0242)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.9259 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 461.1082 588.0242)\\\" x=\\\"0 3.33 8.89 14.45 20.01 25.57 30.57 33.35 38.91\\\">requested</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 505.5858 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 509.768 588.0242)\\\" x=\\\"0 5 10.56 16.12 21.68 27.24 32.8\\\">change.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 545.354 588.0242)\\\" x=\\\"0 4.1823\\\">  </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.7185 588.0242)\\\" x=\\\"0 6.67 12.23\\\">Any</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 576.7059)\\\" x=\\\"0 3.33 8.89 11.67 17.23 22.79 27.79 33.35\\\">refences</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 71.4545 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 75.2825 576.7059)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 83.1243 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 86.9523 576.7059)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 102.5725 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 106.4005 576.7059)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 155.3165 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 159.1445 576.7059)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 167.4844 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 171.3124 576.7059)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 185.2138 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 189.0418 576.7059)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57 33.9\\\">number,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.7264 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 229.5544 576.7059)\\\" x=\\\"0 2.78 6.11 11.67 17.23 22.79 28.35 33.91 38.91 43.91\\\">frequency,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.2488 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 280.0768 576.7059)\\\" x=\\\"0 2.78 5.06 13.39 15.67 21.23\\\">timing</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 306.8688 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 310.6968 576.7059)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 327.3814 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 331.2094 576.7059)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 364.5639 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 368.3919 576.7059)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 376.7318 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 380.5598 576.7059)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 415.6379 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 419.466 576.7059)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46\\\">Payments</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 463.9289 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 467.7569 576.7059)\\\" x=\\\"0 3.33 8.89 11.67 17.23 20.56\\\">refers</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 493.3184 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 497.1465 576.7059)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 505.4863 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 509.3143 576.7059)\\\" x=\\\"0 5 10.56 15.56\\\">such</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 530.4374 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 534.2654 576.7059)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57 33.9\\\">number,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 565.3875)\\\" x=\\\"0 2.78 6.11 11.67 17.23 22.79 28.35 33.91 38.91 43.91 46.69 49.35 52.13 54.41 62.74 68.3 70.96 76.52 82.08 87.64 90.3 95.86 104.19 109.75 115.31 120.87 123.65 126.31 131.87 136.87 139.53 147.86 153.42 158.42 161.08 166.64 172.2 174.86 183.19 188.75 194.31 196.59 199.37 201.65 207.21 212.77 215.43 220.99 225.99 228.65 235.32 240.88 246.44 252 254.66 260.22 263 265.66 270.66 276.22 281.78 285.11 287.77 291.1 296.66 302.22 307.78 313.34 318.34 321.12\\\">frequency, time and amount as may be modified by Snap at your request.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 552.0691)\\\" x=\\\"0 6.67 13.34 20.01 26.68 33.9 40.57 47.24 50.02 55.58 58.36 64.47 71.14\\\">SEVERABILITY.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 107.016 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 110.2288 552.0691)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 115.7855 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 118.9983 552.0691)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 124.5598 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 127.7726 552.0691)\\\" x=\\\"0 5 10.56 16.12 19.45\\\">court</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 150.004 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 153.2169 552.0691)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 162.1085 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 165.3213 552.0691)\\\" x=\\\"0 5.56 8.34 13.9 19.46\\\">other</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 188.1142 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 191.327 552.0691)\\\" x=\\\"0 5.56 7.84 12.84 18.4 23.96 26.74\\\">dispute</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 223.6317 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 226.8445 552.0691)\\\" x=\\\"0 3.33 8.89 13.89 19.45 21.73 27.29 30.07 32.35 37.91\\\">resolution</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 270.3211 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 273.5339 552.0691)\\\" x=\\\"0 5.56 11.12 16.68\\\">body</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 295.2185 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 298.4313 552.0691)\\\" x=\\\"0 2.78 5.06 10.62 16.18\\\">finds</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.6129 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 322.8257 552.0691)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.9488 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 342.1616 552.0691)\\\" x=\\\"0 5.56 11.12 14.45\\\">part</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.393 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 362.6058 552.0691)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 370.9457 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 374.1585 552.0691)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 389.7786 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 392.9914 552.0691)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 441.9074 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 445.1202 552.0691)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 453.4601 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 456.6729 552.0691)\\\" x=\\\"0 5.56\\\">be</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.7959 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 471.0087 552.0691)\\\" x=\\\"0 5 10.56 12.84\\\">void</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.4121 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 492.6249 552.0691)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.5165 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 504.7293 552.0691)\\\" x=\\\"0 5.56 11.12 16.68 22.24 25.02 30.58 33.91 38.91 44.47 50.03 55.59 57.87 63.43\\\">u* D E M O *e,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 540.7508)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 48.7201 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 53.1394 540.7508)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 102.0554 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 106.4747 540.7508)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 113.755 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 118.1743 540.7508)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 126.5142 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 130.9335 540.7508)\\\" x=\\\"0 5.56\\\">be</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 142.0565 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 146.4758 540.7508)\\\" x=\\\"0 3.33 8.89 14.45\\\">read</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 166.4905 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 170.9097 540.7508)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 181.4713 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 185.8906 540.7508)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 190.9492 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 195.3685 540.7508)\\\" x=\\\"0 2.78 8.34 13.9\\\">that</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 212.0482 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 216.4675 540.7508)\\\" x=\\\"0 5.56 11.12 14.45\\\">part</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.6989 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 238.1182 540.7508)\\\" x=\\\"0 7.22 12.78 16.11\\\">were</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.793 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 264.2123 540.7508)\\\" x=\\\"0 5.56 11.12 16.12 21.68\\\">never</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 289.227 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 293.6463 540.7508)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.2078 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 303.6271 540.7508)\\\" x=\\\"0 5.56 11.12 14.45\\\">part</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 320.8585 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 325.2778 540.7508)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 333.6177 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.037 540.7508)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 353.6571 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 358.0764 540.7508)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 409.7707 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 414.19 540.7508)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 431.4215 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 435.8408 540.7508)\\\" x=\\\"0 3.33 8.89 13.89\\\">rest</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 452.5107 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 456.93 540.7508)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 465.2699 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 469.6891 540.7508)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 483.5905 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 488.0098 540.7508)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 536.9258 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 541.3451 540.7508)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 555.4076 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 559.8269 540.7508)\\\" x=\\\"0 5.56\\\">be</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 529.4324)\\\" x=\\\"0 5.56 11.12 13.9 19.46 22.79 27.79 33.35 38.91 44.47 46.75 52.31\\\">enforceable.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 516.1141)\\\" x=\\\"0 6.67 13.89 21.67 28.89 31.67 38.34 41.12 47.23 53.9\\\">PROHIBITED</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 94.2182 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 97.4569 516.1141)\\\" x=\\\"0 6.67 13.89 20 26.67\\\">ACTS.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 126.9051 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 130.1438 516.1141)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 147.9368 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 151.1754 516.1141)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 165.2379 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 168.4766 516.1141)\\\" x=\\\"0 5 10.56 16.12\\\">keep</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 190.1612 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 193.3999 516.1141)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 207.3013 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.5399 516.1141)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 248.3329 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 251.5716 516.1141)\\\" x=\\\"0 2.78 6.11 11.67\\\">free</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 268.8031 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 272.0417 516.1141)\\\" x=\\\"0 2.78 6.11 11.67\\\">from</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 292.0417 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 295.2804 516.1141)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 311.4035 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 314.6422 516.1141)\\\" x=\\\"0 2.28 4.56 10.12 15.68\\\">liens</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.3258 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.5645 516.1141)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 347.4561 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 350.6947 516.1141)\\\" x=\\\"0 5 7.28 12.84 15.12 23.45 28.45\\\">claims.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 381.9252 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 385.1639 516.1141)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.9569 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 406.1956 516.1141)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 420.2581 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 423.4968 516.1141)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 437.3981 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 440.6368 516.1141)\\\" x=\\\"0 5.56 11.12 18.34\\\">pawn</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 464.5431 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 467.7818 516.1141)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 476.6734 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 479.912 516.1141)\\\" x=\\\"0 5.56 7.84 13.4 18.96 24.52\\\">pledge</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.9999 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 513.2386 516.1141)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 527.14 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 530.3787 516.1141)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 504.7957)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 50.893 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 55.1549 504.7957)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 69.2174 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 73.4794 504.7957)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 87.3807 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 91.6427 504.7957)\\\" x=\\\"0 8.33 13.89 18.89\\\">move</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 116.0958 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 120.3578 504.7957)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 134.2592 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 138.5211 504.7957)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 176.3141 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 180.576 504.7957)\\\" x=\\\"0 5.56 11.12 13.9 18.9 21.18 26.74\\\">outside</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 212.8807 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 217.1427 504.7957)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.4825 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 229.7445 504.7957)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 243.6458 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 247.9078 504.7957)\\\" x=\\\"0 5.56 11.12 16.68 20.01 25.57 30.57\\\">address</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 283.484 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 287.7459 504.7957)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 303.869 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 308.1309 504.7957)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29 32.85\\\">provided</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 346.5489 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 350.8109 504.7957)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.1507 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 363.4127 504.7957)\\\" x=\\\"0 5.56 10.56\\\">us,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 376.7525 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 381.0145 504.7957)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 397.699 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 401.961 504.7957)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 412.5225 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 416.7845 504.7957)\\\" x=\\\"0 5.56 11.12 16.68 22.24 25.02 30.58 36.14\\\">updated,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 455.7103 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 459.9722 504.7957)\\\" x=\\\"0 5.56 11.12 13.4 18.96 23.96\\\">unless</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 488.9371 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 493.199 504.7957)\\\" x=\\\"0 2.28\\\">it</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 498.2576 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 502.5196 504.7957)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.7998 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 514.0618 504.7957)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 522.4016 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 526.6636 504.7957)\\\" x=\\\"0 3.33 8.89 11.67 17.23 20.56\\\">return</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.7867 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0486 504.7957)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 493.4773)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 70.893 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 74.775 493.4773)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 83.1148 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 86.9968 493.4773)\\\" x=\\\"0 5.56 10.56\\\">us,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 100.3367 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 104.2187 493.4773)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 113.1103 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 116.9923 493.4773)\\\" x=\\\"0 5.56 11.12\\\">our</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 131.4454 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 135.3274 493.4773)\\\" x=\\\"0 5.56 11.12 16.12 18.4 23.96 29.52 35.08 40.64\\\">designee.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 178.7551 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 182.6371 493.4773)\\\" x=\\\"0 6.11\\\">To</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 194.307 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 198.189 493.4773)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 212.0904 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 215.9724 493.4773)\\\" x=\\\"0 5.56 10.56 13.34 18.9 24.46\\\">extent</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 243.2136 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 247.0956 493.4773)\\\" x=\\\"0 5.56 10.56\\\">use</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 263.2187 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 267.1007 493.4773)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.4405 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 279.3225 493.4773)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 293.2239 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 297.1059 493.4773)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 334.8988 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.7808 493.4773)\\\" x=\\\"0 3.33 8.89 14.45 20.01 22.29 25.62 31.18\\\">requires</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 374.9674 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 378.8494 493.4773)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 394.9724 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 398.8544 493.4773)\\\" x=\\\"0 8.33 10.61 16.17 18.45 26.78 32.34\\\">minimum</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 439.5282 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 443.4102 493.4773)\\\" x=\\\"0 5 8.33 10.61 13.39 18.95 22.28 24.56\\\">criteria</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 473.5323 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 477.4143 493.4773)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.0842 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 492.9662 493.4773)\\\" x=\\\"0 5.56 10.56 16.12\\\">use,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 511.8676 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 515.7496 493.4773)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24 28.52 34.08\\\">including</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 555.3981 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 559.2801 493.4773)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 482.159)\\\" x=\\\"0 5.56 10.56 16.12 24.45 30.01 32.29\\\">example</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 70.9565 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 74.5435 482.159)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 80.105 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 83.6921 482.159)\\\" x=\\\"0 5.56 11.12 14.45 22.78 25.06 27.84\\\">permit,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 114.3123 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 117.8993 482.159)\\\" x=\\\"0 2.28 4.56 9.56 15.12 20.68 25.68 31.24\\\">license,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 151.9228 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 155.5098 482.159)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 164.4014 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 167.9885 482.159)\\\" x=\\\"0 8.33 10.61 16.17 18.45 26.78 32.34\\\">minimum</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 208.6624 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 212.2494 482.159)\\\" x=\\\"0 5.56 11.12 16.68\\\">age,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.7123 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 235.2994 482.159)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 251.4224 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 255.0095 482.159)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 269.072 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 272.6591 482.159)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 286.5605 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 290.1476 482.159)\\\" x=\\\"0 5.56 7.84 10.12 15.68\\\">allow</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 313.0528 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 316.6399 482.159)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 332.7629 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 336.35 482.159)\\\" x=\\\"0 2.28 10.61 16.17 19.5 25.06 30.62 36.18\\\">improper</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.8666 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 379.4537 482.159)\\\" x=\\\"0 5.56 10.56\\\">use</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 395.5767 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 399.1638 482.159)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 407.5037 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 411.0907 482.159)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 424.9921 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 428.5792 482.159)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 469.1505 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 472.7376 482.159)\\\" x=\\\"0 6.67\\\">As</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.4075 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 487.9946 482.159)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64 45.2\\\">applicable,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 535.9828 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 539.5699 482.159)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.2399 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 554.8269 482.159)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 470.8406)\\\" x=\\\"0 5.56 11.12 16.68 19.46\\\">boat,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 55.3412 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 60.5175 470.8406)\\\" x=\\\"0 8.33 13.89 16.67 22.23 25.56 27.84 32.84 38.4\\\">motorized</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 104.4823 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 109.6586 470.8406)\\\" x=\\\"0 5 10.56 16.12 18.4 23.4 25.68 31.24\\\">vehicle,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 143.6821 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.8584 470.8406)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 157.75 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 162.9263 470.8406)\\\" x=\\\"0 5.56 8.34 13.9 19.46 22.79 30.01 32.29 37.29\\\">otherwise</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 205.7827 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.959 470.8406)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64 45.2\\\">applicable,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 258.9473 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 264.1236 470.8406)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.2466 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 285.4229 470.8406)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.4854 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 304.6617 470.8406)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 318.5631 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 323.7394 470.8406)\\\" x=\\\"0 5.56 11.12 14.45 22.78 25.06\\\">permit</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.5812 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 356.7575 470.8406)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 372.8805 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 378.0568 470.8406)\\\" x=\\\"0 5.56 11.12 14.45 19.45 25.01 30.57\\\">person,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 411.4113 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 416.5876 470.8406)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24 28.52 34.08\\\">including</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.236 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 461.4123 470.8406)\\\" x=\\\"0 5 10.56 16.12 19.45 24.45 30.01 32.29 35.07\\\">yourself,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.2639 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 504.4402 470.8406)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.78 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 517.9563 470.8406)\\\" x=\\\"0 5.56 11.12 16.68 20.01 25.57 28.35\\\">operate</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.8723 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0486 470.8406)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 459.5223)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 70.893 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 75.2445 459.5223)\\\" x=\\\"0 7.22 12.78 15.06 17.34\\\">while</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 98.1497 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 102.5012 459.5223)\\\" x=\\\"0 5 10.56 15.56\\\">such</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 123.6243 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 127.9757 459.5223)\\\" x=\\\"0 5.56 11.12 14.45 19.45 25.01\\\">person</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 158.5519 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 162.9034 459.5223)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 170.1837 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 174.5351 459.5223)\\\" x=\\\"0 2.28 10.61 16.17 21.73 24.01 27.34 32.9\\\">impaired</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 213.0019 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 217.3534 459.5223)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 227.915 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 232.2664 459.5223)\\\" x=\\\"0 5.56 8.89 14.45 20.01 25.01\\\">drugs,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 260.0594 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 264.4109 459.5223)\\\" x=\\\"0 5.56 7.84 12.84 18.4 23.96 29.52\\\">alcohol</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 296.2175 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 300.569 459.5223)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 309.4606 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 313.8121 459.5223)\\\" x=\\\"0 2.78 6.11 11.67\\\">from</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 333.8121 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.1636 459.5223)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 354.2866 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 358.6381 459.5223)\\\" x=\\\"0 5.56 8.34 13.9 19.46\\\">other</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 381.4311 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 385.7826 459.5223)\\\" x=\\\"0 5 10.56 16.12 21.12 26.68\\\">cause.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 415.2455 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 419.5969 459.5223)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 437.3899 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 441.7414 459.5223)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 455.8039 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 460.1554 459.5223)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.0567 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 478.4082 459.5223)\\\" x=\\\"0 5.56 10.56\\\">use</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 494.5313 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 498.8828 459.5223)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.7841 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 517.1356 459.5223)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 554.9286 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 559.2801 459.5223)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 448.2039)\\\" x=\\\"0 5 10.56 18.89 27.22 32.78 36.11 41.11 43.39 48.95 51.23 53.89 59.45 65.01 68.34 73.9 79.46 84.46 90.02 95.02\\\">commercial purposes.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 434.8855)\\\" x=\\\"0 9.44 16.11 23.33 30.55 33.33 40.55 48.33\\\">WARNING:</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 84.2084 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 87.8242 434.8855)\\\" x=\\\"0 7.22 12.78 15.06 20.62 25.62\\\">Unless</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 118.4492 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 122.065 434.8855)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 138.188 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 141.8038 434.8855)\\\" x=\\\"0 5.56 11.12 16.12\\\">have</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 163.4883 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 167.1041 434.8855)\\\" x=\\\"0 5.56 10.56 16.12 21.68 23.96 27.29 32.85\\\">acquired</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 205.5221 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 209.1378 434.8855)\\\" x=\\\"0 5.56 12.78 18.34 23.9 27.23 32.23 37.79 40.07\\\">ownership</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 254.7775 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 258.3933 434.8855)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 266.7331 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 270.3489 434.8855)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 284.2503 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 287.866 434.8855)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 328.4373 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 332.0531 434.8855)\\\" x=\\\"0 5.56 8.34 11.12 16.68 25.01 30.57 33.35 35.63 41.19\\\">attempting</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 378.806 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 382.4218 434.8855)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 390.7616 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 394.3774 434.8855)\\\" x=\\\"0 5 10.56 12.84 15.12\\\">sell,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 412.2778 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 415.8936 434.8855)\\\" x=\\\"0 5.56 11.12 18.34 23.9\\\">pawn,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 442.5781 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 446.1939 434.8855)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 455.0855 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 458.7013 434.8855)\\\" x=\\\"0 2.28 4.56 10.12\\\">lien</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.3849 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 478.0007 434.8855)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 491.902 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 495.5178 434.8855)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 533.3108 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 536.9265 434.8855)\\\" x=\\\"0 5 7.28 12.84 15.12 20.68 23.46 29.02\\\">violates</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 423.5672)\\\" x=\\\"0 5 7.78 13.34 16.12 21.68 24.34 26.62 32.18 39.4\\\">state law.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 410.2488)\\\" x=\\\"0 6.67 13.34 20.01 22.79 30.57 37.79 46.12 52.79 60.01 66.12\\\">ASSIGNMENT.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 101.9965 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 104.9066 410.2488)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 122.6995 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 125.6096 410.2488)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 144.5012 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 147.4112 410.2488)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 161.3126 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 164.2227 410.2488)\\\" x=\\\"0 5.56 10.56 15.56 17.84 23.4\\\">assign</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 193.1875 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 196.0976 410.2488)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 211.7177 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 214.6278 410.2488)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 263.5438 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 266.4538 410.2488)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.3454 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 278.2555 410.2488)\\\" x=\\\"0 2.78 6.11 11.67 17.23 22.23 25.01 30.57\\\">transfer</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.1569 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 315.0669 410.2488)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 328.9683 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 331.8784 410.2488)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 369.6713 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 372.5814 410.2488)\\\" x=\\\"0 7.22 9.5 12.28 17.84 23.4 28.96\\\">without</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 404.3246 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.2346 410.2488)\\\" x=\\\"0 5.56 11.12\\\">our</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 421.6877 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 424.5978 410.2488)\\\" x=\\\"0 5.56 8.89 11.17 16.73\\\">prior</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 444.6613 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 447.5713 410.2488)\\\" x=\\\"0 7.22 10.55 12.83 15.61 18.39 23.95\\\">written</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 477.0831 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 479.9931 410.2488)\\\" x=\\\"0 5.56 11.12 14.45 22.78 25.06 30.06 35.06 37.34 42.9 48.46\\\">permission.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 531.2382 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 534.1483 410.2488)\\\" x=\\\"0 9.44\\\">We</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.1483 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 552.0584 410.2488)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 398.9305)\\\" x=\\\"0 5.56 10.56 15.56 17.84 23.4 28.96 31.62 37.18 39.46 41.74 44.4 49.96 52.74 55.4 60.96 66.52 69.85 72.51 75.84 78.12 83.68 89.24 92.02 97.02 99.68 105.24 110.8 116.36 121.92 125.25 127.91 130.69 136.25 138.53 143.53 146.19 152.86 158.42 161.75 167.31 172.87 181.2 186.76 192.32 195.1 197.88 200.54 207.21 212.77 217.77 220.43 225.99 231.55 234.88 239.88 245.44 251 253.66 260.88 266.44 269.1 274.66 279.66 284.66 286.94 292.5 298.06 300.72 303 305.78 308.44 311.22 316.78 319.44 327.77 333.33 338.33 340.99 344.32 349.88 355.44 360.44 365.44 367.72 373.28 378.84 381.5 383.78 386.56\\\">assign all of our ri* D E M O *this Agreement. Any person we assign it to may reassign it.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 385.6121)\\\" x=\\\"0 6.67 13.89 21.11 28.89 36.11\\\">ACCORD</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 76.435 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 79.3433 385.6121)\\\" x=\\\"0 6.67 13.89\\\">AND</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 100.4566 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 103.3649 385.6121)\\\" x=\\\"0 6.67 13.34 19.45 22.23 28.9 35.01 41.68 48.9 55.01 57.79 65.57 72.79\\\">SATISFACTION.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 178.9265 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 181.8348 385.6121)\\\" x=\\\"0 6.67 12.23\\\">Any</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 199.0662 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 201.9746 385.6121)\\\" x=\\\"0 5 7.78 13.34 16.12 21.68 30.01 35.57 41.13\\\">statement</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.8857 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 248.794 385.6121)\\\" x=\\\"0 5.56 10.56 15.56 21.12 29.45 35.01 40.57 46.13 51.13 53.41 58.97\\\">accompanying</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 313.3351 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 316.2434 385.6121)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.6965 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.6049 385.6121)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 376.9593 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 379.8677 385.6121)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.2075 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 391.1159 385.6121)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 405.0172 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.9256 385.6121)\\\" x=\\\"0 5.56 8.34 11.12 16.68 21.68\\\">effect</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 432.3836 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 435.2919 385.6121)\\\" x=\\\"0 2.78 8.34 13.9\\\">that</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 451.9716 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 454.88 385.6121)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.3331 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 477.2414 385.6121)\\\" x=\\\"0 5.56 11.12 13.4 18.96 24.52 29.52\\\">balance</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.3293 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 515.2376 385.6121)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 522.5179 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 525.4263 385.6121)\\\" x=\\\"0 5.56 11.12 13.4\\\">paid</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 544.3911 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 547.2995 385.6121)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 555.1412 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 558.0496 385.6121)\\\" x=\\\"0 2.78 8.34 10.62\\\">full</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 374.2937)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.1625 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 50.8231 374.2937)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 64.7245 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 68.3851 374.2937)\\\" x=\\\"0 5.56 7.84 13.4\\\">bind</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 87.35 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 91.0106 374.2937)\\\" x=\\\"0 5.56 10.56\\\">us.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 104.3505 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 108.0111 374.2937)\\\" x=\\\"0 7.78 13.34\\\">Our</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 124.681 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 128.3417 374.2937)\\\" x=\\\"0 5.56 11.12 16.68 22.24 27.24 29.52\\\">deposit</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.6464 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 164.307 374.2937)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 172.6468 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 176.3075 374.2937)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 192.4305 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 196.0912 374.2937)\\\" x=\\\"0 5 10.56 15.56\\\">such</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 217.2142 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 220.8748 374.2937)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.2293 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 262.89 374.2937)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.9525 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 280.6131 374.2937)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 294.5145 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 298.1751 374.2937)\\\" x=\\\"0 5 10.56 16.12 21.12 23.9 26.18 28.96 34.52 37.3\\\">constitute</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 341.0365 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 344.6971 374.2937)\\\" x=\\\"0 5.56\\\">an</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.8201 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 359.4808 374.2937)\\\" x=\\\"0 5.56 10.56 15.56 21.12 24.45\\\">accord</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 389.4954 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 393.1561 374.2937)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 409.8406 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 413.5013 374.2937)\\\" x=\\\"0 5 10.56 13.34 15.62 20.62 23.4 28.96 33.96 36.74 39.02 44.58 50.14\\\">satisfaction,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.4212 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 470.0818 374.2937)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.7664 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 490.427 374.2937)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 503.2102 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 506.8709 374.2937)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 525.7625 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 529.4231 374.2937)\\\" x=\\\"0 5.56 11.12 16.68 18.96\\\">apply</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.388 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0486 374.2937)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 362.9754)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57 38.35 41.01 43.79 49.35 52.01 57.01 62.57 68.13 71.46 74.12 79.68 84.68 89.68 95.24 100.8 106.36 109.14\\\">payment to your account.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 349.657)\\\" x=\\\"0 2.78 10 16.67 23.89 31.11 37.78 45 52.22 58.89 61.67 64.33 73.77 79.33 81.99 87.55 93.11 95.77 101.33 106.89 109.67 112.33 115.66 121.22 126.78 132.34 134.62 137.95 143.51 146.17 151.17 156.73 162.29 164.95 167.73 173.29 175.95 181.51 187.07 190.4 195.4 200.96 206.52 211.52 217.08 219.74 222.02 227.58 232.58 238.14 241.47 247.03 252.59 257.59 263.15 265.81 268.59 271.92 277.48 285.81 288.47 294.03 299.03 301.69 307.25 312.81 318.37 321.03 328.25 333.81 336.47 342.03 347.59 352.59 358.15 360.81 366.37 371.93 374.71 377.37 382.93 386.26 391.82 396.82 399.1 404.66 410.22 415.78 418.44 424 429.56 434.56 437.22 439.5 445.06 450.06 455.62 458.95 464.51 470.07 475.07 480.63 483.29 486.07 491.63 494.29 499.29 504.85 510.41\\\">INSURANCE. We do not require you to purchase insurance from us and we have not provided any insurance to you.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 336.3387)\\\" x=\\\"0 7.22 13.89 21.11 27.78 30.56 37.23 43.34 46.12 48.78 56 61.56 67.12 72.68 75.34 80.34 85.9 91.46 94.79 97.45 100.78 106.34 111.9 117.46 123.02 128.02 130.8 133.58 136.24 143.46 149.02 151.68 157.24 160.57 166.13 168.79 172.12 177.68 183.24 188.8 191.08 194.41 199.97 205.53 208.19 210.97 216.53 219.19 224.75 228.08 233.64 238.64 240.92 246.48 252.04 254.7 259.7 265.26 270.82 273.48 280.7 282.98 285.76 291.32 293.98 299.54 302.2 309.42 312.75 315.03 317.81 320.59 326.15 331.71 334.37 337.7 343.26 348.26 353.82 356.1 361.66 364.44 367.1 369.88 375.44 378.77 381.43 386.99 392.55 397.55 403.11 405.77 411.33 416.89 421.89 430.22 435.78 441.34 444.12 446.78 455.11 460.67 466.23 471.79\\\">RECEIPT. Upon your request, we are required to provide you with a written receipt for each payment made.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 323.0203)\\\" x=\\\"0 7.78 15.56 22.23 28.9 36.12 43.34 46.12 53.34\\\">GOVERNING</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 94.2182 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 97.2444 323.0203)\\\" x=\\\"0 5.56 12.23 21.67\\\">LAW.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 121.6926 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 124.7189 323.0203)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 141.9503 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 144.9765 323.0203)\\\" x=\\\"0 2.28 7.84\\\">law</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.04 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 163.0663 323.0203)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 171.4061 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 174.4323 323.0203)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 188.3337 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 191.3599 323.0203)\\\" x=\\\"0 5 7.78 13.34 16.12\\\">state</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 213.0396 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 216.0658 323.0203)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 223.9076 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 226.9339 323.0203)\\\" x=\\\"0 7.22 12.78 15.06 20.06\\\">which</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 252.5589 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 255.5851 323.0203)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 271.7082 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 274.7344 323.0203)\\\" x=\\\"0 3.33 8.89 13.89 16.17 21.73\\\">reside</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.0293 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 305.0555 323.0203)\\\" x=\\\"0 7.22 12.78 18.34\\\">when</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 328.9618 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 331.988 323.0203)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.1111 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 351.1373 323.0203)\\\" x=\\\"0 5 7.28 12.84 18.4 23.96\\\">signed</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.6637 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 383.6899 323.0203)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 399.31 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 402.3363 323.0203)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 451.2523 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 454.2785 323.0203)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 470.9631 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 473.9893 323.0203)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64\\\">applicable</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 519.1993 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 522.2255 323.0203)\\\" x=\\\"0 2.78 8.34 13.9 19.46 22.79 28.35\\\">federal</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.8603 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 555.8865 323.0203)\\\" x=\\\"0 2.28 7.84\\\">law</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 311.7019)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.1625 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 50.5142 311.7019)\\\" x=\\\"0 5.56 11.12 16.12 21.68 25.01\\\">govern</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 81.0904 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 84.4421 311.7019)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 98.3434 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 101.6951 311.7019)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 150.6111 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 153.9628 311.7019)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 170.6474 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 173.9991 311.7019)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 187.9005 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 191.2521 311.7019)\\\" x=\\\"0 2.28 7.84 10.62 16.18 19.51 25.07 28.4 33.96 36.74 42.3 45.08 47.36 52.92\\\">interpretation</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 249.7385 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 253.0902 311.7019)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 261.43 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 264.7817 311.7019)\\\" x=\\\"0 2.28 5.06\\\">it,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 272.6186 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 275.9703 311.7019)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.68\\\">except</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 305.4332 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 308.7849 311.7019)\\\" x=\\\"0 2.78 8.34 13.9\\\">that</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 325.4646 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 328.8163 311.7019)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 342.7176 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 346.0693 311.7019)\\\" x=\\\"0 6.11 11.67 17.23 22.79 26.12 31.68\\\">Federal</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.0342 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 383.3859 311.7019)\\\" x=\\\"0 6.67 10 15.56 17.84 20.62 23.95 29.51 32.29 34.57 40.13\\\">Arbitration</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 429.0792 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 432.4309 311.7019)\\\" x=\\\"0 6.67 11.67\\\">Act</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 446.8791 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 450.2308 311.7019)\\\" x=\\\"0 5.56 10.56 16.12 19.45 25.01 30.01 35.01 37.29\\\">expressly</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 492.5258 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 495.8775 311.7019)\\\" x=\\\"0 5.56 11.12 16.12 21.68 25.01 30.57\\\">governs</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 531.4536 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 534.8053 311.7019)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 548.7067 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 552.0584 311.7019)\\\" x=\\\"0 5 10.56 13.89\\\">Jury</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 300.3836)\\\" x=\\\"0 6.11 9.44 11.72 17.28 19.56 22.22 31.66 37.22 39.5 44.5 50.06 53.39 56.05 61.61 67.17 72.73 75.39 82.06 85.39 90.95 93.23 96.01 99.34 104.9 107.68 109.96 115.52 121.08 123.74 130.96 133.24 138.8 144.36 149.36 154.92 157.7 160.36 167.03 172.59 178.15 180.81 186.37 191.37 196.37 201.93 207.49 214.71 216.99 222.55 228.11 233.67 239.23 241.89 244.67 250.23 255.79 258.57 261.23 266.23 271.79 277.35 280.01 283.34 288.9 293.9 296.18 301.74 307.3 309.96 315.52 318.3 320.96 323.74 329.3 334.86 337.52 343.08 348.64 354.2 357.53 363.09 368.09 373.09 375.75 378.03 380.31 385.31 388.09 393.65 399.21 401.87 407.43 412.99 418.55 423.55 429.11 431.77 437.33 442.89 445.55 448.33 453.89 459.45 462.11 468.78 474.34 477.67 483.23 488.79 497.12 502.68 508.24 511.02 513.68 520.9 526.46 529.24 534.8\\\">Trial Waiver and Arbitration Clause. You acknowledge that you reside at the address listed above on the Agreement Date.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 287.0652)\\\" x=\\\"0 7.22 15 22.22 28.89 36.11 44.44 51.11\\\">CONSUMER</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 91.435 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 94.8938 287.0652)\\\" x=\\\"0 7.22 13.89 20.56 28.34 35.56 41.67\\\">REPORT.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 139.3421 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 142.8009 287.0652)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.5939 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 164.0527 287.0652)\\\" x=\\\"0 5.56 11.12 16.12\\\">have</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 185.7373 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 189.1961 287.0652)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 28.35 30.63 35.63 41.19\\\">authorized</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 235.9539 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 239.4128 287.0652)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 249.9743 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 253.4331 287.0652)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 261.773 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 265.2318 287.0652)\\\" x=\\\"0 5.56 11.12 13.9 19.46 21.74\\\">obtain</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 292.5365 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 295.9953 287.0652)\\\" x=\\\"0 5.56 11.12\\\">one</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.6799 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 316.1388 287.0652)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 325.0304 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 328.4892 287.0652)\\\" x=\\\"0 8.33 13.89 17.22\\\">more</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.2724 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 354.7312 287.0652)\\\" x=\\\"0 5 10.56 16.12 21.12 26.68 35.01 40.57\\\">consumer</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 398.6375 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 402.0963 287.0652)\\\" x=\\\"0 3.33 8.89 14.45 20.01 23.34 26.12\\\">reports</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 433.2194 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 436.6782 287.0652)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.8013 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 451.2601 287.0652)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.3832 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 470.842 287.0652)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 478.6838 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 482.1427 287.0652)\\\" x=\\\"0 5 10.56 16.12 21.68 27.24 32.24 35.02 37.3 42.86\\\">connection</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 530.5704 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 534.0292 287.0652)\\\" x=\\\"0 7.22 9.5 12.28\\\">with</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.871 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 555.3299 287.0652)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 275.7469)\\\" x=\\\"0 2.78 6.11 11.67 17.23 22.23 27.79 32.79 35.57 37.85 43.41 48.97\\\">transaction.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 262.4285)\\\" x=\\\"0 7.22 14.44 21.11 28.33 31.11\\\">CREDIT</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 70.3217 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 73.874 262.4285)\\\" x=\\\"0 7.22 13.89 20.56 28.34 35.56 41.67 44.45 51.67 59.45\\\">REPORTING.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.1005 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 139.6529 262.4285)\\\" x=\\\"0 9.44\\\">We</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 154.6529 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 158.2051 262.4285)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 177.0967 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 180.6491 262.4285)\\\" x=\\\"0 3.33 8.89 14.45 20.01 23.34\\\">report</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 206.7721 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.3244 262.4285)\\\" x=\\\"0 2.28 7.84 10.62 16.18 19.51 27.84 33.4 36.18 38.46 44.02\\\">information</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.9094 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 263.4617 262.4285)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 271.8015 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 275.3538 262.4285)\\\" x=\\\"0 5 8.33 13.89 19.45 21.73\\\">credit</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.8655 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 303.4178 262.4285)\\\" x=\\\"0 5.56 11.12 14.45 20.01 25.57 31.13\\\">bureaus</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 339.5555 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 343.1078 262.4285)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.9994 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 355.5517 262.4285)\\\" x=\\\"0 5.56 8.34 13.9 19.46\\\">other</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 378.3447 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 381.897 262.4285)\\\" x=\\\"0 2.78 8.34 10.62 13.95 19.51 22.84 28.4 33.96 37.29 40.07 42.35 47.91\\\">third-parties</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.812 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 438.3644 262.4285)\\\" x=\\\"0 5.56 11.12 16.68 22.24\\\">about</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 463.3888 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 466.9411 262.4285)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.3942 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 489.9465 262.4285)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.68 32.24 35.02\\\">account,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 527.7492 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 531.3015 262.4285)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24 28.52 34.08\\\">including</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 251.1102)\\\" x=\\\"0 2.28 7.84 10.62 16.18 18.84 24.4 27.73 30.39 38.72 41 46 51 56.56 62.12 64.78 70.34 75.9 80.9 89.23 94.79 100.35 103.13 108.13 110.91 113.57 119.13 124.69 130.25 132.91 138.47 144.03 149.03 151.69 157.25 162.81 167.81 170.09 172.87 175.15 180.15 185.71 188.37 193.93 197.26 199.92 205.48 211.04 216.6 222.16 224.94 227.22 232.22 237.78 240.44 246 251 256 261.56 267.12 272.68 275.46 278.12 280.4 285.96 288.74 294.3 297.63 305.96 311.52 314.3 316.58 322.14 327.7 330.36 338.69 344.25 349.25 351.91 357.47 363.03 365.69 369.02 374.58 377.36 379.64 385.2 390.2 392.98 398.54 404.1 406.76 409.04 414.6 417.26 422.26 427.82 433.38 436.71 439.37 444.37 447.7 453.26 458.82 461.1 463.88 466.54 469.87 475.43 480.99 486.55 489.88 492.66\\\">late or missed payments, and any positive or negative account information may be reflected in your credit report.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 237.7918)\\\" x=\\\"0 2.78 10 17.22 23.89 32.22 39.44 42.22 48.33 51.11 58.33 65 71.11 73.89 81.67 88.89\\\">INDEMNIFICATION.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 124.765 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 128.29 237.7918)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.083 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 149.608 237.7918)\\\" x=\\\"0 5.56 11.12 14.45 20.01\\\">agree</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 175.1842 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 178.7092 237.7918)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 187.0491 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 190.5741 237.7918)\\\" x=\\\"0 2.28 7.84 13.4 18.96 27.29 32.85 35.13 37.91\\\">indemnify</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.4891 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 237.0141 237.7918)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.5756 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 251.1006 237.7918)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 267.7852 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 271.3102 237.7918)\\\" x=\\\"0 5.56 11.12 13.4\\\">hold</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.2751 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 293.8001 237.7918)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 304.3616 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 307.8866 237.7918)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 324.5712 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 328.0962 237.7918)\\\" x=\\\"0 5.56 11.12\\\">our</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 342.5493 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 346.0743 237.7918)\\\" x=\\\"0 5.56 10.56 15.56 17.84 23.4 28.96 34.52 40.08 45.08\\\">assignees,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.9405 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 397.4655 237.7918)\\\" x=\\\"0 5.56 11.12 16.68 22.24 25.02 30.02\\\">agents,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.2683 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 433.7933 237.7918)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 450.4779 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 454.0029 237.7918)\\\" x=\\\"0 2.28 7.84 12.84 18.4 21.73 27.29 30.62\\\">insurers</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.6279 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 493.1529 237.7918)\\\" x=\\\"0 5.56 11.12 14.45 22.78 25.06 30.62 35.62\\\">harmless</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 533.7779 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 537.3029 237.7918)\\\" x=\\\"0 2.78 6.11 11.67\\\">from</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 557.3029 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 560.8279 237.7918)\\\" x=\\\"0 5.56 7.84\\\">all</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 226.4734)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57 36.13 41.13\\\">damages,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 77.016 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 80.4241 226.4734)\\\" x=\\\"0 2.28 7.84 10.12 15.68 19.01 21.29 26.85 31.85\\\">injuries,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 115.0579 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 118.466 226.4734)\\\" x=\\\"0 5 7.28 12.84 15.12 23.45 28.45\\\">claims,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 149.6965 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 153.1046 226.4734)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57 36.13 41.13\\\">demands,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 197.0206 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 200.4287 226.4734)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 217.1132 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 220.5214 226.4734)\\\" x=\\\"0 5.56 10.56 16.12 21.68 27.24 32.24 37.8 42.8\\\">expenses,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 266.1073 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 269.5154 226.4734)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24 28.52 34.08\\\">including</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 309.1638 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 312.5719 226.4734)\\\" x=\\\"0 3.33 8.89 14.45 19.45 25.01 30.57 36.13 41.69 43.97\\\">reasonable</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 362.1129 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 365.521 226.4734)\\\" x=\\\"0 5.56 8.34 11.12 16.68 20.01 25.57 31.13 36.13 38.04\\\">attorney&apos;s</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 408.563 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 411.9711 226.4734)\\\" x=\\\"0 2.78 8.34 13.9\\\">fees</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.8725 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 434.2806 226.4734)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 442.6204 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 446.0285 226.4734)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 459.9299 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 463.338 226.4734)\\\" x=\\\"0 5.56 10.56 13.34 18.9 24.46\\\">extent</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 490.5792 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 493.9873 226.4734)\\\" x=\\\"0 5.56 11.12 14.45 22.78 25.06 27.84 30.62 36.18\\\">permitted</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 535.7305 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 539.1386 226.4734)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.7001 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.1082 226.4734)\\\" x=\\\"0 2.28 7.84 15.06\\\">law,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 215.1551)\\\" x=\\\"0 5.56 8.89 11.17 16.17 18.45 24.01\\\">arising</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 62.6752 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 67.1149 215.1551)\\\" x=\\\"0 5.56 11.12\\\">out</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 81.0163 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 85.4561 215.1551)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 93.7959 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 98.2356 215.1551)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 112.137 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 116.5767 215.1551)\\\" x=\\\"0 5 10.56 16.12 21.68 23.96 26.74 29.02 34.58 40.14\\\">condition,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 159.5016 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 163.9413 215.1551)\\\" x=\\\"0 8.33 13.89 16.17 21.73 24.51 30.07 35.63 41.19 46.75 51.75 57.31\\\">maintenance,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 224.039 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 228.4787 215.1551)\\\" x=\\\"0 5.56 10.56\\\">use</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 244.6017 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 249.0415 215.1551)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.9331 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 262.3728 215.1551)\\\" x=\\\"0 5.56 11.12 16.68 20.01 25.57 28.35 30.63 36.19\\\">operation</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 304.1307 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 308.5704 215.1551)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 316.9102 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 321.35 215.1551)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.2514 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 339.6911 215.1551)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.2624 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 384.7021 215.1551)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24 28.52 34.08\\\">including</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 424.3506 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 428.7903 215.1551)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.3518 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 438.7916 215.1551)\\\" x=\\\"0 5 7.28 12.84 15.12\\\">claim</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 462.2437 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 466.6835 215.1551)\\\" x=\\\"0 5.56 11.12 16.68 22.24\\\">under</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 492.2597 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 496.6994 215.1551)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 510.6008 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 515.0405 215.1551)\\\" x=\\\"0 5 7.78 11.11 13.39 18.39\\\">strict</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 536.2075 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 540.6472 215.1551)\\\" x=\\\"0 2.28 4.56 10.12 15.68 17.96 20.24 22.52 25.3\\\">liability</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 203.8367)\\\" x=\\\"0 5.56 11.12 16.12 18.9 22.23 24.51 30.07 35.63\\\">doctrine.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 190.5184)\\\" x=\\\"0 7.2217 15 21.1084 23.8867 31.1084 37.7783 44.4482\\\">NOTICES.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 80.3266 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 82.9828 190.5184)\\\" x=\\\"0 7.2217 12.7832 15.5615 17.8418 22.8418 28.4033\\\">Notices</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 116.3861 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 119.0424 190.5184)\\\" x=\\\"0 8.3301 13.8916\\\">may</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 137.934 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 140.5902 190.5184)\\\" x=\\\"0 5.5615\\\">be</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 151.7133 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 154.3695 190.5184)\\\" x=\\\"0 5.5615 7.8418 12.8418 18.4033\\\">given</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 178.3344 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 180.9906 190.5184)\\\" x=\\\"0 5.5615 11.123 14.4531 19.4531 25.0146 30.5762 36.1377 38.418 40.6982\\\">personally</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 226.6889 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 229.3451 190.5184)\\\" x=\\\"0 5.5615\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.2367 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 240.893 190.5184)\\\" x=\\\"0 5 10.5615 16.123\\\">sent</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.7943 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 262.4506 190.5184)\\\" x=\\\"0 5.5615\\\">by</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 273.0121 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 275.6684 190.5184)\\\" x=\\\"0 2.7783 5.0586 8.3887 13.3887\\\">first</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.8353 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 294.4916 190.5184)\\\" x=\\\"0 5 7.2803 12.8418 17.8418\\\">class</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 317.3334 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 319.9896 190.5184)\\\" x=\\\"0 8.3301 13.8916 16.1719 18.4522\\\">mail.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 341.2201 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 343.8764 190.5184)\\\" x=\\\"0 7.2217 12.7832 15.5615 17.8418 22.8418\\\">Notice</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 372.2797 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 374.9359 190.5184)\\\" x=\\\"0 8.3301 13.8916 16.1719 18.4522 24.0137\\\">mailed</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 404.5111 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.1674 190.5184)\\\" x=\\\"0 2.7783\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 415.5072 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 418.1635 190.5184)\\\" x=\\\"0 5.5615\\\">us</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 428.725 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 431.3812 190.5184)\\\" x=\\\"0 8.3301 13.8916 18.8916\\\">must</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 453.0512 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 455.7074 190.5184)\\\" x=\\\"0 5.5615\\\">be</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.8305 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 469.4867 190.5184)\\\" x=\\\"0 5 10.5615 16.1231\\\">sent</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 488.3881 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 491.0443 190.5184)\\\" x=\\\"0 2.7783\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.3842 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 502.0404 190.5184)\\\" x=\\\"0 2.7783 8.3398\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 515.9418 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 518.5981 190.5184)\\\" x=\\\"0 5.5615 11.123 16.6846 20.0146 25.5762 30.5762\\\">address</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 179.2)\\\" x=\\\"0 5 10.5615 16.1231 23.3447\\\">shown</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 62.0063 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 64.6625 179.2)\\\" x=\\\"0 2.2803\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 72.5043 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 75.1606 179.2)\\\" x=\\\"0 2.7783 8.3398 10.6201\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 90.7807 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 93.4369 179.2)\\\" x=\\\"0 6.6699 12.2314 15.5615 21.123 26.6846 35.0146 40.5762 46.1377 48.916\\\">Agreement,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 145.1312 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 147.7875 179.2)\\\" x=\\\"0 5.6115\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 156.7791 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 159.4854 179.2)\\\" x=\\\"0 5.6115\\\">as</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 170.1469 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 172.8531 179.2)\\\" x=\\\"0 7.2717\\\">we</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 185.7363 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 188.4426 179.2)\\\" x=\\\"0 5.5615 8.3398 13.9014 19.4629 22.793 30.0147 32.2949 37.2949\\\">otherwise</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.299 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 233.9553 179.2)\\\" x=\\\"0 5.5615 7.8418 11.1719 16.7334 21.7334\\\">direct</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 258.467 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 261.1232 179.2)\\\" x=\\\"0 2.7783 6.1084 11.6699\\\">from</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.1232 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 283.7795 179.2)\\\" x=\\\"0 2.7783 5.0586 13.3887\\\">time</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.7297 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 305.3859 179.2)\\\" x=\\\"0 2.8283\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 313.8258 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 316.532 179.2)\\\" x=\\\"0 2.7783 5.0586 13.3887 18.9502\\\">time.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.2605 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 340.9168 179.2)\\\" x=\\\"0 7.2217 12.7832 15.5615 17.8418 22.8418 28.4033\\\">Notices</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 374.3201 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 376.9764 179.2)\\\" x=\\\"0 2.8283\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 385.4162 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 388.1225 179.2)\\\" x=\\\"0 5.6115\\\">us</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 398.784 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 401.4902 179.2)\\\" x=\\\"0 5.5615 8.8916\\\">are</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 415.9434 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 418.5996 179.2)\\\" x=\\\"0 5.5615 11.1231 16.6846 25.0147 30.5762\\\">deemed</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.7373 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 457.3936 179.2)\\\" x=\\\"0 5.5615 7.8418 12.8418 18.4033\\\">given</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 481.3584 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 484.0147 179.2)\\\" x=\\\"0 7.2217 12.7832 18.3447\\\">when</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 507.9209 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 510.5771 179.2)\\\" x=\\\"0 2.7783 8.3398 13.9014\\\">they</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.4785 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 532.1348 179.2)\\\" x=\\\"0 5.5615 8.8916\\\">are</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 167.8816)\\\" x=\\\"0 5.5615 11.1231 14.4531 19.4531 25.0146 30.5762 36.1377 38.418 40.6982\\\">personally</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 78.7982 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.4545 167.8816)\\\" x=\\\"0 5.5615 7.8418 12.8418 18.4033\\\">given</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 105.4193 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 108.0756 167.8816)\\\" x=\\\"0 5.5615\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 116.9672 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 119.6234 167.8816)\\\" x=\\\"0 5.5615 10.5615 13.3398 18.9014 24.4629 26.7432 29.0234\\\">actually</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 153.6469 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 156.3031 167.8816)\\\" x=\\\"0 3.3301 8.8916 13.8916 19.4531 21.7334 26.7334 32.2949\\\">received</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 194.1596 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 196.8158 167.8816)\\\" x=\\\"0 5.6615\\\">at</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 205.3557 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 208.1119 167.8816)\\\" x=\\\"0 5.6115 11.223\\\">our</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 222.715 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 225.4213 167.8816)\\\" x=\\\"0 5.5615 11.123 16.6846 20.0146 25.5762 30.5762 35.5762\\\">address.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 263.7758 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 266.432 167.8816)\\\" x=\\\"0 7.2217 12.7832 15.5615 17.8418 22.8418 28.4033\\\">Notices</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.8353 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 302.4916 167.8816)\\\" x=\\\"0 5.6115 8.9916\\\">are</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 317.0947 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 319.801 167.8816)\\\" x=\\\"0 5.5615 11.123 16.6846 25.0146 30.5762\\\">deemed</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.9387 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 358.5949 167.8816)\\\" x=\\\"0 5.5615 7.8418 12.8418 18.4033\\\">given</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 382.5598 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 385.216 167.8816)\\\" x=\\\"0 2.8783\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.7559 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 396.5121 167.8816)\\\" x=\\\"0 5.05 10.6615\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 412.7852 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 415.4914 167.8816)\\\" x=\\\"0 7.2717 12.8832 18.4947\\\">when</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 439.5977 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 442.3039 167.8816)\\\" x=\\\"0 2.8283 8.4398 14.0514\\\">they</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 461.4053 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 464.1115 167.8816)\\\" x=\\\"0 5.6115 8.9916\\\">are</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 478.7147 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 481.4209 167.8816)\\\" x=\\\"0 5.5615 11.1231 14.4531 19.4531 25.0146 30.5762 36.1377 38.418 40.6982\\\">personally</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 527.1191 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 529.7754 167.8816)\\\" x=\\\"0 5.5615 7.8418 12.8418 18.4033\\\">given</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.7402 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 556.3965 167.8816)\\\" x=\\\"0 5.6615\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 156.5633)\\\" x=\\\"0 7.2717 12.8832 18.4947\\\">when</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 57.2063 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 59.9125 156.5633)\\\" x=\\\"0 5.5615 7.8418 13.4033 18.4033 23.9648\\\">placed</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 89.4389 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 92.0951 156.5633)\\\" x=\\\"0 2.3803\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 100.1369 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 102.8932 156.5633)\\\" x=\\\"0 2.8283 8.4398\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 116.9445 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 119.6508 156.5633)\\\" x=\\\"0 8.3301 13.8916 16.1719 18.4522\\\">mail,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 140.8813 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 143.5375 156.5633)\\\" x=\\\"0 5.5615 11.123 16.6846 20.0147 25.5762 30.5762 35.5762 41.1377\\\">addressed</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 190.2367 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 192.893 156.5633)\\\" x=\\\"0 2.7783\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 201.2328 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 203.8891 156.5633)\\\" x=\\\"0 5 10.5615\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 220.0121 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 222.6684 156.5633)\\\" x=\\\"0 5.5615\\\">at</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.0082 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 233.6645 156.5633)\\\" x=\\\"0 5 10.5615 16.123\\\">your</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 253.1176 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 255.7738 156.5633)\\\" x=\\\"0 5.5615 11.1231 16.6846 20.0147 25.5762 30.5762\\\">address</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.35 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 294.0062 156.5633)\\\" x=\\\"0 2.7783 8.3399 13.9014\\\">then</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 313.4691 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 316.1254 156.5633)\\\" x=\\\"0 5 10.5615 16.1231 23.3447\\\">shown</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 345.0316 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 347.6879 156.5633)\\\" x=\\\"0 5.5615\\\">on</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 358.8109 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 361.4672 156.5633)\\\" x=\\\"0 5.5615 11.1231\\\">our</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.9203 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 378.5766 156.5633)\\\" x=\\\"0 3.3301 8.8916 13.8916 19.4531 22.7832 28.3447 33.3447\\\">records,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 414.6996 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 417.3559 156.5633)\\\" x=\\\"0 5.5615 10.5615 16.123\\\">even</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 439.0404 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 441.6967 156.5633)\\\" x=\\\"0 2.7783 8.3398 13.9014 19.4629 25.0244\\\">though</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 472.2826 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 474.9389 156.5633)\\\" x=\\\"0 5 10.5615\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 491.0619 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 493.7182 156.5633)\\\" x=\\\"0 8.3301 10.6104 16.1719 21.7334\\\">might</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 518.2299 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 520.8861 156.5633)\\\" x=\\\"0 5.5615 11.123\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 145.2449)\\\" x=\\\"0 5.5615 10.5615 13.3398 18.9014 24.4629 26.7432 29.0234\\\">actually</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 67.1234 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 69.7797 145.2449)\\\" x=\\\"0 3.3301 8.8916 13.8916 19.4531 21.7334 26.7334\\\">receive</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 102.0746 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 104.7309 145.2449)\\\" x=\\\"0 5.5615 11.123\\\">our</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 119.184 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 121.8402 145.2449)\\\" x=\\\"0 8.3301 13.8916 16.1719 18.4521 24.0137\\\">mailed</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 151.4154 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 154.0717 145.2449)\\\" x=\\\"0 5.5615 11.1231 13.9014 16.1816 21.1816 26.7432\\\">notice.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 183.5932 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 186.2494 145.2449)\\\" x=\\\"0 6.6699 12.2314\\\">You</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 204.0424 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 206.6986 145.2449)\\\" x=\\\"0 5.8115 11.6231 15.2031 21.0146\\\">agree</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.5248 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 236.4311 145.2449)\\\" x=\\\"0 2.9283 8.6398 14.3514\\\">that</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 253.7107 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 256.517 145.2449)\\\" x=\\\"0 5.8615\\\">30</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 268.24 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 271.1963 145.2449)\\\" x=\\\"0 5.7115 11.4231 16.5731 21.7231\\\">days&apos;</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 294.9785 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 297.7848 145.2449)\\\" x=\\\"0 5.6615 11.3231 14.2014 16.5816 21.6816\\\">notice</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 325.1279 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 327.8842 145.2449)\\\" x=\\\"0 2.5803\\\">is</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.7645 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.7207 145.2449)\\\" x=\\\"0 3.4301 9.0916 14.7531 19.8531 25.5146 31.1762 36.8377 42.4992 44.8795 50.541\\\">reasonable,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 392.14 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 394.8963 145.2449)\\\" x=\\\"0 5.6615 11.3231 13.7033 19.3648 24.4648\\\">unless</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 424.4611 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 427.2174 145.2449)\\\" x=\\\"0 5.15 8.0783 13.7899 16.7182\\\">state</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 449.6471 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 452.4533 145.2449)\\\" x=\\\"0 2.5303 8.3418\\\">law</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.2668 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 471.173 145.2449)\\\" x=\\\"0 3.4301 9.0916 14.7531 20.4146 22.7949 26.225 31.8865\\\">requires</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 508.1596 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 510.9158 145.2449)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 517.0773 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 520.3336 145.2449)\\\" x=\\\"0 2.3803 8.0418 13.7033 19.3649 25.0264\\\">longer</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 133.9266)\\\" x=\\\"0 5.6615 11.3231 14.7531 17.1334 22.7949 28.4564\\\">period,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 64.4348 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 67.191 133.9266)\\\" x=\\\"0 2.5803\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 75.6328 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 78.5891 133.9266)\\\" x=\\\"0 7.3717 13.0832 15.5135 20.6635\\\">which</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 104.9641 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 107.7703 133.9266)\\\" x=\\\"0 5.15 10.8615 16.0115\\\">case</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 129.4934 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 132.2996 133.9266)\\\" x=\\\"0 5.25 11.0615\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 149.1727 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 152.0789 133.9266)\\\" x=\\\"0 5.7115 11.423 14.9031 20.6146\\\">agree</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 178.4051 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 181.2113 133.9266)\\\" x=\\\"0 2.9283 8.6398 14.3514\\\">that</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 198.491 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 201.2973 133.9266)\\\" x=\\\"0 3.0283 8.8398\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 215.9486 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 218.8549 133.9266)\\\" x=\\\"0 5.05 7.8783 13.4898 16.3182 21.9297 25.3098 28.7898 34.5014 40.2129 45.9244 48.3547 51.8348 57.5463\\\">state-required</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 282.1127 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 284.9189 133.9266)\\\" x=\\\"0 5.6615 11.3231 14.7531 17.1334 22.7949\\\">period</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 313.3754 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 316.1316 133.9266)\\\" x=\\\"0 2.5803\\\">is</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 324.0119 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 329.5182 133.9266)\\\" x=\\\"0 3.3301 8.8916 14.4531 19.4531 25.0147 30.5762 36.1377 41.6992 43.9795 49.541\\\">reasonable.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 381.8375 133.9266)\\\" x=\\\"0 2.6562\\\">  </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 387.15 133.9266)\\\" x=\\\"0 6.6699 12.2314\\\">You</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 404.943 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.5992 133.9266)\\\" x=\\\"0 5.5615 11.123 13.9014 19.4629 25.0244 28.3545 30.6348 35.6348\\\">authorize</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 448.7955 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 451.4518 133.9266)\\\" x=\\\"0 5.5615\\\">us</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 462.0133 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 464.6695 133.9266)\\\" x=\\\"0 2.7783\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 473.0094 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 475.6656 133.9266)\\\" x=\\\"0 5 10.5615 16.123\\\">send</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 497.3502 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 500.0064 133.9266)\\\" x=\\\"0 5.5615 11.1231 13.9014 16.1816 21.1816 26.7432\\\">notices</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 531.7496 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 534.4059 133.9266)\\\" x=\\\"0 2.7783\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 542.7457 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 545.402 133.9266)\\\" x=\\\"0 5 10.5615 16.123\\\">your</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 122.6082)\\\" x=\\\"0 5.56 13.89 19.45 21.73 24.01 26.67 32.23 37.79 43.35 46.68 52.24 57.24 62.24 64.9 70.46 76.02 78.3 83.86 88.86 93.86 96.52 102.08 105.41 110.97 116.53 118.81 124.37 126.65 129.43 134.99 140.55 143.21 148.77 153.77 156.43 158.71 164.27 171.49\\\">email address unless prohibited by law.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 109.2898)\\\" x=\\\"0 5 12.22 19.44\\\">JURY</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 59.2133 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 63.5195 109.2898)\\\" x=\\\"0 6.11 13.33 16.11 22.78\\\">TRIAL</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 91.8594 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 96.1656 109.2898)\\\" x=\\\"0 9.44 16.11 18.89 25.56 32.23\\\">WAIVER</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 135.6138 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 139.9201 109.2898)\\\" x=\\\"0 6.67 13.89\\\">AND</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 161.0334 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 165.3396 109.2898)\\\" x=\\\"0 6.67 13.89 20.56 23.34 29.45 36.67 43.34 49.45 52.23 60.01\\\">ARBITRATION</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 232.5662 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 236.8724 109.2898)\\\" x=\\\"0 7.22 12.78 19.45 26.67 33.34 40.01\\\">CLAUSE.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 279.6654 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 283.9716 109.2898)\\\" x=\\\"0 6.67\\\">By</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 295.6415 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 299.9478 109.2898)\\\" x=\\\"0 5 7.28 12.84 18.4 20.68 26.24 31.8\\\">signing,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 334.5327 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.8389 109.2898)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 354.962 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 359.2682 109.2898)\\\" x=\\\"0 5.56 11.12 14.45 20.01\\\">agree</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 384.8444 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 389.1507 109.2898)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 397.4905 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 401.7967 109.2898)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 417.4168 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 421.7231 109.2898)\\\" x=\\\"0 5 10.56 13.89\\\">Jury</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 440.6147 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 444.9209 109.2898)\\\" x=\\\"0 6.11 9.44 11.72 17.28\\\">Trial</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 464.4815 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 468.7877 109.2898)\\\" x=\\\"0 9.44 15 17.28 22.28 27.84\\\">Waiver</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.9596 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 504.2658 109.2898)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 520.9504 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 525.2566 109.2898)\\\" x=\\\"0 6.67 10 15.56 17.84 20.62 23.95 29.51 32.29 34.57 40.13\\\">Arbitration</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 97.9715)\\\" x=\\\"0 7.22 9.5 15.06 20.62 25.62 31.18 33.84 37.17 40.5 47.72 50 55.56 61.12 66.12 71.68 75.01 78.34\\\">Clause (“Clause”).</text></g><clipPath id=\\\"clip3-3\\\"><path d=\\\"M 35 76 L 573 76 L 573 94 L 35 94 L 35 76 z \\\"/></clipPath><path clip-path=\\\"url(#clip3-3)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 93.8719 L 572.95 93.8719 L 572.95 76.8719 L 35.45 76.8719 L 35.45 93.8719 z \\\"/><path clip-path=\\\"url(#clip3-3)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.15 91.8719 L 572.45 91.8719 L 572.45 80.5535 L 39.15 80.5535 L 39.15 91.8719 z \\\"/><path clip-path=\\\"url(#clip3-3)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 253.9396 91.8719 L 357.9396 91.8719 L 357.9396 79.8719 L 253.9396 79.8719 L 253.9396 91.8719 z \\\"/><g clip-path=\\\"url(#clip3-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 253.9396 82.6531)\\\" x=\\\"0 6.67 12.23 17.23 22.23 27.79 31.12 36.68 42.24 47.8 53.36 56.02 61.58 67.14 72.7 75.36 82.03 87.03 92.59 98.15\\\">Background and Scope</text></g><clipPath id=\\\"clip3-4\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip3-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 94.3719 L 573.45 94.3719 L 573.45 93.3719 L 34.95 93.3719 L 34.95 94.3719 z \\\"/><path clip-path=\\\"url(#clip3-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 77.3719 L 573.45 77.3719 L 573.45 76.3719 L 34.95 76.3719 L 34.95 77.3719 z \\\"/><path clip-path=\\\"url(#clip3-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 93.3719 L 573.45 93.3719 L 573.45 77.3719 L 572.45 77.3719 L 572.45 93.3719 z \\\"/><path clip-path=\\\"url(#clip3-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 93.3719 L 35.95 93.3719 L 35.95 77.3719 L 34.95 77.3719 L 34.95 93.3719 z \\\"/><g clip-path=\\\"url(#clip3-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 36.5264)\\\" x=\\\"0 6.498 11.997 14.391 16.785 21.789 26.793 29.295 34.299 39.303 44.307 504 506.3906 508.7812 511.1719 513.5625 515.9531 518.3438 520.7344 523.125 525.5156\\\">UT  07/2019          </text></g><g clip-path=\\\"url(#clip3-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 26.3398)\\\" x=\\\"0 6.003 11.007 16.011 21.015\\\">Page </text></g><g clip-path=\\\"url(#clip3-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 55.8097 26.3398)\\\" x=\\\"0\\\">4</text></g><g clip-path=\\\"url(#clip3-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.815 26.3398)\\\" x=\\\"0 2.394 7.398 9.9\\\"> of </text></g><g clip-path=\\\"url(#clip3-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 73.1021 26.3398)\\\" x=\\\"0\\\">7</text></g><g clip-path=\\\"url(#clip3-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#d9d9d9\\\" style=\\\"font-family:f3-0; font-size:54pt; white-space:pre\\\" transform=\\\"matrix(0.707 0.707 0.707 -0.707 135.6027 198.5094)\\\" x=\\\"0 56.016 96.048 136.08 176.112 216.144 236.16 284.184 324.216 344.232 364.248 416.232 456.264 480.24\\\">* D E M O *are</text></g><g clip-path=\\\"url(#clip3-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#002ba6\\\" style=\\\"font-family:f3-0; font-size:9pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.932 772)\\\" x=\\\"0 9.336 16.008 22.68 29.352 36.024 39.36 47.364 54.036 57.372 60.708 69.372 76.044 80.04 86.712 90.048 94.044 97.38 104.712 111.384 115.38 118.716 126.72 132.72 139.392 142.056 148.728 155.4 158.736 161.4 168.072 174.744 178.08 187.416 194.088 196.752 202.752 206.088 210.084 213.42 220.092 223.428 226.764 233.436 239.436 242.772 246.108 249.444 258.108 266.772 275.436 278.772 285.444 292.116 298.788 305.46 312.132 315.468 321.468 328.14\\\">Qoppa Software - For Evaluation Only - https://www.qoppa.com</text></g></g></svg></svg></g></svg><br>\\n<?xml version='1.0' encoding='UTF-8'?><svg id=\\\"qoppa_document\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" version=\\\"1.1\\\" xmlns=\\\"http://www.w3.org/2000/svg\\\" xmlns:xlink=\\\"http://www.w3.org/1999/xlink\\\"><!-- jPDFWeb v2019R1.03 - Demo Version --><style>title p { display: block; }</style><g id=\\\"qoppa_viewxform\\\" transform=\\\"matrix(1 0 0 1 0 0)\\\"><style type=\\\"text/css\\\">@font-face {font-family:f4-0;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f4-1;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f4-2;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}</style><svg id=\\\"qoppa_page_p4\\\" class=\\\"qoppa_page\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\"><rect class=\\\"qoppa_pageborder\\\" x=\\\"0.5pt\\\" y=\\\"0.5pt\\\" width=\\\"611pt\\\" height=\\\"791pt\\\" fill=\\\"none\\\" /><svg class=\\\"qoppa_pagecontents\\\" x=\\\"0pt\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" viewBox=\\\"0 0 612 792\\\" ><g class=\\\"qoppa_contentstream\\\" transform=\\\"matrix(1 0 0 -1 0 792)\\\" fill=\\\"black\\\" stroke=\\\"black\\\" stroke-width=\\\"1\\\" stroke-linecap=\\\"butt\\\" stroke-linejoin=\\\"miter\\\" stroke-miterlimit=\\\"10\\\"><clipPath id=\\\"clip4-1\\\"><path d=\\\"M 35 748 L 130 748 L 130 770 L 35 770 L 35 748 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-1)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 769.7 L 129.35 769.7 L 129.35 748.5906 L 35.45 748.5906 L 35.45 769.7 z \\\"/><path clip-path=\\\"url(#clip4-1)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 767.7 L 125.25 767.7 L 125.25 758.6453 L 39.55 758.6453 L 39.55 767.7 z \\\"/><path clip-path=\\\"url(#clip4-1)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 47.9683 767.7 L 116.9684 767.7 L 116.9684 757.7 L 47.9683 757.7 L 47.9683 767.7 z \\\"/><g clip-path=\\\"url(#clip4-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.9684 760.325)\\\" x=\\\"0 7.552 12 16.448 18.672 20.8 22.624 26.624 28.752 33.2 35.864 40.312 42.136 44.36 47.024 51.472 53.696 55.52 59.968 64.416\\\">What is arbitration?</text></g><clipPath id=\\\"clip4-2\\\"><path d=\\\"M 129 748 L 206 748 L 206 770 L 129 770 L 129 748 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 138.6945 760.325)\\\" x=\\\"0 5.336 9.784 11.912 16.36 18.184 20.408 24.856 27.52 31.968 36.416 38.64 40.464 44.464 48.912 51.04 53.264\\\">An alternative to</text></g><g clip-path=\\\"url(#clip4-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 157.5461 751.2703)\\\" x=\\\"0 4 8.448 12.896 15.56 17.784\\\">court.</text></g><clipPath id=\\\"clip4-3\\\"><path d=\\\"M 205 748 L 573 748 L 573 770 L 205 770 L 205 748 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 760.325)\\\" x=\\\"0 2.224\\\">In</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 216.5219 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 220.3852 760.325)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 26.768 31.216 35.664\\\">arbitration,</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 258.2758 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 262.139 760.325)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 266.5883 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 270.4515 760.325)\\\" x=\\\"0 2.224 6.672 8.496 11.16\\\">third</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 286.0609 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 289.9242 760.325)\\\" x=\\\"0 4.448 8.896 11.56 13.784\\\">party</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 307.7094 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 311.5727 760.325)\\\" x=\\\"0 2.664 5.504 10.84 13.504 17.952 19.776 22 26.448 29.112 31.952\\\">(&quot;Arbiter&quot;)</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 346.1898 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 350.0531 760.325)\\\" x=\\\"0 4 8.448 10.272 14.272 18.72\\\">solves</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 372.7758 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 376.639 760.325)\\\" x=\\\"0 5.776 7.6 11.6 16.048 20.496 22.72 27.168\\\">Disputes</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 407.8109 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 411.6742 760.325)\\\" x=\\\"0 1.824\\\">in</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 417.9477 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 421.8109 760.325)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 426.2601 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 430.1234 760.325)\\\" x=\\\"0 4.448 8.896 13.344 16.008 17.832 22.28\\\">hearing</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.8578 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 460.7211 760.325)\\\" x=\\\"0 2.664 5.504 9.952 14.4 18.848 21.512 23.336 27.784 32.232 35.072 37.736\\\">(&quot;hearing&quot;).</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 500.6859 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 504.5492 760.325)\\\" x=\\\"0 5.336 9.784 14.232\\\">You,</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.0062 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 524.8695 760.325)\\\" x=\\\"0 2.664 7.112 8.936 13.384 15.608 20.056\\\">related</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.3773 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 553.2406 760.325)\\\" x=\\\"0 2.224 6.672 8.496 11.16\\\">third</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 751.2703)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056 24.056 26.28 28.408 32.856 37.304 41.752 43.88 49.656 54.104 56.328 58.456 64.232 68.68 70.504 74.504 78.952 81.08 83.304 87.752 92.2 94.328 96.992 98.816 103.264 107.712 109.936 112.064 114.288 118.736 120.864 125.312 129.76 131.888 134.112 138.56 140.688 144.688 149.136 153.584 156.248 158.472 160.696 162.824 168.16 172.608 176.608 181.056 183.184 186.024 190.472 194.92 197.584 199.808 201.632 206.08 210.08 212.92 215.048 217.272 221.72 224.384 228.832 233.28 235.408 237.232 241.68 244.344 248.344 250.472 252.696 255.36 257.184 261.632 263.456 267.456\\\">parties, and we, waive the right to go to court. Such &quot;parties&quot; forgo jury trials.</text></g><clipPath id=\\\"clip4-4\\\"><path d=\\\"M 35 727 L 130 727 L 130 749 L 35 749 L 35 727 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-4)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 748.5906 L 129.35 748.5906 L 129.35 727.4813 L 35.45 727.4813 L 35.45 748.5906 z \\\"/><path clip-path=\\\"url(#clip4-4)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 746.5906 L 125.25 746.5906 L 125.25 728.4813 L 39.55 728.4813 L 39.55 746.5906 z \\\"/><path clip-path=\\\"url(#clip4-4)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 41.6461 746.5906 L 123.6461 746.5906 L 123.6461 736.5906 L 41.6461 736.5906 L 41.6461 746.5906 z \\\"/><g clip-path=\\\"url(#clip4-4)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 41.6461 739.2156)\\\" x=\\\"0 2.224 6.224 8.352 10.176 12.4 14.528 18.976 20.8 23.024 25.248 29.696 32.36 36.808 41.256 43.48 45.608 47.832 50.496 54.944 61.608 63.736 67.736 72.184 76.632 79.296\\\">Is it different from court</text></g><path clip-path=\\\"url(#clip4-4)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 56.4156 737.5359 L 108.4156 737.5359 L 108.4156 727.5359 L 56.4156 727.5359 L 56.4156 737.5359 z \\\"/><g clip-path=\\\"url(#clip4-4)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 56.4156 730.1609)\\\" x=\\\"0 4.448 8.896 13.344 15.472 17.296 21.744 24.408 28.408 30.536 32.76 35.424 37.248 41.696 43.52 47.52\\\">and jury trials?</text></g><clipPath id=\\\"clip4-5\\\"><path d=\\\"M 129 727 L 206 727 L 206 749 L 129 749 L 129 727 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-5)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 159.5461 739.2156)\\\" x=\\\"0 5.336 9.784 13.784\\\">Yes.</text></g><clipPath id=\\\"clip4-6\\\"><path d=\\\"M 205 727 L 573 727 L 573 749 L 205 749 L 205 727 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 739.2156)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 223.6351 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 226.6552 739.2156)\\\" x=\\\"0 4.448 8.896 13.344 16.008 17.832 22.28\\\">hearing</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 253.3896 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 256.4096 739.2156)\\\" x=\\\"0 1.824\\\">is</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.2338 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 265.2539 739.2156)\\\" x=\\\"0 4.448 7.112 8.936 12.936 17.384 19.608\\\">private</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 289.3125 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 292.3325 739.2156)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 305.6802 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 308.7002 739.2156)\\\" x=\\\"0 1.824 6.272 10.272\\\">less</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 322.9737 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 325.9937 739.2156)\\\" x=\\\"0 2.224 6.672 9.336 16 20.448\\\">formal</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.2672 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 351.2872 739.2156)\\\" x=\\\"0 2.224 6.672 11.12\\\">than</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 366.8575 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 369.8776 739.2156)\\\" x=\\\"0 4 8.448 12.896 15.56 17.784\\\">court.</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 389.8854 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 392.9055 739.2156)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608\\\">Arbiters</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 420.5148 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 423.5349 739.2156)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 438.6482 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 441.6682 739.2156)\\\" x=\\\"0 1.824 3.648 10.312 12.136\\\">limit</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.0276 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 459.0477 739.2156)\\\" x=\\\"0 4.448 7.112 11.56 14.224 18.672 23.12 27.568 30.232 32.056 36.504\\\">pre-hearing</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 500.0086 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 503.0286 739.2156)\\\" x=\\\"0 2.224 6.672 10.672\\\">fact</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 515.9232 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 518.9432 739.2156)\\\" x=\\\"0 2.224 4.048 8.496 12.944 14.768 19.216 23.664\\\">finding,</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 544.8338 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 547.8539 739.2156)\\\" x=\\\"0 4 8.448 10.272 12.096 16.544\\\">called</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 730.1609)\\\" x=\\\"0 2.84 7.288 9.112 13.112 17.112 21.56 25.56 30.008 32.672 36.672 38.896 41.736 43.864 48.752 53.2 57.648 59.776 64.224 68.672 72.672 74.496 78.496 80.32 84.768 89.216 91.344 93.168 97.168 99.296 101.52 103.344 107.792 112.24 114.064 116.288 118.416 124.192 128.64 133.088 135.752 137.976 141.976 144.104 146.768 151.216 153.88 158.328 160.152 164.152 166.28 170.728 174.728 179.176 181.84 184.064 188.512 191.176 195.624 197.752 203.088 205.752 210.2 212.024 214.248 218.696 221.36 225.36\\\">&quot;discovery.&quot; The decision is final. Courts rarely overturn Arbiters.</text></g><clipPath id=\\\"clip4-7\\\"><path d=\\\"M 35 706 L 130 706 L 130 728 L 35 728 L 35 706 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-7)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 727.4813 L 129.35 727.4813 L 129.35 706.3719 L 35.45 706.3719 L 35.45 727.4813 z \\\"/><path clip-path=\\\"url(#clip4-7)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 725.4813 L 125.25 725.4813 L 125.25 707.3719 L 39.55 707.3719 L 39.55 725.4813 z \\\"/><path clip-path=\\\"url(#clip4-7)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 44.2789 725.4813 L 121.2789 725.4813 L 121.2789 715.4813 L 44.2789 715.4813 L 44.2789 725.4813 z \\\"/><g clip-path=\\\"url(#clip4-7)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 44.2789 718.1062)\\\" x=\\\"0 7.552 12 16.448 18.576 23.024 27.472 31.92 35.92 38.048 40.272 44.72 49.168 51.296 57.072 58.896 63.344 67.792 71.792\\\">Who does the Clause</text></g><path clip-path=\\\"url(#clip4-7)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 70.3941 716.4266 L 95.3941 716.4266 L 95.3941 706.4266 L 70.3941 706.4266 L 70.3941 716.4266 z \\\"/><g clip-path=\\\"url(#clip4-7)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 70.3941 709.0516)\\\" x=\\\"0 4 8.448 12.448 16.896 19.56\\\">cover?</text></g><clipPath id=\\\"clip4-8\\\"><path d=\\\"M 129 706 L 206 706 L 206 728 L 129 728 L 129 706 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 144.5226 718.1062)\\\" x=\\\"0 5.336 9.784 14.232 16.456 18.584 24.36 28.36 30.584 32.712 37.16 41.608\\\">You, Us, and</text></g><g clip-path=\\\"url(#clip4-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 154.4348 709.0516)\\\" x=\\\"0 6.224 8.448 12.896 17.344 20.008 24.008\\\">Others.</text></g><clipPath id=\\\"clip4-9\\\"><path d=\\\"M 205 706 L 573 706 L 573 728 L 205 728 L 205 706 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 718.1062)\\\" x=\\\"0 4.888 9.336 11.16\\\">This</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.0101 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 228.5163 718.1062)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496\\\">Clause</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 253.4655 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 256.9716 718.1062)\\\" x=\\\"0 4.448 8.896 12.896 17.344 20.008 24.456\\\">governs</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 285.4326 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 288.9387 718.1062)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 300.0598 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 303.5659 718.1062)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056 24.056\\\">parties,</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.8472 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 333.3533 718.1062)\\\" x=\\\"0 2.224 6.672 11.12 12.944\\\">their</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.9627 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 352.4688 718.1062)\\\" x=\\\"0 4.448 8.896 10.72 13.384 17.384\\\">heirs,</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 372.0782 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 375.5844 718.1062)\\\" x=\\\"0 4 8.448 12.448 16.448 20.896 24.896 28.896 33.344 36.008 40.008\\\">successors,</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 417.8187 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 421.3249 718.1062)\\\" x=\\\"0 4.448 8.448 12.448 14.272 18.72 23.168 27.168\\\">assigns,</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 450.7194 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 454.2255 718.1062)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.5732 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 471.0793 718.1062)\\\" x=\\\"0 2.224 6.672 8.496 11.16\\\">third</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.6887 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 490.1949 718.1062)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056\\\">parties</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 514.2535 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 517.7596 718.1062)\\\" x=\\\"0 2.664 7.112 8.936 13.384 15.608 20.056\\\">related</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 542.2674 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 545.7735 718.1062)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.4454 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 555.9515 718.1062)\\\" x=\\\"0 4.448 8.896\\\">any</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 709.0516)\\\" x=\\\"0 5.776 7.6 11.6 16.048 20.496 22.72 27.168\\\">Dispute.</text></g><clipPath id=\\\"clip4-10\\\"><path d=\\\"M 35 630 L 130 630 L 130 707 L 35 707 L 35 630 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-10)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 706.3719 L 129.35 706.3719 L 129.35 630.9344 L 35.45 630.9344 L 35.45 706.3719 z \\\"/><path clip-path=\\\"url(#clip4-10)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 704.3719 L 125.25 704.3719 L 125.25 686.2625 L 39.55 686.2625 L 39.55 704.3719 z \\\"/><path clip-path=\\\"url(#clip4-10)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 47.7711 704.3719 L 117.7711 704.3719 L 117.7711 694.3719 L 47.7711 694.3719 L 47.7711 704.3719 z \\\"/><g clip-path=\\\"url(#clip4-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.7711 696.9969)\\\" x=\\\"0 7.552 12 13.824 17.824 22.272 24.4 30.176 32 36 40.448 44.896 47.12 51.568 55.568 57.696 62.144 64.808\\\">Which Disputes are</text></g><path clip-path=\\\"url(#clip4-10)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 65.9449 695.3172 L 98.9449 695.3172 L 98.9449 685.3172 L 65.9449 685.3172 L 65.9449 695.3172 z \\\"/><g clip-path=\\\"url(#clip4-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 65.9449 687.9422)\\\" x=\\\"0 4 8.448 12.448 16.896 19.56 24.008 28.456\\\">covered?</text></g><clipPath id=\\\"clip4-11\\\"><path d=\\\"M 129 630 L 206 630 L 206 707 L 129 707 L 129 630 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 145.298 696.9969)\\\" x=\\\"0 5.336 7.16 8.984 11.112 16.888 18.712 22.712 27.16 31.608 33.832 38.28 42.28\\\">All Disputes.</text></g><clipPath id=\\\"clip4-12\\\"><path d=\\\"M 205 630 L 573 630 L 573 707 L 205 707 L 205 630 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 696.9969)\\\" x=\\\"0 2.224\\\">In</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 216.5219 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 220.3165 696.9969)\\\" x=\\\"0 2.224 6.672 8.496\\\">this</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 232.8126 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 236.6072 696.9969)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496 24.944\\\">Clause,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 263.7791 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 267.5738 696.9969)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 278.6949 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 282.4895 696.9969)\\\" x=\\\"0 5.776 10.224 12.888\\\">word</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.8293 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 303.624 696.9969)\\\" x=\\\"0 2.84 8.616 10.44 14.44 18.888 23.336 25.56 30.008 34.008\\\">&quot;Disputes&quot;</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 340.4755 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 344.2702 696.9969)\\\" x=\\\"0 4.448 8.896\\\">has</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 357.1686 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 360.9633 696.9969)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 372.0844 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 375.879 696.9969)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456 24.904 28.904\\\">broadest</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 407.0118 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 410.8065 696.9969)\\\" x=\\\"0 4.448 8.896 12.896 16.896 18.72 23.168 24.992\\\">possible</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 440.2518 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 444.0464 696.9969)\\\" x=\\\"0 6.664 11.112 15.56 20.008 21.832 26.28 30.728\\\">meaning.</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 477.0034 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 480.7981 696.9969)\\\" x=\\\"0 4.888 9.336 11.16\\\">This</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 495.9582 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 499.7529 696.9969)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496\\\">Clause</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 524.7021 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 528.4968 696.9969)\\\" x=\\\"0 4.448 8.896 12.896 17.344 20.008 24.456\\\">governs</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 556.9577 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 560.7523 696.9969)\\\" x=\\\"0 4.448 6.272\\\">all</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 687.9422)\\\" x=\\\"0 2.84 8.616 10.44 14.44 18.888 23.336 25.56 30.008 34.008\\\">&quot;Disputes&quot;</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 246.7015 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 248.8785 687.9422)\\\" x=\\\"0 1.824 6.272 10.272 14.72 16.544 20.544 22.368 26.816\\\">involving</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.148 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 282.3249 687.9422)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 293.446 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 295.6229 687.9422)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056 24.056\\\">parties.</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 321.9041 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 324.081 687.9422)\\\" x=\\\"0 4.888 9.336 11.16\\\">This</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 339.2412 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 341.4181 687.9422)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44\\\">includes</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 370.8634 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 373.0403 687.9422)\\\" x=\\\"0 4.448 6.272\\\">all</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 381.1379 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 383.3148 687.9422)\\\" x=\\\"0 4 5.824 10.272 12.096 18.76\\\">claims</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 406.0765 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 408.2534 687.9422)\\\" x=\\\"0 4.448 8.448 12.896\\\">even</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 425.6011 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 427.778 687.9422)\\\" x=\\\"0 1.824 6.272 10.72 12.544 15.208 19.656 23.656 25.88 27.704\\\">indirectly</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 459.485 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 461.6619 687.9422)\\\" x=\\\"0 2.664 7.112 8.936 13.384 15.608 20.056\\\">related</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.1698 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 488.3466 687.9422)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 495.0185 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 497.1954 687.9422)\\\" x=\\\"0 4 8.448 12.896\\\">your</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.7579 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 514.9348 687.9422)\\\" x=\\\"0 4.448 8.896 13.344 15.168 16.992 20.992 25.44 27.664 29.488 33.936\\\">application</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.3254 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 555.5023 687.9422)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 678.8875)\\\" x=\\\"0 4.448 8.896 11.56 16.008 20.456 27.12 31.568 36.016 38.24\\\">agreements</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 252.0961 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 254.4013 678.8875)\\\" x=\\\"0 5.776 7.6 9.824\\\">with</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 268.6747 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 270.9799 678.8875)\\\" x=\\\"0 4.448 8.448\\\">us.</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.6518 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 283.957 678.8875)\\\" x=\\\"0 4.888 9.336 11.16\\\">This</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.1172 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 301.4224 678.8875)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44\\\">includes</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 330.8677 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 333.1729 678.8875)\\\" x=\\\"0 4 5.824 10.272 12.096 18.76\\\">claims</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.9346 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 358.2398 678.8875)\\\" x=\\\"0 2.664 7.112 8.936 13.384 15.608 20.056\\\">related</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 382.7477 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 385.0529 678.8875)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 391.7247 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 394.0299 678.8875)\\\" x=\\\"0 1.824 6.272 8.496 12.944 15.608 22.272 26.72 28.944 30.768 35.216\\\">information</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 433.6979 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 436.0031 678.8875)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 448.9016 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 451.2068 678.8875)\\\" x=\\\"0 4.448 7.112 11.56 15.56 17.384 21.832 26.28 30.28 32.104\\\">previously</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 487.3161 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 489.6213 678.8875)\\\" x=\\\"0 4.448 8.896 12.896\\\">gave</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 506.969 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 509.2742 678.8875)\\\" x=\\\"0 4.448 8.448\\\">us.</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 519.9461 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 522.2513 678.8875)\\\" x=\\\"0 2.224\\\">It</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.6966 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 529.0018 678.8875)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44\\\">includes</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 558.4471 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 560.7523 678.8875)\\\" x=\\\"0 4.448 6.272\\\">all</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 669.8328)\\\" x=\\\"0 4.448 8.896 12.896\\\">past</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 224.9711 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 227.1634 669.8328)\\\" x=\\\"0 4.448 8.896 11.56 16.008 20.456 27.12 31.568 36.016 38.24 42.24\\\">agreements.</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 271.6321 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 273.8245 669.8328)\\\" x=\\\"0 2.224\\\">It</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 278.2698 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 280.4621 669.8328)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44 29.44\\\">includes,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.13 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 314.3223 669.8328)\\\" x=\\\"0 4.448\\\">as</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 322.7716 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 324.9639 669.8328)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 340.0772 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 342.2695 669.8328)\\\" x=\\\"0 4.448\\\">be</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.1679 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 353.3602 669.8328)\\\" x=\\\"0 4.448 8.896 13.344 15.168 16.992 20.992 25.44 29.888 31.712 36.16\\\">applicable,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 391.7508 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 393.9431 669.8328)\\\" x=\\\"0 4.448 8.896\\\">any</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 406.8416 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 409.0339 669.8328)\\\" x=\\\"0 4.448 8.896 13.344 15.168 17.392 19.216 23.664 28.112 32.56\\\">additional</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 443.4245 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 445.6168 669.8328)\\\" x=\\\"0 4.448 8.896 11.56 13.384 17.832 22.28 26.28\\\">periods,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.1246 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 476.3169 669.8328)\\\" x=\\\"0 4.448 8.448 10.672 15.12 19.568 23.568 25.392 29.84 34.288 38.288\\\">extensions,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 516.8326 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 519.0249 669.8328)\\\" x=\\\"0 2.664 7.112 11.56 16.008 21.784 26.232 28.056 32.056\\\">renewals,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.31 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 555.5023 669.8328)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 660.7781)\\\" x=\\\"0 4.448 6.272 10.72 15.168 19.168\\\">plans.</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.2445 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 233.5225 660.7781)\\\" x=\\\"0 2.224\\\">It</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 237.9678 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 240.2458 660.7781)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44\\\">includes</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 269.6911 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 271.9691 660.7781)\\\" x=\\\"0 4 5.824 10.272 12.096 18.76\\\">claims</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 294.7308 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 297.0088 660.7781)\\\" x=\\\"0 2.664 7.112 8.936 13.384 15.608 20.056\\\">related</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 321.5167 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 323.7946 660.7781)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 330.4665 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 332.7445 660.7781)\\\" x=\\\"0 4.448 8.896 15.56 20.008 24.456 28.904\\\">damaged</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 366.1039 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 368.3819 660.7781)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456 23.12 25.344 29.344\\\">property,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 399.9522 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 402.2302 660.7781)\\\" x=\\\"0 4.448 8.896 12.896 17.344 21.792 24.016\\\">buyout,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 428.4724 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 430.7504 660.7781)\\\" x=\\\"0 2.664 7.112 8.936 13.384 17.384 19.608 24.056 26.28 30.728 37.392 41.84 46.288 48.512\\\">r* D E M O *t,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 481.4887 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 483.7667 660.7781)\\\" x=\\\"0 1.824 6.272 10.272 14.272\\\">loss,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 500.2627 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 502.5408 660.7781)\\\" x=\\\"0 4.448 8.896 15.56 20.008 24.456 28.904\\\">damage,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 533.6736 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 535.9516 660.7781)\\\" x=\\\"0 5.776 10.224 12.888 15.552 20 24.448 26.672 30.672\\\">warranty,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 651.7234)\\\" x=\\\"0 6.664 11.112 12.936 17.384 19.608 24.056 28.504 32.952 37.4 41.4 45.848\\\">maintenance,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.9281 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 260.595 651.7234)\\\" x=\\\"0 4 8.448 10.272 12.096 16.544 20.544 22.768 24.592 29.04 33.488\\\">collection,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 296.3099 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 298.9768 651.7234)\\\" x=\\\"0 4.448 8.896 12.896 16.896 21.344 25.344 29.344 31.168 35.616 40.064\\\">possession,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 341.2697 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 343.9366 651.7234)\\\" x=\\\"0 4.448 7.112 8.936 12.936 17.384 21.384 25.384\\\">privacy,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.546 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 374.2129 651.7234)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 387.5606 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 390.2275 651.7234)\\\" x=\\\"0 4 8.448 12.448 14.672 19.12 25.784 30.232\\\">customer</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 423.1259 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 425.7928 651.7234)\\\" x=\\\"0 1.824 6.272 8.496 12.944 15.608 22.272 26.72 28.944 30.768 35.216 39.664\\\">information.</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.6834 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 470.3503 651.7234)\\\" x=\\\"0 2.224\\\">It</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.7957 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 477.4626 651.7234)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44\\\">includes</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 506.9079 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 509.5748 651.7234)\\\" x=\\\"0 4 5.824 10.272 12.096 18.76\\\">claims</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 532.3365 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 535.0034 651.7234)\\\" x=\\\"0 2.664 7.112 8.936 13.384 15.608 20.056\\\">related</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.5112 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 562.1781 651.7234)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 642.6688)\\\" x=\\\"0 4 8.448 10.672 12.896 14.72 19.168\\\">setting</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.4672 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 236.1411 642.6688)\\\" x=\\\"0 4.448 8.448 10.272 14.72\\\">aside</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 255.313 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 257.987 642.6688)\\\" x=\\\"0 2.224 6.672 8.496\\\">this</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 270.4831 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 273.157 642.6688)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496 24.944\\\">Clause.</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 300.3289 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 303.0029 642.6688)\\\" x=\\\"0 2.224\\\">It</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 307.4482 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 310.1221 642.6688)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44\\\">includes</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 339.5674 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 342.2414 642.6688)\\\" x=\\\"0 4 5.824 10.272 12.096 18.76\\\">claims</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 365.0031 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 367.6771 642.6688)\\\" x=\\\"0 4.448 8.896 13.344 17.792\\\">about</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 387.6966 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 390.3706 642.6688)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 401.4917 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 404.1656 642.6688)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496 24.944 26.472\\\">Clause&apos;s</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.6422 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 437.3161 642.6688)\\\" x=\\\"0 4 8.448 10.272 12.096 16.544 18.368 20.592\\\">validity</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 461.9099 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 464.5838 642.6688)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 477.9315 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 480.6055 642.6688)\\\" x=\\\"0 4 8 12.448 16.896 21.344\\\">scope.</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 504.1758 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 506.8497 642.6688)\\\" x=\\\"0 2.224\\\">It</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 511.295 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 513.969 642.6688)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44\\\">includes</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 543.4143 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 546.0883 642.6688)\\\" x=\\\"0 4 5.824 10.272 12.096 18.76\\\">claims</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 633.6141)\\\" x=\\\"0 4.448 8.896 13.344 17.792 20.016 22.144 27.92 32.368 36.816 39.04 43.488 47.936 50.6 52.728 54.952 59.4 61.528 65.976 68.64 73.088 74.912 77.136 79.8 84.248 86.472 90.92\\\">about whether to arbitrate.</text></g><clipPath id=\\\"clip4-13\\\"><path d=\\\"M 35 578 L 130 578 L 130 631 L 35 631 L 35 578 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-13)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 630.9344 L 129.35 630.9344 L 129.35 578.6609 L 35.45 578.6609 L 35.45 630.9344 z \\\"/><path clip-path=\\\"url(#clip4-13)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 628.9344 L 125.25 628.9344 L 125.25 619.8797 L 39.55 619.8797 L 39.55 628.9344 z \\\"/><path clip-path=\\\"url(#clip4-13)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 41.1227 628.9344 L 124.1227 628.9344 L 124.1227 618.9344 L 41.1227 618.9344 L 41.1227 628.9344 z \\\"/><g clip-path=\\\"url(#clip4-13)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 41.1227 621.5594)\\\" x=\\\"0 5.336 8 12.448 14.576 18.576 23.024 27.472 29.6 35.376 39.824 41.648 45.648 47.472 51.92 56.368 58.496 61.16 62.984 67.432 71.88 74.104 78.104\\\">Are you waiving rights?</text></g><clipPath id=\\\"clip4-14\\\"><path d=\\\"M 129 578 L 206 578 L 206 631 L 129 631 L 129 578 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-14)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 159.5461 621.5594)\\\" x=\\\"0 5.336 9.784 13.784\\\">Yes.</text></g><clipPath id=\\\"clip4-15\\\"><path d=\\\"M 205 578 L 573 578 L 573 631 L 205 631 L 205 578 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-15)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 621.5594)\\\" x=\\\"0 5.336 9.784 14.232\\\">You </text></g><g clip-path=\\\"url(#clip4-15)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 225.85 621.5594)\\\" x=\\\"0 5.776 10.224 12.048 16.048\\\">waive</text></g><path clip-path=\\\"url(#clip4-15)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 225.85 620.213 L 225.85 620.213 L 245.85 620.213 L 246.1833 620.213 L 246.1833 619.5464 L 245.85 619.5464 L 225.85 619.5464 L 225.5167 619.5464 L 225.5167 620.213 z \\\"/><g clip-path=\\\"url(#clip4-15)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.85 621.5594)\\\" x=\\\"0 2.128 6.128 10.576 15.024 17.688 19.816 22.48 24.304 28.752 33.2 35.424 39.424 41.552 43.776 48.224\\\"> your rights to:</text></g><g clip-path=\\\"url(#clip4-15)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 611.5047)\\\" x=\\\"0 4.448 6.672 8.8 14.576 19.024 23.024 27.472 29.6 31.424 35.872 38.536 40.36 44.808 48.808 50.936 54.936 59.384 61.208 65.208 69.656 71.784 77.56 79.384 83.384 87.832 92.28 94.504 98.952 102.952\\\">1. Have juries solve Disputes.</text></g><g clip-path=\\\"url(#clip4-15)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 601.45)\\\" x=\\\"0 4.448 6.672 8.8 14.576 19.024 23.024 27.472 29.6 33.6 38.048 42.496 45.16 47.384 51.384 53.608 55.736 60.184 62.408 66.856 71.304 73.968 76.096 78.32 82.768 87.216 91.664 93.792 97.792 104.456 108.904 110.728 112.552 115.216 119.216 121.04 125.488 127.312 133.976 137.976 140.104 144.104 148.552 153 155.664 157.888 161.888 164.112 166.24 170.24 174.688 176.512 180.512 184.96 187.088 192.864 194.688 198.688 203.136 207.584 209.808 214.256 218.256\\\">2. Have courts, other than small-claims courts, solve Disputes.</text></g><g clip-path=\\\"url(#clip4-15)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 591.3953)\\\" x=\\\"0 4.448 6.672 8.8 14.136 18.584 21.248 25.248 29.696 31.824 36.272 40.272 42.4 46.848 48.976 53.424 56.088 57.912 61.912 66.36 68.584 73.032 75.16 79.608 81.832 84.056 88.504 91.168 95.616 100.064 104.064 106.192 110.64 115.088 119.536 123.984 126.648 131.096 132.92 135.048 139.496 142.16 144.288 146.112 150.56 152.688 157.136 159.264 161.928 166.376 170.824 173.488 177.936 181.936 186.384 190.832 193.056 197.504 199.728 201.552 205.552 210 212.128 216.128 220.576 225.024 229.472 233.472 235.296 237.52 241.52\\\">3. Serve as a private attorney general or in a* D E M O *tive capacity.</text></g><g clip-path=\\\"url(#clip4-15)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 581.3406)\\\" x=\\\"0 4.448 6.672 8.8 14.136 18.584 20.712 22.536 26.984 29.112 33.56 35.688 39.688 41.512 45.96 49.96 53.96 56.088 60.536 64.536 66.76 68.584 73.032 77.48\\\">4. Be in a class action.</text></g><clipPath id=\\\"clip4-16\\\"><path d=\\\"M 35 530 L 130 530 L 130 579 L 35 579 L 35 530 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-16)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 578.6609 L 129.35 578.6609 L 129.35 530.3875 L 35.45 530.3875 L 35.45 578.6609 z \\\"/><path clip-path=\\\"url(#clip4-16)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 576.6609 L 125.25 576.6609 L 125.25 558.5516 L 39.55 558.5516 L 39.55 576.6609 z \\\"/><path clip-path=\\\"url(#clip4-16)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 44.0152 576.6609 L 121.0152 576.6609 L 121.0152 566.6609 L 44.0152 566.6609 L 44.0152 576.6609 z \\\"/><g clip-path=\\\"url(#clip4-16)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 44.0152 569.2859)\\\" x=\\\"0 5.336 8 12.448 14.576 18.576 23.024 27.472 29.6 35.376 39.824 41.648 45.648 47.472 51.92 56.368 58.496 62.496 64.32 68.768 72.768\\\">Are you waiving class</text></g><path clip-path=\\\"url(#clip4-16)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 58.6109 567.6063 L 106.6109 567.6063 L 106.6109 557.6063 L 58.6109 557.6063 L 58.6109 567.6063 z \\\"/><g clip-path=\\\"url(#clip4-16)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 58.6109 560.2312)\\\" x=\\\"0 4.448 8.448 10.672 12.496 16.944 21.392 23.52 26.184 28.008 32.456 36.904 39.128 43.128\\\">action rights?</text></g><clipPath id=\\\"clip4-17\\\"><path d=\\\"M 129 530 L 206 530 L 206 579 L 129 579 L 129 530 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-17)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 159.5461 569.2859)\\\" x=\\\"0 5.336 9.784 13.784\\\">Yes.</text></g><clipPath id=\\\"clip4-18\\\"><path d=\\\"M 205 530 L 573 530 L 573 579 L 205 579 L 205 530 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 569.2859)\\\" x=\\\"0 5.7774 12 17.7774 23.5547 28.4414\\\">COURTS</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 243.6273 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 245.7523 569.2859)\\\" x=\\\"0 5.3359 11.1133\\\">AND</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.643 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 264.768 569.2859)\\\" x=\\\"0 5.3359 11.1133 16.4492 18.6719 23.5586 28.8945 34.6719\\\">ARBITERS</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 304.7758 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 306.9008 569.2859)\\\" x=\\\"0\\\">W</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 306.9008 567.9396 L 306.9008 567.9396 L 314.9008 567.9396 L 315.2341 567.9396 L 315.2341 567.2729 L 314.9008 567.2729 L 306.9008 567.2729 L 306.5674 567.2729 L 306.5674 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 314.4515 569.2859)\\\" x=\\\"0\\\">O</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 314.4515 567.9396 L 314.4515 567.9396 L 320.4515 567.9396 L 320.7849 567.9396 L 320.7849 567.2729 L 320.4515 567.2729 L 314.4515 567.2729 L 314.1182 567.2729 L 314.1182 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 320.6742 569.2859)\\\" x=\\\"0\\\">N</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 320.6742 567.9396 L 320.6742 567.9396 L 326.6742 567.9396 L 327.0075 567.9396 L 327.0075 567.2729 L 326.6742 567.2729 L 320.6742 567.2729 L 320.3409 567.2729 L 320.3409 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 326.4515 569.2859)\\\" x=\\\"0\\\">&apos;</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 326.4515 567.9396 L 326.4515 567.9396 L 328.4515 567.9396 L 328.7849 567.9396 L 328.7849 567.2729 L 328.4515 567.2729 L 326.4515 567.2729 L 326.1182 567.2729 L 326.1182 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 327.9789 569.2859)\\\" x=\\\"0\\\">T</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 327.9789 567.9396 L 327.9789 567.9396 L 332.9789 567.9396 L 333.3122 567.9396 L 333.3122 567.2729 L 332.9789 567.2729 L 327.9789 567.2729 L 327.6456 567.2729 L 327.6456 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 332.8656 569.2859)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 332.8656 567.9396 L 332.8656 567.9396 L 334.8656 567.9396 L 335.1989 567.9396 L 335.1989 567.2729 L 334.8656 567.2729 L 332.8656 567.2729 L 332.5323 567.2729 L 332.5323 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 334.9906 569.2859)\\\" x=\\\"0\\\">A</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 334.9906 567.9396 L 334.9906 567.9396 L 339.9906 567.9396 L 340.3239 567.9396 L 340.3239 567.2729 L 339.9906 567.2729 L 334.9906 567.2729 L 334.6573 567.2729 L 334.6573 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 340.3265 569.2859)\\\" x=\\\"0\\\">L</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 340.3265 567.9396 L 340.3265 567.9396 L 344.3265 567.9396 L 344.6599 567.9396 L 344.6599 567.2729 L 344.3265 567.2729 L 340.3265 567.2729 L 339.9932 567.2729 L 339.9932 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 344.7758 569.2859)\\\" x=\\\"0\\\">L</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 344.7758 567.9396 L 344.7758 567.9396 L 348.7758 567.9396 L 349.1091 567.9396 L 349.1091 567.2729 L 348.7758 567.2729 L 344.7758 567.2729 L 344.4424 567.2729 L 344.4424 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 349.225 569.2859)\\\" x=\\\"0\\\">O</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 349.225 567.9396 L 349.225 567.9396 L 355.225 567.9396 L 355.5583 567.9396 L 355.5583 567.2729 L 355.225 567.2729 L 349.225 567.2729 L 348.8917 567.2729 L 348.8917 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 355.4477 569.2859)\\\" x=\\\"0\\\">W</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 355.4477 567.9396 L 355.4477 567.9396 L 363.4477 567.9396 L 363.781 567.9396 L 363.781 567.2729 L 363.4477 567.2729 L 355.4477 567.2729 L 355.1143 567.2729 L 355.1143 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 362.9984 569.2859)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 362.9984 567.9396 L 362.9984 567.9396 L 364.9984 567.9396 L 365.3318 567.9396 L 365.3318 567.2729 L 364.9984 567.2729 L 362.9984 567.2729 L 362.6651 567.2729 L 362.6651 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 365.1234 569.2859)\\\" x=\\\"0\\\">C</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 365.1234 567.9396 L 365.1234 567.9396 L 371.1234 567.9396 L 371.4568 567.9396 L 371.4568 567.2729 L 371.1234 567.2729 L 365.1234 567.2729 L 364.7901 567.2729 L 364.7901 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 370.9008 569.2859)\\\" x=\\\"0\\\">L</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 370.9008 567.9396 L 370.9008 567.9396 L 374.9008 567.9396 L 375.2341 567.9396 L 375.2341 567.2729 L 374.9008 567.2729 L 370.9008 567.2729 L 370.5674 567.2729 L 370.5674 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 375.35 569.2859)\\\" x=\\\"0\\\">A</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 375.35 567.9396 L 375.35 567.9396 L 380.35 567.9396 L 380.6833 567.9396 L 380.6833 567.2729 L 380.35 567.2729 L 375.35 567.2729 L 375.0167 567.2729 L 375.0167 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 380.6859 569.2859)\\\" x=\\\"0\\\">S</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 380.6859 567.9396 L 380.6859 567.9396 L 385.6859 567.9396 L 386.0193 567.9396 L 386.0193 567.2729 L 385.6859 567.2729 L 380.6859 567.2729 L 380.3526 567.2729 L 380.3526 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 386.0219 569.2859)\\\" x=\\\"0\\\">S</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 386.0219 567.9396 L 386.0219 567.9396 L 391.0219 567.9396 L 391.3552 567.9396 L 391.3552 567.2729 L 391.0219 567.2729 L 386.0219 567.2729 L 385.6885 567.2729 L 385.6885 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 391.3578 569.2859)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 391.3578 567.9396 L 391.3578 567.9396 L 393.3578 567.9396 L 393.6911 567.9396 L 393.6911 567.2729 L 393.3578 567.2729 L 391.3578 567.2729 L 391.0245 567.2729 L 391.0245 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 393.4828 569.2859)\\\" x=\\\"0\\\">A</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 393.4828 567.9396 L 393.4828 567.9396 L 398.4828 567.9396 L 398.8161 567.9396 L 398.8161 567.2729 L 398.4828 567.2729 L 393.4828 567.2729 L 393.1495 567.2729 L 393.1495 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 398.8187 569.2859)\\\" x=\\\"0\\\">C</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 398.8187 567.9396 L 398.8187 567.9396 L 404.8187 567.9396 L 405.1521 567.9396 L 405.1521 567.2729 L 404.8187 567.2729 L 398.8187 567.2729 L 398.4854 567.2729 L 398.4854 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 404.5961 569.2859)\\\" x=\\\"0\\\">T</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 404.5961 567.9396 L 404.5961 567.9396 L 409.5961 567.9396 L 409.9294 567.9396 L 409.9294 567.2729 L 409.5961 567.2729 L 404.5961 567.2729 L 404.2628 567.2729 L 404.2628 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 409.4828 569.2859)\\\" x=\\\"0\\\">I</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 409.4828 567.9396 L 409.4828 567.9396 L 411.4828 567.9396 L 411.8161 567.9396 L 411.8161 567.2729 L 411.4828 567.2729 L 409.4828 567.2729 L 409.1495 567.2729 L 409.1495 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 411.7055 569.2859)\\\" x=\\\"0\\\">O</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 411.7055 567.9396 L 411.7055 567.9396 L 417.7055 567.9396 L 418.0388 567.9396 L 418.0388 567.2729 L 417.7055 567.2729 L 411.7055 567.2729 L 411.3721 567.2729 L 411.3721 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 417.9281 569.2859)\\\" x=\\\"0\\\">N</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 417.9281 567.9396 L 417.9281 567.9396 L 423.9281 567.9396 L 424.2614 567.9396 L 424.2614 567.2729 L 423.9281 567.2729 L 417.9281 567.2729 L 417.5948 567.2729 L 417.5948 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 423.7055 569.2859)\\\" x=\\\"0\\\">S</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 423.7055 567.9396 L 423.7055 567.9396 L 428.7055 567.9396 L 429.0388 567.9396 L 429.0388 567.2729 L 428.7055 567.2729 L 423.7055 567.2729 L 423.3721 567.2729 L 423.3721 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 429.0414 569.2859)\\\" x=\\\"0\\\">.</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 429.0414 567.9396 L 429.0414 567.9396 L 431.0414 567.9396 L 431.3747 567.9396 L 431.3747 567.2729 L 431.0414 567.2729 L 429.0414 567.2729 L 428.7081 567.2729 L 428.7081 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 431.264 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 433.389 569.2859)\\\" x=\\\"0 5.3359 9.7852\\\">You</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.6234 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 449.7484 569.2859)\\\" x=\\\"0\\\">w</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 449.7484 567.9396 L 449.7484 567.9396 L 455.7484 567.9396 L 456.0818 567.9396 L 456.0818 567.2729 L 455.7484 567.2729 L 449.7484 567.2729 L 449.4151 567.2729 L 449.4151 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 455.5258 569.2859)\\\" x=\\\"0\\\">a</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 455.5258 567.9396 L 455.5258 567.9396 L 459.5258 567.9396 L 459.8591 567.9396 L 459.8591 567.2729 L 459.5258 567.2729 L 455.5258 567.2729 L 455.1924 567.2729 L 455.1924 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 459.975 569.2859)\\\" x=\\\"0\\\">i</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 459.975 567.9396 L 459.975 567.9396 L 461.975 567.9396 L 462.3083 567.9396 L 462.3083 567.2729 L 461.975 567.2729 L 459.975 567.2729 L 459.6417 567.2729 L 459.6417 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 461.7992 569.2859)\\\" x=\\\"0\\\">v</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 461.7992 567.9396 L 461.7992 567.9396 L 465.7992 567.9396 L 466.1325 567.9396 L 466.1325 567.2729 L 465.7992 567.2729 L 461.7992 567.2729 L 461.4659 567.2729 L 461.4659 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 465.7992 569.2859)\\\" x=\\\"0\\\">e</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 465.7992 567.9396 L 465.7992 567.9396 L 469.7992 567.9396 L 470.1325 567.9396 L 470.1325 567.2729 L 469.7992 567.2729 L 465.7992 567.2729 L 465.4659 567.2729 L 465.4659 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 470.2484 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 472.3734 569.2859)\\\" x=\\\"0 4 8.4492 12.8984\\\">your</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 487.9359 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 490.0609 569.2859)\\\" x=\\\"0 2.6641 4.4883 8.9375 13.3867 15.6094\\\">rights</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.6703 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 511.7953 569.2859)\\\" x=\\\"0 2.2227\\\">to</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 518.4672 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 520.5922 569.2859)\\\" x=\\\"0 4.4492\\\">be</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.4906 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 531.6156 569.2859)\\\" x=\\\"0 1.8242\\\">in</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 537.889 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 540.014 569.2859)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 544.4633 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 546.5883 569.2859)\\\" x=\\\"0\\\">c</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 546.5883 567.9396 L 546.5883 567.9396 L 550.5883 567.9396 L 550.9216 567.9396 L 550.9216 567.2729 L 550.5883 567.2729 L 546.5883 567.2729 L 546.2549 567.2729 L 546.2549 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 550.5883 569.2859)\\\" x=\\\"0\\\">l</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 550.5883 567.9396 L 550.5883 567.9396 L 552.5883 567.9396 L 552.9216 567.9396 L 552.9216 567.2729 L 552.5883 567.2729 L 550.5883 567.2729 L 550.2549 567.2729 L 550.2549 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 552.4125 569.2859)\\\" x=\\\"0\\\">a</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 552.4125 567.9396 L 552.4125 567.9396 L 556.4125 567.9396 L 556.7458 567.9396 L 556.7458 567.2729 L 556.4125 567.2729 L 552.4125 567.2729 L 552.0792 567.2729 L 552.0792 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 556.8617 569.2859)\\\" x=\\\"0\\\">s</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 556.8617 567.9396 L 556.8617 567.9396 L 560.8617 567.9396 L 561.1951 567.9396 L 561.1951 567.2729 L 560.8617 567.2729 L 556.8617 567.2729 L 556.5284 567.2729 L 556.5284 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 560.8617 569.2859)\\\" x=\\\"0\\\">s</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 560.8617 567.9396 L 560.8617 567.9396 L 564.8617 567.9396 L 565.1951 567.9396 L 565.1951 567.2729 L 564.8617 567.2729 L 560.8617 567.2729 L 560.5284 567.2729 L 560.5284 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 560.2312)\\\" x=\\\"0\\\">a</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 209.85 558.8849 L 209.85 558.8849 L 213.85 558.8849 L 214.1833 558.8849 L 214.1833 558.2182 L 213.85 558.2182 L 209.85 558.2182 L 209.5167 558.2182 L 209.5167 558.8849 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 214.2992 560.2312)\\\" x=\\\"0\\\">c</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 214.2992 558.8849 L 214.2992 558.8849 L 218.2992 558.8849 L 218.6325 558.8849 L 218.6325 558.2182 L 218.2992 558.2182 L 214.2992 558.2182 L 213.9659 558.2182 L 213.9659 558.8849 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 218.2992 560.2312)\\\" x=\\\"0\\\">t</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 218.2992 558.8849 L 218.2992 558.8849 L 220.2992 558.8849 L 220.6325 558.8849 L 220.6325 558.2182 L 220.2992 558.2182 L 218.2992 558.2182 L 217.9659 558.2182 L 217.9659 558.8849 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 220.5219 560.2312)\\\" x=\\\"0\\\">i</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 220.5219 558.8849 L 220.5219 558.8849 L 222.5219 558.8849 L 222.8552 558.8849 L 222.8552 558.2182 L 222.5219 558.2182 L 220.5219 558.2182 L 220.1885 558.2182 L 220.1885 558.8849 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 222.3461 560.2312)\\\" x=\\\"0\\\">o</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 222.3461 558.8849 L 222.3461 558.8849 L 226.3461 558.8849 L 226.6794 558.8849 L 226.6794 558.2182 L 226.3461 558.2182 L 222.3461 558.2182 L 222.0128 558.2182 L 222.0128 558.8849 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 226.7953 560.2312)\\\" x=\\\"0\\\">n</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 226.7953 558.8849 L 226.7953 558.8849 L 230.7953 558.8849 L 231.1286 558.8849 L 231.1286 558.2182 L 230.7953 558.2182 L 226.7953 558.2182 L 226.462 558.2182 L 226.462 558.8849 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 231.2445 560.2312)\\\" x=\\\"0\\\">,</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.4672 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 235.5922 560.2312)\\\" x=\\\"0 4.4492\\\">as</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 244.0414 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 246.1664 560.2312)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 250.6156 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 252.7406 560.2312)\\\" x=\\\"0 2.6641 7.1133 11.5625 14.2266 18.6758 22.6758 27.125 31.5742 33.7969 38.2461 40.4688 42.293 46.293\\\">representative</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 303.4828 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 305.6078 560.2312)\\\" x=\\\"0 4.4492 8.8984\\\">and</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 318.9555 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 321.0805 560.2312)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 325.5297 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 327.6547 560.2312)\\\" x=\\\"0 6.6641 11.1133 17.7773 22.2266 26.6758 29.3398\\\">member.</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.2172 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 361.3422 560.2312)\\\" x=\\\"0 6.2227 10.6719 12.4961\\\">Only</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 377.8383 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 379.9633 560.2312)\\\" x=\\\"0 1.8242 6.2734 10.7227 12.5469 16.5469 18.3711 22.8203 27.2695 31.7188\\\">individual</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 413.5062 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 415.6312 560.2312)\\\" x=\\\"0 4.4492 7.1133 11.5625 13.3867 15.6094 18.2734 22.7227 24.9453 26.7695 31.2188 35.668\\\">arbitration,</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 453.5219 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 455.6469 560.2312)\\\" x=\\\"0 4.4492\\\">or</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 462.7601 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 464.8851 560.2312)\\\" x=\\\"0 4 10.6641 15.1133 16.9375 18.7617 21.4258 25.4258 27.25 31.6992 33.5234 40.1875\\\">small-claims</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.0727 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 511.1977 560.2312)\\\" x=\\\"0 4 8.4492 12.8984 15.5625 17.7851 21.7851\\\">courts,</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 535.2055 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 537.3305 560.2312)\\\" x=\\\"0 5.7773 7.6016 9.4258\\\">will</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 551.1766)\\\" x=\\\"0 4 8.4492 10.2734 14.2734\\\">solve</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 228.5726 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 230.6976 551.1766)\\\" x=\\\"0 5.7773 7.6016 11.6016 16.0508 20.5 22.7227 27.1719 31.1719\\\">Disputes.</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 264.0922 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 266.2172 551.1766)\\\" x=\\\"0 5.3359 9.7852\\\">You</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.4515 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 282.5765 551.1766)\\\" x=\\\"0 5.7774 10.2266 12.0508 16.0508\\\">waive</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 303.0765 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 304.9015 551.1766)\\\" x=\\\"0 4 8.4492 12.8984\\\">your</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 320.464 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 322.289 551.1766)\\\" x=\\\"0 2.6641 4.4883 8.9375 13.3867\\\">right</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 337.8984 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 339.7234 551.1766)\\\" x=\\\"0 2.2227\\\">to</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 346.3953 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 348.2203 551.1766)\\\" x=\\\"0 4.4492 8.8984 12.8984\\\">have</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 365.568 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 367.393 551.1766)\\\" x=\\\"0 2.6641 7.1133 11.5625 14.2266 18.6758 22.6758 27.125 31.5742 33.7969 38.2461 40.4687 42.293 46.293\\\">representative</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 418.1351 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 419.9601 551.1766)\\\" x=\\\"0 4 5.8242 10.2734 12.0977 18.7617 22.7617\\\">claims.</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 444.9445 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 446.7695 551.1766)\\\" x=\\\"0 5.7774 10.2266 12.0508 16.5 20.5\\\">Unless</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 471.2695 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 473.0945 551.1766)\\\" x=\\\"0 2.6641 7.1133 11.1133 15.5625 18.2266 22.2266 26.6758\\\">reversed</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 504.2195 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 506.0445 551.1766)\\\" x=\\\"0 4.4492\\\">on</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 514.943 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 516.768 551.1766)\\\" x=\\\"0 4.4492 8.8984 13.3477 17.7969 22.2461 24.0703\\\">appeal,</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 543.0609 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 544.8859 551.1766)\\\" x=\\\"0 1.8242\\\">if</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 548.9328 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 550.7578 551.1766)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 542.1219)\\\" x=\\\"0 4 8.4492 12.8984 15.5625\\\">court</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 227.6351 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 229.4601 542.1219)\\\" x=\\\"0 1.8242 6.2734 10.2734 14.7227 16.5469 18.3711 22.8203 27.2695 29.4922 33.9414\\\">invalidates</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 267.4015 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 269.2265 542.1219)\\\" x=\\\"0 2.2227 6.6719 8.4961\\\">this</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.7226 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 283.5477 542.1219)\\\" x=\\\"0 5.7773 10.2266 12.0508 16.0508 20.5 23.1641\\\">waiver,</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.9344 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 310.7594 542.1219)\\\" x=\\\"0 2.2226 6.6719 11.1211\\\">then</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 326.3297 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 328.4547 542.1219)\\\" x=\\\"0 2.2227 6.6719\\\">the</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 339.5758 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 341.4008 542.1219)\\\" x=\\\"0 4.4492 8.8984 11.5625 16.0117 20.4609 27.125 31.5742 36.0234\\\">agreement</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 379.6469 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 381.4719 542.1219)\\\" x=\\\"0 2.2227\\\">to</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.1437 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 389.9687 542.1219)\\\" x=\\\"0 4.4492 7.1133 11.5625 13.3867 15.6094 18.2734 22.7227 24.9453\\\">arbitrate</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.3633 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 421.1883 542.1219)\\\" x=\\\"0 5.7774 7.6016 9.4258\\\">will</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 432.4383 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 434.2633 542.1219)\\\" x=\\\"0 4.4492\\\">be</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 443.1617 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 444.9867 542.1219)\\\" x=\\\"0 4 8.4492 10.2734 14.7227\\\">void,</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 461.932 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 463.757 542.1219)\\\" x=\\\"0 4.4492 8.8984\\\">and</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 477.1047 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 478.9297 542.1219)\\\" x=\\\"0 5.7773 7.6016 11.6016 16.0508 20.5 22.7227 27.1719\\\">Disputes</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 510.1016 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 511.9266 542.1219)\\\" x=\\\"0 5.7773 7.6016 9.4258\\\">will</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 523.1766 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 525.0016 542.1219)\\\" x=\\\"0 4.4492\\\">be</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 533.9 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 535.725 542.1219)\\\" x=\\\"0 2.6641 7.1133 11.1133 15.5625 17.3867 21.3867 25.8359\\\">resolved</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 533.0672)\\\" x=\\\"0 4.4492\\\">by</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 218.2992 533.0672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 220.1242 533.0672)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 224.5734 533.0672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 226.3984 533.0672)\\\" x=\\\"0 1.8242 6.2734 10.7227 15.1719 19.6211\\\">judge,</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 248.2422 533.0672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 250.0672 533.0672)\\\" x=\\\"0 4.4492 8.8984\\\">but</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 261.1883 533.0672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 263.0133 533.0672)\\\" x=\\\"0 4.4492 8.8984\\\">not</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 274.1344 533.0672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 275.9594 533.0672)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.4086 533.0672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 282.2336 533.0672)\\\" x=\\\"0 1.8242 6.2734 8.9375 12.9375\\\">jury.</text></g><clipPath id=\\\"clip4-19\\\"><path d=\\\"M 35 491 L 130 491 L 130 531 L 35 531 L 35 491 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-19)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 530.3875 L 129.35 530.3875 L 129.35 491.1688 L 35.45 491.1688 L 35.45 530.3875 z \\\"/><path clip-path=\\\"url(#clip4-19)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 528.3875 L 125.25 528.3875 L 125.25 519.3328 L 39.55 519.3328 L 39.55 528.3875 z \\\"/><path clip-path=\\\"url(#clip4-19)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 49.9664 528.3875 L 114.9664 528.3875 L 114.9664 518.3875 L 49.9664 518.3875 L 49.9664 528.3875 z \\\"/><g clip-path=\\\"url(#clip4-19)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 49.9664 521.0125)\\\" x=\\\"0 7.552 12 16.448 18.672 20.8 22.624 27.072 32.848 34.976 39.424 43.872 48.32 50.144 51.968 56.416 60.416\\\">What law applies?</text></g><clipPath id=\\\"clip4-20\\\"><path d=\\\"M 129 491 L 206 491 L 206 531 L 129 531 L 129 491 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-20)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.009 521.0125)\\\" x=\\\"0 4.888 9.336 13.784 15.912 20.8 25.248 29.696 34.144 36.808 41.256\\\">The Federal</text></g><g clip-path=\\\"url(#clip4-20)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 142.4308 511.9578)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 19.16 23.608 25.832 27.656 32.104 36.552 38.68 44.016 48.016\\\">Arbitration Act</text></g><g clip-path=\\\"url(#clip4-20)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 153.1555 502.9031)\\\" x=\\\"0 2.664 5.504 10.392 15.728 21.064 23.904 26.568\\\">(&quot;FAA&quot;).</text></g><clipPath id=\\\"clip4-21\\\"><path d=\\\"M 205 491 L 573 491 L 573 531 L 205 531 L 205 491 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 521.0125)\\\" x=\\\"0 4.888 9.336 11.16\\\">This</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.0101 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 228.9725 521.0125)\\\" x=\\\"0 2.224 4.888 9.336 13.784 17.784 22.232 26.232 28.456 30.28 34.728\\\">transaction</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 268.1522 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 272.1145 521.0125)\\\" x=\\\"0 1.824 6.272 10.272 14.72 16.544 20.544 24.992\\\">involves</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 301.1106 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 305.0729 521.0125)\\\" x=\\\"0 1.824 6.272 8.496 12.944 15.608 19.608 21.832 26.28 28.504\\\">interstate</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.026 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 341.9884 521.0125)\\\" x=\\\"0 4 8.448 15.112 21.776 26.224 28.888 32.888 37.336\\\">commerce.</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 381.5509 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 385.5132 521.0125)\\\" x=\\\"0 4.888 9.336 13.784 17.784\\\">Thus,</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 405.521 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 409.4834 521.0125)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 420.6045 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 424.5668 521.0125)\\\" x=\\\"0 4.888 10.224\\\">FAA</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 440.1254 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 444.0877 521.0125)\\\" x=\\\"0 4.448 8.896 12.896 17.344 20.008 24.456 28.456\\\">governs.</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.7713 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 478.7336 521.0125)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 483.179 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 487.1413 521.0125)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 491.5905 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 495.5528 521.0125)\\\" x=\\\"0 4 8.448 12.896 15.56\\\">court</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 513.338 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 517.3003 521.0125)\\\" x=\\\"0 2.224 4.048 8.496 12.944\\\">finds</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 534.2456 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 538.208 521.0125)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.3291 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 553.2914 521.0125)\\\" x=\\\"0 4.888 10.224\\\">FAA</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 511.9578)\\\" x=\\\"0 4.448 8.896 13.344 17.344 21.792 23.32\\\">doesn&apos;t</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 235.3969 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 237.5853 511.9578)\\\" x=\\\"0 4.448 8.896 13.344 15.168 19.168\\\">apply,</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 258.9798 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 261.1682 511.9578)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 274.5159 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 276.7043 511.9578)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 287.8254 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 290.0138 511.9578)\\\" x=\\\"0 2.224 4.048 8.496 12.944 14.768 19.216\\\">finding</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 313.6818 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 315.8702 511.9578)\\\" x=\\\"0 4 8.448 12.896 14.424\\\">can&apos;t</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 332.5186 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 334.7071 511.9578)\\\" x=\\\"0 4.448\\\">be</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 343.6055 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 345.7939 511.9578)\\\" x=\\\"0 4.448 8.896 13.344 17.792 22.24 24.064 28.512 32.96\\\">appealed,</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.9853 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 383.1737 511.9578)\\\" x=\\\"0 2.224 6.672 11.12\\\">then</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 398.7441 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 400.9325 511.9578)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 412.0536 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 414.242 511.9578)\\\" x=\\\"0 4 6.224 10.672 12.896\\\">state</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 431.5857 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 433.7742 511.9578)\\\" x=\\\"0 1.824 6.272\\\">law</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 445.825 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 448.0134 511.9578)\\\" x=\\\"0 5.776 10.224 14.672 17.336\\\">where</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 469.8024 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 471.9908 511.9578)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.8893 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 487.0777 511.9578)\\\" x=\\\"0 5.776 10.224 12.888\\\">were</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 504.4175 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 506.606 511.9578)\\\" x=\\\"0 5.776 10.224 14.672\\\">when</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 525.731 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 527.9194 511.9578)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 540.8178 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 543.0062 511.9578)\\\" x=\\\"0 4 5.824 10.272 14.72 19.168 23.616\\\">signed,</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 502.9031)\\\" x=\\\"0 4.448 8.896 12.896 17.344 20.008 24.456 28.456\\\">governs.</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 240.5336 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 243.9142 502.9031)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.6993 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 261.0799 502.9031)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 284.6893 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 288.0699 502.9031)\\\" x=\\\"0 6.664 11.112 15.112\\\">must</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 305.4058 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 308.7864 502.9031)\\\" x=\\\"0 4.448 8.896 13.344 15.168\\\">apply</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 327.9582 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 331.3388 502.9031)\\\" x=\\\"0 4 8.448 12.896 16.896 19.12 23.568 28.016 30.24 32.064 36.064\\\">substantive</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.8545 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 375.235 502.9031)\\\" x=\\\"0 1.824 6.272\\\">law</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 387.2858 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 390.6664 502.9031)\\\" x=\\\"0 4 8.448 12.896 16.896 18.72 22.72 24.944 29.392 33.84\\\">consistent</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 426.7328 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 430.1134 502.9031)\\\" x=\\\"0 5.776 7.6 9.824\\\">with</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 444.3868 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 447.7674 502.9031)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 458.8885 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 462.2691 502.9031)\\\" x=\\\"0 4.888 10.224 15.56\\\">FAA.</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 480.0503 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 483.4309 502.9031)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 497.2161 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 500.5966 502.9031)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 524.206 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 527.5866 502.9031)\\\" x=\\\"0 6.664 11.112 15.112\\\">must</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 544.9225 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 548.3031 502.9031)\\\" x=\\\"0 2.224 6.672 8.496 10.32 14.768\\\">follow</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 493.8484)\\\" x=\\\"0 4 6.224 10.672 12.896 17.344 19.568 24.016 28.016 30.144 34.592 36.816 38.944 40.768 42.592 49.256 51.08 53.304 57.752 59.976 61.8 66.248 70.696 72.824 77.272 81.72 86.168 88.296 92.744 95.408 97.232 101.232 103.056 104.88 109.328 113.776 118.224 120.352 124.352 126.176 130.624 132.448 139.112 143.112\\\">statutes of limitation and privilege claims.</text></g><clipPath id=\\\"clip4-22\\\"><path d=\\\"M 35 433 L 130 433 L 130 492 L 35 492 L 35 433 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-22)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 491.1688 L 129.35 491.1688 L 129.35 433.8406 L 35.45 433.8406 L 35.45 491.1688 z \\\"/><path clip-path=\\\"url(#clip4-22)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 489.1688 L 125.25 489.1688 L 125.25 471.0594 L 39.55 471.0594 L 39.55 489.1688 z \\\"/><path clip-path=\\\"url(#clip4-22)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 45.443 489.1688 L 119.443 489.1688 L 119.443 479.1688 L 45.443 479.1688 L 45.443 489.1688 z \\\"/><g clip-path=\\\"url(#clip4-22)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 45.443 481.7937)\\\" x=\\\"0 5.776 10.224 14.672 16.8 19.024 23.472 27.92 30.048 34.496 38.944 41.608 43.832 45.656 50.104 54.104 56.232 58.456 61.12 65.12 67.248 69.472\\\">Can the * D E M O * to</text></g><path clip-path=\\\"url(#clip4-22)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 46.6363 480.1141 L 118.6363 480.1141 L 118.6363 470.1141 L 46.6363 470.1141 L 46.6363 480.1141 z \\\"/><g clip-path=\\\"url(#clip4-22)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 46.6363 472.7391)\\\" x=\\\"0 4 8.448 10.272 14.272 18.72 20.848 26.624 28.448 32.448 36.896 41.344 43.568 48.016 52.016 54.144 56.368 58.192 60.856 64.856 67.08\\\">solve Disputes first?</text></g><clipPath id=\\\"clip4-23\\\"><path d=\\\"M 129 433 L 206 433 L 206 492 L 129 492 L 129 433 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-23)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 159.5461 481.7937)\\\" x=\\\"0 5.336 9.784 13.784\\\">Yes.</text></g><clipPath id=\\\"clip4-24\\\"><path d=\\\"M 205 433 L 573 433 L 573 492 L 205 492 L 205 433 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 481.7937)\\\" x=\\\"0 7.552\\\">We</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 221.85 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 224.092 481.7937)\\\" x=\\\"0 4 8.448\\\">can</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 236.9904 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 239.2324 481.7937)\\\" x=\\\"0 2.224 4.888\\\">try</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 248.1191 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 250.3611 481.7937)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.033 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 259.275 481.7937)\\\" x=\\\"0 4 8.448 10.272 14.272\\\">solve</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 277.9976 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 280.2396 481.7937)\\\" x=\\\"0 5.776 7.6 11.6 16.048 20.496 22.72 27.168\\\">Disputes</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 311.4115 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 313.6535 481.7937)\\\" x=\\\"0 1.824\\\">if</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 317.7004 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 319.9424 481.7937)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 332.8408 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 335.0828 481.7937)\\\" x=\\\"0 4 8.448 10.272\\\">call</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 347.1805 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 349.4224 481.7937)\\\" x=\\\"0 4.448\\\">us</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 357.8717 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 360.1137 481.7937)\\\" x=\\\"0 4.448\\\">at</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 366.7855 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 369.0275 481.7937)\\\" x=\\\"0 2.664 7.112 11.56 16.008\\\">(100)</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 387.7033 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 389.9453 481.7937)\\\" x=\\\"0 4.448 8.896 13.344 16.008 20.456 24.904 29.352 33.8\\\">000-0006.</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 425.9766 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 428.2185 481.7937)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 432.6639 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 434.9058 481.7937)\\\" x=\\\"0 2.224 6.672 8.496\\\">this</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.4019 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 449.6439 481.7937)\\\" x=\\\"0 4.448 8.896 13.344 17.344 21.792 23.32\\\">doesn&apos;t</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 475.1908 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 477.4328 481.7937)\\\" x=\\\"0 4 8.448 10.272 14.272\\\">solve</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 496.1555 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 498.3974 481.7937)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.5185 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 511.7605 481.7937)\\\" x=\\\"0 5.776 7.6 11.6 16.048 20.496 22.72 27.168\\\">Dispute,</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 541.1551 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 543.3971 481.7937)\\\" x=\\\"0 6.664 11.112 12.936\\\">mail</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 558.1588 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 560.4008 481.7937)\\\" x=\\\"0 4.448\\\">us</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 472.7391)\\\" x=\\\"0 5.776 8.44 10.264 12.488 14.712 19.16\\\">written</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.4594 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 235.6405 472.7391)\\\" x=\\\"0 4.448 8.896 11.12 12.944 16.944 21.392\\\">notice,</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.2577 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 261.4388 472.7391)\\\" x=\\\"0 5.776 7.6 9.824 14.272 16.096\\\">within</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.9857 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 284.1668 472.7391)\\\" x=\\\"0 4.448 8.896\\\">100</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 297.5145 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 299.6956 472.7391)\\\" x=\\\"0 4.448 8.896 12.896\\\">days</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 316.594 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 318.7752 472.7391)\\\" x=\\\"0 4.448\\\">of</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 325.447 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 327.6282 472.7391)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.7493 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 340.9304 472.7391)\\\" x=\\\"0 5.776 7.6 11.6 16.048 20.496 22.72\\\">Dispute</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 368.1023 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 370.2834 472.7391)\\\" x=\\\"0 4.448 8.896 11.12 15.568\\\">date.</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.0763 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 390.2575 472.7391)\\\" x=\\\"0 2.224\\\">In</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 396.9293 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 399.1105 472.7391)\\\" x=\\\"0 4 8.448 12.896\\\">your</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 414.673 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 416.8541 472.7391)\\\" x=\\\"0 4.448 8.896 11.12 12.944 16.944 21.392\\\">notice,</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 440.4713 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 442.6524 472.7391)\\\" x=\\\"0 2.224 6.672 8.496\\\">tell</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 452.9727 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 455.1539 472.7391)\\\" x=\\\"0 4.448\\\">us</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 463.6031 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 465.7842 472.7391)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 476.9053 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 479.0864 472.7391)\\\" x=\\\"0 4.448 8.896 11.12 15.568 17.392 19.216\\\">details</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 502.3052 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 504.4863 472.7391)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 517.834 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 520.0151 472.7391)\\\" x=\\\"0 4.448 8.896\\\">how</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 534.6909 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 536.872 472.7391)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.7704 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 551.9515 472.7391)\\\" x=\\\"0 5.776 10.224 14.672\\\">want</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 463.6844)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 216.5219 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 219.4635 463.6844)\\\" x=\\\"0 4 8.448 10.272 14.272\\\">solve</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.1861 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 241.1277 463.6844)\\\" x=\\\"0 1.824 4.048\\\">it.</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.3973 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 250.3389 463.6844)\\\" x=\\\"0 7.552\\\">We</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.3389 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 265.2805 463.6844)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.5305 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 279.4721 463.6844)\\\" x=\\\"0 2.224 4.888\\\">try</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 288.3588 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 291.3004 463.6844)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 297.9723 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 300.9139 463.6844)\\\" x=\\\"0 4 8.448 10.272 14.272\\\">solve</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.6366 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 322.5782 463.6844)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 333.6993 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 336.6409 463.6844)\\\" x=\\\"0 5.776 7.6 11.6 16.048 20.496 22.72 27.168\\\">Dispute.</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 366.0354 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 368.977 463.6844)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 373.4224 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 376.364 463.6844)\\\" x=\\\"0 5.776\\\">we</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 386.5905 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 389.5321 463.6844)\\\" x=\\\"0 6.664 11.112 15.112\\\">make</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 409.0947 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 412.0363 463.6844)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 416.4855 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 419.4271 463.6844)\\\" x=\\\"0 5.776 8.44 10.264 12.488 14.712 19.16\\\">written</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 443.0365 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 445.9781 463.6844)\\\" x=\\\"0 4.448 6.672 8.896 13.344\\\">offer</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 461.9859 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 464.9275 463.6844)\\\" x=\\\"0 2.664 5.504 10.84 15.288 17.512 19.736 21.56 26.008 32.672 37.12 41.568\\\">(&quot;Settlement</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 508.7205 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 511.6621 463.6844)\\\" x=\\\"0 6.224 8.448 10.672 15.12 17.784 20.624 23.288\\\">Offer&quot;),</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 537.1699 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 540.1115 463.6844)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.0099 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 555.9515 463.6844)\\\" x=\\\"0 4 8.448\\\">can</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 454.6297)\\\" x=\\\"0 2.664 7.112 8.936 13.384 17.384\\\">reject</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 229.4594 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 233.7138 454.6297)\\\" x=\\\"0 1.824\\\">it</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 237.7606 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 242.015 454.6297)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 255.3627 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 259.6171 454.6297)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 29.392\\\">arbitrate.</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.2343 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 295.4887 454.6297)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.934 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 304.1884 454.6297)\\\" x=\\\"0 5.776\\\">we</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 314.4149 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 318.6693 454.6297)\\\" x=\\\"0 4.448 8.896 13.344 14.872\\\">don&apos;t</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.767 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 340.0214 454.6297)\\\" x=\\\"0 4 8.448 10.272 14.272\\\">solve</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 358.744 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 362.9984 454.6297)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 374.1195 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 378.3739 454.6297)\\\" x=\\\"0 5.776 7.6 11.6 16.048 20.496 22.72 27.168\\\">Dispute,</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 407.7684 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 412.0228 454.6297)\\\" x=\\\"0 4.448 6.272 8.496 12.944 17.392\\\">either</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 432.0814 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 436.3358 454.6297)\\\" x=\\\"0 4.448 8.896 11.56 13.784\\\">party</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.121 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 458.3754 454.6297)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 473.4887 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 477.7431 454.6297)\\\" x=\\\"0 4 6.224 10.672 13.336\\\">start</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 493.3016 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 497.556 454.6297)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 26.768 31.216 35.664\\\">arbitration.</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 535.4467 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 539.7011 454.6297)\\\" x=\\\"0 4.888\\\">To</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.037 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 553.2914 454.6297)\\\" x=\\\"0 4 6.224 10.672 13.336\\\">start</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 445.575)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 26.768 31.216 35.664\\\">arbitration,</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.7406 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 250.0233 445.575)\\\" x=\\\"0 4 8.448 12.896 15.12 19.568 23.568\\\">contact</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.8162 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 278.0989 445.575)\\\" x=\\\"0 4.448\\\">an</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 286.9973 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 289.28 445.575)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.8893 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 315.172 445.575)\\\" x=\\\"0 4.448\\\">or</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 322.2853 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 324.5679 445.575)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 26.768 31.216\\\">arbitration</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 360.2359 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 362.5185 445.575)\\\" x=\\\"0 4.448 7.112 11.56 16.008\\\">group</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 382.9795 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 385.2621 445.575)\\\" x=\\\"0 1.824 3.648 7.648 9.872 14.32 18.768\\\">listed.</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 406.2543 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 408.5369 445.575)\\\" x=\\\"0 5.776\\\">No</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 418.7635 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 421.0461 445.575)\\\" x=\\\"0 4.448 8.896 11.56 13.784\\\">party</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 438.8313 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 441.1139 445.575)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 452.3639 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 454.6466 445.575)\\\" x=\\\"0 4.448 6.272 10.272 14.272 16.096 20.544 24.544\\\">disclose</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 483.6427 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 485.9253 445.575)\\\" x=\\\"0 4 8.448 10.672 12.896 14.72 19.168 25.832 30.28 34.728\\\">settlement</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 522.8785 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 525.1611 445.575)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456 24.456 28.904 30.728\\\">proposals</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.8955 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 562.1781 445.575)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 436.5203)\\\" x=\\\"0 2.224 6.672 11.12 13.248 18.584 21.248 25.696 27.52 29.744 34.192 36.856 38.984 43.432 47.88 50.544 52.368 56.816 61.264 63.392 67.84 70.504 74.952 76.776 79 81.664 86.112 88.336 90.16 94.608 99.056\\\">the Arbiter during arbitration.</text></g><clipPath id=\\\"clip4-25\\\"><path d=\\\"M 35 412 L 130 412 L 130 434 L 35 434 L 35 412 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-25)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 433.8406 L 129.35 433.8406 L 129.35 412.7313 L 35.45 412.7313 L 35.45 433.8406 z \\\"/><path clip-path=\\\"url(#clip4-25)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 431.8406 L 125.25 431.8406 L 125.25 413.7313 L 39.55 413.7313 L 39.55 431.8406 z \\\"/><path clip-path=\\\"url(#clip4-25)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 40.0543 431.8406 L 127.0543 431.8406 L 127.0543 421.8406 L 40.0543 421.8406 L 40.0543 431.8406 z \\\"/><g clip-path=\\\"url(#clip4-25)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.0543 424.4656)\\\" x=\\\"0 5.776 10.224 16 18.128 22.128 26.576 31.024 35.472 37.296 41.744 43.872 47.872 52.32 56.768 58.896 62.896 67.344 71.792 74.016 78.464 82.464\\\">How should you contact</text></g><path clip-path=\\\"url(#clip4-25)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 75.9508 422.7859 L 88.9508 422.7859 L 88.9508 412.7859 L 75.9508 412.7859 L 75.9508 422.7859 z \\\"/><g clip-path=\\\"url(#clip4-25)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 75.9508 415.4109)\\\" x=\\\"0 4.448 8.448\\\">us?</text></g><clipPath id=\\\"clip4-26\\\"><path d=\\\"M 129 412 L 206 412 L 206 434 L 129 434 L 129 412 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-26)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 153.3273 424.4656)\\\" x=\\\"0 5.336 9.336 11.464 18.128 22.576 24.4 26.224\\\">By mail.</text></g><clipPath id=\\\"clip4-27\\\"><path d=\\\"M 205 412 L 573 412 L 573 434 L 205 434 L 205 412 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 424.4656)\\\" x=\\\"0 5.336 9.784 14.232\\\">Send</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 228.5336 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 231.2172 424.4656)\\\" x=\\\"0 6.664 11.112 12.936\\\">mail</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.9789 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 248.6625 424.4656)\\\" x=\\\"0 2.224 6.672\\\">to:</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.557 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 260.2406 424.4656)\\\" x=\\\"0 5.336 9.784 14.232\\\">Snap</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 278.9242 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 281.6078 424.4656)\\\" x=\\\"0 5.776 10.664\\\">RTO</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 298.4945 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 301.1781 424.4656)\\\" x=\\\"0 4.448 8.896\\\">LLC</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 315.8539 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 318.5375 424.4656)\\\" x=\\\"0 5.336 7.56 9.784 14.232 18.68 20.904 22.728 27.176 31.624\\\">Attention:</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 352.3851 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 355.0687 424.4656)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 19.16 23.608 25.832 27.656 32.104 36.552\\\">Arbitration.</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.8461 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 396.5297 424.4656)\\\" x=\\\"0 5.336 7.56 13.784\\\">P.O.</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 412.5336 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 415.2172 424.4656)\\\" x=\\\"0 5.336 9.784\\\">Box</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 429.0023 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 431.6859 424.4656)\\\" x=\\\"0 4.448 8.896 13.344 17.792 22.24\\\">26561,</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.1547 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 458.8383 424.4656)\\\" x=\\\"0 5.336 9.784 11.608\\\">Salt</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 472.6703 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 475.3539 424.4656)\\\" x=\\\"0 4.448 8.896 12.896\\\">Lake</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 492.7015 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 495.3851 424.4656)\\\" x=\\\"0 5.776 7.6 9.824 13.824\\\">City,</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 511.432 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 514.1156 424.4656)\\\" x=\\\"0 5.776\\\">UT</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 524.7797 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 527.4633 424.4656)\\\" x=\\\"0 4.448 8.896 13.344 17.792 22.24\\\">84126.</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.932 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 554.6156 424.4656)\\\" x=\\\"0 5.336 9.784\\\">You</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 415.4109)\\\" x=\\\"0 4 8.448 12.896 15.024 19.024 23.472 25.296 27.12 29.248 33.696 37.696 39.824 44.272 46.936 49.064 53.512 57.512 61.96 64.088 68.088 72.536 75.2 77.424 79.248 81.472 83.296 87.744 92.192 94.32 100.984 105.432 107.256 109.08 111.208 113.432 117.88 120.008 124.008 128.456 132.904 135.128 136.952 139.616 146.28 148.408 151.072 155.52 159.52 163.968 165.792 170.24 172.464\\\">can call us or use certified mail to confirm receipt.</text></g><clipPath id=\\\"clip4-28\\\"><path d=\\\"M 35 373 L 130 373 L 130 413 L 35 413 L 35 373 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-28)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 412.7313 L 129.35 412.7313 L 129.35 373.5125 L 35.45 373.5125 L 35.45 412.7313 z \\\"/><path clip-path=\\\"url(#clip4-28)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 410.7313 L 125.25 410.7313 L 125.25 392.6219 L 39.55 392.6219 L 39.55 410.7313 z \\\"/><path clip-path=\\\"url(#clip4-28)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 41.9508 410.7313 L 122.9508 410.7313 L 122.9508 400.7313 L 41.9508 400.7313 L 41.9508 410.7313 z \\\"/><g clip-path=\\\"url(#clip4-28)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 41.9508 403.3562)\\\" x=\\\"0 5.776 10.224 14.672 16.8 20.8 27.464 31.912 33.736 35.56 38.224 42.224 44.048 48.496 50.32 56.984 60.984 63.112 67.112 71.56 76.008 78.672\\\">Can small-claims court</text></g><path clip-path=\\\"url(#clip4-28)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 43.3219 401.6766 L 122.3219 401.6766 L 122.3219 391.6766 L 43.3219 391.6766 L 43.3219 401.6766 z \\\"/><g clip-path=\\\"url(#clip4-28)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 43.3219 394.3016)\\\" x=\\\"0 4 8.448 10.272 14.272 18.72 20.848 24.848 29.296 35.96 40.408 42.536 48.312 50.136 54.136 58.584 63.032 65.256 69.704 73.704\\\">solve s* D E M O *s?</text></g><clipPath id=\\\"clip4-29\\\"><path d=\\\"M 129 373 L 206 373 L 206 413 L 129 413 L 129 373 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-29)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 159.5461 403.3562)\\\" x=\\\"0 5.336 9.784 13.784\\\">Yes.</text></g><clipPath id=\\\"clip4-30\\\"><path d=\\\"M 205 373 L 573 373 L 573 413 L 205 413 L 205 373 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 403.3562)\\\" x=\\\"0 5.3359 9.7852 13.7852\\\">Each</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 228.0844 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 229.9094 403.3562)\\\" x=\\\"0 4.4492 8.8984 11.5625 13.7851\\\">party</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.6945 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 249.5195 403.3562)\\\" x=\\\"0 4.4492 8.8984\\\">has</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.418 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 264.243 403.3562)\\\" x=\\\"0 2.2227 6.6719\\\">the</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.3641 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 277.1891 403.3562)\\\" x=\\\"0 2.6641 4.4883 8.9375 13.3867\\\">right</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 292.7984 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 294.6234 403.3562)\\\" x=\\\"0 2.2227\\\">to</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 301.2953 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 303.1203 403.3562)\\\" x=\\\"0 4.4492 7.1133 11.5625 13.3867 15.6094 18.2734 22.7227 24.9453 29.3945\\\">arbitrate,</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 334.7375 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 336.5625 403.3562)\\\" x=\\\"0 4.4492\\\">or</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 343.6758 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 345.5008 403.3562)\\\" x=\\\"0 2.2227\\\">to</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 352.1727 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 353.9976 403.3562)\\\" x=\\\"0 4.4492\\\">go</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 362.8961 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 364.7211 403.3562)\\\" x=\\\"0 2.2227\\\">to</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.393 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 373.218 403.3562)\\\" x=\\\"0 4 10.6641 15.1133 16.9375 18.7617 21.4258 25.4258 27.25 31.6992 33.5234 40.1875\\\">small-claims</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 417.4055 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 419.2305 403.3562)\\\" x=\\\"0 4 8.4492 12.8984 15.5625\\\">court</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 437.0156 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 438.8406 403.3562)\\\" x=\\\"0 1.8242\\\">if</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 442.8875 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 444.7125 403.3562)\\\" x=\\\"0 2.2227 6.6719\\\">the</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 455.8336 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 457.6586 403.3562)\\\" x=\\\"0 4 10.6641 15.1133 16.9375 18.7617 21.4258 25.4258 27.25 31.6992 33.5234 40.1875\\\">small-claims</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.8461 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 503.6711 403.3562)\\\" x=\\\"0 4 8.4492 12.8984 15.5625\\\">court</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.4562 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 523.2812 403.3562)\\\" x=\\\"0 4.4492 8.8984\\\">has</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 536.1797 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 538.0047 403.3562)\\\" x=\\\"0 2.2227 6.6719\\\">the</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 394.3016)\\\" x=\\\"0 4.4492 8.8984 14.6758 19.125\\\">power</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.639 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 233.464 394.3016)\\\" x=\\\"0 2.2227\\\">to</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 240.1359 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 241.9609 394.3016)\\\" x=\\\"0 4.4492 8.8984 13.3477\\\">hear</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.9726 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 260.0976 394.3016)\\\" x=\\\"0 2.2226 6.6719\\\">the</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 271.2187 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 273.3437 394.3016)\\\" x=\\\"0 5.7773 7.6016 11.6016 16.0508 20.5 22.7227 27.1719\\\">Dispute.</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.7383 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 304.8633 394.3016)\\\" x=\\\"0 5.3359 8 12.4492 14.2734 16.4961 19.1602 23.6094 25.832 27.6562 32.1055\\\">Arbitration</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 341.418 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 343.543 394.3016)\\\" x=\\\"0 5.7773 7.6016 9.4258\\\">will</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 354.793 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 356.918 394.3016)\\\" x=\\\"0 4 8.4492 10.2734 14.2734\\\">solve</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.6406 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 377.7656 394.3016)\\\" x=\\\"0 4.4492 6.2734\\\">all</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 385.8633 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 387.9883 394.3016)\\\" x=\\\"0 5.7774 7.6016 11.6016 16.0508 20.5 22.7227 27.1719\\\">Disputes</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.1601 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 421.2851 394.3016)\\\" x=\\\"0 2.2227 6.6719 11.1211\\\">that</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.6289 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 436.7539 394.3016)\\\" x=\\\"0 2.2226 6.6719\\\">the</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.875 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 450 394.3016)\\\" x=\\\"0 4 10.6641 15.1133 16.9375 18.7617 21.4258 25.4258 27.25 31.6992 33.5234 40.1875\\\">small-claims</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 494.1875 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 496.3125 394.3016)\\\" x=\\\"0 4 8.4492 12.8984 15.5625\\\">court</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 514.0976 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 516.2226 394.3016)\\\" x=\\\"0 4.4492 8.8984 13.3477\\\">does</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 533.5703 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 535.6953 394.3016)\\\" x=\\\"0 4.4492 8.8984\\\">not</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 546.8164 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 548.9414 394.3016)\\\" x=\\\"0 4.4492 8.8984 12.8984\\\">have</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 385.2469)\\\" x=\\\"0 2.2227 6.6719\\\">the</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 220.9711 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 223.0961 385.2469)\\\" x=\\\"0 4.4492 8.8984 14.6758 19.125\\\">power</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 244.8852 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 247.0101 385.2469)\\\" x=\\\"0 2.2227\\\">to</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 253.682 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 255.807 385.2469)\\\" x=\\\"0 4.4492 8.8984 13.3477 16.0117\\\">hear.</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 274.0414 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 276.1664 385.2469)\\\" x=\\\"0 2.2226\\\">If</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.6117 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 282.7367 385.2469)\\\" x=\\\"0 2.2227 6.6719 11.1211 13.7852\\\">there</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 300.9711 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 303.0961 385.2469)\\\" x=\\\"0 1.8242\\\">is</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.9203 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 311.0453 385.2469)\\\" x=\\\"0 4.4492\\\">an</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.9437 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 322.0687 385.2469)\\\" x=\\\"0 4.4492 8.8984 13.3477 17.7969 22.2461\\\">appeal</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 346.139 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 348.264 385.2469)\\\" x=\\\"0 2.2227 4.8867 9.3359\\\">from</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 364.264 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 366.389 385.2469)\\\" x=\\\"0 4 10.6641 15.1133 16.9375 18.7617 21.4258 25.4258 27.25 31.6992 33.5234 40.1875\\\">small-claims</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 410.5765 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 412.7015 385.2469)\\\" x=\\\"0 4 8.4492 12.8984 15.5625 17.7852\\\">court,</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 432.7094 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 434.8344 385.2469)\\\" x=\\\"0 4.4492\\\">or</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 441.9477 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 444.0727 385.2469)\\\" x=\\\"0 1.8242\\\">if</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 448.1195 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 450.2445 385.2469)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.6937 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 456.8187 385.2469)\\\" x=\\\"0 5.7773 7.6016 11.6016 16.0508 20.5 22.7227\\\">Dispute</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 483.9906 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 486.1156 385.2469)\\\" x=\\\"0 4 8.4492 12.8984 17.3476 21.7969 26.2461\\\">changes</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 516.3617 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 518.4867 385.2469)\\\" x=\\\"0 4\\\">so</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.9359 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 529.0609 385.2469)\\\" x=\\\"0 2.2227 6.6719 11.1211\\\">that</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 542.4047 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 544.5297 385.2469)\\\" x=\\\"0 2.2227 6.6719\\\">the</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 376.1922)\\\" x=\\\"0 4 10.6641 15.1133 16.9375 18.7617 21.4258 25.4258 27.25 31.6992 33.5234 40.1875\\\">small-claims</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 254.0375 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 256.1625 376.1922)\\\" x=\\\"0 4 8.4492 12.8984 15.5625\\\">court</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 273.9477 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 276.0727 376.1922)\\\" x=\\\"0 1.8242 6.2734 10.2734 14.7226\\\">loses</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 294.7953 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 296.9203 376.1922)\\\" x=\\\"0 2.2227 6.6719\\\">the</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.0414 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 310.1664 376.1922)\\\" x=\\\"0 4.4492 8.8984 14.6758 19.125\\\">power</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 331.9555 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 333.7805 376.1922)\\\" x=\\\"0 2.2227\\\">to</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 340.4523 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 342.2773 376.1922)\\\" x=\\\"0 4.4492 8.8984 13.3477\\\">hear</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 358.289 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 360.1141 376.1922)\\\" x=\\\"0 1.8242 4.0469\\\">it,</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 366.3836 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 368.2086 376.1922)\\\" x=\\\"0 2.2226 6.6719 11.1211\\\">then</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.7789 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 385.6039 376.1922)\\\" x=\\\"0 2.2227 6.6719\\\">the</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 396.725 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 398.55 376.1922)\\\" x=\\\"0 5.7773 7.6016 11.6016 16.0508 20.5 22.7227\\\">Dispute</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 425.7219 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 427.5469 376.1922)\\\" x=\\\"0 5.7773 7.6016 9.4258\\\">will</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 438.7969 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 440.6219 376.1922)\\\" x=\\\"0 4.4492 8.8984 10.7227\\\">only</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 455.3445 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 457.1695 376.1922)\\\" x=\\\"0 4.4492\\\">be</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.068 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 467.893 376.1922)\\\" x=\\\"0 4.4492 8.8984 13.3477 16.0117\\\">heard</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 488.3539 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 490.1789 376.1922)\\\" x=\\\"0 4.4492\\\">by</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 498.6281 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 500.4531 376.1922)\\\" x=\\\"0 4.4492\\\">an</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.3516 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 511.1766 376.1922)\\\" x=\\\"0 5.3359 8 12.4492 14.2734 16.4961 20.9453 23.6094\\\">Arbiter.</text></g><clipPath id=\\\"clip4-31\\\"><path d=\\\"M 35 343 L 130 343 L 130 374 L 35 374 L 35 343 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-31)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 373.5125 L 129.35 373.5125 L 129.35 343.3484 L 35.45 343.3484 L 35.45 373.5125 z \\\"/><path clip-path=\\\"url(#clip4-31)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 371.5125 L 125.25 371.5125 L 125.25 362.4578 L 39.55 362.4578 L 39.55 371.5125 z \\\"/><path clip-path=\\\"url(#clip4-31)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 41.5875 371.5125 L 123.5875 371.5125 L 123.5875 361.5125 L 41.5875 361.5125 L 41.5875 371.5125 z \\\"/><g clip-path=\\\"url(#clip4-31)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 41.5875 364.1375)\\\" x=\\\"0 5.776 10.224 12.352 16.8 19.024 23.472 27.92 30.584 32.712 37.16 41.608 43.832 45.656 50.104 54.552 58.552 60.68 65.128 69.128 70.952 74.952 77.176\\\">Do other options exist?</text></g><clipPath id=\\\"clip4-32\\\"><path d=\\\"M 129 343 L 206 343 L 206 374 L 129 374 L 129 343 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-32)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 159.5461 364.1375)\\\" x=\\\"0 5.336 9.784 13.784\\\">Yes.</text></g><clipPath id=\\\"clip4-33\\\"><path d=\\\"M 205 343 L 573 343 L 573 374 L 205 374 L 205 343 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 364.1375)\\\" x=\\\"0 5.336 9.784 12.008\\\">Both</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 226.307 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 228.8021 364.1375)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056\\\">parties</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 252.8607 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 255.3557 364.1375)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 270.469 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 272.964 364.1375)\\\" x=\\\"0 4.448 8.448\\\">use</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 285.8625 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 288.3575 364.1375)\\\" x=\\\"0 1.824 6.272 12.048 14.272 18.72\\\">lawful</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.9044 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 311.3995 364.1375)\\\" x=\\\"0 4 8.448 10.272 12.496 15.16 19.608 24.056 25.88\\\">self-help</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 341.7315 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 344.2265 364.1375)\\\" x=\\\"0 2.664 7.112 13.776 18.224 22.672 24.496 28.944 32.944\\\">remedies.</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 379.3984 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 381.8935 364.1375)\\\" x=\\\"0 4.888 9.336 11.16\\\">This</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 397.0536 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 399.5487 364.1375)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44\\\">includes</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 428.994 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 431.489 364.1375)\\\" x=\\\"0 4 8.448 10.672 13.336 17.784 20.008\\\">set-off</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 453.7195 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 456.2146 364.1375)\\\" x=\\\"0 4.448\\\">or</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 463.3279 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 465.8229 364.1375)\\\" x=\\\"0 2.664 7.112 11.56 16.008 20.008 24.008 28.456 32.456 36.456 38.28 42.728\\\">repossession</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 513.0065 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 515.5015 364.1375)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 528.8492 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 531.3443 364.1375)\\\" x=\\\"0 4 8.448 10.272\\\">sale</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 546.0669 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 548.562 364.1375)\\\" x=\\\"0 4.448\\\">of</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 555.2339 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 557.7289 364.1375)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 355.0828)\\\" x=\\\"0 5.336 8 12.448 16.896 21.344 24.008 26.232 30.232\\\">Property.</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 242.307 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 245.9017 355.0828)\\\" x=\\\"0 5.336 9.784 12.008\\\">Both</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.3587 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 265.9534 355.0828)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056\\\">parties</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.0119 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 293.6066 355.0828)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.7199 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 312.3145 355.0828)\\\" x=\\\"0 4 8.448 12.896\\\">seek</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.213 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 332.8076 355.0828)\\\" x=\\\"0 2.664 7.112 13.776 18.224 22.672 24.496 28.944\\\">remedies</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 365.7568 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 369.3515 355.0828)\\\" x=\\\"0 5.776 10.224 12.048 16.048\\\">which</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 389.8515 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 393.4461 355.0828)\\\" x=\\\"0 4.448 8.896 13.344 14.872\\\">don&apos;t</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 410.5438 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 414.1384 355.0828)\\\" x=\\\"0 4 5.824 10.272 12.096\\\">claim</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 432.9002 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 436.4948 355.0828)\\\" x=\\\"0 6.664 11.112 15.56 20.008\\\">money</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 460.5065 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 464.1012 355.0828)\\\" x=\\\"0 4.448 8.896 15.56 20.008 24.456 28.904 32.904\\\">damages.</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.234 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 502.8287 355.0828)\\\" x=\\\"0 4.888 9.336 11.16\\\">This</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 517.9888 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 521.5835 355.0828)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44\\\">includes</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.0288 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 554.6234 355.0828)\\\" x=\\\"0 4.448 7.112 11.56\\\">pre-</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 346.0281)\\\" x=\\\"0 1.824 6.272 10.72 15.168 21.832 26.28 30.728 32.952 35.08 39.08 43.528 45.352 49.352 53.8 56.464 60.912 63.136 65.264 67.088 71.536 73.36 77.808 82.256 86.256 88.48 90.304 94.752 99.2 103.2 105.424 107.552 112 114.664 116.792 121.24 125.688 130.136 131.96 134.184 138.632 143.08 144.904 149.352 151.48 154.144 158.592 160.416 162.24 166.688 168.912\\\">judgment seizure, injunctions, or equitable relief.</text></g><clipPath id=\\\"clip4-34\\\"><path d=\\\"M 35 295 L 130 295 L 130 344 L 35 344 L 35 295 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-34)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 343.3484 L 129.35 343.3484 L 129.35 295.075 L 35.45 295.075 L 35.45 343.3484 z \\\"/><path clip-path=\\\"url(#clip4-34)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 341.3484 L 125.25 341.3484 L 125.25 323.2391 L 39.55 323.2391 L 39.55 341.3484 z \\\"/><path clip-path=\\\"url(#clip4-34)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 55.0406 341.3484 L 110.0406 341.3484 L 110.0406 331.3484 L 55.0406 331.3484 L 55.0406 341.3484 z \\\"/><g clip-path=\\\"url(#clip4-34)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 55.0406 333.9734)\\\" x=\\\"0 7.552 9.376 11.2 13.024 15.152 17.376 21.824 23.648 27.648 29.776 35.552 37.376 41.824 46.272 50.272\\\">Will this Clause</text></g><path clip-path=\\\"url(#clip4-34)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 47.3375 332.2938 L 118.3375 332.2938 L 118.3375 322.2938 L 47.3375 322.2938 L 47.3375 332.2938 z \\\"/><g clip-path=\\\"url(#clip4-34)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.3375 324.9187)\\\" x=\\\"0 4 8.448 12.896 15.12 16.944 21.392 25.84 30.288 32.416 34.64 39.088 41.216 45.664 50.112 54.112 58.56 61.224 65.672\\\">continue to govern?</text></g><clipPath id=\\\"clip4-35\\\"><path d=\\\"M 129 295 L 206 295 L 206 344 L 129 344 L 129 295 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-35)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.8976 333.9734)\\\" x=\\\"0 5.336 9.784 13.784 16.008 18.136 22.584 27.032 28.856 33.304 37.304\\\">Yes, unless</text></g><g clip-path=\\\"url(#clip4-35)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 135.7785 324.9187)\\\" x=\\\"0 4.448 6.672 11.12 15.568 18.232 24.008 25.832 29.832 34.28 36.408 40.856 45.304 47.968 52.416 56.864 61.312\\\">otherwise agreed.</text></g><clipPath id=\\\"clip4-36\\\"><path d=\\\"M 205 295 L 573 295 L 573 344 L 205 344 L 205 295 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 333.9734)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 223.6351 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 227.574 333.9734)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496\\\">Clause</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 252.5233 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 256.4622 333.9734)\\\" x=\\\"0 4 6.224 10.672 14.672\\\">stays</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.134 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 279.0729 333.9734)\\\" x=\\\"0 4.448 6.672 8.896 13.344 17.344 19.568 21.392 25.392 29.84\\\">effective,</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 311.1354 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 315.0743 333.9734)\\\" x=\\\"0 4.448 8.896 10.72 15.168 19.168\\\">unless</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.2462 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 342.1851 333.9734)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 353.3062 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 357.2451 333.9734)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056\\\">parties</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 381.3037 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 385.2426 333.9734)\\\" x=\\\"0 4 5.824 10.272\\\">sign</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 399.9652 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 403.9041 333.9734)\\\" x=\\\"0 4.448\\\">an</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 412.8026 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 416.7415 333.9734)\\\" x=\\\"0 4.448 8.896 11.56 16.008 20.456 27.12 31.568 36.016\\\">agreement</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.9875 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 458.9264 333.9734)\\\" x=\\\"0 4 6.224 10.672 12.896 14.72 19.168\\\">stating</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 482.5436 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 486.4825 333.9734)\\\" x=\\\"0 1.824\\\">it</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 490.5294 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 494.4683 333.9734)\\\" x=\\\"0 4.448 8.896 13.344 17.344 21.792 23.32 25.544\\\">doesn&apos;t.</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 522.2378 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 526.1767 333.9734)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 539.9619 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 543.9008 333.9734)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496\\\">Clause</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 324.9187)\\\" x=\\\"0 4.448 8.896 12.896 17.344 20.008 24.456\\\">governs</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.3109 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 241.2057 324.9187)\\\" x=\\\"0 1.824\\\">if</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.2526 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 248.1473 324.9187)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 261.0458 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 263.9405 324.9187)\\\" x=\\\"0 2.664 7.112 11.112 15.112 16.936 21.384\\\">rescind</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 289.7765 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 292.6712 324.9187)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 303.7923 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 306.6871 324.9187)\\\" x=\\\"0 2.224 4.888 9.336 13.784 17.784 22.232 26.232 28.456 30.28 34.728 39.176\\\">transaction.</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.0894 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 350.9842 324.9187)\\\" x=\\\"0 2.224\\\">It</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.4295 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 358.3243 324.9187)\\\" x=\\\"0 4.448 8.896 12.896 17.344 20.008 24.456\\\">governs</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 386.7852 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 389.68 324.9187)\\\" x=\\\"0 1.824\\\">if</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.7268 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 396.6216 324.9187)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 409.52 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 412.4148 324.9187)\\\" x=\\\"0 4.448 8.896 11.12 15.568 20.016 21.84 24.064\\\">default,</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 438.7038 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 441.5986 324.9187)\\\" x=\\\"0 2.664 7.112 11.56 16.008 21.784\\\">renew,</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 465.6103 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 468.5051 324.9187)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456 24.456\\\">prepay,</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 495.1887 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 498.0834 324.9187)\\\" x=\\\"0 4.448\\\">or</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 505.1967 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 508.0915 324.9187)\\\" x=\\\"0 4.448 8.896 12.896\\\">pay.</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 523.2126 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 526.1073 324.9187)\\\" x=\\\"0 2.224\\\">It</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 530.5527 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 533.4474 324.9187)\\\" x=\\\"0 4.448 8.896 12.896 17.344 20.008 24.456\\\">governs</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 561.9084 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 564.8031 324.9187)\\\" x=\\\"0 1.824\\\">if</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 315.8641)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 222.7484 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 227.0199 315.8641)\\\" x=\\\"0 2.224 6.672 9.336 16 17.824 22.272 26.72 28.944 33.392\\\">terminate,</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.6371 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 266.9086 315.8641)\\\" x=\\\"0 1.824\\\">if</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 270.9555 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 275.2269 315.8641)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 288.1254 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 292.3969 315.8641)\\\" x=\\\"0 2.664 7.112 8.936 13.384 17.384 19.608 24.056 26.28 30.728\\\">reinstate,</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 325.35 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 329.6215 315.8641)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 342.9691 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 347.2406 315.8641)\\\" x=\\\"0 1.824\\\">if</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.2875 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 355.559 315.8641)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 368.4574 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 372.7289 315.8641)\\\" x=\\\"0 2.664 7.112 9.336 13.784 16.448\\\">return</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.6273 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 397.8988 315.8641)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 409.0199 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 413.2914 315.8641)\\\" x=\\\"0 5.336 8 12.448 16.896 21.344 24.008 26.232 30.232\\\">Property.</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 445.7484 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 450.0199 315.8641)\\\" x=\\\"0 2.224\\\">It</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.4652 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 458.7367 315.8641)\\\" x=\\\"0 4.448 8.896 12.896 17.344 20.008 24.456\\\">governs</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 487.1977 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 491.4691 315.8641)\\\" x=\\\"0 1.824\\\">if</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 495.516 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 499.7875 315.8641)\\\" x=\\\"0 4 8.448 12.896\\\">your</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 515.35 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 519.6215 315.8641)\\\" x=\\\"0 5.336 9.784 12.448 16.896 21.344 28.008 32.456 36.904\\\">Agreement</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 558.7543 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 563.0258 315.8641)\\\" x=\\\"0 1.824\\\">is</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 306.8094)\\\" x=\\\"0 1.824 8.488 12.936 17.384 21.384 23.608 28.056\\\">impacted</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 242.3578 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 248.4078 306.8094)\\\" x=\\\"0 4.448\\\">by</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.857 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 262.907 306.8094)\\\" x=\\\"0 4.448 8.896 13.344 17.344 20.008 24.456 28.904 31.128 35.128 39.128\\\">bankruptcy.</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 304.2625 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 310.3125 306.8094)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 324.0976 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 330.1477 306.8094)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496\\\">Clause</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.0969 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 361.1469 306.8094)\\\" x=\\\"0 2.664 7.112 13.776 18.224 20.048 24.496\\\">remains</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 389.6469 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 395.6969 306.8094)\\\" x=\\\"0 4.448 6.672 8.896 13.344 17.344 19.568 21.392 25.392 29.84\\\">effective,</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 427.7594 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 433.8094 306.8094)\\\" x=\\\"0 4.448 8.896 12.896 17.344 19.168 21.392\\\">despite</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 459.6531 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 465.7031 306.8094)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 470.1523 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 476.2023 306.8094)\\\" x=\\\"0 2.224 4.888 9.336 13.784 17.784 22.232 26.232 28.456 30.28 34.728 39.176 40.704\\\">transaction&apos;s</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 520.9094 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 526.9594 306.8094)\\\" x=\\\"0 2.224 6.672 9.336 16 17.824 22.272 26.72 28.944 30.768 35.216 39.664\\\">termination,</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 297.7547)\\\" x=\\\"0 4.448 11.112 15.56 20.008 24.456 31.12 35.568 40.016 42.24 44.464 46.592 51.04 55.04 59.488 61.312 63.976 68.424 70.648 72.472 76.92 81.368 83.592 85.72 90.168 92.832 94.96 99.408 103.856 106.52 108.744 113.192 115.856 122.52 126.968 131.416 135.416 139.864\\\">amendment, expiration, or performance.</text></g><clipPath id=\\\"clip4-37\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 770.2 L 129.85 770.2 L 129.85 769.2 L 34.95 769.2 L 34.95 770.2 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 769.2 L 35.95 769.2 L 35.95 749.0906 L 34.95 749.0906 L 34.95 769.2 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 770.2 L 206.25 770.2 L 206.25 769.2 L 129.85 769.2 L 129.85 770.2 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 769.2 L 129.85 769.2 L 129.85 749.0906 L 128.85 749.0906 L 128.85 769.2 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 770.2 L 573.45 770.2 L 573.45 769.2 L 206.25 769.2 L 206.25 770.2 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 769.2 L 573.45 769.2 L 573.45 749.0906 L 572.45 749.0906 L 572.45 769.2 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 769.2 L 206.25 769.2 L 206.25 749.0906 L 205.25 749.0906 L 205.25 769.2 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 749.0906 L 129.85 749.0906 L 129.85 748.0906 L 34.95 748.0906 L 34.95 749.0906 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 748.0906 L 35.95 748.0906 L 35.95 727.9813 L 34.95 727.9813 L 34.95 748.0906 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 749.0906 L 206.25 749.0906 L 206.25 748.0906 L 129.85 748.0906 L 129.85 749.0906 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 748.0906 L 129.85 748.0906 L 129.85 727.9813 L 128.85 727.9813 L 128.85 748.0906 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 749.0906 L 573.45 749.0906 L 573.45 748.0906 L 206.25 748.0906 L 206.25 749.0906 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 748.0906 L 573.45 748.0906 L 573.45 727.9813 L 572.45 727.9813 L 572.45 748.0906 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 748.0906 L 206.25 748.0906 L 206.25 727.9813 L 205.25 727.9813 L 205.25 748.0906 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 727.9813 L 129.85 727.9813 L 129.85 726.9813 L 34.95 726.9813 L 34.95 727.9813 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 726.9813 L 35.95 726.9813 L 35.95 706.8719 L 34.95 706.8719 L 34.95 726.9813 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 727.9813 L 206.25 727.9813 L 206.25 726.9813 L 129.85 726.9813 L 129.85 727.9813 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 726.9813 L 129.85 726.9813 L 129.85 706.8719 L 128.85 706.8719 L 128.85 726.9813 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 727.9813 L 573.45 727.9813 L 573.45 726.9813 L 206.25 726.9813 L 206.25 727.9813 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 726.9813 L 573.45 726.9813 L 573.45 706.8719 L 572.45 706.8719 L 572.45 726.9813 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 726.9813 L 206.25 726.9813 L 206.25 706.8719 L 205.25 706.8719 L 205.25 726.9813 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 706.8719 L 129.85 706.8719 L 129.85 705.8719 L 34.95 705.8719 L 34.95 706.8719 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 705.8719 L 35.95 705.8719 L 35.95 631.4344 L 34.95 631.4344 L 34.95 705.8719 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 706.8719 L 206.25 706.8719 L 206.25 705.8719 L 129.85 705.8719 L 129.85 706.8719 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 705.8719 L 129.85 705.8719 L 129.85 631.4344 L 128.85 631.4344 L 128.85 705.8719 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 706.8719 L 573.45 706.8719 L 573.45 705.8719 L 206.25 705.8719 L 206.25 706.8719 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 705.8719 L 573.45 705.8719 L 573.45 631.4344 L 572.45 631.4344 L 572.45 705.8719 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 705.8719 L 206.25 705.8719 L 206.25 631.4344 L 205.25 631.4344 L 205.25 705.8719 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 631.4344 L 129.85 631.4344 L 129.85 630.4344 L 34.95 630.4344 L 34.95 631.4344 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 630.4344 L 35.95 630.4344 L 35.95 579.1609 L 34.95 579.1609 L 34.95 630.4344 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 631.4344 L 206.25 631.4344 L 206.25 630.4344 L 129.85 630.4344 L 129.85 631.4344 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 630.4344 L 129.85 630.4344 L 129.85 579.1609 L 128.85 579.1609 L 128.85 630.4344 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 631.4344 L 573.45 631.4344 L 573.45 630.4344 L 206.25 630.4344 L 206.25 631.4344 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 630.4344 L 573.45 630.4344 L 573.45 579.1609 L 572.45 579.1609 L 572.45 630.4344 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 630.4344 L 206.25 630.4344 L 206.25 579.1609 L 205.25 579.1609 L 205.25 630.4344 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 579.1609 L 129.85 579.1609 L 129.85 578.1609 L 34.95 578.1609 L 34.95 579.1609 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 578.1609 L 35.95 578.1609 L 35.95 530.8875 L 34.95 530.8875 L 34.95 578.1609 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 579.1609 L 206.25 579.1609 L 206.25 578.1609 L 129.85 578.1609 L 129.85 579.1609 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 578.1609 L 129.85 578.1609 L 129.85 530.8875 L 128.85 530.8875 L 128.85 578.1609 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 579.1609 L 573.45 579.1609 L 573.45 578.1609 L 206.25 578.1609 L 206.25 579.1609 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 578.1609 L 573.45 578.1609 L 573.45 530.8875 L 572.45 530.8875 L 572.45 578.1609 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 578.1609 L 206.25 578.1609 L 206.25 530.8875 L 205.25 530.8875 L 205.25 578.1609 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 530.8875 L 129.85 530.8875 L 129.85 529.8875 L 34.95 529.8875 L 34.95 530.8875 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 529.8875 L 35.95 529.8875 L 35.95 491.6688 L 34.95 491.6688 L 34.95 529.8875 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 530.8875 L 206.25 530.8875 L 206.25 529.8875 L 129.85 529.8875 L 129.85 530.8875 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 529.8875 L 129.85 529.8875 L 129.85 491.6688 L 128.85 491.6688 L 128.85 529.8875 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 530.8875 L 573.45 530.8875 L 573.45 529.8875 L 206.25 529.8875 L 206.25 530.8875 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 529.8875 L 573.45 529.8875 L 573.45 491.6688 L 572.45 491.6688 L 572.45 529.8875 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 529.8875 L 206.25 529.8875 L 206.25 491.6688 L 205.25 491.6688 L 205.25 529.8875 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 491.6688 L 129.85 491.6688 L 129.85 490.6688 L 34.95 490.6688 L 34.95 491.6688 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 490.6688 L 35.95 490.6688 L 35.95 434.3406 L 34.95 434.3406 L 34.95 490.6688 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 491.6688 L 206.25 491.6688 L 206.25 490.6688 L 129.85 490.6688 L 129.85 491.6688 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 490.6688 L 129.85 490.6688 L 129.85 434.3406 L 128.85 434.3406 L 128.85 490.6688 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 491.6688 L 573.45 491.6688 L 573.45 490.6688 L 206.25 490.6688 L 206.25 491.6688 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 490.6688 L 573.45 490.6688 L 573.45 434.3406 L 572.45 434.3406 L 572.45 490.6688 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 490.6688 L 206.25 490.6688 L 206.25 434.3406 L 205.25 434.3406 L 205.25 490.6688 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 434.3406 L 129.85 434.3406 L 129.85 433.3406 L 34.95 433.3406 L 34.95 434.3406 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 433.3406 L 35.95 433.3406 L 35.95 413.2313 L 34.95 413.2313 L 34.95 433.3406 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 434.3406 L 206.25 434.3406 L 206.25 433.3406 L 129.85 433.3406 L 129.85 434.3406 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 433.3406 L 129.85 433.3406 L 129.85 413.2313 L 128.85 413.2313 L 128.85 433.3406 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 434.3406 L 573.45 434.3406 L 573.45 433.3406 L 206.25 433.3406 L 206.25 434.3406 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 433.3406 L 573.45 433.3406 L 573.45 413.2313 L 572.45 413.2313 L 572.45 433.3406 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 433.3406 L 206.25 433.3406 L 206.25 413.2313 L 205.25 413.2313 L 205.25 433.3406 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 413.2313 L 129.85 413.2313 L 129.85 412.2313 L 34.95 412.2313 L 34.95 413.2313 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 412.2313 L 35.95 412.2313 L 35.95 374.0125 L 34.95 374.0125 L 34.95 412.2313 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 413.2313 L 206.25 413.2313 L 206.25 412.2313 L 129.85 412.2313 L 129.85 413.2313 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 412.2313 L 129.85 412.2313 L 129.85 374.0125 L 128.85 374.0125 L 128.85 412.2313 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 413.2313 L 573.45 413.2313 L 573.45 412.2313 L 206.25 412.2313 L 206.25 413.2313 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 412.2313 L 573.45 412.2313 L 573.45 374.0125 L 572.45 374.0125 L 572.45 412.2313 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 412.2313 L 206.25 412.2313 L 206.25 374.0125 L 205.25 374.0125 L 205.25 412.2313 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 374.0125 L 129.85 374.0125 L 129.85 373.0125 L 34.95 373.0125 L 34.95 374.0125 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 373.0125 L 35.95 373.0125 L 35.95 343.8484 L 34.95 343.8484 L 34.95 373.0125 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 374.0125 L 206.25 374.0125 L 206.25 373.0125 L 129.85 373.0125 L 129.85 374.0125 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 373.0125 L 129.85 373.0125 L 129.85 343.8484 L 128.85 343.8484 L 128.85 373.0125 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 374.0125 L 573.45 374.0125 L 573.45 373.0125 L 206.25 373.0125 L 206.25 374.0125 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 373.0125 L 573.45 373.0125 L 573.45 343.8484 L 572.45 343.8484 L 572.45 373.0125 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 373.0125 L 206.25 373.0125 L 206.25 343.8484 L 205.25 343.8484 L 205.25 373.0125 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 343.8484 L 129.85 343.8484 L 129.85 342.8484 L 34.95 342.8484 L 34.95 343.8484 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 295.575 L 129.85 295.575 L 129.85 294.575 L 34.95 294.575 L 34.95 295.575 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 342.8484 L 35.95 342.8484 L 35.95 295.575 L 34.95 295.575 L 34.95 342.8484 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 343.8484 L 206.25 343.8484 L 206.25 342.8484 L 129.85 342.8484 L 129.85 343.8484 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 295.575 L 206.25 295.575 L 206.25 294.575 L 129.85 294.575 L 129.85 295.575 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 342.8484 L 129.85 342.8484 L 129.85 295.575 L 128.85 295.575 L 128.85 342.8484 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 343.8484 L 573.45 343.8484 L 573.45 342.8484 L 206.25 342.8484 L 206.25 343.8484 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 295.575 L 573.45 295.575 L 573.45 294.575 L 206.25 294.575 L 206.25 295.575 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 342.8484 L 573.45 342.8484 L 573.45 295.575 L 572.45 295.575 L 572.45 342.8484 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 342.8484 L 206.25 342.8484 L 206.25 295.575 L 205.25 295.575 L 205.25 342.8484 z \\\"/><g clip-path=\\\"url(#clip4-37)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 286.1385 282.8562)\\\" x=\\\"0 6.67 10 15.56 20.56 26.12 31.12\\\">Process</text></g><clipPath id=\\\"clip4-38\\\"><path d=\\\"M 35 214 L 128 214 L 128 272 L 35 272 L 35 214 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-38)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.2 271.652 L 127.6 271.652 L 127.6 214.3238 L 35.2 214.3238 L 35.2 271.652 z \\\"/><path clip-path=\\\"url(#clip4-38)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.3 269.652 L 123.5 269.652 L 123.5 251.5426 L 39.3 251.5426 L 39.3 269.652 z \\\"/><path clip-path=\\\"url(#clip4-38)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 44.7652 269.652 L 118.7652 269.652 L 118.7652 259.652 L 44.7652 259.652 L 44.7652 269.652 z \\\"/><g clip-path=\\\"url(#clip4-38)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 44.7652 262.277)\\\" x=\\\"0 5.776 10.224 16 18.128 22.576 27.024 31.472 35.472 37.6 42.048 44.712 49.16 50.984 53.208 55.872 60.32 62.544 64.368 68.816\\\">How does arbitration</text></g><path clip-path=\\\"url(#clip4-38)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 71.3961 260.5973 L 92.3961 260.5973 L 92.3961 250.5973 L 71.3961 250.5973 L 71.3961 260.5973 z \\\"/><g clip-path=\\\"url(#clip4-38)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 71.3961 253.2223)\\\" x=\\\"0 4 6.224 10.672 13.336 15.56\\\">start?</text></g><clipPath id=\\\"clip4-39\\\"><path d=\\\"M 127 214 L 206 214 L 206 272 L 127 272 L 127 214 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-39)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 137.6496 262.277)\\\" x=\\\"0 6.664 11.112 12.936 14.76 16.584 21.032 25.48 27.608 32.056 34.184 38.632 43.08 45.304 47.128 51.128 55.576\\\">Mailing a notice.</text></g><clipPath id=\\\"clip4-40\\\"><path d=\\\"M 205 214 L 574 214 L 574 272 L 205 272 L 205 214 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 262.277)\\\" x=\\\"0 5.336 7.16 9.384 13.832 18.28\\\">Either</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 230.5453 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 233.8153 262.277)\\\" x=\\\"0 4.448 8.896 11.56 13.784\\\">party</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 251.6004 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 254.8704 262.277)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 269.9837 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 273.2536 262.277)\\\" x=\\\"0 6.664 11.112 12.936\\\">mail</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 288.0154 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 291.2853 262.277)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.4064 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 305.6764 262.277)\\\" x=\\\"0 4.448 6.672 11.12 15.568\\\">other</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 323.9108 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 327.1807 262.277)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 331.6299 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 334.8999 262.277)\\\" x=\\\"0 2.664 7.112 11.56 16.008 20.456 24.456\\\">request</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 361.5835 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 364.8535 262.277)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.5253 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 374.7953 262.277)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 29.392\\\">arbitrate,</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 406.4125 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 409.6825 262.277)\\\" x=\\\"0 4.448 8.448 12.896\\\">even</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 427.0301 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 430.3001 262.277)\\\" x=\\\"0 1.824\\\">if</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.3469 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 437.6169 262.277)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 442.0661 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 445.3361 262.277)\\\" x=\\\"0 1.824 6.272 12.048 16.048 20.496 22.32\\\">lawsuit</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 469.883 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 473.1529 262.277)\\\" x=\\\"0 4.448 8.896\\\">has</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.0514 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 489.3213 262.277)\\\" x=\\\"0 4.448 8.896 13.344\\\">been</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 507.1182 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 510.3882 262.277)\\\" x=\\\"0 2.224 4.048 5.872 10.32 14.768\\\">filed.</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 527.3804 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 530.6503 262.277)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 544.4355 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 547.7055 262.277)\\\" x=\\\"0 4.448 8.896 11.12 12.944 16.944\\\">notice</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 253.2223)\\\" x=\\\"0 4 8.448 12.896 17.344 19.168\\\">should</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.2211 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 236.4008 253.2223)\\\" x=\\\"0 4.448 8.896 12.896 16.896 19.56 21.384 25.832\\\">describe</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 266.6859 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 269.8656 253.2223)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.9867 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 284.1664 253.2223)\\\" x=\\\"0 5.776 7.6 11.6 16.048 20.496 22.72\\\">Dispute</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 311.3383 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 314.518 253.2223)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 327.8656 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 331.0453 253.2223)\\\" x=\\\"0 2.664 7.112 8.936 10.76 15.208\\\">relief</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.4789 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 351.6586 253.2223)\\\" x=\\\"0 4 8.448 12.896 17.344 21.792 24.016\\\">sought.</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 377.9008 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 381.0805 253.2223)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 394.8656 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 398.0453 253.2223)\\\" x=\\\"0 2.664 7.112 11.112 15.56 17.384 21.384 23.208 27.656\\\">receiving</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.1547 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 433.3344 253.2223)\\\" x=\\\"0 4.448 8.896 11.56 13.784\\\">party</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 451.1195 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 454.2992 253.2223)\\\" x=\\\"0 6.664 11.112 15.112\\\">must</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 471.6351 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 474.8148 253.2223)\\\" x=\\\"0 6.664 11.112 12.936\\\">mail</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.5765 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 492.7562 253.2223)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 497.2055 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 500.3851 253.2223)\\\" x=\\\"0 2.664 7.112 11.112 15.56 20.008 24.456 28.456\\\">response</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 533.2953 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 536.475 253.2223)\\\" x=\\\"0 5.776 7.6 9.824 14.272 16.096\\\">within</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 557.0219 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 560.2015 253.2223)\\\" x=\\\"0 4.448\\\">20</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 244.1676)\\\" x=\\\"0 4.448 8.896 12.896 16.896\\\">days.</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 228.7211 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 231.1538 244.1676)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 235.5991 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 238.0317 244.1676)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 250.9302 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 253.3629 244.1676)\\\" x=\\\"0 6.664 11.112 12.936\\\">mail</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 268.1246 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 270.5573 244.1676)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.6783 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 284.111 244.1676)\\\" x=\\\"0 4.448 8.896 15.56 20.008 24.456 28.904\\\">demand,</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 315.2438 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 317.6765 244.1676)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 330.575 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 333.0076 244.1676)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.1209 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 350.5536 244.1676)\\\" x=\\\"0 4 8.448 12.896 17.344 21.344\\\">choose</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 376.3505 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 378.7831 244.1676)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 389.9042 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 392.3369 244.1676)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 26.768 31.216\\\">arbitration</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 428.0049 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 430.4375 244.1676)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456\\\">group.</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 453.1211 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 455.5538 244.1676)\\\" x=\\\"0 6.224 8.888\\\">Or,</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.6632 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 469.0959 244.1676)\\\" x=\\\"0 4 8.448 12.896\\\">your</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.6584 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 487.091 244.1676)\\\" x=\\\"0 4.448 8.896 15.56 20.008 24.456\\\">demand</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 516.0012 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 518.4339 244.1676)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 533.5471 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 535.9798 244.1676)\\\" x=\\\"0 4 6.224 10.672 12.896\\\">state</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.3236 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 555.7562 244.1676)\\\" x=\\\"0 2.224 6.672 11.12\\\">that</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 235.1129)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 222.4984 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 224.7098 235.1129)\\\" x=\\\"0 5.776 10.224 14.672\\\">want</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 241.6082 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 243.8196 235.1129)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 254.9407 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 257.152 235.1129)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056\\\">parties</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.2106 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 283.4219 235.1129)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.0938 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 292.3052 235.1129)\\\" x=\\\"0 4 8.448 12.896 17.344 21.344\\\">choose</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 318.1021 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 320.3134 235.1129)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 324.7626 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 326.974 235.1129)\\\" x=\\\"0 1.824 6.272 10.272 14.72\\\">local</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 343.5208 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 345.7322 235.1129)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608\\\">Arbiter.</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.5642 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 373.7756 235.1129)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 378.2209 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 380.4322 235.1129)\\\" x=\\\"0 2.664 7.112 8.936 13.384 15.608 20.056\\\">related</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 404.94 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 407.1514 235.1129)\\\" x=\\\"0 2.224 6.672 8.496 11.16\\\">third</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 422.7608 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 424.9721 235.1129)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056\\\">parties</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 449.0307 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 451.2421 235.1129)\\\" x=\\\"0 4.448\\\">or</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 458.3553 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 460.5667 235.1129)\\\" x=\\\"0 5.776\\\">we</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 470.7932 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 473.0046 235.1129)\\\" x=\\\"0 6.664 11.112 12.936\\\">mail</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 487.7663 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 489.9777 235.1129)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.0988 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 503.3101 235.1129)\\\" x=\\\"0 4.448 8.896 15.56 20.008 24.456 28.904\\\">demand,</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 534.4429 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 536.6543 235.1129)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.5527 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 551.7641 235.1129)\\\" x=\\\"0 6.664 11.112 15.112\\\">must</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 226.0582)\\\" x=\\\"0 2.664 7.112 11.112 15.56 20.008 24.456\\\">respond</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.5101 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 241.2739 226.0582)\\\" x=\\\"0 1.824\\\">in</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.5474 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 250.3112 226.0582)\\\" x=\\\"0 4.448\\\">20</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.2096 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 261.9734 226.0582)\\\" x=\\\"0 4.448 8.896 12.896 16.896\\\">days.</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.0945 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 283.8583 226.0582)\\\" x=\\\"0 5.336 9.784 14.232\\\">Your</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 300.7567 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 303.5205 226.0582)\\\" x=\\\"0 2.664 7.112 11.112 15.56 20.008 24.456 28.456\\\">response</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 336.4306 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 339.1944 226.0582)\\\" x=\\\"0 6.664 11.112 15.112\\\">must</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 356.5304 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 359.2942 226.0582)\\\" x=\\\"0 4 8.448 12.896 17.344 21.344\\\">choose</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 385.091 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 387.8548 226.0582)\\\" x=\\\"0 4.448\\\">an</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 396.7533 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 399.517 226.0582)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 26.768 31.216\\\">arbitration</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 435.185 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 437.9488 226.0582)\\\" x=\\\"0 4.448 7.112 11.56 16.008\\\">group</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 458.4097 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 461.1735 226.0582)\\\" x=\\\"0 4.448\\\">or</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.2868 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 471.0506 226.0582)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456 24.456\\\">propose</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.9607 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 502.7245 226.0582)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 507.1737 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 509.9375 226.0582)\\\" x=\\\"0 1.824 6.272 10.272 14.72\\\">local</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.4844 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 529.2482 226.0582)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608\\\">Arbiter.</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 555.0802 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 557.844 226.0582)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 562.2893 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 565.0531 226.0582)\\\" x=\\\"0 1.824\\\">it</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 217.0035)\\\" x=\\\"0 4.448 8.896 13.344 17.344 21.792 23.32 25.544 27.768 29.896 35.672 40.12 42.248 48.912 53.36 57.36 59.488 63.488 67.936 72.384 76.832 80.832 85.28 87.408 89.632 94.08 98.528 100.656 105.104 107.768 112.216 116.664 121.112\\\">doesn&apos;t, we may choose the group.</text></g><clipPath id=\\\"clip4-41\\\"><path d=\\\"M 35 137 L 128 137 L 128 215 L 35 215 L 35 137 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-41)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.2 214.3238 L 127.6 214.3238 L 127.6 137.8863 L 35.2 137.8863 L 35.2 214.3238 z \\\"/><path clip-path=\\\"url(#clip4-41)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.3 212.3238 L 123.5 212.3238 L 123.5 203.2691 L 39.3 203.2691 L 39.3 212.3238 z \\\"/><path clip-path=\\\"url(#clip4-41)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 53.191 212.3238 L 110.191 212.3238 L 110.191 202.3238 L 53.191 202.3238 L 53.191 212.3238 z \\\"/><g clip-path=\\\"url(#clip4-41)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 53.191 204.9488)\\\" x=\\\"0 7.552 12 16.448 18.576 23.024 25.688 30.136 31.96 34.184 36.848 41.296 43.52 47.968 51.968\\\">* D E M O *tes?</text></g><clipPath id=\\\"clip4-42\\\"><path d=\\\"M 127 137 L 206 137 L 206 215 L 127 215 L 127 137 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-42)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 134.4621 204.9488)\\\" x=\\\"0 5.336 10.672 16.008 18.232 20.36 24.36 29.696 36.36 41.696 43.92 46.048 50.496 53.16 55.288 59.736\\\">AAA, JAMS, or an</text></g><g clip-path=\\\"url(#clip4-42)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 140.1164 195.8941)\\\" x=\\\"0 4.448 8.896 11.56 16.008 20.456 24.904 27.032 32.368 35.032 39.48 41.304 43.528 47.976 50.64\\\">agreed Arbiter.</text></g><clipPath id=\\\"clip4-43\\\"><path d=\\\"M 205 137 L 574 137 L 574 215 L 205 215 L 205 137 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 204.9488)\\\" x=\\\"0 5.336 9.784\\\">You</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 223.8344 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 226.373 204.9488)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 241.4863 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 244.025 204.9488)\\\" x=\\\"0 4 8.448 10.272 14.72 18.72\\\">select</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 264.9703 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 267.509 204.9488)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 278.6301 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 281.1687 204.9488)\\\" x=\\\"0 5.336 12 16.448 19.112 20.936 24.936 29.384\\\">American</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 315.0047 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 317.5433 204.9488)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 19.16 23.608 25.832 27.656 32.104\\\">Arbitration</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 354.098 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 356.6367 204.9488)\\\" x=\\\"0 5.336 9.336 13.336 17.784 21.784 23.608 28.056 30.28 32.104 36.552\\\">Association</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 397.6406 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 400.1793 204.9488)\\\" x=\\\"0 2.664 5.504 10.84 16.176 21.512 24.352\\\">(&quot;AAA&quot;)</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 427.1949 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 429.7336 204.9488)\\\" x=\\\"0 2.664 7.112 9.776 14.224 18.672 23.12 25.784 30.232 34.68 39.128 41.792 46.24 50.688 55.136 59.584\\\">(1-800-778-7879)</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 491.9953 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 494.534 204.9488)\\\" x=\\\"0 4.448 6.672 8.896 13.344 15.568 17.792 20.016 25.792 31.568 37.344 39.568 44.016 48.464 51.128 53.352 57.8 60.464\\\">http://www.adr.org</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.448 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 561.9867 204.9488)\\\" x=\\\"0 4.448\\\">or</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 195.8941)\\\" x=\\\"0 4 9.336 16\\\">JAMS</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 185.8395)\\\" x=\\\"0 2.664 7.112 9.776 14.224 18.672 23.12 25.784 30.232 34.68 39.128 41.792 46.24 50.688 55.136 59.584\\\">(1-800-352-5267)</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 271.8617 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 274.6277 185.8395)\\\" x=\\\"0 4.448 6.672 8.896 13.344 15.568 17.792 20.016 25.792 31.568 37.344 39.568 41.392 45.84 52.504 56.504 60.952 65.4 68.064 70.288 74.288 78.736 85.4\\\">http://www.jamsadr.com.</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 362.2527 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 365.0186 185.8395)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 378.8038 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 381.5697 185.8395)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056\\\">parties</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 405.6283 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 408.3943 185.8395)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 423.5075 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 426.2735 185.8395)\\\" x=\\\"0 4.448 6.272 10.272\\\">also</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 440.9961 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 443.7621 185.8395)\\\" x=\\\"0 4.448 8.896 11.56 16.008\\\">agree</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 464.223 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 466.989 185.8395)\\\" x=\\\"0 1.824\\\">in</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 473.2624 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 476.0284 185.8395)\\\" x=\\\"0 5.776 8.44 10.264 12.488 14.312 18.76\\\">writing</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.2393 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 502.0053 185.8395)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 508.6771 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 511.4431 185.8395)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 515.8923 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 518.6583 185.8395)\\\" x=\\\"0 1.824 6.272 10.272 14.72\\\">local</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 535.2051 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 537.9711 185.8395)\\\" x=\\\"0 4.448 6.672 8.896 13.344 16.008 20.456 24.904 28.904\\\">attorney,</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 176.7848)\\\" x=\\\"0 2.664 7.112 9.336 11.16 13.824 18.272\\\">retired</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 232.3227 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 235.2385 176.7848)\\\" x=\\\"0 1.824 6.272 10.72 15.168 19.616\\\">judge,</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.0823 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 259.9982 176.7848)\\\" x=\\\"0 4.448\\\">or</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 267.1114 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 270.0273 176.7848)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 293.6367 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 296.5526 176.7848)\\\" x=\\\"0 1.824\\\">in</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.826 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 305.7419 176.7848)\\\" x=\\\"0 4.448 8.896 13.344\\\">good</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 323.5388 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 326.4547 176.7848)\\\" x=\\\"0 4 6.224 10.672 15.12 19.568 21.392 25.84\\\">standing</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 356.7477 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 359.6635 176.7848)\\\" x=\\\"0 5.776 7.6 9.824\\\">with</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 373.937 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 376.8529 176.7848)\\\" x=\\\"0 4.448\\\">an</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 385.7513 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 388.6672 176.7848)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 26.768 31.216\\\">arbitration</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 424.3351 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 427.251 176.7848)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456\\\">group.</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 449.9346 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 452.8505 176.7848)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.6357 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 469.5516 176.7848)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 493.1609 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 496.0768 176.7848)\\\" x=\\\"0 6.664 11.112 15.112\\\">must</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 513.4127 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 516.3286 176.7848)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944\\\">arbitrate</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 545.7232 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 548.6391 176.7848)\\\" x=\\\"0 4.448 8.896 13.344 17.792\\\">under</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 167.7301)\\\" x=\\\"0 5.336 10.672\\\">AAA</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.6078 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 228.6503 167.7301)\\\" x=\\\"0 4.448\\\">or</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 235.7636 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 238.8062 167.7301)\\\" x=\\\"0 4 9.336 16\\\">JAMS</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 260.1421 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 263.1846 167.7301)\\\" x=\\\"0 4 8.448 12.896 16.896 21.344 28.008 32.456\\\">consumer</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 298.3096 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 301.3522 167.7301)\\\" x=\\\"0 2.664 7.112 8.936 13.384 17.384\\\">rules.</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 320.9615 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 324.0041 167.7301)\\\" x=\\\"0 5.336 9.784\\\">You</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.2384 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 341.281 167.7301)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 356.3943 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 359.4368 167.7301)\\\" x=\\\"0 4.448 8.896\\\">get</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 370.5579 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 373.6004 167.7301)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 378.0497 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 381.0922 167.7301)\\\" x=\\\"0 4 8.448 12.896\\\">copy</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 397.9906 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 401.0331 167.7301)\\\" x=\\\"0 4.448\\\">of</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 407.705 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 410.7476 167.7301)\\\" x=\\\"0 2.224 6.672 11.12 15.12\\\">these</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.3179 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 433.3604 167.7301)\\\" x=\\\"0 2.664 7.112 8.936 13.384\\\">rules</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 450.7471 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 453.7897 167.7301)\\\" x=\\\"0 2.224 4.888 9.336\\\">from</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 469.7897 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 472.8322 167.7301)\\\" x=\\\"0 4 8.448 12.448\\\">such</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.7306 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 492.7732 167.7301)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456\\\">group.</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 515.4568 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 518.4993 167.7301)\\\" x=\\\"0 5.336 9.784\\\">Any</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 532.2845 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 535.327 167.7301)\\\" x=\\\"0 2.664 7.112 8.936 13.384\\\">rules</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.7137 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 555.7562 167.7301)\\\" x=\\\"0 2.224 6.672 11.12\\\">that</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 158.6754)\\\" x=\\\"0 4 8.448 12.896 15.12 16.944 18.768 22.768\\\">conflict</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 234.5922 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 237.7758 158.6754)\\\" x=\\\"0 5.776 7.6 9.824\\\">with</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 252.0492 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 255.2328 158.6754)\\\" x=\\\"0 4.448 8.896\\\">any</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 268.1312 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 271.3148 158.6754)\\\" x=\\\"0 4.448\\\">of</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 277.9867 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 281.1703 158.6754)\\\" x=\\\"0 4.448 8.896\\\">our</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 292.7328 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 295.9164 158.6754)\\\" x=\\\"0 4.448 8.896 11.56 16.008 20.456 27.12 31.568 36.016 38.24\\\">agreements</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.1625 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 341.3461 158.6754)\\\" x=\\\"0 5.776 7.6 9.824\\\">with</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.6195 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 358.8031 158.6754)\\\" x=\\\"0 4 8.448 12.896\\\">you,</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 373.9242 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 377.1078 158.6754)\\\" x=\\\"0 4.448 8.896 13.344 14.872\\\">don&apos;t</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 394.2055 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 397.389 158.6754)\\\" x=\\\"0 4.448 8.896 13.344 15.168 19.168\\\">apply.</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 418.7836 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 421.9672 158.6754)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 426.4125 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 429.5961 158.6754)\\\" x=\\\"0 2.224 6.672 11.12 15.12\\\">these</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 449.1664 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 452.35 158.6754)\\\" x=\\\"0 4.448 8.896 11.12 12.944 17.392 21.84\\\">options</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 478.1937 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 481.3773 158.6754)\\\" x=\\\"0 4.448 7.112 11.56 16.008 17.536\\\">aren&apos;t</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.139 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 504.3227 158.6754)\\\" x=\\\"0 4.448 8.448 12.896 14.72 16.544 20.992 25.44 27.264 31.712\\\">available,</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 538.264 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 541.4476 158.6754)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 554.7953 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 557.9789 158.6754)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 149.6207)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056\\\">parties</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.6586 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 236.2535 149.6207)\\\" x=\\\"0 4 8.448 12.896 14.424\\\">can&apos;t</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 252.9019 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 255.4968 149.6207)\\\" x=\\\"0 4.448 8.896 11.56 16.008\\\">agree</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.9578 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 278.5527 149.6207)\\\" x=\\\"0 4.448\\\">on</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 287.4511 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 290.046 149.6207)\\\" x=\\\"0 4.448 8.896 13.344 15.568 20.016 24.464 27.128\\\">another,</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.4015 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 321.9964 149.6207)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 326.4456 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 329.0405 149.6207)\\\" x=\\\"0 4 8.448 12.896 15.56\\\">court</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 346.8256 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 349.4205 149.6207)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 364.5338 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 367.1287 149.6207)\\\" x=\\\"0 4 8.448 12.896 17.344 21.344\\\">choose</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 392.9256 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 395.5205 149.6207)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 406.6416 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 409.2365 149.6207)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456\\\">group.</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 431.9201 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 434.515 149.6207)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 448.3001 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 450.895 149.6207)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056\\\">parties</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.9536 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 477.5485 149.6207)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 488.7985 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 491.3934 149.6207)\\\" x=\\\"0 2.224 6.672 11.12\\\">then</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 506.9637 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 509.5586 149.6207)\\\" x=\\\"0 4.448 8.896 11.12 15.568 17.392\\\">obtain</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 531.4024 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 533.9973 149.6207)\\\" x=\\\"0 4.448\\\">an</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 542.8957 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 545.4906 149.6207)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 140.566)\\\" x=\\\"0 4.448 8.896 13.344 17.792 20.456 22.584 26.584 31.032 35.032 39.48 41.608 46.056 48.72 53.168 57.616 62.064 63.592 67.592 69.72 72.384 76.832 78.656 83.104 87.104 89.328 91.456 96.792 101.24 105.24 109.688 111.816 117.152 119.816 124.264 126.088 128.312 132.76 135.424 137.552 144.216 148.664 152.664 154.888 157.016 161.464 165.912 168.136 172.584 175.248 179.248 183.696 185.824 189.824 194.272 198.72 201.384 203.512 207.96 212.408 215.072 219.52 223.968 230.632 235.08 239.528 241.752 245.752 247.88 253.656 255.48 257.704 262.152 264.28 268.728 272.728 274.952 277.08 281.528 285.528 287.656 289.88 294.328 298.776 302.776 304.904 309.352 312.016 316.464 318.592 324.368 327.032 328.856 331.08 333.304 337.752 342.2\\\">under such group&apos;s rules. Such Arbiter must enforce your agreements with us, as they are written.</text></g><clipPath id=\\\"clip4-44\\\"><path d=\\\"M 35 116 L 128 116 L 128 138 L 35 138 L 35 116 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-44)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.2 137.8863 L 127.6 137.8863 L 127.6 116.777 L 35.2 116.777 L 35.2 137.8863 z \\\"/><path clip-path=\\\"url(#clip4-44)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.3 135.8863 L 123.5 135.8863 L 123.5 117.777 L 39.3 117.777 L 39.3 135.8863 z \\\"/><path clip-path=\\\"url(#clip4-44)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.6754 135.8863 L 125.6754 135.8863 L 125.6754 125.8863 L 39.6754 125.8863 L 39.6754 135.8863 z \\\"/><g clip-path=\\\"url(#clip4-44)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 39.6754 128.5113)\\\" x=\\\"0 7.552 9.376 11.2 13.024 15.152 17.376 21.824 26.272 28.4 32.848 37.296 41.744 44.408 46.232 50.68 55.128 57.256 61.704 66.152 68.28 72.728 77.176 79\\\">Will the hearing be held</text></g><path clip-path=\\\"url(#clip4-44)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 66.9449 126.8316 L 95.9449 126.8316 L 95.9449 116.8316 L 66.9449 116.8316 L 66.9449 126.8316 z \\\"/><g clip-path=\\\"url(#clip4-44)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 66.9449 119.4567)\\\" x=\\\"0 4.448 8.896 13.344 16.008 20.456 24.456\\\">nearby?</text></g><clipPath id=\\\"clip4-45\\\"><path d=\\\"M 127 116 L 206 116 L 206 138 L 127 138 L 127 116 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-45)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 158.5461 128.5113)\\\" x=\\\"0 5.336 9.784 13.784\\\">Yes.</text></g><clipPath id=\\\"clip4-46\\\"><path d=\\\"M 205 116 L 574 116 L 574 138 L 205 138 L 205 116 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-46)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 128.5113)\\\" x=\\\"0 4.888 9.336 13.784 15.912 21.248 23.912 28.36 30.184 32.408 36.856 39.52 41.648 47.424 49.248 51.072 52.896 55.024 59.472 62.136 66.584 71.032 73.696 75.824 78.048 82.496 86.944 89.072 93.52 97.968 102.416 105.08 106.904 111.352 115.8 117.928 123.704 125.528 127.752 132.2 134.024 138.472 140.6 145.048 149.496 151.624 158.288 160.112 161.936 166.384 170.384 172.512 176.96 179.184 181.312 185.312 189.76 194.208 196.872 199 203.448 207.896 214.56 219.008 221.136 225.584 228.248 230.376 236.152 240.6 245.048 247.712 252.16 254.288 256.512 260.96 265.408 267.536 269.76 272.424 276.872 281.32 285.32 289.768 293.768 295.992 297.816 302.264 306.712 308.84 313.288 317.288 321.288 325.736 328.4 331.064 335.512 339.96\\\">The Arbiter will order the hearing within 30 miles of your home or where the transaction occurred.</text></g><clipPath id=\\\"clip4-47\\\"><path d=\\\"M 35 74 L 128 74 L 128 117 L 35 117 L 35 74 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-47)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.2 116.777 L 127.6 116.777 L 127.6 74.777 L 35.2 74.777 L 35.2 116.777 z \\\"/><path clip-path=\\\"url(#clip4-47)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.3 114.777 L 123.5 114.777 L 123.5 105.7223 L 39.3 105.7223 L 39.3 114.777 z \\\"/><path clip-path=\\\"url(#clip4-47)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 43.6695 114.777 L 119.6695 114.777 L 119.6695 104.777 L 43.6695 104.777 L 43.6695 114.777 z \\\"/><g clip-path=\\\"url(#clip4-47)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 43.6695 107.402)\\\" x=\\\"0 7.552 12 16.448 18.672 20.8 25.248 29.696 34.144 38.592 40.816 42.944 47.392 51.84 56.288 60.736 65.184 67.008 71.008\\\">What about appeals?</text></g><clipPath id=\\\"clip4-48\\\"><path d=\\\"M 127 74 L 206 74 L 206 117 L 127 117 L 127 74 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-48)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 145.2277 107.402)\\\" x=\\\"0 5.336 9.784 14.232 18.68 23.128 24.952 28.952 31.08 35.528 38.192\\\">Appeals are</text></g><g clip-path=\\\"url(#clip4-48)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 153.8098 98.3473)\\\" x=\\\"0 1.824 3.648 10.312 12.136 14.36 18.808 23.256\\\">limited.</text></g><clipPath id=\\\"clip4-49\\\"><path d=\\\"M 205 74 L 574 74 L 574 117 L 205 117 L 205 74 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 107.402)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 223.3852 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 227.8141 107.402)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608 25.136\\\">Arbiter&apos;s</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.9508 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 261.3798 107.402)\\\" x=\\\"0 4.448 8.896 12.896 14.72 18.72 20.544 24.992\\\">decision</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.8251 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 295.2541 107.402)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 306.5041 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 310.933 107.402)\\\" x=\\\"0 4.448\\\">be</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.8314 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 324.2604 107.402)\\\" x=\\\"0 2.224 4.048 8.496 12.944 14.768\\\">final.</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 341.2526 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 345.6815 107.402)\\\" x=\\\"0\\\">A</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.0175 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 355.4464 107.402)\\\" x=\\\"0 4.448 8.896 11.56 13.784\\\">party</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 373.2316 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 377.6605 107.402)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 392.7738 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 397.2028 107.402)\\\" x=\\\"0 2.224 4.048 5.872\\\">file</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 407.5231 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 411.952 107.402)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 423.0731 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 427.5021 107.402)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608 25.136\\\">Arbiter&apos;s</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.6388 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 461.0678 107.402)\\\" x=\\\"0 4.448 10.224 14.672 17.336\\\">award</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 482.8568 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 487.2858 107.402)\\\" x=\\\"0 5.776 7.6 9.824\\\">with</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.5592 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 505.9882 107.402)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 517.1093 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 521.5382 107.402)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456\\\">proper</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 544.6632 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 549.0922 107.402)\\\" x=\\\"0 4 8.448 12.896 15.56 17.784\\\">court.</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 98.3473)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 19.16 23.608 25.832 27.656 32.104\\\">Arbitration</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 246.1547 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 248.4088 98.3473)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.6588 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 261.913 98.3473)\\\" x=\\\"0 4 8.448 10.272 14.272\\\">solve</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.6356 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 282.8898 98.3473)\\\" x=\\\"0 4.448 8.896 13.344 17.792 22.24 24.064\\\">appeals</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 310.9601 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 313.2142 98.3473)\\\" x=\\\"0 4.448\\\">of</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.8861 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 322.1403 98.3473)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 326.5895 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 328.8436 98.3473)\\\" x=\\\"0 4 10.664 15.112 16.936 18.76 21.424 25.424 27.248 31.696 33.52 40.184\\\">small-claims</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 373.0311 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 375.2853 98.3473)\\\" x=\\\"0 4 8.448 12.896 15.56\\\">court</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.0704 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 395.3246 98.3473)\\\" x=\\\"0 1.824 6.272 10.72 15.168 19.616 26.28 30.728 35.176 37.4\\\">judgement.</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.9535 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 437.2077 98.3473)\\\" x=\\\"0\\\">A</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 442.5436 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 444.7977 98.3473)\\\" x=\\\"0 4.448 8.896 11.56 13.784\\\">party</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 462.5829 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 464.837 98.3473)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 479.9503 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 482.2045 98.3473)\\\" x=\\\"0 4.448 8.896 13.344 17.792 22.24\\\">appeal</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 506.2748 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 508.5289 98.3473)\\\" x=\\\"0 4.448 8.896 13.344 17.792\\\">under</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 528.9899 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 531.244 98.3473)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 542.3651 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 544.6193 98.3473)\\\" x=\\\"0 4.888 10.224 15.56\\\">FAA.</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 562.4005 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 564.6547 98.3473)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 89.2926)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 220.7211 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 223.3349 89.2926)\\\" x=\\\"0 4.448 11.112 15.56 20.008 24.456\\\">amount</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 250.0185 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 252.6324 89.2926)\\\" x=\\\"0 1.824\\\">in</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 258.9058 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 261.5196 89.2926)\\\" x=\\\"0 4 8.448 12.896 15.12 17.784 22.232 26.232 30.68 33.344 37.344\\\">controversy</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.8673 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 305.4811 89.2926)\\\" x=\\\"0 4.448 8.448 12.448 16.896 21.344 25.792\\\">exceeds</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.278 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 337.8918 89.2926)\\\" x=\\\"0 4.448 8.896 11.12 15.568 20.016 24.464 26.688 31.136 35.584\\\">$1,500.00,</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.7043 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 378.3182 89.2926)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 382.7674 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 385.3812 89.2926)\\\" x=\\\"0 4.448 8.896 11.56 13.784\\\">party</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.1664 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 405.7802 89.2926)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 420.8935 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 423.5074 89.2926)\\\" x=\\\"0 4.448 8.896 13.344 17.792 22.24\\\">appeal</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.5777 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 450.1915 89.2926)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 461.3126 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 463.9264 89.2926)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608 25.136\\\">Arbiter&apos;s</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 493.0632 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 495.677 89.2926)\\\" x=\\\"0 2.224 4.048 8.496 12.944 14.768 19.216 23.664\\\">finding.</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.5676 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 524.1815 89.2926)\\\" x=\\\"0 5.336 9.784 13.784\\\">Such</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 542.4158 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 545.0297 89.2926)\\\" x=\\\"0 4.448 8.896 13.344 17.792 22.24\\\">appeal</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 80.2379)\\\" x=\\\"0 5.776 7.6 9.424 11.248 13.376 17.824 22.272 24.4 26.624 31.072 33.2\\\">will be to a</text></g><clipPath id=\\\"clip4-50\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 272.152 L 128.1 272.152 L 128.1 271.152 L 34.7 271.152 L 34.7 272.152 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 271.152 L 35.7 271.152 L 35.7 214.8238 L 34.7 214.8238 L 34.7 271.152 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.1 272.152 L 206 272.152 L 206 271.152 L 128.1 271.152 L 128.1 272.152 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127.1 271.152 L 128.1 271.152 L 128.1 214.8238 L 127.1 214.8238 L 127.1 271.152 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 272.152 L 573.7 272.152 L 573.7 271.152 L 206 271.152 L 206 272.152 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.7 271.152 L 573.7 271.152 L 573.7 214.8238 L 572.7 214.8238 L 572.7 271.152 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 271.152 L 206 271.152 L 206 214.8238 L 205 214.8238 L 205 271.152 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 214.8238 L 128.1 214.8238 L 128.1 213.8238 L 34.7 213.8238 L 34.7 214.8238 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 213.8238 L 35.7 213.8238 L 35.7 138.3863 L 34.7 138.3863 L 34.7 213.8238 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.1 214.8238 L 206 214.8238 L 206 213.8238 L 128.1 213.8238 L 128.1 214.8238 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127.1 213.8238 L 128.1 213.8238 L 128.1 138.3863 L 127.1 138.3863 L 127.1 213.8238 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 214.8238 L 573.7 214.8238 L 573.7 213.8238 L 206 213.8238 L 206 214.8238 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.7 213.8238 L 573.7 213.8238 L 573.7 138.3863 L 572.7 138.3863 L 572.7 213.8238 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 213.8238 L 206 213.8238 L 206 138.3863 L 205 138.3863 L 205 213.8238 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 138.3863 L 128.1 138.3863 L 128.1 137.3863 L 34.7 137.3863 L 34.7 138.3863 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 137.3863 L 35.7 137.3863 L 35.7 117.277 L 34.7 117.277 L 34.7 137.3863 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.1 138.3863 L 206 138.3863 L 206 137.3863 L 128.1 137.3863 L 128.1 138.3863 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127.1 137.3863 L 128.1 137.3863 L 128.1 117.277 L 127.1 117.277 L 127.1 137.3863 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 138.3863 L 573.7 138.3863 L 573.7 137.3863 L 206 137.3863 L 206 138.3863 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.7 137.3863 L 573.7 137.3863 L 573.7 117.277 L 572.7 117.277 L 572.7 137.3863 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 137.3863 L 206 137.3863 L 206 117.277 L 205 117.277 L 205 137.3863 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 117.277 L 128.1 117.277 L 128.1 116.277 L 34.7 116.277 L 34.7 117.277 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 75.277 L 128.1 75.277 L 128.1 74.277 L 34.7 74.277 L 34.7 75.277 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 116.277 L 35.7 116.277 L 35.7 75.277 L 34.7 75.277 L 34.7 116.277 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.1 117.277 L 206 117.277 L 206 116.277 L 128.1 116.277 L 128.1 117.277 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.1 75.277 L 206 75.277 L 206 74.277 L 128.1 74.277 L 128.1 75.277 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127.1 116.277 L 128.1 116.277 L 128.1 75.277 L 127.1 75.277 L 127.1 116.277 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 117.277 L 573.7 117.277 L 573.7 116.277 L 206 116.277 L 206 117.277 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 75.277 L 573.7 75.277 L 573.7 74.277 L 206 74.277 L 206 75.277 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.7 116.277 L 573.7 116.277 L 573.7 75.277 L 572.7 75.277 L 572.7 116.277 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 116.277 L 206 116.277 L 206 75.277 L 205 75.277 L 205 116.277 z \\\"/><g clip-path=\\\"url(#clip4-50)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 36.5264)\\\" x=\\\"0 6.498 11.997 14.391 16.785 21.789 26.793 29.295 34.299 39.303 44.307 504 506.3906 508.7812 511.1719 513.5625 515.9531 518.3438 520.7344 523.125 525.5156\\\">UT  07/2019          </text></g><g clip-path=\\\"url(#clip4-50)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 26.3398)\\\" x=\\\"0 6.003 11.007 16.011 21.015\\\">Page </text></g><g clip-path=\\\"url(#clip4-50)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 55.8097 26.3398)\\\" x=\\\"0\\\">5</text></g><g clip-path=\\\"url(#clip4-50)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.815 26.3398)\\\" x=\\\"0 2.394 7.398 9.9\\\"> of </text></g><g clip-path=\\\"url(#clip4-50)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 73.1021 26.3398)\\\" x=\\\"0\\\">7</text></g><g clip-path=\\\"url(#clip4-50)\\\"><text stroke=\\\"none\\\" fill=\\\"#d9d9d9\\\" style=\\\"font-family:f4-0; font-size:54pt; white-space:pre\\\" transform=\\\"matrix(0.707 0.707 0.707 -0.707 135.6027 198.5094)\\\" x=\\\"0 56.016 96.048 136.08 176.112 216.144 236.16 284.184 324.216 344.232 364.248 416.232 456.264 480.24\\\">Qoppa Software</text></g><g clip-path=\\\"url(#clip4-50)\\\"><text stroke=\\\"none\\\" fill=\\\"#002ba6\\\" style=\\\"font-family:f4-0; font-size:9pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.932 772)\\\" x=\\\"0 9.336 16.008 22.68 29.352 36.024 39.36 47.364 54.036 57.372 60.708 69.372 76.044 80.04 86.712 90.048 94.044 97.38 104.712 111.384 115.38 118.716 126.72 132.72 139.392 142.056 148.728 155.4 158.736 161.4 168.072 174.744 178.08 187.416 194.088 196.752 202.752 206.088 210.084 213.42 220.092 223.428 226.764 233.436 239.436 242.772 246.108 249.444 258.108 266.772 275.436 278.772 285.444 292.116 298.788 305.46 312.132 315.468 321.468 328.14\\\">Qoppa Software - For Evaluation Only - https://www.qoppa.com</text></g></g></svg></svg></g></svg><br>\\n<?xml version='1.0' encoding='UTF-8'?><svg id=\\\"qoppa_document\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" version=\\\"1.1\\\" xmlns=\\\"http://www.w3.org/2000/svg\\\" xmlns:xlink=\\\"http://www.w3.org/1999/xlink\\\"><!-- jPDFWeb v2019R1.03 - Demo Version --><style>title p { display: block; }</style><g id=\\\"qoppa_viewxform\\\" transform=\\\"matrix(1 0 0 1 0 0)\\\"><style type=\\\"text/css\\\">@font-face {font-family:f5-0;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f5-1;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f5-2;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}</style><svg id=\\\"qoppa_page_p5\\\" class=\\\"qoppa_page\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\"><rect class=\\\"qoppa_pageborder\\\" x=\\\"0.5pt\\\" y=\\\"0.5pt\\\" width=\\\"611pt\\\" height=\\\"791pt\\\" fill=\\\"none\\\" /><svg class=\\\"qoppa_pagecontents\\\" x=\\\"0pt\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" viewBox=\\\"0 0 612 792\\\" ><g class=\\\"qoppa_contentstream\\\" transform=\\\"matrix(1 0 0 -1 0 792)\\\" fill=\\\"black\\\" stroke=\\\"black\\\" stroke-width=\\\"1\\\" stroke-linecap=\\\"butt\\\" stroke-linejoin=\\\"miter\\\" stroke-miterlimit=\\\"10\\\"><clipPath id=\\\"clip5-1\\\"><path d=\\\"M 35 727 L 128 727 L 128 770 L 35 770 L 35 727 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-1)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.2 769.7 L 127.6 769.7 L 127.6 727.7 L 35.2 727.7 L 35.2 769.7 z \\\"/><clipPath id=\\\"clip5-2\\\"><path d=\\\"M 205 727 L 574 727 L 574 770 L 205 770 L 205 727 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 760.325)\\\" x=\\\"0 4.448 7.112 12.448 15.112 19.56 21.384 23.608 28.056\\\">3-Arbiter</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 240.3227 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 243.109 760.325)\\\" x=\\\"0 4.448 8.896 13.344 17.792\\\">panel</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.7301 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 265.5165 760.325)\\\" x=\\\"0 2.224 4.888 9.336\\\">from</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.5165 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 284.3029 760.325)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 295.424 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 298.2103 760.325)\\\" x=\\\"0 4 8.448 15.112\\\">same</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 317.7728 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 320.5592 760.325)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 26.768 31.216\\\">arbitration</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 356.2272 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 359.0136 760.325)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456\\\">group.</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 381.6972 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 384.4835 760.325)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 398.2687 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 401.0551 760.325)\\\" x=\\\"0 4.448 8.896 13.344 17.792 22.24\\\">appeal</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 425.1254 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 427.9118 760.325)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 439.1618 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 441.9481 760.325)\\\" x=\\\"0 4.448\\\">be</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 450.8466 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 453.6329 760.325)\\\" x=\\\"0 4.448\\\">de</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 462.5314 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 465.3178 760.325)\\\" x=\\\"0 4.448 8.896 12.896 17.344\\\">novo,</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.8881 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 487.6745 760.325)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.0221 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 503.8085 760.325)\\\" x=\\\"0 4 8.448 10.272 14.272 18.72\\\">solved</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.9804 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 529.7667 760.325)\\\" x=\\\"0 4.448\\\">by</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 538.216 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 541.0023 760.325)\\\" x=\\\"0 6.664 11.112 12.936 17.384 20.048 21.872 24.096\\\">majority</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 751.2703)\\\" x=\\\"0 4 8.448 10.672 15.12\\\">vote.</text></g><clipPath id=\\\"clip5-3\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-3)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 770.2 L 128.1 770.2 L 128.1 769.2 L 34.7 769.2 L 34.7 770.2 z \\\"/><path clip-path=\\\"url(#clip5-3)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 728.2 L 128.1 728.2 L 128.1 727.2 L 34.7 727.2 L 34.7 728.2 z \\\"/><path clip-path=\\\"url(#clip5-3)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 769.2 L 35.7 769.2 L 35.7 728.2 L 34.7 728.2 L 34.7 769.2 z \\\"/><path clip-path=\\\"url(#clip5-3)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.1 770.2 L 206 770.2 L 206 769.2 L 128.1 769.2 L 128.1 770.2 z \\\"/><path clip-path=\\\"url(#clip5-3)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.1 728.2 L 206 728.2 L 206 727.2 L 128.1 727.2 L 128.1 728.2 z \\\"/><path clip-path=\\\"url(#clip5-3)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127.1 769.2 L 128.1 769.2 L 128.1 728.2 L 127.1 728.2 L 127.1 769.2 z \\\"/><path clip-path=\\\"url(#clip5-3)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 770.2 L 573.7 770.2 L 573.7 769.2 L 206 769.2 L 206 770.2 z \\\"/><path clip-path=\\\"url(#clip5-3)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 728.2 L 573.7 728.2 L 573.7 727.2 L 206 727.2 L 206 728.2 z \\\"/><path clip-path=\\\"url(#clip5-3)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.7 769.2 L 573.7 769.2 L 573.7 728.2 L 572.7 728.2 L 572.7 769.2 z \\\"/><path clip-path=\\\"url(#clip5-3)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 769.2 L 206 769.2 L 206 728.2 L 205 728.2 L 205 769.2 z \\\"/><g clip-path=\\\"url(#clip5-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 241.2386 715.4812)\\\" x=\\\"0 6.67 10 15.56 17.84 20.62 23.95 29.51 32.29 34.57 40.13 45.69 48.35 54.46 60.02 65.58 70.58 73.24 78.8 84.36 89.92 92.58 99.25 106.47 112.03 115.36 120.92\\\">Ar* D E M O *ees and Awards</text></g><clipPath id=\\\"clip5-4\\\"><path d=\\\"M 35 680 L 128 680 L 128 705 L 35 705 L 35 680 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-4)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.6 704.277 L 127.5 704.277 L 127.5 680.277 L 35.6 680.277 L 35.6 704.277 z \\\"/><path clip-path=\\\"url(#clip5-4)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.7 700.777 L 123.4 700.777 L 123.4 682.6676 L 39.7 682.6676 L 39.7 700.777 z \\\"/><path clip-path=\\\"url(#clip5-4)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 52.677 700.777 L 110.677 700.777 L 110.677 690.777 L 52.677 690.777 L 52.677 700.777 z \\\"/><g clip-path=\\\"url(#clip5-4)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 52.677 693.4019)\\\" x=\\\"0 7.552 9.376 11.2 13.024 15.152 20.928 25.376 27.504 31.952 36.4 40.4 44.848 49.296 53.296\\\">Will we advance</text></g><path clip-path=\\\"url(#clip5-4)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 51.093 691.7223 L 112.093 691.7223 L 112.093 681.7223 L 51.093 681.7223 L 51.093 691.7223 z \\\"/><g clip-path=\\\"url(#clip5-4)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 51.093 684.3473)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 19.16 23.608 25.832 27.656 32.104 36.552 38.68 43.568 48.016 52.464 56.464\\\">Arbitration Fees?</text></g><clipPath id=\\\"clip5-5\\\"><path d=\\\"M 127 680 L 206 680 L 206 705 L 127 705 L 127 680 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-5)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 135.7422 693.4019)\\\" x=\\\"0 5.336 9.784 13.784 16.008 18.136 22.584 27.032 29.256 31.384 35.384 39.832 44.28 46.408 53.072 57.52\\\">Yes, but you may</text></g><g clip-path=\\\"url(#clip5-5)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 148.541 684.3473)\\\" x=\\\"0 4.448 8.896 12.896 15.024 19.024 23.472 27.472 29.696 33.696\\\">pay costs.</text></g><clipPath id=\\\"clip5-6\\\"><path d=\\\"M 205 680 L 573 680 L 573 705 L 205 705 L 205 680 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 693.4019)\\\" x=\\\"0 7.552\\\">We</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 221.6 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 224.0728 693.4019)\\\" x=\\\"0 4.448 8.896 12.896 17.344 21.792 25.792\\\">advance</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 254.3189 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 256.7917 693.4019)\\\" x=\\\"0 4 8.448 12.896\\\">your</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 272.3542 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 274.827 693.4019)\\\" x=\\\"0 2.84 8.176 10.84 15.288 17.112 19.336 22 26.448 28.672 30.496 34.944\\\">&quot;Arbitration</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 314.2216 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 316.6944 693.4019)\\\" x=\\\"0 4.888 9.336 13.784 17.784\\\">Fees&quot;</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 337.3194 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 339.7922 693.4019)\\\" x=\\\"0 1.824\\\">if</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 343.8391 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 346.3119 693.4019)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.2103 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 361.6831 693.4019)\\\" x=\\\"0 4.448 8.448\\\">ask</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 374.1323 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 376.6051 693.4019)\\\" x=\\\"0 4.448\\\">us</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 385.0544 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 387.5272 693.4019)\\\" x=\\\"0 2.224 6.672\\\">to.</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 396.4217 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 398.8945 693.4019)\\\" x=\\\"0 4.888 9.336 11.16\\\">This</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 414.0547 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 416.5275 693.4019)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44\\\">includes</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 445.9728 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 448.4456 693.4019)\\\" x=\\\"0 2.224 4.048 5.872 7.696 12.144 16.592\\\">filing,</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.262 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 469.7348 693.4019)\\\" x=\\\"0 4.448 8.896 15.56 17.384 21.832 23.656 27.656 29.88 32.544 36.992 39.216 41.04 45.04 49.488\\\">administrative,</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.4497 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 523.9225 693.4019)\\\" x=\\\"0 4.448 8.896 13.344 16.008 17.832 22.28 26.728\\\">hearing,</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.8795 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 555.3523 693.4019)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 684.3473)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608 25.136 29.136 31.264 33.488 37.936 42.384 46.384 48.608 50.736 56.072 60.52 64.968 67.096 71.544 75.992 79.992 82.12 86.12 90.568 95.016 97.68 99.808 104.256 106.48 108.704 113.152 115.816 120.264 124.712 128.712 130.84 133.064 137.512 141.96 145.96 148.088 152.536 156.984 161.432 163.56 168.008 170.232 174.68 179.128 181.792 183.92 188.368 192.368 196.816 201.264 205.712 209.712 214.16 218.16\\\">Arbiter&apos;s fees. You pay your attorney fees and other expenses.</text></g><clipPath id=\\\"clip5-7\\\"><path d=\\\"M 35 656 L 128 656 L 128 681 L 35 681 L 35 656 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-7)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.6 680.277 L 127.5 680.277 L 127.5 656.6769 L 35.6 656.6769 L 35.6 680.277 z \\\"/><path clip-path=\\\"url(#clip5-7)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.7 676.277 L 123.4 676.277 L 123.4 658.1676 L 39.7 658.1676 L 39.7 676.277 z \\\"/><path clip-path=\\\"url(#clip5-7)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 50.0715 676.277 L 113.0715 676.277 L 113.0715 666.277 L 50.0715 666.277 L 50.0715 676.277 z \\\"/><g clip-path=\\\"url(#clip5-7)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 50.0715 668.9019)\\\" x=\\\"0 5.336 8 12.448 14.576 19.024 23.472 30.136 34.584 39.032 43.48 47.48 49.608 54.056 58.504\\\">Are damages and</text></g><path clip-path=\\\"url(#clip5-7)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 40.4641 667.2223 L 123.4641 667.2223 L 123.4641 657.2223 L 40.4641 657.2223 L 40.4641 667.2223 z \\\"/><g clip-path=\\\"url(#clip5-7)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.4641 659.8473)\\\" x=\\\"0 4.448 6.672 8.896 13.344 16.008 20.456 24.904 28.904 31.032 33.256 37.704 42.152 46.152 48.28 52.728 57.176 61.176 65.176 67 71.448 73.272 77.72\\\">attorney fees possible?</text></g><clipPath id=\\\"clip5-8\\\"><path d=\\\"M 127 656 L 206 656 L 206 681 L 127 681 L 127 656 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 139.625 668.9019)\\\" x=\\\"0 5.336 9.784 13.784 16.008 18.136 19.96 22.184 24.312 28.76 30.584 32.408 36.856 42.632 47.08 51.528\\\">Yes, if allowed.</text></g><clipPath id=\\\"clip5-9\\\"><path d=\\\"M 205 656 L 573 656 L 573 681 L 205 681 L 205 656 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 668.9019)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 223.3852 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 225.9124 668.9019)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 249.5218 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 252.049 668.9019)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 267.1623 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 269.6895 668.9019)\\\" x=\\\"0 4.448 10.224 14.672 17.336\\\">award</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.4786 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 294.0058 668.9019)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 305.1269 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 307.6542 668.9019)\\\" x=\\\"0 4 8.448 15.112\\\">same</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 327.2167 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 329.7439 668.9019)\\\" x=\\\"0 4.448 8.896 15.56 20.008 24.456 28.904\\\">damages</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 362.6541 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 365.1813 668.9019)\\\" x=\\\"0 4.448\\\">as</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 373.6305 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 376.1578 668.9019)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.607 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 383.1342 668.9019)\\\" x=\\\"0 4 8.448 12.896 15.56 17.784\\\">court.</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.142 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 405.6693 668.9019)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608\\\">Arbiters</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 433.2786 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 435.8059 668.9019)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 450.9192 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 453.4464 668.9019)\\\" x=\\\"0 4.448 10.224 14.672 17.336\\\">award</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 475.2355 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 477.7627 668.9019)\\\" x=\\\"0 2.664 7.112 11.56 15.56 20.008 24.456 28.904 33.352 35.176\\\">reasonable</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 517.3955 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 519.9227 668.9019)\\\" x=\\\"0 4.448 6.672 8.896 13.344 16.008 20.456 24.904\\\">attorney</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 548.829 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 551.3562 668.9019)\\\" x=\\\"0 2.224 6.672 11.12 15.12\\\">fees,</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 659.8473)\\\" x=\\\"0 4.448 8.896 13.344 15.472 19.92 23.92 28.368 32.816 37.264 41.264 45.712 49.712 51.936 54.064 55.888 58.112 60.24 64.688 66.512 68.336 72.784 78.56 83.008 87.456 89.584 94.032 98.032 100.16 101.984 106.432 112.208\\\">and expenses, * D E M O *by law.</text></g><clipPath id=\\\"clip5-10\\\"><path d=\\\"M 35 633 L 128 633 L 128 657 L 35 657 L 35 633 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-10)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.6 656.6769 L 127.5 656.6769 L 127.5 633.077 L 35.6 633.077 L 35.6 656.6769 z \\\"/><path clip-path=\\\"url(#clip5-10)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.7 652.6769 L 123.4 652.6769 L 123.4 634.5676 L 39.7 634.5676 L 39.7 652.6769 z \\\"/><path clip-path=\\\"url(#clip5-10)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 40.675 652.6769 L 124.675 652.6769 L 124.675 642.6769 L 40.675 642.6769 L 40.675 652.6769 z \\\"/><g clip-path=\\\"url(#clip5-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 645.3019)\\\" x=\\\"0 7.552 9.376 11.2 13.024 15.152 19.152 23.6 28.048 30.176 34.624 39.072 43.072 45.2 50.536 53.2 57.648 59.472 61.696 64.36 68.808 71.032 72.856 77.304\\\">Will you pay Arbitration</text></g><path clip-path=\\\"url(#clip5-10)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 52.7473 643.6223 L 110.7473 643.6223 L 110.7473 633.6223 L 52.7473 633.6223 L 52.7473 643.6223 z \\\"/><g clip-path=\\\"url(#clip5-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 52.7473 636.2473)\\\" x=\\\"0 4.888 9.336 13.784 17.784 19.912 21.736 23.96 26.088 30.088 34.536 38.984 41.112 46.888 48.712 53.16\\\">Fees if you win?</text></g><clipPath id=\\\"clip5-11\\\"><path d=\\\"M 127 633 L 206 633 L 206 657 L 127 657 L 127 633 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 160.2754 645.3019)\\\" x=\\\"0 5.776 10.224\\\">No.</text></g><clipPath id=\\\"clip5-12\\\"><path d=\\\"M 205 633 L 573 633 L 573 657 L 205 657 L 205 633 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 645.3019)\\\" x=\\\"0 2.224 4.448 6.576 8.8 13.248 17.696 19.824 25.16 27.824 32.272 34.096 36.32 40.768 43.432 45.56 50.008 55.784 60.232 62.896 67.344 71.344 73.472 77.472 81.92 86.368 88.496 90.72 95.168 99.616 104.064 108.064 110.288 112.416 116.416 120.864 125.312 127.44 131.888 136.336 140.784 142.312 144.536 146.664 149.328 153.776 155.6 162.264 166.712 171.16 173.824 177.824 182.272 184.4 188.848 192.848 194.976 197.2 201.648 206.096 208.224 213.56 216.224 220.672 222.496 224.72 227.384 231.832 234.056 235.88 240.328 244.776 246.904 251.792 256.24 260.688 264.688\\\">If the Arbiter awards you funds, you don&apos;t reimburse us the Arbitration Fees.</text></g><clipPath id=\\\"clip5-13\\\"><path d=\\\"M 35 601 L 128 601 L 128 634 L 35 634 L 35 601 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-13)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.6 633.077 L 127.5 633.077 L 127.5 601.9129 L 35.6 601.9129 L 35.6 633.077 z \\\"/><path clip-path=\\\"url(#clip5-13)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.7 629.077 L 123.4 629.077 L 123.4 610.9676 L 39.7 610.9676 L 39.7 629.077 z \\\"/><path clip-path=\\\"url(#clip5-13)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 51.1711 629.077 L 112.1711 629.077 L 112.1711 619.077 L 51.1711 619.077 L 51.1711 629.077 z \\\"/><g clip-path=\\\"url(#clip5-13)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 51.1711 621.702)\\\" x=\\\"0 7.552 9.376 11.2 13.024 15.152 19.152 23.6 28.048 30.176 34.624 38.624 43.072 45.736 47.864 52.312 56.76\\\">Will you ever pay</text></g><path clip-path=\\\"url(#clip5-13)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 51.093 620.0223 L 112.093 620.0223 L 112.093 610.0223 L 51.093 610.0223 L 51.093 620.0223 z \\\"/><g clip-path=\\\"url(#clip5-13)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 51.093 612.6473)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 19.16 23.608 25.832 27.656 32.104 36.552 38.68 43.568 48.016 52.464 56.464\\\">Arbitration Fees?</text></g><clipPath id=\\\"clip5-14\\\"><path d=\\\"M 127 601 L 206 601 L 206 634 L 127 634 L 127 601 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-14)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 152.2715 621.702)\\\" x=\\\"0 5.336 9.784 13.784 16.008 21.784 26.232\\\">Yes/No.</text></g><clipPath id=\\\"clip5-15\\\"><path d=\\\"M 205 601 L 573 601 L 573 634 L 205 634 L 205 601 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 621.702)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 214.0453 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 217.6688 621.702)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 228.7898 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 232.4133 621.702)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.0227 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 259.6461 621.702)\\\" x=\\\"0 4.448 8.896 13.344 17.344 21.792 23.32\\\">doesn&apos;t</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 285.193 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 288.8164 621.702)\\\" x=\\\"0 4.448 10.224 14.672 17.336\\\">award</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 310.6055 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 314.2289 621.702)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 327.1273 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 330.7508 621.702)\\\" x=\\\"0 2.224 6.672 11.12 15.568 19.568\\\">funds,</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 352.5437 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 356.1672 621.702)\\\" x=\\\"0 2.224 6.672 11.12\\\">then</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.7375 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 375.3609 621.702)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.2594 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 391.8828 621.702)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 406.9961 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 410.6195 621.702)\\\" x=\\\"0 2.664 7.112 11.56 16.008\\\">repay</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.6312 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 434.2547 621.702)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 445.3758 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 448.9992 621.702)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 19.16 23.608 25.832 27.656 32.104\\\">Arbitration</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 485.5539 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 489.1773 621.702)\\\" x=\\\"0 4.888 9.336 13.784 17.784\\\">Fees.</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.1851 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 512.8086 621.702)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.5937 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 530.2172 621.702)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.8265 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 557.45 621.702)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 612.6473)\\\" x=\\\"0 4.448 8.896 12.896 14.72 19.168\\\">decide</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.2211 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 236.7228 612.6473)\\\" x=\\\"0 5.776 10.224 14.672 16.896 21.344 25.792\\\">whether</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 265.1838 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 268.6855 612.6473)\\\" x=\\\"0 4 8.448 12.896 14.424 16.248\\\">you&apos;ll</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 286.7597 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 290.2614 612.6473)\\\" x=\\\"0 4.448 8.896 12.896\\\">pay.</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 305.3825 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 308.8842 612.6473)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 313.3295 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 316.8312 612.6473)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.7297 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 333.2314 612.6473)\\\" x=\\\"0 6.664 11.112 15.112\\\">must</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 350.5673 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 354.0691 612.6473)\\\" x=\\\"0 4.448 8.896\\\">pay</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 366.9675 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 370.4692 612.6473)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 19.16 23.608 25.832 27.656 32.104\\\">Arbitration</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 407.0239 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 410.5256 612.6473)\\\" x=\\\"0 4.888 9.336 13.784 17.784\\\">Fees,</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.5334 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 434.0351 612.6473)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 445.1562 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 448.658 612.6473)\\\" x=\\\"0 4.448 11.112 15.56 20.008 24.456\\\">amount</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 475.3415 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 478.8433 612.6473)\\\" x=\\\"0 5.776 10.224 14.672 16.2\\\">won&apos;t</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 497.269 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 500.7708 612.6473)\\\" x=\\\"0 4.448 8.448 12.448 16.896 21.344\\\">exceed</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.5676 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 530.0694 612.6473)\\\" x=\\\"0 4 6.224 10.672 12.896\\\">state</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 547.4131 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 550.9148 612.6473)\\\" x=\\\"0 4 8.448 12.896 15.56\\\">court</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 603.5926)\\\" x=\\\"0 4 8.448 12.448 14.672 18.672\\\">costs.</text></g><clipPath id=\\\"clip5-16\\\"><path d=\\\"M 35 534 L 128 534 L 128 602 L 35 602 L 35 534 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-16)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.6 601.9129 L 127.5 601.9129 L 127.5 534.5301 L 35.6 534.5301 L 35.6 601.9129 z \\\"/><path clip-path=\\\"url(#clip5-16)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.7 597.9129 L 123.4 597.9129 L 123.4 579.8035 L 39.7 579.8035 L 39.7 597.9129 z \\\"/><path clip-path=\\\"url(#clip5-16)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 45.2063 597.9129 L 118.2063 597.9129 L 118.2063 587.9129 L 45.2063 587.9129 L 45.2063 597.9129 z \\\"/><g clip-path=\\\"url(#clip5-16)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 45.2063 590.5379)\\\" x=\\\"0 7.552 12 16.448 18.672 20.8 25.248 29.696 34.144 38.592 43.04 47.488 51.488 53.616 55.44 57.664 59.792 63.792 68.24\\\">What happens if you</text></g><path clip-path=\\\"url(#clip5-16)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 73.3 588.8582 L 90.3 588.8582 L 90.3 578.8582 L 73.3 578.8582 L 73.3 588.8582 z \\\"/><g clip-path=\\\"url(#clip5-16)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 73.3 581.4832)\\\" x=\\\"0 5.776 7.6 12.048\\\">win?</text></g><clipPath id=\\\"clip5-17\\\"><path d=\\\"M 127 534 L 206 534 L 206 602 L 127 602 L 127 534 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-17)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 131.9356 590.5379)\\\" x=\\\"0 5.336 9.784 14.232 16.36 20.36 24.808 29.256 31.08 35.528 37.656 42.104 46.552 48.776 50.904 57.568 62.016 64.68\\\">You could get more</text></g><g clip-path=\\\"url(#clip5-17)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 139.2246 581.4832)\\\" x=\\\"0 2.224 6.672 11.12 15.568 17.696 19.92 24.368 28.816 30.944 36.28 38.944 43.392 45.216 47.44 51.888\\\">than the Arbiter</text></g><g clip-path=\\\"url(#clip5-17)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 150.0449 572.4285)\\\" x=\\\"0 4.448 10.224 14.672 17.336 21.784 26.232 30.68\\\">awarded.</text></g><clipPath id=\\\"clip5-18\\\"><path d=\\\"M 205 534 L 573 534 L 573 602 L 205 602 L 205 534 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 590.5379)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 214.0453 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 216.367 590.5379)\\\" x=\\\"0 4.448\\\">an</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.2654 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 227.5871 590.5379)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608 25.136\\\">Arbiter&apos;s</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.7238 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 259.0455 590.5379)\\\" x=\\\"0 4.448 10.224 14.672 17.336\\\">award</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.8345 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 283.1562 590.5379)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 289.8281 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 292.1498 590.5379)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 305.0482 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 307.3699 590.5379)\\\" x=\\\"0 4.448 8.448 12.448 16.896 21.344 25.792\\\">exceeds</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 337.1667 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 339.4884 590.5379)\\\" x=\\\"0 4.448 8.896\\\">our</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.0509 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 353.3726 590.5379)\\\" x=\\\"0 1.824 6.272 10.272\\\">last</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 365.8687 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 368.1903 590.5379)\\\" x=\\\"0 5.336 9.784 12.008 14.232 16.056 20.504 27.168 31.616 36.064\\\">Settlement</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 406.4794 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 408.8011 590.5379)\\\" x=\\\"0 6.224 8.448 10.672 15.12 17.784\\\">Offer,</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 428.805 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 431.1266 590.5379)\\\" x=\\\"0 5.776\\\">we</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 441.3532 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 443.6749 590.5379)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.9249 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 457.2465 590.5379)\\\" x=\\\"0 4.448 8.896\\\">pay</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 470.145 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 472.4666 590.5379)\\\" x=\\\"0\\\">3</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 476.9159 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 479.2375 590.5379)\\\" x=\\\"0 4.448 11.112 15.56 20.008 24.456 26.68 30.68\\\">amounts.</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.1438 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 514.4654 590.5379)\\\" x=\\\"0 7.552\\\">We</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.4654 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 528.7871 590.5379)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 540.0371 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 542.3588 590.5379)\\\" x=\\\"0 4.448 8.896\\\">pay</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 555.2572 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 557.5789 590.5379)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 581.4832)\\\" x=\\\"0 4.448 7.112 11.56 16.008 18.232 22.68\\\">greater</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 234.9477 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 238.6632 581.4832)\\\" x=\\\"0 4.448\\\">of</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.3351 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 249.0506 581.4832)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 260.1717 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 263.8872 581.4832)\\\" x=\\\"0 4.448 10.224 14.672 17.336\\\">award</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 285.6762 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 289.3918 581.4832)\\\" x=\\\"0 4.448 11.112 15.56 20.008 24.456\\\">amount</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 316.0754 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 319.7909 581.4832)\\\" x=\\\"0 4.448\\\">or</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 326.9042 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 330.6197 581.4832)\\\" x=\\\"0 4.448 8.896 13.344 17.792 20.016 24.464\\\">$500.00</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.5376 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 363.2532 581.4832)\\\" x=\\\"0 2.664 5.504 9.952 14.4 18.848 23.296\\\">(&quot;bonus</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 390.5539 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 394.2695 581.4832)\\\" x=\\\"0 4.448 8.896 12.896 19.56 24.008 28.456 30.68 33.52 36.184\\\">payment&quot;).</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 432.6796 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 436.3951 581.4832)\\\" x=\\\"0 7.552\\\">We</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 448.3951 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 452.1107 581.4832)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 463.3607 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 467.0762 581.4832)\\\" x=\\\"0 4.448 8.896\\\">pay</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 479.9746 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 483.6901 581.4832)\\\" x=\\\"0 4 8.448 12.896\\\">your</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.2526 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 502.9682 581.4832)\\\" x=\\\"0 4.448 6.672 8.896 13.344 16.008 20.456 24.904\\\">attorney</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 531.8744 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 535.5899 581.4832)\\\" x=\\\"0 2.224 8 9.824 13.824\\\">twice</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.8634 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 557.5789 581.4832)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 572.4285)\\\" x=\\\"0 4.448 6.672 8.896 13.344 16.008 20.456 24.904\\\">attorney</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.5063 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 242.1723 572.4285)\\\" x=\\\"0 2.224 6.672 11.12\\\">fees</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.2934 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 260.9594 572.4285)\\\" x=\\\"0 4 8.448 12.896 15.12 19.568 22.232 24.896 29.344\\\">conferred</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 294.7563 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 298.4224 572.4285)\\\" x=\\\"0 2.664 5.504 9.952 12.176 14.4 18.848 21.512 25.96 30.408\\\">(&quot;attorney</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 332.8325 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 336.4986 572.4285)\\\" x=\\\"0 4.448 7.112 11.56 18.224 20.048 24.496 31.16 34 36.664\\\">premium&quot;).</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.3892 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 379.0552 572.4285)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.5005 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 387.1666 572.4285)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 398.2877 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 401.9537 572.4285)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 425.5631 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 429.2291 572.4285)\\\" x=\\\"0 4.448 7.112 11.56 16.008 18.672 22.672\\\">orders,</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.1276 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 457.7936 572.4285)\\\" x=\\\"0 5.776\\\">we</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.0202 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 471.6862 572.4285)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 482.9362 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 486.6023 572.4285)\\\" x=\\\"0 4.448 8.896\\\">pay</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.5007 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 503.1667 572.4285)\\\" x=\\\"0 2.664 7.112 11.56 15.56 20.008 24.456 28.904 33.352 35.176\\\">reasonable</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 542.7996 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 546.4656 572.4285)\\\" x=\\\"0 4.448 8.448 12.896 17.344 20.008\\\">expert</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 563.3738)\\\" x=\\\"0 5.776 7.6 9.824 14.272 18.72 22.72\\\">witness</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 236.3227 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 238.5023 563.3738)\\\" x=\\\"0 4 8.448 12.448 14.672\\\">costs</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.1741 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 259.3537 563.3738)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 272.7014 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 274.881 563.3738)\\\" x=\\\"0 4.448 6.672 11.12 15.568\\\">other</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 293.1153 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 295.2949 563.3738)\\\" x=\\\"0 4 8.448 12.448 14.672\\\">costs</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 313.9668 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 316.1464 563.3738)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.0448 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 331.2244 563.3738)\\\" x=\\\"0 1.824 6.272 10.272 14.72 17.384 20.048 24.496\\\">incurred</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 360.1736 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 362.3532 563.3738)\\\" x=\\\"0 2.664 5.504 9.504 13.952 17.952\\\">(&quot;cost</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 382.529 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 384.7086 563.3738)\\\" x=\\\"0 4.448 7.112 11.56 18.224 20.048 24.496 31.16 34 36.664\\\">premium&quot;).</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 423.5992 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 425.7788 563.3738)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.2241 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 432.4037 563.3738)\\\" x=\\\"0 5.776\\\">we</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 442.6303 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 444.8099 563.3738)\\\" x=\\\"0 4.448 8.896 12.896 17.344\\\">never</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 464.8216 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 467.0012 563.3738)\\\" x=\\\"0 6.664 11.112 15.56\\\">made</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 487.0129 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 489.1925 563.3738)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 493.6417 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 495.8213 563.3738)\\\" x=\\\"0 5.336 9.784 12.008 14.232 16.056 20.504 27.168 31.616 36.064\\\">Settlement</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 534.1103 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 536.2899 563.3738)\\\" x=\\\"0 6.224 8.448 10.672 15.12 17.784\\\">Offer,</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 556.2938 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 558.4734 563.3738)\\\" x=\\\"0 5.776\\\">we</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 554.3191)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 220.85 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 224.1983 554.3191)\\\" x=\\\"0 4.448 8.896\\\">pay</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 237.0968 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 240.4451 554.3191)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 251.5662 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 254.9145 554.3191)\\\" x=\\\"0 4.448 8.896 13.344 17.792\\\">bonus</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.7114 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 280.0597 554.3191)\\\" x=\\\"0 4.448 8.896 12.896 19.56 24.008 28.456 30.68\\\">payment,</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.966 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 316.3143 554.3191)\\\" x=\\\"0 4.448 6.672 8.896 13.344 16.008 20.456 24.904\\\">attorney</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 345.2206 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 348.5689 554.3191)\\\" x=\\\"0 4.448 7.112 11.56 18.224 20.048 24.496 31.16\\\">premium,</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 381.9556 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 385.3039 554.3191)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 398.6516 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 401.9999 554.3191)\\\" x=\\\"0 4.448 8.896\\\">any</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 414.8984 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 418.2467 554.3191)\\\" x=\\\"0 4 8.448 12.448\\\">cost</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 432.9186 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 436.2669 554.3191)\\\" x=\\\"0 4.448 7.112 11.56 18.224 20.048 24.496 31.16\\\">premium.</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 469.6536 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 473.002 554.3191)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.7871 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 490.1355 554.3191)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 513.7448 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 517.0932 554.3191)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 532.2064 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 535.5548 554.3191)\\\" x=\\\"0 4.448 7.112 11.56 16.008\\\">order</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 554.2306 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 557.5789 554.3191)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 545.2645)\\\" x=\\\"0 4.448 7.112 11.56 15.56 20.008 24.008\\\">process</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 237.6117 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 240.0494 545.2645)\\\" x=\\\"0 2.224 6.672\\\">for</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 249.3853 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 251.8229 545.2645)\\\" x=\\\"0 4.448 8.896 12.896 19.56 24.008 28.456 30.68\\\">payment.</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 284.7292 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 287.1668 545.2645)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.6121 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 294.0498 545.2645)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 298.499 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 300.9366 545.2645)\\\" x=\\\"0 1.824 6.272\\\">law</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.9874 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 315.425 545.2645)\\\" x=\\\"0 4.448 6.272 8.096 12.544 18.32\\\">allows</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 337.7493 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 340.1869 545.2645)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 353.0853 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 355.523 545.2645)\\\" x=\\\"0 6.664 11.112 13.776 18.224\\\">more,</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.9722 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 378.4098 545.2645)\\\" x=\\\"0 2.224 6.672 8.496\\\">this</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 390.9059 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 393.3436 545.2645)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496\\\">Clause</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 418.2928 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 420.7304 545.2645)\\\" x=\\\"0 5.776 10.224 14.672 16.2\\\">won&apos;t</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 439.1562 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 441.5938 545.2645)\\\" x=\\\"0 4.448 7.112 11.56 15.56 20.008 24.456\\\">prevent</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.2774 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 470.7151 545.2645)\\\" x=\\\"0 4 8.448 12.448\\\">such</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 487.6135 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 490.0511 545.2645)\\\" x=\\\"0 4.448 10.224 14.672 17.336 21.784\\\">award.</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 514.0628 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 516.5005 545.2645)\\\" x=\\\"0 7.552\\\">We</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 528.5005 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 530.9381 545.2645)\\\" x=\\\"0 5.776 10.224 14.672 16.2\\\">won&apos;t</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.3639 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 551.8015 545.2645)\\\" x=\\\"0 4 8.448 12.896\\\">seek</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 536.2098)\\\" x=\\\"0 4.448 6.672 8.896 13.344 16.008 20.456 24.904 28.904 31.032 33.256 37.704 42.152 46.152 48.28 52.728 57.176 61.624 63.752 68.2 72.2 76.648 81.096 85.544 89.544 93.992 97.992\\\">attorney fees and expenses.</text></g><clipPath id=\\\"clip5-19\\\"><path d=\\\"M 35 510 L 128 510 L 128 535 L 35 535 L 35 510 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-19)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.6 534.5301 L 127.5 534.5301 L 127.5 510.5301 L 35.6 510.5301 L 35.6 534.5301 z \\\"/><path clip-path=\\\"url(#clip5-19)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.7 530.5301 L 123.4 530.5301 L 123.4 512.4207 L 39.7 512.4207 L 39.7 530.5301 z \\\"/><path clip-path=\\\"url(#clip5-19)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 51.2317 530.5301 L 112.2317 530.5301 L 112.2317 520.5301 L 51.2317 520.5301 L 51.2317 530.5301 z \\\"/><g clip-path=\\\"url(#clip5-19)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 51.2317 523.1551)\\\" x=\\\"0 5.776 10.224 14.672 16.8 21.248 25.696 27.824 32.272 38.048 42.496 45.16 49.608 51.736 56.184\\\">Can an award be</text></g><path clip-path=\\\"url(#clip5-19)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 62.1535 521.4754 L 101.1535 521.4754 L 101.1535 511.4754 L 62.1535 511.4754 L 62.1535 521.4754 z \\\"/><g clip-path=\\\"url(#clip5-19)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 62.1535 514.1004)\\\" x=\\\"0 4.448 8.448 12.896 14.72 19.168 20.992 25.44 29.888 34.336\\\">explained?</text></g><clipPath id=\\\"clip5-20\\\"><path d=\\\"M 127 510 L 206 510 L 206 535 L 127 535 L 127 510 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-20)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 158.4961 523.1551)\\\" x=\\\"0 5.336 9.784 13.784\\\">Yes.</text></g><clipPath id=\\\"clip5-21\\\"><path d=\\\"M 205 510 L 573 510 L 573 535 L 205 535 L 205 510 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 523.1551)\\\" x=\\\"0\\\">A</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 214.9359 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 218.2265 523.1551)\\\" x=\\\"0 4.448 8.896 11.56 13.784\\\">party</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 236.0117 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 239.3023 523.1551)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 254.4155 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 257.7061 523.1551)\\\" x=\\\"0 2.664 7.112 11.56 16.008 20.456 24.456\\\">request</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 284.3897 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 287.6803 523.1551)\\\" x=\\\"0 4.448 8.896 11.12 15.568 17.392 19.216\\\">details</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 310.899 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 314.1896 523.1551)\\\" x=\\\"0 2.224 4.888 9.336\\\">from</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 330.1896 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 333.4802 523.1551)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 344.6013 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 347.8919 523.1551)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608\\\">Arbiter,</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 373.7239 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 377.0145 523.1551)\\\" x=\\\"0 5.776 7.6 9.824 14.272 16.096\\\">within</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 397.5613 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 400.8519 523.1551)\\\" x=\\\"0 4.448\\\">14</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 409.7504 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 413.0409 523.1551)\\\" x=\\\"0 4.448 8.896 12.896\\\">days</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 429.9394 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 433.23 523.1551)\\\" x=\\\"0 4.448\\\">of</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 439.9018 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 443.1924 523.1551)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.3135 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 457.6041 523.1551)\\\" x=\\\"0 2.664 7.112 8.936 10.76 15.208 19.656\\\">ruling.</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 479.4869 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 482.7775 523.1551)\\\" x=\\\"0 5.776 10.224 14.672\\\">Upon</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.9025 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 505.193 523.1551)\\\" x=\\\"0 4 8.448 12.448\\\">such</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 522.0915 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 525.3821 523.1551)\\\" x=\\\"0 2.664 7.112 11.56 16.008 20.456 24.456 26.68\\\">request,</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 554.2883 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 557.5789 523.1551)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 514.1004)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608 25.736 31.512 33.336 35.16 36.984 39.112 43.56 47.56 52.008 53.832 58.28 60.104 64.552 66.68 68.904 73.352 77.8 79.928 82.592 87.04 88.864 90.688 95.136 99.584 101.712 103.536 107.984 110.112 115.888 118.552 120.376 122.6 124.424 128.872 133.32\\\">Arbiter will explain the ruling in writing.</text></g><clipPath id=\\\"clip5-22\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 704.777 L 128 704.777 L 128 703.777 L 35.1 703.777 L 35.1 704.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 703.777 L 36.1 703.777 L 36.1 680.777 L 35.1 680.777 L 35.1 703.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128 704.777 L 206 704.777 L 206 703.777 L 128 703.777 L 128 704.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127 703.777 L 128 703.777 L 128 680.777 L 127 680.777 L 127 703.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 704.777 L 573.3 704.777 L 573.3 703.777 L 206 703.777 L 206 704.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.3 703.777 L 573.3 703.777 L 573.3 680.777 L 572.3 680.777 L 572.3 703.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 703.777 L 206 703.777 L 206 680.777 L 205 680.777 L 205 703.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 680.777 L 128 680.777 L 128 679.777 L 35.1 679.777 L 35.1 680.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 679.777 L 36.1 679.777 L 36.1 657.1769 L 35.1 657.1769 L 35.1 679.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128 680.777 L 206 680.777 L 206 679.777 L 128 679.777 L 128 680.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127 679.777 L 128 679.777 L 128 657.1769 L 127 657.1769 L 127 679.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 680.777 L 573.3 680.777 L 573.3 679.777 L 206 679.777 L 206 680.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.3 679.777 L 573.3 679.777 L 573.3 657.1769 L 572.3 657.1769 L 572.3 679.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 679.777 L 206 679.777 L 206 657.1769 L 205 657.1769 L 205 679.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 657.1769 L 128 657.1769 L 128 656.1769 L 35.1 656.1769 L 35.1 657.1769 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 656.1769 L 36.1 656.1769 L 36.1 633.577 L 35.1 633.577 L 35.1 656.1769 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128 657.1769 L 206 657.1769 L 206 656.1769 L 128 656.1769 L 128 657.1769 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127 656.1769 L 128 656.1769 L 128 633.577 L 127 633.577 L 127 656.1769 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 657.1769 L 573.3 657.1769 L 573.3 656.1769 L 206 656.1769 L 206 657.1769 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.3 656.1769 L 573.3 656.1769 L 573.3 633.577 L 572.3 633.577 L 572.3 656.1769 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 656.1769 L 206 656.1769 L 206 633.577 L 205 633.577 L 205 656.1769 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 633.577 L 128 633.577 L 128 632.577 L 35.1 632.577 L 35.1 633.577 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 632.577 L 36.1 632.577 L 36.1 602.4129 L 35.1 602.4129 L 35.1 632.577 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128 633.577 L 206 633.577 L 206 632.577 L 128 632.577 L 128 633.577 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127 632.577 L 128 632.577 L 128 602.4129 L 127 602.4129 L 127 632.577 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 633.577 L 573.3 633.577 L 573.3 632.577 L 206 632.577 L 206 633.577 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.3 632.577 L 573.3 632.577 L 573.3 602.4129 L 572.3 602.4129 L 572.3 632.577 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 632.577 L 206 632.577 L 206 602.4129 L 205 602.4129 L 205 632.577 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 602.4129 L 128 602.4129 L 128 601.4129 L 35.1 601.4129 L 35.1 602.4129 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 601.4129 L 36.1 601.4129 L 36.1 535.0301 L 35.1 535.0301 L 35.1 601.4129 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128 602.4129 L 206 602.4129 L 206 601.4129 L 128 601.4129 L 128 602.4129 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127 601.4129 L 128 601.4129 L 128 535.0301 L 127 535.0301 L 127 601.4129 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 602.4129 L 573.3 602.4129 L 573.3 601.4129 L 206 601.4129 L 206 602.4129 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.3 601.4129 L 573.3 601.4129 L 573.3 535.0301 L 572.3 535.0301 L 572.3 601.4129 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 601.4129 L 206 601.4129 L 206 535.0301 L 205 535.0301 L 205 601.4129 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 535.0301 L 128 535.0301 L 128 534.0301 L 35.1 534.0301 L 35.1 535.0301 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 511.0301 L 128 511.0301 L 128 510.0301 L 35.1 510.0301 L 35.1 511.0301 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 534.0301 L 36.1 534.0301 L 36.1 511.0301 L 35.1 511.0301 L 35.1 534.0301 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128 535.0301 L 206 535.0301 L 206 534.0301 L 128 534.0301 L 128 535.0301 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128 511.0301 L 206 511.0301 L 206 510.0301 L 128 510.0301 L 128 511.0301 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127 534.0301 L 128 534.0301 L 128 511.0301 L 127 511.0301 L 127 534.0301 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 535.0301 L 573.3 535.0301 L 573.3 534.0301 L 206 534.0301 L 206 535.0301 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 511.0301 L 573.3 511.0301 L 573.3 510.0301 L 206 510.0301 L 206 511.0301 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.3 534.0301 L 573.3 534.0301 L 573.3 511.0301 L 572.3 511.0301 L 572.3 534.0301 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 534.0301 L 206 534.0301 L 206 511.0301 L 205 511.0301 L 205 534.0301 z \\\"/><g clip-path=\\\"url(#clip5-22)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 273.1062 500.3113)\\\" x=\\\"0 7.78 10.56 16.12 21.68 25.01 27.67 35.45 41.01 43.79 46.07 51.63 57.19\\\">Other Options</text></g><clipPath id=\\\"clip5-23\\\"><path d=\\\"M 35 438 L 128 438 L 128 490 L 35 490 L 35 438 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-23)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.6 489.107 L 127.5 489.107 L 127.5 438.107 L 35.6 438.107 L 35.6 489.107 z \\\"/><path clip-path=\\\"url(#clip5-23)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.7 485.607 L 123.4 485.607 L 123.4 458.443 L 39.7 458.443 L 39.7 485.607 z \\\"/><path clip-path=\\\"url(#clip5-23)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 48.2942 485.607 L 115.2942 485.607 L 115.2942 475.607 L 48.2942 475.607 L 48.2942 485.607 z \\\"/><g clip-path=\\\"url(#clip5-23)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 48.2942 478.232)\\\" x=\\\"0 2.224 4.448 6.576 10.576 15.024 19.472 21.6 26.048 30.496 34.944 36.472 38.696 40.824 46.6 51.048 55.496 57.72 59.848 62.072\\\">If you don&apos;t want to</text></g><path clip-path=\\\"url(#clip5-23)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 43.8078 476.5524 L 119.8078 476.5524 L 119.8078 466.5524 L 43.8078 466.5524 L 43.8078 476.5524 z \\\"/><g clip-path=\\\"url(#clip5-23)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 43.8078 469.1774)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 29.392 31.616 33.744 37.744 42.192 46.64 48.768 52.768 57.216 61.664 63.792 67.792 70.016 71.84 73.664\\\">arbitrate, can you still</text></g><path clip-path=\\\"url(#clip5-23)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 49.8254 467.4977 L 113.8254 467.4977 L 113.8254 457.4977 L 49.8254 457.4977 L 49.8254 467.4977 z \\\"/><g clip-path=\\\"url(#clip5-23)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 49.8254 460.1227)\\\" x=\\\"0 4.448 8.896 11.12 13.248 17.696 19.824 22.048 24.712 29.16 33.608 37.608 42.056 46.056 48.28 50.104 54.552 59\\\">get a transaction?</text></g><clipPath id=\\\"clip5-24\\\"><path d=\\\"M 127 438 L 206 438 L 206 490 L 127 490 L 127 438 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-24)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.1817 478.232)\\\" x=\\\"0 5.336 9.784 13.784 16.008 18.136 23.472 27.92 32.368 34.496 38.496 42.944 47.392 49.52 53.968 58.416\\\">Yes. You can get</text></g><g clip-path=\\\"url(#clip5-24)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 137.2266 469.1774)\\\" x=\\\"0 4.448 8.896 11.56 13.688 17.688 22.136 24.8 28.8 30.624 34.624 39.072 43.072 45.2 49.648 54.096\\\">our* D E M O *nd</text></g><g clip-path=\\\"url(#clip5-24)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 143.668 460.1227)\\\" x=\\\"0 4.448 8.896 12.896 14.72 19.168 23.616 25.744 30.192 34.64 36.864 38.992 41.216\\\">decide not to</text></g><g clip-path=\\\"url(#clip5-24)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 150.6914 451.068)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 29.392\\\">arbitrate.</text></g><clipPath id=\\\"clip5-25\\\"><path d=\\\"M 205 438 L 573 438 L 573 490 L 205 490 L 205 438 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-25)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 478.232)\\\" x=\\\"0 5.776 10.224 14.672 18.672 20.496 24.944 29.392 32.056 34.184 36.408 40.856 45.304 49.304 53.752 55.88 59.88 64.328 68.776 70.6 74.6 79.048 83.048\\\">Consider these choices:</text></g><g clip-path=\\\"url(#clip5-25)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 469.1774)\\\" x=\\\"0 4.448 6.672 8.8 11.024 15.472 17.696 22.144 24.808 31.472 35.92 37.744 39.872 45.648 47.472 51.472 55.92 60.368 62.592 67.04 69.168 74.944 79.392 83.392 87.84 89.664 94.112 96.336 98.16 102.608 107.056 109.28 111.408 117.184 121.632 126.08 128.304 132.752 136.752 138.976 141.104 145.552 149.552 151.776 153.904 158.352 162.8 167.248 169.376 173.824 176.048 178.272 182.72 189.384 193.832 196.056 198.184 200.408 204.856 206.984 210.984 215.432 217.656 219.88 221.704 226.152 228.28 232.728 237.176 241.176 243.304 249.08 250.904 254.904 259.352 263.8 266.024 270.472 274.472\\\">1. Informal Dispute Resolution. Contact us, and attempt to settle any Disputes.</text></g><g clip-path=\\\"url(#clip5-25)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 460.1227)\\\" x=\\\"0 4.448 6.672 8.8 14.136 20.8 25.248 27.072 28.896 31.56 35.56 37.384 41.832 43.656 50.32 54.32 56.448 62.224 66.672 71.12 73.784 76.008 78.232 80.36 85.696 90.144 94.592 98.592 100.72 102.944 107.392 109.52 113.52 117.968 119.792 123.792 128.24 130.368 136.144 137.968 141.968 146.416 150.864 153.088 157.536 161.536 163.664 165.488 169.936 172.064 176.064 182.728 187.176 189 190.824 193.488 197.488 199.312 203.76 205.584 212.248 216.248 218.376 222.376 226.824 231.272 233.936 236.16 238.384 240.512 246.288 248.112 250.336 254.784 256.608 261.056 263.184 267.184 269.408 273.856 276.08 280.528 282.656 284.48 288.928 294.704 296.832 298.656 300.48 307.144 308.968 311.192 315.192\\\">2. Small-claims Court. Seek to solve Disputes in small-claims court, within state law limits.</text></g><g clip-path=\\\"url(#clip5-25)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 451.068)\\\" x=\\\"0 4.448 6.672 8.8 15.024 19.472 21.696 23.824 28.272 30.4 34.848 39.296 43.744 47.744 52.192 54.32 61.872 63.696 65.92 70.368 74.816 79.264 81.488 83.616 85.84 90.288 94.736 96.864 102.64 104.464 108.912 113.36 117.36 121.808 124.032 126.16 133.712 136.376 138.2 140.424 144.872 147 149.224 153.672 155.8 160.248 164.248 166.376 170.824 175.272 179.72 181.848 186.296 190.296 194.296 196.424 198.648 203.096 205.76 207.888 212.336 216.784 218.912 224.248 228.696 231.36 235.808 240.256 246.92 251.368 255.816 258.04 260.168 265.944 267.768 269.992 274.44 278.888 283.336 285.56 287.688 289.912 294.36 298.808 300.936 306.712 308.536 312.984 317.432 321.432 325.88\\\">3. Get a Lease Without the Clause. Write to us and ask for an Agreement without the Clause.</text></g><g clip-path=\\\"url(#clip5-25)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 442.0133)\\\" x=\\\"0 4.448 6.672 8.8 15.024 19.472 21.696 24.36 30.584 35.032 37.256 39.384 43.832 46.056 48.184 53.52 56.184 60.632 62.456 64.68 67.344 71.792 74.016 75.84 80.288 84.736 86.96 89.088 94.424 96.248 100.696 105.144 107.272 111.72 116.168 120.616 122.744 124.968 129.416 133.864 138.312 140.44 142.664 144.488 151.152 155.6 157.424 161.424 163.552 168 172.448 174.672 177.336 181.784 186.232 188.456\\\">4. Opt-Out of Arbitration. Sign and then timely opt-out.</text></g><clipPath id=\\\"clip5-26\\\"><path d=\\\"M 35 405 L 128 405 L 128 439 L 35 439 L 35 405 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-26)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.6 438.107 L 127.5 438.107 L 127.5 405.107 L 35.6 405.107 L 35.6 438.107 z \\\"/><path clip-path=\\\"url(#clip5-26)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.7 434.607 L 123.4 434.607 L 123.4 416.4977 L 39.7 416.4977 L 39.7 434.607 z \\\"/><path clip-path=\\\"url(#clip5-26)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 42.1633 434.607 L 121.1633 434.607 L 121.1633 424.607 L 42.1633 424.607 L 42.1633 434.607 z \\\"/><g clip-path=\\\"url(#clip5-26)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 42.1633 427.232)\\\" x=\\\"0 5.776 10.224 14.672 16.8 20.8 25.248 29.696 31.824 36.272 40.72 42.944 45.608 50.056 54.504 56.728 58.856 63.304 65.528 67.656 69.88 74.328\\\">Can you opt-out of the</text></g><path clip-path=\\\"url(#clip5-26)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 66.8508 425.5524 L 96.8508 425.5524 L 96.8508 415.5524 L 66.8508 415.5524 L 66.8508 425.5524 z \\\"/><g clip-path=\\\"url(#clip5-26)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 66.8508 418.1774)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496 24.944\\\">Clause?</text></g><clipPath id=\\\"clip5-27\\\"><path d=\\\"M 127 405 L 206 405 L 206 439 L 127 439 L 127 405 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-27)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 140.7617 427.232)\\\" x=\\\"0 5.336 9.784 13.784 16.008 18.136 25.688 27.512 29.736 34.184 36.008 40.456 42.584 47.032\\\">Yes. Within 60</text></g><g clip-path=\\\"url(#clip5-27)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 156.9395 418.1774)\\\" x=\\\"0 4.448 8.896 12.896 16.896\\\">days.</text></g><clipPath id=\\\"clip5-28\\\"><path d=\\\"M 205 405 L 573 405 L 573 439 L 205 439 L 205 405 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 427.232)\\\" x=\\\"0 7.552 10.216 12.04 14.264\\\">Write</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 228.3109 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 232.8069 427.232)\\\" x=\\\"0 4.448\\\">us</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 241.2562 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 245.7522 427.232)\\\" x=\\\"0 5.776 7.6 9.824 14.272 16.096\\\">within</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 266.299 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 270.795 427.232)\\\" x=\\\"0 4.448\\\">60</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 279.6935 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 284.1895 427.232)\\\" x=\\\"0 4 8.448 10.272 14.72 19.168 23.616 28.064\\\">calendar</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 314.9238 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 319.4198 427.232)\\\" x=\\\"0 4.448 8.896 12.896\\\">days</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 336.3183 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 340.8143 427.232)\\\" x=\\\"0 4.448\\\">of</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 347.4861 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 351.9821 427.232)\\\" x=\\\"0 4 5.824 10.272 14.72 16.544 20.992\\\">signing</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 377.4274 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 381.9234 427.232)\\\" x=\\\"0 4 8.448 12.896\\\">your</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 397.4859 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 401.9819 427.232)\\\" x=\\\"0 4.448 8.896 11.56 16.008 20.456 27.12 31.568 36.016\\\">agreement</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 440.228 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 444.724 427.232)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 451.3959 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 455.8919 427.232)\\\" x=\\\"0 4.448 8.896 11.12 13.784 18.232 22.68\\\">opt-out</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 480.7981 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 485.2941 427.232)\\\" x=\\\"0 4.448\\\">of</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 491.966 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 496.462 427.232)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 507.5831 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 512.0791 427.232)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496\\\">Clause</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 537.0283 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 541.5243 427.232)\\\" x=\\\"0 2.224 6.672\\\">for</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 550.8602 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 555.3562 427.232)\\\" x=\\\"0 2.224 6.672 11.12\\\">that</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 418.1774)\\\" x=\\\"0 4.448 8.896 11.56 16.008 20.456 27.12 31.568 36.016 38.24\\\">agreement.</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 250.0688 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 252.4616 418.1774)\\\" x=\\\"0 4.448 6.272 10.272\\\">List</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 264.9577 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 267.3505 418.1774)\\\" x=\\\"0 4 8.448 12.896\\\">your</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 282.913 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 285.3058 418.1774)\\\" x=\\\"0 4.448 8.896 15.56 20.008\\\">name,</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 307.5402 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 309.933 418.1774)\\\" x=\\\"0 4.448 8.896 13.344 16.008 20.456 24.456 28.456\\\">address,</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 340.6166 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 343.0095 418.1774)\\\" x=\\\"0 4.448 8.448 12.448 16.896 21.344 25.792\\\">account</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.029 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 373.4218 418.1774)\\\" x=\\\"0 4.448 8.896 15.56 20.008 24.456\\\">number</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 400.5468 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 402.9397 418.1774)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 416.2873 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 418.6801 418.1774)\\\" x=\\\"0 4.448 8.896 11.12 15.568\\\">date.</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 436.4731 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 438.8659 418.1774)\\\" x=\\\"0 4.448 6.272 10.272\\\">List</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 451.362 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 453.7549 418.1774)\\\" x=\\\"0 2.224 6.672 11.12\\\">that</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.0986 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 469.4914 418.1774)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 482.3899 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 484.7827 418.1774)\\\" x=\\\"0 2.84 7.288 11.736\\\">&quot;opt</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 498.7437 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 501.1365 418.1774)\\\" x=\\\"0 4.448 8.896 11.12 13.344\\\">out.&quot;</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 517.3201 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 519.7129 418.1774)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 524.1582 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 526.551 418.1774)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 539.4495 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 541.8423 418.1774)\\\" x=\\\"0 4.448 8.896\\\">opt</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.9634 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 555.3562 418.1774)\\\" x=\\\"0 4.448 8.896 11.12\\\">out,</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 409.1227)\\\" x=\\\"0 1.824 4.048 6.176 11.952 13.776 15.6 17.424 19.552 24 28.448 30.272 34.272 36.4 40.848 45.296 49.744 51.568 55.568 57.696 59.92 64.368 66.496 68.72 73.168 77.616 79.84 81.968 86.416 90.864 93.528 97.976 102.424 109.088 113.536 117.984 120.208\\\">it will only apply to that agreement.</text></g><clipPath id=\\\"clip5-29\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 489.607 L 128 489.607 L 128 488.607 L 35.1 488.607 L 35.1 489.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 488.607 L 36.1 488.607 L 36.1 438.607 L 35.1 438.607 L 35.1 488.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128 489.607 L 206 489.607 L 206 488.607 L 128 488.607 L 128 489.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127 488.607 L 128 488.607 L 128 438.607 L 127 438.607 L 127 488.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 489.607 L 573.3 489.607 L 573.3 488.607 L 206 488.607 L 206 489.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.3 488.607 L 573.3 488.607 L 573.3 438.607 L 572.3 438.607 L 572.3 488.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 488.607 L 206 488.607 L 206 438.607 L 205 438.607 L 205 488.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 438.607 L 128 438.607 L 128 437.607 L 35.1 437.607 L 35.1 438.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 405.607 L 128 405.607 L 128 404.607 L 35.1 404.607 L 35.1 405.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 437.607 L 36.1 437.607 L 36.1 405.607 L 35.1 405.607 L 35.1 437.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128 438.607 L 206 438.607 L 206 437.607 L 128 437.607 L 128 438.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128 405.607 L 206 405.607 L 206 404.607 L 128 404.607 L 128 405.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127 437.607 L 128 437.607 L 128 405.607 L 127 405.607 L 127 437.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 438.607 L 573.3 438.607 L 573.3 437.607 L 206 437.607 L 206 438.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 405.607 L 573.3 405.607 L 573.3 404.607 L 206 404.607 L 206 405.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.3 437.607 L 573.3 437.607 L 573.3 405.607 L 572.3 405.607 L 572.3 437.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 437.607 L 206 437.607 L 206 405.607 L 205 405.607 L 205 437.607 z \\\"/><g clip-path=\\\"url(#clip5-29)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 162.1492 377.7699)\\\" x=\\\"0 6.67 10 12.28 17.84 20.62 23.28 28.84 34.4 39.96 42.62 45.95 51.51 54.29 59.85 62.13 67.69 70.35 75.91 78.57 84.13 89.69 93.02 98.58 101.24 106.24 111.8 117.36 122.36 125.02 130.58 133.91 136.57 142.13 144.41 149.97 154.97 157.75 161.08 166.64 172.2 174.48 179.48 182.14 187.14 192.7 198.26 203.26 205.92 211.48 214.26 216.92 219.7 225.26 227.54 232.54 235.2 241.87 247.43 250.76 256.32 261.88 270.21 275.77 281.33\\\">Print and retain a hard copy or electronic copy of this Agreement</text></g><g clip-path=\\\"url(#clip5-29)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 36.5264)\\\" x=\\\"0 6.498 11.997 14.391 16.785 21.789 26.793 29.295 34.299 39.303 44.307 504 506.3906 508.7812 511.1719 513.5625 515.9531 518.3438 520.7344 523.125 525.5156\\\">UT  07/2019          </text></g><g clip-path=\\\"url(#clip5-29)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 26.3398)\\\" x=\\\"0 6.003 11.007 16.011 21.015\\\">Page </text></g><g clip-path=\\\"url(#clip5-29)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 55.8097 26.3398)\\\" x=\\\"0\\\">6</text></g><g clip-path=\\\"url(#clip5-29)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.815 26.3398)\\\" x=\\\"0 2.394 7.398 9.9\\\"> of </text></g><g clip-path=\\\"url(#clip5-29)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 73.1021 26.3398)\\\" x=\\\"0\\\">7</text></g><g clip-path=\\\"url(#clip5-29)\\\"><text stroke=\\\"none\\\" fill=\\\"#d9d9d9\\\" style=\\\"font-family:f5-0; font-size:54pt; white-space:pre\\\" transform=\\\"matrix(0.707 0.707 0.707 -0.707 135.6027 198.5094)\\\" x=\\\"0 56.016 96.048 136.08 176.112 216.144 236.16 284.184 324.216 344.232 364.248 416.232 456.264 480.24\\\">Qoppa Software</text></g><g clip-path=\\\"url(#clip5-29)\\\"><text stroke=\\\"none\\\" fill=\\\"#002ba6\\\" style=\\\"font-family:f5-0; font-size:9pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.932 772)\\\" x=\\\"0 9.336 16.008 22.68 29.352 36.024 39.36 47.364 54.036 57.372 60.708 69.372 76.044 80.04 86.712 90.048 94.044 97.38 104.712 111.384 115.38 118.716 126.72 132.72 139.392 142.056 148.728 155.4 158.736 161.4 168.072 174.744 178.08 187.416 194.088 196.752 202.752 206.088 210.084 213.42 220.092 223.428 226.764 233.436 239.436 242.772 246.108 249.444 258.108 266.772 275.436 278.772 285.444 292.116 298.788 305.46 312.132 315.468 321.468 328.14\\\">Qoppa Software - For Evaluation Only - https://www.qoppa.com</text></g></g></svg></svg></g></svg><br>\\n<?xml version='1.0' encoding='UTF-8'?><svg id=\\\"qoppa_document\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" version=\\\"1.1\\\" xmlns=\\\"http://www.w3.org/2000/svg\\\" xmlns:xlink=\\\"http://www.w3.org/1999/xlink\\\"><!-- jPDFWeb v2019R1.03 - Demo Version --><style>title p { display: block; }</style><g id=\\\"qoppa_viewxform\\\" transform=\\\"matrix(1 0 0 1 0 0)\\\"><style type=\\\"text/css\\\">@font-face {font-family:f6-0;src:url(\\\"data:application/font-woff;charset=utf-8;base64,d09GRgABAAAAAAp8AAoAAAAADcAAAQABAAAAAAAAAAAAAAAAAAAAAAAAAABPUy8yAAAA9AAAADcAAABWWd9ZMmNtYXAAAAEsAAAAbAAAAIwCiwM0Z2x5ZgAAAZgAAAdLAAAJ6ArdyapoZWFkAAAI5AAAADEAAAA2GI9khmhoZWEAAAkYAAAAIAAAACQGNwJvaG10eAAACTgAAABeAAAAgDkXBShsb2NhAAAJmAAAAEIAAABCI1gg9G1heHAAAAncAAAAGAAAACAAIwA9bmFtZQAACfQAAAB8AAAA5g9SKYxwb3N0AAAKcAAAAAwAAAAgAAMAAHicY2Bk8mKcwMDKwMDUxbSbARlwMeogc/8DATI/MCDAkUEBCG8y3fyvxxDFdJPhEkwOAMlSDLoAeJxjYGBgZGAGYgYGHgYWhgYgLcMgABThYVBg0GewYnBj8GcIZAhmSGRIZkhjyGQoZ6j8/x+oSoFBFyjriiSbypDBkAOS/f/4//X/Z/8f/r/7/67/O/+v+b/6/6r/K/8v/78MbA9OAAAj1iOqeJxtVktsG9cVnXuHpChTEr/DjyRSHI44/IlUpeGQkvgTbepPkZJlUTQlWVLNWq2h2rHrohsv4iJo4P6SOqmRxIukDYqiWRTtJmgBN0CCBu1CRhZd1E5bdFOgdtuVG7SAAY16Z0gmClAOMPPmzX33nnfueUdigPEzf4QEjDIswwDHy5BQnsJovc7QK9Og+3tMU/2W5gT5vSb91Hnm+DE48VCd5+wS+9HcR27829EgRWNrDRroWxfD2GWJs9LKRrMJP242lQ9a66sUeInWm7SancuK68p5+K5yA3519AQP1/+0/nSdgih+heIlGnZ/Gm8VrCgpN2FF+cUOHtb+sq7cV0OpfuL4E/wzPmTMzBBFO11Ol6HL0CWG6EqntDHNSal0Kk0z8P07W9usbnfv7t3tbYT6xtuXTxcRSzPPXcvnAUslfIjN5i/f2bmA7MUv/fT1y5fLUC7f+db8Aq6svvjCwgKj1Rw9/j0+wUfMIDN5oqb61ArTi6A+qahLpA8G+jDeAhBKq1EqmpSK5m5jk0WfL+Hz+Ya80aAoJKKR9A8IIjQ2X9uanWMxm7k96HSa3S63yxUIBPiwkwPIZvCRbn//JxdmZkdcVktP0eLiBtzdp/Bi890fXrq0DDMzr3/93DnWoDeaTaf0M91Wa38glz17ZW1N63P8+N+4T5yN0QuBEsQ2+vZOQoE20LSzjbq9m/Q4BcB/DInEcm58nGUnJ4vNtbN6Q21j58ZGravRVSisnU4m2e7trYWyLCMuLlz9yuKCEZ7N8Ty43cW009nriMZuXB/7AkxMPW/cCooIPt9M2eOxcpHIxs7YGMjyV1WOReqrHh1MjMmQrlQqCVAXp3IpnCBZ1rikS1YnA7QRvdoL9XK0+i5zxenaQSIBaDDYt7r1OhhNJKbOjcQwl6vFQyEv+PlMjueNoIv4+WhUFNE7OLoXDML1XZ5HiEaXngwT82arxRK22TASmykHg106o7FbjLuc4HInL/ZRPb3VIosODrNZjePg8SfwT7QxfItjFa8GXsV6UqKaIOB7vT6fND88jEP+hsz7DRuWqUztQNXk1OTzSxNpC+xJA/2AqfTGcjbLQnB4wrRNJMLs3IsHy2UdRCKrLW2Kx0+JNydjZAKfVTarIpXG26UFQ7u0yim8g+HwdCESBoMhFpsfDQSs5/vzhfWtuXkdCe3WfLWCIBcjEcRYLDdfH4l7vWOmRljEfOHefqWi1+VzP6f9GqlamjQ1cEJTnMQJdHIFWZLFjnqiRrPZ1s85oNmsVyokigtWj9uGt1hA6O2LT5WUPHxQWuXjCT2yekbj8gzd/kHn3UVKsKbanFHiTstpeM8nhqS1xCjUYdA7nhdFqOOhcszbbQAj8fPKj2Az7vPRVteVv1ImVHMy9zRPU32LgKoJz9Tph4fNLx49I0vr1G7HMZJVogg8PErSfJFhCLKNiWrzXAfVCXSpdtdpmGwNXdZidUAU87IgWAbEYHExHCK8dkc6z/vrDk6a9fpIpQthpxPA7YlEPG7A+Mhp5TtQj/F+xFAorbwPF8PeQWRHR/PKI8JR0rixadxwn+dGaHPzylAonKvSCagD9S4fVLkxLERUJ4kn1pU3YSXj84rBivIHbdPI8HT2uinn5zxVOOGpXOdsqZ7qvZHNqN555WqhAJjJ3FwUxXB4aWVYgHAIbexS+ca3z5yBublvXl1eLmEqtbGblNlsZrmRkluaLR1PooHqOZjhzi7GTxg5iUgduxwtfmUi9lUuGJzYzuVZmMo8N8LzzvrH84EAHYvZJf8Q+P1oKAVIbKXS7YNqRQc2u1fBB5O6YrFSkyRgC/nyYjbTPi+T8LhTWy/I7aKqr0jqzmVJc/DO0aVOwuO6i+dj1zJTmM9dSAeDzpWPV6gkDPnLM8FhCAR+p3hJd7pK9eB2qQQuZ6A0qctkF8v5AguSVKsUiy1tTdOtQbW5k73r/AlRdfMyN9Af8zg4u89iMXMJj4caV4263QBGo2lV9TI2FksrD7W+ATNEnvOA8pGv25NtErs6Qjhh8F3/z+DjSWmvkkxa6jreH40KAqLb4/za3CySo+3WJib6NrqDQXlEGEb9VGY6GwrDC9lwGHm+2pOwO/r6Iv6eXt2gb6i2Go1AKFzvzbvdCA7HWNRitph5P+GzHv8XevG+6hF2zRscbQgaKNWVNK/4Wb1u7uNOdRtNPY4+s308IMD0NN5/t6S8HzxlQgBgqyw90OOpwmLpVotL2vvfiQfNI9RuqXnpwH7a0bT1DXS6StZ0yliv9ofDU3uRKKJB+XWSrN4w0H8TBo6eVUIeD7CSVIFNytlLiR9TTmJ3ACVWYC+//Grjt2c/pFW78NZnHqEjIT2glx4tbgAo1AQCu3P9SmP/G7W3N/e/vPUWrbkEbyjX4KWjZ/CScq2z1nKcgH+1cNO6NtZRaP/TUiAwdnjl/CNOGC5ZTD193b09Jotot5u4D3fuoOHoN7lYDIFl2TUdIthtQxNUaOt/bprEGQB4nGNgZGBgAOL9uy5diOe3+crAzfwCKMJw21zgLIL+r8fMyHQTqI6DgQkkCgBowQuoAAAAeJxjYGRgYLr5X48hitmRgeH/fWZGBqAIClAAAHbABKt4nGNggABGXyAWA9MKQDoKzAbSTLMZ/JmSGQKYuRj0QRjI12XSYVBj/MKgDqTVgWo4gLQzwz0IZnZkcATyXYBYGUqrAc10AKqXB6oVBPKdgGxepksMLEBaAABlFhBuAAAAAAAAAAAAAAAAAA4AGgAoADoAUgBoAKIBAgFUAbQB8AIsAloChAKYAqQC6AMSA0oDiAPGA+4EPgRsBJYEqgTIBPQAAHicY2BkYGBQYLBhYGIAAUYGNAAACboAYXicdcq9CoJgFIfxx+9anRobHCMUoguohq7AIVrEQoMXDROhpWvvD50xObyHH897gIQLAV64BFK9nz05NfssyMwBKzbmUD6ZI/lqjuWRIz1P3gw8aGhVztxxTNqjWk3FQTeO25+fDzv2s71UGXip9XSsKdiSa2buv2bjHPt4nGNgZsALAAB9AAQ=\\\");}@font-face {font-family:f6-1;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f6-2;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}</style><svg id=\\\"qoppa_page_p6\\\" class=\\\"qoppa_page\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\"><rect class=\\\"qoppa_pageborder\\\" x=\\\"0.5pt\\\" y=\\\"0.5pt\\\" width=\\\"611pt\\\" height=\\\"791pt\\\" fill=\\\"none\\\" /><svg class=\\\"qoppa_pagecontents\\\" x=\\\"0pt\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" viewBox=\\\"0 0 612 792\\\" ><g class=\\\"qoppa_contentstream\\\" transform=\\\"matrix(1 0 0 -1 0 792)\\\" fill=\\\"black\\\" stroke=\\\"black\\\" stroke-width=\\\"1\\\" stroke-linecap=\\\"butt\\\" stroke-linejoin=\\\"miter\\\" stroke-miterlimit=\\\"10\\\"><clipPath id=\\\"clip6-1\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 284.4843 735.5809)\\\" x=\\\"0 6.67 11.67 17.23 19.51 25.07 27.35\\\">Exhibit</text></g><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(0.99 0 0 -1 314.4843 735.5809)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 317.4843 735.5809)\\\" x=\\\"0\\\">A</text></g><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 94.4 699.1621)\\\" x=\\\"0 3.2783 9.3398 14.8398 20.9014 23.6816 29.1816\\\">Invoice</text></g><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 129.6432 699.1621)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 132.7994 699.1621)\\\" x=\\\"0\\\">#</text></g><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 138.8609 699.1621)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 142.0172 699.1621)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 142.0172 697.4792 L 142.0172 697.4792 L 145.0172 697.4792 L 145.4339 697.4792 L 145.4339 696.6458 L 145.0172 696.6458 L 142.0172 696.6458 L 141.6005 696.6458 L 141.6005 697.4792 z \\\"/><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 145.1734 699.1621)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 145.1734 697.4792 L 145.1734 697.4792 L 148.1734 697.4792 L 148.5901 697.4792 L 148.5901 696.6458 L 148.1734 696.6458 L 145.1734 696.6458 L 144.7568 696.6458 L 144.7568 697.4792 z \\\"/><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 148.3297 699.1621)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 148.3297 697.4792 L 148.3297 697.4792 L 151.3297 697.4792 L 151.7464 697.4792 L 151.7464 696.6458 L 151.3297 696.6458 L 148.3297 696.6458 L 147.913 696.6458 L 147.913 697.4792 z \\\"/><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 151.4859 699.1621)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 151.4859 697.4792 L 151.4859 697.4792 L 154.4859 697.4792 L 154.9026 697.4792 L 154.9026 696.6458 L 154.4859 696.6458 L 151.4859 696.6458 L 151.0693 696.6458 L 151.0693 697.4792 z \\\"/><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 154.6422 699.1621)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 154.6422 697.4792 L 154.6422 697.4792 L 157.6422 697.4792 L 158.0589 697.4792 L 158.0589 696.6458 L 157.6422 696.6458 L 154.6422 696.6458 L 154.2255 696.6458 L 154.2255 697.4792 z \\\"/><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 157.7984 699.1621)\\\" x=\\\"0\\\">0</text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 157.7984 697.4792 L 157.7984 697.4792 L 163.7984 697.4792 L 164.2151 697.4792 L 164.2151 696.6458 L 163.7984 696.6458 L 157.7984 696.6458 L 157.3818 696.6458 L 157.3818 697.4792 z \\\"/><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 163.86 699.1621)\\\" x=\\\"0\\\">4</text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 163.86 697.4792 L 163.86 697.4792 L 169.86 697.4792 L 170.2766 697.4792 L 170.2766 696.6458 L 169.86 696.6458 L 163.86 696.6458 L 163.4433 696.6458 L 163.4433 697.4792 z \\\"/><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 169.9215 699.1621)\\\" x=\\\"0\\\">1</text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 169.9215 697.4792 L 169.9215 697.4792 L 175.9215 697.4792 L 176.3382 697.4792 L 176.3382 696.6458 L 175.9215 696.6458 L 169.9215 696.6458 L 169.5048 696.6458 L 169.5048 697.4792 z \\\"/><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 175.983 699.1621)\\\" x=\\\"0\\\">2</text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 175.983 697.4792 L 175.983 697.4792 L 181.983 697.4792 L 182.3997 697.4792 L 182.3997 696.6458 L 181.983 696.6458 L 175.983 696.6458 L 175.5663 696.6458 L 175.5663 697.4792 z \\\"/><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 182.0445 699.1621)\\\" x=\\\"0\\\">9</text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 182.0445 697.4792 L 182.0445 697.4792 L 188.0445 697.4792 L 188.4612 697.4792 L 188.4612 696.6458 L 188.0445 696.6458 L 182.0445 696.6458 L 181.6279 696.6458 L 181.6279 697.4792 z \\\"/><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 188.1061 699.1621)\\\" x=\\\"0\\\">9</text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 188.1061 697.4792 L 188.1061 697.4792 L 194.1061 697.4792 L 194.5227 697.4792 L 194.5227 696.6458 L 194.1061 696.6458 L 188.1061 696.6458 L 187.6894 696.6458 L 187.6894 697.4792 z \\\"/><clipPath id=\\\"clip6-2\\\"><path d=\\\"M 71 551 L 537 551 L 537 572 L 71 572 L 71 551 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 286.9417 561.1477)\\\" x=\\\"0 6.003 9 14.004 19.008 24.012 28.512 31.014\\\">Products</text></g><clipPath id=\\\"clip6-3\\\"><path d=\\\"M 71 531 L 165 531 L 165 552 L 71 552 L 71 531 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 106.4173 541.1477)\\\" x=\\\"0 7.497 12.501 17.505 22.509\\\">Model</text></g><clipPath id=\\\"clip6-4\\\"><path d=\\\"M 164 531 L 258 531 L 258 552 L 164 552 L 164 531 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-4)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 189.1385 541.1477)\\\" x=\\\"0 6.498 11.502 16.002 20.502 23.499 25.551 30.555 33.057 35.109 40.113\\\">Description</text></g><clipPath id=\\\"clip6-5\\\"><path d=\\\"M 257 531 L 351 531 L 351 552 L 257 552 L 257 531 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-5)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 297.6995 541.1477)\\\" x=\\\"0 7.002 9.504\\\">Qty</text></g><clipPath id=\\\"clip6-6\\\"><path d=\\\"M 350 531 L 444 531 L 444 552 L 350 552 L 350 531 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-6)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 387.4212 541.1477)\\\" x=\\\"0 6.003 9 11.052 15.552\\\">Price</text></g><clipPath id=\\\"clip6-7\\\"><path d=\\\"M 443 531 L 537 531 L 537 552 L 443 552 L 443 531 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-7)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 460.2107 541.1477)\\\" x=\\\"0 6.003 10.503 13.005 18.009 23.013 28.017 33.021 38.025 40.419 46.422 49.419 51.471 55.971\\\">Extended Price</text></g><clipPath id=\\\"clip6-8\\\"><path d=\\\"M 164 511 L 258 511 L 258 532 L 164 532 L 164 511 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 178.6472 522.0696)\\\" x=\\\"0 5.336 9.784 12.448 16.448 18.272 22.272 26.72 30.72 32.848 37.296 41.744 46.192 48.32 53.208 57.656 62.104\\\">Services and Fees</text></g><clipPath id=\\\"clip6-9\\\"><path d=\\\"M 257 511 L 351 511 L 351 532 L 257 532 L 257 511 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 302.4754 522.0696)\\\" x=\\\"0\\\">1</text></g><clipPath id=\\\"clip6-10\\\"><path d=\\\"M 350 511 L 444 511 L 444 532 L 350 532 L 350 511 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 378.8426 522.0696)\\\" x=\\\"0 4.448 6.576 11.024 13.248 17.696 22.144 26.592 28.816 33.264\\\">$ 3,784.97</text></g><clipPath id=\\\"clip6-11\\\"><path d=\\\"M 443 511 L 537 511 L 537 532 L 443 532 L 443 511 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 471.8426 522.0696)\\\" x=\\\"0 4.448 6.576 11.024 13.248 17.696 22.144 26.592 28.816 33.264\\\">$ 3,784.97</text></g><clipPath id=\\\"clip6-12\\\"><path d=\\\"M 164 491 L 258 491 L 258 512 L 164 512 L 164 491 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 196.364 502.0696)\\\" x=\\\"0 6.664 11.112 13.336 15.56 18.224 22.672 26.672\\\">Mattress</text></g><clipPath id=\\\"clip6-13\\\"><path d=\\\"M 257 491 L 351 491 L 351 512 L 257 512 L 257 491 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-13)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 302.4754 502.0696)\\\" x=\\\"0\\\">1</text></g><clipPath id=\\\"clip6-14\\\"><path d=\\\"M 350 491 L 444 491 L 444 512 L 350 512 L 350 491 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-14)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 386.6277 502.0696)\\\" x=\\\"0 4.448 6.576 11.024 13.248 17.696\\\">$ 1.00</text></g><clipPath id=\\\"clip6-15\\\"><path d=\\\"M 443 491 L 537 491 L 537 512 L 443 512 L 443 491 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 479.6277 502.0696)\\\" x=\\\"0 4.448 6.576 11.024 13.248 17.696\\\">$ 1.00</text></g><clipPath id=\\\"clip6-16\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 71.2 572.4446 L 537.2 572.4446 L 537.2 571.4446 L 71.2 571.4446 L 71.2 572.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 536.2 571.4446 L 537.2 571.4446 L 537.2 552.4446 L 536.2 552.4446 L 536.2 571.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 71.2 571.4446 L 72.2 571.4446 L 72.2 552.4446 L 71.2 552.4446 L 71.2 571.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 71.2 552.4446 L 165.2 552.4446 L 165.2 551.4446 L 71.2 551.4446 L 71.2 552.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 71.2 551.4446 L 72.2 551.4446 L 72.2 532.4446 L 71.2 532.4446 L 71.2 551.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 165.2 552.4446 L 258.2 552.4446 L 258.2 551.4446 L 165.2 551.4446 L 165.2 552.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 164.2 551.4446 L 165.2 551.4446 L 165.2 532.4446 L 164.2 532.4446 L 164.2 551.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 258.2 552.4446 L 351.2 552.4446 L 351.2 551.4446 L 258.2 551.4446 L 258.2 552.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 257.2 551.4446 L 258.2 551.4446 L 258.2 532.4446 L 257.2 532.4446 L 257.2 551.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 351.2 552.4446 L 444.2 552.4446 L 444.2 551.4446 L 351.2 551.4446 L 351.2 552.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 350.2 551.4446 L 351.2 551.4446 L 351.2 532.4446 L 350.2 532.4446 L 350.2 551.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 444.2 552.4446 L 537.2 552.4446 L 537.2 551.4446 L 444.2 551.4446 L 444.2 552.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 536.2 551.4446 L 537.2 551.4446 L 537.2 532.4446 L 536.2 532.4446 L 536.2 551.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 443.2 551.4446 L 444.2 551.4446 L 444.2 532.4446 L 443.2 532.4446 L 443.2 551.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 71.2 532.4446 L 165.2 532.4446 L 165.2 531.4446 L 71.2 531.4446 L 71.2 532.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 71.2 531.4446 L 72.2 531.4446 L 72.2 512.4446 L 71.2 512.4446 L 71.2 531.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 165.2 532.4446 L 258.2 532.4446 L 258.2 531.4446 L 165.2 531.4446 L 165.2 532.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 164.2 531.4446 L 165.2 531.4446 L 165.2 512.4446 L 164.2 512.4446 L 164.2 531.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 258.2 532.4446 L 351.2 532.4446 L 351.2 531.4446 L 258.2 531.4446 L 258.2 532.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 257.2 531.4446 L 258.2 531.4446 L 258.2 512.4446 L 257.2 512.4446 L 257.2 531.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 351.2 532.4446 L 444.2 532.4446 L 444.2 531.4446 L 351.2 531.4446 L 351.2 532.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 350.2 531.4446 L 351.2 531.4446 L 351.2 512.4446 L 350.2 512.4446 L 350.2 531.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 444.2 532.4446 L 537.2 532.4446 L 537.2 531.4446 L 444.2 531.4446 L 444.2 532.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 536.2 531.4446 L 537.2 531.4446 L 537.2 512.4446 L 536.2 512.4446 L 536.2 531.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 443.2 531.4446 L 444.2 531.4446 L 444.2 512.4446 L 443.2 512.4446 L 443.2 531.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 71.2 512.4446 L 165.2 512.4446 L 165.2 511.4446 L 71.2 511.4446 L 71.2 512.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 71.2 492.4446 L 165.2 492.4446 L 165.2 491.4446 L 71.2 491.4446 L 71.2 492.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 71.2 511.4446 L 72.2 511.4446 L 72.2 492.4446 L 71.2 492.4446 L 71.2 511.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 165.2 512.4446 L 258.2 512.4446 L 258.2 511.4446 L 165.2 511.4446 L 165.2 512.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 165.2 492.4446 L 258.2 492.4446 L 258.2 491.4446 L 165.2 491.4446 L 165.2 492.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 164.2 511.4446 L 165.2 511.4446 L 165.2 492.4446 L 164.2 492.4446 L 164.2 511.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 258.2 512.4446 L 351.2 512.4446 L 351.2 511.4446 L 258.2 511.4446 L 258.2 512.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 258.2 492.4446 L 351.2 492.4446 L 351.2 491.4446 L 258.2 491.4446 L 258.2 492.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 257.2 511.4446 L 258.2 511.4446 L 258.2 492.4446 L 257.2 492.4446 L 257.2 511.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 351.2 512.4446 L 444.2 512.4446 L 444.2 511.4446 L 351.2 511.4446 L 351.2 512.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 351.2 492.4446 L 444.2 492.4446 L 444.2 491.4446 L 351.2 491.4446 L 351.2 492.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 350.2 511.4446 L 351.2 511.4446 L 351.2 492.4446 L 350.2 492.4446 L 350.2 511.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 444.2 512.4446 L 537.2 512.4446 L 537.2 511.4446 L 444.2 511.4446 L 444.2 512.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 444.2 492.4446 L 537.2 492.4446 L 537.2 491.4446 L 444.2 491.4446 L 444.2 492.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 536.2 511.4446 L 537.2 511.4446 L 537.2 492.4446 L 536.2 492.4446 L 536.2 511.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 443.2 511.4446 L 444.2 511.4446 L 444.2 492.4446 L 443.2 492.4446 L 443.2 511.4446 z \\\"/><clipPath id=\\\"clip6-17\\\"><path d=\\\"M 264 464 L 404 464 L 404 478 L 264 478 L 264 464 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-17)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.9359 468.3239)\\\" x=\\\"0 5.336 9.784 14.232 16.36 21.248 25.696 27.92 32.368 34.192\\\">Sub Total:</text></g><clipPath id=\\\"clip6-18\\\"><path d=\\\"M 403 464 L 535 464 L 535 478 L 403 478 L 403 464 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.55 468.3239)\\\" x=\\\"0 4.448 6.576 11.024 13.248 17.696 22.144 26.592 28.816 33.264\\\">$ 3,785.97</text></g><clipPath id=\\\"clip6-19\\\"><path d=\\\"M 264 451 L 404 451 L 404 465 L 264 465 L 264 451 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-19)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 358.6078 454.8239)\\\" x=\\\"0 5.336 9.784 11.608 16.056 20.056 22.184 27.072 31.52 35.52\\\">Sales Tax:</text></g><clipPath id=\\\"clip6-20\\\"><path d=\\\"M 403 451 L 535 451 L 535 465 L 403 465 L 403 451 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-20)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.55 454.8239)\\\" x=\\\"0 4.448 6.576 11.024 15.472 17.696 22.144\\\">$ 86.03</text></g><clipPath id=\\\"clip6-21\\\"><path d=\\\"M 264 437 L 404 437 L 404 452 L 264 452 L 264 437 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.7758 441.3239)\\\" x=\\\"0 4.888 9.336 11.56 16.008 17.832 19.96 22.184 26.632 30.632 35.08 36.904 40.904 45.352\\\">Total Invoice:</text></g><clipPath id=\\\"clip6-22\\\"><path d=\\\"M 403 437 L 535 437 L 535 452 L 403 452 L 403 437 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-22)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.55 441.3239)\\\" x=\\\"0 4.448 6.576 11.024 13.248 17.696 22.144 26.592 28.816 33.264\\\">$ 3,872.00</text></g><clipPath id=\\\"clip6-23\\\"><path d=\\\"M 264 424 L 404 424 L 404 438 L 264 438 L 264 424 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-23)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 284.3578 427.8239)\\\" x=\\\"0 5.336 12 14.224 16.352 22.128 26.576 31.024 33.152 38.04 42.488 46.936 51.384 55.384 57.512 60.176 65.952 68.176 72.624 74.752 80.088 82.752 87.2 91.2 93.328 98.216 102.664 107.112 109.776\\\">Amt Due Today (w/o Proc Fee):</text></g><clipPath id=\\\"clip6-24\\\"><path d=\\\"M 403 424 L 535 424 L 535 438 L 403 438 L 403 424 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.55 427.8239)\\\" x=\\\"0 4.448 6.576 11.024 13.248 17.696 22.144 26.592 28.816 33.264\\\">$ 3,784.30</text></g><clipPath id=\\\"clip6-25\\\"><path d=\\\"M 264 410 L 404 410 L 404 425 L 264 425 L 264 410 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-25)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.4242 414.3239)\\\" x=\\\"0 5.336 9.784 14.232 16.056 18.184 23.96 28.408 32.408 34.632 36.76 42.536 46.984 50.984 55.432 57.56 62.896 67.344 69.472 74.36 78.808 83.256 87.704 91.704\\\">Addl Cust Cash Pd Today:</text></g><clipPath id=\\\"clip6-26\\\"><path d=\\\"M 403 410 L 535 410 L 535 425 L 403 425 L 403 410 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-26)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.55 414.3239)\\\" x=\\\"0 4.448 6.576 11.024 13.248 17.696\\\">$ 0.00</text></g><clipPath id=\\\"clip6-27\\\"><path d=\\\"M 264 397 L 404 397 L 404 411 L 264 411 L 264 397 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 333.8422 400.8239)\\\" x=\\\"0 5.336 9.784 14.232 18.68 20.808 26.584 31.032 35.032 39.48 41.608 47.384 51.384 55.832 60.28\\\">Snap Cash Used:</text></g><clipPath id=\\\"clip6-28\\\"><path d=\\\"M 403 397 L 535 397 L 535 411 L 403 411 L 403 397 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.55 400.8239)\\\" x=\\\"0 4.448 6.576 11.024 15.472 17.696 22.144\\\">$ 87.70</text></g><clipPath id=\\\"clip6-29\\\"><path d=\\\"M 264 383 L 404 383 L 404 398 L 264 398 L 264 383 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-29)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 274.8227 387.3239)\\\" x=\\\"0 5.336 8 12.448 16.448 18.576 23.464 27.912 32.36 34.488 40.264 44.712 46.536 48.36 52.808 56.808 59.032 63.48 67.928 70.056 72.72 77.168 81.168 83.296 89.96 94.408 97.072 101.072 105.52 109.968 114.416 116.64 119.304\\\">Proc Fee Collected (by Merchant):</text></g><clipPath id=\\\"clip6-30\\\"><path d=\\\"M 403 383 L 535 383 L 535 398 L 403 398 L 403 383 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.55 387.3239)\\\" x=\\\"0 4.448 6.576 11.024 13.248 17.696\\\">$ 0.00</text></g><clipPath id=\\\"clip6-31\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip6-31)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 403.55 464.9489 L 534.3 464.9489 L 534.3 464.4489 L 403.55 464.4489 L 403.55 464.9489 z \\\"/><path clip-path=\\\"url(#clip6-31)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 403.55 451.4489 L 534.3 451.4489 L 534.3 450.9489 L 403.55 450.9489 L 403.55 451.4489 z \\\"/><path clip-path=\\\"url(#clip6-31)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 403.55 437.9489 L 534.3 437.9489 L 534.3 437.4489 L 403.55 437.4489 L 403.55 437.9489 z \\\"/><path clip-path=\\\"url(#clip6-31)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 403.55 424.4489 L 534.3 424.4489 L 534.3 423.9489 L 403.55 423.9489 L 403.55 424.4489 z \\\"/><path clip-path=\\\"url(#clip6-31)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 403.55 410.9489 L 534.3 410.9489 L 534.3 410.4489 L 403.55 410.4489 L 403.55 410.9489 z \\\"/><path clip-path=\\\"url(#clip6-31)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 403.55 397.4489 L 534.3 397.4489 L 534.3 396.9489 L 403.55 396.9489 L 403.55 397.4489 z \\\"/><path clip-path=\\\"url(#clip6-31)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 403.55 383.9489 L 534.3 383.9489 L 534.3 383.4489 L 403.55 383.4489 L 403.55 383.9489 z \\\"/><g clip-path=\\\"url(#clip6-31)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 36.5264)\\\" x=\\\"0 6.498 11.997 14.391 16.785 21.789 26.793 29.295 34.299 39.303 44.307 504 506.3906 508.7812 511.1719 513.5625 515.9531 518.3438 520.7344 523.125 525.5156\\\">UT  07/2019          </text></g><g clip-path=\\\"url(#clip6-31)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 26.3398)\\\" x=\\\"0 6.003 11.007 16.011 21.015\\\">Page </text></g><g clip-path=\\\"url(#clip6-31)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 55.8097 26.3398)\\\" x=\\\"0\\\">7</text></g><g clip-path=\\\"url(#clip6-31)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.815 26.3398)\\\" x=\\\"0 2.394 7.398 9.9\\\"> of </text></g><g clip-path=\\\"url(#clip6-31)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 73.1021 26.3398)\\\" x=\\\"0\\\">7</text></g><g clip-path=\\\"url(#clip6-31)\\\"><text stroke=\\\"none\\\" fill=\\\"#d9d9d9\\\" style=\\\"font-family:f6-0; font-size:54pt; white-space:pre\\\" transform=\\\"matrix(0.707 0.707 0.707 -0.707 135.6027 198.5094)\\\" x=\\\"0 56.016 96.048 136.08 176.112 216.144 236.16 284.184 324.216 344.232 364.248 416.232 456.264 480.24\\\">Qoppa Software</text></g><g clip-path=\\\"url(#clip6-31)\\\"><text stroke=\\\"none\\\" fill=\\\"#002ba6\\\" style=\\\"font-family:f6-0; font-size:9pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.932 772)\\\" x=\\\"0 9.336 16.008 22.68 29.352 36.024 39.36 47.364 54.036 57.372 60.708 69.372 76.044 80.04 86.712 90.048 94.044 97.38 104.712 111.384 115.38 118.716 126.72 132.72 139.392 142.056 148.728 155.4 158.736 161.4 168.072 174.744 178.08 187.416 194.088 196.752 202.752 206.088 210.084 213.42 220.092 223.428 226.764 233.436 239.436 242.772 246.108 249.444 258.108 266.772 275.436 278.772 285.444 292.116 298.788 305.46 312.132 315.468 321.468 328.14\\\">Qoppa Software - For Evaluation Only - https://www.qoppa.com</text></g></g></svg></svg></g></svg><br>\\n</body> \\n </html>\\n\"\n        }\n    },\n    \"success\": true,\n    \"status\": 200\n}"}],"_postman_id":"c54899fd-a664-4ffe-b7de-c7420cbd1450"},{"name":"Sign agreement","event":[{"listen":"test","script":{"exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});\r","pm.test(\"Success message\", function () {\r","    pm.expect(pm.response.text()).to.include(\"success\");\r","});"],"type":"text/javascript","id":"09a99e54-9199-43b6-8ecf-5d254897e01c"}}],"id":"cec9087b-7b84-40c9-954a-c8548af0d43b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"<p>(optional - ID generated by the client)</p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"agreementInformation\": {\r\n    \"signedTime\": \"2020-02-21T18:00:00Z\",\r\n    \"signedMethod\": \"acceptance\",\r\n    \"signedBy\": \"John Doe\",\r\n    \"device\": \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36\",\r\n    \"deviceIP\": \"10.1.1.10\"\r\n  }\r\n}"},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/signed?document=agreement","description":"<h1 id=\"sign-agreement\">Sign Agreement</h1>\n<p>This endpoint sets the signed date on the application, marks the agreement as signed, and changes the application status from PENDING_SIGNED_DOCS to PENDING_DEL (Pending Delivery) status and PENDING_SHIPPING sub-status.</p>\n<h1 id=\"request-object\">Request Object</h1>\n<h2 id=\"customerinformationhash\"><code>customerInformation:hash</code></h2>\n<blockquote>\n<h4 id=\"signedtimestring\"><code>signedTime:string</code></h4>\n<ul>\n<li>Required</li>\n<li>Date time at which the agreement sign date is in UTC Standard. Example 2020-02-21T18:00:00Z</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"signedmethodstring\"><code>signedMethod:string</code></h4>\n<ul>\n<li>Required</li>\n<li>Signed method. Valid value is only acceptance</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"signedbystring\"><code>signedBy:string</code></h4>\n<ul>\n<li>Optional</li>\n<li>Name of the person signing the lease</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"devicestring\"><code>device:string</code></h4>\n<ul>\n<li>Optional</li>\n<li>Device type on which the agreement is signed</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"deviceipstring\"><code>deviceIP:string</code></h4>\n<ul>\n<li>Optional</li>\n<li>Device address from where the agreement is signed</li>\n</ul>\n</blockquote>\n<h1 id=\"response-object\">Response Object</h1>\n<h2 id=\"datahash\"><code>data:hash</code></h2>\n<blockquote>\n<ul>\n<li>Empty value ( {} ) for successful responses.</li>\n</ul>\n</blockquote>\n<h2 id=\"successboolean\"><code>success:boolean</code></h2>\n<blockquote>\n<ul>\n<li>Value with the result of the request. Possible values are true or false</li>\n</ul>\n</blockquote>\n<h2 id=\"captureboolean\"><code>capture:boolean</code></h2>\n<blockquote>\n<ul>\n<li>Value indicating if the capture endpoint needs to be called to complete the application process. Possible values are true or false</li>\n</ul>\n</blockquote>\n<h2 id=\"statusinteger\"><code>status:integer</code></h2>\n<blockquote>\n<ul>\n<li>Value with status code of the request. For example: 200, 400, 404</li>\n</ul>\n</blockquote>\n","urlObject":{"path":["platform","v1","application","{{applicationId}}","signed"],"host":["{{baseUrl}}"],"query":[{"key":"document","value":"agreement"}],"variable":[]}},"response":[{"id":"e1e0f3a5-6001-4199-a4fc-1c1fc2f4282c","name":"Not Found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123"}],"body":{"mode":"raw","raw":"{\r\n  \"agreementInformation\": {\r\n    \"signedTime\": \"2020-02-21T18:00:00Z\",\r\n    \"signedMethod\": \"acceptance\",\r\n    \"signedBy\": \"John Doe\",\r\n    \"device\": \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36\",\r\n    \"deviceIP\": \"10.1.1.10\"\r\n  }\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{baseUrl}}/platform/v1/application/{{applicationId}}/signed?document=agreement","host":["{{baseUrl}}"],"path":["platform","v1","application","{{applicationId}}","signed"],"query":[{"key":"document","value":"agreement"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"133"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 16 Jul 2020 17:03:16 GMT"},{"key":"x-amzn-RequestId","value":"d596e661-4e08-4944-a32a-e2e9d077101f"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"Pxo9DGyiPHcF25Q="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f108853-ef2b033fb25f0eb879f3d58e"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 0a72bb7be10458e1aefa37a097f21894.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"BW7lO-fv-dBAE-rM71lbkJaSyoAtnfHQkpMjtTQ6XjLCR9GCTyzCBA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"status\": 404,\n    \"error\": [\n        {\n            \"type\": \"validation_error\",\n            \"message\": \"Application not found\",\n            \"code\": \"application_not_found\"\n        }\n    ]\n}"},{"id":"73de6087-a217-4a06-8a7a-e98d256422f0","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123"}],"body":{"mode":"raw","raw":"{\r\n  \"agreementInformation\": {\r\n    \"signedTime\": \"2020-02-21T18:00:00Z\",\r\n    \"signedMethod\": \"acceptance\",\r\n    \"signedBy\": \"John Doe\",\r\n    \"device\": \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36\",\r\n    \"deviceIP\": \"10.1.1.10\"\r\n  }\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{baseUrl}}/platform/v1/application/{{applicationId}}/signed?document=agreement","host":["{{baseUrl}}"],"path":["platform","v1","application","{{applicationId}}","signed"],"query":[{"key":"document","value":"agreement"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"39"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:25:11 GMT"},{"key":"x-amzn-RequestId","value":"1fb9d04e-d5d8-4c52-ab99-f280f30974e6"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P02TZGf6vHcFvIA="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d0e2-d14a91504ec81fad79cc0598"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"TGhuOXXJY2_ad54jcWoH4dSCFk37DVH5IoBeHg8qehauxewnMC9pxA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {},\n    \"status\": 200,\n    \"capture\": true \n}"},{"id":"f1aa46c4-cad6-423a-8b06-51a80bbddef8","name":"Not Found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123"}],"body":{"mode":"raw","raw":"{\r\n  \"agreementInformation\": {\r\n    \"signedTime\": \"2020-02-21T18:00:00Z\",\r\n    \"signedMethod\": \"acceptance\",\r\n    \"signedBy\": \"John Doe\",\r\n    \"device\": \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36\",\r\n    \"deviceIP\": \"10.1.1.10\"\r\n  }\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{baseUrl}}/platform/v1/application/{{applicationId}}/signed?document=agreement","host":["{{baseUrl}}"],"path":["platform","v1","application","{{applicationId}}","signed"],"query":[{"key":"document","value":"agreement"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"133"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 16 Jul 2020 17:03:16 GMT"},{"key":"x-amzn-RequestId","value":"d596e661-4e08-4944-a32a-e2e9d077101f"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"Pxo9DGyiPHcF25Q="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f108853-ef2b033fb25f0eb879f3d58e"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 0a72bb7be10458e1aefa37a097f21894.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"BW7lO-fv-dBAE-rM71lbkJaSyoAtnfHQkpMjtTQ6XjLCR9GCTyzCBA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"status\": 404,\n    \"error\": [\n        {\n            \"type\": \"validation_error\",\n            \"message\": \"Application not found\",\n            \"code\": \"application_not_found\"\n        }\n    ]\n}"},{"id":"b7410640-122f-4479-b662-4a8ba977af37","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123"}],"body":{"mode":"raw","raw":"{\r\n  \"agreementInformation\": {\r\n    \"signedTime\": \"2020-02-21T18:00:00Z\",\r\n    \"signedMethod\": \"acceptance\",\r\n    \"signedBy\": \"John Doe\",\r\n    \"device\": \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36\",\r\n    \"deviceIP\": \"10.1.1.10\"\r\n  }\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{baseUrl}}/platform/v1/application/{{applicationId}}/signed?document=agreement","host":["{{baseUrl}}"],"path":["platform","v1","application","{{applicationId}}","signed"],"query":[{"key":"document","value":"agreement"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"39"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:25:11 GMT"},{"key":"x-amzn-RequestId","value":"1fb9d04e-d5d8-4c52-ab99-f280f30974e6"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P02TZGf6vHcFvIA="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d0e2-d14a91504ec81fad79cc0598"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"TGhuOXXJY2_ad54jcWoH4dSCFk37DVH5IoBeHg8qehauxewnMC9pxA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {},\n    \"status\": 200,\n    \"capture\": true \n}"}],"_postman_id":"cec9087b-7b84-40c9-954a-c8548af0d43b"},{"name":"Capture Application","event":[{"listen":"test","script":{"exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});\r","pm.test(\"Success message\", function () {\r","    pm.expect(pm.response.text()).to.include(\"success\");\r","});"],"type":"text/javascript","id":"8ff445cd-f876-40f4-b2a1-36e2f9472f0b"}}],"id":"e92c825c-78dc-4fe5-89be-f10885214a28","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"<p>(optional - ID generated by the client)</p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"deliveryDate\": \"2023-12-15\"\r\n}"},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/capture","description":"<h1 id=\"capture-application\">Capture Application</h1>\n<p>This endpoint updates the application delivery date changes its status from PENDING_DEL to COMPLETE and initiates the process to fund the application.</p>\n<h1 id=\"request-object\">Request Object</h1>\n<blockquote>\n<h2 id=\"deliverydatestring-date\"><code>deliveryDate:string (Date)</code></h2>\n<ul>\n<li>Required</li>\n<li>Date should be in YYYY-MM-DD format. Delivery Date in ISO format</li>\n</ul>\n</blockquote>\n<h1 id=\"response-object\">Response Object</h1>\n<h2 id=\"datahash\"><code>data:hash</code></h2>\n<blockquote>\n<ul>\n<li>Empty value ( {} ) for successful responses.</li>\n</ul>\n</blockquote>\n<h2 id=\"successboolean\"><code>success:boolean</code></h2>\n<blockquote>\n<ul>\n<li>Value with the result of the request. Possible values are TRUE or FALSE</li>\n</ul>\n</blockquote>\n<h2 id=\"statusinteger\"><code>status:integer</code></h2>\n<blockquote>\n<ul>\n<li>Value with status code of the request. For example: 200, 400, 404</li>\n</ul>\n</blockquote>\n","urlObject":{"path":["platform","v1","application","{{applicationId}}","capture"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"a3c33e2c-4d54-4f38-9d2c-82ad9974c0e4","name":"Not Found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123"}],"body":{"mode":"raw","raw":"{\r\n\t\"deliveryDate\": \"2020-07-08\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/capture"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"133"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 16 Jul 2020 18:26:55 GMT"},{"key":"x-amzn-RequestId","value":"1473e786-3ec1-4200-9c73-39d1dec008cd"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"Px1NXHxcPHcFhSQ="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f109bef-9cb725502fac17205c442a40"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 6492b42e2fc3684cc00b54d685c2328c.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"ma8Z6BOstjyboUIGZiQ8QtDYb4JzTQsi-XrqvRI5Zqd1rnmd9xcfsw=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"status\": 404,\n    \"error\": [\n        {\n            \"type\": \"validation_error\",\n            \"message\": \"Application not found\",\n            \"code\": \"application_not_found\"\n        }\n    ]\n}"},{"id":"3b9fc31a-c613-428f-b724-8d3d67119e66","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123"}],"body":{"mode":"raw","raw":"{\r\n\t\"deliveryDate\": \"2020-07-08\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/capture"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"39"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:26:10 GMT"},{"key":"x-amzn-RequestId","value":"925cf780-dcfc-4f9b-86a5-720b308c2514"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P02dPHvfvHcF4Sw="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d121-f3cf0d83e94684f53be9c37d"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"bSFAKB6f-njXKj6ZNGK2dnkYOt15wbujC4tyWTxf6YIqdCOwiNAlJQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {},    \n    \"status\": 200\n}"},{"id":"a0d2b42b-d3c1-405f-8ad7-7ede08f74dba","name":"Not Found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123"}],"body":{"mode":"raw","raw":"{\r\n\t\"deliveryDate\": \"2020-07-08\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/capture"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"133"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 16 Jul 2020 18:26:55 GMT"},{"key":"x-amzn-RequestId","value":"1473e786-3ec1-4200-9c73-39d1dec008cd"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"Px1NXHxcPHcFhSQ="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f109bef-9cb725502fac17205c442a40"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 6492b42e2fc3684cc00b54d685c2328c.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"ma8Z6BOstjyboUIGZiQ8QtDYb4JzTQsi-XrqvRI5Zqd1rnmd9xcfsw=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"status\": 404,\n    \"error\": [\n        {\n            \"type\": \"validation_error\",\n            \"message\": \"Application not found\",\n            \"code\": \"application_not_found\"\n        }\n    ]\n}"},{"id":"62469bbb-e870-4f18-8204-8add05db72ca","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123"}],"body":{"mode":"raw","raw":"{\r\n\t\"deliveryDate\": \"2020-07-08\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/capture"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"39"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:26:10 GMT"},{"key":"x-amzn-RequestId","value":"925cf780-dcfc-4f9b-86a5-720b308c2514"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P02dPHvfvHcF4Sw="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d121-f3cf0d83e94684f53be9c37d"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"bSFAKB6f-njXKj6ZNGK2dnkYOt15wbujC4tyWTxf6YIqdCOwiNAlJQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {},    \n    \"status\": 200\n}"}],"_postman_id":"e92c825c-78dc-4fe5-89be-f10885214a28"},{"name":"Refund","event":[{"listen":"test","script":{"exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});\r","pm.test(\"Success message\", function () {\r","    pm.expect(pm.response.text()).to.include(\"success\");\r","});"],"type":"text/javascript","id":"148cabc8-8c20-485f-b513-c0d0295c30d6"}}],"id":"cbeb570b-cd7c-4c5c-892b-6810aa6adaa5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"<p>(optional - ID generated by the client)</p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"products\": [\r\n    {\r\n      \"amount\": \"1.00\",\r\n      \"itemId\": \"ABC\",\r\n      \"quantity\": 1\r\n    }\r\n  ]\r\n}"},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/refund","description":"<h1 id=\"refund\">Refund</h1>\n<p>This endpoint refunds full or partial payment on LTO applications and changes its sub-status to either Refunded or Partially Refunded. There are two ways to do it, check the next request options.</p>\n<h1 id=\"request-object-option-1\">Request Object Option 1</h1>\n<p>Using specific information of a product(s):</p>\n<blockquote>\n<h2 id=\"productshash-array\"><code>products:hash array</code></h2>\n<ul>\n<li>Required</li>\n<li>An array with at least one product</li>\n</ul>\n<h4 id=\"productsamountstring-numeric\"><code>products.amount:string (Numeric)</code></h4>\n<blockquote>\n<ul>\n<li>Required</li>\n<li>Exact price of the product</li>\n</ul>\n</blockquote>\n<h4 id=\"productsitemidstring\"><code>products.itemId:string</code></h4>\n<blockquote>\n<ul>\n<li>Required</li>\n<li>Item ID of the product</li>\n</ul>\n</blockquote>\n<h4 id=\"productsquantityinteger\"><code>products.quantity:Integer</code></h4>\n<blockquote>\n<ul>\n<li>Required</li>\n<li>Quantity of the product</li>\n</ul>\n</blockquote>\n</blockquote>\n<h1 id=\"request-object-option-2\">Request Object Option 2</h1>\n<p>Using an specific amount:</p>\n<blockquote>\n<h2 id=\"adjustmenthash\"><code>adjustment:hash</code></h2>\n<h4 id=\"amountstring-numeric\"><code>amount:string (Numeric)</code></h4>\n<blockquote>\n<ul>\n<li>Required</li>\n<li>Negative refund amount</li>\n</ul>\n</blockquote>\n</blockquote>\n<h1 id=\"response-object\">Response Object</h1>\n<h2 id=\"datahash\"><code>data:hash</code></h2>\n<blockquote>\n<ul>\n<li>Empty value ( {} ) for successful responses.</li>\n</ul>\n</blockquote>\n<h2 id=\"successboolean\"><code>success:boolean</code></h2>\n<blockquote>\n<ul>\n<li>Value with the result of the request. Possible values are TRUE or FALSE</li>\n</ul>\n</blockquote>\n<h2 id=\"statusinteger\"><code>status:integer</code></h2>\n<blockquote>\n<ul>\n<li>Value with status code of the request. For example: 200, 400, 404</li>\n</ul>\n</blockquote>\n","urlObject":{"path":["platform","v1","application","{{applicationId}}","refund"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"b4cc211b-5547-4768-ac46-d7a2670658a3","name":"OK Option 2","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"adjustment\": \r\n    {\r\n      \"amount\": \"-50.00\"\r\n    }\r\n}"},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/refund"},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{    \r\n    \"success\": true,\r\n    \"data\": {},\r\n    \"status\": 200\r\n}"},{"id":"00bd7907-f5f8-4455-bd97-f1aa8767f526","name":"OK Option 1","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123"}],"body":{"mode":"raw","raw":"{\r\n  \"products\": [\r\n    {\r\n      \"amount\": \"1.00\",\r\n      \"itemId\": \"ABC\",\r\n      \"quantity\": 1\r\n    }\r\n  ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/refund"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"39"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:26:57 GMT"},{"key":"x-amzn-RequestId","value":"0cb73793-f0dd-4438-829c-415c7155efcf"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P02kwF5hPHcF8_g="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d151-db105366d62996e40114bb32"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"9BdrvPsnb7WioJYWC4JtSltOW4weJHXSdPS6hO4PeZYYukvhSSSg5A=="}],"cookie":[],"responseTime":null,"body":"{    \n    \"success\": true,\n    \"data\": {},\n    \"status\": 200\n}"},{"id":"ddd5fbc0-838e-452f-b139-eb5751efc841","name":"Not Found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123"}],"body":{"mode":"raw","raw":"{\r\n  \"products\": [\r\n    {\r\n      \"amount\": \"1.00\",\r\n      \"itemId\": \"ABC\",\r\n      \"quantity\": 1\r\n    }\r\n  ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/refund"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"133"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:21:20 GMT"},{"key":"x-amzn-RequestId","value":"88317457-385d-42c2-8a60-b6109127bbcc"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P01wCEOjvHcFZVg="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d000-bbce4d1ff03d29d0fd1a8420"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"16cCiP5eIHIHnMoJ09EmaduydYyFgSDM_PsbyiGc54g12GLNGF57MA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,    \n    \"error\": [\n        {\n            \"type\": \"validation_error\",\n            \"message\": \"Application not found\",\n            \"code\": \"application_not_found\"\n        }\n    ],\n    \"status\": 404\n}"},{"id":"76b14b01-1bff-4947-be85-33a9621df54b","name":"OK Option 1","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123"}],"body":{"mode":"raw","raw":"{\r\n  \"products\": [\r\n    {\r\n      \"amount\": \"1.00\",\r\n      \"itemId\": \"ABC\",\r\n      \"quantity\": 1\r\n    }\r\n  ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/refund"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"39"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:26:57 GMT"},{"key":"x-amzn-RequestId","value":"0cb73793-f0dd-4438-829c-415c7155efcf"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P02kwF5hPHcF8_g="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d151-db105366d62996e40114bb32"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"9BdrvPsnb7WioJYWC4JtSltOW4weJHXSdPS6hO4PeZYYukvhSSSg5A=="}],"cookie":[],"responseTime":null,"body":"{    \n    \"success\": true,\n    \"data\": {},\n    \"status\": 200\n}"},{"id":"a1597cbe-217c-4f4a-a4a5-daaa52d960fa","name":"Not Found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123"}],"body":{"mode":"raw","raw":"{\r\n  \"products\": [\r\n    {\r\n      \"amount\": \"1.00\",\r\n      \"itemId\": \"ABC\",\r\n      \"quantity\": 1\r\n    }\r\n  ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/refund"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"133"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:21:20 GMT"},{"key":"x-amzn-RequestId","value":"88317457-385d-42c2-8a60-b6109127bbcc"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P01wCEOjvHcFZVg="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d000-bbce4d1ff03d29d0fd1a8420"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"16cCiP5eIHIHnMoJ09EmaduydYyFgSDM_PsbyiGc54g12GLNGF57MA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,    \n    \"error\": [\n        {\n            \"type\": \"validation_error\",\n            \"message\": \"Application not found\",\n            \"code\": \"application_not_found\"\n        }\n    ],\n    \"status\": 404\n}"},{"id":"3b8bdd6f-91ec-48f6-ad17-88b82ad3d559","name":"OK Option 2","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"adjustment\": \r\n    {\r\n      \"amount\": \"-50.00\"\r\n    }\r\n}"},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/refund"},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{    \r\n    \"success\": true,\r\n    \"data\": {},\r\n    \"status\": 200\r\n}"}],"_postman_id":"cbeb570b-cd7c-4c5c-892b-6810aa6adaa5"},{"name":"Cancel application","event":[{"listen":"test","script":{"exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});\r","pm.test(\"Success message\", function () {\r","    pm.expect(pm.response.text()).to.include(\"success\");\r","});"],"type":"text/javascript","id":"2e24a95e-851f-46b2-9bcf-ff7ce6d0e6b1"}}],"id":"e9548e79-9cb0-4d4e-91bd-3258684c0176","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"<p>(optional - ID generated by the client)</p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"reason\": \"Cancellation reason\"\r\n}"},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/cancel","description":"<h1 id=\"cancel-application\">Cancel Application</h1>\n<p>This endpoint cancels the application that is not funded and changes the application status to Withdrawn.</p>\n<h2 id=\"path-params\">PATH PARAMS</h2>\n<blockquote>\n<h2 id=\"applicationidstring\"><code>applicationId:string</code></h2>\n<ul>\n<li>Required</li>\n<li>ApplicationId is returned when calling the create application endpoint</li>\n</ul>\n</blockquote>\n<p><strong>Important:</strong></p>\n<p><em>This endpoint could be called just if the application has the status: Pending Sign Documents, Pending Delivery, or Complete.</em></p>\n<h1 id=\"request-object\">Request Object</h1>\n<blockquote>\n<h2 id=\"reasonstring\"><code>reason:string</code></h2>\n<ul>\n<li>Required</li>\n<li>Cancel reason</li>\n</ul>\n</blockquote>\n<h1 id=\"response-object\">Response Object</h1>\n<h2 id=\"datahash\"><code>data:hash</code></h2>\n<blockquote>\n<ul>\n<li>Empty value ( {} ) for successful responses.</li>\n</ul>\n</blockquote>\n<h2 id=\"successboolean\"><code>success:boolean</code></h2>\n<blockquote>\n<ul>\n<li>Value with the result of the request. Possible values are TRUE or FALSE</li>\n</ul>\n</blockquote>\n<h2 id=\"statusinteger\"><code>status:integer</code></h2>\n<blockquote>\n<ul>\n<li>Value with status code of the request. For example: 200, 400, 404</li>\n</ul>\n</blockquote>\n","urlObject":{"path":["platform","v1","application","{{applicationId}}","cancel"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"31f1ecc5-2f6e-46a1-8f18-3eb1a6581949","name":"Payment Required","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123"}],"body":{"mode":"raw","raw":"{\r\n  \"reason\": \"Just testing\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/cancel"},"status":"Payment Required","code":402,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"151"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:29:25 GMT"},{"key":"x-amzn-RequestId","value":"77c416aa-f789-4e69-a93c-17495af51014"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P027vEpuvHcFo3A="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d1e4-e3ee5d7f37aa94e31d23df69"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"pL1yn6tOUtAkDwobO--gyPVNysomUz0yDMCvY4E05pjbg273scoTJQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"status\": 402,\n    \"error\": [\n        {\n            \"type\": \"validation_error\",\n            \"message\": \"Application already in a canceled status\",\n            \"code\": \"application_canceled\"\n        }\n    ]\n}"},{"id":"7b8f408d-6d33-49c4-bbaa-e52fc81d616b","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123"}],"body":{"mode":"raw","raw":"{\r\n  \"reason\": \"Just testing\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/cancel"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"39"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:29:58 GMT"},{"key":"x-amzn-RequestId","value":"199232de-ba00-41d0-a06c-e24528b078bd"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P03A7HF7vHcFxFw="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d205-2e6265be9b369c6c0d906ec8"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"f7vbn4H0wim_lwjCA-23_AoRofr_dvM5Fl3yCcUSLEfkg3eK6wtkzQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {},\n    \"status\": 200\n}"},{"id":"790c48fa-300a-49d9-8ddf-d75a8b0c3a9a","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123"}],"body":{"mode":"raw","raw":"{\r\n  \"reason\": \"Just testing\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/cancel"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"39"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:29:58 GMT"},{"key":"x-amzn-RequestId","value":"199232de-ba00-41d0-a06c-e24528b078bd"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P03A7HF7vHcFxFw="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d205-2e6265be9b369c6c0d906ec8"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"f7vbn4H0wim_lwjCA-23_AoRofr_dvM5Fl3yCcUSLEfkg3eK6wtkzQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {},\n    \"status\": 200\n}"},{"id":"6a03a8dd-30cb-4af9-a739-9bd9aea6a8cd","name":"Payment Required","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123"}],"body":{"mode":"raw","raw":"{\r\n  \"reason\": \"Just testing\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/cancel"},"status":"Payment Required","code":402,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"151"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:29:25 GMT"},{"key":"x-amzn-RequestId","value":"77c416aa-f789-4e69-a93c-17495af51014"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P027vEpuvHcFo3A="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d1e4-e3ee5d7f37aa94e31d23df69"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"pL1yn6tOUtAkDwobO--gyPVNysomUz0yDMCvY4E05pjbg273scoTJQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"status\": 402,\n    \"error\": [\n        {\n            \"type\": \"validation_error\",\n            \"message\": \"Application already in a canceled status\",\n            \"code\": \"application_canceled\"\n        }\n    ]\n}"}],"_postman_id":"e9548e79-9cb0-4d4e-91bd-3258684c0176"},{"name":"Send SMS Link","event":[{"listen":"test","script":{"exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});"],"type":"text/javascript","id":"9adcd582-a094-4250-a70a-5d46579df04d"}}],"id":"866ed519-8b25-41d9-83be-67c9c0fc3cad","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{accessToken}}","type":"text"},{"key":"x-snap-api-version","value":"v1","type":"text"},{"key":"correlation-id","value":"5ff0195c-339b-4c67-ac30-650a41955b79","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"phoneNumber\": \"1234567890\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/sms-link","description":"<p>Send SMS link to customer's phone number. This endpoint allows partners to send an SMS with a link to start the application process.</p>\n","urlObject":{"path":["platform","v1","sms-link"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"ed97c4eb-3f87-4c28-ac76-37c0264a98f5","name":"Success Response","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"phoneNumber\": \"1234567890\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/sms-link"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"SMS sent successfully\"\n}"}],"_postman_id":"866ed519-8b25-41d9-83be-67c9c0fc3cad"}],"id":"9e853c36-0eed-41a0-98ba-9a4a9dd0d2c3","_postman_id":"9e853c36-0eed-41a0-98ba-9a4a9dd0d2c3","description":""},{"name":"RIC","item":[{"name":"Get Token","event":[{"listen":"test","script":{"exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","    ","    var jsonData = pm.response.json();","    pm.environment.set(\"bearerToken\", jsonData.access_token);","});","","pm.environment.set(\"social_4\", _.random(1000, 9999));","pm.environment.set(\"social_9\", _.random(100000000, 999999999));","pm.environment.set(\"account_number\", _.random(1000000000, 9999999999));"],"type":"text/javascript","id":"ab6205ac-ee30-4b32-bfbc-ed69867d34c8"}}],"id":"49eba530-fe83-451e-a47b-1acc85375c0f","protocolProfileBehavior":{"disabledSystemHeaders":{"accept":true,"accept-encoding":true,"connection":true,"user-agent":true},"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"client_id\": \"{{authClientId}}\",\r\n\t\"client_secret\": \"{{authClientSecret}}\",\r\n\t\"audience\": \"{{authClientAudience}}\",\r\n\t\"grant_type\": \"client_credentials\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{authHostUrl}}/oauth/token","description":"<h1 id=\"get-token\">Get Token</h1>\n<p>This endpoint gets the token to make Snap Finance API calls.</p>\n<h2 id=\"environment-information\">Environment information</h2>\n<ul>\n<li><p>Sandbox base URL: <a href=\"https://api-sandbox.snapfinance.com/platform/v1\">https://api-sandbox.snapfinance.com/platform/v1</a></p>\n</li>\n<li><p>Production base URL:  <a href=\"https://api.snapfinance.com/platform/v1\">https://api.snapfinance.com/platform/v1</a></p>\n</li>\n</ul>\n<p><strong>Note:</strong> Production credentials will be provided after the integration is ready and tested in sandbox.</p>\n<h2 id=\"request-object\">Request Object</h2>\n<blockquote>\n<h4 id=\"client_idstring\"><code>client_id:string</code></h4>\n<ul>\n<li>Required</li>\n<li>Is the client ID provided by Snap</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"client_secretstring\"><code>client_secret:string</code></h4>\n<ul>\n<li>Required</li>\n<li>Is the client secret provided by Snap</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"audiencestring\"><code>audience:string</code></h4>\n<ul>\n<li>Required</li>\n<li>Value must be <a href=\"https://api-release.snapfinance.com/platform/v1\">https://api-release.snapfinance.com/platform/v1</a> for sandbox environment</li>\n<li>Value must be <a href=\"https://api.snapfinance.com/platform/v1\">https://api.snapfinance.com/platform/v1</a> for production environment</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"grant_typestring\"><code>grant_type:string</code></h4>\n<ul>\n<li>Required</li>\n<li>Value must be <code>client_credentials</code></li>\n</ul>\n</blockquote>\n","urlObject":{"path":["oauth","token"],"host":["{{authHostUrl}}"],"query":[],"variable":[]}},"response":[{"id":"838c45a7-4903-4f4d-8133-da7b38ac7559","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"client_id\": \"{{authClientId}}\",\r\n\t\"client_secret\": \"{{authClientSecret}}\",\r\n\t\"audience\": \"{{authClientAudience}}\",\r\n\t\"grant_type\": \"client_credentials\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{authHostUrl}}/oauth/token"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"openresty"},{"key":"Date","value":"Thu, 30 Jul 2020 14:37:07 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"ot-tracer-spanid","value":"362f5d543a9ee2b1"},{"key":"ot-tracer-traceid","value":"37f1cde43a952051"},{"key":"ot-tracer-sampled","value":"true"},{"key":"ot-baggage-auth0-request-id","value":"8822-1596119827.955-34.218.23.159-518-277619999-1-0.000"},{"key":"X-Auth0-RequestId","value":"78e01254a6018eab26a6"},{"key":"X-RateLimit-Limit","value":"1000000"},{"key":"X-RateLimit-Remaining","value":"999999"},{"key":"X-RateLimit-Reset","value":"1596119828"},{"key":"Cache-Control","value":"no-store"},{"key":"Pragma","value":"no-cache"},{"key":"X-Robots-Tag","value":"noindex, nofollow, nosnippet, noarchive"},{"key":"Content-Encoding","value":"gzip"},{"key":"Strict-Transport-Security","value":"max-age=15768000"}],"cookie":[],"responseTime":null,"body":"{\n    \"access_token\": \"{{bearerToken}}\",\n    \"scope\": \"array of scopes\",\n    \"expires_in\": 86400,\n    \"token_type\": \"Bearer\"\n}"},{"id":"e4cab974-3921-4cb4-8646-20b8c9936994","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"client_id\": \"{{authClientId}}\",\r\n\t\"client_secret\": \"{{authClientSecret}}\",\r\n\t\"audience\": \"{{authClientAudience}}\",\r\n\t\"grant_type\": \"client_credentials\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{authHostUrl}}/oauth/token"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"openresty"},{"key":"Date","value":"Thu, 30 Jul 2020 14:37:56 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"60"},{"key":"Connection","value":"keep-alive"},{"key":"ot-tracer-spanid","value":"49376030724ae640"},{"key":"ot-tracer-traceid","value":"778c6f7b38c6efa2"},{"key":"ot-tracer-sampled","value":"true"},{"key":"ot-baggage-auth0-request-id","value":"8822-1596119876.679-34.218.23.159-518-277619999-2-0.000"},{"key":"X-Auth0-RequestId","value":"b202aa024e7109101a82"},{"key":"X-RateLimit-Limit","value":"1000000"},{"key":"X-RateLimit-Remaining","value":"999999"},{"key":"X-RateLimit-Reset","value":"1596119877"},{"key":"cache-control","value":"private, no-store, no-cache, must-revalidate, post-check=0, pre-check=0, no-transform"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"access_denied\",\n    \"error_description\": \"Unauthorized\"\n}"},{"id":"66bf064d-c2e5-4372-83a6-43267edafe89","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"client_id\": \"{{authClientId}}\",\r\n\t\"client_secret\": \"{{authClientSecret}}\",\r\n\t\"audience\": \"{{authClientAudience}}\",\r\n\t\"grant_type\": \"client_credentials\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{authHostUrl}}/oauth/token"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"openresty"},{"key":"Date","value":"Thu, 30 Jul 2020 14:37:07 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"ot-tracer-spanid","value":"362f5d543a9ee2b1"},{"key":"ot-tracer-traceid","value":"37f1cde43a952051"},{"key":"ot-tracer-sampled","value":"true"},{"key":"ot-baggage-auth0-request-id","value":"8822-1596119827.955-34.218.23.159-518-277619999-1-0.000"},{"key":"X-Auth0-RequestId","value":"78e01254a6018eab26a6"},{"key":"X-RateLimit-Limit","value":"1000000"},{"key":"X-RateLimit-Remaining","value":"999999"},{"key":"X-RateLimit-Reset","value":"1596119828"},{"key":"Cache-Control","value":"no-store"},{"key":"Pragma","value":"no-cache"},{"key":"X-Robots-Tag","value":"noindex, nofollow, nosnippet, noarchive"},{"key":"Content-Encoding","value":"gzip"},{"key":"Strict-Transport-Security","value":"max-age=15768000"}],"cookie":[],"responseTime":null,"body":"{\n    \"access_token\": \"{{bearerToken}}\",\n    \"scope\": \"array of scopes\",\n    \"expires_in\": 86400,\n    \"token_type\": \"Bearer\"\n}"},{"id":"4e947b2b-0c8b-484c-a898-7570e0b815df","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"client_id\": \"{{authClientId}}\",\r\n\t\"client_secret\": \"{{authClientSecret}}\",\r\n\t\"audience\": \"{{authClientAudience}}\",\r\n\t\"grant_type\": \"client_credentials\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{authHostUrl}}/oauth/token"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"openresty"},{"key":"Date","value":"Thu, 30 Jul 2020 14:37:56 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"60"},{"key":"Connection","value":"keep-alive"},{"key":"ot-tracer-spanid","value":"49376030724ae640"},{"key":"ot-tracer-traceid","value":"778c6f7b38c6efa2"},{"key":"ot-tracer-sampled","value":"true"},{"key":"ot-baggage-auth0-request-id","value":"8822-1596119876.679-34.218.23.159-518-277619999-2-0.000"},{"key":"X-Auth0-RequestId","value":"b202aa024e7109101a82"},{"key":"X-RateLimit-Limit","value":"1000000"},{"key":"X-RateLimit-Remaining","value":"999999"},{"key":"X-RateLimit-Reset","value":"1596119877"},{"key":"cache-control","value":"private, no-store, no-cache, must-revalidate, post-check=0, pre-check=0, no-transform"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"access_denied\",\n    \"error_description\": \"Unauthorized\"\n}"}],"_postman_id":"49eba530-fe83-451e-a47b-1acc85375c0f"},{"name":"Create Application","event":[{"listen":"test","script":{"exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","pm.test(\"Success message\", function () {","    pm.expect(pm.response.text()).to.include(\"success\");","});","","pm.test(\"Set the application ID\", function () {","    var jsonData = pm.response.json();","    pm.environment.set(\"applicationId\", jsonData.data.applicationId);","});"],"type":"text/javascript","packages":{},"id":"1ba0669b-92bc-4aeb-a4f2-82b33d93b0de"}}],"id":"e9ba9f39-79ee-49f0-8c09-a7a069a42e9d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"<p>(optional - ID generated by the client)</p>\n","type":"text"},{"key":"Idempotency-Key","value":"","description":"<p>(optional - Idempotency key generated by the client)</p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"customerInformation\": {\r\n\t\t\"dobDate\": \"1977-07-07\",\r\n\t\t\"customerId\": \"{{social_4}}\",\r\n\t\t\"customerIdType\": \"SSN4\",\r\n\t\t\"mobilePhone\": \"1000000019\",\r\n\t\t\"mobilePhoneCountry\": \"US\",\r\n\t\t\"email\": \"test@test.com\",\r\n\t\t\"firstName\": \"John\",\r\n\t\t\"lastName\": \"Smith\",\r\n\t\t\"salutation\": \"MR\",\r\n\t\t\"billingAddress\": {\r\n\t\t\t\"streetAddress\": \"123MainSt\",\r\n\t\t\t\"city\": \"SaltLakeCity\",\r\n\t\t\t\"state\": \"UT\",\r\n\t\t\t\"country\": \"US\",\r\n\t\t\t\"postalCode\": \"84001\"\r\n\t\t},\r\n\t\t\"driversLicenseNumber\": \"123456879\",\r\n\t\t\"driversLicenseState\": \"FL\",\r\n\t\t\"language\": \"EN\",\r\n\t\t\"rentOwn\": \"OWN\",\r\n\t\t\"timeAddressYears\": 0,\r\n\t\t\"timeAddressMonths\": 2,\r\n\t\t\"phoneOptIn\": true\r\n\t},\r\n\t\"supplementalDataInformation\": {\r\n\t\t\"customerPastApps\": \"2\",\r\n\t\t\"customerIP\": \"127.X.0.1\"\r\n\t},\r\n\t\"cartInformation\": {\r\n\t\t\"currencyCode\": \"USD\",\r\n\t\t\"taxAmount\": \"35.00\",\r\n\t\t\"shippingAmount\": \"15.00\",\r\n\t\t\"totalAmount\": \"320.00\",\r\n\t\t\"discountAmount\": \"0.00\",\r\n\t\t\"orderId\": \"041299\",\r\n\t\t\"items\": [\r\n\t\t\t{\r\n\t\t\t\t\"price\": \"150.00\",\r\n\t\t\t\t\"itemId\": \"ABC\",\r\n\t\t\t\t\"description\": \"Mattress\",\r\n\t\t\t\t\"sku\": \"D1234\",\r\n\t\t\t\t\"quantity\": 1,\r\n\t\t\t\t\"leasable\":true\r\n\t\t\t},\r\n            \t\t\t{\r\n\t\t\t\t\"price\": \"100.00\",\r\n\t\t\t\t\"itemId\": \"DEF\",\r\n\t\t\t\t\"description\": \"TV\",\r\n\t\t\t\t\"sku\": \"D1235\",\r\n\t\t\t\t\"quantity\": 1,\r\n\t\t\t\t\"leasable\":true,\r\n                \"itemType\": \"PRODUCT\"\r\n\t\t\t},\r\n            \t\t\t{\r\n\t\t\t\t\"price\": \"20.00\",\r\n\t\t\t\t\"itemId\": \"LMN\",\r\n\t\t\t\t\"description\": \"Misc Fee\",\r\n\t\t\t\t\"sku\": \"A0001\",\r\n\t\t\t\t\"quantity\": 1,\r\n\t\t\t\t\"leasable\":true,\r\n                \"itemType\": \"SERVICE\"\r\n\t\t\t}\r\n\t\t],\r\n\t\t\"shippingAddress\": {\r\n\t\t\t\"streetAddress\": \"456BroadwaySt\",\r\n\t\t\t\"city\": \"SaltLakeCity\",\r\n\t\t\t\"state\": \"UT\",\r\n\t\t\t\"country\": \"US\",\r\n\t\t\t\"postalCode\": \"84001\"\r\n\t\t}\r\n\t},\r\n\t\"incomeInformation\": [{\r\n\t\t\"employerName\": \"AcmeCorporation\",\r\n\t\t\"frequency\": \"BI_WEEKLY\",\r\n\t\t\"incomeAmount\": \"5000.00\",\r\n\t\t\"phone\": \"1234567890\",\r\n\t\t\"phoneCountryCode\": \"US\",\r\n\t\t\"positionHeld\": \"Associate\",\r\n\t\t\"type\": \"FULL_TIME\",\r\n\t\t\"lastPayDate\": \"2020-02-07\",\r\n\t\t\"nextPayDate\": \"2020-02-21\"\r\n\t}],\r\n    \"complianceDisclosures\": {\r\n        \"termsConditions\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"electronicTransaction\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"prequalifiedTermsConditions\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"eConsent\": {\r\n            \"timestamp\": \"10/23/2022\"\r\n        }\r\n    }\r\n}"},"url":"{{baseUrl}}/platform/v1/application","description":"<h1 id=\"create-application\">Create Application</h1>\n<p>This endpoint creates an application and returns the decision on the application. It returns an applicationId if the application is approved and marks the application status as PREQUALIFIED/APPROVED/DENIED. Check the example requests to get one for each scenario.</p>\n<p><strong>Note</strong>: incomeInformation, cartInformation, and bankInformation objects are <strong>MANDATORY</strong> for a final approval (You can send those using the PATCH endpoint). If you are enrolled for a prequalification experience the customer can get PREQUALIFIED with customerInformation only. Check with your integrator for the experience selected.</p>\n<h1 id=\"request-object\">Request Object</h1>\n<h2 id=\"customerinformationhash\"><code>customerInformation:hash</code></h2>\n<h4 id=\"dobdatestring\"><code>dobDate:string</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Date should be in YYYY-MM-DD format. The customer should be older than 18 years to apply. Date of birth in ISO format</p>\n</li>\n</ul>\n<h4 id=\"customeridstring\"><code>customerId:string</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>SSN number of the customer, four digits for SSN4 or 9 digits for SSN</p>\n</li>\n</ul>\n<h4 id=\"customeridtypestring\"><code>customerIdType:string</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Customer identification type in the country. Supported types are SSN or SSN4</p>\n</li>\n</ul>\n<h4 id=\"mobilephonestring\"><code>mobilePhone:string</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Verified customer phone number 10 digits</p>\n</li>\n</ul>\n<h4 id=\"mobilephonecountrystring\"><code>mobilePhoneCountry:string</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Country code in ISO 3166-1 alpha-2. Only US carriers are supported for now</p>\n</li>\n</ul>\n<h4 id=\"emailstring\"><code>email:string</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Properly formatted valid email address</p>\n</li>\n</ul>\n<h4 id=\"firstnamestring\"><code>firstName:string</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Can not be null or blank. It needs to be more than two characters</p>\n</li>\n</ul>\n<h4 id=\"lastnamestring\"><code>lastName:string</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Can not be null or blank. It needs to be more than two characters</p>\n</li>\n</ul>\n<h4 id=\"salutationstring\"><code>salutation:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Customer salutation. Supported values are MR, MRS, MISS or NONE</p>\n</li>\n</ul>\n<h4 id=\"driverslicensenumberstring\"><code>driversLicenseNumber:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Customer drivers license number. Valid driver license number</p>\n</li>\n</ul>\n<h4 id=\"driverslicensestatestring\"><code>driversLicenseState:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Customer drivers license state. Valid US state in two characters</p>\n</li>\n</ul>\n<h4 id=\"languagestring\"><code>language:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Language code preference of the customer. Supported values are EN or ES</p>\n</li>\n</ul>\n<h4 id=\"rentownstring\"><code>rentOwn:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Customers current residential type whether it is rental or owned. Supported values are RENT or OWN</p>\n</li>\n</ul>\n<h4 id=\"timeaddressyearsstring\"><code>timeAddressYears:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Positive number | Number of years the customer has lived at his or her current residential address</p>\n</li>\n</ul>\n<h4 id=\"timeaddressmonthsstring\"><code>timeAddressMonths:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Positive number. Number of months the customer has lived at his or her current address</p>\n</li>\n</ul>\n<h4 id=\"phoneoptinboolean\"><code>phoneOptIn:boolean</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Phone communication opt in for the customer. The customer must explicitly agree or disagree with phone communication</p>\n</li>\n</ul>\n<h4 id=\"billingaddresshash\"><code>billingAddress:hash</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Billing address of customer. Mostly will be his or her current residential address. Billing address used for lease agreement</p>\n<h4 id=\"billingaddressstreetaddressstring\"><code>billingAddress.streetAddress:string</code></h4>\n<blockquote>\n<p>&lt;ul &gt;&lt;li &gt;&lt;div&gt;Required&lt;/div&gt;&lt;/li&gt;&lt;li &gt;&lt;div&gt;Street address of customer&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt;</p>\n</blockquote>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>#### `billingAddress.city:string`\n&gt; &lt;ul class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;Required&lt;/div&gt;&lt;/li&gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;Any valid US city within LTO/SLN supported state&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; \n#### `billingAddress.state:string`\n&gt; &lt;ul class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;Required&lt;/div&gt;&lt;/li&gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;State or province of the customer. LTO/SLN supported states (NJ, MN and WI are non LTO states) &lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; \n#### `billingAddress.country:string`\n&gt; &lt;ul class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;Required&lt;/div&gt;&lt;/li&gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;Residence country of the customer. Only US is supported &lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; \n#### `billingAddress.postalCode:string`\n&gt; &lt;ul class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;Required&lt;/div&gt;&lt;/li&gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;Valid US zip code five digits &lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; \n#### `billingAddress.unit :string`\n&gt; &lt;ul class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;Optional&lt;/div&gt;&lt;/li&gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;Unit number of the customer address &lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; \n\n</code></pre><h2 id=\"cartinformationhash--conditional\"><code>cartInformation:hash</code> * Conditional</h2>\n<h4 id=\"currencycodestring\"><code>currencyCode:string</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Currency code of the cart only USD is allowed. Allowed value is USD only</p>\n</li>\n</ul>\n<h4 id=\"taxamountstring-numeric\"><code>taxAmount:string (Numeric)</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Valid amount. Sales tax as per the customer and merchant state. Funding will be done accordingly for states where snap must collect sales tax</p>\n</li>\n</ul>\n<h4 id=\"shippingamountstring-numeric\"><code>shippingAmount:string (Numeric)</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Valid shipping amount can be zero for free shipping product. Shipping amount for all the items within the cart</p>\n</li>\n</ul>\n<h4 id=\"totalamountstring-numeric\"><code>totalAmount:string (Numeric)</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Total amount of the cart Information. (ItemPrice * Qty) + taxAmount + shippingAmount - discount</p>\n</li>\n</ul>\n<h4 id=\"discountamountstring-numeric\"><code>discountAmount:string (Numeric)</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Discount amount of the cart information. Valid positive amount</p>\n</li>\n</ul>\n<h4 id=\"orderidstring\"><code>orderId:string</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Order ID within merchant's order management system. Any alpha numeric value</p>\n</li>\n</ul>\n<h4 id=\"itemshash-array\"><code>items:hash array</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>An array with at least one item. Leasable (for LTO) items within the cart</p>\n<h4 id=\"itemspricestring-numeric\"><code>items.price:string (Numeric)</code></h4>\n<blockquote>\n<p>&lt;ul &gt;&lt;li &gt;&lt;div&gt;Required&lt;/div&gt;&lt;/li&gt;&lt;li &gt;&lt;div&gt;Positive value. Unit price of an Item&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt;</p>\n</blockquote>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>#### `items.itemId:string`\n&gt; &lt;ul class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;Required&lt;/div&gt;&lt;/li&gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;Within the same Order can not have two items with the same item ID. Unique item ID within customer order management system&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; \n#### `items.description:string`\n&gt; &lt;ul class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;Required&lt;/div&gt;&lt;/li&gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;Title of the item&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; \n#### `items.sku:string`\n&gt; &lt;ul class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;Optional&lt;/div&gt;&lt;/li&gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;SKU number associated with the item &lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; \n#### `items.quantity:Integer`\n&gt; &lt;ul class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;Required&lt;/div&gt;&lt;/li&gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;Quantity of each item&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; \n#### `items.leasable:boolean`\n&gt; &lt;ul class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;Required for LTO and optional for SLN&lt;/div&gt;&lt;/li&gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;All the items within the cart should be leasable for LTO. Indicator flag provided by the merchant as agreed with Snap Finance&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; \n#### `items.itemType:string`\n&gt; &lt;ul class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;Optional&lt;/div&gt;&lt;/li&gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;Item type indicates whether the item is a physical product or not. Accepted values PRODUCT | SERVICE. Default value: PRODUCT&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; \n\n</code></pre><h4 id=\"shippingaddresshash\"><code>shippingAddress:hash</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Shipping address object</p>\n<h4 id=\"shippingaddressstreetaddressstring\"><code>shippingAddress.streetAddress:string</code></h4>\n<blockquote>\n<p>&lt;ul &gt;&lt;li &gt;&lt;div&gt;Required&lt;/div&gt;&lt;/li&gt;&lt;li &gt;&lt;div&gt;P.O boxes are not allowed. Street address where the item will be shipped&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt;</p>\n</blockquote>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>#### `shippingAddress.city:string`\n&gt; &lt;ul class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;Required&lt;/div&gt;&lt;/li&gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;P.O boxes are not allowed. City where the items will be shipped&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; \n#### `shippingAddress.state:string`\n&gt; &lt;ul class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;Required&lt;/div&gt;&lt;/li&gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;Valid US state. US state where the item will be shipped &lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; \n#### `shippingAddress.country:string`\n&gt; &lt;ul class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;Required&lt;/div&gt;&lt;/li&gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;Only US is supported &lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; \n#### `shippingAddress.postalCode:string`\n&gt; &lt;ul class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;Required&lt;/div&gt;&lt;/li&gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;Valid US zip code. Postal code of the shipping address&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; \n#### `shippingAddress.unit :string`\n&gt; &lt;ul class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;Optional&lt;/div&gt;&lt;/li&gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;Unit number of the customer address &lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; \n\n</code></pre><h2 id=\"bankinformationhash--conditional\"><code>bankInformation:hash</code> * Conditional</h2>\n<h4 id=\"routingnumberstring\"><code>routingNumber:string</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Nine digits routing number | Customers bank routing number</p>\n</li>\n</ul>\n<h4 id=\"accountnumberstring\"><code>accountNumber:string</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Four to fifteen digits account number | Customers bank account number</p>\n</li>\n</ul>\n<h4 id=\"banknamestring\"><code>bankName:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Customers bank name</p>\n</li>\n</ul>\n<h4 id=\"bankcitystring\"><code>bankCity:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>City of the customers banking branch</p>\n</li>\n</ul>\n<h4 id=\"bankstatestring\"><code>bankState:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>State of the customers banking branch</p>\n</li>\n</ul>\n<h4 id=\"directdepositboolean\"><code>directDeposit:boolean</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Whether the account has a direct deposit of the customer's salary</p>\n</li>\n</ul>\n<h2 id=\"incomeinformationhash-array--conditional\"><code>incomeInformation:hash array</code> * Conditional</h2>\n<h4 id=\"frequencystring\"><code>frequency:string</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Frequency of the customer's earnings. Allowed values are WEEKLY, BI_WEEKLY, SEMI_MONTHLY or MONTHLY</p>\n</li>\n</ul>\n<h4 id=\"incomeamountstring\"><code>incomeAmount:string</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Income per frequency specified. Positive amount</p>\n</li>\n</ul>\n<h4 id=\"lastpaydatestring-date\"><code>lastPayDate:string (Date)</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Last pay date of the customer. Format YYYY-MM-DD</p>\n</li>\n</ul>\n<h4 id=\"nextpaydatestring-date\"><code>nextPayDate:string (Date)</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Next pay date of the customer. Format YYYY-MM-DD</p>\n</li>\n</ul>\n<h4 id=\"typestring\"><code>type:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Type of customer income. Allowed values are FULL_TIME, PART_TIME, SELF_EMPLOYMENT, BENEFITS or OTHER</p>\n</li>\n</ul>\n<h4 id=\"positionheldstring\"><code>positionHeld:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Position held of the income information</p>\n</li>\n</ul>\n<h4 id=\"phonestring\"><code>phone:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Customers employer phone number. Ten digits string number</p>\n</li>\n</ul>\n<h4 id=\"phonecountrycodestring\"><code>phoneCountryCode:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Employers' phone country code. Only US phone numbers are supported</p>\n</li>\n</ul>\n<h4 id=\"employernamestring\"><code>employerName:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Employer name of the income information</p>\n</li>\n</ul>\n<h2 id=\"supplementaldatainformationhash\"><code>supplementalDataInformation:hash</code></h2>\n<h4 id=\"annualincomestring\"><code>annualIncome:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Annual income amount. Positive amount</p>\n</li>\n</ul>\n<h4 id=\"customeripstring\"><code>customerIP:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Customer IP Address</p>\n</li>\n</ul>\n<h4 id=\"customerpastappsstring\"><code>customerPastApps:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Customer number of past applications</p>\n</li>\n</ul>\n<h2 id=\"partnerinformationhash\"><code>partnerInformation:hash</code></h2>\n<h4 id=\"uniqueidentifierstring\"><code>uniqueIdentifier:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Partner Store Id</p>\n</li>\n</ul>\n<h4 id=\"uniqueapplicationidstring\"><code>uniqueApplicationId:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Partner Application Id</p>\n</li>\n</ul>\n<h4 id=\"uniquetransactionidstring\"><code>uniqueTransactionId:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Partner Transaction Id / API unique Request Id</p>\n</li>\n</ul>\n<h2 id=\"compliancedisclosureshash\"><code>complianceDisclosures:hash</code></h2>\n<h4 id=\"termsconditionshash\"><code>termsConditions:hash</code></h4>\n<h5 id=\"version--string\"><code>version : string</code></h5>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Disclosure version</p>\n</li>\n</ul>\n<h5 id=\"timestamp--string\"><code>timestamp : string</code></h5>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Date of acceptance of the terms and conditions</p>\n</li>\n</ul>\n<h4 id=\"electronictransactionhash\"><code>electronicTransaction:hash</code></h4>\n<h5 id=\"version--string-1\"><code>version : string</code></h5>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Disclosure version</p>\n</li>\n</ul>\n<h5 id=\"timestamp--string-1\"><code>timestamp : string</code></h5>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Date of electronic transaction</p>\n</li>\n</ul>\n<h4 id=\"prequalifiedtermsconditionshash\"><code>prequalifiedTermsConditions:hash</code></h4>\n<h5 id=\"version--string-2\"><code>version : string</code></h5>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Disclosure version</p>\n</li>\n</ul>\n<h5 id=\"timestamp--string-2\"><code>timestamp : string</code></h5>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Date of acceptance of the terms and conditions for prequal apps</p>\n</li>\n</ul>\n<h4 id=\"econsenthash\"><code>eConsent:hash</code></h4>\n<h5 id=\"version--string-3\"><code>version : string</code></h5>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Disclosure version</p>\n</li>\n</ul>\n<h5 id=\"timestamp--string-3\"><code>timestamp : string</code></h5>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>E-consent date signed</p>\n</li>\n</ul>\n<h1 id=\"response-object\">Response Object</h1>\n<h2 id=\"datahash\"><code>data:hash</code></h2>\n<h4 id=\"applicationstatusstring\"><code>applicationStatus:string</code></h4>\n<ul>\n<li>Status of the application</li>\n</ul>\n<h4 id=\"applicationsubstatusstring\"><code>applicationSubStatus:string</code></h4>\n<ul>\n<li>Sub-status of the application</li>\n</ul>\n<h4 id=\"applicationidstring\"><code>applicationId:string</code></h4>\n<ul>\n<li>Application ID</li>\n</ul>\n<h4 id=\"messagestring\"><code>message:string</code></h4>\n<ul>\n<li>Application information</li>\n</ul>\n<h4 id=\"applicationtypestring\"><code>applicationType:string</code></h4>\n<ul>\n<li>Application type. Posibble values are LTO for lease merchants and SLN for loan merchants</li>\n</ul>\n<h4 id=\"processingfeestring\"><code>processingFee:string</code></h4>\n<ul>\n<li>Processing fee amount</li>\n</ul>\n<h4 id=\"currencycodestring-1\"><code>currencyCode:string</code></h4>\n<ul>\n<li>Currency code</li>\n</ul>\n<h4 id=\"approvedamountstring\"><code>approvedAmount:string</code></h4>\n<ul>\n<li>Approved amount</li>\n</ul>\n<h4 id=\"applicationcreatetimestring\"><code>applicationCreateTime:string</code></h4>\n<ul>\n<li>Application creation time in UTC Standard. Example 2020-02-21T18:00:00Z</li>\n</ul>\n<h4 id=\"applicationupdatetimestring\"><code>applicationUpdateTime:string</code></h4>\n<ul>\n<li>Application update time in UTC Standard. Example 2020-02-21T18:00:00Z</li>\n</ul>\n<h4 id=\"stbsboolean\"><code>stbs:boolean</code></h4>\n<ul>\n<li>Sales tax by snap flag</li>\n</ul>\n<h4 id=\"additionalinformationhash\"><code>additionalInformation:hash</code></h4>\n<ul>\n<li><p>Information of the application</p>\n<h4 id=\"additionalinformationcustomerinformationstring\"><code>additionalInformation.customerInformation:string</code></h4>\n<blockquote>\n<p>&lt;ul &gt;&lt;li &gt;&lt;div&gt;Status of the customer information. Possible values are VERIFIED or PENDING&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt;</p>\n</blockquote>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>#### `additionalInformation.bankInformation:string`\n&gt; &lt;ul class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;Status of the bank information. Possible values are VERIFIED or PENDING&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; \n#### `additionalInformation.incomeInformation:string`\n&gt; &lt;ul class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;Status of the income information. Possible values are VERIFIED or PENDING&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; \n#### `additionalInformation.cartInformation:string`\n&gt; &lt;ul class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;Status of the cart information. Possible values are VERIFIED or PENDING&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; \n\n</code></pre><h2 id=\"successboolean\"><code>success:boolean</code></h2>\n<blockquote>\n<p>&lt;ul &gt;&lt;li &gt;&lt;div&gt;Value with the result of the request. Possible values are TRUE or FALSE&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; </p>\n</blockquote>\n<h2 id=\"statusinteger\"><code>status:integer</code></h2>\n<blockquote>\n<p>&lt;ul &gt;&lt;li &gt;&lt;div&gt;Value with status code of the request. For example: 200, 400, 404&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt;</p>\n</blockquote>\n","urlObject":{"path":["platform","v1","application"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"78d49a84-f41e-44be-a655-ab060288ec0a","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-Id","value":"(optional - ID generated by the client)","type":"text"},{"key":"Idempotency-Key","value":"(optional - Idempotency key generated by the client)","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"customerInformation\": {\r\n\t\t\"dobDate\": \"1977-07-07\",\r\n\t\t\"customerId\": \"{{social_4}}\",\r\n\t\t\"customerIdType\": \"SSN4\",\r\n\t\t\"mobilePhone\": \"1000000019\",\r\n\t\t\"mobilePhoneCountry\": \"US\",\r\n\t\t\"email\": \"test@test.com\",\r\n\t\t\"firstName\": \"John\",\r\n\t\t\"lastName\": \"Smith\",\r\n\t\t\"salutation\": \"MR\",\r\n\t\t\"billingAddress\": {\r\n\t\t\t\"streetAddress\": \"123MainSt\",\r\n\t\t\t\"city\": \"SaltLakeCity\",\r\n\t\t\t\"state\": \"UT\",\r\n\t\t\t\"country\": \"US\",\r\n\t\t\t\"postalCode\": \"84001\"\r\n\t\t},\r\n\t\t\"driversLicenseNumber\": \"123456879\",\r\n\t\t\"driversLicenseState\": \"FL\",\r\n\t\t\"language\": \"EN\",\r\n\t\t\"rentOwn\": \"OWN\",\r\n\t\t\"timeAddressYears\": 0,\r\n\t\t\"timeAddressMonths\": 2,\r\n\t\t\"phoneOptIn\": true\r\n\t},\r\n\t\"supplementalDataInformation\": {\r\n\t\t\"customerPastApps\": \"2\",\r\n\t\t\"customerIP\": \"127.X.0.1\",\r\n        \"annualIncome\": \"50000.00\"\r\n\t},\r\n\t\"cartInformation\": {\r\n\t\t\"currencyCode\": \"USD\",\r\n\t\t\"taxAmount\": \"35.00\",\r\n\t\t\"shippingAmount\": \"15.00\",\r\n\t\t\"totalAmount\": \"320.00\",\r\n\t\t\"discountAmount\": \"0.00\",\r\n\t\t\"orderId\": \"041299\",\r\n\t\t\"items\": [\r\n\t\t\t{\r\n\t\t\t\t\"price\": \"150.00\",\r\n\t\t\t\t\"itemId\": \"ABC\",\r\n\t\t\t\t\"description\": \"Mattress\",\r\n\t\t\t\t\"sku\": \"D1234\",\r\n\t\t\t\t\"quantity\": 1,\r\n\t\t\t\t\"leasable\":true\r\n\t\t\t},\r\n            \t\t\t{\r\n\t\t\t\t\"price\": \"100.00\",\r\n\t\t\t\t\"itemId\": \"DEF\",\r\n\t\t\t\t\"description\": \"TV\",\r\n\t\t\t\t\"sku\": \"D1235\",\r\n\t\t\t\t\"quantity\": 1,\r\n\t\t\t\t\"leasable\":true,\r\n                \"itemType\": \"PRODUCT\"\r\n\t\t\t},\r\n            \t\t\t{\r\n\t\t\t\t\"price\": \"20.00\",\r\n\t\t\t\t\"itemId\": \"LMN\",\r\n\t\t\t\t\"description\": \"Misc Fee\",\r\n\t\t\t\t\"sku\": \"A0001\",\r\n\t\t\t\t\"quantity\": 1,\r\n\t\t\t\t\"leasable\":true,\r\n                \"itemType\": \"SERVICE\"\r\n\t\t\t}\r\n\t\t],\r\n\t\t\"shippingAddress\": {\r\n\t\t\t\"streetAddress\": \"456BroadwaySt\",\r\n\t\t\t\"city\": \"SaltLakeCity\",\r\n\t\t\t\"state\": \"UT\",\r\n\t\t\t\"country\": \"US\",\r\n\t\t\t\"postalCode\": \"84001\"\r\n\t\t}\r\n\t},\r\n\t\"incomeInformation\": [{\r\n\t\t\"employerName\": \"AcmeCorporation\",\r\n\t\t\"frequency\": \"BI_WEEKLY\",\r\n\t\t\"incomeAmount\": \"5000.00\",\r\n\t\t\"phone\": \"1234567890\",\r\n\t\t\"phoneCountryCode\": \"US\",\r\n\t\t\"positionHeld\": \"Associate\",\r\n\t\t\"type\": \"FULL_TIME\",\r\n\t\t\"lastPayDate\": \"2020-02-07\",\r\n\t\t\"nextPayDate\": \"2020-02-21\"\r\n\t}],\r\n    \"complianceDisclosures\": {\r\n        \"termsConditions\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"electronicTransaction\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"prequalifiedTermsConditions\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"eConsent\": {\r\n            \"timestamp\": \"10/23/2022\"\r\n        }\r\n    }\r\n}"},"url":"{{baseUrl}}/platform/v1/application"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"501"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:22:59 GMT"},{"key":"x-amzn-RequestId","value":"e23d261c-bd07-4f18-a450-563b74cffb98"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P01-cF-yvHcFqOA="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d05c-8ca7863001e6343c261bb0c4"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"oIqDWJQfKIdYPDwb0_5KbpoIfWv8EZUOWffcIB1Ac026PPjmaSAwWQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"applicationId\": \"{{applicationId}}\",\n        \"applicationStatus\": \"PREQUALIFIED\",\n        \"applicationSubStatus\": \"\",\n        \"message\": \"Application Prequalified\",\n        \"approvedAmount\": \"1810.00\",\n        \"applicationType\": \"LTO\",\n        \"currencyCode\": \"USD\",\n        \"applicationCreateTime\": \"2021-01-04T14:48:43.364Z\",\n        \"applicationUpdateTime\": \"2021-01-04T14:48:43.366Z\",\n  \"stbs\": false,\n       \"additionalInformation\": {\n            \"customerInformation\": \"Verified\",\n            \"cartInformation\": \"Verified\",\n            \"bankInformation\": \"Pending\",\n            \"incomeInformation\": \"Verified\",\n            \"cardInformation\": \"Pending\"\n        }\n            },\n    \"status\": 200\n}"},{"id":"103d55e1-2bca-4621-a187-ed6587495d3c","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-Id","value":"123","type":"text"},{"key":"Idempotency-Key","value":"f18fc09a-450d-4ad8-a429-4b1d632fbb64","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"customerInformation\": {\r\n\t\t\"dobDate\": \"1977-07-07\",\r\n\t\t\"customerId\": \"{{social_4}}\",\r\n\t\t\"customerIdType\": \"SSN4\",\r\n\t\t\"mobilePhone\": \"1000000019\",\r\n\t\t\"firstName\": \"John\",\r\n\t\t\"lastName\": \"Smith\",\r\n\t\t\"salutation\": \"MR\",\r\n\t\t\"billingAddress\": {\r\n\t\t\t\"streetAddress\": \"123MainSt\",\r\n\t\t\t\"city\": \"SaltLakeCity\",\r\n\t\t\t\"state\": \"UT\",\r\n\t\t\t\"country\": \"US\",\r\n\t\t\t\"postalCode\": \"84001\",\r\n\t\t\t\"unit\": \"12\"\r\n\t\t},\r\n\t\t\"driversLicenseNumber\": \"123456879\",\r\n\t\t\"driversLicenseState\": \"FL\",\r\n\t\t\"language\": \"EN\",\r\n\t\t\"rentOwn\": \"OWN\",\r\n\t\t\"timeAddressYears\": 0,\r\n\t\t\"timeAddressMonths\": 2,\r\n\t\t\"phoneOptIn\": true\r\n\t},\r\n\t\"supplementalDataInformation\": {\r\n\t\t\"customerPastApps\": \"2\",\r\n\t\t\"customerIP\": \"127.X.0.1\"\r\n\t},\r\n\t\"cartInformation\": {\r\n\t\t\"currencyCode\": \"USD\",\r\n\t\t\"taxAmount\": \"86.03\",\r\n\t\t\"shippingAmount\": \"15.00\",\r\n\t\t\"totalAmount\": \"3872.00\",\r\n\t\t\"discountAmount\": \"0.00\",\r\n\t\t\"orderId\": \"041299\",\r\n\t\t\"items\": [\r\n\t\t\t{\r\n\t\t\t\t\"price\": \"1.00\",\r\n\t\t\t\t\"itemId\": \"ABC\",\r\n\t\t\t\t\"description\": \"Mattress\",\r\n\t\t\t\t\"sku\": \"D1234\",\r\n\t\t\t\t\"quantity\": 1,\r\n\t\t\t\t\"leasable\":true\r\n\t\t\t}\r\n\t\t],\r\n\t\t\"shippingAddress\": {\r\n\t\t\t\"streetAddress\": \"456BroadwaySt\",\r\n\t\t\t\"city\": \"SaltLakeCity\",\r\n\t\t\t\"state\": \"UT\",\r\n\t\t\t\"country\": \"US\",\r\n\t\t\t\"postalCode\": \"84001\",\r\n\t\t\t\"unit\": \"12\"\r\n\t\t}\r\n\t},\r\n\t\"incomeInformation\": [{\r\n\t\t\"employerName\": \"AcmeCorporation\",\r\n\t\t\"frequency\": \"BI_WEEKLY\",\r\n\t\t\"incomeAmount\": \"5000.00\",\r\n\t\t\"phone\": \"1234567890\",\r\n\t\t\"phoneCountryCode\": \"US\",\r\n\t\t\"positionHeld\": \"Associate\",\r\n\t\t\"type\": \"FULL_TIME\",\r\n\t\t\"lastPayDate\": \"2020-02-07\",\r\n\t\t\"nextPayDate\": \"2020-02-21\"\r\n\t}],\r\n    \"complianceDisclosures\": {\r\n        \"termsConditions\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"electronicTransaction\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"prequalifiedTermsConditions\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"eConsent\": {\r\n            \"timestamp\": \"10/23/2022\"\r\n        }\r\n    }\r\n}"},"url":"{{baseUrl}}/platform/v1/application"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"309"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 21:55:44 GMT"},{"key":"x-amzn-RequestId","value":"851d86b2-205d-459f-ab0a-0ae317f87cb7"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P1mvCFRMPHcFV3Q="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f121e60-2d34f3d0a424dff4c50cfdbc"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 880eb84cefca849ee159a7c4d89c31ea.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"_llfqhKZaTjGHP6IrWAtmfcMgvxflPD5-FleE3Gjzn2GzoII_mblWA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"status\": 400,\n    \"error\": [\n        {\n            \"code\": \"customerInformation_mobilePhoneCountry_missing\",\n            \"type\": \"invalid_request_error\",\n            \"message\": \"Customer mobile phone country code is missing\"\n        },\n        {\n            \"code\": \"customerInformation_email_missing\",\n            \"type\": \"invalid_request_error\",\n            \"message\": \"Customer email address is missing\"\n        }\n    ]\n}"},{"id":"9b1f19d0-589d-4ec9-9a26-b9d6a29f35a8","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-Id","value":"(optional - ID generated by the client)","type":"text"},{"key":"Idempotency-Key","value":"(optional - Idempotency key generated by the client)","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"customerInformation\": {\r\n\t\t\"dobDate\": \"1977-07-07\",\r\n\t\t\"customerId\": \"{{social_4}}\",\r\n\t\t\"customerIdType\": \"SSN4\",\r\n\t\t\"mobilePhone\": \"1000000019\",\r\n\t\t\"mobilePhoneCountry\": \"US\",\r\n\t\t\"email\": \"test@test.com\",\r\n\t\t\"firstName\": \"John\",\r\n\t\t\"lastName\": \"Smith\",\r\n\t\t\"salutation\": \"MR\",\r\n\t\t\"billingAddress\": {\r\n\t\t\t\"streetAddress\": \"123MainSt\",\r\n\t\t\t\"city\": \"SaltLakeCity\",\r\n\t\t\t\"state\": \"UT\",\r\n\t\t\t\"country\": \"US\",\r\n\t\t\t\"postalCode\": \"84001\"\r\n\t\t},\r\n\t\t\"driversLicenseNumber\": \"123456879\",\r\n\t\t\"driversLicenseState\": \"FL\",\r\n\t\t\"language\": \"EN\",\r\n\t\t\"rentOwn\": \"OWN\",\r\n\t\t\"timeAddressYears\": 0,\r\n\t\t\"timeAddressMonths\": 2,\r\n\t\t\"phoneOptIn\": true\r\n\t},\r\n\t\"supplementalDataInformation\": {\r\n\t\t\"customerPastApps\": \"2\",\r\n\t\t\"customerIP\": \"127.X.0.1\",\r\n        \"annualIncome\": \"50000.00\"\r\n\t},\r\n\t\"cartInformation\": {\r\n\t\t\"currencyCode\": \"USD\",\r\n\t\t\"taxAmount\": \"35.00\",\r\n\t\t\"shippingAmount\": \"15.00\",\r\n\t\t\"totalAmount\": \"320.00\",\r\n\t\t\"discountAmount\": \"0.00\",\r\n\t\t\"orderId\": \"041299\",\r\n\t\t\"items\": [\r\n\t\t\t{\r\n\t\t\t\t\"price\": \"150.00\",\r\n\t\t\t\t\"itemId\": \"ABC\",\r\n\t\t\t\t\"description\": \"Mattress\",\r\n\t\t\t\t\"sku\": \"D1234\",\r\n\t\t\t\t\"quantity\": 1,\r\n\t\t\t\t\"leasable\":true\r\n\t\t\t},\r\n            \t\t\t{\r\n\t\t\t\t\"price\": \"100.00\",\r\n\t\t\t\t\"itemId\": \"DEF\",\r\n\t\t\t\t\"description\": \"TV\",\r\n\t\t\t\t\"sku\": \"D1235\",\r\n\t\t\t\t\"quantity\": 1,\r\n\t\t\t\t\"leasable\":true,\r\n                \"itemType\": \"PRODUCT\"\r\n\t\t\t},\r\n            \t\t\t{\r\n\t\t\t\t\"price\": \"20.00\",\r\n\t\t\t\t\"itemId\": \"LMN\",\r\n\t\t\t\t\"description\": \"Misc Fee\",\r\n\t\t\t\t\"sku\": \"A0001\",\r\n\t\t\t\t\"quantity\": 1,\r\n\t\t\t\t\"leasable\":true,\r\n                \"itemType\": \"SERVICE\"\r\n\t\t\t}\r\n\t\t],\r\n\t\t\"shippingAddress\": {\r\n\t\t\t\"streetAddress\": \"456BroadwaySt\",\r\n\t\t\t\"city\": \"SaltLakeCity\",\r\n\t\t\t\"state\": \"UT\",\r\n\t\t\t\"country\": \"US\",\r\n\t\t\t\"postalCode\": \"84001\"\r\n\t\t}\r\n\t},\r\n\t\"incomeInformation\": [{\r\n\t\t\"employerName\": \"AcmeCorporation\",\r\n\t\t\"frequency\": \"BI_WEEKLY\",\r\n\t\t\"incomeAmount\": \"5000.00\",\r\n\t\t\"phone\": \"1234567890\",\r\n\t\t\"phoneCountryCode\": \"US\",\r\n\t\t\"positionHeld\": \"Associate\",\r\n\t\t\"type\": \"FULL_TIME\",\r\n\t\t\"lastPayDate\": \"2020-02-07\",\r\n\t\t\"nextPayDate\": \"2020-02-21\"\r\n\t}],\r\n    \"complianceDisclosures\": {\r\n        \"termsConditions\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"electronicTransaction\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"prequalifiedTermsConditions\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"eConsent\": {\r\n            \"timestamp\": \"10/23/2022\"\r\n        }\r\n    }\r\n}"},"url":"{{baseUrl}}/platform/v1/application"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"501"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:22:59 GMT"},{"key":"x-amzn-RequestId","value":"e23d261c-bd07-4f18-a450-563b74cffb98"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P01-cF-yvHcFqOA="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d05c-8ca7863001e6343c261bb0c4"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"oIqDWJQfKIdYPDwb0_5KbpoIfWv8EZUOWffcIB1Ac026PPjmaSAwWQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"applicationId\": \"{{applicationId}}\",\n        \"applicationStatus\": \"PREQUALIFIED\",\n        \"applicationSubStatus\": \"\",\n        \"message\": \"Application Prequalified\",\n        \"approvedAmount\": \"1810.00\",\n        \"applicationType\": \"LTO\",\n        \"currencyCode\": \"USD\",\n        \"applicationCreateTime\": \"2021-01-04T14:48:43.364Z\",\n        \"applicationUpdateTime\": \"2021-01-04T14:48:43.366Z\",\n  \"stbs\": false,\n       \"additionalInformation\": {\n            \"customerInformation\": \"Verified\",\n            \"cartInformation\": \"Verified\",\n            \"bankInformation\": \"Pending\",\n            \"incomeInformation\": \"Verified\",\n            \"cardInformation\": \"Pending\"\n        }\n            },\n    \"status\": 200\n}"},{"id":"33e297b4-e6a8-47a7-bc7e-1490a467bdc7","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-Id","value":"123","type":"text"},{"key":"Idempotency-Key","value":"f18fc09a-450d-4ad8-a429-4b1d632fbb64","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"customerInformation\": {\r\n\t\t\"dobDate\": \"1977-07-07\",\r\n\t\t\"customerId\": \"{{social_4}}\",\r\n\t\t\"customerIdType\": \"SSN4\",\r\n\t\t\"mobilePhone\": \"1000000019\",\r\n\t\t\"firstName\": \"John\",\r\n\t\t\"lastName\": \"Smith\",\r\n\t\t\"salutation\": \"MR\",\r\n\t\t\"billingAddress\": {\r\n\t\t\t\"streetAddress\": \"123MainSt\",\r\n\t\t\t\"city\": \"SaltLakeCity\",\r\n\t\t\t\"state\": \"UT\",\r\n\t\t\t\"country\": \"US\",\r\n\t\t\t\"postalCode\": \"84001\",\r\n\t\t\t\"unit\": \"12\"\r\n\t\t},\r\n\t\t\"driversLicenseNumber\": \"123456879\",\r\n\t\t\"driversLicenseState\": \"FL\",\r\n\t\t\"language\": \"EN\",\r\n\t\t\"rentOwn\": \"OWN\",\r\n\t\t\"timeAddressYears\": 0,\r\n\t\t\"timeAddressMonths\": 2,\r\n\t\t\"phoneOptIn\": true\r\n\t},\r\n\t\"supplementalDataInformation\": {\r\n\t\t\"customerPastApps\": \"2\",\r\n\t\t\"customerIP\": \"127.X.0.1\"\r\n\t},\r\n\t\"cartInformation\": {\r\n\t\t\"currencyCode\": \"USD\",\r\n\t\t\"taxAmount\": \"86.03\",\r\n\t\t\"shippingAmount\": \"15.00\",\r\n\t\t\"totalAmount\": \"3872.00\",\r\n\t\t\"discountAmount\": \"0.00\",\r\n\t\t\"orderId\": \"041299\",\r\n\t\t\"items\": [\r\n\t\t\t{\r\n\t\t\t\t\"price\": \"1.00\",\r\n\t\t\t\t\"itemId\": \"ABC\",\r\n\t\t\t\t\"description\": \"Mattress\",\r\n\t\t\t\t\"sku\": \"D1234\",\r\n\t\t\t\t\"quantity\": 1,\r\n\t\t\t\t\"leasable\":true\r\n\t\t\t}\r\n\t\t],\r\n\t\t\"shippingAddress\": {\r\n\t\t\t\"streetAddress\": \"456BroadwaySt\",\r\n\t\t\t\"city\": \"SaltLakeCity\",\r\n\t\t\t\"state\": \"UT\",\r\n\t\t\t\"country\": \"US\",\r\n\t\t\t\"postalCode\": \"84001\",\r\n\t\t\t\"unit\": \"12\"\r\n\t\t}\r\n\t},\r\n\t\"incomeInformation\": [{\r\n\t\t\"employerName\": \"AcmeCorporation\",\r\n\t\t\"frequency\": \"BI_WEEKLY\",\r\n\t\t\"incomeAmount\": \"5000.00\",\r\n\t\t\"phone\": \"1234567890\",\r\n\t\t\"phoneCountryCode\": \"US\",\r\n\t\t\"positionHeld\": \"Associate\",\r\n\t\t\"type\": \"FULL_TIME\",\r\n\t\t\"lastPayDate\": \"2020-02-07\",\r\n\t\t\"nextPayDate\": \"2020-02-21\"\r\n\t}],\r\n    \"complianceDisclosures\": {\r\n        \"termsConditions\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"electronicTransaction\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"prequalifiedTermsConditions\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"eConsent\": {\r\n            \"timestamp\": \"10/23/2022\"\r\n        }\r\n    }\r\n}"},"url":"{{baseUrl}}/platform/v1/application"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"309"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 21:55:44 GMT"},{"key":"x-amzn-RequestId","value":"851d86b2-205d-459f-ab0a-0ae317f87cb7"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P1mvCFRMPHcFV3Q="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f121e60-2d34f3d0a424dff4c50cfdbc"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 880eb84cefca849ee159a7c4d89c31ea.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"_llfqhKZaTjGHP6IrWAtmfcMgvxflPD5-FleE3Gjzn2GzoII_mblWA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"status\": 400,\n    \"error\": [\n        {\n            \"code\": \"customerInformation_mobilePhoneCountry_missing\",\n            \"type\": \"invalid_request_error\",\n            \"message\": \"Customer mobile phone country code is missing\"\n        },\n        {\n            \"code\": \"customerInformation_email_missing\",\n            \"type\": \"invalid_request_error\",\n            \"message\": \"Customer email address is missing\"\n        }\n    ]\n}"}],"_postman_id":"e9ba9f39-79ee-49f0-8c09-a7a069a42e9d"},{"name":"Application Status","event":[{"listen":"test","script":{"exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});\r","pm.test(\"Success message\", function () {\r","    pm.expect(pm.response.text()).to.include(\"success\");\r","});"],"type":"text/javascript","id":"10622545-2a12-44d3-84d4-975f414472ac"}}],"id":"f398a98e-1842-40ac-b675-b4e71a9495a4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"<p>(optional - ID generated by the client)</p>\n","type":"text"}],"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/status","description":"<h1 id=\"application-status\">Application Status</h1>\n<p>This endpoint gets the current status of the application.</p>\n<h2 id=\"path-params\">PATH PARAMS</h2>\n<blockquote>\n<h2 id=\"applicationidstring\"><code>applicationId:string</code></h2>\n<ul>\n<li>Required</li>\n<li>ApplicationId is returned when calling the create application endpoint</li>\n</ul>\n</blockquote>\n<h2 id=\"possible-status-values\">Possible Status Values</h2>\n<ul>\n<li>PREQUALIFIED : Application was prequalified</li>\n<li>PENDING : Application is being created </li>\n<li>APPROVED : Application approved</li>\n<li>PENDING_SIGNED_DOCS : Customer needs to sign the agreement </li>\n<li>PENDING_DEL : Agreement was signed, pending product delivery</li>\n<li>COMPLETE : Product delivered. Application ready</li>\n<li>DENIED : Application denied</li>\n<li>WITHDRAWN : Application withdrawn</li>\n</ul>\n<h2 id=\"possible-sub-status-values\">Possible Sub-status Values</h2>\n<ul>\n<li>PENDING_SHIPPING : Pending product shipping</li>\n<li>SHIPPED : Product(s) shipped</li>\n<li>PARTIALLY_REFUNDED : Canceled item within an originated order</li>\n<li>REFUNDED : Products totally refunded</li>\n<li>PENDING_CART_ADJUSTMENT : Cart amount higher than the approved amount</li>\n</ul>\n<h1 id=\"response-object\">Response Object</h1>\n<h2 id=\"datahash\"><code>data:hash</code></h2>\n<blockquote>\n<h4 id=\"applicationstatusstring\"><code>applicationStatus:string</code></h4>\n<ul>\n<li>Status of the application</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"applicationsubstatusstring\"><code>applicationSubStatus:string</code></h4>\n<ul>\n<li>Sub-status of the application</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"applicationidstring-1\"><code>applicationId:string</code></h4>\n<ul>\n<li>Application ID</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"applicationtypestring\"><code>applicationType:string</code></h4>\n<ul>\n<li>Application type. Possible values are LTO for lease merchants and SLN for loan merchants</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"approvedamountstring\"><code>approvedAmount:string</code></h4>\n<ul>\n<li>Approved amount</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"applicationcreatetimestring\"><code>applicationCreateTime:string</code></h4>\n<ul>\n<li>Application creation time in UTC Standard. Example 2020-02-21T18:00:00Z</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"applicationupdatetimestring\"><code>applicationUpdateTime:string</code></h4>\n<ul>\n<li>Application update time in UTC Standard. Example 2020-02-21T18:00:00Z</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"additionalinformationhash\"><code>additionalInformation:hash</code></h4>\n<ul>\n<li>Information of the application</li>\n</ul>\n<h4 id=\"additionalinformationcustomerinformationstring\"><code>additionalInformation.customerInformation:string</code></h4>\n<blockquote>\n<ul>\n<li>Status of the customer information. Possible values are  VERIFIED or PENDING</li>\n</ul>\n</blockquote>\n<h4 id=\"additionalinformationbankinformationstring\"><code>additionalInformation.bankInformation:string</code></h4>\n<blockquote>\n<ul>\n<li>Status of the bank information. Possible values are  VERIFIED or PENDING</li>\n</ul>\n</blockquote>\n<h4 id=\"additionalinformationincomeinformationstring\"><code>additionalInformation.incomeInformation:string</code></h4>\n<blockquote>\n<ul>\n<li>Status of the income information. Possible values are  VERIFIED or PENDING</li>\n</ul>\n</blockquote>\n<h4 id=\"additionalinformationcartinformationstring\"><code>additionalInformation.cartInformation:string</code></h4>\n<blockquote>\n<ul>\n<li>Status of the cart information. Possible values are  VERIFIED or PENDING</li>\n</ul>\n</blockquote>\n</blockquote>\n<blockquote>\n<h4 id=\"reapplydatestring\"><code>reApplyDate:string</code></h4>\n<ul>\n<li>Only with DENIED status, it indicates the date when the customer can reapply. Example 2020-02-21</li>\n</ul>\n</blockquote>\n<h2 id=\"successboolean\"><code>success:boolean</code></h2>\n<blockquote>\n<ul>\n<li>Value with the result of the request. Possible values are TRUE or FALSE</li>\n</ul>\n</blockquote>\n<h2 id=\"statusinteger\"><code>status:integer</code></h2>\n<blockquote>\n<ul>\n<li>Value with status code of the request. For example: 200, 400, 404</li>\n</ul>\n</blockquote>\n","urlObject":{"path":["platform","v1","application","{{applicationId}}","status"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"b95de584-cbb1-4456-b281-e67feb11c246","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-Id","value":"","description":"(optional)","type":"text"},{"key":"Content-Type","value":"application/json"}],"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/status"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"403"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:24:00 GMT"},{"key":"x-amzn-RequestId","value":"930f2434-ec1e-4ebf-8b33-b06582917abb"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P02InFzZPHcFSJg="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d09d-a8df3630a441a87823d4b3c0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"KpjwnZUscUgG94UQBRc9j34v_i47NHzBaMUa6weVzDo_UA3YrLRLlQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"status\": 200,\n    \"data\": {\n        \"applicationStatus\": \"APPROVED\",\n        \"applicationSubStatus\": \"\",\n        \"applicationId\": \"{{applicationId}}\",\n        \"approvedAmount\": \"3520.00\",\n        \"applicationCreateTime\": \"2020-07-17T10:22:55.105Z\",\n        \"applicationUpdateTime\": \"2020-07-17T10:23:28.493Z\",\n        \"additionalInformation\": {\n            \"customerInformation\": \"Verified\",\n            \"bankInformation\": \"Verified\",\n            \"incomeInformation\": \"Verified\",\n            \"cartInformation\": \"Verified\"\n        }\n    }\n}"},{"id":"d9274bfd-2616-43c6-a97c-9f19c47f4f3b","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-Id","value":"","description":"(optional)","type":"text"},{"key":"Content-Type","value":"application/json"}],"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/status"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"133"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 16 Jul 2020 15:49:56 GMT"},{"key":"x-amzn-RequestId","value":"10aaa6ec-e54a-4307-a5a7-1f23473556db"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"PxeNfEZcvHcFaYw="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f107723-680f497015e9048e20a08d84"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 f9c5e5b9a4e739792ecd46afc5cf785d.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"Sj04b1p_EZavyRj0_bQt4EyExO4i4UGB5zNIhMnksgqCstwp1UptFw=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"error\": [\n        {\n            \"code\": \"application_not_found\",\n            \"type\": \"validation_error\",\n            \"message\": \"Application not found\"\n        }\n    ],\n    \"status\": 404\n}"},{"id":"cc1ae53f-e05e-435e-82aa-983407688b74","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-Id","value":"","description":"(optional)","type":"text"},{"key":"Content-Type","value":"application/json"}],"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/status"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"403"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:24:00 GMT"},{"key":"x-amzn-RequestId","value":"930f2434-ec1e-4ebf-8b33-b06582917abb"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P02InFzZPHcFSJg="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d09d-a8df3630a441a87823d4b3c0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"KpjwnZUscUgG94UQBRc9j34v_i47NHzBaMUa6weVzDo_UA3YrLRLlQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"status\": 200,\n    \"data\": {\n        \"applicationStatus\": \"APPROVED\",\n        \"applicationSubStatus\": \"\",\n        \"applicationId\": \"{{applicationId}}\",\n        \"approvedAmount\": \"3520.00\",\n        \"applicationCreateTime\": \"2020-07-17T10:22:55.105Z\",\n        \"applicationUpdateTime\": \"2020-07-17T10:23:28.493Z\",\n        \"additionalInformation\": {\n            \"customerInformation\": \"Verified\",\n            \"bankInformation\": \"Verified\",\n            \"incomeInformation\": \"Verified\",\n            \"cartInformation\": \"Verified\"\n        }\n    }\n}"},{"id":"a4d64eb3-c141-4b86-91e4-80c2127a2cd0","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-Id","value":"","description":"(optional)","type":"text"},{"key":"Content-Type","value":"application/json"}],"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/status"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"133"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 16 Jul 2020 15:49:56 GMT"},{"key":"x-amzn-RequestId","value":"10aaa6ec-e54a-4307-a5a7-1f23473556db"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"PxeNfEZcvHcFaYw="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f107723-680f497015e9048e20a08d84"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 f9c5e5b9a4e739792ecd46afc5cf785d.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"Sj04b1p_EZavyRj0_bQt4EyExO4i4UGB5zNIhMnksgqCstwp1UptFw=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"error\": [\n        {\n            \"code\": \"application_not_found\",\n            \"type\": \"validation_error\",\n            \"message\": \"Application not found\"\n        }\n    ],\n    \"status\": 404\n}"}],"_postman_id":"f398a98e-1842-40ac-b675-b4e71a9495a4"},{"name":"Update Application","event":[{"listen":"test","script":{"exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","pm.test(\"Success message\", function () {","    pm.expect(pm.response.text()).to.include(\"success\");","});"],"type":"text/javascript","packages":{},"id":"61d5c41d-6e0f-43ae-9f65-e620e59a40a9"}}],"id":"c6ba2889-f966-4c85-b6fb-fb466a834d63","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"<p>(optional - ID generated by the client)</p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"customerInformation\": {\r\n\t\t\"driversLicenseNumber\": \"123456879\",\r\n\t\t\"driversLicenseState\": \"FL\",\r\n\t\t\"language\": \"EN\",\r\n\t\t\"rentOwn\": \"OWN\",\r\n\t\t\"timeAddressYears\": 0,\r\n\t\t\"timeAddressMonths\": 2,\r\n\t\t\"phoneOptIn\": true\r\n\t},\r\n\t\"supplementalDataInformation\": {\r\n\t\t\"customerPastApps\": \"2\",\r\n\t\t\"customerIP\": \"127.X.0.1\"\r\n\t},\r\n\t\"cartInformation\": {\r\n\t\t\"currencyCode\": \"USD\",\r\n\t\t\"taxAmount\": \"35.00\",\r\n\t\t\"shippingAmount\": \"15.00\",\r\n\t\t\"totalAmount\": \"320.00\",\r\n\t\t\"discountAmount\": \"0.00\",\r\n\t\t\"orderId\": \"041299\",\r\n\t\t\"items\": [\r\n\t\t\t{\r\n\t\t\t\t\"price\": \"150.00\",\r\n\t\t\t\t\"itemId\": \"ABC\",\r\n\t\t\t\t\"description\": \"Mattress\",\r\n\t\t\t\t\"sku\": \"D1234\",\r\n\t\t\t\t\"quantity\": 1,\r\n\t\t\t\t\"leasable\":true\r\n\t\t\t},\r\n            \t\t\t{\r\n\t\t\t\t\"price\": \"100.00\",\r\n\t\t\t\t\"itemId\": \"DEF\",\r\n\t\t\t\t\"description\": \"TV\",\r\n\t\t\t\t\"sku\": \"D1235\",\r\n\t\t\t\t\"quantity\": 1,\r\n\t\t\t\t\"leasable\":true,\r\n                \"itemType\": \"PRODUCT\"\r\n\t\t\t},\r\n            \t\t\t{\r\n\t\t\t\t\"price\": \"20.00\",\r\n\t\t\t\t\"itemId\": \"LMN\",\r\n\t\t\t\t\"description\": \"Misc Fee\",\r\n\t\t\t\t\"sku\": \"A0001\",\r\n\t\t\t\t\"quantity\": 1,\r\n\t\t\t\t\"leasable\":true,\r\n                \"itemType\": \"SERVICE\"\r\n\t\t\t}\r\n\t\t],\r\n\t\t\"shippingAddress\": {\r\n\t\t\t\"streetAddress\": \"456BroadwaySt\",\r\n\t\t\t\"city\": \"SaltLakeCity\",\r\n\t\t\t\"state\": \"UT\",\r\n\t\t\t\"country\": \"US\",\r\n\t\t\t\"postalCode\": \"84001\",\r\n\t\t\t\"unit\": \"12\"\r\n\t\t}\r\n\t},\r\n\t\"bankInformation\": {\r\n\t\t\"bankName\": \"superBank\",\r\n\t\t\"bankCity\": \"miami\",\r\n\t\t\"bankState\": \"FL\",\r\n\t\t\"routingNumber\": \"051501451\",\r\n\t\t\"accountNumber\": \"{{account_number}}\",\r\n\t\t\"directDeposit\": true\r\n\t},\r\n\t\"incomeInformation\": [{\r\n\t\t\"employerName\": \"AcmeCorporation\",\r\n\t\t\"frequency\": \"BI_WEEKLY\",\r\n\t\t\"incomeAmount\": \"5000.00\",\r\n\t\t\"phone\": \"1234567890\",\r\n\t\t\"phoneCountryCode\": \"US\",\r\n\t\t\"positionHeld\": \"Associate\",\r\n\t\t\"type\": \"FULL_TIME\",\r\n\t\t\"lastPayDate\": \"2020-02-07\",\r\n\t\t\"nextPayDate\": \"2020-02-21\"\r\n\t}],\r\n    \"complianceDisclosures\": {\r\n        \"termsConditions\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"electronicTransaction\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"prequalifiedTermsConditions\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"eConsent\": {\r\n            \"timestamp\": \"10/23/2022\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}","description":"<h1 id=\"update-application\">Update Application</h1>\n<p>This endpoint updates an application with additional applicant information. Additional information is not used for decisioning but needed before acceptance</p>\n<h1 id=\"request-object\">Request Object</h1>\n<h2 id=\"customerinformationhash\"><code>customerInformation:hash</code></h2>\n<blockquote>\n</blockquote>\n<h4 id=\"driverslicensenumberstring\"><code>driversLicenseNumber:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Customer drivers license number. Valid driver license number</p>\n</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"driverslicensestatestring\"><code>driversLicenseState:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Customer drivers license state. Valid US state in two characters</p>\n</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"languagestring\"><code>language:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Language code preference of the customer. Supported values are EN or ES</p>\n</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"rentownstring\"><code>rentOwn:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Customer's current residential type whether it is rental or owned. Supported values are RENT or OWN</p>\n</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"timeaddressyearsstring\"><code>timeAddressYears:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Positive number. Number of years the customer has lived at his or her current residential address</p>\n</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"timeaddressmonthsstring\"><code>timeAddressMonths:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Positive number. Number of months the customer has lived at his current address</p>\n</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"phoneoptinboolean\"><code>phoneOptIn:boolean</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Phone communication opt in for customer. Customer must explicitly agree or disagree to phone communication</p>\n</li>\n</ul>\n<h2 id=\"cartinformationhash\"><code>cartInformation:hash</code></h2>\n<blockquote>\n</blockquote>\n<h4 id=\"currencycodestring\"><code>currencyCode:string</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Currency code of the cart only USD is allowed. Allowed value is USD only</p>\n</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"taxamountstring-numeric\"><code>taxAmount:string (Numeric)</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Valid amount. Sales tax as per the customer and merchant state. Funding will be done accordingly for states where Snap Finance must collect sales tax</p>\n</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"shippingamountstring-numeric\"><code>shippingAmount:string (Numeric)</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Valid shipping amount can be zero for free shipping product. Shipping amount for all the items within the cart</p>\n</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"totalamountstring-numeric\"><code>totalAmount:string (Numeric)</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Total amount of the cart information. (ItemPrice * Qty) + taxAmount + shippingAmount - discount</p>\n</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"discountamountstring-numeric\"><code>discountAmount:string (Numeric)</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Discount amount of the cart information. Valid positive amount</p>\n</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"orderidstring\"><code>orderId:string</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Order Id within merchant's order management system. Any alpha-numeric value</p>\n</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"itemshash-array\"><code>items:hash array</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>An array with at least one item. Leasable (for LTO) items within the cart</p>\n<h4 id=\"itemspricestring-numeric\"><code>items.price:string (Numeric)</code></h4>\n<blockquote>\n<p>&lt;ul &gt;&lt;li &gt;&lt;div&gt;Required&lt;/div&gt;&lt;/li&gt;&lt;li &gt;&lt;div&gt;Positive value. Unit price of an Item&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; </p>\n</blockquote>\n<h4 id=\"itemsitemidstring\"><code>items.itemId:string</code></h4>\n<blockquote>\n<p>&lt;ul &gt;&lt;li &gt;&lt;div&gt;Required&lt;/div&gt;&lt;/li&gt;&lt;li &gt;&lt;div&gt;Within the same order can not have two items with the same item ID. Unique item id within customer order management system&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; </p>\n</blockquote>\n<h4 id=\"itemsdescriptionstring\"><code>items.description:string</code></h4>\n<blockquote>\n<p>&lt;ul &gt;&lt;li &gt;&lt;div&gt;Required&lt;/div&gt;&lt;/li&gt;&lt;li &gt;&lt;div&gt;Title of the item&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; </p>\n</blockquote>\n<h4 id=\"itemsskustring\"><code>items.sku:string</code></h4>\n<blockquote>\n<p>&lt;ul &gt;&lt;li &gt;&lt;div&gt;Optional&lt;/div&gt;&lt;/li&gt;&lt;li &gt;&lt;div&gt;SKU number associated with the item&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; </p>\n</blockquote>\n<h4 id=\"itemsquantityinteger\"><code>items.quantity:Integer</code></h4>\n<blockquote>\n<p>&lt;ul &gt;&lt;li &gt;&lt;div&gt;Required&lt;/div&gt;&lt;/li&gt;&lt;li &gt;&lt;div&gt;Quantity of each item&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; </p>\n</blockquote>\n<h4 id=\"itemsleasableboolean\"><code>items.leasable:boolean</code></h4>\n<blockquote>\n<p>&lt;ul &gt;&lt;li &gt;&lt;div&gt;Required for LTO and optional for SLN&lt;/div&gt;&lt;/li&gt;&lt;li &gt;&lt;div&gt;All the items within the cart should be leasable for LTO. Indicator flag provided by the merchant as agreed with Snap Finance&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; </p>\n</blockquote>\n<h4 id=\"itemsitemtypestring\"><code>items.itemType:string</code></h4>\n<blockquote>\n<p>&lt;ul &gt;&lt;li &gt;&lt;div&gt;Optional&lt;/div&gt;&lt;/li&gt;&lt;li &gt;&lt;div&gt;Item type indicates whether the item is a physical product or not. Accepted values PRODUCT | SERVICE. Default value: PRODUCT.&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt;</p>\n</blockquote>\n</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"shippingaddresshash\"><code>shippingAddress:hash</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Shipping Address Object</p>\n<h4 id=\"shippingaddressstreetaddressstring\"><code>shippingAddress.streetAddress:string</code></h4>\n<blockquote>\n<p>&lt;ul &gt;&lt;li &gt;&lt;div&gt;Required&lt;/div&gt;&lt;/li&gt;&lt;li &gt;&lt;div&gt;P.O boxes are not allowed. Street address where the item will be shipped&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; </p>\n</blockquote>\n<h4 id=\"shippingaddresscitystring\"><code>shippingAddress.city:string</code></h4>\n<blockquote>\n<p>&lt;ul &gt;&lt;li &gt;&lt;div&gt;Required&lt;/div&gt;&lt;/li&gt;&lt;li &gt;&lt;div&gt;P.O boxes are not allowed. City where the items will be shipped&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; </p>\n</blockquote>\n<h4 id=\"shippingaddressstatestring\"><code>shippingAddress.state:string</code></h4>\n<blockquote>\n<p>&lt;ul &gt;&lt;li &gt;&lt;div&gt;Required&lt;/div&gt;&lt;/li&gt;&lt;li &gt;&lt;div&gt;Valid US state. US state where the item will be shipped&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; </p>\n</blockquote>\n<h4 id=\"shippingaddresscountrystring\"><code>shippingAddress.country:string</code></h4>\n<blockquote>\n<p>&lt;ul &gt;&lt;li &gt;&lt;div&gt;Required&lt;/div&gt;&lt;/li&gt;&lt;li &gt;&lt;div&gt;Only US is supported&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; </p>\n</blockquote>\n<h4 id=\"shippingaddresspostalcodestring\"><code>shippingAddress.postalCode:string</code></h4>\n<blockquote>\n<p>&lt;ul &gt;&lt;li &gt;&lt;div&gt;Required&lt;/div&gt;&lt;/li&gt;&lt;li &gt;&lt;div&gt;Valid US zip code. Postal code of the shipping address&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; </p>\n</blockquote>\n<h4 id=\"shippingaddressunit-string\"><code>shippingAddress.unit :string</code></h4>\n<blockquote>\n<p>&lt;ul &gt;&lt;li &gt;&lt;div&gt;Optional&lt;/div&gt;&lt;/li&gt;&lt;li &gt;&lt;div&gt;Unit number of the customer address&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt;</p>\n</blockquote>\n</li>\n</ul>\n<h2 id=\"bankinformationhash\"><code>bankInformation:hash</code></h2>\n<blockquote>\n</blockquote>\n<h4 id=\"routingnumberstring\"><code>routingNumber:string</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Nine digits routing number | Customers bank routing number</p>\n</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"accountnumberstring\"><code>accountNumber:string</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Four to fifteen digits account number | Customers bank account number</p>\n</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"banknamestring\"><code>bankName:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Customers bank name</p>\n</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"bankcitystring\"><code>bankCity:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>City of the customers banking branch</p>\n</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"bankstatestring\"><code>bankState:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>State of the customers banking branch</p>\n</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"directdepositboolean\"><code>directDeposit:boolean</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Whether the account has a direct deposit of the customer's salary</p>\n</li>\n</ul>\n<h2 id=\"incomeinformationhash-array\"><code>incomeInformation:hash array</code></h2>\n<blockquote>\n</blockquote>\n<h4 id=\"frequencystring\"><code>frequency:string</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Frequency of your earnings. Allowed values are WEEKLY, BI_WEEKLY, SEMI_MONTHLY or MONTHLY</p>\n</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"incomeamountstring\"><code>incomeAmount:string</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Income per frequency specified. Positive amount</p>\n</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"lastpaydatestring-date\"><code>lastPayDate:string (Date)</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Last pay date of the customer. Format YYYY-MM-DD</p>\n</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"nextpaydatestring-date\"><code>nextPayDate:string (Date)</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Next pay date of the customer. Format YYYY-MM-DD</p>\n</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"typestring\"><code>type:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Type of customer income. Allowed values are FULL_TIME, PART_TIME, SELF_EMPLOYMENT, BENEFITS, or OTHER</p>\n</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"positionheldstring\"><code>positionHeld:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Position held of the Income Information</p>\n</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"phonestring\"><code>phone:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Customers employer phone number. Ten digits string number</p>\n</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"phonecountrycodestring\"><code>phoneCountryCode:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Employers' phone country code. Only US phone numbers are supported</p>\n</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"employernamestring\"><code>employerName:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Employer name of the income information</p>\n</li>\n</ul>\n<h2 id=\"supplementaldatainformationhash\"><code>supplementalDataInformation:hash</code></h2>\n<blockquote>\n</blockquote>\n<h4 id=\"annualincomestring\"><code>annualIncome:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Annual income amount. Positive amount</p>\n</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"customeripstring\"><code>customerIP:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Customer IP Address</p>\n</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"customerpastappsstring\"><code>customerPastApps:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Customer number of past applications</p>\n</li>\n</ul>\n<h2 id=\"compliancedisclosureshash\"><code>complianceDisclosures:hash</code></h2>\n<h4 id=\"termsconditionshash\"><code>termsConditions:hash</code></h4>\n<h5 id=\"version--string\"><code>version : string</code></h5>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Disclosure version</p>\n</li>\n</ul>\n<h5 id=\"timestamp--string\"><code>timestamp : string</code></h5>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Date of acceptance of the terms and conditions</p>\n</li>\n</ul>\n<h4 id=\"electronictransactionhash\"><code>electronicTransaction:hash</code></h4>\n<h5 id=\"version--string-1\"><code>version : string</code></h5>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Disclosure version</p>\n</li>\n</ul>\n<h5 id=\"timestamp--string-1\"><code>timestamp : string</code></h5>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Date of electronic transaction</p>\n</li>\n</ul>\n<h4 id=\"prequalifiedtermsconditionshash\"><code>prequalifiedTermsConditions:hash</code></h4>\n<h5 id=\"version--string-2\"><code>version : string</code></h5>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Disclosure version</p>\n</li>\n</ul>\n<h5 id=\"timestamp--string-2\"><code>timestamp : string</code></h5>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Date of acceptance of the terms and conditions for prequal apps</p>\n</li>\n</ul>\n<h4 id=\"econsenthash\"><code>eConsent:hash</code></h4>\n<h5 id=\"version--string-3\"><code>version : string</code></h5>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Disclosure version</p>\n</li>\n</ul>\n<h5 id=\"timestamp--string-3\"><code>timestamp : string</code></h5>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>E-consent date signed</p>\n</li>\n</ul>\n<h1 id=\"response-object\">Response Object</h1>\n<h2 id=\"datahash\"><code>data:hash</code></h2>\n<blockquote>\n</blockquote>\n<h4 id=\"applicationstatusstring\"><code>applicationStatus:string</code></h4>\n<ul>\n<li>Status of the application</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"applicationsubstatusstring\"><code>applicationSubStatus:string</code></h4>\n<ul>\n<li>Sub-status of the application</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"applicationidstring\"><code>applicationId:string</code></h4>\n<ul>\n<li>Application ID</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"messagestring\"><code>message:string</code></h4>\n<ul>\n<li>Application information</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"applicationtypestring\"><code>applicationType:string</code></h4>\n<ul>\n<li>Application type. Possible values are LTO for lease merchants and SLN for loan merchants</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"processingfeestring\"><code>processingFee:string</code></h4>\n<ul>\n<li>Processing fee amount</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"currencycodestring-1\"><code>currencyCode:string</code></h4>\n<ul>\n<li>Currency code</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"approvedamountstring\"><code>approvedAmount:string</code></h4>\n<ul>\n<li>Approved amount</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"applicationcreatetimestring\"><code>applicationCreateTime:string</code></h4>\n<ul>\n<li>Application creation time in UTC Standard. Example 2020-02-21T18:00:00Z</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"applicationupdatetimestring\"><code>applicationUpdateTime:string</code></h4>\n<ul>\n<li>Application update time in UTC Standard. Example 2020-02-21T18:00:00Z</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"stbsboolean\"><code>stbs:boolean</code></h4>\n<ul>\n<li>Sales tax by snap flag</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"additionalinformationhash\"><code>additionalInformation:hash</code></h4>\n<ul>\n<li><p>Information of the application</p>\n<h4 id=\"additionalinformationcustomerinformationstring\"><code>additionalInformation.customerInformation:string</code></h4>\n<blockquote>\n<p>&lt;ul &gt;&lt;li &gt;&lt;div&gt;Status of the customer information. Possible values are VERIFIED or PENDING&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; </p>\n</blockquote>\n<h4 id=\"additionalinformationbankinformationstring\"><code>additionalInformation.bankInformation:string</code></h4>\n<blockquote>\n<p>&lt;ul &gt;&lt;li &gt;&lt;div&gt;Status of the bank information. Possible values are VERIFIED or PENDING&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; </p>\n</blockquote>\n<h4 id=\"additionalinformationincomeinformationstring\"><code>additionalInformation.incomeInformation:string</code></h4>\n<blockquote>\n<p>&lt;ul &gt;&lt;li &gt;&lt;div&gt;Status of the income information. Possible values are VERIFIED or PENDING&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; </p>\n</blockquote>\n<h4 id=\"additionalinformationcartinformationstring\"><code>additionalInformation.cartInformation:string</code></h4>\n<blockquote>\n<p>&lt;ul &gt;&lt;li &gt;&lt;div&gt;Status of the cart information. Possible values are VERIFIED or PENDING&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt;</p>\n</blockquote>\n</li>\n</ul>\n<h2 id=\"successboolean\"><code>success:boolean</code></h2>\n<blockquote>\n<p>&lt;ul &gt;&lt;li &gt;&lt;div&gt;Value with the result of the request. Possible values are TRUE or FALSE&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; </p>\n</blockquote>\n<h2 id=\"statusinteger\"><code>status:integer</code></h2>\n<blockquote>\n<p>&lt;ul &gt;&lt;li &gt;&lt;div&gt;Value with status code of the request. For example: 200, 400, 404&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt;</p>\n</blockquote>\n","urlObject":{"path":["platform","v1","application","{{applicationId}}"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"e7b15fd5-94d2-4e96-9ac4-67f7022dfa00","name":"OK","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-Id","value":"123","description":"(optional)","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"customerInformation\": {\r\n\t\t\"driversLicenseNumber\": \"123456879\",\r\n\t\t\"driversLicenseState\": \"FL\",\r\n\t\t\"language\": \"EN\",\r\n\t\t\"rentOwn\": \"OWN\",\r\n\t\t\"timeAddressYears\": 0,\r\n\t\t\"timeAddressMonths\": 2,\r\n\t\t\"phoneOptIn\": true\r\n\t},\r\n\t\"supplementalDataInformation\": {\r\n\t\t\"customerPastApps\": \"2\",\r\n\t\t\"customerIP\": \"127.X.0.1\",\r\n        \"annualIncome\": \"50000.00\"\r\n\t},\r\n\t\"cartInformation\": {\r\n\t\t\"currencyCode\": \"USD\",\r\n\t\t\"taxAmount\": \"35.00\",\r\n\t\t\"shippingAmount\": \"15.00\",\r\n\t\t\"totalAmount\": \"320.00\",\r\n\t\t\"discountAmount\": \"0.00\",\r\n\t\t\"orderId\": \"041299\",\r\n\t\t\"items\": [\r\n\t\t\t{\r\n\t\t\t\t\"price\": \"150.00\",\r\n\t\t\t\t\"itemId\": \"ABC\",\r\n\t\t\t\t\"description\": \"Mattress\",\r\n\t\t\t\t\"sku\": \"D1234\",\r\n\t\t\t\t\"quantity\": 1,\r\n\t\t\t\t\"leasable\":true\r\n\t\t\t},\r\n            \t\t\t{\r\n\t\t\t\t\"price\": \"100.00\",\r\n\t\t\t\t\"itemId\": \"DEF\",\r\n\t\t\t\t\"description\": \"TV\",\r\n\t\t\t\t\"sku\": \"D1235\",\r\n\t\t\t\t\"quantity\": 1,\r\n\t\t\t\t\"leasable\":true,\r\n                \"itemType\": \"PRODUCT\"\r\n\t\t\t},\r\n            \t\t\t{\r\n\t\t\t\t\"price\": \"20.00\",\r\n\t\t\t\t\"itemId\": \"LMN\",\r\n\t\t\t\t\"description\": \"Misc Fee\",\r\n\t\t\t\t\"sku\": \"A0001\",\r\n\t\t\t\t\"quantity\": 1,\r\n\t\t\t\t\"leasable\":true,\r\n                \"itemType\": \"SERVICE\"\r\n\t\t\t}\r\n\t\t],\r\n\t\t\"shippingAddress\": {\r\n\t\t\t\"streetAddress\": \"456BroadwaySt\",\r\n\t\t\t\"city\": \"SaltLakeCity\",\r\n\t\t\t\"state\": \"UT\",\r\n\t\t\t\"country\": \"US\",\r\n\t\t\t\"postalCode\": \"84001\"\r\n\t\t}\r\n\t},\r\n\t\"bankInformation\": {\r\n\t\t\"bankName\": \"superBank\",\r\n\t\t\"bankCity\": \"miami\",\r\n\t\t\"bankState\": \"FL\",\r\n\t\t\"routingNumber\": \"051501451\",\r\n\t\t\"accountNumber\": \"{{account_number}}\",\r\n\t\t\"directDeposit\": true\r\n\t},\r\n\t\"incomeInformation\": [{\r\n\t\t\"employerName\": \"AcmeCorporation\",\r\n\t\t\"frequency\": \"BI_WEEKLY\",\r\n\t\t\"incomeAmount\": \"5000.00\",\r\n\t\t\"phone\": \"1234567890\",\r\n\t\t\"phoneCountryCode\": \"US\",\r\n\t\t\"positionHeld\": \"Associate\",\r\n\t\t\"type\": \"FULL_TIME\",\r\n\t\t\"lastPayDate\": \"2020-02-07\",\r\n\t\t\"nextPayDate\": \"2020-02-21\"\r\n\t}],\r\n    \"complianceDisclosures\": {\r\n        \"termsConditions\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"electronicTransaction\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"prequalifiedTermsConditions\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"eConsent\": {\r\n            \"timestamp\": \"10/23/2022\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"501"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:23:29 GMT"},{"key":"x-amzn-RequestId","value":"7b7a7e93-8b08-488e-807b-baff3746edc9"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P02D7HmRPHcFoeg="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d07f-228d9c3f28aea220b26950d2"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"bn3cAogOXeSE8fzq2QIF9wZmIiuUnnkTfd_b1nvfrHcUBbNzK9-YJw=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"applicationId\": \"{{applicationId}}\",\n        \"applicationStatus\": \"APPROVED\",\n        \"applicationSubStatus\": \"\",\n        \"message\": \"Application Approved\",\n        \"approvedAmount\": \"3520.00\",\n        \"applicationType\": \"LTO\",\n        \"processingFee\": \"0\",\n        \"currencyCode\": \"USD\",\n        \"applicationCreateTime\": \"2020-07-17T10:22:55.105Z\",\n        \"applicationUpdateTime\": \"2020-07-17T10:23:28.493Z\",\n        \"additionalInformation\": {\n            \"customerInformation\": \"Verified\",\n            \"cartInformation\": \"Verified\",\n            \"bankInformation\": \"Verified\",\n            \"incomeInformation\": \"Verified\"\n        }\n    },\n    \"status\": 200\n}"},{"id":"88ba22b9-5274-400d-ac9c-73df738e0b22","name":"Bad Request","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-Id","value":"123","description":"(optional)","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"customerInformation\": {\r\n\t\t\"driversLicenseNumber\": \"123456879\",\r\n\t\t\"driversLicenseState\": \"FL\",\r\n\t\t\"language\": \"EN\",\r\n\t\t\"rentOwn\": \"OWN\",\r\n\t\t\"timeAddressYears\": 0,\r\n\t\t\"timeAddressMonths\": 2,\r\n\t\t\"phoneOptIn\": true\r\n\t},\r\n\t\"supplementalDataInformation\": {\r\n\t\t\"customerPastApps\": \"2\",\r\n\t\t\"customerIP\": \"127.X.0.1\"\r\n\t},\r\n\t\"cartInformation\": {\r\n\t\t\"currencyCode\": \"USD\",\r\n\t\t\"taxAmount\": \"86.03\",\r\n\t\t\"shippingAmount\": \"15.00\",\r\n\t\t\"discountAmount\": \"0.00\",\r\n\t\t\"orderId\": \"041299\",\r\n\t\t\"items\": [\r\n\t\t\t{\r\n\t\t\t\t\"price\": \"1.00\",\r\n\t\t\t\t\"itemId\": \"ABC\",\r\n\t\t\t\t\"description\": \"Mattress\",\r\n\t\t\t\t\"sku\": \"D1234\",\r\n\t\t\t\t\"quantity\": 1,\r\n\t\t\t\t\"leasable\": true\r\n\t\t\t}\r\n\t\t],\r\n\t\t\"shippingAddress\": {\r\n\t\t\t\"streetAddress\": \"456BroadwaySt\",\r\n\t\t\t\"city\": \"SaltLakeCity\",\r\n\t\t\t\"state\": \"UT\",\r\n\t\t\t\"country\": \"US\",\r\n\t\t\t\"postalCode\": \"84001\"\r\n\t\t}\r\n\t},\r\n\t\"bankInformation\": {\r\n\t\t\"bankName\": \"superBank\",\r\n\t\t\"bankCity\": \"miami\",\r\n\t\t\"bankState\": \"FL\",\r\n\t\t\"routingNumber\": \"051501451\",\r\n\t\t\"accountNumber\": \"{{account_number}}\",\r\n\t\t\"directDeposit\": true\r\n\t},\r\n\t\"incomeInformation\": [{\r\n\t\t\"employerName\": \"AcmeCorporation\",\r\n\t\t\"frequency\": \"BI_WEEKLY\",\r\n\t\t\"incomeAmount\": \"5000.00\",\r\n\t\t\"phone\": \"1234567890\",\r\n\t\t\"phoneCountryCode\": \"US\",\r\n\t\t\"positionHeld\": \"Associate\",\r\n\t\t\"type\": \"FULL_TIME\",\r\n\t\t\"lastPayDate\": \"2018-06-06\",\r\n\t\t\"nextPayDate\": \"2018-06-21\"\r\n\t}],\r\n    \"complianceDisclosures\": {\r\n        \"termsConditions\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"electronicTransaction\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"prequalifiedTermsConditions\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"eConsent\": {\r\n            \"timestamp\": \"10/23/2022\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"159"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 16 Jul 2020 15:47:14 GMT"},{"key":"x-amzn-RequestId","value":"12a6933d-323a-4a4e-ba23-263f54f638b0"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"Pxd0TGxFPHcFkjw="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f107681-5abf786c414827605f8a6088"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 f9c5e5b9a4e739792ecd46afc5cf785d.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"pVDtqDoj_rc8lT9s3Rmd2CA9WYsC-uYPuUaCcTQ3nJwB0Jhlr-aLGQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"status\": 400,\n    \"error\": [\n        {\n            \"code\": \"cartInformation_totalAmount_missing\",\n            \"type\": \"invalid_request_error\",\n            \"message\": \"Cart total amount is missing\"\n        }\n    ]\n}"},{"id":"177d9d78-84c0-400c-9236-8b1f89e7de2e","name":"Bad Request","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-Id","value":"123","description":"(optional)","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"customerInformation\": {\r\n\t\t\"driversLicenseNumber\": \"123456879\",\r\n\t\t\"driversLicenseState\": \"FL\",\r\n\t\t\"language\": \"EN\",\r\n\t\t\"rentOwn\": \"OWN\",\r\n\t\t\"timeAddressYears\": 0,\r\n\t\t\"timeAddressMonths\": 2,\r\n\t\t\"phoneOptIn\": true\r\n\t},\r\n\t\"supplementalDataInformation\": {\r\n\t\t\"customerPastApps\": \"2\",\r\n\t\t\"customerIP\": \"127.X.0.1\"\r\n\t},\r\n\t\"cartInformation\": {\r\n\t\t\"currencyCode\": \"USD\",\r\n\t\t\"taxAmount\": \"86.03\",\r\n\t\t\"shippingAmount\": \"15.00\",\r\n\t\t\"discountAmount\": \"0.00\",\r\n\t\t\"orderId\": \"041299\",\r\n\t\t\"items\": [\r\n\t\t\t{\r\n\t\t\t\t\"price\": \"1.00\",\r\n\t\t\t\t\"itemId\": \"ABC\",\r\n\t\t\t\t\"description\": \"Mattress\",\r\n\t\t\t\t\"sku\": \"D1234\",\r\n\t\t\t\t\"quantity\": 1,\r\n\t\t\t\t\"leasable\": true\r\n\t\t\t}\r\n\t\t],\r\n\t\t\"shippingAddress\": {\r\n\t\t\t\"streetAddress\": \"456BroadwaySt\",\r\n\t\t\t\"city\": \"SaltLakeCity\",\r\n\t\t\t\"state\": \"UT\",\r\n\t\t\t\"country\": \"US\",\r\n\t\t\t\"postalCode\": \"84001\"\r\n\t\t}\r\n\t},\r\n\t\"bankInformation\": {\r\n\t\t\"bankName\": \"superBank\",\r\n\t\t\"bankCity\": \"miami\",\r\n\t\t\"bankState\": \"FL\",\r\n\t\t\"routingNumber\": \"051501451\",\r\n\t\t\"accountNumber\": \"{{account_number}}\",\r\n\t\t\"directDeposit\": true\r\n\t},\r\n\t\"incomeInformation\": [{\r\n\t\t\"employerName\": \"AcmeCorporation\",\r\n\t\t\"frequency\": \"BI_WEEKLY\",\r\n\t\t\"incomeAmount\": \"5000.00\",\r\n\t\t\"phone\": \"1234567890\",\r\n\t\t\"phoneCountryCode\": \"US\",\r\n\t\t\"positionHeld\": \"Associate\",\r\n\t\t\"type\": \"FULL_TIME\",\r\n\t\t\"lastPayDate\": \"2018-06-06\",\r\n\t\t\"nextPayDate\": \"2018-06-21\"\r\n\t}],\r\n    \"complianceDisclosures\": {\r\n        \"termsConditions\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"electronicTransaction\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"prequalifiedTermsConditions\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"eConsent\": {\r\n            \"timestamp\": \"10/23/2022\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"159"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 16 Jul 2020 15:47:14 GMT"},{"key":"x-amzn-RequestId","value":"12a6933d-323a-4a4e-ba23-263f54f638b0"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"Pxd0TGxFPHcFkjw="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f107681-5abf786c414827605f8a6088"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 f9c5e5b9a4e739792ecd46afc5cf785d.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"pVDtqDoj_rc8lT9s3Rmd2CA9WYsC-uYPuUaCcTQ3nJwB0Jhlr-aLGQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"status\": 400,\n    \"error\": [\n        {\n            \"code\": \"cartInformation_totalAmount_missing\",\n            \"type\": \"invalid_request_error\",\n            \"message\": \"Cart total amount is missing\"\n        }\n    ]\n}"},{"id":"e9344200-39e5-4642-a238-035d885120b2","name":"OK","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-Id","value":"123","description":"(optional)","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"customerInformation\": {\r\n\t\t\"driversLicenseNumber\": \"123456879\",\r\n\t\t\"driversLicenseState\": \"FL\",\r\n\t\t\"language\": \"EN\",\r\n\t\t\"rentOwn\": \"OWN\",\r\n\t\t\"timeAddressYears\": 0,\r\n\t\t\"timeAddressMonths\": 2,\r\n\t\t\"phoneOptIn\": true\r\n\t},\r\n\t\"supplementalDataInformation\": {\r\n\t\t\"customerPastApps\": \"2\",\r\n\t\t\"customerIP\": \"127.X.0.1\",\r\n        \"annualIncome\": \"50000.00\"\r\n\t},\r\n\t\"cartInformation\": {\r\n\t\t\"currencyCode\": \"USD\",\r\n\t\t\"taxAmount\": \"35.00\",\r\n\t\t\"shippingAmount\": \"15.00\",\r\n\t\t\"totalAmount\": \"320.00\",\r\n\t\t\"discountAmount\": \"0.00\",\r\n\t\t\"orderId\": \"041299\",\r\n\t\t\"items\": [\r\n\t\t\t{\r\n\t\t\t\t\"price\": \"150.00\",\r\n\t\t\t\t\"itemId\": \"ABC\",\r\n\t\t\t\t\"description\": \"Mattress\",\r\n\t\t\t\t\"sku\": \"D1234\",\r\n\t\t\t\t\"quantity\": 1,\r\n\t\t\t\t\"leasable\":true\r\n\t\t\t},\r\n            \t\t\t{\r\n\t\t\t\t\"price\": \"100.00\",\r\n\t\t\t\t\"itemId\": \"DEF\",\r\n\t\t\t\t\"description\": \"TV\",\r\n\t\t\t\t\"sku\": \"D1235\",\r\n\t\t\t\t\"quantity\": 1,\r\n\t\t\t\t\"leasable\":true,\r\n                \"itemType\": \"PRODUCT\"\r\n\t\t\t},\r\n            \t\t\t{\r\n\t\t\t\t\"price\": \"20.00\",\r\n\t\t\t\t\"itemId\": \"LMN\",\r\n\t\t\t\t\"description\": \"Misc Fee\",\r\n\t\t\t\t\"sku\": \"A0001\",\r\n\t\t\t\t\"quantity\": 1,\r\n\t\t\t\t\"leasable\":true,\r\n                \"itemType\": \"SERVICE\"\r\n\t\t\t}\r\n\t\t],\r\n\t\t\"shippingAddress\": {\r\n\t\t\t\"streetAddress\": \"456BroadwaySt\",\r\n\t\t\t\"city\": \"SaltLakeCity\",\r\n\t\t\t\"state\": \"UT\",\r\n\t\t\t\"country\": \"US\",\r\n\t\t\t\"postalCode\": \"84001\"\r\n\t\t}\r\n\t},\r\n\t\"bankInformation\": {\r\n\t\t\"bankName\": \"superBank\",\r\n\t\t\"bankCity\": \"miami\",\r\n\t\t\"bankState\": \"FL\",\r\n\t\t\"routingNumber\": \"051501451\",\r\n\t\t\"accountNumber\": \"{{account_number}}\",\r\n\t\t\"directDeposit\": true\r\n\t},\r\n\t\"incomeInformation\": [{\r\n\t\t\"employerName\": \"AcmeCorporation\",\r\n\t\t\"frequency\": \"BI_WEEKLY\",\r\n\t\t\"incomeAmount\": \"5000.00\",\r\n\t\t\"phone\": \"1234567890\",\r\n\t\t\"phoneCountryCode\": \"US\",\r\n\t\t\"positionHeld\": \"Associate\",\r\n\t\t\"type\": \"FULL_TIME\",\r\n\t\t\"lastPayDate\": \"2020-02-07\",\r\n\t\t\"nextPayDate\": \"2020-02-21\"\r\n\t}],\r\n    \"complianceDisclosures\": {\r\n        \"termsConditions\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"electronicTransaction\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"prequalifiedTermsConditions\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"eConsent\": {\r\n            \"timestamp\": \"10/23/2022\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"501"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:23:29 GMT"},{"key":"x-amzn-RequestId","value":"7b7a7e93-8b08-488e-807b-baff3746edc9"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P02D7HmRPHcFoeg="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d07f-228d9c3f28aea220b26950d2"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"bn3cAogOXeSE8fzq2QIF9wZmIiuUnnkTfd_b1nvfrHcUBbNzK9-YJw=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"applicationId\": \"{{applicationId}}\",\n        \"applicationStatus\": \"APPROVED\",\n        \"applicationSubStatus\": \"\",\n        \"message\": \"Application Approved\",\n        \"approvedAmount\": \"3520.00\",\n        \"applicationType\": \"LTO\",\n        \"processingFee\": \"0\",\n        \"currencyCode\": \"USD\",\n        \"applicationCreateTime\": \"2020-07-17T10:22:55.105Z\",\n        \"applicationUpdateTime\": \"2020-07-17T10:23:28.493Z\",\n        \"additionalInformation\": {\n            \"customerInformation\": \"Verified\",\n            \"cartInformation\": \"Verified\",\n            \"bankInformation\": \"Verified\",\n            \"incomeInformation\": \"Verified\"\n        }\n    },\n    \"status\": 200\n}"}],"_postman_id":"c6ba2889-f966-4c85-b6fb-fb466a834d63"},{"name":"Payment Plan","event":[{"listen":"test","script":{"exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});\r","pm.test(\"Success message\", function () {\r","    pm.expect(pm.response.text()).to.include(\"success\");\r","});"],"type":"text/javascript","id":"052b0db4-9de0-405d-b8f7-f233369c688c"}}],"id":"618daed6-c94d-4de8-a21c-a79c86199dc3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"<p>(optional - ID generated by the client)</p>\n","type":"text"}],"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/paymentPlan","description":"<h1 id=\"payment-plan\">Payment Plan</h1>\n<p>This endpoint gets the payment schedule. Read the fields as leaseField or loanField depending on the merchant type</p>\n<h2 id=\"path-params\">PATH PARAMS</h2>\n<blockquote>\n<h2 id=\"applicationidstring\"><code>applicationId:string</code></h2>\n<ul>\n<li>Required</li>\n<li>ApplicationId is returned when calling the create application endpoint</li>\n</ul>\n</blockquote>\n<h1 id=\"response-object\">Response Object</h1>\n<h2 id=\"datahash\"><code>data:hash</code></h2>\n<blockquote>\n<h3 id=\"documentshash\"><code>documents:hash</code></h3>\n<ul>\n<li>Documents details<blockquote>\n<h4 id=\"documentsdocumentstring\"><code>documents.document:string</code></h4>\n</blockquote>\n</li>\n</ul>\n<blockquote>\n<ul>\n<li>Document type agreement/addendum</li>\n</ul>\n<h4 id=\"documentssignstring\"><code>documents.sign:string</code></h4>\n<ul>\n<li>Sign document url</li>\n</ul>\n<h4 id=\"documentsprioritystring\"><code>documents.priority:string</code></h4>\n<ul>\n<li>priority</li>\n</ul>\n<h4 id=\"documentsrenderstring\"><code>documents.render:string</code></h4>\n<ul>\n<li>Get agreement url</li>\n</ul>\n</blockquote>\n</blockquote>\n<blockquote>\n<h3 id=\"paymentplansummaryhash\"><code>paymentPlanSummary:hash</code></h3>\n<ul>\n<li>Payment plan details<blockquote>\n<h4 id=\"paymentplansummarylastpaymentamountstring\"><code>paymentPlanSummary.lastPaymentAmount:string</code></h4>\n</blockquote>\n</li>\n</ul>\n<blockquote>\n<ul>\n<li>Last payment amount</li>\n</ul>\n<h4 id=\"paymentplansummarypaymentamountstring\"><code>paymentPlanSummary.paymentAmount:string</code></h4>\n<ul>\n<li>Regular payment amount</li>\n</ul>\n<h4 id=\"paymentplansummaryleaseterminmonthsstring\"><code>paymentPlanSummary.leaseTermInMonths:string</code></h4>\n<ul>\n<li>Lease/Loan term</li>\n</ul>\n<h4 id=\"paymentplansummaryprocessingfeestring\"><code>paymentPlanSummary.processingFee:string</code></h4>\n<ul>\n<li>Processing fee amount</li>\n</ul>\n<h4 id=\"paymentplansummaryleaseamountstring\"><code>paymentPlanSummary.leaseAmount:string</code></h4>\n<ul>\n<li>Lease/Loan amount</li>\n</ul>\n<h4 id=\"paymentplansummaryleasecoststring\"><code>paymentPlanSummary.leaseCost:string</code></h4>\n<ul>\n<li>Lease/Loan cost</li>\n</ul>\n<h4 id=\"paymentplansummaryleasetotalamountstring\"><code>paymentPlanSummary.leaseTotalAmount:string</code></h4>\n<ul>\n<li>Lease/Loan total amount</li>\n</ul>\n<h4 id=\"paymentplansummarypaymentfrequencystring\"><code>paymentPlanSummary.paymentFrequency:string</code></h4>\n<ul>\n<li>Payment frequency</li>\n</ul>\n<h4 id=\"paymentplansummarycurrencycodestring\"><code>paymentPlanSummary.currencyCode:string</code></h4>\n<ul>\n<li>Currency code</li>\n</ul>\n<h4 id=\"paymentplansummarystbsboolean\"><code>paymentPlanSummary.stbs:boolean</code></h4>\n<ul>\n<li>Sales tax by snap flag</li>\n</ul>\n<h4 id=\"paymentplansummarystbssalestaxpercentstring\"><code>paymentPlanSummary.stbsSalesTaxPercent:string</code></h4>\n<ul>\n<li>Sales tax percent</li>\n</ul>\n<h4 id=\"paymentplansummarycpodatestring\"><code>paymentPlanSummary.cpoDate:string</code></h4>\n<ul>\n<li>Cash payoff date</li>\n</ul>\n<h4 id=\"paymentplansummarycpoamountstring\"><code>paymentPlanSummary.cpoAmount:string</code></h4>\n<ul>\n<li>Cash payoff amount</li>\n</ul>\n<h4 id=\"paymentplansummarycponumberofpaymentsstring\"><code>paymentPlanSummary.cpoNumberOfPayments:string</code></h4>\n<ul>\n<li>Cash payoff number of payments</li>\n</ul>\n<h4 id=\"paymentplansummarycpopaymentsamountstring\"><code>paymentPlanSummary.cpoPaymentsAmount:string</code></h4>\n<ul>\n<li>Cash payoff payment amount</li>\n</ul>\n<h4 id=\"paymentplansummarycpolastpaymentamountstring\"><code>paymentPlanSummary.cpoLastPaymentAmount:string</code></h4>\n<ul>\n<li>Cash payoff last payment amount</li>\n</ul>\n<h4 id=\"paymentplansummarycpoleasecoststring\"><code>paymentPlanSummary.cpoLeaseCost:string</code></h4>\n<ul>\n<li>Cash payoff least cost</li>\n</ul>\n<h4 id=\"paymentplansummaryinitialpaymentstring\"><code>paymentPlanSummary.initialPayment:string</code></h4>\n<ul>\n<li>Initial payment amount</li>\n</ul>\n<h4 id=\"paymentplansummarynumberofpaymentswithsameamountstring\"><code>paymentPlanSummary.numberOfPaymentsWithSameAmount:string</code></h4>\n<ul>\n<li>Number of payments with same amount</li>\n<li>Initial payment amount</li>\n</ul>\n<h4 id=\"paymentplansummarytotalnumberofpaymentsstring\"><code>paymentPlanSummary.totalNumberOfPayments:string</code></h4>\n<ul>\n<li>Total number of payments</li>\n</ul>\n<h4 id=\"paymentplansummarylastpaymentdatestring\"><code>paymentPlanSummary.lastPaymentDate:string</code></h4>\n<ul>\n<li>Last payment date</li>\n</ul>\n</blockquote>\n</blockquote>\n<h2 id=\"successboolean\"><code>success:boolean</code></h2>\n<blockquote>\n<ul>\n<li>Value with the result of the request. Possible values are TRUE or False</li>\n</ul>\n</blockquote>\n<h2 id=\"statusinteger\"><code>status:integer</code></h2>\n<blockquote>\n<ul>\n<li>Value with status code of the request. For example: 200, 400, 404</li>\n</ul>\n</blockquote>\n","urlObject":{"path":["platform","v1","application","{{applicationId}}","paymentPlan"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"be89fcfd-66b5-4b77-83d3-25eda556e98b","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Content-Type","value":"application/json"},{"key":"Request-Id","value":"123"}],"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/paymentPlan"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"244"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:24:19 GMT"},{"key":"x-amzn-RequestId","value":"f42aea7e-5211-4753-a26a-e8db4014d312"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P02LeGszvHcFsxg="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d0af-3504dad84d30e4d08259a3b0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"jen45MDpH8DQoOEaPFvDVJdGipmCzTuiyeN1iMqlvOUBQG5Kixtyow=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"cpoDays\": 100,\n        \"documents\": [\n            {\n                \"document\": \"agreement\",\n                \"priority\": 1,\n                \"render\": \"https://api-qa.snapfinance.com/platform/v1/application/2410280079UT/agreement?renderType=html&document=agreement\",\n                \"sign\": \"https://api-qa.snapfinance.com/platform/v1/application/2410280079UT/signed?document=agreement\"\n            }\n        ],\n        \"paymentPlanSummary\": {\n            \"cpoAmount\": \"330.00\",\n            \"cpoDate\": \"2025-05-05\",\n            \"cpoLastPaymentAmount\": \"47.16\",\n            \"cpoLeaseCost\": \"0.00\",\n            \"cpoNumberOfPayments\": \"6\",\n            \"cpoPaymentsAmount\": \"47.14\",\n            \"currencyCode\": \"USD\",\n            \"finalNumberOfPayments\": \"39\",\n            \"firstPaymentDate\": \"2025-02-14\",\n            \"hangtagState\": false,\n            \"initialPayment\": \"0.00\",\n            \"lastPaymentAmount\": \"19.48\",\n            \"lastPaymentDate\": \"2026-07-31\",\n            \"leaseAmount\": \"320.00\",\n            \"leaseCost\": \"442.00\",\n            \"leaseTermInMonths\": \"18\",\n            \"leaseTotalAmount\": \"762.00\",\n            \"numberOfPaymentsWithSameAmount\": \"38\",\n            \"paymentAmount\": \"19.54\",\n            \"paymentFrequency\": \"BI_WEEKLY\",\n            \"processingFee\": \"10.00\",\n            \"propertyCondition\": \"New\",\n            \"stbs\": false,\n            \"stbsSalesTaxPercent\": \"0.00\",\n            \"summaryAcceptanceRequired\": false,\n            \"totalNumberOfPayments\": \"39\"\n        }\n    },\n    \"status\": 200,\n    \"success\": true\n}"},{"id":"2608949f-e39b-4ba3-b2b8-89b1a7a720b6","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Content-Type","value":"application/json"},{"key":"Request-Id","value":"123"}],"url":{"raw":"{{baseUrl}}/platform/v1/application/{{applicationId}}/paymentPlan?frequency=BW","host":["{{baseUrl}}"],"path":["platform","v1","application","{{applicationId}}","paymentPlan"],"query":[{"key":"frequency","value":"BW"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"136"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 15:58:33 GMT"},{"key":"x-amzn-RequestId","value":"e686de7a-4a8b-472a-99bb-c3810ca266ad"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P0yadGxZPHcFgJQ="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11caa9-a9e85c6759f66b046f148f15"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 4c6f3dc807d213a0da966381e4886b08.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"YxjE8a_vRBiTtIchTjpRj97HIPvHhb2UFEne1JzTFnB4twNJS3u6QA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"status\": 404,\n    \"error\": [\n        {\n            \"code\": \"application_invalid\",\n            \"type\": \"invalid_request_error\",\n            \"message\": \"Application not found\"\n        }\n    ]\n}"},{"id":"de4882e4-1f31-4c42-95b5-e285cc291bb7","name":"Oklahoma","originalRequest":{"method":"GET","header":[{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"}],"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/paymentPlan"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1298"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Mon, 28 Oct 2024 05:49:08 GMT"},{"key":"X-Amzn-Trace-Id","value":"Root=1-671f25d3-71b827a74d0ce4ea2c443859"},{"key":"x-amzn-RequestId","value":"a495ab78-002c-4fa2-879c-193e421f9a10"},{"key":"X-XSS-Protection","value":"0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"AWLZIGy1vHcEv5Q="},{"key":"Cache-Control","value":"no-store"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 09a1a54fdbf13d19927a903f4a7d5186.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"SEA900-P2"},{"key":"X-Amz-Cf-Id","value":"jKBBVOPfk0QQWLHUEXf79MNyBoYph7MLZLGoRj7xY5c80hxih3gAPA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"documents\": [\n            {\n                \"document\": \"addendum\",\n                \"sign\": \"https://api-qa.snapfinance.com/platform/v1/application/241027000MOK/signed?document=addendum\",\n                \"priority\": 1,\n                \"render\": \"https://api-qa.snapfinance.com/platform/v1/application/241027000MOK/agreement?renderType=html&document=addendum\"\n            },\n            {\n                \"document\": \"agreement\",\n                \"sign\": \"https://api-qa.snapfinance.com/platform/v1/application/241027000MOK/signed?document=agreement\",\n                \"priority\": 2,\n                \"render\": \"https://api-qa.snapfinance.com/platform/v1/application/241027000MOK/agreement?renderType=html&document=agreement\"\n            }\n        ],\n        \"paymentPlanSummary\": {\n            \"lastPaymentAmount\": \"19.48\",\n            \"paymentAmount\": \"19.54\",\n            \"leaseTermInMonths\": \"18\",\n            \"processingFee\": \"10.00\",\n            \"leaseAmount\": \"320.00\",\n            \"leaseCost\": \"442.00\",\n            \"leaseTotalAmount\": \"762.00\",\n            \"paymentFrequency\": \"BI_WEEKLY\",\n            \"currencyCode\": \"USD\",\n            \"stbs\": false,\n            \"summaryAcceptanceRequired\": false,\n            \"hangtagState\": false,\n            \"stbsSalesTaxPercent\": \"0.00\",\n            \"cpoDate\": \"2025-05-05\",\n            \"cpoAmount\": \"330.00\",\n            \"cpoNumberOfPayments\": \"6\",\n            \"cpoPaymentsAmount\": \"47.14\",\n            \"cpoLastPaymentAmount\": \"47.16\",\n            \"cpoLeaseCost\": \"0.00\",\n            \"initialPayment\": \"0.00\",\n            \"totalNumberOfPayments\": \"39\",\n            \"lastPaymentDate\": \"2026-07-31\",\n            \"firstPaymentDate\": \"2025-02-14\",\n            \"propertyCondition\": \"New\",\n            \"finalNumberOfPayments\": \"39\",\n            \"numberOfPaymentsWithSameAmount\": \"38\"\n        },\n        \"cpoDays\": 100\n    },\n    \"success\": true,\n    \"status\": 200\n}"},{"id":"5424a3cc-cc96-40a3-a358-eeb2e1871959","name":"Oklahoma","originalRequest":{"method":"GET","header":[{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"}],"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/paymentPlan"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1298"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Mon, 28 Oct 2024 05:49:08 GMT"},{"key":"X-Amzn-Trace-Id","value":"Root=1-671f25d3-71b827a74d0ce4ea2c443859"},{"key":"x-amzn-RequestId","value":"a495ab78-002c-4fa2-879c-193e421f9a10"},{"key":"X-XSS-Protection","value":"0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"AWLZIGy1vHcEv5Q="},{"key":"Cache-Control","value":"no-store"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 09a1a54fdbf13d19927a903f4a7d5186.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"SEA900-P2"},{"key":"X-Amz-Cf-Id","value":"jKBBVOPfk0QQWLHUEXf79MNyBoYph7MLZLGoRj7xY5c80hxih3gAPA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"documents\": [\n            {\n                \"document\": \"addendum\",\n                \"sign\": \"https://api-qa.snapfinance.com/platform/v1/application/241027000MOK/signed?document=addendum\",\n                \"priority\": 1,\n                \"render\": \"https://api-qa.snapfinance.com/platform/v1/application/241027000MOK/agreement?renderType=html&document=addendum\"\n            },\n            {\n                \"document\": \"agreement\",\n                \"sign\": \"https://api-qa.snapfinance.com/platform/v1/application/241027000MOK/signed?document=agreement\",\n                \"priority\": 2,\n                \"render\": \"https://api-qa.snapfinance.com/platform/v1/application/241027000MOK/agreement?renderType=html&document=agreement\"\n            }\n        ],\n        \"paymentPlanSummary\": {\n            \"lastPaymentAmount\": \"19.48\",\n            \"paymentAmount\": \"19.54\",\n            \"leaseTermInMonths\": \"18\",\n            \"processingFee\": \"10.00\",\n            \"leaseAmount\": \"320.00\",\n            \"leaseCost\": \"442.00\",\n            \"leaseTotalAmount\": \"762.00\",\n            \"paymentFrequency\": \"BI_WEEKLY\",\n            \"currencyCode\": \"USD\",\n            \"stbs\": false,\n            \"summaryAcceptanceRequired\": false,\n            \"hangtagState\": false,\n            \"stbsSalesTaxPercent\": \"0.00\",\n            \"cpoDate\": \"2025-05-05\",\n            \"cpoAmount\": \"330.00\",\n            \"cpoNumberOfPayments\": \"6\",\n            \"cpoPaymentsAmount\": \"47.14\",\n            \"cpoLastPaymentAmount\": \"47.16\",\n            \"cpoLeaseCost\": \"0.00\",\n            \"initialPayment\": \"0.00\",\n            \"totalNumberOfPayments\": \"39\",\n            \"lastPaymentDate\": \"2026-07-31\",\n            \"firstPaymentDate\": \"2025-02-14\",\n            \"propertyCondition\": \"New\",\n            \"finalNumberOfPayments\": \"39\",\n            \"numberOfPaymentsWithSameAmount\": \"38\"\n        },\n        \"cpoDays\": 100\n    },\n    \"success\": true,\n    \"status\": 200\n}"},{"id":"c432d5a2-b83b-4d28-b304-c6f74e113dc9","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Content-Type","value":"application/json"},{"key":"Request-Id","value":"123"}],"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/paymentPlan"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"244"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:24:19 GMT"},{"key":"x-amzn-RequestId","value":"f42aea7e-5211-4753-a26a-e8db4014d312"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P02LeGszvHcFsxg="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d0af-3504dad84d30e4d08259a3b0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"jen45MDpH8DQoOEaPFvDVJdGipmCzTuiyeN1iMqlvOUBQG5Kixtyow=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"cpoDays\": 100,\n        \"documents\": [\n            {\n                \"document\": \"agreement\",\n                \"priority\": 1,\n                \"render\": \"https://api-qa.snapfinance.com/platform/v1/application/2410280079UT/agreement?renderType=html&document=agreement\",\n                \"sign\": \"https://api-qa.snapfinance.com/platform/v1/application/2410280079UT/signed?document=agreement\"\n            }\n        ],\n        \"paymentPlanSummary\": {\n            \"cpoAmount\": \"330.00\",\n            \"cpoDate\": \"2025-05-05\",\n            \"cpoLastPaymentAmount\": \"47.16\",\n            \"cpoLeaseCost\": \"0.00\",\n            \"cpoNumberOfPayments\": \"6\",\n            \"cpoPaymentsAmount\": \"47.14\",\n            \"currencyCode\": \"USD\",\n            \"finalNumberOfPayments\": \"39\",\n            \"firstPaymentDate\": \"2025-02-14\",\n            \"hangtagState\": false,\n            \"initialPayment\": \"0.00\",\n            \"lastPaymentAmount\": \"19.48\",\n            \"lastPaymentDate\": \"2026-07-31\",\n            \"leaseAmount\": \"320.00\",\n            \"leaseCost\": \"442.00\",\n            \"leaseTermInMonths\": \"18\",\n            \"leaseTotalAmount\": \"762.00\",\n            \"numberOfPaymentsWithSameAmount\": \"38\",\n            \"paymentAmount\": \"19.54\",\n            \"paymentFrequency\": \"BI_WEEKLY\",\n            \"processingFee\": \"10.00\",\n            \"propertyCondition\": \"New\",\n            \"stbs\": false,\n            \"stbsSalesTaxPercent\": \"0.00\",\n            \"summaryAcceptanceRequired\": false,\n            \"totalNumberOfPayments\": \"39\"\n        }\n    },\n    \"status\": 200,\n    \"success\": true\n}"},{"id":"6b5d0584-be7b-4d12-a924-3931579fbf60","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Content-Type","value":"application/json"},{"key":"Request-Id","value":"123"}],"url":{"raw":"{{baseUrl}}/platform/v1/application/{{applicationId}}/paymentPlan?frequency=BW","host":["{{baseUrl}}"],"path":["platform","v1","application","{{applicationId}}","paymentPlan"],"query":[{"key":"frequency","value":"BW"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"136"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 15:58:33 GMT"},{"key":"x-amzn-RequestId","value":"e686de7a-4a8b-472a-99bb-c3810ca266ad"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P0yadGxZPHcFgJQ="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11caa9-a9e85c6759f66b046f148f15"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 4c6f3dc807d213a0da966381e4886b08.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"YxjE8a_vRBiTtIchTjpRj97HIPvHhb2UFEne1JzTFnB4twNJS3u6QA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"status\": 404,\n    \"error\": [\n        {\n            \"code\": \"application_invalid\",\n            \"type\": \"invalid_request_error\",\n            \"message\": \"Application not found\"\n        }\n    ]\n}"}],"_postman_id":"618daed6-c94d-4de8-a21c-a79c86199dc3"},{"name":"Payment Estimate","id":"561f46a5-0c77-4c8d-8f67-7d5817bfafeb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"items\": [\n    {\n      \"price\": 1250,\n      \"itemId\": \"ABC\"\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/hangtag/paymentestimate?frequency=W","description":"<h1 id=\"payment-estimate\">Payment Estimate</h1>\n<p>Returns a payment estimate for hangtag items.</p>\n<h2 id=\"query-parameters\">Query parameters</h2>\n<h3 id=\"frequency-string-required\">frequency (string, required)</h3>\n<p>Payment schedule frequency for the estimate. Allowed values:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>BW</td>\n<td>Bi-Weekly</td>\n</tr>\n<tr>\n<td>W</td>\n<td>Weekly</td>\n</tr>\n<tr>\n<td>M</td>\n<td>Monthly</td>\n</tr>\n<tr>\n<td>MW</td>\n<td>Monthly Weekly</td>\n</tr>\n<tr>\n<td>SM</td>\n<td>Semi-Monthly</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"request-body\">Request body</h2>\n<p>Send a JSON body with an <code>items</code> array. Each element includes <code>price</code> and <code>itemId</code> (see example).</p>\n","urlObject":{"path":["platform","v1","hangtag","paymentestimate"],"host":["{{baseUrl}}"],"query":[{"disabled":true,"description":{"content":"<p>Bi-Weekly</p>\n","type":"text/plain"},"key":"frequency","value":"BW"},{"description":{"content":"<p>Weekly</p>\n","type":"text/plain"},"key":"frequency","value":"W"},{"disabled":true,"description":{"content":"<p>Monthly</p>\n","type":"text/plain"},"key":"frequency","value":"M"},{"disabled":true,"description":{"content":"<p>Monthly Weekly</p>\n","type":"text/plain"},"key":"frequency","value":"MW"},{"disabled":true,"description":{"content":"<p>Semi-Monthly</p>\n","type":"text/plain"},"key":"frequency","value":"SM"}],"variable":[]}},"response":[{"id":"f0ac1759-7b25-4e83-95de-5c3d136f8555","name":"OK","originalRequest":{"method":"POST","header":[],"url":{"raw":"{{baseUrl}}/platform/v1/hangtag/paymentestimate?frequency=W","host":["{{baseUrl}}"],"path":["platform","v1","hangtag","paymentestimate"],"query":[{"key":"frequency","value":"BW","description":"Bi-Weekly","disabled":true},{"key":"frequency","value":"W","description":"Weekly"},{"key":"frequency","value":"M","description":"Monthly","disabled":true},{"key":"frequency","value":"MW","description":"Monthly Weekly","disabled":true},{"key":"frequency","value":"SM","description":"Semi-Monthly","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"price\": 1250,\n        \"itemId\": \"ABC\",\n        \"paymentScheduleAmount\": 51.48,\n        \"lastPaymentAmount\": 51.02,\n        \"frequency\": \"W\",\n        \"totalCost\": 2487.5,\n        \"costOfLease\": 1237.5,\n        \"salesTaxAmount\": 199,\n        \"totalPayments\": 2686.5,\n        \"hundredDayPaymentDueDate\": \"2025-04-17\",\n        \"hundredDayPaymentAmount\": 1431\n    },\n    \"status\": 200\n}"},{"id":"8e1b69e8-9061-4b61-a767-e6b1894c3d98","name":"Bad Request","originalRequest":{"method":"POST","header":[],"url":{"raw":"{{baseUrl}}/platform/v1/hangtag/paymentestimate?frequency=W","host":["{{baseUrl}}"],"path":["platform","v1","hangtag","paymentestimate"],"query":[{"key":"frequency","value":"BW","description":"Bi-Weekly","disabled":true},{"key":"frequency","value":"W","description":"Weekly"},{"key":"frequency","value":"M","description":"Monthly","disabled":true},{"key":"frequency","value":"MW","description":"Monthly Weekly","disabled":true},{"key":"frequency","value":"SM","description":"Semi-Monthly","disabled":true}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n  \"success\": false,\n  \"status\": 400,\n  \"error\": [\n    {\n      \"type\": \"validation_error\",\n      \"code\": \"payment_estimate_price_missing\",\n      \"message\": \"Price in product item is missing\"\n    }\n  ]\n}"}],"_postman_id":"561f46a5-0c77-4c8d-8f67-7d5817bfafeb"},{"name":"Customer Communication Preferences","id":"03280f3d-a85c-4bbb-9399-f54405139048","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"app-origin-id","value":"originations","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"customerId\": \"1234567890\",\n  \"communicationChannel\": \"EMAIL\",\n  \"consentType\": \"SDLR_ECONSENT\",\n  \"consentStatus\": true\n}"},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/comm-preferences","description":"<h1 id=\"create-customer-communication-preferences\">Create Customer Communication Preferences</h1>\n<p>This endpoint creates or updates a customer's communication preferences for regulatory and marketing consents.</p>\n<h2 id=\"request-body\">Request Body</h2>\n<ul>\n<li><code>customerId</code> (string, required if applicationId not in header): Unique id of the Customer.</li>\n<li><code>communicationChannel</code> (string, required for most consent types): One of <code>EMAIL</code>, <code>SMS</code>, <code>PUSH_NOTIFICATION</code>, <code>CALL</code>, <code>NOT_APPLICABLE</code>.</li>\n<li><code>consentType</code> (string, required): Consent type, e.g. <code>SDLR_ECONSENT</code>, <code>NO_EMAIL</code>, <code>DO_NOT_SHARE_GLBA</code>, etc.</li>\n<li><code>consentStatus</code> (boolean, required): Consent status, true or false.</li>\n</ul>\n<h2 id=\"example-request\">Example Request</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"customerId\": \"1234567890\",\n  \"communicationChannel\": \"EMAIL\",\n  \"consentType\": \"SDLR_ECONSENT\",\n  \"consentStatus\": true\n}\n</code></pre>\n<h2 id=\"success-response\">Success Response</h2>\n<ul>\n<li><code>200 OK</code></li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"success\": true,\n  \"message\": \"Preferences updated successfully\"\n}\n</code></pre>\n<h2 id=\"error-response\">Error Response</h2>\n<ul>\n<li><code>400 Bad Request</code></li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"errors\": [\n    { \"code\": \"4105\", \"message\": \"customerId is mandatory in case applicationId is not provided in the header\" },\n    { \"code\": \"4106\", \"message\": \"communicationChannel can't be null and value should be any one these : [CALL, EMAIL, PUSH_NOTIFICATION, SMS]\" },\n    { \"code\": \"4107\", \"message\": \"consentType can't be null and value should be any one these : [SDLR_ECONSENT, NO_EMAIL, NO_SMS, NO_CALL, NEGATIVE_OPTIONRULE_ECONSENT]\" },\n    { \"code\": \"4108\", \"message\": \"app-origin-id header shouldn't be null or empty and value should be any one these : [originations]\" },\n    { \"code\": \"4178\", \"message\": \"application-id header is missing\" }\n  ]\n}\n</code></pre>\n","urlObject":{"path":["platform","v1","application","{{applicationId}}","comm-preferences"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"5906a8f4-515a-42fa-86ac-9731ad4cb3db","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{bearerToken}}"},{"key":"app-origin-id","value":"originations"}],"body":{"mode":"raw","raw":"{\n  \"customerId\": \"1234567890\",\n  \"communicationChannel\": \"EMAIL\",\n  \"consentType\": \"SDLR_ECONSENT\",\n  \"consentStatus\": true\n}"},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/comm-preferences"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"success\": true,\n  \"message\": \"Preferences updated successfully\"\n}"},{"id":"d2f63bf4-29c6-463e-9ba5-59620d02c3a5","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{bearerToken}}"},{"key":"app-origin-id","value":"originations"}],"body":{"mode":"raw","raw":"{\n  \"customerId\": \"\",\n  \"communicationChannel\": \"\",\n  \"consentType\": \"\",\n  \"consentStatus\": false\n}"},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/comm-preferences"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"errors\": [\n    { \"code\": \"4105\", \"message\": \"customerId is mandatory in case applicationId is not provided in the header\" },\n    { \"code\": \"4106\", \"message\": \"communicationChannel can't be null and value should be any one these : [CALL, EMAIL, PUSH_NOTIFICATION, SMS]\" },\n    { \"code\": \"4107\", \"message\": \"consentType can't be null and value should be any one these : [SDLR_ECONSENT, NO_EMAIL, NO_SMS, NO_CALL, NEGATIVE_OPTIONRULE_ECONSENT]\" },\n    { \"code\": \"4108\", \"message\": \"app-origin-id header shouldn't be null or empty and value should be any one these : [originations]\" },\n    { \"code\": \"4178\", \"message\": \"application-id header is missing\" }\n  ]\n}"},{"id":"11213e97-7ca5-4c36-90e5-53a17cceb3c6","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{bearerToken}}"},{"key":"app-origin-id","value":"originations"}],"body":{"mode":"raw","raw":"{\n  \"customerId\": \"\",\n  \"communicationChannel\": \"\",\n  \"consentType\": \"\",\n  \"consentStatus\": false\n}"},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/comm-preferences"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"errors\": [\n    { \"code\": \"4105\", \"message\": \"customerId is mandatory in case applicationId is not provided in the header\" },\n    { \"code\": \"4106\", \"message\": \"communicationChannel can't be null and value should be any one these : [CALL, EMAIL, PUSH_NOTIFICATION, SMS]\" },\n    { \"code\": \"4107\", \"message\": \"consentType can't be null and value should be any one these : [SDLR_ECONSENT, NO_EMAIL, NO_SMS, NO_CALL, NEGATIVE_OPTIONRULE_ECONSENT]\" },\n    { \"code\": \"4108\", \"message\": \"app-origin-id header shouldn't be null or empty and value should be any one these : [originations]\" },\n    { \"code\": \"4178\", \"message\": \"application-id header is missing\" }\n  ]\n}"},{"id":"55ece463-905c-4c22-a4da-0c3104a3c6ed","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{bearerToken}}"},{"key":"app-origin-id","value":"originations"}],"body":{"mode":"raw","raw":"{\n  \"customerId\": \"1234567890\",\n  \"communicationChannel\": \"EMAIL\",\n  \"consentType\": \"SDLR_ECONSENT\",\n  \"consentStatus\": true\n}"},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/comm-preferences"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"success\": true,\n  \"message\": \"Preferences updated successfully\"\n}"}],"_postman_id":"03280f3d-a85c-4bbb-9399-f54405139048"},{"name":"Agreement Details","event":[{"listen":"test","script":{"exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});\r","pm.test(\"Success message\", function () {\r","    pm.expect(pm.response.text()).to.include(\"success\");\r","});"],"type":"text/javascript","id":"7fdae342-9a06-4ef2-8e5f-10e66dbb7992"}}],"id":"2c15e7ee-178c-42d8-a262-1d8c0ef38b42","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"<p>(optional - ID generated by the client)</p>\n","type":"text"}],"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/agreement?renderType=html&document=agreement","description":"<h1 id=\"agreement-details\">Agreement Details</h1>\n<p>This endpoint fetches the agreement details which the consumer needs to accept and sign.</p>\n<h2 id=\"path-params\">PATH PARAMS</h2>\n<blockquote>\n<h2 id=\"applicationidstring\"><code>applicationId:string</code></h2>\n<ul>\n<li>Required</li>\n<li>ApplicationId is returned when calling the create application endpoint</li>\n</ul>\n</blockquote>\n<h2 id=\"query-parameters\">QUERY PARAMETERS</h2>\n<blockquote>\n<h2 id=\"rendertype\"><code>renderType</code></h2>\n<ul>\n<li>Optional</li>\n<li>Render type</li>\n</ul>\n</blockquote>\n<blockquote>\n<h2 id=\"document\"><code>document</code></h2>\n<ul>\n<li>Optional</li>\n<li>agreement/addendum</li>\n</ul>\n</blockquote>\n<blockquote>\n<h2 id=\"svgonly\"><code>svgonly</code></h2>\n<ul>\n<li>Optional</li>\n<li>Generate HTML agreement version</li>\n</ul>\n</blockquote>\n<blockquote>\n<h2 id=\"language\"><code>language</code></h2>\n<ul>\n<li>Optional</li>\n<li>Agreement language EN(English) / ES(Spanish)</li>\n</ul>\n</blockquote>\n<blockquote>\n<h2 id=\"summaryacceptance\"><code>summaryAcceptance</code></h2>\n<ul>\n<li>Mandatory, send true value</li>\n<li>Acceptance viewed and acknowledge agreement terms</li>\n</ul>\n</blockquote>\n<h1 id=\"response-object\">Response Object</h1>\n<h2 id=\"datahash\"><code>data:hash</code></h2>\n<blockquote>\n<h4 id=\"agreementinformationhash\"><code>agreementInformation:hash</code></h4>\n<ul>\n<li>Payment plan details</li>\n</ul>\n<h4 id=\"agreementinformationapplicationidstring\"><code>agreementInformation.applicationId:string</code></h4>\n<blockquote>\n<ul>\n<li>Application ID</li>\n</ul>\n</blockquote>\n<h4 id=\"agreementinformationcustomerinformationhash\"><code>agreementInformation.customerInformation:hash</code></h4>\n<blockquote>\n<ul>\n<li>Customer information details</li>\n</ul>\n<h4 id=\"customerinformationdobdatestring\"><code>customerInformation.dobDate:string</code></h4>\n<blockquote>\n<ul>\n<li>Date of birth</li>\n</ul>\n</blockquote>\n<h4 id=\"customerinformationcustomeridstring\"><code>customerInformation.customerId:string</code></h4>\n<blockquote>\n<ul>\n<li>Customer ID</li>\n</ul>\n</blockquote>\n<h4 id=\"customerinformationcustomeridtypestring\"><code>customerInformation.customerIdType:string</code></h4>\n<blockquote>\n<ul>\n<li>Customer ID type</li>\n</ul>\n</blockquote>\n<h4 id=\"customerinformationmobilephonestring\"><code>customerInformation.mobilePhone:string</code></h4>\n<blockquote>\n<ul>\n<li>Mobile phone</li>\n</ul>\n</blockquote>\n<h4 id=\"customerinformationmobilephonecountrystring\"><code>customerInformation.mobilePhoneCountry:string</code></h4>\n<blockquote>\n<ul>\n<li>Mobile phone country</li>\n</ul>\n</blockquote>\n<h4 id=\"customerinformationemailstring\"><code>customerInformation.email:string</code></h4>\n<blockquote>\n<ul>\n<li>Email</li>\n</ul>\n</blockquote>\n<h4 id=\"customerinformationfirstnamestring\"><code>customerInformation.firstName:string</code></h4>\n<blockquote>\n<ul>\n<li>First name</li>\n</ul>\n</blockquote>\n<h4 id=\"customerinformationlastnamestring\"><code>customerInformation.lastName:string</code></h4>\n<blockquote>\n<ul>\n<li>Last name</li>\n</ul>\n</blockquote>\n<h4 id=\"customerinformationbillingaddresshash\"><code>customerInformation.billingAddress:hash</code></h4>\n<blockquote>\n<ul>\n<li>Snap address</li>\n</ul>\n<h4 id=\"billingaddressstreetaddressstring\"><code>billingAddress.streetAddress:string</code></h4>\n<blockquote>\n<ul>\n<li>Street address</li>\n</ul>\n</blockquote>\n<h4 id=\"billingaddresscitystring\"><code>billingAddress.city:string</code></h4>\n<blockquote>\n<ul>\n<li>City</li>\n</ul>\n</blockquote>\n<h4 id=\"billingaddressstatestring\"><code>billingAddress.state:string</code></h4>\n<blockquote>\n<ul>\n<li>State</li>\n</ul>\n</blockquote>\n<h4 id=\"billingaddresscountrystring\"><code>billingAddress.country:string</code></h4>\n<blockquote>\n<ul>\n<li>Country</li>\n</ul>\n</blockquote>\n<h4 id=\"billingaddresspostalcodestring\"><code>billingAddress.postalCode:string</code></h4>\n<blockquote>\n<ul>\n<li>Postal code</li>\n</ul>\n</blockquote>\n</blockquote>\n</blockquote>\n<h4 id=\"agreementinformationsnapfinanceinformationhash\"><code>agreementInformation.snapFinanceInformation:hash</code></h4>\n<blockquote>\n<ul>\n<li>Snap information details</li>\n</ul>\n<h4 id=\"agreementinformationsnapfinanceinformationbusinessnamestring\"><code>agreementInformation.snapFinanceInformation.businessName:string</code></h4>\n<blockquote>\n<ul>\n<li>Business name</li>\n</ul>\n</blockquote>\n<h4 id=\"snapfinanceinformationemailstring\"><code>snapFinanceInformation.email:string</code></h4>\n<blockquote>\n<ul>\n<li>Email</li>\n</ul>\n</blockquote>\n<h4 id=\"snapfinanceinformationphonenumberstring\"><code>snapFinanceInformation.phoneNumber:string</code></h4>\n<blockquote>\n<ul>\n<li>Phone number</li>\n</ul>\n</blockquote>\n<h4 id=\"snapfinanceinformationphonenumbercodestring\"><code>snapFinanceInformation.phoneNumberCode:string</code></h4>\n<blockquote>\n<ul>\n<li>Phone number code</li>\n</ul>\n</blockquote>\n<h4 id=\"snapfinanceinformationsnapaddresshash\"><code>snapFinanceInformation.snapAddress:hash</code></h4>\n<blockquote>\n<ul>\n<li>Snap address</li>\n</ul>\n<h4 id=\"snapaddressstreetaddressstring\"><code>snapAddress.streetAddress:string</code></h4>\n<blockquote>\n<ul>\n<li>Street address</li>\n</ul>\n</blockquote>\n<h4 id=\"snapaddresscitystring\"><code>snapAddress.city:string</code></h4>\n<blockquote>\n<ul>\n<li>City</li>\n</ul>\n</blockquote>\n<h4 id=\"snapaddressstatestring\"><code>snapAddress.state:string</code></h4>\n<blockquote>\n<ul>\n<li>State</li>\n</ul>\n</blockquote>\n<h4 id=\"snapaddresscountrystring\"><code>snapAddress.country:string</code></h4>\n<blockquote>\n<ul>\n<li>Country</li>\n</ul>\n</blockquote>\n<h4 id=\"snapaddresspostalcodestring\"><code>snapAddress.postalCode:string</code></h4>\n<blockquote>\n<ul>\n<li>Postal code</li>\n</ul>\n</blockquote>\n</blockquote>\n</blockquote>\n<h4 id=\"agreementinformationagreementdetailsstring\"><code>agreementInformation.agreementDetails:string</code></h4>\n<blockquote>\n<ul>\n<li>Agreement information using HTML format</li>\n</ul>\n</blockquote>\n</blockquote>\n","urlObject":{"path":["platform","v1","application","{{applicationId}}","agreement"],"host":["{{baseUrl}}"],"query":[{"key":"renderType","value":"html"},{"key":"document","value":"agreement"}],"variable":[]}},"response":[{"id":"d0036791-1d78-43fc-a9e4-935d2e6d1287","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer pORU5GTWtNeE1UQkJPVE5DUl....JiWYvnmRQSSCozUr6Xt7RXRK","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Content-Type","value":"application/json"},{"key":"Request-Id","value":"123"}],"url":{"raw":"https://api-sandbox.snapfinance.com/platform/v1/application/{{applicationId}}/agreement?renderType=html&document=agreement","protocol":"https","host":["api-sandbox","snapfinance","com"],"path":["platform","v1","application","{{applicationId}}","agreement"],"query":[{"key":"renderType","value":"html"},{"key":"document","value":"agreement"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"136"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 16 Jul 2020 17:02:21 GMT"},{"key":"x-amzn-RequestId","value":"7bdbe015-ee4e-47a5-a8c5-70f56a2cde04"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"Pxo0aFo-PHcFy6A="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f10881c-f4d45cc21e4bc05a15184b31"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 0a72bb7be10458e1aefa37a097f21894.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"Zcwg0uNr6gJ8ilLNW9-r5krSpR6T7Z-LLnNpLYvub6tAYp-Dx30msw=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"status\": 404,\n    \"error\": [\n        {\n            \"code\": \"application_invalid\",\n            \"type\": \"invalid_request_error\",\n            \"message\": \"Application not found\"\n        }\n    ]\n}"},{"id":"99680618-056e-4e68-afcf-73356bdb9883","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Content-Type","value":"application/json"},{"key":"Request-Id","value":"123"}],"url":{"raw":"{{baseUrl}}/platform/v1/application/{{applicationId}}/agreement?renderType=html&document=agreement","host":["{{baseUrl}}"],"path":["platform","v1","application","{{applicationId}}","agreement"],"query":[{"key":"renderType","value":"html"},{"key":"document","value":"agreement"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1825083"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:24:43 GMT"},{"key":"x-amzn-RequestId","value":"40b52282-2a30-4df6-8cdf-82aa447ca6b3"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P02OxEfnPHcF9yw="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d0c4-8b923ff4b1bf11f48fb3b3b8"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"OcTSGzIIqa3esIfeYqbdx2iywfRfpBgLnbSAPl3aJcuDg_Vl84kX2A=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"agreementInformation\": {\n            \"applicationId\": \"{{applicationId}}\",\n            \"customerInformation\": {\n                \"dobDate\": \"1977-07-07\",\n                \"customerId\": \"000007777\",\n                \"customerIdType\": \"SSN4\",\n                \"mobilePhone\": \"1000000019\",\n                \"mobilePhoneCountry\": \"US\",\n                \"email\": \"test@test.com\",\n                \"firstName\": \"John\",\n                \"lastName\": \"Smith\",\n                \"billingAddress\": {\n                    \"streetAddress\": \"123mainst\",\n                    \"city\": \"Saltlakecity\",\n                    \"state\": \"UT\",\n                    \"country\": \"US\",\n                    \"postalCode\": \"84001\"\n                }\n            },\n            \"snapFinanceInformation\": {\n                \"businessName\": \"Snap RTO LLC\",\n                \"snapAddress\": {\n                    \"streetAddress\": \"Any street in town\",\n                    \"city\": \"Salt Lake City\",\n                    \"state\": \"UT\",\n                    \"country\": \"US\",\n                    \"postalCode\": \"84126\"\n                },\n                \"email\": \"test@test.com\",\n                \"phoneNumber\": \"1000000007\",\n                \"phoneNumberCode\": \"US\"\n            },\n            \"agreementDetails\": \"<!DOCTYPE html>\\n<html>\\n\\t<head>\\n\\t\\t<meta charset=\\\"utf-8\\\">\\n\\t\\t<style type=\\\"text/css\\\">\\n\\t\\t\\tbody {background-color:lightgray; text-align:center;}\\n\\t\\t\\t.qoppa_pageborder {fill:white;}\\n\\t\\t\\t#qoppa_document {padding:5px; margin:auto;}\\n\\t\\t</style>\\n\\t</head>\\n\\t<body>\\n<?xml version='1.0' encoding='UTF-8'?><svg id=\\\"qoppa_document\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" version=\\\"1.1\\\" xmlns=\\\"http://www.w3.org/2000/svg\\\" xmlns:xlink=\\\"http://www.w3.org/1999/xlink\\\"><!-- jPDFWeb v2019R1.03 - Demo Version --><style>title p { display: block; }</style><g id=\\\"qoppa_viewxform\\\" transform=\\\"matrix(1 0 0 1 0 0)\\\"><style type=\\\"text/css\\\">@font-face {font-family:f0-0;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f0-1;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f0-2;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}</style><svg id=\\\"qoppa_page_p0\\\" class=\\\"qoppa_page\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\"><rect class=\\\"qoppa_pageborder\\\" x=\\\"0.5pt\\\" y=\\\"0.5pt\\\" width=\\\"611pt\\\" height=\\\"791pt\\\" fill=\\\"none\\\" /><svg class=\\\"qoppa_pagecontents\\\" x=\\\"0pt\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" viewBox=\\\"0 0 612 792\\\" ><g class=\\\"qoppa_contentstream\\\" transform=\\\"matrix(1 0 0 -1 0 792)\\\" fill=\\\"black\\\" stroke=\\\"black\\\" stroke-width=\\\"1\\\" stroke-linecap=\\\"butt\\\" stroke-linejoin=\\\"miter\\\" stroke-miterlimit=\\\"10\\\"><clipPath id=\\\"clip0-1\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><g clip-path=\\\"url(#clip0-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:8.25pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 213.8098 759.5594)\\\" x=\\\"0 7.942 15.279 23.221 29.942 37.279 43.395 47.058 54.395 62.337 70.279 78.221 86.163 93.5 100.837 108.174 111.1 118.437 126.995 134.937 142.274 149.611 158.774 166.111 174.053\\\">RENTAL-PURCHASE AGREEMENT</text></g><clipPath id=\\\"clip0-2\\\"><path d=\\\"M 35 701 L 285 701 L 285 758 L 35 758 L 35 701 z \\\"/></clipPath><g clip-path=\\\"url(#clip0-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 745.5311)\\\" x=\\\"0 5.56 11.12 16.68 21.68 27.24 29.9 37.12 42.68 51.01 56.57 62.13 67.69 72.69 75.35 78.68 84.24 89.8 94.8 99.8 105.36 108.69 112.02 114.8 117.46 124.13 131.35 138.02 144.69 147.35 154.57 160.68 168.46 171.12 176.68 182.24\\\">Lease Company (Lessor): SNAP RTO LLC</text></g><g clip-path=\\\"url(#clip0-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 732.2127)\\\" x=\\\"0 6.67 9.45 17.23 20.01 22.67 29.34 34.9 39.9 42.56 48.12 53.68 59.24 64.8\\\">P.O. Box 26561</text></g><g clip-path=\\\"url(#clip0-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 718.8943)\\\" x=\\\"0 6.67 12.23 14.51 17.29 19.95 25.51 31.07 36.07 41.63 44.29 51.51 53.79 56.57 61.57 64.35 67.01 74.23 80.34 83 88.56 94.12 99.68 105.24\\\">Salt Lake City, UT 84126</text></g><g clip-path=\\\"url(#clip0-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 705.576)\\\" x=\\\"0 6.67 12.23 17.79 23.35 28.91 31.69 34.35 37.68 43.24 48.8 54.36 57.69 60.35 65.91 71.47 77.03 80.36 85.92 91.48 97.04\\\">Phone: (877) 557-3769</text></g><clipPath id=\\\"clip0-3\\\"><path d=\\\"M 284 701 L 574 701 L 574 758 L 284 758 L 284 701 z \\\"/></clipPath><g clip-path=\\\"url(#clip0-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.225 745.5311)\\\" x=\\\"0 5.56 11.12 16.12 21.12 26.68 32.24 35.02 37.68 42.68 48.24 53.8 59.36 62.02 64.68 71.35 79.68 81.96 84.74\\\">Lessee: John  Smith</text></g><g clip-path=\\\"url(#clip0-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 290.225 732.2127)\\\" x=\\\"0 5.56 11.12 16.68 25.01 30.57 32.85 38.41 43.41\\\">123mainst</text></g><g clip-path=\\\"url(#clip0-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.225 718.8943)\\\" x=\\\"0 6.67 12.23 14.51 17.29 19.57 25.13 30.13 35.69 40.69 42.97 45.75 50.75 53.53 56.19 63.41 69.52 72.18 77.74 83.3 88.86 94.42\\\">Saltlakecity, UT 84001</text></g><g clip-path=\\\"url(#clip0-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 290.225 705.576)\\\" x=\\\"0 2.28 7.84 13.4 15.68 21.24 26.8 32.36 37.36 47.51 53.07 58.07 66.4 71.96 74.74 79.74 85.3\\\">jbolanos@acme.com</text></g><clipPath id=\\\"clip0-4\\\"><path d=\\\"M 35 674 L 285 674 L 285 702 L 35 702 L 35 674 z \\\"/></clipPath><g clip-path=\\\"url(#clip0-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 689.7576)\\\" x=\\\"0 6.67 12.23 17.79 20.07 22.35 27.35 32.91 35.69 37.97 43.53 49.09 51.75 54.53 61.75 64.53 67.19 72.75 78.31 83.87 89.43 94.99 100.55 106.11 111.67 117.23 126.67 133.89\\\">Application ID: 200717000WUT</text></g><clipPath id=\\\"clip0-5\\\"><path d=\\\"M 284 674 L 428 674 L 428 702 L 284 702 L 284 674 z \\\"/></clipPath><g clip-path=\\\"url(#clip0-5)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.225 689.7576)\\\" x=\\\"0 5.56 11.12 16.68 21.68 27.24 29.9 37.12 42.68 45.46 51.02 53.8 56.46 62.02 67.58 70.36 75.92 81.48 84.26 89.82 95.38 100.94\\\">Lease Date: 07/17/2020</text></g><g clip-path=\\\"url(#clip0-5)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.225 678.4393)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 27.68 34.35\\\">10:22 AM</text></g><clipPath id=\\\"clip0-6\\\"><path d=\\\"M 427 674 L 574 674 L 574 702 L 427 702 L 427 674 z \\\"/></clipPath><g clip-path=\\\"url(#clip0-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 433.375 689.7576)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79 40.45 47.67 53.23 58.79 64.35 66.63 69.41 71.69 77.25 82.81 85.59 88.25 95.47 101.03\\\">Property Condition: New</text></g><clipPath id=\\\"clip0-7\\\"><path d=\\\"M 35 631 L 574 631 L 574 675 L 35 675 L 35 631 z \\\"/></clipPath><g clip-path=\\\"url(#clip0-7)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 662.6209)\\\" x=\\\"0 7.22 12.78 17.78 22.78 26.11 28.39 33.95 36.73 39.01 44.57 50.13 52.79 58.35 61.13 63.79 69.35 74.91 80.47 86.03 91.03 93.69 99.25 104.81 107.09 112.65 118.21 120.87 126.43 131.99 135.32 140.32 145.88 151.44 156.44 162 167.56 170.22 173 176.33 181.89 190.22 192.88 195.66 201.22 206.78 209.44 216.66 222.22 225 230.56 232.84 235.12 240.68 244.01 246.67 250 252.78 258.34 263.9 266.56 269.89 276.56 279.89 285.45 291.01 296.57 299.9 302.68 307.68 311.01 314.34 317 319.78 325.34 328.67 331.45 337.01 342.57 345.9 348.56 354.12 359.12 364.68 366.96 372.52 374.8 380.36 385.92 391.48 394.14 396.42 401.98 404.64 411.31 416.31 421.87 424.15 429.71 431.99 434.77 437.43 444.1\\\">Description of goods being purchased from th* D E M O *(the “Property”) further explained in Exhibit A:</text></g><g clip-path=\\\"url(#clip0-7)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 649.3025)\\\" x=\\\"0 6.67 12.23 15.56 20.56 22.84 27.84 33.4 38.4 41.06 46.62 52.18 57.74 60.4 66.51 72.07 77.63 82.63 85.41 88.07 96.4 101.96 104.74 107.52 110.85 116.41 121.41\\\">Services and Fees, Mattress</text></g><clipPath id=\\\"clip0-8\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.025 757.4998 L 285.075 757.4998 L 285.075 756.9998 L 35.025 756.9998 L 35.025 757.4998 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.025 756.9998 L 35.525 756.9998 L 35.525 701.7264 L 35.025 701.7264 L 35.025 756.9998 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 285.075 757.4998 L 573.375 757.4998 L 573.375 756.9998 L 285.075 756.9998 L 285.075 757.4998 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.875 756.9998 L 573.375 756.9998 L 573.375 701.7264 L 572.875 701.7264 L 572.875 756.9998 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 284.575 756.9998 L 285.075 756.9998 L 285.075 701.7264 L 284.575 701.7264 L 284.575 756.9998 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.025 701.7264 L 285.075 701.7264 L 285.075 701.2264 L 35.025 701.2264 L 35.025 701.7264 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.025 701.2264 L 35.525 701.2264 L 35.525 674.5897 L 35.025 674.5897 L 35.025 701.2264 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 285.075 701.7264 L 428.225 701.7264 L 428.225 701.2264 L 285.075 701.2264 L 285.075 701.7264 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 284.575 701.2264 L 285.075 701.2264 L 285.075 674.5897 L 284.575 674.5897 L 284.575 701.2264 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 428.225 701.7264 L 573.375 701.7264 L 573.375 701.2264 L 428.225 701.2264 L 428.225 701.7264 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.875 701.2264 L 573.375 701.2264 L 573.375 674.5897 L 572.875 674.5897 L 572.875 701.2264 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 427.725 701.2264 L 428.225 701.2264 L 428.225 674.5897 L 427.725 674.5897 L 427.725 701.2264 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.025 674.5897 L 573.375 674.5897 L 573.375 674.0897 L 35.025 674.0897 L 35.025 674.5897 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.025 632.1346 L 573.375 632.1346 L 573.375 631.6346 L 35.025 631.6346 L 35.025 632.1346 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.875 674.0897 L 573.375 674.0897 L 573.375 632.1346 L 572.875 632.1346 L 572.875 674.0897 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.025 674.0897 L 35.525 674.0897 L 35.525 632.1346 L 35.025 632.1346 L 35.025 674.0897 z \\\"/><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 620.1658)\\\" x=\\\"0 6.11 13.89 21.11 29.44 36.11 42.22 45 52.78\\\">FORMATION</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 93.0951 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 97.0295 620.1658)\\\" x=\\\"0 7.78\\\">OF</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 110.9162 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 114.8506 620.1658)\\\" x=\\\"0 6.67 14.45 21.67 28.34 35.01 43.34 50.01 57.23 63.34\\\">AGREEMENT.</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 180.9688 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 184.9032 620.1658)\\\" x=\\\"0 6.67\\\">By</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 196.5731 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 200.5075 620.1658)\\\" x=\\\"0 5 7.28 12.84 18.4 20.68 26.24\\\">signing</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 232.3141 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 236.2485 620.1658)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 251.8686 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 255.803 620.1658)\\\" x=\\\"0 7.22 12.78 18.34 21.12 26.68 28.96 32.29 38.96 44.52 47.85 52.85 58.41 63.97 68.97\\\">Rental-Purchase</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 330.344 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 334.2784 620.1658)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement,</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 385.9727 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 389.9071 620.1658)\\\" x=\\\"0 5.56 7.84 12.84\\\">also</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 408.3105 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 412.2448 620.1658)\\\" x=\\\"0 5 10.56 16.12 23.34\\\">known</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 441.1511 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 445.0855 620.1658)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 455.647 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 459.5814 620.1658)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 465.1429 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 469.0773 620.1658)\\\" x=\\\"0 5.56 11.12 16.68 21.68\\\">Lease</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 496.3234 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 500.2578 620.1658)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.1738 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.1082 620.1658)\\\" x=\\\"0 7.22 9.5 12.28\\\">with</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 608.8475)\\\" x=\\\"0 7.78 13.34 16.12 18.4 23.96\\\">Option</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 62.6215 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 66.5575 608.8475)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 74.8974 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 78.8334 608.8475)\\\" x=\\\"0 6.67 12.23 15.56 20.56 26.12 31.68 36.68\\\">Purchase</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 121.0795 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 125.0155 608.8475)\\\" x=\\\"0 3.33 6.11 11.67 13.95\\\">(this</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 143.9657 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 147.9017 608.8475)\\\" x=\\\"0 3.33 10 15.56 18.89 24.45 30.01 38.34 43.9 49.46 52.24 55.57 58.9\\\">“Agreement”),</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.5863 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 213.5223 608.8475)\\\" x=\\\"0 5 10.56 16.12\\\">you,</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 232.4237 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 236.3597 608.8475)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 250.2611 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 254.1971 608.8475)\\\" x=\\\"0 7.22 12.78 17.78 20.56 26.12 34.45 40.01 43.34 46.67 51.67\\\">Customer(s)</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 309.202 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 313.138 608.8475)\\\" x=\\\"0 3.33 6.66 11.66 17.22 22.78\\\">(“you”</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 339.2513 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 343.1873 608.8475)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.8719 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 363.8079 608.8475)\\\" x=\\\"0 3.33 8.33 13.89 19.45 22.78 26.11\\\">“your”)</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.2513 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 397.1873 608.8475)\\\" x=\\\"0 5 10.56 16.12 21.68 26.68\\\">choose</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 429.4334 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 433.3695 608.8475)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 441.7093 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 445.6453 608.8475)\\\" x=\\\"0 2.28 7.84 13.4 18.4\\\">lease</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 469.6102 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 473.5462 608.8475)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 487.4476 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 491.3836 608.8475)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.1766 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 533.1126 608.8475)\\\" x=\\\"0 2.78 6.11 11.67\\\">from</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.1126 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0486 608.8475)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 597.5291)\\\" x=\\\"0 5.56 11.12 16.68 21.68\\\">Lease</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.3461 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 63.7235 597.5291)\\\" x=\\\"0 7.22 12.78 21.11 26.67 32.23 37.79\\\">Company</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 106.5213 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 109.8987 597.5291)\\\" x=\\\"0 3.33 6.66 13.88 19.44 22.22\\\">(“we,”</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 135.4505 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 138.8278 597.5291)\\\" x=\\\"0 3.33 8.89 13.89 16.67\\\">“us,”</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 158.8278 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 162.2052 597.5291)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 178.8898 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 182.2672 597.5291)\\\" x=\\\"0 3.33 8.89 14.45 17.78 21.11\\\">“our”)</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 206.7105 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.0879 597.5291)\\\" x=\\\"0 5.56 10.56 15.56 21.12 24.45 30.01 32.29 37.85\\\">according</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 253.5059 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 256.8832 597.5291)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 265.2231 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 268.6005 597.5291)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 282.5018 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 285.8792 597.5291)\\\" x=\\\"0 2.78 8.34 11.67 20\\\">terms</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 310.8792 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 314.2566 597.5291)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 322.5964 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 325.9738 597.5291)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 341.5939 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 344.9713 597.5291)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement.</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 396.6656 597.5291)\\\" x=\\\"0 3.3774\\\">  </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 403.4204 597.5291)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 420.6518 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 424.0292 597.5291)\\\" x=\\\"0 2.78 8.34 11.67\\\">term</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 444.0292 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 447.4066 597.5291)\\\" x=\\\"0 3.33 10.55 16.11 18.89 24.45 26.73 29.01 34.57 37.9\\\">“Retailer”</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 488.6419 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 492.0193 597.5291)\\\" x=\\\"0 8.33 13.89 19.45 25.01 30.01 36.68 42.24 47.8 52.8 57.8 61.13 67.8 73.36\\\">meansEbaycrYou</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 586.2107)\\\" x=\\\"0 5.56 11.12 16.12 21.68 24.34 27.12 32.68 38.24 40.9 44.23 46.51 52.07 57.63 60.41 63.19 65.85 71.41 76.97 79.75 82.41 87.97 93.53 96.31 98.97 101.75 107.31 112.87 115.53 121.09 126.65 128.93 131.21 136.77 142.33 145.11 147.39 152.95 158.51 161.29 163.95 166.73 172.29 174.95 180.51 185.51 191.07 196.63 198.91 202.24 207.8 210.46 216.02 223.24 228.8 234.36 237.69 242.69 248.25 250.53 256.09 258.75 264.31 267.09 269.75 272.53 278.09 283.65 286.31 292.98 296.31 301.87 307.43 312.99 316.32 319.1 324.1 326.76 332.32 337.32 339.98 345.54 351.1 356.1 361.1 364.43 366.71 372.27 377.83 383.39 386.05 391.61 397.17 400.5 406.06 408.34 413.9\\\">have the right, but not the obligation, to acquire ownership of the Property as described herein.</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 572.8924)\\\" x=\\\"0 6.67 13.89 21.67 28.89 31.67 38.34 41.12 47.23 50.01 57.79\\\">ACQUISITION</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 98.1049 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 101.7037 572.8924)\\\" x=\\\"0 7.78\\\">OF</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 115.5905 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 119.1893 572.8924)\\\" x=\\\"0 6.67 13.89 21.67 28.34 35.01 42.23 48.34\\\">PROPERTY</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 174.1991 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 177.798 572.8924)\\\" x=\\\"0 6.67\\\">AS</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 191.1378 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 194.7367 572.8924)\\\" x=\\\"0 6.67 14.45 21.12 28.34 34.45\\\">AGENT;</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.9632 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 235.5621 572.8924)\\\" x=\\\"0 7.22 13.89\\\">NEW</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 258.8922 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 262.4911 572.8924)\\\" x=\\\"0 7.22 15 22.22 29.44 32.22 38.33 41.11 48.89 56.11\\\">CONDITION;</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 321.3778 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 324.9766 572.8924)\\\" x=\\\"0 7.22 13.89 20.56 27.78 35 37.78 44.45 50.56 53.34 61.12 68.34\\\">DESCRIPTION.</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 396.0948 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 399.6937 572.8924)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 417.4866 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 421.0855 572.8924)\\\" x=\\\"0 5.56 8.89\\\">are</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 435.5386 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 439.1375 572.8924)\\\" x=\\\"0 5.56 11.12 13.9 19.46 21.74 27.3 29.58 35.14\\\">obtaining</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 479.8455 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 483.4444 572.8924)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 497.3458 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 500.9446 572.8924)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 538.7376 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 542.3365 572.8924)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.898 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 556.4968 572.8924)\\\" x=\\\"0 5.56 11.12\\\">our</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 561.574)\\\" x=\\\"0 5.56 11.12 16.68 22.24 25.02\\\">agent.</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.9027 561.574)\\\" x=\\\"0 4.0087\\\">  </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 68.9202 561.574)\\\" x=\\\"0 9.44\\\">We</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 83.9202 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 87.9288 561.574)\\\" x=\\\"0 5.56 12.78\\\">own</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 106.2736 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 110.2823 561.574)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 124.1837 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 128.1924 561.574)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 165.9853 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 169.994 561.574)\\\" x=\\\"0 5.56 11.12 13.4 18.96 23.96\\\">unless</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 198.9589 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 202.9676 561.574)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 219.6522 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 223.6609 561.574)\\\" x=\\\"0 5.56 11.12 13.9 16.18\\\">until</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 242.1228 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 246.1315 561.574)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.2545 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 266.2632 561.574)\\\" x=\\\"0 8.33 13.89 18.89\\\">make</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.7163 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 294.7251 561.574)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.6264 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 312.6351 561.574)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57 38.35\\\">payments</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.9896 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 359.9983 561.574)\\\" x=\\\"0 5.56 11.12 16.12 21.68 26.68 31.68 37.24 40.57\\\">necessary</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 405.5745 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 409.5832 561.574)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 417.923 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 421.9318 561.574)\\\" x=\\\"0 5.56 10.56 16.12 21.68 23.96 27.29\\\">acquire</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.7882 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 458.7969 561.574)\\\" x=\\\"0 5.56 12.78 18.34 23.9 27.23 32.23 37.79 40.07 45.63\\\">ownership.</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 507.2149 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 511.2236 561.574)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.0165 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 533.0253 561.574)\\\" x=\\\"0 5.56 11.12 14.45 20.01\\\">agree</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 558.6014 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 562.6101 561.574)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 550.2557)\\\" x=\\\"0 5.56 11.12 13.9 19.46 21.74 27.3 29.96 32.74 36.07 41.63 49.96 52.62 55.4 60.96 66.52 69.18 76.4 81.96 84.74 90.3 92.58 94.86 100.42 103.75 106.41 111.97 117.53 119.81 124.81 127.47 133.03 138.59 145.81 148.47 154.03 159.59 165.15 170.71 175.71 178.37 181.15 186.71 190.04 192.7 198.26 203.82 207.15 212.15 217.71 223.27 228.83 231.11 233.89 236.55 239.33 244.89 253.22 255.5 257.78 262.78 265.44 271 274.33 276.99 282.55 288.11 293.67 298.67 304.23 309.79 315.35 317.63 323.19 325.85 331.41 336.97 340.3 345.86 351.42 356.42 361.98 366.98\\\">obtain from the Retailer only new goods for personal, family or household purposes.</text></g><clipPath id=\\\"clip0-9\\\"><path d=\\\"M 35 529 L 574 529 L 574 547 L 35 547 L 35 529 z \\\"/></clipPath><path clip-path=\\\"url(#clip0-9)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 35.3 546.1561 L 573.1 546.1561 L 573.1 529.8377 L 35.3 529.8377 L 35.3 546.1561 z \\\"/><path clip-path=\\\"url(#clip0-9)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 40.7 543.1561 L 555.4 543.1561 L 555.4 531.8377 L 40.7 531.8377 L 40.7 543.1561 z \\\"/><path clip-path=\\\"url(#clip0-9)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 96.7096 543.1561 L 499.7096 543.1561 L 499.7096 531.1561 L 96.7096 531.1561 L 96.7096 543.1561 z \\\"/><g clip-path=\\\"url(#clip0-9)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 96.7096 533.9373)\\\" x=\\\"0 2.78 11.11 17.78 25.56 32.78 38.89 45.56 52.78 58.89 61.55 68.77 75.44 82.66 88.77 95.44 101 104.33 111 118.22 125.44 132.66 139.88 146.55 153.22 159.89 162.55 169.77 172.55 179.22 186.44 192 199.78 206.45 213.67 220.89 227.56 234.23 236.89 239.82 242.48 245.26 252.48 259.7 265.26 272.48 279.7 282.48 289.7 297.48 300.14 307.36 315.14 321.81 327.92 330.58 337.25 344.47 351.69 354.35 361.02 367.69 374.36 382.69 389.36 396.58\\\">IMPORTANT RENTAL-PURCHASE DISCLOSURES – INCLUDING COST AND PAYMENT</text></g><clipPath id=\\\"clip0-10\\\"><path d=\\\"M 35 81 L 574 81 L 574 530 L 35 530 L 35 81 z \\\"/></clipPath><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 517.619)\\\" x=\\\"0 6.11 13.33 16.11\\\">THIS</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 63.4783 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 68.7771 517.619)\\\" x=\\\"0 6.11 13.33 20 27.22 33.89 40.56 47.78 53.89 56.67 64.45\\\">TRANSACTION</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 140.447 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 145.7457 517.619)\\\" x=\\\"0 2.78\\\">IS</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 155.194 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 160.4927 517.619)\\\" x=\\\"0\\\">A</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 167.1627 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 172.4614 517.619)\\\" x=\\\"0 5.56 12.23 18.9 25.57\\\">LEASE</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 204.7026 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.0014 517.619)\\\" x=\\\"0 6.67 14.45 21.67 28.34 35.01 43.34 50.01 57.23\\\">AGREEMENT</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 273.3412 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 278.64 517.619)\\\" x=\\\"0 9.44 12.22 18.33\\\">WITH</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 304.1868 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 309.4856 517.619)\\\" x=\\\"0 7.78 14.45 20.56 23.34 31.12\\\">OPTION</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 347.8206 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 353.1193 517.619)\\\" x=\\\"0 6.11\\\">TO</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 367.006 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 372.3048 517.619)\\\" x=\\\"0 6.67 13.89 21.11 28.33 35.55 42.22 48.89 55.56\\\">PURCHASE.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.6495 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 435.9483 517.619)\\\" x=\\\"0 6.67 14.45\\\">YOU</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 457.6182 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 462.9169 517.619)\\\" x=\\\"0 9.44 12.22 17.78\\\">WILL</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.2568 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 491.5555 517.619)\\\" x=\\\"0 7.22 15\\\">NOT</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.6639 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 517.9627 517.619)\\\" x=\\\"0 7.78 17.22\\\">OWN</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 542.4012 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 547.6999 517.619)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 506.3006)\\\" x=\\\"0 6.67 13.89 21.67 28.34 35.01 42.23 48.34\\\">PROPERTY</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 95.7098 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 100.6852 506.3006)\\\" x=\\\"0 7.22 14.44 20.55 23.33\\\">UNTIL</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 129.5768 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 134.5522 506.3006)\\\" x=\\\"0 6.67 14.45\\\">YOU</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 156.2221 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 161.1975 506.3006)\\\" x=\\\"0 7.22 13.89 20.56\\\">HAVE</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 188.429 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 193.4044 506.3006)\\\" x=\\\"0 6.67 13.34 16.12\\\">PAID</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 216.7442 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 221.7197 506.3006)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 241.7197 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 246.6951 506.3006)\\\" x=\\\"0 6.11 13.89 20 26.67\\\">TOTAL</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 278.9216 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 283.8971 506.3006)\\\" x=\\\"0 6.67 13.34 20.01 28.34 35.01 42.23 48.34\\\">PAYMENTS</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.9068 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 343.8822 506.3006)\\\" x=\\\"0 7.22 13.89 21.11 27.78 34.45 41.12 47.79 55.01\\\">NECESSARY</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 405.5668 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 410.5422 506.3006)\\\" x=\\\"0 6.11\\\">TO</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 424.4289 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 429.4044 506.3006)\\\" x=\\\"0 6.67 13.89 21.67 28.89 31.67 38.89\\\">ACQUIRE</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.9659 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 479.9413 506.3006)\\\" x=\\\"0 7.78 17.22 24.44 31.11 38.33 45 52.22 55\\\">OWNERSHIP</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 541.6112 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 546.5866 506.3006)\\\" x=\\\"0 6.67 13.89\\\">AND</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 494.9822)\\\" x=\\\"0 7.22 15 23.33 30 35.56\\\">COMPLY</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 82.9314 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 86.988 494.9822)\\\" x=\\\"0 9.44 12.22 18.33\\\">WITH</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 112.5348 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 116.5913 494.9822)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.5913 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 140.6478 494.9822)\\\" x=\\\"0 7.78 17.22 24.44 31.11 38.33 45 52.22 55\\\">OWNERSHIP</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 202.3178 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 206.3743 494.9822)\\\" x=\\\"0 6.11 12.78 20 28.33 35\\\">TERMS.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 244.1526 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 248.2091 494.9822)\\\" x=\\\"0 6.67 14.45\\\">YOU</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 269.879 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 273.9355 494.9822)\\\" x=\\\"0 6.67 13.89\\\">ARE</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 294.497 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 298.5535 494.9822)\\\" x=\\\"0 7.22 15\\\">NOT</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.6619 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 323.7184 494.9822)\\\" x=\\\"0 7.78 14.45 20.01 22.79 30.57 37.24 43.35 50.02\\\">OBLIGATED</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.9548 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 385.0113 494.9822)\\\" x=\\\"0 6.11\\\">TO</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 398.898 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 402.9545 494.9822)\\\" x=\\\"0 6.67 13.34\\\">PAY</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 422.9643 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 427.0208 494.9822)\\\" x=\\\"0\\\">A</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 433.6907 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 437.7472 494.9822)\\\" x=\\\"0 6.67 13.89\\\">SUM</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 459.9689 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 464.0254 494.9822)\\\" x=\\\"0 7.78 15 21.67 28.34 34.45 41.12\\\">GREATER</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.3652 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 516.4217 494.9822)\\\" x=\\\"0 6.11 13.33 20\\\">THAN</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 543.6434 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 547.6999 494.9822)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 483.6639)\\\" x=\\\"0 6.11 13.89 20 26.67 32.23 34.89 41.56 48.23 54.9 63.23 69.9 77.12 83.23 89.9 92.56 98.67 106.45 113.67 116.33 123 125.66 132.33 135.11 142.33 150.11 155.67 162.34 165 170.56 177.23 183.9 190.57 197.24 199.9 206.01 212.68 219.9 228.23\\\">TOTAL PAYMENTS FOR A SINGLE LEASE TERM.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 470.3455)\\\" x=\\\"0 7.22 12.78 17.78\\\">Cash</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 64.0447 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 67.2085 470.3455)\\\" x=\\\"0 6.67 10 12.28 17.28\\\">Price</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 90.0503 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 93.214 470.3455)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 101.5539 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 104.7176 470.3455)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 145.2889 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.4527 470.3455)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 165.6841 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 168.8478 470.3455)\\\" x=\\\"0 7.22 12.78 17.78\\\">Cash</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 192.1926 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 195.3563 470.3455)\\\" x=\\\"0 6.67 10 12.28 17.28\\\">Price</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 218.1981 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 221.3619 470.3455)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 229.7017 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 232.8655 470.3455)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 246.7668 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 249.9306 470.3455)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 287.7235 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 290.8873 470.3455)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 298.1676 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 301.3313 470.3455)\\\" x=\\\"0\\\">$</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 306.8928 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 310.0566 470.3455)\\\" x=\\\"0 5.56 8.34 13.9 19.46 25.02 27.8 33.36 38.92\\\">3,872.00,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.7607 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 354.9244 470.3455)\\\" x=\\\"0 7.22 12.78 15.06 20.06\\\">which</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.5494 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 383.7132 470.3455)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 390.9935 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 394.1572 470.3455)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 408.0586 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 411.2223 470.3455)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 444.5768 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 447.7406 470.3455)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 463.8636 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 467.0274 470.3455)\\\" x=\\\"0 7.22 12.78 18.34 20.62\\\">would</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 493.2139 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 496.3776 470.3455)\\\" x=\\\"0 5.56 11.12 16.12\\\">have</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 518.0622 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 521.226 470.3455)\\\" x=\\\"0 5.56 11.12 13.4\\\">paid</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 540.1908 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 543.3545 470.3455)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 548.4131 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 551.5769 470.3455)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 459.0271)\\\" x=\\\"0 5.56 11.12\\\">had</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 57.3846 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 60.336 459.0271)\\\" x=\\\"0 5.56 11.12 14.45 19.45 25.01 30.57 35.57 41.13\\\">purchased</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 107.0352 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 109.9866 459.0271)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 123.888 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 126.8394 459.0271)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 164.6324 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 167.5838 459.0271)\\\" x=\\\"0 2.78 6.11 11.67\\\">from</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 187.5838 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 190.5352 459.0271)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 204.4366 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 207.388 459.0271)\\\" x=\\\"0 7.22 12.78 15.56 21.12 23.4 25.68 31.24\\\">Retailer</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 241.9632 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 244.9147 459.0271)\\\" x=\\\"0 7.22 9.5 12.28\\\">with</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.7565 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 265.7079 459.0271)\\\" x=\\\"0 5 10.56 15.56\\\">cash</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 286.8309 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 289.7824 459.0271)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 300.9054 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 303.8568 459.0271)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 317.7582 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 320.7096 459.0271)\\\" x=\\\"0 5.56 11.12\\\">day</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 336.8327 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 339.7841 459.0271)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.1239 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 351.0754 459.0271)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 366.6955 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 369.6469 459.0271)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 421.3412 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 424.2927 459.0271)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 25.68 27.96 32.96\\\">inclusive</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 462.8181 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 465.7695 459.0271)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.1093 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 477.0607 459.0271)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 493.1838 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 496.1352 459.0271)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64\\\">applicable</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 541.3452 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 544.2966 459.0271)\\\" x=\\\"0 5 10.56 12.84 18.4\\\">sales</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 447.7088)\\\" x=\\\"0 5.56 8.89 11.55 17.11 22.11 27.67 30.33 33.11 38.67 43.67\\\">or use tax.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 434.3904)\\\" x=\\\"0 6.11 11.67 14.45 20.01\\\">Total</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 62.99 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 66.9187 434.3904)\\\" x=\\\"0 7.22 12.78 17.78\\\">Cost</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 87.4803 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 91.409 434.3904)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 99.7488 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 103.6775 434.3904)\\\" x=\\\"0 5.56 11.12 16.68 21.68 27.24\\\">Lease;</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 133.7019 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 137.6306 434.3904)\\\" x=\\\"0 6.67 12.23 15.56 17.84 23.4 28.96 31.24\\\">Periodic</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 173.8758 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 177.8045 434.3904)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46 44.46\\\">Payments;</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.0457 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 228.9744 434.3904)\\\" x=\\\"0 6.67 10 15.56 20.56 26.12 31.12 36.12 38.4 43.96\\\">Processing</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 278.5007 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 282.4295 434.3904)\\\" x=\\\"0 6.11 11.67 17.23\\\">Fee;</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.4392 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 306.3679 434.3904)\\\" x=\\\"0 2.78 8.34 10.62 13.4 15.68 21.24\\\">Initial</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.8884 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 333.8171 434.3904)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46\\\">Payment;</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 376.0584 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 379.9871 434.3904)\\\" x=\\\"0 7.22 12.78 17.78\\\">Cost</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 400.5486 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 404.4773 434.3904)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 412.8171 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 416.7459 434.3904)\\\" x=\\\"0 7.22 12.78 18.34 21.12 26.68 28.96\\\">Rental.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 448.489 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 452.4177 434.3904)\\\" x=\\\"0 7.22 12.78 15.06 20.62 25.62\\\">Unless</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 483.0427 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 486.9714 434.3904)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 503.0945 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 507.0232 434.3904)\\\" x=\\\"0 5.56 10.56 16.12 19.45 24.45 26.73 31.73\\\">exercise</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 544.3181 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 548.2468 434.3904)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 423.0721)\\\" x=\\\"0 5.56 11.12 16.68 20.01 27.23 32.79\\\">100-Day</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 78.4979 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.2541 423.0721)\\\" x=\\\"0 7.78 13.34 16.12 18.4 23.96\\\">Option</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 110.7756 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 113.5318 423.0721)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 122.4234 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 125.1797 423.0721)\\\" x=\\\"0 6.67 12.23 15.56 17.84\\\">Early</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 148.0215 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 150.7777 423.0721)\\\" x=\\\"0 6.67 12.23 17.23 20.56 28.34 33.9\\\">Buy-Out</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 187.4574 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 190.2136 423.0721)\\\" x=\\\"0 7.78 13.34 16.12 18.4 23.96\\\">Option</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 219.7351 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 222.4914 423.0721)\\\" x=\\\"0 5 10.56\\\">set</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 235.8312 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 238.5875 423.0721)\\\" x=\\\"0 2.78 8.34 11.67 14.45\\\">forth</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 258.5972 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 261.3535 423.0721)\\\" x=\\\"0 5.56 11.12 13.4 18.96 26.18\\\">below,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.3183 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 293.0746 423.0721)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 306.9759 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 309.7322 423.0721)\\\" x=\\\"0 3.33 9.44 15 17.78 23.34\\\">“Total</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.3523 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.1086 423.0721)\\\" x=\\\"0 7.22 12.78 17.78 20.56\\\">Cost”</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 362.0002 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 364.7564 423.0721)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 373.0962 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 375.8525 423.0721)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 389.7539 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 392.5101 423.0721)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.3031 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 433.0593 423.0721)\\\" x=\\\"0 5.56 11.12 16.68 22.24\\\">under</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 458.6355 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 461.3917 423.0721)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 477.0119 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 479.7681 423.0721)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 528.6841 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 531.4404 423.0721)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 545.5029 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 548.2591 423.0721)\\\" x=\\\"0 5.56\\\">be</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.3822 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 562.1384 423.0721)\\\" x=\\\"0\\\">$</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 411.7537)\\\" x=\\\"0 5.56 8.34 13.9 19.46 25.02 27.8 33.36 38.92\\\">3,965.32.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 82.4041 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 85.187 411.7537)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 102.4184 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 105.2013 411.7537)\\\" x=\\\"0 6.11 11.67 14.45 20.01\\\">Total</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 127.4913 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 130.2742 411.7537)\\\" x=\\\"0 7.22 12.78 17.78\\\">Cost</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 150.8357 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 153.6186 411.7537)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.8989 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 163.6817 411.7537)\\\" x=\\\"0 5.56 11.12 16.12 21.68\\\">based</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 190.9279 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 193.7107 411.7537)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 204.8338 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 207.6166 411.7537)\\\" x=\\\"0 5.56\\\">an</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 218.7397 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 221.5226 411.7537)\\\" x=\\\"0 2.78 8.34 10.62 13.4 15.68 21.24\\\">Initial</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.0431 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 247.8259 411.7537)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68\\\">Payment</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 287.2888 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 290.0717 411.7537)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 298.4115 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 301.1944 411.7537)\\\" x=\\\"0\\\">$</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 306.7559 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 309.5388 411.7537)\\\" x=\\\"0 5.56 8.34 13.9\\\">0.00</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.0017 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 331.7846 411.7537)\\\" x=\\\"0 5.56 11.12 16.12 21.68 27.24 29.52\\\">payable</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 366.8725 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 369.6554 411.7537)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.7784 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 383.5613 411.7537)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 397.4626 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 400.2455 411.7537)\\\" x=\\\"0 5.56 11.12 13.9\\\">date</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.7084 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 422.4913 411.7537)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.8311 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 433.614 411.7537)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 449.2341 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 452.017 411.7537)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 500.933 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 503.7159 411.7537)\\\" x=\\\"0 3.33 6.11 11.67\\\">(the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 520.9473 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 523.7302 411.7537)\\\" x=\\\"0 3.33 10.55 16.11 21.67 27.23 29.51 32.84 38.4\\\">“Required</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 400.4353)\\\" x=\\\"0 2.78 8.34 10.62 13.4 15.68 21.24\\\">Initial</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 64.2205 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 68.4622 400.4353)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46 42.79 46.12\\\">Payment”),</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 117.3635 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 121.6052 400.4353)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 126.6638 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 130.9055 400.4353)\\\" x=\\\"0 5.56 11.12 16.12\\\">any,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 149.8068 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 154.0485 400.4353)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 159.61 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 163.8517 400.4353)\\\" x=\\\"0 5.56 8.89 14.45 19.45 25.01 30.01 35.01 37.29 42.85\\\">processing</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 212.2697 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 216.5114 400.4353)\\\" x=\\\"0 2.78 8.34\\\">fee</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 230.4127 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 234.6544 400.4353)\\\" x=\\\"0 3.33 10.55 16.11 18.39 23.39\\\">(which</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 263.6095 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 267.8511 400.4353)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.1314 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 279.3731 400.4353)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 293.2745 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 297.5161 400.4353)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 303.0777 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 307.3193 400.4353)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 345.6738 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 349.9155 400.4353)\\\" x=\\\"0 2.78 8.34 15.56 21.12 24.45 30.01\\\">towards</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 384.9301 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 389.1718 400.4353)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.0732 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.3149 400.4353)\\\" x=\\\"0 5 10.56 15.56\\\">cost</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 425.6547 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 429.8964 400.4353)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 438.2362 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 442.4779 400.4353)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 461.931 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 466.1727 400.4353)\\\" x=\\\"0 3.33 8.89 14.45 17.23 22.79 25.07\\\">rental)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 494.576 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 498.8177 400.4353)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 507.1575 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 511.3992 400.4353)\\\" x=\\\"0\\\">$</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 516.9607 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 521.2024 400.4353)\\\" x=\\\"0 5.56 11.12 13.9 19.46\\\">10.00</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 546.2268 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 550.4685 400.4353)\\\" x=\\\"0 3.33 6.11 11.67\\\">(the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 389.117)\\\" x=\\\"0 3.33 10 13.33 18.89 23.89 29.45 34.45 39.45 41.73 47.29\\\">“Processing</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 93.5564 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 97.3241 389.117)\\\" x=\\\"0 6.11 11.67 17.23 20.56 23.89\\\">Fee”),</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 123.9941 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 127.7617 389.117)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 132.8203 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 136.588 389.117)\\\" x=\\\"0 5.56 11.12 16.12\\\">any,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 155.4894 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 159.2571 389.117)\\\" x=\\\"0 5.56\\\">26</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 170.3801 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 174.1478 389.117)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.74 24.02 29.58 35.14 40.7\\\">additional</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 217.1361 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 220.9038 389.117)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57 38.35\\\">payments</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 264.2583 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 268.026 389.117)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.3658 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 280.1335 389.117)\\\" x=\\\"0\\\">$</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 285.695 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 289.4627 389.117)\\\" x=\\\"0 5.56 8.34 13.9\\\">6.97</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.9256 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 312.6933 389.117)\\\" x=\\\"0 3.33 8.89\\\">(as</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 326.5849 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 330.3526 389.117)\\\" x=\\\"0 5.56 11.12 13.4 18.96 23.96 26.74 32.3 37.86\\\">adjusted,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 370.9971 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 374.7648 389.117)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.3263 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 384.094 389.117)\\\" x=\\\"0 3.33 10.55 16.11 21.67 27.23 29.51 35.07\\\">“Regular</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 422.5022 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 426.2699 389.117)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46 42.79\\\">Payment”)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 472.393 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 476.1607 389.117)\\\" x=\\\"0 5.56 11.12 16.12 21.68\\\">each,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 500.6235 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 504.3912 389.117)\\\" x=\\\"0 5.56 11.12 16.12 21.68 27.24 29.52\\\">payable</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 539.4791 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 543.2468 389.117)\\\" x=\\\"0 5.56 10.56 16.12 19.45\\\">every</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 377.7986)\\\" x=\\\"0 5.56 8.34 13.9 19.46\\\">other</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 63.493 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 66.4195 377.7986)\\\" x=\\\"0 7.22 12.78 18.34 23.34\\\">week.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 92.5426 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 95.4692 377.7986)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 112.7006 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 115.6272 377.7986)\\\" x=\\\"0 6.11 11.67 14.45 20.01\\\">Total</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 137.9172 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 140.8438 377.7986)\\\" x=\\\"0 7.22 12.78 17.78\\\">Cost</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 161.4053 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 164.3319 377.7986)\\\" x=\\\"0 5.56 7.84 12.84\\\">also</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 182.7352 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 185.6617 377.7986)\\\" x=\\\"0 3.33 8.89 11.67 13.95 19.51 24.51 27.29\\\">reflects</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 217.9518 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 220.8784 377.7986)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 237.0014 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 239.928 377.7986)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.74 24.02 29.58 35.14 40.7\\\">additional</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 282.9163 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 285.8428 377.7986)\\\" x=\\\"0 5 10.56 15.56\\\">cash</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 306.9659 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 309.8924 377.7986)\\\" x=\\\"0 5.56 11.12 13.4\\\">paid</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 328.8573 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 331.7839 377.7986)\\\" x=\\\"0 2.78 8.34 13.9 19.46 24.46\\\">today,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.0251 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 361.9516 377.7986)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 367.0102 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 369.9368 377.7986)\\\" x=\\\"0 5.56 11.12 16.12\\\">any.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.8382 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 391.7647 377.7986)\\\" x=\\\"0 6.67 12.23 17.79\\\">Your</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 412.8878 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 415.8143 377.7986)\\\" x=\\\"0 2.78 8.34 11.12 16.68\\\">total</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.7743 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 437.7009 377.7986)\\\" x=\\\"0 2.28 7.84 10.12 12.9 15.18 20.74\\\">initial</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 460.7233 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 463.6499 377.7986)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 502.0044 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 504.931 377.7986)\\\" x=\\\"0 5.56 11.12\\\">due</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.6155 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 524.5421 377.7986)\\\" x=\\\"0 2.78 8.34 13.9 19.46\\\">today</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.005 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 551.9316 377.7986)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.2118 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 562.1384 377.7986)\\\" x=\\\"0\\\">$</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 366.4803)\\\" x=\\\"0 5.56 8.34 13.9 19.46\\\">0.00,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 62.9412 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 66.7951 366.4803)\\\" x=\\\"0 7.22 12.78 15.06 20.06\\\">which</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 92.4201 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 96.274 366.4803)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 103.5543 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 107.4082 366.4803)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 121.3096 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 125.1635 366.4803)\\\" x=\\\"0 5 10.56\\\">sum</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 144.0551 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 147.909 366.4803)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 156.2488 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 160.1027 366.4803)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 174.0041 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 177.858 366.4803)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 29.51 35.07\\\">Required</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 218.4976 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 222.3515 366.4803)\\\" x=\\\"0 2.78 8.34 10.62 13.4 15.68 21.24\\\">Initial</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.872 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 249.7259 366.4803)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46\\\">Payment,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.9672 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 295.8211 366.4803)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 300.8797 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 304.7336 366.4803)\\\" x=\\\"0 5.56 11.12 16.12\\\">any,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 323.6349 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 327.4888 366.4803)\\\" x=\\\"0 6.67 10 15.56 20.56 26.12 31.12 36.12 38.4 43.96\\\">Processing</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 377.0152 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 380.8691 366.4803)\\\" x=\\\"0 6.11 11.67 17.23\\\">Fee,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 400.8789 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 404.7328 366.4803)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 409.7914 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 413.6453 366.4803)\\\" x=\\\"0 5.56 11.12 16.12\\\">any,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 432.5466 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 436.4005 366.4803)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 453.0851 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 456.939 366.4803)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 473.062 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 476.916 366.4803)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.74 24.02 29.58 35.14 40.7\\\">additional</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 519.9042 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 523.7581 366.4803)\\\" x=\\\"0 5 10.56 15.56\\\">cash</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 544.8812 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 548.7351 366.4803)\\\" x=\\\"0 5.56 11.12 13.4\\\">paid</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 355.1619)\\\" x=\\\"0 2.78 8.34 13.9 19.46 24.46\\\">today.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 67.9412 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 70.9372 355.1619)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 76.4938 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 79.4898 355.1619)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 95.6128 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 98.6088 355.1619)\\\" x=\\\"0 5.56\\\">do</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 109.7318 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 112.7278 355.1619)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 126.6291 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 129.6251 355.1619)\\\" x=\\\"0 3.33 8.89 17.22 19.5\\\">remit</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 151.9054 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 154.9013 355.1619)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 171.0244 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 174.0203 355.1619)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64\\\">applicable</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 219.2303 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 222.2262 355.1619)\\\" x=\\\"0 6.67 10 15.56 20.56 26.12 31.12 36.12 38.4 43.96\\\">Processing</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 271.7526 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 274.7486 355.1619)\\\" x=\\\"0 6.11 11.67\\\">Fee</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.98 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 294.976 355.1619)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 303.8676 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 306.8635 355.1619)\\\" x=\\\"0 2.78 8.34 10.62 13.4 15.68 21.24\\\">Initial</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 330.3841 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 333.38 355.1619)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68\\\">Payment</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 372.8429 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 375.8388 355.1619)\\\" x=\\\"0 5.56\\\">at</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 384.1787 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 387.1747 355.1619)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 401.076 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 404.072 355.1619)\\\" x=\\\"0 2.78 5.06 13.39\\\">time</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 423.0222 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 426.0181 355.1619)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.358 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 437.3539 355.1619)\\\" x=\\\"0 5.56 11.12 14.45 19.45 25.01 30.57 35.57 41.13\\\">purchase,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 481.2699 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 484.2659 355.1619)\\\" x=\\\"0 2.28\\\">it</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.3245 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 492.3205 355.1619)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.6007 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 502.5967 355.1619)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24 31.8\\\">included</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 539.9649 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 542.9608 355.1619)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 550.8026 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.7986 355.1619)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 343.8436)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 75.7781 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 78.9772 343.8436)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46\\\">Payments</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 123.44 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 126.6391 343.8436)\\\" x=\\\"0 5 10.56\\\">set</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 139.9789 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 143.1779 343.8436)\\\" x=\\\"0 2.78 8.34 11.67 14.45\\\">forth</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 163.1877 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 166.3868 343.8436)\\\" x=\\\"0 5.56 11.12 16.68 21.68 27.24\\\">above.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 196.4112 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 199.6102 343.8436)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 216.8416 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 220.0407 343.8436)\\\" x=\\\"0 6.11 11.67 14.45 20.01\\\">Total</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 242.3307 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 245.5297 343.8436)\\\" x=\\\"0 7.22 12.78 17.78\\\">Cost</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 266.0913 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 269.2903 343.8436)\\\" x=\\\"0 5.56 11.12 16.68\\\">does</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.9749 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 294.1739 343.8436)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.0753 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 311.2743 343.8436)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24\\\">include</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 343.0809 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 346.28 343.8436)\\\" x=\\\"0 2.28 7.84 10.62\\\">late</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 362.4616 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 365.6606 343.8436)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57 38.35\\\">payment,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 406.7935 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 409.9925 343.8436)\\\" x=\\\"0 5.56 11.12 16.68 21.68 27.24 30.02 32.8 35.08 40.08 42.36 47.92 53.48\\\">nonsufficient</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.2571 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 469.4562 343.8436)\\\" x=\\\"0 2.78 8.34 13.9 19.46 24.46\\\">funds,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 496.6974 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 499.8964 343.8436)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 27.3 30.08\\\">default,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 532.7577 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 535.9568 343.8436)\\\" x=\\\"0 5.56 7.84 12.84 17.84 23.4 28.96\\\">pickup,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 332.5252)\\\" x=\\\"0 3.33 8.89 11.17 16.73 21.73 24.51 30.07 32.85 38.41 46.74 52.3 57.86 60.64\\\">reinstatement,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 104.1228 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 108.8966 332.5252)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 117.7882 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 122.5619 332.5252)\\\" x=\\\"0 5.56 8.34 13.9 19.46\\\">other</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 145.3549 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 150.1286 332.5252)\\\" x=\\\"0 2.78 8.34 13.9 18.9\\\">fees,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 171.8083 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 176.5821 332.5252)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 181.6407 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 186.4144 332.5252)\\\" x=\\\"0 5.56 11.12 16.12\\\">any,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 205.3158 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.0895 332.5252)\\\" x=\\\"0 5.56 7.84 12.84 17.84 20.12 25.68 30.68 36.24\\\">disclosed</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 251.8962 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 256.6699 332.5252)\\\" x=\\\"0 5.56 11.12 13.4 18.96 26.18\\\">below.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 285.6347 332.5252)\\\" x=\\\"0 4.7737\\\">  </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 295.1822 332.5252)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.4137 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 317.1874 332.5252)\\\" x=\\\"0 5 10.56 15.56\\\">cost</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.5273 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 340.301 332.5252)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.6409 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 353.4146 332.5252)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 372.8677 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 377.6415 332.5252)\\\" x=\\\"0 3.33 8.89 14.45 17.23 22.79\\\">rental</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.7147 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.4884 332.5252)\\\" x=\\\"0 3.33 6.66 13.88 19.44 24.44\\\">(“Cost</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.7101 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 439.4839 332.5252)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.8237 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 452.5975 332.5252)\\\" x=\\\"0 7.22 12.78 18.34 21.12 26.68 28.96 32.29\\\">Rental”)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 488.2225 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 492.9962 332.5252)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 500.2765 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 505.0502 332.5252)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 518.9516 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 523.7253 332.5252)\\\" x=\\\"0 5.56 7.84 10.62 13.4 18.96 22.29 27.85 33.41 38.41\\\">difference</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 321.2068)\\\" x=\\\"0 5.56 11.12 13.9 21.12 26.68 32.24 37.8 40.46 43.24 48.8 54.36 57.02 63.13 68.69 71.47 77.03 79.31 81.97 89.19 94.75 99.75 102.53 105.19 110.75 116.31 121.87 124.53 131.75 137.31 142.31 147.87 150.53 157.2 160.53 162.81 167.81 173.37 176.15 178.81 184.37 189.93 195.49 198.15 205.37 207.65 209.93 212.21 214.87 220.43 225.99 228.65 234.21 236.87 242.43 247.99 250.77 256.33 261.89\\\">between the Total Cost and Cash Price, and will be $ 93.32.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 309.8885)\\\" x=\\\"0 6.67 11.67 17.23 22.79 27.79 30.57 36.13\\\">Expected</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 82.3943 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 86.3823 309.8885)\\\" x=\\\"0 7.22 12.78 15.06 17.34 22.34 27.9 31.23\\\">Delivery</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 122.6177 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 126.6057 309.8885)\\\" x=\\\"0 7.22 12.78 15.56 21.12\\\">Date;</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 150.507 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 154.495 309.8885)\\\" x=\\\"0 6.11 8.39 11.72 16.72\\\">First</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 173.9921 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 177.9801 309.8885)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 213.0582 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 217.0462 309.8885)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46\\\">Payment.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.2874 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 263.2754 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 267.2634 309.8885)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 284.4948 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 288.4828 309.8885)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 29.51 35.07\\\">Required</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.1225 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 333.1105 309.8885)\\\" x=\\\"0 2.78 8.34 10.62 13.4 15.68 21.24\\\">Initial</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 356.631 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 360.619 309.8885)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46\\\">Payment,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.8602 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 406.8482 309.8885)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 411.9068 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 415.8947 309.8885)\\\" x=\\\"0 5.56 11.12 16.12\\\">any,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.7961 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 438.7841 309.8885)\\\" x=\\\"0 5 10.56 15.56 21.12 24.45\\\">covers</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.2372 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 472.2252 309.8885)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.1266 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 490.1146 309.8885)\\\" x=\\\"0 3.33 8.89 14.45 17.23 22.79\\\">rental</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 515.1878 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 519.1758 309.8885)\\\" x=\\\"0 5.56 11.12 14.45 16.73 22.29\\\">period</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 547.0323 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 551.0202 309.8885)\\\" x=\\\"0 2.78 8.34 13.9\\\">that</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 298.5701)\\\" x=\\\"0 5.56 11.12 16.68 18.96 24.52\\\">begins</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 70.2264 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 73.3394 298.5701)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 84.4625 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 87.5755 298.5701)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 101.4769 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 104.59 298.5701)\\\" x=\\\"0 5.56 11.12 13.9\\\">date</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 124.0529 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 127.166 298.5701)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 143.289 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 146.4021 298.5701)\\\" x=\\\"0 3.33 8.89 13.89 19.45 21.73 26.73\\\">receive</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 178.697 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 181.8101 298.5701)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 195.7114 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 198.8245 298.5701)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 236.6175 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 239.7305 298.5701)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.4151 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 259.5282 298.5701)\\\" x=\\\"0 5.56 11.12 16.68\\\">ends</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.2128 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 284.3258 298.5701)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 295.4489 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 298.562 298.5701)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 318.0151 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 321.1281 298.5701)\\\" x=\\\"0 2.78 5.06 8.39 13.39\\\">first</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 337.2951 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 340.4082 298.5701)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.4863 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 378.5994 298.5701)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68\\\">Payment</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 418.0623 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 421.1754 298.5701)\\\" x=\\\"0 5.56 11.12 13.9 19.46\\\">date.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 443.4166 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 446.5297 298.5701)\\\" x=\\\"0 6.67 12.23 17.79\\\">Your</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.6527 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 470.7658 298.5701)\\\" x=\\\"0 2.78 5.06 8.39 13.39\\\">first</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.9328 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 490.0459 298.5701)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 525.124 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 528.237 298.5701)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68\\\">Payment</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 287.2518)\\\" x=\\\"0 5.56 11.12 13.9\\\">date</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.1629 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 63.9277 287.2518)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 77.9902 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.7549 287.2518)\\\" x=\\\"0 5.56\\\">be</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 92.878 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 96.6428 287.2518)\\\" x=\\\"0 5.56\\\">at</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 104.9826 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 108.7474 287.2518)\\\" x=\\\"0 2.28 7.84 13.4 18.4\\\">least</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 129.929 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 133.6938 287.2518)\\\" x=\\\"0 5 10.56 15.56 21.12\\\">seven</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.3784 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 164.1432 287.2518)\\\" x=\\\"0 5.56 11.12 16.12\\\">days</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 185.2662 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 189.031 287.2518)\\\" x=\\\"0 5.56 8.34 11.12 16.68\\\">after</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.0407 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 212.8055 287.2518)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 226.7069 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 230.4717 287.2518)\\\" x=\\\"0 2.28 7.84 10.62 16.18\\\">later</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 249.9834 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 253.7482 287.2518)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.088 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 265.8528 287.2518)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 27.8 33.36 38.92 44.48\\\">07/24/2020</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 315.9016 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 319.6664 287.2518)\\\" x=\\\"0 3.33 5.61\\\">(i)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 328.6068 287.2518)\\\" x=\\\"0 3.7648\\\">  </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 336.1364 287.2518)\\\" x=\\\"0 3.33 6.11 11.67\\\">(the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 353.3678 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 357.1326 287.2518)\\\" x=\\\"0 3.33 10 15 20.56 26.12 31.12 33.9 39.46\\\">“Expected</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.157 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 405.9218 287.2518)\\\" x=\\\"0 7.22 12.78 15.06 17.34 22.34 27.9 31.23\\\">Delivery</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 442.1572 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 445.9219 287.2518)\\\" x=\\\"0 7.22 12.78 15.56 21.12 24.45 27.78\\\">Date”),</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 476.4835 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 480.2482 287.2518)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 496.9328 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 500.6976 287.2518)\\\" x=\\\"0 3.33 5.61 7.89\\\">(ii)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 511.9183 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 515.6831 287.2518)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.5844 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 533.3492 287.2518)\\\" x=\\\"0 5.56 11.12 13.9\\\">date</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.8121 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 556.5769 287.2518)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 275.9334)\\\" x=\\\"0 7.22 12.78 15.06 20.06 25.62 28.28 31.06 36.62 42.18 44.84 51.51 54.84 60.4 65.96 71.52 74.85 77.63 82.63 85.29 87.57 92.57 95.23 100.79 104.12 109.68 114.68 116.96 122.52 128.08 133.64 136.3 141.86 145.19 147.85 153.41 158.97 161.25 163.53 168.53 174.09 177.42 182.98 188.54 191.2 193.98 199.54 202.2 207.2 212.76 218.32\\\">which the Property is provided or delivered to you.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 264.615)\\\" x=\\\"0 5.56 11.12 16.68 20.01 27.23 32.79\\\">100-Day</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 78.4979 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.9917 264.615)\\\" x=\\\"0 7.78 13.34 16.12 18.4 23.96 29.52\\\">Option.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 114.2915 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 117.7853 264.615)\\\" x=\\\"0 6.67\\\">At</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 127.2335 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 130.7273 264.615)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.8504 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 150.3442 264.615)\\\" x=\\\"0 2.78 5.06 13.39\\\">time</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 169.2944 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 172.7882 264.615)\\\" x=\\\"0 5.56 11.12 14.45 16.73 22.29\\\">during</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 200.6446 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 204.1385 264.615)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 218.0398 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 221.5336 264.615)\\\" x=\\\"0 2.78 5.06 8.39 13.39\\\">first</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 237.7006 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 241.1944 264.615)\\\" x=\\\"0 5.56 11.12\\\">100</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.879 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 261.3728 264.615)\\\" x=\\\"0 2.78 6.11 11.67\\\">from</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.3728 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 284.8666 264.615)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 298.768 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 302.2618 264.615)\\\" x=\\\"0 6.67 11.67 17.23 22.79 27.79 30.57 36.13\\\">Expected</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 343.9561 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 347.45 264.615)\\\" x=\\\"0 7.22 12.78 15.06 17.34 22.34 27.9 31.23\\\">Delivery</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.6853 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 387.1791 264.615)\\\" x=\\\"0 7.22 12.78 15.56 21.12\\\">Date,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 411.0805 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 414.5743 264.615)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 428.4757 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 431.9695 264.615)\\\" x=\\\"0 3.33 8.89 14.45 20.01 23.34 30.56 36.12\\\">“100-Day</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 473.0974 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 476.5912 264.615)\\\" x=\\\"0 7.78 13.34 16.12 18.4 23.96 29.52\\\">Option”</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.4428 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 512.9366 264.615)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.8 31.8\\\">applies,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 547.5215 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 551.0154 264.615)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 253.2967)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 56.823 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 59.7295 253.2967)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 78.6211 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.5276 253.2967)\\\" x=\\\"0 5.56 10.56 16.12 21.68 23.96 27.29\\\">acquire</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 114.384 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 117.2905 253.2967)\\\" x=\\\"0 5.56 12.78 18.34 23.9 27.23 32.23 37.79 40.07\\\">ownership</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 162.9301 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 165.8366 253.2967)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 174.1764 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 177.0829 253.2967)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 190.9843 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 193.8907 253.2967)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.6837 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 234.5901 253.2967)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.1517 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 248.0581 253.2967)\\\" x=\\\"0 5.56 11.12 16.12 18.4 23.96\\\">paying</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 277.5845 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 280.4909 253.2967)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.0525 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 293.9589 253.2967)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 307.8603 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 310.7667 253.2967)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 344.1212 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 347.0277 253.2967)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 357.5892 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 360.4957 253.2967)\\\" x=\\\"0 7.22 12.78 15.06 20.06\\\">which</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 386.1207 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 389.0271 253.2967)\\\" x=\\\"0 3.33 5.61\\\">(i)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 397.9676 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 400.874 253.2967)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 414.7754 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 417.6819 253.2967)\\\" x=\\\"0 5 10.56\\\">sum</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 436.5735 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 439.4799 253.2967)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.8198 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 450.7262 253.2967)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 464.6276 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 467.5341 253.2967)\\\" x=\\\"0 5.56 11.12\\\">100</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.2186 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 487.1251 253.2967)\\\" x=\\\"0\\\">–</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 490.0548 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 492.9612 253.2967)\\\" x=\\\"0 7.22 12.78\\\">Day</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 510.7444 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 513.6509 253.2967)\\\" x=\\\"0 6.67 15 20.56 26.12 31.68 34.46\\\">Amount,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 550.8921 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.7986 253.2967)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 241.9783)\\\" x=\\\"0 6.67 10 15.56 20.56 26.12 31.12 36.12 38.4 43.96\\\">Processing</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 90.2264 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 92.924 241.9783)\\\" x=\\\"0 6.11 11.67 17.23\\\">Fee,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 112.9338 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 115.6314 241.9783)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 120.69 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 123.3877 241.9783)\\\" x=\\\"0 5.56 11.12 16.12\\\">any,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 142.289 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 144.9867 241.9783)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64\\\">applicable</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 190.1967 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 192.8943 241.9783)\\\" x=\\\"0 5 10.56 12.84 18.4\\\">sales</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 216.2976 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 218.9953 241.9783)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 227.8869 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 230.5845 241.9783)\\\" x=\\\"0 5.56 10.56\\\">use</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 246.7076 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 249.4052 241.9783)\\\" x=\\\"0 2.78 8.34 13.34 18.9 23.9\\\">taxes,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.0849 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 278.7826 241.9783)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 295.4672 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 298.1648 241.9783)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 314.2879 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 316.9855 241.9783)\\\" x=\\\"0 5.56 11.12 16.68 22.24 24.52\\\">unpaid</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 347.0734 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 349.771 241.9783)\\\" x=\\\"0 2.78 8.34 13.9\\\">fees</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 368.6724 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 371.3701 241.9783)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 384.1533 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 386.8509 241.9783)\\\" x=\\\"0 5.56 11.12 16.12\\\">have</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 408.5355 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 411.2331 241.9783)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01 30.57 36.13\\\">charged,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 450.1492 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 452.8468 241.9783)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.68 32.24\\\">exceeds</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 490.0929 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 492.7906 241.9783)\\\" x=\\\"0 3.33 5.61 7.89\\\">(ii)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 504.0113 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 506.7089 241.9783)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 520.6103 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 523.3079 241.9783)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 556.6624 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 559.3601 241.9783)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 230.66)\\\" x=\\\"0 5.56 11.12 16.12 18.78 21.56 27.12 29.4 32.18 34.46 40.02 42.3 44.96 51.63 57.19 62.19 70.52 76.08 81.64 84.42 87.08 92.64 98.2 103.76 106.42 113.64 119.2 124.76 130.32 132.6 138.16 141.49 144.15 150.82 156.38 161.38 169.71 175.27 180.83 183.61 188.61 191.27 196.27 201.83 207.39 210.05 215.61 221.17 226.17 231.73 234.39 242.72 248.28 253.84 259.4 262.18 264.84 270.95 276.51 282.07 284.73 290.29 295.85 301.41 304.07 311.29 316.85 321.85 324.51 331.18 339.51 345.07 350.63 356.19 358.97 361.63 363.91 368.91 371.57 377.13 379.79 385.35 390.91 393.69 399.25 404.81\\\">any Initial Payment and Regular Payments you have made. The 100 Day Amount is $ 97.70.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 219.3416)\\\" x=\\\"0 6.67 12.23 15.56 17.84\\\">Early</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 63.5418 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 66.4605 219.3416)\\\" x=\\\"0 6.67 12.23 17.23 20.56 28.34 33.9\\\">Buy-Out</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 103.1401 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 106.0588 219.3416)\\\" x=\\\"0 7.78 13.34 16.12 18.4 23.96 29.52\\\">Option.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 138.3586 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 141.2772 219.3416)\\\" x=\\\"0 6.67 9.45 12.23 17.79\\\">After</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 162.3954 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 165.3141 219.3416)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 184.7672 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 187.6858 219.3416)\\\" x=\\\"0 5.56 11.12 16.68 20.01 27.23 32.79\\\">100-Day</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.4837 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 228.4024 219.3416)\\\" x=\\\"0 7.22 12.78 17.78\\\">Cash</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 251.7471 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 254.6657 219.3416)\\\" x=\\\"0 6.67 12.23 17.23 22.79 25.57\\\">Payoff</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 283.0153 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 285.934 219.3416)\\\" x=\\\"0 7.78 13.34 16.12 18.4 23.96\\\">Option</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 315.4555 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 318.3741 219.3416)\\\" x=\\\"0 5.56 11.12\\\">has</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 334.4972 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 337.4158 219.3416)\\\" x=\\\"0 5.56 10.56 16.12 18.4 21.73 27.29 32.85\\\">expired,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 373.0506 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 375.9693 219.3416)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 389.8706 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 392.7893 219.3416)\\\" x=\\\"0 3.33 10 15.56 18.89 21.17\\\">“Early</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 418.9611 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 421.8798 219.3416)\\\" x=\\\"0 6.67 12.23 17.23 20.56 28.34 33.9\\\">Buy-Out</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 458.5595 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 461.4781 219.3416)\\\" x=\\\"0 7.78 13.34 16.12 18.4 23.96 29.52\\\">Option”</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 494.3297 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 497.2484 219.3416)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.8\\\">applies</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.055 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 531.9737 219.3416)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 548.6582 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 551.5769 219.3416)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 208.0232)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 59.5916 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 63.2372 208.0232)\\\" x=\\\"0 5.56 11.12 14.45 19.45 25.01 30.57 35.57\\\">purchase</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 104.3748 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 108.0204 208.0232)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 121.9218 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 125.5673 208.0232)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 163.3603 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 167.0058 208.0232)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 177.5674 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 181.2129 208.0232)\\\" x=\\\"0 5.56 11.12 16.12 18.4 23.96\\\">paying</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 210.7393 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 214.3849 208.0232)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 224.9464 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 228.5919 208.0232)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 242.4933 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 246.1389 208.0232)\\\" x=\\\"0 5 10.56\\\">sum</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 265.0305 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 268.676 208.0232)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 277.0159 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 280.6614 208.0232)\\\" x=\\\"0 3.33 8.89\\\">(1)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 292.8831 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 296.5286 208.0232)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.6517 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 316.2972 208.0232)\\\" x=\\\"0 5.56 11.12 16.12\\\">past</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.1986 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.8442 208.0232)\\\" x=\\\"0 5.56 11.12\\\">due</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.5287 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 359.1743 208.0232)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 394.2524 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 397.898 208.0232)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46 44.46\\\">Payments,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 445.1392 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 448.7847 208.0232)\\\" x=\\\"0 5.56 11.12 16.68 22.24 24.52\\\">unpaid</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 478.8726 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 482.5182 208.0232)\\\" x=\\\"0 2.78 8.34 13.9\\\">fees</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.4196 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 505.0651 208.0232)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.7497 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 525.3952 208.0232)\\\" x=\\\"0 5 10.56 12.84 18.4 23.4 26.18 31.74 36.74\\\">sales/use</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 196.7049)\\\" x=\\\"0 2.78 8.34 13.34 18.9 23.9\\\">taxes,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 67.3797 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 70.748 196.7049)\\\" x=\\\"0 3.33 8.89\\\">(2)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 82.9697 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 86.338 196.7049)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02\\\">70.00%</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 120.254 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 123.6223 196.7049)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 131.9621 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 135.3305 196.7049)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 149.2318 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 152.6001 196.7049)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 185.9546 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 189.3229 196.7049)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 199.8845 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 203.2528 196.7049)\\\" x=\\\"0 7.22 12.78 15.06 20.06\\\">which</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 228.8778 196.7049)\\\" x=\\\"0 3.3683\\\">  </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 235.6144 196.7049)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 249.5157 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 252.8841 196.7049)\\\" x=\\\"0 6.11 11.67 14.45 20.01\\\">Total</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.1741 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 278.5424 196.7049)\\\" x=\\\"0 7.22 12.78 17.78\\\">Cost</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.1039 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 302.4722 196.7049)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.68 32.24\\\">exceeds</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 339.7183 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 343.0866 196.7049)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 356.988 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 360.3563 196.7049)\\\" x=\\\"0 2.78 8.34 10.62 13.4 15.68 21.24\\\">Initial</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.8768 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 387.2451 196.7049)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46\\\">Payment,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 429.4863 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 432.8546 196.7049)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 437.9132 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 441.2815 196.7049)\\\" x=\\\"0 5.56 11.12 16.12\\\">any,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 460.1829 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 463.5512 196.7049)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 480.2358 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 483.6041 196.7049)\\\" x=\\\"0 5 10 15.56 21.12 26.68 32.24 34.52 40.08\\\">scheduled</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.2535 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 532.6218 196.7049)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 185.3865)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46 44.46 47.12 49.9 55.46 58.79 64.35 69.91 75.47 81.03 83.69 86.47 92.03 97.59 100.25 105.81 111.37 114.15 119.71 122.37 127.37 132.93 138.49 141.15 146.71 151.71 157.27 160.6 165.6 167.88 172.88 178.44 181.1 186.1 191.66 197.22 200.55 203.21 208.77 214.33 217.11 219.39 224.95 230.51 233.17 238.73 244.29 249.85 252.51 255.84 261.4 264.73 267.39 272.95 278.51 284.07 286.35 288.63 293.63 299.19 304.75 307.03 312.59 315.25 320.25 325.81 328.09 333.65 338.65 341.31 346.87 350.2 352.86 358.42 363.42 368.98 371.64 374.42 379.98 384.98 390.54 395.54\\\">Payments through the date you exercise your option and (3) applicable sales or use taxes.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 174.0682)\\\" x=\\\"0 7.22 12.78 15.44 22.11 27.67 32.67 38.23 41.56 43.84 46.62 51.62 54.28 61.5 67.06 72.62 78.18 83.18 85.46 88.24 90.9 98.12 103.68 109.24 114.8 117.08 120.41 125.97 131.53 134.31 136.97 144.19 149.75 152.41 157.41 162.97 167.97 173.53 176.86 179.14 181.92 186.92 189.58 195.14 200.7 206.26 211.82 216.82 219.1 221.88 224.54 226.82 231.82 234.48 237.81 243.37 248.93 254.49 256.77 260.1 265.66 271.22 273.88 279.44 285 290.56 296.12 299.45 302.11 304.89 310.45 312.73 317.73 320.39 327.06 332.62 335.95 341.51 347.07 355.4 360.96 366.52 369.3\\\">No Security Deposit Required. No security deposit is required under this Agreement.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 162.7498)\\\" x=\\\"0 5.56 11.12 16.68 21.68\\\">Lease</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 67.9461 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 72.4996 162.7498)\\\" x=\\\"0 6.11 11.67 15 23.33\\\">Term,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 98.608 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 103.1616 162.7498)\\\" x=\\\"0 6.67 12.23 17.79 22.79 28.35 33.91 39.47 45.03 50.59\\\">Subsequent</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 156.5405 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 161.094 162.7498)\\\" x=\\\"0 6.11 11.67 15 23.33 28.33\\\">Terms;</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 192.2024 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 196.7559 162.7498)\\\" x=\\\"0 7.22 12.78 18.34 23.9 31.12 36.68 38.96\\\">Renewal.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.504 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 243.0575 162.7498)\\\" x=\\\"0 6.67 12.23 17.79\\\">Your</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 264.1806 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 268.7341 162.7498)\\\" x=\\\"0 2.28 7.84 10.12 12.9 15.18 20.74\\\">initial</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.7566 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 296.3101 162.7498)\\\" x=\\\"0 2.28 7.84 13.4 18.4\\\">lease</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 320.2749 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 324.8285 162.7498)\\\" x=\\\"0 2.78 8.34 11.67\\\">term</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 344.8285 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 349.382 162.7498)\\\" x=\\\"0 5.56 10.56 16.12 18.4 21.73 27.29\\\">expires</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 381.6769 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 386.2305 162.7498)\\\" x=\\\"0 5.56\\\">60</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 397.3535 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 401.907 162.7498)\\\" x=\\\"0 5.56 11.12 16.12\\\">days</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 423.0301 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 427.5836 162.7498)\\\" x=\\\"0 2.78 6.11 11.67\\\">from</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.5836 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 452.1372 162.7498)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.0385 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 470.5921 162.7498)\\\" x=\\\"0 2.28 7.84 10.62 16.18\\\">later</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 490.1038 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 494.6573 162.7498)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 502.9972 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 507.5507 162.7498)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.4521 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 526.0056 162.7498)\\\" x=\\\"0 6.67 11.67 17.23 22.79 27.79 30.57 36.13\\\">Expected</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 151.4315)\\\" x=\\\"0 7.22 12.78 15.06 17.34 22.34 27.9 31.23\\\">Delivery</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 76.9353 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.1545 151.4315)\\\" x=\\\"0 7.22 12.78 15.56\\\">Date</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 102.2775 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 106.4967 151.4315)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 115.3883 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 119.6074 151.4315)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 133.5088 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 137.7279 151.4315)\\\" x=\\\"0 5.56 11.12 13.9\\\">date</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 157.1908 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 161.4099 151.4315)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 172.533 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 176.7521 151.4315)\\\" x=\\\"0 7.22 12.78 15.06 20.06\\\">which</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 202.3771 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 206.5963 151.4315)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 220.4976 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 224.7168 151.4315)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.5097 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 266.7289 151.4315)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 274.0091 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 278.2283 151.4315)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29 32.85\\\">provided</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 316.6463 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 320.8654 151.4315)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.757 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 333.9761 151.4315)\\\" x=\\\"0 5.56 11.12 13.4 15.68 20.68 26.24 29.57 35.13\\\">delivered</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 374.6744 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 378.8935 151.4315)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 387.2334 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 391.4525 151.4315)\\\" x=\\\"0 5 10.56 16.12\\\">you.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 410.3539 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 414.573 151.4315)\\\" x=\\\"0 7.22 12.78 15.56 17.84\\\">Until</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.6951 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 438.9142 151.4315)\\\" x=\\\"0 3.33 5.61\\\">(i)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.8546 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 452.0738 151.4315)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.1968 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 472.416 151.4315)\\\" x=\\\"0 5.56 11.12 13.9 19.46 21.74\\\">obtain</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.7206 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 503.9398 151.4315)\\\" x=\\\"0 5.56 12.78 18.34 23.9 27.23 32.23 37.79 40.07\\\">ownership</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.5794 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.7986 151.4315)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 140.1131)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 78.493 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 82.2535 140.1131)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 92.815 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 96.5756 140.1131)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29 32.85\\\">provided</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 134.9936 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 138.7541 140.1131)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.5959 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 150.3565 140.1131)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 165.9766 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 169.7371 140.1131)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 221.4315 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 225.192 140.1131)\\\" x=\\\"0 3.33 5.61 7.89\\\">(ii)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 236.4127 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 240.1733 140.1131)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.2963 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 260.0569 140.1131)\\\" x=\\\"0 2.78 8.34 11.67 20 22.28 27.84 33.4 36.18\\\">terminate</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 301.8001 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 305.5606 140.1131)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 321.1807 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 324.9413 140.1131)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 373.8573 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 377.6179 140.1131)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.1794 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 391.9399 140.1131)\\\" x=\\\"0 5.56 11.12 14.45 22.78 25.06 27.84 30.62 36.18\\\">permitted</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 433.6831 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 437.4437 140.1131)\\\" x=\\\"0 5.56 11.12 14.45 20.01 25.57 31.13 36.69 42.25\\\">hereunder</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 483.0345 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 486.795 140.1131)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 503.4796 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 507.2402 140.1131)\\\" x=\\\"0 5 10.56 13.89 17.22 22.78 28.34 33.9 39.46\\\">surrender</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 550.038 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.7986 140.1131)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 128.7947)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 78.493 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.5631 128.7947)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 89.4049 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 92.4749 128.7947)\\\" x=\\\"0 2.28 5.06\\\">its</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 102.5335 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 105.6036 128.7947)\\\" x=\\\"0 5.56 8.89 11.17 16.73 19.01 24.57 30.13\\\">original</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 138.0206 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 141.0907 128.7947)\\\" x=\\\"0 5 10.56 16.12 21.68 23.96 26.74 29.02 34.58 40.14\\\">condition,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 184.0155 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 187.0856 128.7947)\\\" x=\\\"0 2.28 7.84 12.84\\\">less</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 204.9274 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 207.9975 128.7947)\\\" x=\\\"0 3.33 8.89 14.45 19.45 25.01 30.57 36.13 41.69 43.97\\\">reasonable</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.5385 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 260.6086 128.7947)\\\" x=\\\"0 7.22 12.78 18.34\\\">wear</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 282.2834 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 285.3535 128.7947)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.038 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 305.1081 128.7947)\\\" x=\\\"0 2.78 8.34 13.9 17.23\\\">tear,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 325.1179 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 328.188 128.7947)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.7495 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 341.8196 128.7947)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 350.1594 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 353.2295 128.7947)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 367.1309 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 370.201 128.7947)\\\" x=\\\"0 5.56 11.12\\\">end</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 386.8855 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 389.9556 128.7947)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 398.2955 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 401.3656 128.7947)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 406.9271 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 409.9972 128.7947)\\\" x=\\\"0 2.28 7.84 13.4 18.4\\\">lease</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 433.962 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 437.0321 128.7947)\\\" x=\\\"0 2.78 8.34 11.67 20\\\">term,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 459.8104 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 462.8805 128.7947)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 471.7721 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 474.8422 128.7947)\\\" x=\\\"0 3.33 5.61 7.89 10.17\\\">(iii)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 488.3432 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 491.4133 128.7947)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 504.1965 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 507.2666 128.7947)\\\" x=\\\"0 2.78 8.34 11.67 20 22.28 27.84 33.4 36.18\\\">terminate</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.0097 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 552.0798 128.7947)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 117.4764)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 89.616 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 93.7725 117.4764)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 101.6143 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 105.7709 117.4764)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 111.3324 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 115.4889 117.4764)\\\" x=\\\"0 8.33 13.89 19.45 25.01 30.57\\\">manner</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 149.3952 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 153.5517 117.4764)\\\" x=\\\"0 5.56 11.12 14.45 22.78 25.06 27.84 30.62 36.18\\\">permitted</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 195.2948 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 199.4514 117.4764)\\\" x=\\\"0 5.56 11.12 14.45 20.01 25.57 31.13 36.69 42.25 45.58\\\">hereunder,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.8205 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 251.977 117.4764)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 267.5971 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 271.7537 117.4764)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 320.6697 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 324.8262 117.4764)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.8887 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 343.0452 117.4764)\\\" x=\\\"0 5.56 11.12 13.9 19.46 27.79 33.35 36.13 38.41 43.41 48.97 51.25 53.53\\\">automatically</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 401.5804 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 405.7369 117.4764)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 422.4215 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 426.578 117.4764)\\\" x=\\\"0 3.33 8.89 14.45 20.01 25.57 28.35 33.91 39.47 41.75\\\">repeatedly</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 473.3358 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 477.4923 117.4764)\\\" x=\\\"0 3.33 8.89 14.45 20.01\\\">renew</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 504.7287 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 508.8852 117.4764)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 520.5551 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 524.7116 117.4764)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.74 24.02 29.58 35.14 40.7\\\">additional</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 106.158)\\\" x=\\\"0 2.28 7.84 13.4 18.4 23.96 26.62 29.4 34.96 38.29 46.62 51.62 54.4 57.06 62.62 68.18 73.18 78.74 81.4 86.96 92.52 95.18 100.74 106.3 111.3 116.3 118.96 121.24 126.8 129.46 131.74 137.3 142.86 148.42 151.2 156.76\\\">lease terms, each 60 days in length.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 94.8397)\\\" x=\\\"0 8.33 13.89 16.17 21.73 24.51 30.07 35.63 41.19 46.75 51.75\\\">Maintenance</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 98.0193 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 101.2487 94.8397)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 109.5885 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 112.8178 94.8397)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 126.7192 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 129.9485 94.8397)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 170.5198 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 173.7491 94.8397)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 191.5421 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 194.7714 94.8397)\\\" x=\\\"0 5.56 8.89\\\">are</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.2246 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 212.4539 94.8397)\\\" x=\\\"0 3.33 8.89 13.89 19.45 25.01 30.57 35.57 37.85 43.41 45.69\\\">responsible</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 263.7136 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 266.943 94.8397)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 278.6129 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 281.8422 94.8397)\\\" x=\\\"0 8.33 13.89 16.17 21.73 24.51 30.07 32.35 37.91 40.19 45.75\\\">maintaining</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 333.1606 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 336.3899 94.8397)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 345.2815 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 348.5108 94.8397)\\\" x=\\\"0 5 10.56 13.89 18.89 21.17 26.17 28.45 34.01\\\">servicing</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.086 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 391.3154 94.8397)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 405.2167 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 408.446 94.8397)\\\" x=\\\"0 5.56 8.89 14.45 20.01 25.57 28.9 31.68\\\">property</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 445.1306 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 448.3599 94.8397)\\\" x=\\\"0 7.22 12.78 15.06 17.34\\\">while</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 471.2652 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 474.4945 94.8397)\\\" x=\\\"0 2.28\\\">it</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 479.5531 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 482.7825 94.8397)\\\" x=\\\"0 2.28 5.06\\\">its</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 492.8411 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 496.0704 94.8397)\\\" x=\\\"0 5.56 11.12 13.4 18.96\\\">being</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 520.5968 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 523.8261 94.8397)\\\" x=\\\"0 2.28 7.84 13.4 18.4 23.96 29.52\\\">leased.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 556.1308 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 559.3601 94.8397)\\\" x=\\\"0 2.78\\\">In</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 83.5213)\\\" x=\\\"0 5.56 10.56 15.56 21.12 24.45 30.01 35.57 41.13 46.13\\\">accordance</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 92.3992 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 95.7041 83.5213)\\\" x=\\\"0 7.22 9.5 12.28\\\">with</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 113.5459 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 116.8509 83.5213)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 132.471 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 135.7759 83.5213)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 187.4702 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 190.7752 83.5213)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 206.8982 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.2031 83.5213)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 224.2656 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 227.5706 83.5213)\\\" x=\\\"0 5 10.56 16.12 21.68 27.24 32.24\\\">conduct</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.595 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 265.8999 83.5213)\\\" x=\\\"0 5.56 7.84\\\">all</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.022 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 279.3269 83.5213)\\\" x=\\\"0 8.33 13.89 16.17 21.73 24.51 30.07 35.63 41.19 46.75 51.75 57.31\\\">maintenance,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 339.4246 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 342.7295 83.5213)\\\" x=\\\"0 3.33 8.89 14.45 20.01 22.29 25.62 30.62\\\">repairs,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 376.1328 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 379.4377 83.5213)\\\" x=\\\"0 5.56 11.12 16.12 21.68 27.24\\\">upkeep</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 412.2454 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 415.5503 83.5213)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 432.2349 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 435.5398 83.5213)\\\" x=\\\"0 5 10.56 13.89 19.45\\\">care.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 457.7712 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 461.0762 83.5213)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.6328 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 469.9377 83.5213)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.0608 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 489.3657 83.5213)\\\" x=\\\"0 8.33 13.89 19.45 25.01 27.79 33.35 38.35 41.13 46.69 50.02 55.58 58.91 61.13\\\">manufacturer’s</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 555.5034 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 558.8083 83.5213)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 83.5213)\\\" x=\\\"0\\\"> </text></g><clipPath id=\\\"clip0-11\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip0-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 546.6561 L 573.6 546.6561 L 573.6 545.6561 L 34.8 545.6561 L 34.8 546.6561 z \\\"/><path clip-path=\\\"url(#clip0-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.6 545.6561 L 573.6 545.6561 L 573.6 530.3377 L 572.6 530.3377 L 572.6 545.6561 z \\\"/><path clip-path=\\\"url(#clip0-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 545.6561 L 35.8 545.6561 L 35.8 530.3377 L 34.8 530.3377 L 34.8 545.6561 z \\\"/><path clip-path=\\\"url(#clip0-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 530.3377 L 573.6 530.3377 L 573.6 529.3377 L 34.8 529.3377 L 34.8 530.3377 z \\\"/><path clip-path=\\\"url(#clip0-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 81.9217 L 573.6 81.9217 L 573.6 80.9217 L 34.8 80.9217 L 34.8 81.9217 z \\\"/><path clip-path=\\\"url(#clip0-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.6 529.3377 L 573.6 529.3377 L 573.6 81.9217 L 572.6 81.9217 L 572.6 529.3377 z \\\"/><path clip-path=\\\"url(#clip0-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 529.3377 L 35.8 529.3377 L 35.8 81.9217 L 34.8 81.9217 L 34.8 529.3377 z \\\"/><g clip-path=\\\"url(#clip0-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 36.5264)\\\" x=\\\"0 6.498 11.997 14.391 16.785 21.789 26.793 29.295 34.299 39.303 44.307 504 506.3906 508.7812 511.1719 513.5625 515.9531 518.3438 520.7344 523.125 525.5156\\\">UT  07/2019          </text></g><g clip-path=\\\"url(#clip0-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 26.3398)\\\" x=\\\"0 6.003 11.007 16.011 21.015\\\">Page </text></g><g clip-path=\\\"url(#clip0-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 55.8097 26.3398)\\\" x=\\\"0\\\">1</text></g><g clip-path=\\\"url(#clip0-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.815 26.3398)\\\" x=\\\"0 2.394 7.398 9.9\\\"> of </text></g><g clip-path=\\\"url(#clip0-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 73.1021 26.3398)\\\" x=\\\"0\\\">7</text></g><g clip-path=\\\"url(#clip0-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#d9d9d9\\\" style=\\\"font-family:f0-0; font-size:54pt; white-space:pre\\\" transform=\\\"matrix(0.707 0.707 0.707 -0.707 135.6027 198.5094)\\\" x=\\\"0 56.016 96.048 136.08 176.112 216.144 236.16 284.184 324.216 344.232 364.248 416.232 456.264 480.24\\\">Qoppa Software</text></g><g clip-path=\\\"url(#clip0-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#002ba6\\\" style=\\\"font-family:f0-0; font-size:9pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.932 772)\\\" x=\\\"0 9.336 16.008 22.68 29.352 36.024 39.36 47.364 54.036 57.372 60.708 69.372 76.044 80.04 86.712 90.048 94.044 97.38 104.712 111.384 115.38 118.716 126.72 132.72 139.392 142.056 148.728 155.4 158.736 161.4 168.072 174.744 178.08 187.416 194.088 196.752 202.752 206.088 210.084 213.42 220.092 223.428 226.764 233.436 239.436 242.772 246.108 249.444 258.108 266.772 275.436 278.772 285.444 292.116 298.788 305.46 312.132 315.468 321.468 328.14\\\">Qoppa Software - For Evaluation Only - https://www.qoppa.com</text></g></g></svg></svg></g></svg><br>\\n<?xml version='1.0' encoding='UTF-8'?><svg id=\\\"qoppa_document\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" version=\\\"1.1\\\" xmlns=\\\"http://www.w3.org/2000/svg\\\" xmlns:xlink=\\\"http://www.w3.org/1999/xlink\\\"><!-- jPDFWeb v2019R1.03 - Demo Version --><style>title p { display: block; }</style><g id=\\\"qoppa_viewxform\\\" transform=\\\"matrix(1 0 0 1 0 0)\\\"><style type=\\\"text/css\\\">@font-face {font-family:f1-0;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f1-1;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f1-2;src:url(\\\"data:application/font-woff;charset=utf-8;base64,d09GRgABAAAAAAW8AAoAAAAABzQAAQABAAAAAAAAAAAAAAAAAAAAAAAAAABPUy8yAAAA9AAAADcAAABWWalZZmNtYXAAAAEsAAAAUwAAAGwBegIKZ2x5ZgAAAYAAAALfAAADgId/tkZoZWFkAAAEYAAAADMAAAA2GHlkumhoZWEAAASUAAAAIAAAACQGIAKxaG10eAAABLQAAAA0AAAARCRzAuxsb2NhAAAE6AAAACQAAAAkBYYGdm1heHAAAAUMAAAAGAAAACAAFAAzbmFtZQAABSQAAACMAAABPhepMhlwb3N0AAAFsAAAAAwAAAAgAAMAAHicY2Bk8mKcwMDKwMDUxbSbARlwMeogc/8DATI/MCDAkUEBCG8y3fifzBDFdINhLkwOAMp0DLgAeJxjYGBgZGAGYgYGHgYWhgQgLcIgABRhYVBgcGRwZXBn8GTwZwhmCGWI//8fKAsSdQaL+sBE/z/+f/j/of8H/x/4v+//7v+7/m8Em4cBADR/GXUAeJx9kk1ME0EYhmcGu42lUTZQQEgKy5oWQktLt0vbAG20WwJ0m1YskKalbKG7EH7CQYkajAnFGIrCRaUGEE1MxL+bBw/ECzdT0YsHUG8cvZDozXTrbFuMJ2eyySQz7/e+37MfQAAvtImyAAENALAcQtpIqWnIwL1b1+Hnqcvyl+A4JCV4Hgbkt/L3w0P8Fj8EbflfaBsdAAoAVZPRwNodHYytprqGNhgNdJOa0FXVVDM2R4eDIdQEXMhE8crMDwxoEgTLXpr14DUdttvVCU0wpB1PvnqdTHo8E97m5n7/vRU/39ISuOJ241QhnO8J9iQACUAl00hWULRDKczajYZWGDqCM/KDo/jSpsvlcm4toay8LWfCfb23F3t6lJyKXsT6cgBaIEnpShuJuR9IJUfgXXkevkPZwa+DP//29QH3Rf+/L5ZmKZI2EjC9KQijoxuLQ4PlY4TLFZvjvBw3t8G/h7Xe2j5tUnzxUhQ97kmf0ejnV9I8L80Oyff9w4pXFDvu4mxlADA0yewKggK3mFmDj6pCZoakkEbuicMYyubSJ/fH+F4LAEWTZXQZidX1kEHHkf3wfmRtb28NCbmnhS+be4PCJU0Ka04rGqgIcGWUGpPTEQFeiyJ77iN+m0UsZq4w+IYZnAUN2A53r6tSE3SJRmWJ/QkMeGcdAxDWM0IiIaxP+ziOm5rx+TgfOpCknR1RFKXnO5KUmwnwy7h9nk8v8wFQYG3CPhPYp73I2shUF2dGKa/sf+CfuBW3kgfGH/n9p2Lqzq5wsN1qsy0ssB09vqs3+vtVI2eeBU2tdJMw6nLigerTermpkMHQSDk76+vr6ixtgWGn0+WUUnp9uxlX0+mqWk29I91dCiecSeF0rpTJwOIfUJrlwlGtzPPkTbe7oiJutURjFovQ0OBxa63WCxeH4LacXDWbTOZVuCWPpbrdej2A+d/5cWTOP1T+s4piKWTOfUK2xzYA/gBtBuJcAHicY2BkYGAA4rxdv17H89t8ZeBmfgEUYbhtLnAWRv///T+Z6QPTDaA6DgYmkCgAl1oOtgB4nGNgZGBguvE/mSGK2fH/7/+/mT4wAEVQgCAAvv0H1HicY2CAAEZfCGaaDcSXGPSAOADIDmDmYtBjFGOIZtIBsh2BYpcgYkA5HbAajf+/AR7DC3wAAAAAAAAAAAAAABwAUABwAIgAvgDKANoA9AEKAT4BiAGyAcB4nGNgZGBgEGQwYmBiAAFGBjQAAAcrAEh4nJWOMQ6CUBBEH4KKrZUlpRURQkUptZWJhZ1RURPiJ0BD41E8BudzhH8AyGaTN7OTyQJLzrg43gpYawd22EoNPMMntewSsrfsiUvLczZ8LS/kd2QYXVsqXjx40nAQXaUNtTaXE3Dkwlv6T/c+m6vfUHAbnf+QEE9Mn3pdyzFKBET6eaeZ1PIDR/8t33icY2BmwAsAAH0ABA==\\\");}@font-face {font-family:f1-3;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}</style><svg id=\\\"qoppa_page_p1\\\" class=\\\"qoppa_page\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\"><rect class=\\\"qoppa_pageborder\\\" x=\\\"0.5pt\\\" y=\\\"0.5pt\\\" width=\\\"611pt\\\" height=\\\"791pt\\\" fill=\\\"none\\\" /><svg class=\\\"qoppa_pagecontents\\\" x=\\\"0pt\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" viewBox=\\\"0 0 612 792\\\" ><g class=\\\"qoppa_contentstream\\\" transform=\\\"matrix(1 0 0 -1 0 792)\\\" fill=\\\"black\\\" stroke=\\\"black\\\" stroke-width=\\\"1\\\" stroke-linecap=\\\"butt\\\" stroke-linejoin=\\\"miter\\\" stroke-miterlimit=\\\"10\\\"><clipPath id=\\\"clip1-1\\\"><path d=\\\"M 35 487 L 574 487 L 574 770 L 35 770 L 35 487 z \\\"/></clipPath><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 759.4812)\\\" x=\\\"0 5 10.56 12.84 15.12 20.68 24.01 26.23\\\">seller’s</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 71.9353 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 75.2187 759.4812)\\\" x=\\\"0 7.22 12.78 16.11 19.44 25 30.56 33.34\\\">warranty</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 113.5635 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 116.8468 759.4812)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 124.1271 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 127.4105 759.4812)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 135.2523 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 138.5357 759.4812)\\\" x=\\\"0 2.78 8.34 11.67 16.67\\\">force</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.7671 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 164.0505 759.4812)\\\" x=\\\"0 7.22 12.78 18.34\\\">when</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 187.9567 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 191.2401 759.4812)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 207.3631 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.6465 759.4812)\\\" x=\\\"0 5.56 10.56 16.12 21.68 23.96 27.29\\\">acquire</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 243.503 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 246.7863 759.4812)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 260.6877 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 263.9711 759.4812)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 304.5424 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 307.8258 759.4812)\\\" x=\\\"0 2.28\\\">it</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.8844 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 316.1677 759.4812)\\\" x=\\\"0 5 10.56 16.12 18.4\\\">shall</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 336.8513 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 340.1347 759.4812)\\\" x=\\\"0 5.56\\\">be</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.2578 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 354.5411 759.4812)\\\" x=\\\"0 2.78 6.11 11.67 17.23 22.23 25.01 30.57 33.9 37.23 42.79\\\">transferred</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.8956 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 406.179 759.4812)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 414.5188 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 417.8022 759.4812)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 433.9253 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 437.2086 759.4812)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 442.2672 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 445.5506 759.4812)\\\" x=\\\"0 5.56 7.84 10.12 15.68 22.9 28.46\\\">allowed</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 479.5789 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 482.8623 759.4812)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 493.4238 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 496.7072 759.4812)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 510.6086 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 513.892 759.4812)\\\" x=\\\"0 2.78 8.34 11.67 20\\\">terms</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 538.892 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 542.1754 759.4812)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 550.5152 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.7986 759.4812)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 748.1629)\\\" x=\\\"0 7.22 12.78 16.11 19.44 25 30.56 33.34 38.34\\\">warranty.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 736.8445)\\\" x=\\\"0 5.56 11.12 16.12 18.9\\\">Lost,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 62.3797 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 65.5493 736.8445)\\\" x=\\\"0 6.67 9.45 15.01 17.29 22.85 28.41\\\">Stolen,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 96.7407 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 99.9104 736.8445)\\\" x=\\\"0 7.22 12.78 21.11 26.67 32.23 37.79 43.35\\\">Damaged,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.0481 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 149.2177 736.8445)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 158.1093 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 161.279 736.8445)\\\" x=\\\"0 7.22 12.78 17.78 20.56 23.89 29.45 34.45 40.01\\\">Destroyed</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 206.8552 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.0248 736.8445)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 250.5961 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 253.7657 736.8445)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.3224 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 262.492 736.8445)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.3934 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 279.563 736.8445)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 317.356 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 320.5256 736.8445)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 327.8059 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 330.9756 736.8445)\\\" x=\\\"0 2.28 7.84 12.84 15.62\\\">lost,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 349.374 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 352.5437 736.8445)\\\" x=\\\"0 5 7.78 13.34 15.62 21.18 26.74\\\">stolen,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 382.0651 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 385.2348 736.8445)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57 36.13\\\">damaged</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 426.934 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 430.1037 736.8445)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 438.9952 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 442.1649 736.8445)\\\" x=\\\"0 5.56 11.12 16.12 18.9 22.23 27.79 32.79 38.35 43.91\\\">destroyed,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 488.8592 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 492.0289 736.8445)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 508.1519 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 511.3216 736.8445)\\\" x=\\\"0 5.56 11.12 14.45 20.01\\\">agree</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 536.8977 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 540.0674 736.8445)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 548.4072 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 551.5769 736.8445)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 725.5262)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 51.2615 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 55.736 725.5262)\\\" x=\\\"0 5.56\\\">at</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 64.0758 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 68.5503 725.5262)\\\" x=\\\"0 5.56 11.12 16.12\\\">once</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 90.2349 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 94.7094 725.5262)\\\" x=\\\"0 5.56\\\">an</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 105.8324 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 110.3069 725.5262)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 143.6614 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.1359 725.5262)\\\" x=\\\"0 5.56 11.12 16.68 22.24\\\">equal</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 172.6622 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 177.1367 725.5262)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 185.4766 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 189.951 725.5262)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 203.8524 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 208.3269 725.5262)\\\" x=\\\"0 2.28 7.84 12.84 17.84 23.4\\\">lesser</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 235.0603 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 239.5348 725.5262)\\\" x=\\\"0 5.56 8.34\\\">of:</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 250.6529 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 255.1274 725.5262)\\\" x=\\\"0 3.33 8.89\\\">(1)</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 267.3491 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 271.8236 725.5262)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 285.7249 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 290.1994 725.5262)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79 40.01\\\">Property’s</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.2141 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 339.6885 725.5262)\\\" x=\\\"0 2.78 8.34 10.62\\\">fair</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 353.6387 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 358.1132 725.5262)\\\" x=\\\"0 8.33 13.89 17.22 22.22 27.78\\\">market</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.6747 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 393.1492 725.5262)\\\" x=\\\"0 5 10.56 12.84 18.4 23.96\\\">value,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.8924 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 424.3669 725.5262)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.9284 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 439.4029 725.5262)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.7427 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 452.2172 725.5262)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.1185 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 470.593 725.5262)\\\" x=\\\"0 2.78 5.06 13.39\\\">time</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.5432 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 494.0177 725.5262)\\\" x=\\\"0 2.28\\\">it</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.0763 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 503.5508 725.5262)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 510.831 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 515.3055 725.5262)\\\" x=\\\"0 2.28 7.84 12.84 15.62\\\">lost,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 533.704 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 538.1785 725.5262)\\\" x=\\\"0 5 7.78 13.34 15.62 21.18 26.74\\\">stolen,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 714.2078)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57 36.13\\\">damaged</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 82.3992 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 86.9016 714.2078)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 95.7932 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 100.2955 714.2078)\\\" x=\\\"0 5.56 11.12 16.12 18.9 22.23 27.79 32.79 38.35\\\">destroyed</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 144.2115 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.7139 714.2078)\\\" x=\\\"0 3.33 8.89 14.45 17.23 22.79 26.12 34.45 36.73 42.29 47.85\\\">(determined</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 202.1319 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 206.6342 714.2078)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 217.1958 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 221.6981 714.2078)\\\" x=\\\"0 5.56 10.56\\\">us,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 235.038 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 239.5403 714.2078)\\\" x=\\\"0 5.56 10.56 12.84 18.4\\\">using</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 263.5052 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 268.0075 714.2078)\\\" x=\\\"0 5.56\\\">an</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 279.1306 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 283.6329 714.2078)\\\" x=\\\"0 2.28 7.84 13.4 18.96 23.96 26.74 30.07\\\">industry</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 318.7062 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 323.2085 714.2078)\\\" x=\\\"0 5 10.56 12.84 18.4\\\">value</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 347.1734 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 351.6758 714.2078)\\\" x=\\\"0 5.56 11.12 13.4 18.96\\\">guide</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 376.2021 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 380.7045 714.2078)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.4877 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 397.99 714.2078)\\\" x=\\\"0 5 10.56 12.84 18.4 23.4 26.18\\\">select,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 426.95 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 431.4524 714.2078)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 436.511 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 441.0133 714.2078)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 457.1364 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 461.6387 714.2078)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.919 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 473.4214 714.2078)\\\" x=\\\"0 5.56 10.56 16.12 18.4 20.68 26.24 31.8 34.08 39.64 42.97\\\">available);</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 519.1782 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 523.6806 714.2078)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 532.5722 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 537.0745 714.2078)\\\" x=\\\"0 3.33 8.89\\\">(2)</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.2962 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.7986 714.2078)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 702.8895)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57 33.35 36.01 41.01 46.57 52.13 54.79 62.01 67.57 73.13 75.41 80.97 83.63 89.19 94.75 100.31 105.87 108.53 111.31 116.87 119.53 125.09 130.65 135.65 138.31 143.87 146.65 149.31 154.31 159.87 164.87 170.43 173.09 175.87 178.15 186.48 192.04 194.7 197.48 203.04 205.7 211.26 216.26 221.82 225.15 230.15 232.43 237.43 242.99 245.65 248.43 253.99 259.55 262.21 267.77 273.33 278.89 282.22 289.44 295 300 302.66 310.44 316 318.78 321.06 326.62 332.18 334.84 340.4 343.73 346.39 353.06 358.62 361.95 364.23 369.23 371.89 378.56 384.12 389.12 392.45 400.23 405.79 408.57 411.23 419.01 424.57 427.35 429.63 435.19 440.75 443.53 446.19 451.75 456.75 459.41 464.97 470.53 476.09 478.37 480.65 485.65 491.21 496.77 499.05 504.61\\\">amount you would need to pay at such time to exercise the 100-Day Option or Early Buy-Out Option, as applicable.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 691.5711)\\\" x=\\\"0 7.22 12.78 15.06 20.62 25.62 28.4 33.96 36.74 42.3 50.63 56.19 61.75\\\">Reinstatement</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 105.2361 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 108.6807 691.5711)\\\" x=\\\"0 7.22 9.5 15.06 20.62 23.4 28.4\\\">Rights.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 139.8623 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 143.3069 691.5711)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 148.8635 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 152.3081 691.5711)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 168.4311 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 171.8757 691.5711)\\\" x=\\\"0 5.56 8.89\\\">are</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 186.3288 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 189.7734 691.5711)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 197.6152 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 201.0597 691.5711)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 27.3\\\">default</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.1428 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 234.5873 691.5711)\\\" x=\\\"0 5.56 11.12 16.68 19.46 25.02\\\">and/or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.9418 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 266.3864 691.5711)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.2877 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 283.7323 691.5711)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 321.5253 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 324.9698 691.5711)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 332.2501 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 335.6947 691.5711)\\\" x=\\\"0 5 10.56 13.89 17.22 22.78 28.34 33.9 39.46 42.79 48.35\\\">surrendered</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 389.6156 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 393.0601 691.5711)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 401.9517 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 405.3963 691.5711)\\\" x=\\\"0 3.33 8.89 14.45 20.01 25.01 30.01 35.57 40.57 45.57 51.13 56.69\\\">repossessed,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 464.8738 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 468.3184 691.5711)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.4414 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 487.886 691.5711)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 506.7776 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 510.2222 691.5711)\\\" x=\\\"0 3.33 8.89 11.17 16.73 21.73 24.51 30.07 32.85\\\">reinstate</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 548.6353 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 552.0798 691.5711)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 680.2527)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 89.616 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 92.7055 680.2527)\\\" x=\\\"0 7.22 9.5 12.28 17.84 23.4 28.96\\\">without</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 124.4487 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 127.5382 680.2527)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68\\\">losing</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 153.7833 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 156.8728 680.2527)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 172.9958 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 176.0853 680.2527)\\\" x=\\\"0 3.33 5.61 11.17 16.73 19.51\\\">rights</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 200.597 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 203.6865 680.2527)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 212.5781 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 215.6676 680.2527)\\\" x=\\\"0 5.56 11.12 13.9 16.18 21.74 27.3\\\">options</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.9723 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 251.0618 680.2527)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 261.6234 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 264.7129 680.2527)\\\" x=\\\"0 5.56 11.12 16.12 18.4 23.96 29.52\\\">paying:</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 297.0175 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 300.1071 680.2527)\\\" x=\\\"0 3.33 5.61\\\">(i)</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 309.0475 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 312.137 680.2527)\\\" x=\\\"0 5.56 7.84\\\">all</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 322.2591 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 325.3485 680.2527)\\\" x=\\\"0 5.56 11.12 16.12\\\">past</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 344.2499 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 347.3394 680.2527)\\\" x=\\\"0 5.56 11.12\\\">due</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 364.024 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 367.1135 680.2527)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01 30.57 35.57\\\">charges;</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 405.468 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 408.5575 680.2527)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 425.242 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 428.3315 680.2527)\\\" x=\\\"0 3.33 5.61 7.89\\\">(ii)</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 439.5523 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 442.6418 680.2527)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.7003 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 450.7898 680.2527)\\\" x=\\\"0 5.56 7.84 10.12 15.68 22.9 28.46\\\">allowed</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.8182 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 487.9077 680.2527)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 498.4692 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 501.5587 680.2527)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64\\\">applicable</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 546.7686 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 549.8581 680.2527)\\\" x=\\\"0 2.28 7.84 15.06\\\">law,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 668.9344)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 54.6014 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 59.0196 668.9344)\\\" x=\\\"0 3.33 8.89 14.45 19.45 25.01 30.57 36.13 41.69 43.97\\\">reasonable</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 108.5606 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 112.9789 668.9344)\\\" x=\\\"0 5 10.56 15.56 18.34\\\">costs</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.3187 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 140.737 668.9344)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 149.0768 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 153.4951 668.9344)\\\" x=\\\"0 5.56 7.84 12.84 17.84 23.4\\\">pickup</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 182.4599 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 186.8782 668.9344)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 203.5627 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 207.981 668.9344)\\\" x=\\\"0 3.33 8.89 14.45 20.01 22.29 24.57 29.57 35.13 38.46 43.46\\\">redelivery.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 254.2261 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 258.6444 668.9344)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.4373 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 280.8556 668.9344)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.7472 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 304.1654 668.9344)\\\" x=\\\"0 5.56 10.56 16.12 19.45 24.45 26.73 31.73\\\">exercise</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 341.4604 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 345.8786 668.9344)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 365.3317 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 369.75 668.9344)\\\" x=\\\"0 3.33 8.89 11.17 16.73 21.73 24.51 30.07 32.85 38.41 46.74 52.3 57.86\\\">reinstatement</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.3945 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 434.8128 668.9344)\\\" x=\\\"0 3.33 5.61 11.17 16.73\\\">right</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.3245 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 458.7428 668.9344)\\\" x=\\\"0 7.22 9.5 12.28 17.84 20.12\\\">within</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.4263 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 488.8446 668.9344)\\\" x=\\\"0 5.56 11.12\\\">180</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 505.5292 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 509.9474 668.9344)\\\" x=\\\"0 5.56 11.12 16.12\\\">days</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 531.0705 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 535.4887 668.9344)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 543.8286 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 548.2468 668.9344)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 657.616)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 27.3 30.08 32.74 38.3 41.63 44.29 49.29 54.85 58.18 61.51 67.07 72.63 78.19 83.75 87.08 89.86 93.19 98.75 104.31 109.87 114.87 119.87 125.43 130.43 135.43 137.71 143.27 148.83 151.49 157.05 159.83 162.49 165.27 170.83 176.39 179.05 185.72 189.05 194.61 200.17 205.73 209.06 211.84 216.84 219.5 225.06 228.39 231.05 236.05 241.61 246.61 252.17 254.83 257.11 262.67 268.23 273.79 279.35 282.68 285.34 290.9 296.46 299.79 302.07 307.63 313.19 315.85 321.41 324.74 330.3 335.3 337.58 343.14 348.7 354.26 356.92 359.7 365.26 367.92 372.92 378.48 384.04 386.7 392.26 397.82 403.38 408.94 412.27 414.93 420.49 426.05 431.61 433.89 436.17 441.17 446.73 452.29 454.57 460.13 462.79 465.07 470.63 477.85\\\">default or surrender/repossession of the Property or such longer period provided to you under applicable law.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 646.2977)\\\" x=\\\"0 7.22 9.5 15.06 20.62\\\">Right</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 64.1033 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 66.9139 646.2977)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 75.2537 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 78.0643 646.2977)\\\" x=\\\"0 6.11 11.67 15 23.33 25.61 31.17 36.73 39.51 45.07\\\">Terminate.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 125.9158 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 128.7263 646.2977)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.5193 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 149.3299 646.2977)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 168.2215 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 171.032 646.2977)\\\" x=\\\"0 2.78 8.34 11.67 20 22.28 27.84 33.4 36.18\\\">terminate</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 212.7752 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 215.5857 646.2977)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 235.0388 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 237.8494 646.2977)\\\" x=\\\"0 2.28 7.84 13.4 18.4\\\">lease</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 261.8142 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 264.6248 646.2977)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.9793 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 305.7898 646.2977)\\\" x=\\\"0 5.56 11.12 13.4 15.68 21.24 26.8 29.58 31.86 37.42 42.98\\\">obligations</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 353.7781 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 356.5886 646.2977)\\\" x=\\\"0 5.56 11.12 16.68 22.24\\\">under</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 382.1648 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 384.9753 646.2977)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 400.5955 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 403.406 646.2977)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 452.322 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 455.1326 646.2977)\\\" x=\\\"0 7.22 9.5 12.28 17.84 23.4 28.96\\\">without</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.8757 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 489.6863 646.2977)\\\" x=\\\"0 5.56 11.12 16.68 22.24 24.52 27.3\\\">penalty</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.991 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 524.8015 646.2977)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 535.363 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 538.1736 646.2977)\\\" x=\\\"0 5.56 11.12 16.12 18.4 23.96\\\">paying</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 634.9793)\\\" x=\\\"0 5.56 7.84\\\">all</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 50.8221 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 53.7614 634.9793)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 88.8395 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 91.7789 634.9793)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46 44.46\\\">Payments,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 139.0201 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 141.9594 634.9793)\\\" x=\\\"0 2.78 8.34 13.9\\\">fees</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.8608 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 163.8001 634.9793)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 180.4847 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 183.424 634.9793)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01 30.57\\\">charges</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 219.0002 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 221.9396 634.9793)\\\" x=\\\"0 2.78 8.34 13.9\\\">that</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.6192 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 241.5586 634.9793)\\\" x=\\\"0 5.56 8.89\\\">are</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.0117 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 258.951 634.9793)\\\" x=\\\"0 5.56 11.12\\\">due</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.6356 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 278.575 634.9793)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 287.4666 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 290.4059 634.9793)\\\" x=\\\"0 5.56 11.12 16.12\\\">past</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 309.3073 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 312.2466 634.9793)\\\" x=\\\"0 5.56 11.12\\\">due</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 328.9312 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 331.8705 634.9793)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.5551 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 351.4944 634.9793)\\\" x=\\\"0 5 10.56 12.84 18.4 23.96 26.74 32.3 35.63 37.91 40.19\\\">voluntarily</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 396.6898 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 399.6291 634.9793)\\\" x=\\\"0 5 10.56 13.89 17.22 22.78 28.34 33.9 39.46 42.79 45.07 50.63\\\">surrendering</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 455.8303 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 458.7696 634.9793)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.6612 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 470.6005 634.9793)\\\" x=\\\"0 3.33 8.89 11.67 17.23 20.56 26.12 28.4 33.96\\\">returning</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 510.1269 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 513.0663 634.9793)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.9676 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 529.907 634.9793)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 623.6609)\\\" x=\\\"0 2.28 7.84 10.5 12.78 15.56 20.56 23.22 28.78 32.11 34.39 39.95 42.23 47.79 53.35 55.63 58.29 63.29 68.85 74.41 79.97 82.25 85.03 87.31 92.87 98.43 101.21 103.87 106.15 111.71 116.71 121.71 124.37 127.7 133.26 138.82 143.82 149.38 154.94 160.5 166.06 168.34 173.9 176.56 183.78 189.34 194.9 198.23 200.89 206.45 212.01 217.57 220.23 223.01 228.57 234.13 237.46 240.12 245.68 248.46 251.12 253.9 259.46 265.02 267.68 273.24 278.24 283.8 286.08 289.41 294.97 297.75 300.03 305.59 311.15 313.81 319.37 322.15 324.81 330.37 335.93 340.93 343.59 345.87 351.43 356.99 361.99 367.55 370.21 372.99 378.55 381.88 390.21\\\">in its original condition, less reasonable wear and tear at the expiration of any lease term.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 612.3426)\\\" x=\\\"0 5.56 11.12 13.9\\\">Late</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.1629 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 63.3819 612.3426)\\\" x=\\\"0 6.11 11.67 17.23 22.23\\\">Fees.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 88.3917 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 91.6107 612.3426)\\\" x=\\\"0 9.44\\\">We</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 106.6107 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 109.8297 612.3426)\\\" x=\\\"0 3.33 8.89 13.89 19.45 22.78 27.78\\\">reserve</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 143.1744 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 146.3934 612.3426)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.2948 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 163.5138 612.3426)\\\" x=\\\"0 3.33 5.61 11.17 16.73\\\">right</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 183.0255 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 186.2445 612.3426)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 194.5844 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 197.8034 612.3426)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01\\\">charge</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 228.3796 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 231.5986 612.3426)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 237.1601 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 240.3791 612.3426)\\\" x=\\\"0 2.28 7.84 10.62\\\">late</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.5608 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 259.7798 612.3426)\\\" x=\\\"0 2.78 8.34\\\">fee</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 273.6811 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 276.9002 612.3426)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 288.5701 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 291.7891 612.3426)\\\" x=\\\"0 5.56 11.12 16.12\\\">past</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 310.6905 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 313.9095 612.3426)\\\" x=\\\"0 5.56 11.12\\\">due</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 330.594 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 333.8131 612.3426)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57 38.35 43.35\\\">payments,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 379.9459 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 383.1649 612.3426)\\\" x=\\\"0 5.56 8.34 11.12 16.68\\\">after</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.1747 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 406.3937 612.3426)\\\" x=\\\"0 5.56 7.84 10.12 15.68 22.9 25.18 30.74\\\">allowing</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 442.7023 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 445.9213 612.3426)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 457.5912 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 460.8102 612.3426)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 476.9333 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 480.1523 612.3426)\\\" x=\\\"0 5.56 8.89 14.45 19.45\\\">grace</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 505.1669 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 508.3859 612.3426)\\\" x=\\\"0 5.56 11.12 14.45 16.73 22.29 27.85\\\">period,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 539.0207 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 542.2397 612.3426)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 550.5796 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.7986 612.3426)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 601.0242)\\\" x=\\\"0 2.28 7.84 12.84 17.84 23.4\\\">lesser</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 67.4334 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 70.2009 601.0242)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 78.5407 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.3082 601.0242)\\\" x=\\\"0 3.33 5.61\\\">(i)</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 90.2486 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 93.0161 601.0242)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 106.9175 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 109.6849 601.0242)\\\" x=\\\"0 3.33 8.89 11.67\\\">rate</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 126.9164 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 129.6839 601.0242)\\\" x=\\\"0 5.56 7.84 10.12 15.68 22.9 28.46\\\">allowed</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 163.7122 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 166.4797 601.0242)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 177.0412 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 179.8087 601.0242)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64\\\">applicable</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.0186 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 227.7861 601.0242)\\\" x=\\\"0 2.28 7.84\\\">law</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 242.8496 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 245.6171 601.0242)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 254.5087 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 257.2761 601.0242)\\\" x=\\\"0 3.33 5.61 7.89\\\">(ii)</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 268.4968 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 271.2643 601.0242)\\\" x=\\\"0 5.56 11.12 13.9 19.46\\\">$2.00</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 296.2887 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 299.0562 601.0242)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 310.7261 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 313.4936 601.0242)\\\" x=\\\"0 7.22 12.78 18.34 23.34 25.62 30.62\\\">weekly,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 346.8969 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 349.6644 601.0242)\\\" x=\\\"0 5.56 7.84 15.06 20.62 26.18 31.18 33.46 38.46\\\">biweekly,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 390.9095 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 393.677 601.0242)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.5686 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 405.3361 601.0242)\\\" x=\\\"0 5 10.56 18.89 21.17 24.5 32.83 38.39 43.95 46.73 52.29 54.57\\\">semi-monthly</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 464.9113 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 467.6787 601.0242)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57 38.35 43.35\\\">payments,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 513.8116 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 516.579 601.0242)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 525.4706 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 528.2381 601.0242)\\\" x=\\\"0 5.56 11.12 13.9 19.46\\\">$5.00</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.2625 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 556.03 601.0242)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 589.7059)\\\" x=\\\"0 8.33 13.89 19.45 22.23 27.79 30.07 35.07 37.73 43.29 48.85 53.85 62.18 67.74 73.3 76.08 81.08\\\">monthly payments.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 578.3875)\\\" x=\\\"0 7.7783 10.5566 16.1182 21.6797\\\">Other</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 65.7098 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 68.366 578.3875)\\\" x=\\\"0 2.7783 11.1084 16.6699 22.2315 25.5615 28.3398 33.9014 39.4629\\\">Important</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 110.6072 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 113.2635 578.3875)\\\" x=\\\"0 6.1084 11.6699 15 23.3301 28.3301\\\">Terms.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 144.3719 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 147.0281 578.3875)\\\" x=\\\"0 6.6699 12.2314\\\">See</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 164.8211 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 167.4773 578.3875)\\\" x=\\\"0 2.7783 8.3398\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 181.3787 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 184.035 578.3875)\\\" x=\\\"0 5.5615 8.3398 13.9014 19.4629\\\">other</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 206.8279 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 209.4842 578.3875)\\\" x=\\\"0 5.5615 11.123 14.4531 17.2314\\\">parts</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.7156 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 234.3719 578.3875)\\\" x=\\\"0 5.5615\\\">of</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 242.7117 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 245.368 578.3875)\\\" x=\\\"0 2.7783 8.3398 10.6201\\\">this</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 260.9881 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 263.6443 578.3875)\\\" x=\\\"0 6.6699 12.2314 15.5615 21.123 26.6846 35.0147 40.5762 46.1377\\\">Agreement</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.5603 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 315.2166 578.3875)\\\" x=\\\"0 2.7783 8.3398\\\">for</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 326.8865 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 329.5428 578.3875)\\\" x=\\\"0 5.5615 11.1231 16.6846 18.9648 21.7432 24.0234 29.585 35.1465 40.708\\\">additional</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 372.531 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 375.1873 578.3875)\\\" x=\\\"0 2.2803 10.6103 16.1719 21.7334 25.0635 27.8418 33.4033 38.9648\\\">important</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 416.9305 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 419.5867 578.3875)\\\" x=\\\"0 2.2803 7.8418 10.6201 16.1816 19.5117 27.8418 33.4033 36.1816 38.4619 44.0234\\\">information</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 469.1717 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 471.8279 578.3875)\\\" x=\\\"0 5.5615\\\">on</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 482.951 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 485.6072 578.3875)\\\" x=\\\"0 2.7783 8.3398 11.6699 20 22.2803 27.8418 33.4033 36.1816 38.4619 44.0234\\\">termination</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 567.0691)\\\" x=\\\"0 5.5615 8.8916 14.4531 19.4531 25.0146 30.5762 36.1377 39.4678 45.0293 50.0293\\\">procedures,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 93.5076 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 96.1639 567.0691)\\\" x=\\\"0 5.5615 11.1231 14.4531 19.4531 25.0146 30.5762 35.5762\\\">purchase</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 137.3016 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 139.9578 567.0691)\\\" x=\\\"0 5.5615 11.123 13.9014 16.1816 21.7432\\\">option</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 167.2625 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 169.9187 567.0691)\\\" x=\\\"0 3.4301 5.8103 11.4719 17.1334 20.0117 25.1117\\\">rights,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 197.9088 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 200.665 567.0691)\\\" x=\\\"0 3.3801 8.9916 14.0416 19.6531 25.2646 30.8762 35.9262 38.2565 43.868 46.1983 48.5285 50.8588 53.6871 56.0174 61.6289\\\">responsibilities</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 267.3439 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 270.0502 567.0691)\\\" x=\\\"0 3.0283 8.8399\\\">for</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 282.4701 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 285.3764 567.0691)\\\" x=\\\"0 2.4303 8.1418 13.2918 18.4418\\\">loss,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 306.7465 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 309.5527 567.0691)\\\" x=\\\"0 5.6615 11.3231 19.7531 25.4146 31.0762\\\">damage</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 346.2904 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 349.0467 567.0691)\\\" x=\\\"0 5.8615\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 358.5383 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 361.4945 567.0691)\\\" x=\\\"0 5.6115 11.2231 16.2731 19.1014 22.4814 28.093 33.143 35.9713 38.3016 43.9131\\\">destruction</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 411.0191 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 413.7254 567.0691)\\\" x=\\\"0 5.8615\\\">of</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 422.6652 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 425.6215 567.0691)\\\" x=\\\"0 3.0283 8.8398\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 440.2729 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 443.1791 567.0691)\\\" x=\\\"0 6.7699 10.2 15.8615 21.523 27.1846 30.6146 33.493 38.593\\\">Property,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.6504 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 487.4066 567.0691)\\\" x=\\\"0 5.6615 10.7615 13.6398 19.3014 24.9629\\\">actual</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 514.7498 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 517.506 567.0691)\\\" x=\\\"0 5.6615\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.5976 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 529.3539 567.0691)\\\" x=\\\"0 2.3803 10.8103 16.4719 18.8522 21.2324 26.894\\\">implied</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 555.7508)\\\" x=\\\"0 7.2717 12.8832 16.2633 19.6434 25.2549 30.8664 33.6947 36.025 41.6365 46.6865\\\">warranties,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 90.2148 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 92.9211 555.7508)\\\" x=\\\"0 2.8283 8.4398 13.4898 19.1014 24.1514\\\">taxes,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 119.9008 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 122.607 555.7508)\\\" x=\\\"0 5.7115 8.6398 14.3514 20.0629\\\">other</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.15 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.9563 555.7508)\\\" x=\\\"0 5.1 10.7615 16.423 19.8531 25.5146 31.1762\\\">charges</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 185.2324 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 187.9887 555.7508)\\\" x=\\\"0 5.6115 11.223\\\">and</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 204.8232 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 207.5295 555.7508)\\\" x=\\\"0 5.5615 11.1231 16.6846 22.2461 24.5264 27.3047 29.585 35.1465\\\">penalties</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.676 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 250.3322 555.7508)\\\" x=\\\"0 5 10.5615\\\">you</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 266.4553 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 269.1115 555.7508)\\\" x=\\\"0 8.3301 13.8916\\\">may</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 288.0031 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 290.6594 555.7508)\\\" x=\\\"0 2.2803 7.8418 12.8418 18.4033 21.7334\\\">incur,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 315.1711 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 317.8273 555.7508)\\\" x=\\\"0 5.5615 11.123\\\">and</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 334.5119 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 337.1682 555.7508)\\\" x=\\\"0 5.5615 8.3398 13.9014 19.4629\\\">other</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.9611 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 362.6174 555.7508)\\\" x=\\\"0 2.2803 10.6103 16.1719 21.7334 25.0635 27.8418 33.4033 38.9648\\\">important</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 404.3605 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.0168 555.7508)\\\" x=\\\"0 2.2803 7.8418 10.6201 16.1816 19.5117 27.8418 33.4033 36.1816 38.4619 44.0234 49.585\\\">information.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 459.3801 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 462.0363 555.7508)\\\" x=\\\"0 6.6699 12.2314\\\">You</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 479.8293 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 482.4855 555.7508)\\\" x=\\\"0 5.5615 10.5615 15.5615 21.1231 26.6846 33.9063 36.1865 41.7481 47.3096 52.8711\\\">acknowledge</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 540.9182 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 543.5744 555.7508)\\\" x=\\\"0 2.7783 8.3398 13.9014\\\">that</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 544.4324)\\\" x=\\\"0 7.2717\\\">we</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 53.5832 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 56.2895 544.4324)\\\" x=\\\"0 5.5615 8.8916 14.4531 19.4531 21.7334 27.2949 32.8564\\\">provided</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 94.7074 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 97.3637 544.4324)\\\" x=\\\"0 5 10.5615\\\">you</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 113.4867 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 116.143 544.4324)\\\" x=\\\"0 7.2217 9.502 12.2803\\\">with</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 133.9848 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 136.641 544.4324)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 142.4525 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 145.3588 544.4324)\\\" x=\\\"0 5 10.5615 18.8916 24.4531 26.7334 32.2949 35.0733 40.6348\\\">completed</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 191.5551 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 194.2113 544.4324)\\\" x=\\\"0 5 10.5615 16.1231\\\">copy</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 215.3344 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 217.9906 544.4324)\\\" x=\\\"0 5.6115\\\">of</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 226.4305 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 229.1367 544.4324)\\\" x=\\\"0 2.7783 8.3398 10.6201\\\">this</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 244.7568 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 247.4131 544.4324)\\\" x=\\\"0 6.6699 12.2315 15.5615 21.123 26.6846 35.0146 40.5762 46.1377 48.916\\\">Agreement.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.1074 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 301.7637 544.4324)\\\" x=\\\"0 6.6699 12.2314\\\">You</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.5566 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 322.2129 544.4324)\\\" x=\\\"0 5.5615 10.5615 15.5615 21.123 26.6846 33.9062 36.1865 41.748 47.3096 52.8711\\\">acknowledge</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.6455 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 383.3017 544.4324)\\\" x=\\\"0 2.7783 8.3399 13.9014\\\">that</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 399.9814 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 402.6377 544.4324)\\\" x=\\\"0 7.2717\\\">we</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 415.5209 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 418.2271 544.4324)\\\" x=\\\"0 8.3301 13.8916 19.4531\\\">made</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 443.2418 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 445.898 544.4324)\\\" x=\\\"0 2.7783 8.3399\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 459.7994 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 462.8557 544.4324)\\\" x=\\\"0 5.5615 7.8418 12.8418 17.8418 20.1221 25.6836 30.6836 36.2451 39.5752 45.1367\\\">disclosures</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.9924 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 516.0486 544.4324)\\\" x=\\\"0 5.6115\\\">at</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 524.4885 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 527.5447 544.4324)\\\" x=\\\"0 5.6115\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 533.1141)\\\" x=\\\"0 5.5615 11.123 13.9014 19.4629 22.793\\\">before</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 69.0545 533.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 72.1107 533.1141)\\\" x=\\\"0 2.7783 8.3398\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 86.0121 533.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 89.0684 533.1141)\\\" x=\\\"0 5 10.5615 16.123 21.123 26.6846 35.0146 43.3447 48.9062 51.6846 53.9648 59.5264\\\">consummation</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 154.1562 533.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 157.2125 533.1141)\\\" x=\\\"0 5.6115\\\">of</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 165.6523 533.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 168.7086 533.1141)\\\" x=\\\"0 2.7783 8.3398\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 182.61 533.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 185.6662 533.1141)\\\" x=\\\"0 6.6699 12.2314 15.5615 21.123 26.6846 35.0146 40.5762 46.1377 48.916\\\">Agreement.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 519.7957)\\\" x=\\\"0 6.67 8.95 11.23 13.89 19.45 22.23 27.79 33.35 36.68 39.34 42.12 47.68 53.24 58.24 60.9 68.12 73.68 75.96 80.96 86.52 89.18 97.51 103.07 108.07 110.73 116.29 121.85 124.51 129.51 135.07 140.63 143.96 149.52 155.08 160.64 163.42 166.08 168.36 173.92 178.92 181.2 186.76 192.32 197.88 200.54 203.32 208.88 214.44 219.44 222.1 224.88 230.44 233.77\\\">All other fees which may be charged, include fees for:</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 22.7 506.4773)\\\" x=\\\"0 3.33 8.89\\\">(1)</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 506.4773)\\\" x=\\\"0 3.33 8.89 12.22 14.88 22.1 27.66 30.44 36 39.33 44.89 50.45 56.01 58.67 65.34 70.9 75.9 84.23 89.79 95.35 98.13 103.13 105.79 111.35 114.68 117.34 124.56 130.12 135.68 140.68 146.24 149.02 151.8 154.08 159.08 161.36 166.92 172.48 175.26 177.92 184.03 189.59 195.15 200.71 205.71 208.37 214.48 220.04 225.6 228.38 231.04 236.6 239.26 244.82 250.38 253.16 258.72\\\">(1) Returned Payments or Nonsufficient Funds Fee: $ 20.00</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:8.25pt\\\" transform=\\\"matrix(1 0 0 -1 22.7 495.159)\\\" x=\\\"0 3.663 9.779\\\">(2)</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 495.159)\\\" x=\\\"0 3.33 8.89 12.22 14.88 22.1 27.66 29.94 35.5 40.5 43.28 48.84 51.62 57.18 65.51 71.07 76.63 79.41 82.07 88.18 93.74 99.3 104.3 107.08 109.74 116.96 122.52 128.08 133.64 136.3 139.63 145.19 147.97 153.53 159.09 162.42 165.08 167.86 173.42 178.98 184.54 187.2 192.76 195.04 200.04 205.04 210.6 216.16 218.82 224.38 229.94 235.5 238.16 241.49 247.05 252.61 258.17 260.45 262.73 267.73 273.29 276.62 281.62 284.28 289.28 294.84 300.4 303.73 309.29 314.85 319.85 322.51 328.07 330.35 332.63 338.19 345.41 350.97 356.53 359.19 364.75 369.75 372.41 374.69 380.25 387.47\\\">(2) Reinstatement Fees: None (other than pickup and redelivery charges allowed by law)</text></g><clipPath id=\\\"clip1-2\\\"><path d=\\\"M 35 448 L 574 448 L 574 488 L 35 488 L 35 448 z \\\"/></clipPath><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 35.3 487.0594 L 573.1 487.0594 L 573.1 448.1043 L 35.3 448.1043 L 35.3 487.0594 z \\\"/><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 40.7 484.0594 L 567.7 484.0594 L 567.7 450.1043 L 40.7 450.1043 L 40.7 484.0594 z \\\"/><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 40.7 484.0594 L 52.7 484.0594 L 52.7 472.0594 L 40.7 472.0594 L 40.7 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 474.8406)\\\" x=\\\"0 6.67\\\">By</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 52.3699 484.0594 L 55.3699 484.0594 L 55.3699 472.0594 L 52.3699 472.0594 L 52.3699 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 52.3699 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 55.339 484.0594 L 90.339 484.0594 L 90.339 472.0594 L 55.339 472.0594 L 55.339 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 55.339 474.8406)\\\" x=\\\"0 5 7.28 12.84 18.4 20.68 26.24 31.8\\\">signing,</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 89.924 484.0594 L 92.924 484.0594 L 92.924 472.0594 L 89.924 472.0594 L 89.924 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 89.924 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 92.8931 484.0594 L 109.8931 484.0594 L 109.8931 472.0594 L 92.8931 472.0594 L 92.8931 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 92.8931 474.8406)\\\" x=\\\"0 5 10.56\\\">you</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 109.0162 484.0594 L 112.0162 484.0594 L 112.0162 472.0594 L 109.0162 472.0594 L 109.0162 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 109.0162 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 111.9853 484.0594 L 137.9853 484.0594 L 137.9853 472.0594 L 111.9853 472.0594 L 111.9853 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 111.9853 474.8406)\\\" x=\\\"0 5.56 11.12 14.45 20.01\\\">agree</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 137.5614 484.0594 L 140.5614 484.0594 L 140.5614 472.0594 L 137.5614 472.0594 L 137.5614 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 137.5615 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 140.5306 484.0594 L 157.5306 484.0594 L 157.5306 472.0594 L 140.5306 472.0594 L 140.5306 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 140.5306 474.8406)\\\" x=\\\"0 2.78 8.34 13.9\\\">that</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 157.2103 484.0594 L 160.2103 484.0594 L 160.2103 472.0594 L 157.2103 472.0594 L 157.2103 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 157.2103 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 160.1794 484.0594 L 177.1794 484.0594 L 177.1794 472.0594 L 160.1794 472.0594 L 160.1794 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 160.1794 474.8406)\\\" x=\\\"0 5 10.56\\\">you</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 176.3024 484.0594 L 179.3024 484.0594 L 179.3024 472.0594 L 176.3024 472.0594 L 176.3024 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 176.3024 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 179.2715 484.0594 L 217.2715 484.0594 L 217.2715 472.0594 L 179.2715 472.0594 L 179.2715 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 179.2715 474.8406)\\\" x=\\\"0 3.33 8.89 13.89 19.45 21.73 26.73 32.29\\\">received</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 217.128 484.0594 L 220.128 484.0594 L 220.128 472.0594 L 217.128 472.0594 L 217.128 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 217.128 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 220.0971 484.0594 L 226.0971 484.0594 L 226.0971 472.0594 L 220.0971 472.0594 L 220.0971 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 220.0971 474.8406)\\\" x=\\\"0\\\">a</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 225.6586 484.0594 L 228.6586 484.0594 L 228.6586 472.0594 L 225.6586 472.0594 L 225.6586 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.6586 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 228.6277 484.0594 L 258.6277 484.0594 L 258.6277 472.0594 L 228.6277 472.0594 L 228.6277 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 228.6277 474.8406)\\\" x=\\\"0 2.28 7.84 13.4 15.68 21.24 23.52\\\">legible</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 257.7147 484.0594 L 260.7147 484.0594 L 260.7147 472.0594 L 257.7147 472.0594 L 257.7147 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.7147 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 260.6838 484.0594 L 282.6838 484.0594 L 282.6838 472.0594 L 260.6838 472.0594 L 260.6838 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 260.6838 474.8406)\\\" x=\\\"0 5 10.56 16.12\\\">copy</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 281.8068 484.0594 L 284.8068 484.0594 L 284.8068 472.0594 L 281.8068 472.0594 L 281.8068 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.8068 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 284.7759 484.0594 L 293.7759 484.0594 L 293.7759 472.0594 L 284.7759 472.0594 L 284.7759 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 284.7759 474.8406)\\\" x=\\\"0 5.56\\\">of</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 293.1158 484.0594 L 296.1158 484.0594 L 296.1158 472.0594 L 293.1158 472.0594 L 293.1158 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 293.1158 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 296.0849 484.0594 L 312.0849 484.0594 L 312.0849 472.0594 L 296.0849 472.0594 L 296.0849 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 296.0849 474.8406)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 311.705 484.0594 L 314.705 484.0594 L 314.705 472.0594 L 311.705 472.0594 L 311.705 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 311.705 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 314.6742 484.0594 L 366.6742 484.0594 L 366.6742 472.0594 L 314.6742 472.0594 L 314.6742 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 314.6741 474.8406)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement.</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 366.3685 484.0594 L 369.3685 484.0594 L 369.3685 472.0594 L 366.3685 472.0594 L 366.3685 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 366.3685 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 369.3376 484.0594 L 387.3376 484.0594 L 387.3376 472.0594 L 369.3376 472.0594 L 369.3376 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 369.3376 474.8406)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 387.1306 484.0594 L 390.1306 484.0594 L 390.1306 472.0594 L 387.1306 472.0594 L 387.1306 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 387.1306 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 390.0997 484.0594 L 416.0997 484.0594 L 416.0997 472.0594 L 390.0997 472.0594 L 390.0997 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 390.0997 474.8406)\\\" x=\\\"0 5.56 11.12 14.45 20.01\\\">agree</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 415.6759 484.0594 L 418.6759 484.0594 L 418.6759 472.0594 L 415.6759 472.0594 L 415.6759 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 415.6759 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 418.645 484.0594 L 427.645 484.0594 L 427.645 472.0594 L 418.645 472.0594 L 418.645 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 418.645 474.8406)\\\" x=\\\"0 2.78\\\">to</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 426.9848 484.0594 L 429.9848 484.0594 L 429.9848 472.0594 L 426.9848 472.0594 L 426.9848 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 426.9848 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 429.9539 484.0594 L 443.9539 484.0594 L 443.9539 472.0594 L 429.9539 472.0594 L 429.9539 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 429.9539 474.8406)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 443.8553 484.0594 L 446.8553 484.0594 L 446.8553 472.0594 L 443.8553 472.0594 L 443.8553 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 443.8553 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 446.8244 484.0594 L 471.8244 484.0594 L 471.8244 472.0594 L 446.8244 472.0594 L 446.8244 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 446.8244 474.8406)\\\" x=\\\"0 2.78 8.34 11.67 20\\\">terms</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 471.8244 484.0594 L 474.8244 484.0594 L 474.8244 472.0594 L 471.8244 472.0594 L 471.8244 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 471.8244 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 474.7935 484.0594 L 483.7935 484.0594 L 483.7935 472.0594 L 474.7935 472.0594 L 474.7935 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 474.7935 474.8406)\\\" x=\\\"0 5.56\\\">of</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 483.1334 484.0594 L 486.1334 484.0594 L 486.1334 472.0594 L 483.1334 472.0594 L 483.1334 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 483.1334 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 486.1025 484.0594 L 502.1025 484.0594 L 502.1025 472.0594 L 486.1025 472.0594 L 486.1025 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 486.1025 474.8406)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 501.7226 484.0594 L 504.7226 484.0594 L 504.7226 472.0594 L 501.7226 472.0594 L 501.7226 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.7226 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 504.6917 484.0594 L 553.6918 484.0594 L 553.6918 472.0594 L 504.6917 472.0594 L 504.6917 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 504.6917 474.8406)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 553.6078 484.0594 L 556.6078 484.0594 L 556.6078 472.0594 L 553.6078 472.0594 L 553.6078 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.6078 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 556.5769 484.0594 L 568.5769 484.0594 L 568.5769 472.0594 L 556.5769 472.0594 L 556.5769 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 556.5769 474.8406)\\\" x=\\\"0 5.56\\\">on</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 567.7 484.0594 L 570.7 484.0594 L 570.7 472.0594 L 567.7 472.0594 L 567.7 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 40.7 472.741 L 51.7 472.741 L 51.7 460.741 L 40.7 460.741 L 40.7 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 463.5223)\\\" x=\\\"0 5.56 7.84\\\">all</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 50.8221 472.741 L 54.8221 472.741 L 54.8221 460.741 L 50.8221 460.741 L 50.8221 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 50.8221 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 54.1471 472.741 L 60.1471 472.741 L 60.1471 460.741 L 54.1471 460.741 L 54.1471 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 54.1471 463.5223)\\\" x=\\\"0\\\">6</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 59.7087 472.741 L 63.7087 472.741 L 63.7087 460.741 L 59.7087 460.741 L 59.7087 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 59.7087 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 63.0337 472.741 L 94.0337 472.741 L 94.0337 460.741 L 63.0337 460.741 L 63.0337 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 63.0337 463.5223)\\\" x=\\\"0 5.56 11.12 16.68 22.24 27.24\\\">pages,</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 93.0582 472.741 L 97.0582 472.741 L 97.0582 460.741 L 93.0582 460.741 L 93.0582 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 93.0582 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 96.3832 472.741 L 136.3832 472.741 L 136.3832 460.741 L 96.3832 460.741 L 96.3832 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 96.3832 463.5223)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24 28.52 34.08\\\">including</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 136.0317 472.741 L 140.0317 472.741 L 140.0317 460.741 L 136.0317 460.741 L 136.0317 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.0317 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 139.3568 472.741 L 153.3568 472.741 L 153.3568 460.741 L 139.3568 460.741 L 139.3568 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 139.3568 463.5223)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 153.2581 472.741 L 157.2581 472.741 L 157.2581 460.741 L 153.2581 460.741 L 153.2581 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 153.2581 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 156.5832 472.741 L 203.5832 472.741 L 203.5832 460.741 L 156.5832 460.741 L 156.5832 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 156.5832 463.5223)\\\" x=\\\"0 3.55 10.77 16.33 21.33 24.11 29.67 38 43.56\\\">&quot;Customer</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 203.4777 472.741 L 207.4777 472.741 L 207.4777 460.741 L 203.4777 460.741 L 203.4777 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 203.4777 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 206.8028 472.741 L 265.8028 472.741 L 265.8028 460.741 L 206.8028 460.741 L 206.8028 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 206.8028 463.5223)\\\" x=\\\"0 6.67 12.23 15.01 20.57 26.13 29.46 31.74 36.74 42.3 45.08 47.36 52.92\\\">Authorization</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 265.2891 472.741 L 269.2891 472.741 L 269.2891 460.741 L 265.2891 460.741 L 265.2891 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 265.2891 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 268.6142 472.741 L 280.6142 472.741 L 280.6142 460.741 L 268.6142 460.741 L 268.6142 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 268.6142 463.5223)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 280.2841 472.741 L 284.2841 472.741 L 284.2841 460.741 L 280.2841 460.741 L 280.2841 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.2841 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 283.6092 472.741 L 328.6092 472.741 L 328.6092 460.741 L 283.6092 460.741 L 283.6092 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 283.6092 463.5223)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46\\\">Payments</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 328.0721 472.741 L 332.0721 472.741 L 332.0721 460.741 L 328.0721 460.741 L 328.0721 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 328.0721 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 331.3972 472.741 L 344.3972 472.741 L 344.3972 460.741 L 331.3972 460.741 L 331.3972 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 331.3972 463.5223)\\\" x=\\\"0 5 7.28\\\">via</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 344.239 472.741 L 348.239 472.741 L 348.239 460.741 L 344.239 460.741 L 344.239 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 344.239 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 347.564 472.741 L 375.564 472.741 L 375.564 460.741 L 347.564 460.741 L 347.564 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 347.564 463.5223)\\\" x=\\\"0 6.67 13.89 21.11 23.89\\\">ACH,&quot;</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 375.0055 472.741 L 379.0055 472.741 L 379.0055 460.741 L 375.0055 460.741 L 375.0055 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.0054 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 378.3305 472.741 L 392.3305 472.741 L 392.3305 460.741 L 378.3305 460.741 L 378.3305 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 378.3305 463.5223)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 392.2319 472.741 L 396.2319 472.741 L 396.2319 460.741 L 392.2319 460.741 L 392.2319 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 392.2319 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 395.557 472.741 L 445.557 472.741 L 445.557 460.741 L 395.557 460.741 L 395.557 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 395.557 463.5223)\\\" x=\\\"0 3.55 10.22 13.55 19.11 21.39 24.17 27.5 33.06 35.84 38.12 43.68\\\">&quot;Arbitration</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 444.8001 472.741 L 448.8001 472.741 L 448.8001 460.741 L 444.8001 460.741 L 444.8001 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 444.8001 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 448.1252 472.741 L 480.1252 472.741 L 480.1252 460.741 L 448.1252 460.741 L 448.1252 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 448.1252 463.5223)\\\" x=\\\"0 7.22 9.5 15.06 20.62 25.62\\\">Clause</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 479.3117 472.741 L 483.3117 472.741 L 483.3117 460.741 L 479.3117 460.741 L 479.3117 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 479.3117 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 482.6368 472.741 L 499.6368 472.741 L 499.6368 460.741 L 482.6368 460.741 L 482.6368 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 482.6368 463.5223)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 499.3214 472.741 L 503.3214 472.741 L 503.3214 460.741 L 499.3214 460.741 L 499.3214 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.3214 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 502.6465 472.741 L 534.6465 472.741 L 534.6465 460.741 L 502.6465 460.741 L 502.6465 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 502.6465 463.5223)\\\" x=\\\"0 9.44 15 17.28 22.28 27.84\\\">Waiver</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 533.8184 472.741 L 537.8184 472.741 L 537.8184 460.741 L 533.8184 460.741 L 533.8184 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 533.8183 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 537.1434 472.741 L 546.1434 472.741 L 546.1434 460.741 L 537.1434 460.741 L 537.1434 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 537.1434 463.5223)\\\" x=\\\"0 5.56\\\">of</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 545.4833 472.741 L 549.4833 472.741 L 549.4833 460.741 L 545.4833 460.741 L 545.4833 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 545.4833 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 548.8083 472.741 L 567.8083 472.741 L 567.8083 460.741 L 548.8083 460.741 L 548.8083 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 548.8083 463.5223)\\\" x=\\\"0 5 10.56 13.89\\\">Jury</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 567.7 472.741 L 570.7 472.741 L 570.7 460.741 L 567.7 460.741 L 567.7 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 40.7 461.4227 L 187.7 461.4227 L 187.7 449.4227 L 40.7 449.4227 L 40.7 461.4227 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 452.2039)\\\" x=\\\"0 6.11 9.44 11.72 17.28 19.56 22.34 25.89 28.55 34.11 39.67 45.23 47.89 50.67 56.23 61.79 64.45 70.01 72.79 78.35 83.91 87.24 89.9 92.68 98.24 101.57 109.9 114.9 117.56 123.12 128.68 130.96 136.52 143.74\\\">Trial,&quot; and the other terms below.</text></g><clipPath id=\\\"clip1-3\\\"><path d=\\\"M 35 404 L 574 404 L 574 449 L 35 449 L 35 404 z \\\"/></clipPath><g clip-path=\\\"url(#clip1-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 435.7132)\\\" x=\\\"0 7.22 12.78 17.78 20.56 26.12 34.45 40.01 43.34 46 52.67 54.95 60.51 66.07 71.63 74.41 79.97 83.3 88.86\\\">Customer Signature:</text></g><clipPath id=\\\"clip1-4\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip1-4)\\\" fill=\\\"#fff\\\" stroke=\\\"none\\\" d=\\\"M 409.8 425.0359 L 439.8433 425.0359 L 439.8433 417.0244 L 409.8 417.0244 L 409.8 425.0359 z \\\"/><clipPath id=\\\"clip1-5\\\"><path d=\\\"M 409 417 L 440 417 L 440 426 L 409 426 L 409 417 z \\\"/></clipPath><path clip-path=\\\"url(#clip1-5)\\\" fill=\\\"#fff\\\" stroke=\\\"none\\\" d=\\\"M 409.8 425.0359 L 439.55 425.0359 L 439.55 423.9041 L 409.8 423.9041 L 409.8 425.0359 z \\\"/><path clip-path=\\\"url(#clip1-5)\\\" fill=\\\"#fff\\\" stroke=\\\"none\\\" d=\\\"M 409.8 425.0359 L 416.8 425.0359 L 416.8 423.0359 L 409.8 423.0359 L 409.8 425.0359 z \\\"/><g clip-path=\\\"url(#clip1-5)\\\"><text stroke=\\\"none\\\" fill=\\\"#fff\\\" style=\\\"font-family:f1-2; font-size:0.75pt\\\" transform=\\\"matrix(1 0 0 -1 409.8 424.1141)\\\" x=\\\"0 0.722 1.5 2.222 2.944 3.496 4.163 4.996 5.663 5.941\\\">DOCU_EMAIL</text></g><clipPath id=\\\"clip1-6\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip1-6)\\\" fill=\\\"#fff\\\" stroke=\\\"none\\\" d=\\\"M 164.15 417.4676 L 192.2025 417.4676 L 192.2025 406.447 L 164.15 406.447 L 164.15 417.4676 z \\\"/><clipPath id=\\\"clip1-7\\\"><path d=\\\"M 164 407 L 192 407 L 192 418 L 164 418 L 164 407 z \\\"/></clipPath><g clip-path=\\\"url(#clip1-7)\\\"><text stroke=\\\"none\\\" fill=\\\"#fff\\\" style=\\\"font-family:f1-2; font-size:0.75pt\\\" transform=\\\"matrix(1 0 0 -1 164.15 416.5457)\\\" x=\\\"0 0.722 1.5 2.222 2.944 3.496 4.163 4.441 5.219\\\">DOCU_SIGN</text></g><clipPath id=\\\"clip1-8\\\"><path d=\\\"M 35 343 L 389 343 L 389 405 L 35 405 L 35 343 z \\\"/></clipPath><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 392.5858)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 57.9314 392.5858)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 62.5791 392.5858)\\\" x=\\\"0 5.56 11.12 16.68 21.68\\\">Lease</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 89.8252 392.5858)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 94.4728 392.5858)\\\" x=\\\"0 7.22 12.78 21.11 26.67 32.23 37.79 42.79 44.7\\\">Company&apos;s</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 144.1798 392.5858)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.8275 392.5858)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 28.35 30.63 35.63 41.19\\\">authorized</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 195.5853 392.5858)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 200.2329 392.5858)\\\" x=\\\"0 5 7.28 12.84 18.4 23.96 26.74 32.3 35.63\\\">signature</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 241.4292 392.5858)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 246.0768 392.5858)\\\" x=\\\"0 2.28 7.84 13.4 15.68 20.68 26.24 29.02 34.58\\\">indicates</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 285.6618 392.5858)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 290.3094 392.5858)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 304.2108 392.5858)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 308.8584 392.5858)\\\" x=\\\"0 5.56 11.12 16.68 21.68\\\">Lease</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 336.1045 392.5858)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 340.7521 392.5858)\\\" x=\\\"0 7.22 12.78 21.11 26.67 32.23 37.79\\\">Company</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.55 392.5858)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 381.2675)\\\" x=\\\"0 5.56 11.12\\\">has</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 56.823 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 59.5613 381.2675)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.68 29.46 35.02\\\">accepted</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 100.1472 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 102.8854 381.2675)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 116.7868 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 119.525 381.2675)\\\" x=\\\"0 2.78 8.34 11.67 20 25\\\">terms,</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 147.3033 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 150.0416 381.2675)\\\" x=\\\"0 5 10.56 16.12 21.68 23.96 26.74 29.02 34.58 40.14\\\">conditions</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 195.1881 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 197.9263 381.2675)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 214.6109 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 217.3491 381.2675)\\\" x=\\\"0 5.56 11.12 13.4 15.68 21.24 26.8 29.58 31.86 37.42 42.98\\\">obligations</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 265.3374 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 268.0756 381.2675)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.4154 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 279.1537 381.2675)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 293.055 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 295.7933 381.2675)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 344.7093 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 347.4475 381.2675)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 364.1321 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 366.8703 381.2675)\\\" x=\\\"0 2.78 8.34 13.9\\\">that</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.55 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 369.9491)\\\" x=\\\"0 2.78 8.34 13.9 16.56 22.12 27.68 33.24 38.24 43.8 46.46 53.68 59.24 67.57 73.13 78.69 84.25 89.25 91.91 97.47 103.03 106.36 111.92 117.48 122.48 125.14 127.92 133.48 136.14 138.92 144.48 146.76 151.76 154.42 161.09 166.65 169.98 175.54 181.1 189.43 194.99 200.55 203.33\\\">the Lease Company agrees to this Agreement.</text></g><clipPath id=\\\"clip1-10\\\"><path d=\\\"M 388 343 L 574 343 L 574 405 L 388 405 L 388 343 z \\\"/></clipPath><g clip-path=\\\"url(#clip1-10)\\\"><g transform=\\\"matrix(0.75 0 0 -0.7619 416.525 401.8046)\\\"><image xlink:href=\\\"data:image/png;base64,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\\\" width=\\\"172\\\" height=\\\"42\\\" id=\\\"img43-0-9\\\"/></g></g><g clip-path=\\\"url(#clip1-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 394.35 359.0858)\\\" x=\\\"0 6.67 12.23 17.79 23.35 26.01 33.23 39.34 47.12 49.78 55.34 60.9 68.12 70.78 77.45 82.45 85.23 87.89 96.22 101.78 104.56 107.34 110 116.67 120 125.56 132.78 138.34 140.62 146.18\\\">Snap RTO LLC By: Matt Browning</text></g><g clip-path=\\\"url(#clip1-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 394.35 347.7675)\\\" x=\\\"0 6.11 8.39 11.17 13.45 19.01 21.79 24.45 31.67 39.45\\\">Title: COO</text></g><clipPath id=\\\"clip1-11\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 770.2 L 573.6 770.2 L 573.6 769.2 L 34.8 769.2 L 34.8 770.2 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.6 769.2 L 573.6 769.2 L 573.6 487.5594 L 572.6 487.5594 L 572.6 769.2 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 769.2 L 35.8 769.2 L 35.8 487.5594 L 34.8 487.5594 L 34.8 769.2 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 487.5594 L 573.6 487.5594 L 573.6 486.5594 L 34.8 486.5594 L 34.8 487.5594 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.6 486.5594 L 573.6 486.5594 L 573.6 448.6043 L 572.6 448.6043 L 572.6 486.5594 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 486.5594 L 35.8 486.5594 L 35.8 448.6043 L 34.8 448.6043 L 34.8 486.5594 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 448.6043 L 573.6 448.6043 L 573.6 447.6043 L 34.8 447.6043 L 34.8 448.6043 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.6 447.6043 L 573.6 447.6043 L 573.6 405.3046 L 572.6 405.3046 L 572.6 447.6043 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 447.6043 L 35.8 447.6043 L 35.8 405.3046 L 34.8 405.3046 L 34.8 447.6043 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 405.3046 L 389.45 405.3046 L 389.45 404.3046 L 34.8 404.3046 L 34.8 405.3046 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 344.1679 L 389.45 344.1679 L 389.45 343.1679 L 34.8 343.1679 L 34.8 344.1679 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 404.3046 L 35.8 404.3046 L 35.8 344.1679 L 34.8 344.1679 L 34.8 404.3046 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 389.45 405.3046 L 573.6 405.3046 L 573.6 404.3046 L 389.45 404.3046 L 389.45 405.3046 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 389.45 344.1679 L 573.6 344.1679 L 573.6 343.1679 L 389.45 343.1679 L 389.45 344.1679 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.6 404.3046 L 573.6 404.3046 L 573.6 344.1679 L 572.6 344.1679 L 572.6 404.3046 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 388.45 404.3046 L 389.45 404.3046 L 389.45 344.1679 L 388.45 344.1679 L 388.45 404.3046 z \\\"/><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 331.4491)\\\" x=\\\"0 7.22 15 21.11 23.89 31.11\\\">NOTICE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 70.8783 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 73.8798 331.4491)\\\" x=\\\"0 6.11\\\">TO</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 87.7666 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 90.7681 331.4491)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 110.7681 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 113.7696 331.4491)\\\" x=\\\"0 7.22 15 22.22 28.89 36.11 44.44 51.11 58.33\\\">CONSUMER:</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 174.8829 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 177.8844 331.4491)\\\" x=\\\"0 6.67 14.45\\\">YOU</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 199.5543 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 202.5558 331.4491)\\\" x=\\\"0 7.22 13.89 20.56\\\">HAVE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 229.7873 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 232.7888 331.4491)\\\" x=\\\"0 7.22\\\">NO</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.7888 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 250.7903 331.4491)\\\" x=\\\"0 7.78 17.22 24.44 31.11 38.33 45 52.22 55\\\">OWNERSHIP</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.4603 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 315.4618 331.4491)\\\" x=\\\"0 7.22 10 17.78 25 31.11\\\">RIGHTS</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 353.2401 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 356.2416 331.4491)\\\" x=\\\"0 2.78\\\">IN</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 366.2416 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 369.2431 331.4491)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 389.2431 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 392.2447 331.4491)\\\" x=\\\"0 6.67 13.89 21.67 28.34 35.01 42.23 48.34\\\">PROPERTY</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.2544 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 450.256 331.4491)\\\" x=\\\"0 7.22 14.44 20 26.67 33.34\\\">UNLESS</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 490.2706 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 493.2721 331.4491)\\\" x=\\\"0 6.67 13.89\\\">AND</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 514.3854 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 517.3869 331.4491)\\\" x=\\\"0 7.22 14.44 20.55 23.33\\\">UNTIL</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 546.2785 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 549.2801 331.4491)\\\" x=\\\"0 6.67 14.45\\\">YOU</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 320.1308)\\\" x=\\\"0 6.67 12.23 18.9 26.12\\\">ELECT</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 65.3315 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 71.359 320.1308)\\\" x=\\\"0 6.11\\\">TO</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 85.2457 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 91.2732 320.1308)\\\" x=\\\"0 6.67 13.34 20.56 28.34 36.67\\\">BECOME</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 134.613 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 140.6406 320.1308)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.6406 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 166.6681 320.1308)\\\" x=\\\"0 7.78 17.22 24.44 31.11\\\">OWNER</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 204.9982 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 211.0257 320.1308)\\\" x=\\\"0 7.78\\\">OF</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 224.9124 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 230.9399 320.1308)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 250.9399 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 256.9675 320.1308)\\\" x=\\\"0 6.67 13.89 21.67 28.34 35.01 42.23 48.34\\\">PROPERTY</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 311.9772 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 318.0048 320.1308)\\\" x=\\\"0 6.67 12.78 18.89 25.56\\\">AFTER</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 350.7831 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 356.8106 320.1308)\\\" x=\\\"0 8.33 15 21.67 24.45 31.67\\\">MAKING</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 396.2588 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 402.2864 320.1308)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 422.2864 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 428.3139 320.1308)\\\" x=\\\"0 7.22 13.89 21.11 27.78 34.45 41.12 47.79 55.01\\\">NECESSARY</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.9984 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 496.026 320.1308)\\\" x=\\\"0 6.67 13.34 20.01 28.34 35.01 42.23 48.34\\\">PAYMENTS</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.0357 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0633 320.1308)\\\" x=\\\"0 6.11\\\">TO</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 308.8124)\\\" x=\\\"0 6.67 13.89 21.67 28.89 31.67 38.89\\\">ACQUIRE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 78.6615 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 82.9084 308.8124)\\\" x=\\\"0 7.78 17.22 24.44 31.11 38.33 45 52.22 55 61.67\\\">OWNERSHIP,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 147.3567 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 151.6035 308.8124)\\\" x=\\\"0 6.67 13.89\\\">AND</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 172.7168 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 176.9637 308.8124)\\\" x=\\\"0 6.67 14.45\\\">YOU</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 198.6336 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 202.8805 308.8124)\\\" x=\\\"0 7.22 13.89 20.56\\\">HAVE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 230.112 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 234.3589 308.8124)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 254.3589 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 258.6057 308.8124)\\\" x=\\\"0 5.56 12.23 20.01 26.68\\\">LEGAL</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.8469 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 295.0938 308.8124)\\\" x=\\\"0 6.67 13.89 20 27.22 35 42.22 45 51.11\\\">AUTHORITY</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 352.8722 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 357.119 308.8124)\\\" x=\\\"0 6.11\\\">TO</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.0058 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 375.2527 308.8124)\\\" x=\\\"0 6.67 13.89 21.11 27.78 34.45\\\">ACCEPT</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 415.8142 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 420.0611 308.8124)\\\" x=\\\"0 6.11 8.89 15 20.56\\\">TITLE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.2876 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 451.5345 308.8124)\\\" x=\\\"0 6.11\\\">TO</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 465.4212 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 469.6681 308.8124)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.6681 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 493.915 308.8124)\\\" x=\\\"0 6.67 13.89 21.67 28.34 35.01 42.23 48.34 55.01\\\">PROPERTY.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.7031 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 555.95 308.8124)\\\" x=\\\"0 7.22\\\">DO</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 297.494)\\\" x=\\\"0 7.22 15\\\">NOT</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 54.2084 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 57.2636 297.494)\\\" x=\\\"0 6.67 9.45 17.23\\\">SIGN</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 81.7118 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 84.767 297.494)\\\" x=\\\"0 6.11 13.33 16.11\\\">THIS</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 107.5453 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 110.6005 297.494)\\\" x=\\\"0 6.67 14.45 21.67 28.34 35.01 43.34 50.01 57.23\\\">AGREEMENT</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 173.9404 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 176.9956 297.494)\\\" x=\\\"0 6.67 13.34 19.45 27.23 34.45\\\">BEFORE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 218.1137 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 221.1689 297.494)\\\" x=\\\"0 6.67 14.45\\\">YOU</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 242.8389 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 245.8941 297.494)\\\" x=\\\"0 7.22 13.89 20.56\\\">READ</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 273.6773 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 276.7325 297.494)\\\" x=\\\"0 6.67 12.23\\\">ALL</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 294.5254 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 297.5806 297.494)\\\" x=\\\"0 6.67 13.34 21.12 27.79\\\">PAGES</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 332.0386 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 335.0938 297.494)\\\" x=\\\"0 7.78\\\">OF</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.9805 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 352.0357 297.494)\\\" x=\\\"0 2.78\\\">IT</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 360.9225 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 363.9777 297.494)\\\" x=\\\"0 7.78\\\">OR</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 378.9777 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 382.0329 297.494)\\\" x=\\\"0 2.78\\\">IF</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 390.9196 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 393.9748 297.494)\\\" x=\\\"0 2.78\\\">IT</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.8615 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 405.9167 297.494)\\\" x=\\\"0 7.22 15 22.22 28.33 35 37.78 45\\\">CONTAINS</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 457.5866 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 460.6418 297.494)\\\" x=\\\"0 6.67 13.89\\\">ANY</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 481.2033 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 484.2585 297.494)\\\" x=\\\"0 6.67 12.23 18.9 26.12\\\">BLANK</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 517.0515 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 520.1067 297.494)\\\" x=\\\"0 6.67 13.34 20.01 27.23\\\">SPACE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 554.0081 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0633 297.494)\\\" x=\\\"0 6.11\\\">TO</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 286.1757)\\\" x=\\\"0 6.67\\\">BE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 46.4398 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 49.3908 286.1757)\\\" x=\\\"0 6.11 8.89 14.45 20.01 26.68\\\">FILLED</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 83.2922 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 86.2431 286.1757)\\\" x=\\\"0 2.78 10\\\">IN.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 99.0214 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 101.9724 286.1757)\\\" x=\\\"0 6.67 14.45\\\">YOU</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 123.6423 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 126.5933 286.1757)\\\" x=\\\"0 6.67 13.89\\\">ARE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 147.1548 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 150.1057 286.1757)\\\" x=\\\"0 6.67 13.89 20 22.78 28.89 34.45 41.12\\\">ENTITLED</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 198.4456 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 201.3965 286.1757)\\\" x=\\\"0 6.11\\\">TO</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 215.2832 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 218.2342 286.1757)\\\" x=\\\"0\\\">A</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 224.9041 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 227.8551 286.1757)\\\" x=\\\"0 7.22 15 23.33 30 35.56 42.23 48.34 55.01 60.57\\\">COMPLETELY</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 295.0963 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 298.0472 286.1757)\\\" x=\\\"0 6.11 8.89 14.45 20.01 26.68 33.9 37.23 40.01\\\">FILLED-IN</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 345.2787 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 348.2296 286.1757)\\\" x=\\\"0 7.22 15 21.67\\\">COPY</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 376.5695 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 379.5204 286.1757)\\\" x=\\\"0 7.78\\\">OF</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.4071 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 396.3581 286.1757)\\\" x=\\\"0 6.11 13.33 16.11\\\">THIS</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.1364 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 422.0874 286.1757)\\\" x=\\\"0 6.67 14.45 21.67 28.34 35.01 43.34 50.01 57.23\\\">AGREEMENT</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 485.4272 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 488.3781 286.1757)\\\" x=\\\"0 9.44 16.66 23.33\\\">WHEN</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 518.9299 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 521.8809 286.1757)\\\" x=\\\"0 6.67 14.45\\\">YOU</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 543.5508 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 546.5017 286.1757)\\\" x=\\\"0 6.67 9.45 17.23\\\">SIGN</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 274.8573)\\\" x=\\\"0 2.78 8.89\\\">IT.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 261.539)\\\" x=\\\"0 6.11 12.78 20 28.33 31.11 38.33 45 51.11 53.89 61.67 68.89\\\">TERMINATION.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 104.765 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 108.0706 261.539)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 125.8636 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 129.1692 261.539)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 148.0608 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 151.3663 261.539)\\\" x=\\\"0 2.78 8.34 11.67 20 22.28 27.84 33.4 36.18\\\">terminate</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 193.1095 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 196.4151 261.539)\\\" x=\\\"0 3.33 8.89 14.45 20.01\\\">(end)</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 219.7598 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 223.0654 261.539)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.6855 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 241.9911 261.539)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.9071 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 294.2127 261.539)\\\" x=\\\"0 5.56\\\">at</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.5525 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 305.8581 261.539)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.7595 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 323.065 261.539)\\\" x=\\\"0 5.56 11.12\\\">end</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 339.7496 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 343.0552 261.539)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.395 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 354.7006 261.539)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 370.8236 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 374.1292 261.539)\\\" x=\\\"0 2.28 7.84 13.4 18.4\\\">lease</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 398.0941 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 401.3996 261.539)\\\" x=\\\"0 2.78 8.34 11.67\\\">term</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 421.3996 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 424.7052 261.539)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 435.2667 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 438.5723 261.539)\\\" x=\\\"0 5 10.56 13.34 15.62 20.62 23.4 28.4 30.68 36.24\\\">satisfying</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 480.3741 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 483.6796 261.539)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 497.581 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 500.8866 261.539)\\\" x=\\\"0 3.33 8.89 14.45 20.01 22.29 25.62 31.18 39.51 45.07 50.63 53.41\\\">requirements</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.3046 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 562.6101 261.539)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 250.2206)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 48.7201 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 51.7761 250.2206)\\\" x=\\\"0 5.56 11.12 14.45 20.01 25.57 28.9 34.46 40.02 45.58\\\">paragraph.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 100.1453 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 103.2013 250.2206)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 120.9943 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 124.0503 250.2206)\\\" x=\\\"0 8.33 13.89 18.89\\\">must</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 145.7202 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.7762 250.2206)\\\" x=\\\"0 5.56 8.89 14.45 22.78 28.34 31.12 33.4\\\">promptly</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 187.1795 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 190.2355 250.2206)\\\" x=\\\"0 3.33 8.89 11.67 17.23 20.56\\\">return</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 216.3586 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 219.4146 250.2206)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.3159 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 236.3719 250.2206)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 274.1649 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 277.2209 250.2206)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 285.5608 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 288.6168 250.2206)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.1783 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 302.2343 250.2206)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 310.0761 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 313.1321 250.2206)\\\" x=\\\"0 5.56 10.56 15.56 21.12 24.45 30.01 35.57 41.13 46.13\\\">accordance</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 364.8313 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 367.8874 250.2206)\\\" x=\\\"0 7.22 9.5 12.28\\\">with</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 385.7291 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 388.7852 250.2206)\\\" x=\\\"0 5.56 11.12\\\">our</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.2383 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 406.2943 250.2206)\\\" x=\\\"0 5.56 7.84 11.17 16.73 21.73 24.51 26.79 32.35 37.91\\\">directions</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 449.2093 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 452.2653 250.2206)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.9499 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 472.0059 250.2206)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 488.129 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 491.185 250.2206)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57 33.35\\\">amounts</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.5395 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 532.5955 250.2206)\\\" x=\\\"0 5.56 10.56 15.56 18.89 24.45 30.01 35.57\\\">accrued.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 238.9022)\\\" x=\\\"0 9.44\\\">We</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 48.1 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 51.2677 238.9022)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 70.1593 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 73.327 238.9022)\\\" x=\\\"0 2.78 8.34 11.67 20 22.28 27.84 33.4 36.18\\\">terminate</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 115.0702 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 118.2379 238.9022)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 133.858 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 137.0257 238.9022)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 185.9417 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 189.1094 238.9022)\\\" x=\\\"0 5.56\\\">at</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 197.4493 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 200.617 238.9022)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 216.74 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 219.9077 238.9022)\\\" x=\\\"0 2.78 5.06 13.39\\\">time</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.8579 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 242.0256 238.9022)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.0842 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 250.2519 238.9022)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 266.375 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 269.5427 238.9022)\\\" x=\\\"0 5.56 8.89\\\">are</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 283.9958 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 287.1635 238.9022)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 295.0053 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 298.173 238.9022)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 27.3\\\">default</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 328.256 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 331.4237 238.9022)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 339.7636 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 342.9313 238.9022)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 362.3844 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 365.5521 238.9022)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.9066 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.0743 238.9022)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 415.9659 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 419.1336 238.9022)\\\" x=\\\"0 5.56 8.34 13.9 19.46\\\">other</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 441.9266 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 445.0943 238.9022)\\\" x=\\\"0 5.56 11.12 13.4 15.68 21.24 26.8 29.58 31.86 37.42 42.98 47.98\\\">obligations.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 495.8609 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 499.0286 238.9022)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 516.8216 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 519.9893 238.9022)\\\" x=\\\"0 8.33 13.89 18.89\\\">must</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 541.6592 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 544.8269 238.9022)\\\" x=\\\"0 3.33 8.89 11.67 17.23 20.56\\\">return</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 227.5839)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.0014 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 50.6007 227.5839)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 88.3937 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 91.9931 227.5839)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 100.3329 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 103.9323 227.5839)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 117.8336 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 121.433 227.5839)\\\" x=\\\"0 5.56 7.84 13.4 18.4\\\">place</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 145.3978 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.9972 227.5839)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 161.7804 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 165.3797 227.5839)\\\" x=\\\"0 5.56 11.12 16.12 18.4 23.96 29.52 35.08 37.86 43.42\\\">designate.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 211.5858 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 215.1852 227.5839)\\\" x=\\\"0 7.22 12.78 18.34\\\">Upon</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 239.0914 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 242.6908 227.5839)\\\" x=\\\"0 2.78 8.34 11.67 20 22.28 27.84 33.4 36.18 38.46 44.02 49.58\\\">termination,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 295.0541 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 298.6534 227.5839)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 314.7765 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 318.3758 227.5839)\\\" x=\\\"0 5.56 11.12 14.45 20.01\\\">agree</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 343.952 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 347.5513 227.5839)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.8912 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 359.4905 227.5839)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.6136 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 379.2129 227.5839)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.1143 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 396.7137 227.5839)\\\" x=\\\"0 2.78 8.34 10.62 12.9 18.46 25.68 27.96 33.52\\\">following</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 435.8006 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 439.3999 227.5839)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01 30.57 35.57\\\">charges:</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 477.7544 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 481.3538 227.5839)\\\" x=\\\"0 6.67 12.23\\\">Any</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 498.5852 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 502.1846 227.5839)\\\" x=\\\"0 5.56 11.12 16.68 22.24 24.52\\\">unpaid</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 532.2725 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 535.8718 227.5839)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 216.2655)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46 44.46\\\">Payments,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 80.3412 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 83.8455 216.2655)\\\" x=\\\"0 2.78 8.34 13.9\\\">fees</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 102.7469 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 106.2512 216.2655)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 122.9358 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 126.4401 216.2655)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01 30.57 35.57\\\">charges,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 164.7946 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 168.299 216.2655)\\\" x=\\\"0 5.56 7.84 13.4\\\">plus</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 186.7023 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 190.2066 216.2655)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 206.3297 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 209.834 216.2655)\\\" x=\\\"0 5.56 8.34 11.12 13.4 18.4 20.68 26.24\\\">official</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.3545 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 241.8588 216.2655)\\\" x=\\\"0 2.78 8.34 13.9\\\">fees</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 260.7602 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 264.2645 216.2655)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.9491 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 284.4534 216.2655)\\\" x=\\\"0 2.78 8.34 13.34 18.9\\\">taxes</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.3548 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 311.8591 216.2655)\\\" x=\\\"0 2.28 10.61 16.17 21.73 26.73 32.29\\\">imposed</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 349.7156 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 353.2199 216.2655)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 361.0617 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 364.566 216.2655)\\\" x=\\\"0 5 10.56 16.12 21.68 27.24 32.24 35.02 37.3 42.86\\\">connection</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 412.9938 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 416.4981 216.2655)\\\" x=\\\"0 7.22 9.5 12.28\\\">with</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.3399 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 437.8442 216.2655)\\\" x=\\\"0 2.78 8.34 11.67 20 22.28 27.84 33.4 36.18 38.46 44.02 49.58\\\">termination,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 490.2075 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 493.7118 216.2655)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24 28.52 34.08 39.64\\\">including,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 536.1386 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 539.6429 216.2655)\\\" x=\\\"0 5.56 11.12\\\">but</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.5443 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0486 216.2655)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 204.9472)\\\" x=\\\"0 2.28 4.56 12.89 15.17 17.95 23.51\\\">limited</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 62.1723 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 64.9349 204.9472)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 73.2747 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 76.0373 204.9472)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 92.1604 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 94.923 204.9472)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64\\\">applicable</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 140.133 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 142.8956 204.9472)\\\" x=\\\"0 2.78 5.06 10.62 16.18 21.18\\\">fines,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 166.8555 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 169.6182 204.9472)\\\" x=\\\"0 5 10.56 13.89 18.89 24.45 30.01 33.34 38.9 44.46 49.46\\\">surcharges,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 221.8642 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 224.6269 204.9472)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 241.3114 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 244.0741 204.9472)\\\" x=\\\"0 2.78 8.34 13.34 18.9 23.9\\\">taxes.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 270.7537 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 273.5164 204.9472)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.3093 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 294.0719 204.9472)\\\" x=\\\"0 8.33 13.89 18.89\\\">must</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 315.7419 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 318.5045 204.9472)\\\" x=\\\"0 5.56 7.84 12.84\\\">also</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 336.9078 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 339.6704 204.9472)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.7935 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 358.5561 204.9472)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 374.6791 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 377.4417 204.9472)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.12 31.12 33.4 38.4\\\">excessive</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 421.4066 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 424.1692 204.9472)\\\" x=\\\"0 7.22 12.78 18.34\\\">wear</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 445.844 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 448.6066 204.9472)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 465.2912 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 468.0538 204.9472)\\\" x=\\\"0 5.56 10.56\\\">use</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.1769 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 486.9395 204.9472)\\\" x=\\\"0 2.78 8.34 13.9\\\">fees</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 505.8408 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 508.6035 204.9472)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 519.165 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 521.9276 204.9472)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29 32.85\\\">provided</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 560.3456 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 563.1082 204.9472)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 193.6288)\\\" x=\\\"0 2.78 8.34 10.62 15.62 18.28 24.95 30.51 33.84 39.4 44.96 53.29 58.85 64.41 67.19 69.97 72.63 77.63 83.19 88.75 91.03 96.59 101.59 104.37 107.03 109.81 115.37 118.03 120.31 122.59 130.92 133.2 135.98 141.54 144.32 146.6 152.16 157.72 162.72 165.38 170.94 173.72 176.38 181.94 187.5 193.06 195.34 197.62 202.62 208.18 213.74 216.02 221.58 224.24 226.52 232.08 239.3\\\">this Agreement, subject to limitations of applicable law.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 180.3105)\\\" x=\\\"0 8.33 15 17.78 25 31.11 37.78 45 51.67 58.89 66.11 72.78\\\">MAINTENANCE.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 108.6615 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 111.6829 180.3105)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 129.4758 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 132.4972 180.3105)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.5597 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 149.581 180.3105)\\\" x=\\\"0 5 10.56 16.12\\\">keep</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 171.2656 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 174.287 180.3105)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 188.1883 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 191.2097 180.3105)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 229.0026 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 232.024 180.3105)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 239.8658 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 242.8871 180.3105)\\\" x=\\\"0 5.56 11.12 16.68\\\">good</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 265.1332 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 268.1546 180.3105)\\\" x=\\\"0 7.22 12.78 16.11 21.11 23.39 28.95\\\">working</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.6712 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 305.6925 180.3105)\\\" x=\\\"0 5.56 8.89 14.45 20.01\\\">order</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.0373 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 332.0586 180.3105)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.7432 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 351.7645 180.3105)\\\" x=\\\"0 3.33 8.89 14.45 20.01 22.29 25.62\\\">repair.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.1679 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 383.1892 180.3105)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 400.9822 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 404.0035 180.3105)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 418.066 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 421.0874 180.3105)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 437.2104 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 440.2318 180.3105)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.3548 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 459.3762 180.3105)\\\" x=\\\"0 5.56 11.12 16.68 20.01 25.57 28.35 30.63 36.19\\\">operating</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.134 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 504.1553 180.3105)\\\" x=\\\"0 5 10.56 15.56 18.34 23.34\\\">costs.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 530.2735 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 533.2948 180.3105)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.0878 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 554.1092 180.3105)\\\" x=\\\"0 7.22 9.5 11.78 14.06\\\">will,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 168.9921)\\\" x=\\\"0 5.56\\\">at</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 41.4398 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 44.1473 168.9921)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 63.6004 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 66.3078 168.9921)\\\" x=\\\"0 5.56 10.56 16.12 21.68 27.24 32.24 37.8\\\">expense,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 106.8938 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 109.6012 168.9921)\\\" x=\\\"0 5 10.56 13.89 18.89 21.17 26.17\\\">service</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 141.3346 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 144.042 168.9921)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 157.9434 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 160.6508 168.9921)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 198.4438 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 201.1512 168.9921)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 208.993 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 211.7005 168.9921)\\\" x=\\\"0 5.56 10.56 15.56 21.12 24.45 30.01 35.57 41.13 46.13\\\">accordance</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 263.3997 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 266.1071 168.9921)\\\" x=\\\"0 7.22 9.5 12.28\\\">with</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 283.9489 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 286.6563 168.9921)\\\" x=\\\"0 8.33 13.89 19.45 25.01 27.79 33.35 38.35 41.13 46.69 50.02 55.58\\\">manufacturer</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 345.5723 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 348.2798 168.9921)\\\" x=\\\"0 5 7.78 13.34 18.9 24.46 30.02 33.35 38.91 43.91\\\">standards.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 394.9741 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 397.6815 168.9921)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.2382 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 405.9456 168.9921)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.847 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 422.5544 168.9921)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 460.3474 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 463.0548 168.9921)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 470.3351 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 473.0425 168.9921)\\\" x=\\\"0 3.33 8.89 13.89 19.45 21.73 24.01 29.57 35.13\\\">recalled,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 510.9576 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 513.665 168.9921)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.788 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 532.4955 168.9921)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 546.558 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 549.2654 168.9921)\\\" x=\\\"0 5.56 11.12 16.12\\\">have</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 157.6738)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.0014 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 51.506 157.6738)\\\" x=\\\"0 3.33 8.89 13.89 19.45 21.73\\\">recall</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 75.5196 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 80.0242 157.6738)\\\" x=\\\"0 3.33 8.89 14.45 20.01 22.29 25.62\\\">repairs</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 110.6492 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 115.1538 157.6738)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 124.0454 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 128.5499 157.6738)\\\" x=\\\"0 5 10.56 13.89 18.89 21.17 26.17\\\">service</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.2833 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 164.7879 157.6738)\\\" x=\\\"0 5.56 11.12 14.45 17.23 22.79 26.12 34.45 40.01 45.57\\\">performed.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 213.1424 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 217.647 157.6738)\\\" x=\\\"0 2.78\\\">In</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.9868 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 230.4914 157.6738)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 244.3928 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 248.8974 157.6738)\\\" x=\\\"0 5.56 10.56 16.12 21.68\\\">event</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 273.3603 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 277.8648 157.6738)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.7662 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 296.2708 157.6738)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 334.0637 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.5683 157.6738)\\\" x=\\\"0 5.56 11.12\\\">has</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 354.6914 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 359.1959 157.6738)\\\" x=\\\"0 8.33 13.89 18.89 24.45 30.01 35.57 37.85 42.85 48.41\\\">mechanical</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 409.8942 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 414.3988 157.6738)\\\" x=\\\"0 5.56 8.89 14.45 20.01 22.29 27.85 36.18 41.18\\\">problems,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 458.3636 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 462.8682 157.6738)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 478.9912 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 483.4958 157.6738)\\\" x=\\\"0 5.56 11.12 14.45 20.01\\\">agree</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.072 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 513.5766 157.6738)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.9164 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 526.421 157.6738)\\\" x=\\\"0 3.33 8.89 11.67 17.23 20.56\\\">return</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.544 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0486 157.6738)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 146.3554)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79 40.45 43.23 48.79 51.45 57.01 62.01 64.67 67.45 73.01 76.34 79 84.56 89.56 95.12 97.4 102.96 108.52 111.3 113.58 119.14 124.7 127.48 130.14 135.7 141.26 146.82 149.6 152.26 154.54 157.32 159.98 165.54 171.1 176.1 181.66 186.66 191.66 197.22 200.55 205.55 208.33 210.99 214.32 219.88 225.44 231 233.28 236.61\\\">Property to us for evaluation, and, if necessary, repair.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 133.037)\\\" x=\\\"0 6.67 12.78 19.45 26.67 33.89 40.56 47.78 55\\\">STANDARDS</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 94.7748 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 97.7681 133.037)\\\" x=\\\"0 6.11 13.89\\\">FOR</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 118.8765 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 121.8699 133.037)\\\" x=\\\"0 9.44 16.11 22.78\\\">WEAR</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 151.8699 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 154.8632 133.037)\\\" x=\\\"0 6.67 13.89\\\">AND</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 175.9765 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 178.9698 133.037)\\\" x=\\\"0 7.22 13.89 20.56\\\">USE.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 202.3096 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 205.303 133.037)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 223.0959 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 226.0893 133.037)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 244.9809 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 247.9742 133.037)\\\" x=\\\"0 5.56\\\">be</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.0972 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 262.0906 133.037)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01 30.57\\\">charged</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 298.2283 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 301.2216 133.037)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.8915 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 315.8849 133.037)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.12\\\">excess</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 347.0079 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 350.0012 133.037)\\\" x=\\\"0 7.22 12.78 18.34\\\">wear</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.676 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 374.6694 133.037)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 391.3539 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 394.3473 133.037)\\\" x=\\\"0 5.56 10.56\\\">use</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 410.4703 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 413.4636 133.037)\\\" x=\\\"0 7.22 12.78 18.34\\\">when</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 437.3699 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 440.3632 133.037)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.4863 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 459.4796 133.037)\\\" x=\\\"0 3.33 8.89 11.67 17.23 20.56\\\">return</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 485.6026 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 488.596 133.037)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 502.4973 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 505.4907 133.037)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 543.2836 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 546.277 133.037)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 554.6168 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.6101 133.037)\\\" x=\\\"0 5.56 10.56\\\">us.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 121.7187)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 50.3314 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 54.7254 121.7187)\\\" x=\\\"0 2.78 8.34 10.62 12.9 18.46 25.68 27.96 33.52\\\">following</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 93.8123 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 98.2062 121.7187)\\\" x=\\\"0 5 7.78 13.34 18.9 24.46 30.02 33.35 38.91\\\">standards</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 142.1222 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 146.5161 121.7187)\\\" x=\\\"0 5.56 11.12 16.68 18.96\\\">apply</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 170.4809 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 174.8748 121.7187)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 186.5447 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 190.9386 121.7187)\\\" x=\\\"0 5.56 11.12 13.9 19.46 22.79 31.12 33.4 38.96 41.24 46.8\\\">determining</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 243.3068 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 247.7007 121.7187)\\\" x=\\\"0 5.56 11.12 14.45 20.01 25.57 30.57 36.13 41.69 47.25 52.81 55.09\\\">unreasonable</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.3648 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 312.7587 121.7187)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 321.6503 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 326.0442 121.7187)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.12\\\">excess</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 357.1672 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 361.5611 121.7187)\\\" x=\\\"0 7.22 12.78 18.34\\\">wear</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.2359 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 387.6298 121.7187)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 404.3144 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 408.7083 121.7187)\\\" x=\\\"0 5.56 10.56 16.12\\\">use:</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 427.6097 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 432.0036 121.7187)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 449.7965 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 454.1904 121.7187)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.2529 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 472.6468 121.7187)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.5482 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 490.9421 121.7187)\\\" x=\\\"0 5.56 11.12 13.4 18.96\\\">paint</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.6853 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 517.0792 121.7187)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 525.9708 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 530.3647 121.7187)\\\" x=\\\"0 2.28 7.84 10.62 13.4 18.96\\\">letter</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.6547 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0486 121.7187)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 110.4003)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 70.893 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 75.8495 110.4003)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 84.7411 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 89.6976 110.4003)\\\" x=\\\"0 8.33 13.89 19.45 21.73 24.51\\\">modify</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 119.2094 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 124.1659 110.4003)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 140.2889 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 145.2455 110.4003)\\\" x=\\\"0 2.28 7.84 13.4 18.96 21.74 24.02 26.8 29.08 34.08 39.64 42.42 44.7 50.26\\\">identification</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 201.0707 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 206.0272 110.4003)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57\\\">number</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 239.9335 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 244.89 110.4003)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 253.2298 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 258.1864 110.4003)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 272.0877 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 277.0443 110.4003)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 317.6156 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 322.5721 110.4003)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 340.3651 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 345.3216 110.4003)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.3841 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 364.3407 110.4003)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 378.242 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 383.1985 110.4003)\\\" x=\\\"0 5.56 11.12 16.68\\\">add,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.6614 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.618 110.4003)\\\" x=\\\"0 3.33 8.89 17.22 22.78 27.78\\\">remove</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 440.9627 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 445.9192 110.4003)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.8108 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 459.7674 110.4003)\\\" x=\\\"0 8.33 13.89 19.45 21.73 24.51\\\">modify</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.2791 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 494.2356 110.4003)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 510.3587 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 515.3152 110.4003)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.12 31.12 36.68 40.01 42.29 47.85 52.85\\\">accessories,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 99.082)\\\" x=\\\"0 5.56 11.12 16.68 18.96 24.52 32.85 38.41 43.97\\\">equipment</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 79.8578 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 83.9642 99.082)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 92.8558 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 96.9621 99.082)\\\" x=\\\"0 5.56 11.12 14.45 17.23\\\">parts</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 119.1936 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 123.2999 99.082)\\\" x=\\\"0 7.22 9.5 12.28 17.84 23.4 28.96\\\">without</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 155.0431 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 159.1494 99.082)\\\" x=\\\"0 5.56 11.12\\\">our</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 173.6025 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 177.7089 99.082)\\\" x=\\\"0 5.56 8.89 11.17 16.73\\\">prior</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 197.7724 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 201.8787 99.082)\\\" x=\\\"0 7.22 10.55 12.83 15.61 18.39 23.95\\\">written</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.3904 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 235.4968 99.082)\\\" x=\\\"0 5.56 11.12 14.45 22.78 25.06 30.06 35.06 37.34 42.9 48.46\\\">permission.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 286.7419 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 290.8482 99.082)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.0797 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 312.186 99.082)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 349.979 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 354.0853 99.082)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 368.1478 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 372.2542 99.082)\\\" x=\\\"0 5.56 11.12 13.9\\\">not:</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.9339 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 393.0402 99.082)\\\" x=\\\"0 7.22 12.78 17.78\\\">Have</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 416.3849 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 420.4913 99.082)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57 36.13\\\">damage,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 459.4073 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 463.5136 99.082)\\\" x=\\\"0 8.33 13.89 18.89 24.45 30.01 35.57 37.85 42.85 48.41\\\">mechanical</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 514.2119 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 518.3182 99.082)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 527.2098 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 531.3162 99.082)\\\" x=\\\"0 5.56 7.84 13.4 18.4 21.18 24.51 26.79 31.79 37.35\\\">electrical</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 87.7636)\\\" x=\\\"0 8.33 13.89 16.17 18.95 24.51 30.07 35.07 37.85 40.13 45.69\\\">malfunction</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 84.3549 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 87.8075 87.7636)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 98.369 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 101.8216 87.7636)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64 45.2\\\">applicable;</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 149.8099 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 153.2625 87.7636)\\\" x=\\\"0 5.56\\\">be</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 164.3855 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 167.8382 87.7636)\\\" x=\\\"0 2.78 8.34 11.67 17.23\\\">torn,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 187.8479 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 191.3005 87.7636)\\\" x=\\\"0 5.56 11.12 14.45 20.01 25.57 31.13\\\">burned,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.2165 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 228.6691 87.7636)\\\" x=\\\"0 5 7.78 13.34 15.62 21.18 26.74\\\">stained</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 260.9738 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 264.4264 87.7636)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 273.318 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 276.7706 87.7636)\\\" x=\\\"0 5 10.56 13.89 19.45 25.01 30.57 36.13 41.69\\\">shredded;</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 321.2482 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 324.7008 87.7636)\\\" x=\\\"0 5.56 11.12 16.12\\\">have</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 346.3853 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 349.8379 87.7636)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 365.961 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 369.4136 87.7636)\\\" x=\\\"0 5.56 11.12 16.68 19.46 24.46\\\">dents,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 396.6548 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 400.1074 87.7636)\\\" x=\\\"0 8.33 13.89 16.17 21.73\\\">mold,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 424.6191 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 428.0717 87.7636)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 436.9633 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 440.4159 87.7636)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57\\\">damage</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 476.5536 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 480.0062 87.7636)\\\" x=\\\"0 2.78 6.11 11.67\\\">from</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 500.0062 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 503.4588 87.7636)\\\" x=\\\"0 7.22 12.78 15.56 21.12 24.45\\\">water,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 530.6903 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 534.1429 87.7636)\\\" x=\\\"0 5 10.56 16.12 21.68\\\">sand,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 558.6058 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 562.0584 87.7636)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 76.4452)\\\" x=\\\"0 2.78 6.11 11.67 17.23 22.23 24.51 30.07 35.63 38.41 41.07 46.63 49.96 52.62 58.18 63.74 68.74 74.3 76.96 79.24 84.8 90.36 95.92 101.48 104.81 110.37 115.93 118.21 123.77 126.43 131.99 137.55 140.88 143.66 148.66 151.44 154.1 160.77 166.33 171.89 174.55 182.88 188.44 193.44 196.22 198.88 202.21 207.77 210.55 216.11 219.44 225 227.66 230.44 236 241.56 244.22 250.89 254.22 259.78 265.34 270.9 274.23 277.01 282.01 284.67 291.89 294.17 296.95 302.51 305.17 310.73 313.01 315.29 317.95 323.51 326.29 328.95 331.23 334.01 339.01 341.67 347.23 350.56 352.84 358.4 360.68 366.24 371.8 374.08 376.74 382.3 387.86 391.19 393.97 398.97\\\">freezing; or have inoperable parts. You must return the Property with all of its original parts.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 36.5264)\\\" x=\\\"0 6.498 11.997 14.391 16.785 21.789 26.793 29.295 34.299 39.303 44.307 504 506.3906 508.7812 511.1719 513.5625 515.9531 518.3438 520.7344 523.125 525.5156\\\">UT  07/2019          </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 26.3398)\\\" x=\\\"0 6.003 11.007 16.011 21.015\\\">Page </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 55.8097 26.3398)\\\" x=\\\"0\\\">2</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.815 26.3398)\\\" x=\\\"0 2.394 7.398 9.9\\\"> of </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 73.1021 26.3398)\\\" x=\\\"0\\\">7</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#d9d9d9\\\" style=\\\"font-family:f1-0; font-size:54pt; white-space:pre\\\" transform=\\\"matrix(0.707 0.707 0.707 -0.707 135.6027 198.5094)\\\" x=\\\"0 56.016 96.048 136.08 176.112 216.144 236.16 284.184 324.216 344.232 364.248 416.232 456.264 480.24\\\">Qoppa Software</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#002ba6\\\" style=\\\"font-family:f1-0; font-size:9pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.932 772)\\\" x=\\\"0 9.336 16.008 22.68 29.352 36.024 39.36 47.364 54.036 57.372 60.708 69.372 76.044 80.04 86.712 90.048 94.044 97.38 104.712 111.384 115.38 118.716 126.72 132.72 139.392 142.056 148.728 155.4 158.736 161.4 168.072 174.744 178.08 187.416 194.088 196.752 202.752 206.088 210.084 213.42 220.092 223.428 226.764 233.436 239.436 242.772 246.108 249.444 258.108 266.772 275.436 278.772 285.444 292.116 298.788 305.46 312.132 315.468 321.468 328.14\\\">Qoppa Software - For Evaluation Only - https://www.qoppa.com</text></g></g></svg></svg></g></svg><br>\\n<?xml version='1.0' encoding='UTF-8'?><svg id=\\\"qoppa_document\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" version=\\\"1.1\\\" xmlns=\\\"http://www.w3.org/2000/svg\\\" xmlns:xlink=\\\"http://www.w3.org/1999/xlink\\\"><!-- jPDFWeb v2019R1.03 - Demo Version --><style>title p { display: block; }</style><g id=\\\"qoppa_viewxform\\\" transform=\\\"matrix(1 0 0 1 0 0)\\\"><style type=\\\"text/css\\\">@font-face {font-family:f2-0;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f2-1;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f2-2;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}</style><svg id=\\\"qoppa_page_p2\\\" class=\\\"qoppa_page\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\"><rect class=\\\"qoppa_pageborder\\\" x=\\\"0.5pt\\\" y=\\\"0.5pt\\\" width=\\\"611pt\\\" height=\\\"791pt\\\" fill=\\\"none\\\" /><svg class=\\\"qoppa_pagecontents\\\" x=\\\"0pt\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" viewBox=\\\"0 0 612 792\\\" ><g class=\\\"qoppa_contentstream\\\" transform=\\\"matrix(1 0 0 -1 0 792)\\\" fill=\\\"black\\\" stroke=\\\"black\\\" stroke-width=\\\"1\\\" stroke-linecap=\\\"butt\\\" stroke-linejoin=\\\"miter\\\" stroke-miterlimit=\\\"10\\\"><clipPath id=\\\"clip2-1\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 758.4812)\\\" x=\\\"0 9.44 16.11 23.33 30.55 37.22 44.44 50.55 53.33 60 66.67\\\">WARRANTIES.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 102.5482 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 106.2624 758.4812)\\\" x=\\\"0 9.44\\\">We</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 121.2624 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 124.9766 758.4812)\\\" x=\\\"0 8.33 13.89 18.89\\\">make</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 149.4298 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 153.1439 758.4812)\\\" x=\\\"0 5.56\\\">no</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 164.267 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 167.9812 758.4812)\\\" x=\\\"0 5.56 10.56 16.12 19.45 25.01 30.01\\\">express</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 202.9958 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 206.71 758.4812)\\\" x=\\\"0 7.22 12.78 16.11 19.44 25 30.56 33.34\\\">warranty</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.0548 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 248.769 758.4812)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.892 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 263.6062 758.4812)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 277.5076 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 281.2218 758.4812)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 321.7931 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 325.5072 758.4812)\\\" x=\\\"0 5.56 11.12 16.68\\\">and,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 344.9701 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 348.6843 758.4812)\\\" x=\\\"0 5.56 11.12 13.4 18.96 23.96\\\">unless</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 377.6492 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 381.3634 758.4812)\\\" x=\\\"0 5.56 8.89 14.45 20.01 22.29 27.85 30.13 32.91 38.47\\\">prohibited</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 425.4015 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 429.1157 758.4812)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 439.6772 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 443.3914 758.4812)\\\" x=\\\"0 2.28 7.84 15.06\\\">law,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 461.2332 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 464.9474 758.4812)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 478.8487 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 482.5629 758.4812)\\\" x=\\\"0 2.78 8.34 10.62 12.9 18.46 25.68 27.96 33.52\\\">following</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.6498 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 525.364 758.4812)\\\" x=\\\"0 5 10.56 16.12 18.9 24.46 30.02 35.02 40.58\\\">sentences</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 747.1629)\\\" x=\\\"0 5.56 11.12 16.68 18.96 23.96\\\">apply.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 59.8432 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 63.102 747.1629)\\\" x=\\\"0 6.67 14.45\\\">YOU</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 84.772 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 88.0308 747.1629)\\\" x=\\\"0 6.67 13.89\\\">ARE</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 108.5924 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 111.8512 747.1629)\\\" x=\\\"0 5.56 12.23 18.9 25.57 28.35 35.57\\\">LEASING</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 155.2008 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 158.4597 747.1629)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 178.4597 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 181.7186 747.1629)\\\" x=\\\"0 6.67 13.89 21.67 28.34 35.01 42.23 48.34\\\">PROPERTY</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 236.7284 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 239.9872 747.1629)\\\" x=\\\"0 3.33 10\\\">“AS</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.6572 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 259.916 747.1629)\\\" x=\\\"0 2.78 9.45 12.78\\\">IS”.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.4727 747.1629)\\\" x=\\\"0 3.2589\\\">  </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 281.9904 747.1629)\\\" x=\\\"0 9.44\\\">WE</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 298.0988 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 301.3577 747.1629)\\\" x=\\\"0 8.33 15 21.67\\\">MAKE</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.6975 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 332.9564 747.1629)\\\" x=\\\"0 7.22\\\">NO</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 347.9564 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 351.2153 747.1629)\\\" x=\\\"0 6.67 13.34 20.01 27.23 33.9 40.57\\\">EXPRESS</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 398.4565 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 401.7153 747.1629)\\\" x=\\\"0 9.44 16.11 23.33 30.55 37.22 44.44 50.55 53.33 60\\\">WARRANTIES</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.3853 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 471.6442 747.1629)\\\" x=\\\"0 7.78\\\">ON</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.6442 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 489.903 747.1629)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.903 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 513.1619 747.1629)\\\" x=\\\"0 6.67 13.89 21.67 28.34 35.01 42.23 48.34 55.01\\\">PROPERTY.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 735.8445)\\\" x=\\\"0 9.44\\\">WE</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 49.2084 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 59.5638 735.8445)\\\" x=\\\"0 7.22 10 16.67 23.89 29.45 36.12 38.9\\\">DISCLAIM</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 106.7953 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 117.1507 735.8445)\\\" x=\\\"0 6.67 13.89\\\">ANY</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 137.7122 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.0676 735.8445)\\\" x=\\\"0 9.44 16.11 23.33 30.55 37.22 44.44 50.55 53.33 60\\\">WARRANTIES</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 214.7375 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 225.0929 735.8445)\\\" x=\\\"0 2.78 11.11 17.78 23.34 26.12 32.79\\\">IMPLIED</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 265.1027 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 275.4581 735.8445)\\\" x=\\\"0 6.67\\\">BY</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 288.798 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 299.1534 735.8445)\\\" x=\\\"0 5.56 12.23 21.67\\\">LAW,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 323.6016 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 333.957 735.8445)\\\" x=\\\"0 2.78 10 17.22 22.78 30 37.22 40 47.22\\\">INCLUDING</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.9619 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 399.3173 735.8445)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.3173 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 429.6728 735.8445)\\\" x=\\\"0 2.78 11.11 17.78 23.34 26.12 32.79\\\">IMPLIED</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 469.6825 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 480.0379 735.8445)\\\" x=\\\"0 9.44 16.11 23.33 30.55 37.22 44.44 50.55 53.33 60\\\">WARRANTIES</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 546.7079 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0633 735.8445)\\\" x=\\\"0 7.78\\\">OF</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 724.5262)\\\" x=\\\"0 8.33 15 22.22 29.44 36.66 43.33 50.55 56.66 63.33 70 72.78 78.34 81.12 87.23 93.9 96.56 103.23 110.45 117.67 120.33 126.44 129.22 135.33 142.55 149.22 155.89 162.56 165.22 171.33 179.11 186.33 188.99 195.66 202.88 209.55 212.21 218.88 225.55 232.77 238.88 241.66 248.88 256.1 261.66 268.33 275.55 278.21 284.88 292.1 299.32 305.99 313.77 320.44 327.11\\\">MERCHANTABILITY AND FITNESS FOR ANY PARTICULAR PURPOSE.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 711.2078)\\\" x=\\\"0 7.22 13.89 20 26.67 33.89 39.45 45.56 48.34 51 58.22 64.89 71.56 79.34 86.01 92.68 99.35 106.02 112.69 115.47 123.25 130.47 133.25 135.91 142.58 149.8 157.02 159.68 167.46 173.57 180.79 187.46 194.68 197.34 204.56 211.23 219.56 226.23 233.45 236.23 242.9 249.57 252.35 255.01 261.68 267.24 272.8 275.46 282.68 284.96 287.24 289.52 292.18 297.74 303.3 305.96 308.24 313.8 316.46 322.02 327.58 330.36 335.92 341.48 343.76 346.54 349.2 354.76 357.54 360.2 362.98 368.54 370.82 375.82 378.48 385.15 390.71 394.04 399.6 405.16 413.49 419.05 424.61 427.39 430.05 432.33 435.11\\\">DEFAULT, REPOSSESSION, AND OTHER REMEDIES. You will be in default of this Agreement if:</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 697.8895)\\\" x=\\\"0 3.33 5.99 12.66 18.22 23.78 26.44 32 37.56 40.22 45.78 51.34 54.12 56.78 62.34 67.9 72.9 75.56 81.12 86.68 91.68 94.34 99.9 105.46 110.46 118.79 124.35 129.91 132.69 135.35 140.91 144.24 146.9 152.46 155.24 160.8 166.36 169.69 172.35 177.91 186.24 191.8 197.36 202.92 205.7 208.36 213.92 219.48 225.04 230.6 233.93 236.59 239.37 244.93 250.49 253.15 259.82 265.38 268.71 274.27 279.83 288.16 293.72 299.28 302.06 304.72 310.28 315.28 317.94 323.5 326.83 332.39 337.39 339.67 345.23 350.79 356.35 359.01 364.57 367.9 370.56 377.78 383.34 388.9 394.46 397.12 404.34 409.9 412.56 420.89 426.45 431.45 437.01 439.67 445.23 450.79 459.12 464.68 470.24 475.8\\\">- You do not pay any payment or other amount under the Agreement as provided or when we make demand.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 684.5711)\\\" x=\\\"0 3.33 5.99 12.66 18.22 23.78 26.44 32 34.28 39.28 44.84 47.5 53.06 58.06 60.72 66.28 71.84 76.84 79.5 82.28 87.84 90.12 95.12 100.68 103.34 108.9 112.23 114.89 123.22 125.5 130.5 132.78 138.34 143.9 149.46 151.74 157.3 162.86 165.52 167.8 173.36 176.14 181.7 185.03 193.36 198.92 201.7 203.98 209.54 215.1\\\">- You give us any false or misleading information.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 671.2527)\\\" x=\\\"0\\\">-</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 36.4301 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.1823 671.2527)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 57.9753 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 61.7275 671.2527)\\\" x=\\\"0 2.28 7.84 12.84\\\">lose</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 80.1308 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 83.883 671.2527)\\\" x=\\\"0 5.56 11.12 16.12 21.12 26.68 31.68 36.68 38.96 44.52\\\">possession</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 133.9709 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 137.7231 671.2527)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.0629 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 149.8151 671.2527)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 163.7165 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 167.4687 671.2527)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 205.2617 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 209.0139 671.2527)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 219.5754 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 223.3276 671.2527)\\\" x=\\\"0 5 10.56 16.12 18.9 21.18 26.18 31.18 36.74 39.52 41.8 47.36 52.92\\\">confiscation,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 279.0307 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 282.7829 671.2527)\\\" x=\\\"0 2.78 8.34 11.67 14.45 20.01 22.29 25.07 30.63 33.96\\\">forfeiture</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 322.3044 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 326.0566 671.2527)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 334.9482 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.7004 671.2527)\\\" x=\\\"0 5.56 8.34 13.9 19.46\\\">other</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 361.4934 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 365.2456 671.2527)\\\" x=\\\"0 2.28 7.84 12.84 18.4 20.68 26.24 31.8 34.58 40.14 43.47\\\">involuntary</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 413.7222 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 417.4744 671.2527)\\\" x=\\\"0 2.78 6.11 11.67 17.23 22.23 25.01 30.57\\\">transfer</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 451.3757 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 455.1279 671.2527)\\\" x=\\\"0 3.33 8.89 14.45 20.01 23.34 28.9 31.18 36.74 41.74\\\">regardless</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.876 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 505.6282 671.2527)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 513.968 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 517.7202 671.2527)\\\" x=\\\"0 7.22 12.78 18.34 21.12 26.68 32.24\\\">whether</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.2964 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0486 671.2527)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 659.9344)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79 40.45 42.73 47.73 50.39 53.17 58.73 64.29 66.95 71.95 77.51 83.07 85.35 90.91 95.91 98.69 101.35 106.91 109.69 112.35 114.63 120.19 125.75 128.03 133.03 135.31 140.87 143.15 145.81 151.37 154.7 157.36 162.92 168.48 176.81 179.09 184.65 186.93 191.93 194.71 198.04 203.6 206.38 208.66 213.66 219.22 221.88 227.44 230.77 236.33 241.33 246.89 252.45 258.01 260.29 265.85 271.41 276.41\\\">Property is the subject of judicial or administrative proceedings.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 646.616)\\\" x=\\\"0 3.33 5.99 12.66 18.22 23.78 26.44 32 34.28 39.84 42.5 48.06 53.62 59.18 61.84 64.62 70.18 75.74 79.07 84.63 87.29 89.57 94.57 97.23 102.79 108.35 111.01 116.01 121.57 124.9 129.9 132.18 137.18 139.46 145.02 150.58 153.24 158.24 163.8 168.8 171.58 177.14 185.47 191.03 194.36\\\">- You die and there is no surviving customer.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 633.2977)\\\" x=\\\"0 3.33 5.99 12.1 17.66 23.22 25.88 32.55 35.88 41.44 47 52.56 55.89 58.67 63.67 66.33 68.61 73.61 76.27 78.55 84.11 89.11 91.89 94.67 97.33 102.33 105.11 110.67 112.95 118.51 124.07 126.73 132.29 135.62 138.28 143.84 149.4 157.73 163.29 168.85 174.41 179.97 182.63 188.19 193.75 198.75 204.31 209.87 215.43 218.09 221.42 226.98 232.54 238.1 240.38 243.71\\\">- The Property is lost, stolen or damaged beyond repair.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 619.9793)\\\" x=\\\"0 3.33 5.99 12.66 18.22 23.78 26.44 32 37 42 44.28 49.84 55.4 58.06 60.84 66.4 71.96 74.62 81.29 86.85 90.18 95.74 101.3 109.63 115.19 120.75 123.53 126.19 131.75 135.08 137.74 140.52 143.85 149.41 154.97 159.97 162.75 168.31 171.64 174.3 177.08 182.64 188.2 190.86 197.53 200.86 206.42 211.98 217.54 220.87 223.65 228.65\\\">- You assign the Agreement or transfer the Property.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 606.6609)\\\" x=\\\"0 3.33 5.99 13.21 18.77 21.05 26.61 31.61 36.61 39.27 44.83 48.16 53.72 59.28 61.56 67.12 69.4 72.18 77.74 83.3 85.96 91.52 96.52 99.18 101.46 107.02 114.24 117.02 119.68 124.68 130.24 135.8 138.46 143.46 145.74 151.3 153.58 159.14 161.92 167.48 170.14 175.7 181.26 186.26 188.92 195.59 201.15 204.48 210.04 215.6 223.93 229.49 235.05 237.83 240.49 243.27 248.83 252.16 260.49\\\">- Unless prohibited by law, you violate any Agreement term.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 593.3426)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 38.6566 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 41.5168 593.3426)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 57.1369 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 59.9971 593.3426)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 108.9131 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 111.7732 593.3426)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 119.0535 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 121.9136 593.3426)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 129.7554 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 132.6156 593.3426)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 27.3 30.08\\\">default,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 165.4769 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 168.3371 593.3426)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 181.1202 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 183.9804 593.3426)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 202.872 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 205.7321 593.3426)\\\" x=\\\"0 5.56\\\">at</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 214.072 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 216.9321 593.3426)\\\" x=\\\"0 5.56 11.12\\\">our</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.3853 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 234.2454 593.3426)\\\" x=\\\"0 5.56 7.84 13.4 18.4 21.18 23.46 29.02 34.58\\\">election,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 271.6087 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 274.4688 593.3426)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.1534 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 294.0135 593.3426)\\\" x=\\\"0 5 10.56 16.12 18.4 23.96 28.96\\\">subject</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 325.7567 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 328.6169 593.3426)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 336.9567 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 339.8168 593.3426)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.9399 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 358.8 593.3426)\\\" x=\\\"0 7.22 12.78 15.06 17.84 20.12 25.68\\\">waiting</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 390.0452 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 392.9053 593.3426)\\\" x=\\\"0 5.56 11.12 14.45 16.73 22.29\\\">period</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 420.7618 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 423.6219 593.3426)\\\" x=\\\"0 2.28 10.61 16.17 21.73 26.73 32.29\\\">imposed</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 461.4783 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 464.3385 593.3426)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.9 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 477.7602 593.3426)\\\" x=\\\"0 2.28 7.84 15.06\\\">law,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 495.602 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 498.4621 593.3426)\\\" x=\\\"0 2.78 8.34 13.34\\\">take</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 517.3635 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 520.2236 593.3426)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 536.3467 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 539.2068 593.3426)\\\" x=\\\"0 5.56 10.56 13.34 15.62 21.18 26.74\\\">actions</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 582.0242)\\\" x=\\\"0 5.56 11.12 14.45 22.78 25.06 27.84 30.62 36.18 41.74 44.4 49.96 54.96 57.62 59.9 65.46 72.68 75.46 78.12 80.4 85.96 90.96 93.24 98.8 104.36 106.64 112.2 117.76 120.42 127.64 129.92 132.7 138.26 143.82 149.38 152.16 154.82 157.1 159.38 167.71 169.99 172.77 178.33 181.11 183.39 188.95 194.51 197.17 202.73 208.29 213.85 216.51 222.07 224.85 227.51 230.29 235.85 241.41 244.07 246.85 252.41 254.69 256.97 262.53 269.75 272.03 277.59 283.15 285.81 291.37 296.37 299.15 301.43 306.99 312.55 317.55 320.33 322.99 328.55 334.11 339.67 345.23 347.89 353.45 356.23 358.89 366.11 371.67 373.95 378.95 384.51 387.17 394.39 396.67 398.95 401.23 403.89 408.89 414.45 417.78 423.34 426 431 436.56 442.12 445.45 448.11 453.67 459.23 462.01 467.57 473.13 475.41 478.19\\\">permitted by law, including without limitation one of the following actions, none of which will cure your default:</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 568.7059)\\\" x=\\\"0 3.33 10.55 16.11 18.89 21.17\\\">-Until</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 56.5522 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 59.9757 568.7059)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 76.0988 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 79.5223 568.7059)\\\" x=\\\"0 5.56 11.12 14.45 19.45 25.01 30.57 35.57\\\">purchase</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 120.66 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 124.0836 568.7059)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 137.985 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 141.4086 568.7059)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 179.2015 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 182.6251 568.7059)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 193.1866 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 196.6102 568.7059)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29 32.85\\\">provided</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 235.0282 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 238.4518 568.7059)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 246.2936 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 249.7171 568.7059)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 265.3372 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 268.7608 568.7059)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 320.4552 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 323.8787 568.7059)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 332.7703 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 336.1939 568.7059)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 350.0953 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 353.5189 568.7059)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 391.3118 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 394.7354 568.7059)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.0157 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 405.4393 568.7059)\\\" x=\\\"0 3.33 8.89 14.45 20.01 25.01 30.01 35.57 40.57 45.57 51.13\\\">repossessed</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 462.1385 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 465.5621 568.7059)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.4537 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 477.8772 568.7059)\\\" x=\\\"0 5 10.56 13.89 17.22 22.78 28.34 33.9 39.46 42.79 48.35 53.91\\\">surrendered,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 534.5765 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 538 568.7059)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 545.8418 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 549.2654 568.7059)\\\" x=\\\"0 5.56 11.12 16.12\\\">each</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 557.3875)\\\" x=\\\"0 5 10.56 15.56\\\">case</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 54.2231 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 56.9386 557.3875)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 67.5001 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 70.2156 557.3875)\\\" x=\\\"0 5.56 11.12 14.45 22.78 25.06 27.84 30.62 36.18\\\">permitted</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 111.9588 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 114.6743 557.3875)\\\" x=\\\"0 5.56 11.12 16.68 22.24\\\">under</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 140.2505 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 142.966 557.3875)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 158.5862 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 161.3017 557.3875)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 212.996 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 215.7115 557.3875)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.3317 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 234.0472 557.3875)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 282.9632 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 285.6787 557.3875)\\\" x=\\\"0 5 10.56 16.12 18.4\\\">shall</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 306.3623 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 309.0779 557.3875)\\\" x=\\\"0 5 10.56 16.12 18.9 21.18 26.74 32.3\\\">continue</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 346.9441 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 349.6596 557.3875)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 357.9994 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 360.715 557.3875)\\\" x=\\\"0 3.33 8.89 14.45 20.01 27.23\\\">renew,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 390.7296 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 393.4452 557.3875)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 410.1297 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 412.8453 557.3875)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 425.6285 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 428.344 557.3875)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.2356 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 449.9511 557.3875)\\\" x=\\\"0 5 10.56 16.12 18.9 21.18 26.74 32.3\\\">continue</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 487.8173 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 490.5329 557.3875)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 498.8727 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 501.5882 557.3875)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01\\\">charge</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 532.1644 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 534.88 557.3875)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.003 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.7185 557.3875)\\\" x=\\\"0 3.33 8.89 14.45\\\">rent</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 546.0691)\\\" x=\\\"0 5.56 11.12 16.68 22.24 25.57 28.23 31.01 36.57 42.13 44.79 47.57 53.13 56.46 64.79 69.79 72.45 78.01 80.79 83.45 86.23 91.79 94.07 99.07 101.73 108.4 113.96 117.29 122.85 128.41 136.74 142.3 147.86 150.64\\\">under the terms of this Agreement.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 532.7508)\\\" x=\\\"0 3.33 12.77 18.33 20.99 29.32 34.88 39.88 42.54 45.32 50.88 55.88 61.44 64.1 69.66 75.22 80.22 82.88 88.44 93.44 96.22 98.5 104.06 109.62 112.28 119.5 125.06 127.72 133.28 138.84 141.12 143.4 148.96 153.96 159.52 162.18 164.96 170.52 173.18 178.74 184.3 186.96 192.52 198.08 203.08 208.64 213.64 218.64 224.2 227.53 232.53 235.19 240.75 244.08 246.74 252.3 257.86 262.86 265.14 270.14 275.7 281.26 283.54 289.1 291.76 294.54 300.1 302.76 308.32 311.65 317.21 319.99 325.55 330.55 333.33 335.99 341.55 347.11 350.44 353.1 355.38 360.94 363.72 369.28 372.61 378.17 383.17 385.95 388.61 390.89 396.45 399.11 401.89 407.45 413.01 415.67 422.34 425.67 431.23 436.79 442.35 445.68 448.46 453.46\\\">-We may take any action we believe to be necessary or advisable to protect our interest in the Property.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 519.4324)\\\" x=\\\"0 3.33 12.77\\\">-We</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 51.4301 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 54.7506 519.4324)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 73.6422 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 76.9627 519.4324)\\\" x=\\\"0 5.56 11.12 16.68 21.68 27.24 30.02 35.58 37.86 40.14\\\">peacefully</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 122.1092 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 125.4297 519.4324)\\\" x=\\\"0 3.33 8.89 14.45 20.01 25.01 30.01 35.57 40.57\\\">repossess</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 171.0058 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 174.3263 519.4324)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 188.2277 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 191.5482 519.4324)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 229.3411 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 232.6616 519.4324)\\\" x=\\\"0 7.22 12.78 18.34 21.67 27.23 32.23 37.79\\\">wherever</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 273.7896 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 277.1101 519.4324)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 289.8933 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 293.2138 519.4324)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.1054 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 315.4259 519.4324)\\\" x=\\\"0 2.78 5.06 10.62\\\">find</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 331.6075 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 334.928 519.4324)\\\" x=\\\"0 2.28 5.06\\\">it.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 342.7649 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 346.0854 519.4324)\\\" x=\\\"0 9.44\\\">We</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 361.0854 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 364.4059 519.4324)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 378.4684 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 381.7889 519.4324)\\\" x=\\\"0 5.56 7.84 12.84\\\">give</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 400.1922 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 403.5127 519.4324)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.6358 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 422.9563 519.4324)\\\" x=\\\"0 3.33 8.89 14.45 20.01 25.01 30.01 35.57 40.57 45.57 47.85 53.41\\\">repossession</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 481.9358 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 485.2562 519.4324)\\\" x=\\\"0 5.56 11.12 13.9 16.18 21.18 26.74\\\">notices</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 516.9994 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 520.3199 519.4324)\\\" x=\\\"0 3.33 8.89 14.45 20.01 22.29 25.62 31.18\\\">required</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 557.068 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 560.3885 519.4324)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 508.1141)\\\" x=\\\"0 2.28 7.84 15.06\\\">law.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 50.9418 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 53.8695 508.1141)\\\" x=\\\"0 6.67 9.45 12.23 17.79\\\">After</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 74.9876 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 77.9153 508.1141)\\\" x=\\\"0 3.33 8.89 14.45 20.01 25.01 30.01 35.57 40.57 45.57 47.85 53.41\\\">repossession</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.8948 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 139.8224 508.1141)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 148.714 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 151.6417 508.1141)\\\" x=\\\"0 5 10.56 13.89 17.22 22.78 28.34 33.9 39.46 42.79\\\">surrender,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 197.2178 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 200.1455 508.1141)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 212.9287 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 215.8564 508.1141)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 229.9189 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 232.8465 508.1141)\\\" x=\\\"0 5.56 11.12 13.4\\\">hold</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 251.8114 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 254.739 508.1141)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 268.6404 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 271.568 508.1141)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.1393 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 315.067 508.1141)\\\" x=\\\"0 5 10.56 16.12 18.4 23.96 28.96\\\">subject</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 346.8101 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 349.7378 508.1141)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 358.0776 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 361.0053 508.1141)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 377.1283 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 380.056 508.1141)\\\" x=\\\"0 3.33 5.61 11.17 16.73\\\">right</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 399.5677 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 402.4954 508.1141)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 418.6184 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 421.5461 508.1141)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 440.4377 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 443.3653 508.1141)\\\" x=\\\"0 5.56 11.12 16.12\\\">have</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 465.0499 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 467.9776 508.1141)\\\" x=\\\"0 5.56 11.12 16.68 22.24\\\">under</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 493.5537 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 496.4814 508.1141)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64\\\">applicable</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 541.6914 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 544.619 508.1141)\\\" x=\\\"0 2.28 7.84\\\">law</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.6825 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 562.6101 508.1141)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 496.7957)\\\" x=\\\"0 5 10.56 13.89 19.45 22.11 24.89 30.45 36.01 38.67 44.23 49.79 52.57 58.13 63.69 65.97 68.75 71.41 76.97 80.3 82.96 86.29 91.85 96.85 102.41 107.41 112.97 116.3 118.96 121.74 127.3 132.86 135.52 142.19 145.52 151.08 156.64 162.2 165.53 168.31 173.31\\\">cure the default or recover the Property.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 483.4773)\\\" x=\\\"0 3.33 10 15.56 23.89 28.89 31.55 38.77 44.33 46.99 51.99 57.55 63.11 68.67 74.23 76.89 79.67 85.23 90.23 92.51 98.07 103.63 106.29 111.85 117.41 122.41 125.07 130.63 136.19 139.52 147.85 150.13 152.91 155.69 161.25 166.81 169.47 175.03 180.03 182.81 185.09 190.65 196.21 198.87 206.09 208.37 210.65 212.93 215.59 221.15 226.71 229.37 234.93 240.49 246.05 251.61 257.17 259.83 262.61 268.17 270.83 273.61 279.17 284.73 287.39 292.95 301.28 306.84 312.4 317.96 320.74 323.4 328.96 333.96 338.96 342.29 347.85 353.41 358.97 361.75 364.41 369.97 375.53 377.81 383.37 388.37 393.37 396.03 401.59 404.92 410.48 416.04 418.32 423.88 426.16 428.94 434.5 440.06 442.72 448.28 453.28 455.94 458.22 463.78 471\\\">-Sums we spend taking any permitted action will be added to the amount accrued, unless prohibited by law.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 456.8406)\\\" x=\\\"0 6.11 12.78 19.45 26.12 32.79\\\">TAXES.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 68.6664 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 72.5196 456.8406)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 90.3126 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 94.1658 456.8406)\\\" x=\\\"0 8.33 13.89 18.89\\\">must</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 115.8357 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 119.689 456.8406)\\\" x=\\\"0 2.28 10.61 18.94 24.5 30.06 32.34 37.9 40.68 46.24 48.52\\\">immediately</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 173.2144 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 177.0676 456.8406)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 193.1906 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 197.0439 456.8406)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 205.9355 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 209.7887 456.8406)\\\" x=\\\"0 3.33 8.89 11.17 19.5 25.06 30.62 33.95 38.95\\\">reimburse</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 254.3053 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 258.1585 456.8406)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 268.72 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 272.5733 456.8406)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 277.6319 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 281.4851 456.8406)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 294.2683 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 298.1215 456.8406)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 314.2446 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 318.0978 456.8406)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.7677 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 333.6209 456.8406)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 349.744 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 353.5972 456.8406)\\\" x=\\\"0 5.56 7.84\\\">all</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 363.7193 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 367.5725 456.8406)\\\" x=\\\"0 5.56 11.12 16.12 21.68 25.01 30.57 38.9 44.46 50.02\\\">government</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 420.3801 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 424.2334 456.8406)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01 30.57\\\">charges</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 459.8095 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 463.6628 456.8406)\\\" x=\\\"0 3.33 8.89 11.17 16.73 19.51 21.79 27.35\\\">relating</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 496.5778 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 500.431 456.8406)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 508.7709 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 512.6241 456.8406)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.5255 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 530.3787 456.8406)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 445.5223)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24 28.52 34.08 39.64\\\">including,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 75.5268 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 78.3573 445.5223)\\\" x=\\\"0 5.56 11.12\\\">but</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 92.2586 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 95.0891 445.5223)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 108.9905 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 111.8209 445.5223)\\\" x=\\\"0 2.28 4.56 12.89 15.17 17.95 23.51\\\">limited</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 140.8932 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 143.7237 445.5223)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 152.0635 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 154.894 445.5223)\\\" x=\\\"0 2.78 8.34 13.9 18.9\\\">fees,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 176.5737 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 179.4042 445.5223)\\\" x=\\\"0 2.78 8.34 13.34 18.9 23.9\\\">taxes,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 206.0839 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 208.9144 445.5223)\\\" x=\\\"0 2.78 5.06 10.62 16.18\\\">fines</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 230.096 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 232.9265 445.5223)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 249.6111 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 252.4416 445.5223)\\\" x=\\\"0 5 10.56 13.89 18.89 24.45 30.01 33.34 38.9 44.46 49.46\\\">surcharges,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 304.6877 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 307.5181 445.5223)\\\" x=\\\"0 7.22 12.78 18.34 21.12 26.68 32.24\\\">whether</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 343.0943 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 345.9248 445.5223)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.12 31.12 36.68\\\">assessed</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.1709 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 391.0014 445.5223)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.1244 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 404.9549 445.5223)\\\" x=\\\"0 5 10.56 16.12\\\">you,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 423.8563 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 426.6868 445.5223)\\\" x=\\\"0 5.56 10.56\\\">us,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 440.0266 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 442.8571 445.5223)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 451.7487 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 454.5792 445.5223)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.4806 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 471.311 445.5223)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 511.8823 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 514.7128 445.5223)\\\" x=\\\"0 9.44\\\">We</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.7128 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 532.5433 445.5223)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.4349 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 554.2654 445.5223)\\\" x=\\\"0 5.56 11.12\\\">add</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 434.2039)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.0014 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 50.123 434.2039)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 83.4775 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 86.5991 434.2039)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 94.9389 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 98.0606 434.2039)\\\" x=\\\"0 7.22 12.78 18.34\\\">what</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 119.1836 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 122.3052 434.2039)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 138.4283 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 141.5499 434.2039)\\\" x=\\\"0 5.56 12.78\\\">owe</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 159.8946 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 163.0162 434.2039)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 173.5777 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 176.6994 434.2039)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 181.758 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 184.8796 434.2039)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 201.0026 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 204.1242 434.2039)\\\" x=\\\"0 5.56\\\">do</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 215.2473 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 218.3689 434.2039)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 232.2703 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 235.3919 434.2039)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 251.5149 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 254.6365 434.2039)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 265.1981 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 268.3197 434.2039)\\\" x=\\\"0 7.22 12.78 18.34\\\">when</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 292.2259 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 295.3476 434.2039)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.1307 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 311.2524 434.2039)\\\" x=\\\"0 8.33 13.89 18.89\\\">make</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.7055 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.8271 434.2039)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57 36.13\\\">demand.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 377.7431 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 380.8647 434.2039)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 386.4214 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 389.543 434.2039)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 405.666 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 408.7877 434.2039)\\\" x=\\\"0 5.56\\\">do</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.9107 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 423.0323 434.2039)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 436.9337 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 440.0553 434.2039)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.1783 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 459.3 434.2039)\\\" x=\\\"0 5 10.56 15.56\\\">such</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 480.423 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 483.5446 434.2039)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57 33.35\\\">amounts</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.8991 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 525.0207 434.2039)\\\" x=\\\"0 7.22 12.78 18.34\\\">when</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 548.927 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 552.0486 434.2039)\\\" x=\\\"0 2.78 8.34 13.9\\\">they</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 422.8855)\\\" x=\\\"0 5.56 8.89\\\">are</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.5531 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 50.576 422.8855)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.12 31.12 36.68\\\">assessed</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 92.8221 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 95.845 422.8855)\\\" x=\\\"0 3.33 8.89 14.45 16.73 22.29 27.29\\\">(unless</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 128.1399 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 131.1627 422.8855)\\\" x=\\\"0 5 10.56 15.56\\\">such</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 152.2858 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 155.3087 422.8855)\\\" x=\\\"0 3.33 8.89 13.89 19.45 21.73 24.51\\\">results</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 184.8204 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 187.8433 422.8855)\\\" x=\\\"0 2.78 6.11 11.67\\\">from</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 207.8433 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.8661 422.8855)\\\" x=\\\"0 5.56 11.12\\\">our</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.3192 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 228.3421 422.8855)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.8 32.36 37.92 42.92 48.48 51.81\\\">negligence),</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 282.9417 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 285.9646 422.8855)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.0876 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 305.1105 422.8855)\\\" x=\\\"0 8.33 13.89 18.89\\\">must</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 326.7804 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 329.8033 422.8855)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 345.9264 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 348.9492 422.8855)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 365.0723 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 368.0951 422.8855)\\\" x=\\\"0 5.56 11.12 16.68 22.24 24.52 27.3 29.58 35.14\\\">penalties</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 408.2416 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 411.2645 422.8855)\\\" x=\\\"0 7.22 12.78 18.34\\\">when</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 435.1707 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 438.1936 422.8855)\\\" x=\\\"0 5.56 11.12\\\">due</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.8782 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 457.9011 422.8855)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.7927 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 469.8155 422.8855)\\\" x=\\\"0 3.33 8.89 11.17 19.5 25.06 30.62 33.95 38.95\\\">reimburse</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 514.3321 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 517.355 422.8855)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 527.9165 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 530.9394 422.8855)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 535.998 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 539.0209 422.8855)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.8041 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 554.8269 422.8855)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 411.5672)\\\" x=\\\"0 2.78 8.34 13.9 22.23\\\">them.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 58.1098 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 61.0597 411.5672)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 78.8527 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.8026 411.5672)\\\" x=\\\"0 8.33 13.89 18.89\\\">must</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 103.4725 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 106.4225 411.5672)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 122.5455 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 125.4955 411.5672)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 139.3968 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 142.3467 411.5672)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01 30.57\\\">charges</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 177.9229 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 180.8729 411.5672)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 188.7147 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 191.6646 411.5672)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 207.2847 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.2346 411.5672)\\\" x=\\\"0 5.56 11.12 14.45 20.01 25.57 28.9 34.46 40.02\\\">paragraph</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 255.8255 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 258.7754 411.5672)\\\" x=\\\"0 5.56 10.56 16.12\\\">even</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.46 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 283.4099 411.5672)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 288.4685 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 291.4184 411.5672)\\\" x=\\\"0 5 10.56 15.56\\\">such</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.5415 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 315.4914 411.5672)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01 30.57\\\">charges</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.0676 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 354.0175 411.5672)\\\" x=\\\"0 5.56 8.89\\\">are</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 368.4707 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 371.4206 411.5672)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 385.322 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 388.2719 411.5672)\\\" x=\\\"0 5.56 7.84 10.12 12.4 17.96\\\">billed</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 411.7973 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 414.7472 411.5672)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 423.0871 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 426.037 411.5672)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 436.5985 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 439.5485 411.5672)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 448.4401 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 451.39 411.5672)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 459.7298 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 462.6798 411.5672)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 478.8028 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 481.7528 411.5672)\\\" x=\\\"0 5.56 11.12 13.9 16.18\\\">until</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 500.2147 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 503.1646 411.5672)\\\" x=\\\"0 5.56 8.34 11.12 16.68\\\">after</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 523.1744 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 526.1243 411.5672)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 540.0257 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 542.9756 411.5672)\\\" x=\\\"0 5.56 11.12\\\">end</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.6602 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 562.6101 411.5672)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 400.2488)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.0014 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 49.7259 400.2488)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 98.6419 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 101.3665 400.2488)\\\" x=\\\"0 2.78 8.34 11.67 20\\\">term,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 124.1448 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 126.8693 400.2488)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 137.4308 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 140.1554 400.2488)\\\" x=\\\"0 2.28 7.84 13.4\\\">long</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 159.1202 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 161.8448 400.2488)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 172.4063 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 175.1308 400.2488)\\\" x=\\\"0 5 10.56 15.56\\\">such</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 196.2539 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 198.9784 400.2488)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01 30.57\\\">charges</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 234.5546 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 237.2791 400.2488)\\\" x=\\\"0 5.56 8.89\\\">are</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 251.7322 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 254.4568 400.2488)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64\\\">applicable</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.6667 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 302.3913 400.2488)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 310.7311 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 313.4556 400.2488)\\\" x=\\\"0 5 10.56 18.89\\\">some</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 337.9088 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 340.6333 400.2488)\\\" x=\\\"0 5.56 11.12 14.45\\\">part</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 357.8648 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 360.5893 400.2488)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 368.9291 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 371.6537 400.2488)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 385.555 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 388.2796 400.2488)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 437.1956 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 439.9201 400.2488)\\\" x=\\\"0 2.78 8.34 11.67 20\\\">term.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 462.6985 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 465.423 400.2488)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 483.216 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 485.9405 400.2488)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 500.003 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 502.7275 400.2488)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 516.6289 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 519.3534 400.2488)\\\" x=\\\"0 5.56 11.12 16.12\\\">have</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 541.038 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 543.7625 400.2488)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.1024 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 554.8269 400.2488)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 388.9305)\\\" x=\\\"0 5.56 11.12 14.45 17.11 19.39 24.95 29.95 35.51 43.84 49.4 52.06 54.84 60.4 65.4 70.96 75.96\\\">our income taxes.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 375.6121)\\\" x=\\\"0 6.11 8.89 15 20.56 27.23 30.01 32.67 42.11 47.67 50.33 53.66 59.22 62 67.56 69.84 75.4 78.06 80.84 83.12 85.9 88.18 93.74 96.4 99.18 104.74 107.4 110.18 115.74 121.3 123.96 130.63 133.96 139.52 145.08 150.64 153.97 156.75 161.75 164.41 167.19 172.75 176.08 178.74 181.52 187.08 192.64 195.3 198.08 203.64 206.97 215.3 217.96 223.52 226.3 228.96 231.74 237.3 242.86 245.52 247.8 253.36 258.92 263.92 269.48 272.14 277.7 283.26 288.82 291.48 297.04 302.6 305.38 307.66 309.94 312.6 317.6 323.16 328.72 331.38 336.94 341.94 347.5 353.06 355.34 358.67 364.23 366.89 372.45 379.67 385.23 390.79 394.12 399.12 404.68 406.96 412.52\\\">TITLE. We retain title to the Property for the term of the lease and until you acquire ownership.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 362.2937)\\\" x=\\\"0 6.67 13.34 20.01 28.34 35.01 42.23 48.34 55.01 57.79 60.45 69.89 75.45 78.11 83.67 89.23 94.23 99.79 102.45 107.45 112.45 118.01 123.57 129.13 134.69 136.97 142.53 148.09 150.75 156.31 161.87 167.43 169.71 172.49 177.49 180.15 182.93 186.26 191.82 200.15 202.81 207.81 213.37 218.93 222.26 224.92 229.92 235.48 241.04 246.04 251.04 253.32 258.88 264.44 267.1 272.66 277.66 282.66 288.22 293.78 299.34 302.12 304.9 307.56 313.12 318.12 320.78 326.34 329.67 335.23 340.23 342.51 348.07 353.63 359.19 361.85 367.41 372.97 375.25 380.81 388.03\\\">PAYMENTS. We have scheduled debits from your checking account, as provided below:</text></g><clipPath id=\\\"clip2-2\\\"><path d=\\\"M 35 328 L 574 328 L 574 345 L 35 345 L 35 328 z \\\"/></clipPath><g clip-path=\\\"url(#clip2-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.2825 332.657)\\\" x=\\\"0 7.22 15 22.22 28.89 36.11 44.44 51.11 58.33 60.99 67.66 74.88 80.99 88.21 95.99 103.21 105.99 112.1 118.77 124.88 127.66 135.44 142.66 145.32 151.43 159.21 166.43 169.09 175.76 182.43 189.1 197.43 204.1 211.32 217.43 224.1 226.76 233.43 236.21 242.88 245.54 252.21 259.43 266.65 269.31 272.64 279.31 286.53 293.75 296.41 303.63 310.3 316.97 319.75 325.86 332.53\\\">CONSUMER AUTHORIZATION FOR PAYMENTS VIA ACH (ACH DEBITS)</text></g><clipPath id=\\\"clip2-3\\\"><path d=\\\"M 35 79 L 574 79 L 574 329 L 35 329 L 35 79 z \\\"/></clipPath><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 316.3387)\\\" x=\\\"0 6.67 13.89\\\">ACH</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 61.7883 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 66.1692 316.3387)\\\" x=\\\"0 7.22 12.78 18.34 20.62 23.4\\\">Debits</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 94.5725 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 98.9533 316.3387)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 110.6233 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 115.0041 316.3387)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46 42.79 47.79\\\">Payment(s)</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 166.1272 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 170.508 316.3387)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 187.1926 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 191.5735 316.3387)\\\" x=\\\"0 7.22 12.78 18.34 23.9\\\">Range</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 221.0412 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 225.4221 316.3387)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.762 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 238.1428 316.3387)\\\" x=\\\"0 7.22 12.78 18.34 20.62 23.4 28.4\\\">Debits.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 269.3245 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 273.7053 316.3387)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.4983 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 295.8792 316.3387)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 28.35 30.63 35.63\\\">authorize</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 337.0754 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 341.4563 316.3387)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 352.0178 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 356.3987 316.3387)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 364.7385 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 369.1194 316.3387)\\\" x=\\\"0 5.56 11.12 16.68 18.96\\\">debit</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 390.8626 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 395.2434 316.3387)\\\" x=\\\"0 2.78 8.34 13.9 19.46\\\">funds</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.7063 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 424.0872 316.3387)\\\" x=\\\"0 2.78 6.11 11.67\\\">from</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 444.0872 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 448.4681 316.3387)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.9212 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 472.3021 316.3387)\\\" x=\\\"0 5.56 11.12 16.68\\\">bank</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 493.9866 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 498.3675 316.3387)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.68 32.24\\\">account</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 533.3919 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 537.7728 316.3387)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.4427 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.8236 316.3387)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.7249 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 305.0203)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 74.0295 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 77.2781 305.0203)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 85.6179 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 88.8665 305.0203)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 102.7678 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 106.0164 305.0203)\\\" x=\\\"0 2.28 7.84 13.4 18.4\\\">lease</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 129.9813 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 133.2298 305.0203)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57 38.35\\\">payments</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 176.5843 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 179.8329 305.0203)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 196.5174 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 199.766 305.0203)\\\" x=\\\"0 5.56 7.84\\\">all</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.8881 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 213.1366 305.0203)\\\" x=\\\"0 5.56 8.34 13.9 19.46\\\">other</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 235.9296 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 239.1782 305.0203)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57 33.35\\\">amounts</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 277.5327 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 280.7812 305.0203)\\\" x=\\\"0 5.56 10.56 15.56 18.89 24.45 30.01\\\">accrued</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 316.3574 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 319.606 305.0203)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 330.1675 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 333.4161 305.0203)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29 32.85\\\">provided</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.834 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 375.0826 305.0203)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 382.9244 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 386.173 305.0203)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 401.7931 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 405.0417 305.0203)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement,</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.736 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 459.9846 305.0203)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.8264 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 471.0749 305.0203)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.9763 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 488.2249 305.0203)\\\" x=\\\"0 2.78 8.34 10.62 12.9 18.46 25.68 27.96 33.52\\\">following</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 527.3118 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 530.5603 305.0203)\\\" x=\\\"0 3.33 8.89 14.45 20.01\\\">range</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 556.1365 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 559.3851 305.0203)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.7249 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 293.7019)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57 33.35\\\">amounts</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 79.0295 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.706 293.7019)\\\" x=\\\"0 5.56 11.12 13.9 19.46\\\">$1.00</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 106.7305 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 109.407 293.7019)\\\" x=\\\"0\\\">-</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 112.7371 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 115.4136 293.7019)\\\" x=\\\"0 5.56 11.12 16.68 22.24 25.02 30.58 36.14\\\">$500.00.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 154.3394 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 157.016 293.7019)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 174.8089 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 177.4855 293.7019)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 28.35 30.63 35.63\\\">authorize</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 218.6818 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 221.3583 293.7019)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.9198 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 234.5964 293.7019)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 242.9362 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 245.6128 293.7019)\\\" x=\\\"0 5.56 11.12 16.68 18.96\\\">debit</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 267.3559 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 270.0325 293.7019)\\\" x=\\\"0 2.28 7.84 12.84 17.84 23.4\\\">lesser</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 296.7659 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 299.4424 293.7019)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57 33.35\\\">amounts</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 337.7969 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 340.4735 293.7019)\\\" x=\\\"0 2.78 8.34 13.9\\\">than</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.9364 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 362.6129 293.7019)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 382.066 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 384.7426 293.7019)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57 38.35\\\">payment,</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 425.8754 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 428.5519 293.7019)\\\" x=\\\"0 5.56 11.12 16.12 21.68\\\">based</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 455.798 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 458.4746 293.7019)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 469.5976 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 472.2742 293.7019)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 491.7273 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 494.4038 293.7019)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 532.7583 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 535.4349 293.7019)\\\" x=\\\"0 5.56 7.84 12.84 15.62 21.18 24.51 29.51\\\">history.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.7249 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 282.3836)\\\" x=\\\"0 7.78 13.34 16.67 19.33 24.89 30.45 36.01 38.29 41.07 46.07 48.73 55.95 58.23 60.51 62.79 65.45 71.01 76.57 79.23 81.51 87.07 89.73 94.73 100.29 105.29 110.85 113.51 116.84 122.4 127.96 133.52 139.08 141.86 144.52 150.08 155.64 157.92 163.48 168.48 173.48 176.14 183.36 188.92 191.58 197.14 202.7 205.48 207.76 210.54 215.54 218.2 223.2 228.76 234.32\\\">Our debits will be in such range, unless we notify you.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 269.0652)\\\" x=\\\"0 6.67 13.89 21.11 23.77 30.99 36.55 42.11 44.39 47.17 52.17 54.83 57.61 63.17 66.5 69.16 76.38 81.94 84.72 90.28 93.61 99.17 104.73 110.29 112.95 119.62 125.18 130.18 138.51 144.07 149.63 152.41 155.07 161.18 166.74 172.3 175.08 177.74 184.41 189.97 195.53 198.19 203.75 209.31 212.09 217.65 223.21 226.54 228.82 233.82 239.38 242.04 247.6 252.6 255.26 258.04 263.6 266.26 271.82 277.38 282.94 285.22 288 290.66 296.22 298.88 304.44 310 312.78 318.34 323.9 326.56 329.34 334.9 338.23 340.89 346.45 352.01 357.01 359.67 363 368.56 371.34 376.9 380.23 385.79 391.35 396.91 399.57 405.13 410.69 415.69 424.02 429.58 435.14 437.92 440.58 443.36 448.92 454.48\\\">ACH Debits for Returned Payment Fee. You authorize us to debit $ 20.00 for an* D E M O *payment fee.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 255.7469)\\\" x=\\\"0 7.22 12.78 15.56 17.84 22.84\\\">Notice</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 69.0783 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 72.6034 255.7469)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 80.9433 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 84.4684 255.7469)\\\" x=\\\"0 6.67 12.23 15.56 17.84 23.4 26.18 28.46 34.02 39.58\\\">Variation.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 126.8317 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 130.3568 255.7469)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 135.9135 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 139.4386 255.7469)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 145.0001 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.5253 255.7469)\\\" x=\\\"0 5.56 11.12 16.68 18.96\\\">debit</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 170.2684 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 173.7935 255.7469)\\\" x=\\\"0 2.78 8.34 10.62 12.9\\\">falls</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 191.6939 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 195.2191 255.7469)\\\" x=\\\"0 5.56 11.12 13.9 18.9 21.18 26.74\\\">outside</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 227.5238 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 231.0489 255.7469)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 244.9503 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 248.4754 255.7469)\\\" x=\\\"0 5 10.56 16.12 21.12 23.4 26.18 28.46 34.02\\\">specified</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 288.0603 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 291.5855 255.7469)\\\" x=\\\"0 3.33 8.89 14.45 20.01 25.57\\\">range,</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.94 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 323.4651 255.7469)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 336.2483 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 339.7734 255.7469)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 353.8359 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 357.3611 255.7469)\\\" x=\\\"0 5.56 13.89 19.45 21.73\\\">email</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 381.3747 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 384.8999 255.7469)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 401.0229 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 404.548 255.7469)\\\" x=\\\"0 5.56 11.12 13.9 16.18 21.18\\\">notice</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 431.2912 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 434.8163 255.7469)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 443.1562 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 446.6813 255.7469)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 460.5827 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 464.1078 255.7469)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 497.4623 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 500.9874 255.7469)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 517.672 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 521.1971 255.7469)\\\" x=\\\"0 5.56 11.12 13.9\\\">date</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 540.66 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 544.1852 255.7469)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 555.3082 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 558.8333 255.7469)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.7249 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 244.4285)\\\" x=\\\"0 5.56 8.34 11.12 16.68 20.01 22.67 29.89 35.45 37.73 42.73 48.29 50.95 58.17 63.73 66.39 73.61 75.89 78.17 80.45 83.11 88.67 94.23 99.79 102.07 104.85 107.51 112.51 118.07 123.07 128.63 131.29 136.85 145.18 150.74 156.3 161.86 164.64 167.42 170.08 176.75 182.31 187.87 190.53 197.75 200.03 202.31 204.59 207.25 212.81 218.37 221.15 223.81 229.37 232.15 234.81 237.09 242.65 248.21 253.21 255.99 258.65 264.21 269.77 272.43 277.43 282.99 285.27 290.83 296.39 301.95 307.51 310.84 313.5 319.06 324.62 329.62 334.62 336.53 339.19 344.75 350.31 353.09 355.37 360.37 365.93\\\">after which we will debit such amount. You will get at least 10 calendar days&apos; notice.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 231.1102)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68\\\">Payment</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 80.1379 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 85.2907 231.1102)\\\" x=\\\"0 7.22 12.78 15.56 21.12 26.12\\\">Dates.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 114.192 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 119.3448 231.1102)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 137.1377 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 142.2905 231.1102)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 28.35 30.63 35.63\\\">authorize</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 183.4868 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 188.6395 231.1102)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.74\\\">debits</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 215.3827 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 220.5354 231.1102)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.6585 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 236.8113 231.1102)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.7028 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 250.8556 231.1102)\\\" x=\\\"0 5.56 8.34 11.12 16.68\\\">after</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 270.8654 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 276.0181 231.1102)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 289.9195 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 295.0722 231.1102)\\\" x=\\\"0 5.56 11.12 13.9 19.46\\\">dates</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.5351 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 324.6879 231.1102)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 336.3578 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 341.5106 231.1102)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 379.865 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 385.0178 231.1102)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29 32.85\\\">provided</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 423.4358 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 428.5885 231.1102)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 436.4303 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 441.5831 231.1102)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 455.4844 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 460.6372 231.1102)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement,</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.3315 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 517.4843 231.1102)\\\" x=\\\"0 5.56 11.12 13.4 18.96 23.96\\\">unless</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 546.4491 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 551.6019 231.1102)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.7249 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 219.7918)\\\" x=\\\"0 5.56 8.34 13.9 19.46 22.79 30.01 32.29 37.29\\\">otherwise</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 83.5315 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 86.8927 219.7918)\\\" x=\\\"0 5.56 7.84 11.17 16.73 21.73\\\">direct</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 111.4044 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 114.7656 219.7918)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 125.3271 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 128.6884 219.7918)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.5302 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 139.8914 219.7918)\\\" x=\\\"0 7.22 10.55 12.83 15.61 17.89 23.45 29.01\\\">writing.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 171.6834 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 175.0446 219.7918)\\\" x=\\\"0 9.44\\\">We</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 190.0446 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 193.4058 219.7918)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 207.4683 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.8296 219.7918)\\\" x=\\\"0 5.56 11.12 16.68 18.96\\\">debit</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 232.5727 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 235.9339 219.7918)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.057 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 250.4182 219.7918)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.3098 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 262.671 219.7918)\\\" x=\\\"0 5.56 8.34 11.12 16.68\\\">after</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 282.6808 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 286.0421 219.7918)\\\" x=\\\"0 5.56 10.56 16.12 19.45\\\">every</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 310.4952 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 313.8564 219.7918)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 352.2109 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 355.5721 219.7918)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29 32.85\\\">provided</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.9901 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 397.3513 219.7918)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 405.1931 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 408.5543 219.7918)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 424.1745 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 427.5357 219.7918)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement;</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 479.23 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 482.5912 219.7918)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29 32.85 38.41\\\">provided,</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 523.7875 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 527.1488 219.7918)\\\" x=\\\"0 5.56 11.12 18.34 23.9 28.9 34.46 37.79\\\">however,</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.7249 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 208.4734)\\\" x=\\\"0 2.78 8.34 13.9\\\">that</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 57.3547 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 60.5776 208.4734)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 73.3608 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 76.5836 208.4734)\\\" x=\\\"0 3.33 8.89 13.89 19.45 22.78 27.78\\\">reserve</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 109.9284 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 113.1512 208.4734)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 127.0526 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 130.2755 208.4734)\\\" x=\\\"0 3.33 5.61 11.17 16.73\\\">right</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 149.7872 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 153.01 208.4734)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 161.3499 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 164.5728 208.4734)\\\" x=\\\"0 5.56 11.12 16.68 18.96\\\">debit</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 186.3159 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 189.5388 208.4734)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 200.6618 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 203.8847 208.4734)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 217.7861 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 221.0089 208.4734)\\\" x=\\\"0 5.56 11.12 16.68 21.68 23.96 29.52\\\">banking</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.0968 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 259.3197 208.4734)\\\" x=\\\"0 5.56 11.12\\\">day</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.4427 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 278.6656 208.4734)\\\" x=\\\"0 2.28 10.61 18.94 24.5 30.06 32.34 37.9 40.68 46.24 48.52\\\">immediately</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 332.191 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 335.4139 208.4734)\\\" x=\\\"0 5.56 8.89 14.45 19.45 25.01 30.57 32.85 38.41\\\">preceding</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 379.3934 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 382.6162 208.4734)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.0694 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 405.2922 208.4734)\\\" x=\\\"0 3.33 8.89 14.45 20.01 22.29 27.85\\\">regular</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 436.4787 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 439.7016 208.4734)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 478.0561 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 481.279 208.4734)\\\" x=\\\"0 5.56 11.12 13.9\\\">date</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 500.7419 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 503.9647 208.4734)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.0233 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 512.2462 208.4734)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.1476 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 529.3704 208.4734)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.7249 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 197.1551)\\\" x=\\\"0 5.56 11.12 13.9 19.46 22.12 24.9 30.46 32.74 35.02 40.02 42.68 48.24 53.8 56.46 62.02 64.68 70.24 75.8 81.36 84.69 90.25 95.81 101.37 106.37 108.65 114.21 119.77 122.43 127.99 133.55 138.55 141.21 144.54 146.82 149.6 155.16 157.94 160.72 163.38 168.94 171.6 177.16 182.72 185 187.28 192.84 198.4 203.4 206.06 211.62 214.95 217.61 224.83 230.39 235.95 240.95 246.51 252.07 257.63 260.29 265.85 271.41 276.41 279.74\\\">date falls on a non-banking day (i.e., a holiday or weekend day).</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 183.8367)\\\" x=\\\"0 7.22 12.78 16.11 19.44 25 30 32.78 35.06 40.62 46.18 51.18 53.96 56.62 63.29 68.85 74.41 77.07 82.63 88.19 90.97 96.53 102.09 105.42 107.7 112.7 118.26 120.92 126.48 131.48 134.14 136.92 142.48 145.14 150.7 156.26 161.82 164.1 166.88 169.54 175.1 180.66 186.22 188.88 193.88 197.21 202.77 208.33 210.61 213.39 216.05 221.05 226.61 232.17 235.5 238.16 243.72 248.72 253.72 259.28 264.84 270.4 273.18 275.84 278.62 284.18 286.84 291.84 297.4 300.73 304.06 309.62 314.62 317.4 320.06 325.62 328.95 332.28 337.84 341.17 346.17\\\">Corrections. You authorize us to debit and credit your* D E M O * correct errors.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 170.5184)\\\" x=\\\"0 6.67 9.45 12.23 17.79 22.79 25.57 27.85 32.85 38.41 41.07 48.29 53.85 56.63 62.19 64.97 67.63 73.74 79.3 84.86 87.52 90.3 93.63 99.19 104.75 109.75 115.31 120.31 123.09 125.37 130.93 136.49 138.4 143.4 146.06 151.62 154.4 157.18 162.74 167.74 170.52 172.8 177.8 183.36 186.02 191.58 197.14 199.92 205.48 208.14 210.42 215.42 218.08 220.86 226.42 231.98 234.64 241.31 246.87 250.2 255.76 261.32 269.65 275.21 280.77 283.55 286.21 293.43 298.99 301.77 307.33 309.99 315.55 318.88 324.44 329.44 331.72 337.28 342.84 348.4 351.06 356.62 362.18 367.74 372.74 378.3\\\">Effective Date. The transaction&apos;s effective date is the Agreement Date provided above.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 157.2)\\\" x=\\\"0 6.67 11.67 16.67 22.23 27.79 33.35 36.13 38.79 44.35 49.91 55.47 58.13 65.35 70.91 76.47 79.25 81.53 87.09 92.65 95.43 98.09 104.76 110.32 115.88 118.54 124.1 129.66 132.44 138 143.56 146.89 149.17 154.17 159.73 162.39 165.17 170.73 176.29 178.95 184.51 190.07 195.63 197.91 200.69 205.69 208.35 211.13 216.69 219.35 222.13 227.69 229.97 234.97 237.63 243.19 248.19 253.19 258.75 264.31 269.87 272.65 275.43 278.09 285.31 290.87 299.2 304.76 310.32 313.65 316.31 320.2 324.09 327.98 331.87 335.76 341.32 346.88 352.44 358 360.66 367.88 373.44 379 381.78 384.06 389.62 395.18 397.84 405.06 410.62 418.95 424.51 430.07 433.4 436.06 439.95 443.84 447.73 451.62 455.51 461.07 466.63 472.19 477.75\\\">Account and Routing. You authorize the debits to this account: Number *****3968 Routing Number *****1451.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 143.8816)\\\" x=\\\"0 7.22 12.78 18.34 23.9 29.46\\\">Change</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 75.7043 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 78.8745 143.8816)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 86.7163 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 89.8865 143.8816)\\\" x=\\\"0 6.67 11.67 16.67 22.23 27.79 33.35\\\">Account</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 126.0193 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 129.1895 143.8816)\\\" x=\\\"0 2.78 8.34 11.12 16.68 20.01 28.34 33.9 36.68 38.96 44.52 50.08\\\">Information:</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 182.0508 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 185.221 143.8816)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 203.0139 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 206.1841 143.8816)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 28.35 30.63 35.63\\\">authorize</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.3804 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 250.5506 143.8816)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 261.1121 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 264.2823 143.8816)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 272.6222 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 275.7923 143.8816)\\\" x=\\\"0 5.56 11.12 16.68 18.96\\\">debit</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 297.5355 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 300.7057 143.8816)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 316.8287 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 319.9989 143.8816)\\\" x=\\\"0 5.56 11.12\\\">new</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.3437 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 341.5138 143.8816)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.68 32.24\\\">account</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 376.5382 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 379.7084 143.8816)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 395.8315 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 399.0017 143.8816)\\\" x=\\\"0 5.56 7.84 12.84\\\">give</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 417.405 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 420.5752 143.8816)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 431.1367 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 434.3069 143.8816)\\\" x=\\\"0 2.28 7.84 10.62 16.18 19.51 27.84 33.4 36.18 38.46 44.02\\\">information</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 483.8918 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 487.062 143.8816)\\\" x=\\\"0 2.78 8.34 11.67\\\">for.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.5103 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 504.6805 143.8816)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 510.2371 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 513.4073 143.8816)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.5303 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 532.7005 143.8816)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.68 32.24\\\">account</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.7249 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 132.5633)\\\" x=\\\"0 2.28 7.28 9.94 13.27 18.83 21.11 26.67 31.67 34.45 40.01 45.57 48.23 55.45 61.01 63.67 70.89 73.17 75.45 77.73 80.39 85.95 91.51 97.07 99.35 102.13 104.79 110.35 115.91 120.91 123.57 129.13 134.13 139.13 144.69 150.25 155.81 158.59 161.25 168.47 174.03 176.69 182.25 187.81 192.81 198.37 201.03 206.59 212.15 214.81 217.59 219.87 222.15 227.71\\\">is re* D E M O *ill debit any account we have on file.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 119.2449)\\\" x=\\\"0 6.67 9.45 15.01 20.57 23.23 29.9 35.46 40.46 48.79 54.35 59.91 62.69 67.69 70.47 73.13 79.8 85.36 90.92 93.58 101.91 107.47 112.47 115.13 120.13 122.91 128.47 134.03 136.69 142.25 147.81 152.81 161.14 166.7 172.26 175.04 177.7 183.26 186.04 188.7 190.98 196.54 202.1 207.1 209.88 212.54 215.32 220.88 224.21 229.77 235.33 237.99 243.55 249.11 254.67 259.67 261.95 267.51 273.07 275.73 281.29 286.85 291.85 296.85 299.51 305.07 310.63 313.41 318.97 322.3 327.86 330.52 336.08 338.74 344.3 349.86 354.86 363.19 368.75 374.31 377.09\\\">Stop Payments. You may stop payment at least three banking days before a payment.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 105.9266)\\\" x=\\\"0 7.22 12.78 17.78 23.34 28.34 33.9 36.68 38.96 44.52 50.08\\\">Revocation,</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 93.5412 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 97.2277 105.9266)\\\" x=\\\"0 7.22 12.78 18.34 23.34 28.9 31.18 33.46 39.02 41.8 44.08 49.64 55.2\\\">Cancellation,</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 155.216 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 158.9024 105.9266)\\\" x=\\\"0 6.11 11.67 15 23.33 25.61 31.17 36.73 39.51 41.79 47.35 52.91\\\">Termination.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 214.5958 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 218.2823 105.9266)\\\" x=\\\"0 6.11 11.67 13.95\\\">This</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 237.2325 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 240.9189 105.9266)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 28.35 30.63 35.63 41.19 43.97 46.25 51.81\\\">authorization</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 298.2968 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 301.9833 105.9266)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.8\\\">applies</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 333.7899 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 337.4764 105.9266)\\\" x=\\\"0 5.56 11.12 13.9 16.18\\\">until</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.9383 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 359.6248 105.9266)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.7478 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 379.4343 105.9266)\\\" x=\\\"0 3.33 8.89 13.89 19.45 24.45\\\">revoke</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 409.449 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 413.1354 105.9266)\\\" x=\\\"0 2.28 5.06\\\">it.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 420.9723 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 424.6588 105.9266)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 442.4518 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 446.1382 105.9266)\\\" x=\\\"0 8.33 13.89 18.89\\\">must</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.8082 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 471.4946 105.9266)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29\\\">provide</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 504.3511 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 508.0375 105.9266)\\\" x=\\\"0 5.56\\\">at</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 516.3774 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 520.0639 105.9266)\\\" x=\\\"0 2.28 7.84 13.4 18.4\\\">least</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 541.2455 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 544.932 105.9266)\\\" x=\\\"0 2.78 8.34 11.67 17.23\\\">three</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.7249 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 94.6082)\\\" x=\\\"0 5.56 11.12 16.12 21.12 23.03 25.69 31.25 36.81 39.59 41.87 46.87 52.43 55.09 57.87 63.43 66.09 71.09 76.65 82.21 87.21 92.77 95.05 97.83 100.49 107.71 113.27 115.55 117.83 120.49 126.05 128.83 131.49 134.82 140.38 145.94 151.5 154.83 157.49 163.05 168.61 174.17 177.5 183.06 188.62 194.18 199.74 202.4 207.96 210.74 213.4 215.68 221.24 226.8 231.8 234.58 237.24 240.02 245.58 248.91 254.47 260.03 262.69 268.25 273.81 278.81 283.81 286.47 292.03 297.59 300.37 305.93 309.26 314.82 317.48 320.26 325.82 331.38 334.04 339.6 342.93 348.49 354.05 359.61 364.61 370.17 375.73 378.39 383.95 386.73 389.51 395.07 400.07 402.85 405.13 410.13 415.69 418.35 423.91 429.47 432.25 437.81 440.47 446.03 448.81 451.47 454.25 459.81 465.37 468.03 470.81 476.37 479.7 488.03 490.31 495.87 501.43 504.21 506.49 512.05 517.61\\\">days&apos; notice to cancel. Call at (100) 000-0006 at least three days before the proposed effective date of the termination.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 81.2898)\\\" x=\\\"0 7.78 10.56 16.12 21.68 25.01 27.67 34.89 40.45 46.01 51.57 57.13 62.69 67.69 70.47 73.13 80.35 85.91 88.69 90.97 93.75 98.75 101.41 106.97 111.97 114.63 120.19 122.97 125.63 127.91 133.47 139.03 144.03 146.81 149.47 152.25 154.53 159.53 165.09 167.75 173.31 178.87 183.87 186.15 191.71 197.27 202.27 207.27 209.93 215.49 221.05 226.05 231.05 233.71 239.27 244.83 247.61 253.17 256.5 262.06 264.72 267.5 273.06 278.62 281.28 286.84 292.4 297.4 300.18 302.84 308.4 310.68 312.96 315.24 317.52 323.08 328.64 331.3 336.86 342.42 345.2 350.76 353.42 355.7 358.48 361.14 366.14 371.7 377.26 380.59 383.25 388.81 393.81 398.81 404.37 409.93 415.49 418.27 420.93 423.21 428.77 431.55 437.11 440.44 448.77 454.33 457.11 459.39 464.95 470.51 473.17 478.17 483.73 489.29 494.85 500.41 505.97 510.97\\\">Other Changes. Notify us at least five business days before the next billing date if your account information changes.</text></g><clipPath id=\\\"clip2-4\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip2-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.775 345.3758 L 573.625 345.3758 L 573.625 344.3758 L 34.775 344.3758 L 34.775 345.3758 z \\\"/><path clip-path=\\\"url(#clip2-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.625 344.3758 L 573.625 344.3758 L 573.625 329.0574 L 572.625 329.0574 L 572.625 344.3758 z \\\"/><path clip-path=\\\"url(#clip2-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.775 344.3758 L 35.775 344.3758 L 35.775 329.0574 L 34.775 329.0574 L 34.775 344.3758 z \\\"/><path clip-path=\\\"url(#clip2-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.775 329.0574 L 573.625 329.0574 L 573.625 328.0574 L 34.775 328.0574 L 34.775 329.0574 z \\\"/><path clip-path=\\\"url(#clip2-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.775 79.6902 L 573.625 79.6902 L 573.625 78.6902 L 34.775 78.6902 L 34.775 79.6902 z \\\"/><path clip-path=\\\"url(#clip2-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.625 328.0574 L 573.625 328.0574 L 573.625 79.6902 L 572.625 79.6902 L 572.625 328.0574 z \\\"/><path clip-path=\\\"url(#clip2-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.775 328.0574 L 35.775 328.0574 L 35.775 79.6902 L 34.775 79.6902 L 34.775 328.0574 z \\\"/><g clip-path=\\\"url(#clip2-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 36.5264)\\\" x=\\\"0 6.498 11.997 14.391 16.785 21.789 26.793 29.295 34.299 39.303 44.307 504 506.3906 508.7812 511.1719 513.5625 515.9531 518.3438 520.7344 523.125 525.5156\\\">UT  07/2019          </text></g><g clip-path=\\\"url(#clip2-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 26.3398)\\\" x=\\\"0 6.003 11.007 16.011 21.015\\\">Page </text></g><g clip-path=\\\"url(#clip2-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 55.8097 26.3398)\\\" x=\\\"0\\\">3</text></g><g clip-path=\\\"url(#clip2-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.815 26.3398)\\\" x=\\\"0 2.394 7.398 9.9\\\"> of </text></g><g clip-path=\\\"url(#clip2-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 73.1021 26.3398)\\\" x=\\\"0\\\">7</text></g><g clip-path=\\\"url(#clip2-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#d9d9d9\\\" style=\\\"font-family:f2-0; font-size:54pt; white-space:pre\\\" transform=\\\"matrix(0.707 0.707 0.707 -0.707 135.6027 198.5094)\\\" x=\\\"0 56.016 96.048 136.08 176.112 216.144 236.16 284.184 324.216 344.232 364.248 416.232 456.264 480.24\\\">Qoppa Software</text></g><g clip-path=\\\"url(#clip2-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#002ba6\\\" style=\\\"font-family:f2-0; font-size:9pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.932 772)\\\" x=\\\"0 9.336 16.008 22.68 29.352 36.024 39.36 47.364 54.036 57.372 60.708 69.372 76.044 80.04 86.712 90.048 94.044 97.38 104.712 111.384 115.38 118.716 126.72 132.72 139.392 142.056 148.728 155.4 158.736 161.4 168.072 174.744 178.08 187.416 194.088 196.752 202.752 206.088 210.084 213.42 220.092 223.428 226.764 233.436 239.436 242.772 246.108 249.444 258.108 266.772 275.436 278.772 285.444 292.116 298.788 305.46 312.132 315.468 321.468 328.14\\\">Qoppa Software - For Evaluation Only - https://www.qoppa.com</text></g></g></svg></svg></g></svg><br>\\n<?xml version='1.0' encoding='UTF-8'?><svg id=\\\"qoppa_document\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" version=\\\"1.1\\\" xmlns=\\\"http://www.w3.org/2000/svg\\\" xmlns:xlink=\\\"http://www.w3.org/1999/xlink\\\"><!-- jPDFWeb v2019R1.03 - Demo Version --><style>title p { display: block; }</style><g id=\\\"qoppa_viewxform\\\" transform=\\\"matrix(1 0 0 1 0 0)\\\"><style type=\\\"text/css\\\">@font-face {font-family:f3-0;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f3-1;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f3-2;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}</style><svg id=\\\"qoppa_page_p3\\\" class=\\\"qoppa_page\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\"><rect class=\\\"qoppa_pageborder\\\" x=\\\"0.5pt\\\" y=\\\"0.5pt\\\" width=\\\"611pt\\\" height=\\\"791pt\\\" fill=\\\"none\\\" /><svg class=\\\"qoppa_pagecontents\\\" x=\\\"0pt\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" viewBox=\\\"0 0 612 792\\\" ><g class=\\\"qoppa_contentstream\\\" transform=\\\"matrix(1 0 0 -1 0 792)\\\" fill=\\\"black\\\" stroke=\\\"black\\\" stroke-width=\\\"1\\\" stroke-linecap=\\\"butt\\\" stroke-linejoin=\\\"miter\\\" stroke-miterlimit=\\\"10\\\"><clipPath id=\\\"clip3-1\\\"><path d=\\\"M 35 730 L 574 730 L 574 770 L 35 770 L 35 730 z \\\"/></clipPath><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 757.4812)\\\" x=\\\"0 6.6699 11.6699 16.6699 22.2314 27.793 35.0146 37.2949 42.8565 48.418 53.9795 62.3096 67.8711 73.4326 76.2109 81.2109\\\">Acknowledgments.</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 124.6643 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 127.3205 757.4812)\\\" x=\\\"0 6.6699 12.2314\\\">You</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 145.1135 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 147.7697 757.4812)\\\" x=\\\"0 3.3301 8.8916 14.4531\\\">read</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 167.7844 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 170.4406 757.4812)\\\" x=\\\"0 2.7783 8.3398 10.6201\\\">this</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 186.0607 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 188.717 757.4812)\\\" x=\\\"0 5.5615 11.1231 13.9014 19.4629 25.0244 28.3545 30.6348 35.6348 41.1963 43.9746 46.2549 51.8164\\\">authorization</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 246.0949 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 248.7512 757.4812)\\\" x=\\\"0 2.2803\\\">in</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.593 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 259.2492 757.4812)\\\" x=\\\"0 5.5615 8.8916 11.1719 16.7334 19.5117\\\">print,</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.5393 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 284.1955 757.4812)\\\" x=\\\"0 5.5615\\\">on</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 295.3186 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 297.9748 757.4812)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 303.5363 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 306.1926 757.4812)\\\" x=\\\"0 5 10.5615 18.8916 24.4531 30.0146 32.793 38.3545\\\">computer</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 347.8771 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 350.5334 757.4812)\\\" x=\\\"0 5 10 13.3301 18.8916 24.4531 30.0147\\\">screen,</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.3264 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 385.9826 757.4812)\\\" x=\\\"0 5.5615\\\">or</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 394.8742 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 397.5305 757.4812)\\\" x=\\\"0 5.5615 8.3398 13.9014 19.4629\\\">other</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 420.3234 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 422.9797 757.4812)\\\" x=\\\"0 5 7.2803 12.2803 17.8418 23.4033\\\">visual</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 448.6633 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 451.3195 757.4812)\\\" x=\\\"0 5.5615 7.8418 12.8418 18.4033 20.6836 26.2451 31.2451\\\">display.</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 485.343 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 487.9992 757.4812)\\\" x=\\\"0 6.6699 12.2314\\\">You</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 505.7922 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 508.4484 757.4812)\\\" x=\\\"0 5.5615 10.5615 15.5615 21.1231 26.6846 33.9062 36.1865 41.7481 47.3096 52.8711\\\">acknowledge</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 566.8811 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 746.1629)\\\" x=\\\"0 5.5615 11.1231\\\">and</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 57.3596 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 60.0158 746.1629)\\\" x=\\\"0 5.5615 11.123 14.4531 20.0146\\\">agree</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 85.592 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 88.2482 746.1629)\\\" x=\\\"0 2.7783\\\">to</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 96.5881 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 99.2443 746.1629)\\\" x=\\\"0 2.7783 8.3398\\\">the</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 113.1457 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 115.802 746.1629)\\\" x=\\\"0 2.7783 8.3398 10.6201 12.9004 18.4619 25.6836 27.9639 33.5254 39.0869\\\">following:</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 157.6672 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 160.3234 746.1629)\\\" x=\\\"0 2.7783 8.3398 10.6201\\\">this</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 175.9436 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 178.5998 746.1629)\\\" x=\\\"0 6.6699 13.8916\\\">ACH</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 199.7131 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 202.0693 746.1629)\\\" x=\\\"0 7.2217 12.7832 18.3447 20.625\\\">Debit</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.4727 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 227.8289 746.1629)\\\" x=\\\"0 6.6699 12.2314 15.0098 20.5713 26.1328 29.4629 31.7432 36.7432 42.3047 45.083 47.3633 52.9248\\\">Authorization</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 286.3152 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 288.6715 746.1629)\\\" x=\\\"0 2.2803\\\">is</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 295.9518 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 298.308 746.1629)\\\" x=\\\"0 5.5615 11.123\\\">not</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.2094 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 314.5656 746.1629)\\\" x=\\\"0 5.5615\\\">an</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 325.6887 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 328.0449 746.1629)\\\" x=\\\"0 2.2803 7.8418 12.8418 15.6201 18.9502 24.5117 32.8418 38.4033 43.9648\\\">instrument</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 374.7881 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 377.1443 746.1629)\\\" x=\\\"0 5.5615 11.123 16.123 21.6846 25.0146 30.5762 36.1377\\\">governed</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 418.8436 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 421.1998 746.1629)\\\" x=\\\"0 5.5615\\\">by</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 431.7613 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 434.1176 746.1629)\\\" x=\\\"0 6.6699 10 12.7783 15.0586 20.0586 22.3389\\\">Article</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 462.018 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 464.3742 746.1629)\\\" x=\\\"0\\\">3</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 469.9357 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 472.292 746.1629)\\\" x=\\\"0 5.5615\\\">of</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 480.6318 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 482.9881 746.1629)\\\" x=\\\"0 2.7783 8.3398\\\">the</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 496.8895 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 499.2457 746.1629)\\\" x=\\\"0 7.2217 12.7832 15.0635 17.8418 23.4033 26.7334\\\">Uniform</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 734.8445)\\\" x=\\\"0 7.2217 12.7832 21.1133 29.4434 35.0049 38.335 43.335 45.6152 51.1768\\\">Commercial</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 94.132 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 96.4883 734.8445)\\\" x=\\\"0 7.2217 12.7832 18.3447 23.9062\\\">Code.</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 123.1728 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 125.5291 734.8445)\\\" x=\\\"0 6.6699 10 12.2803 17.8418\\\">Print</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.1492 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.5055 734.8445)\\\" x=\\\"0 5.5615 11.1231\\\">and</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 165.19 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 167.5463 734.8445)\\\" x=\\\"0 3.3301 8.8916 11.6699 17.2314 19.5117\\\">retain</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 192.6195 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 194.9758 734.8445)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 200.5373 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 202.8936 734.8445)\\\" x=\\\"0 5.5615 11.123 14.4531\\\">hard</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 222.9082 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 225.2645 734.8445)\\\" x=\\\"0 5 10.5615 16.123\\\">copy</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 246.3875 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 248.7437 734.8445)\\\" x=\\\"0 5.5615\\\">or</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.6353 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 259.9916 734.8445)\\\" x=\\\"0 5.5615 7.8418 13.4033 18.4033 21.1816 24.5117 30.0733 35.6348 37.915\\\">electronic</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.9066 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 305.5629 734.8445)\\\" x=\\\"0 5 10.5615 16.123\\\">copy</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 326.6859 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 329.3422 734.8445)\\\" x=\\\"0 5.5615\\\">of</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 337.682 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 340.3383 734.8445)\\\" x=\\\"0 2.7783 8.3398 10.6201\\\">this</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.9584 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 358.6147 734.8445)\\\" x=\\\"0 6.6699 13.8916\\\">ACH</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 379.7279 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 382.0842 734.8445)\\\" x=\\\"0 7.2217 12.7832 18.3447 20.625\\\">Debit</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 405.4875 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.8438 734.8445)\\\" x=\\\"0 6.6699 12.2314 15.0098 20.5713 26.1328 29.4629 31.7432 36.7432 42.3047 45.083 47.3633 52.9248 58.4863\\\">Authorization.</text></g><clipPath id=\\\"clip3-2\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip3-2)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.775 770.2 L 573.625 770.2 L 573.625 769.2 L 34.775 769.2 L 34.775 770.2 z \\\"/><path clip-path=\\\"url(#clip3-2)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.775 731.2449 L 573.625 731.2449 L 573.625 730.2449 L 34.775 730.2449 L 34.775 731.2449 z \\\"/><path clip-path=\\\"url(#clip3-2)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.625 769.2 L 573.625 769.2 L 573.625 731.2449 L 572.625 731.2449 L 572.625 769.2 z \\\"/><path clip-path=\\\"url(#clip3-2)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.775 769.2 L 35.775 769.2 L 35.775 731.2449 L 34.775 731.2449 L 34.775 769.2 z \\\"/><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 718.5262)\\\" x=\\\"0 7.22 15 22.22 25.55 34.99 41.66 44.44 51.11 57.78 65 67.78 70.44 79.88 85.44 88.1 93.66 99.22 101.88 107.44 113 115.78 118.44 125.66 131.22 133.5 138.5 144.06 146.72 152.28 157.84 161.17 163.83 167.16 169.44 175 180.56 183.34 188.34 191 196.56 199.89 202.55 205.88 211.44 219.77 225.33 230.89 233.17 238.73 243.73 246.39 251.95 257.51 263.07 268.63 271.96 274.62 277.4 282.96 285.24 290.24 292.9 299.57 305.13 308.46 314.02 319.58 327.91 333.47 339.03 341.81 344.47 350.03 355.03 357.69 360.47 366.03 368.31 370.59 372.87 378.43 383.99 386.65 389.43 394.99 397.65 403.21 408.21 413.77 417.1 422.1 424.38 429.38 434.94 437.6 440.38 445.94 451.5 459.83 462.49 468.05 470.83 473.49 479.05 484.61 489.61 492.27 495.05 497.33 505.66 511.22\\\">NON-WAIVER. We do not waive our rights or remedies under this Agreement by failing to exercise them at any time.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 705.2078)\\\" x=\\\"0 7.22 15 23.33 31.66 38.88 46.1 48.88 56.1 62.77 68.88 71.66 78.88 86.66 89.32 98.76 101.54 107.65 114.87 117.53 124.2 131.98 139.2 141.98 144.64 151.86 158.53 164.09 169.65 172.31 179.53 186.2 193.42 201.2 208.42 215.64 218.42 225.64 233.42 236.2 238.86 242.19 247.75 253.31 258.87 262.2 264.86 270.42 275.98 281.54 284.87 290.43 295.99 301.55\\\">COMMUNICATING WITH YOU; CALL RECORDING: (100) 000-0006</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 691.8895)\\\" x=\\\"0 6.67 13.89 20 22.78 30\\\">ENTIRE</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 69.7699 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 74.2589 691.8895)\\\" x=\\\"0 6.67 14.45 21.67 28.34 35.01 43.34 50.01 57.23 63.34\\\">AGREEMENT,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 140.377 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 144.866 691.8895)\\\" x=\\\"0 7.22\\\">NO</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 159.866 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 164.3549 691.8895)\\\" x=\\\"0 6.67 13.89 21.11 23.89 30 32.78 40.56 47.78 54.45\\\">ADDITIONAL</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 224.3647 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 228.8536 691.8895)\\\" x=\\\"0 6.67 13.89 21.67 30 32.78 39.45 46.12 52.79\\\">PROMISES,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 284.42 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 288.9089 691.8895)\\\" x=\\\"0 9.44 16.66 19.44 25.55 31.66 38.33\\\">WRITTEN</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 334.4558 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.9447 691.8895)\\\" x=\\\"0 6.67 13.89\\\">AND</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 360.058 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 364.547 691.8895)\\\" x=\\\"0 6.67 9.45 17.23 24.45 31.12\\\">SIGNED</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.8868 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.3757 691.8895)\\\" x=\\\"0 7.22 14.44 21.11 28.33 36.11 42.78\\\">CHANGES</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.8289 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 461.3178 691.8895)\\\" x=\\\"0 7.78 15 20.56 27.23\\\">ONLY.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 491.3276 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 495.8165 691.8895)\\\" x=\\\"0 6.11 11.67 13.95\\\">This</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 514.7667 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 519.2556 691.8895)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 680.5711)\\\" x=\\\"0 2.78 8.34 13.9 19.46 22.24 27.8 33.36\\\">together</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 69.7943 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 72.8324 680.5711)\\\" x=\\\"0 7.22 9.5 12.28\\\">with</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 90.6742 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 93.7124 680.5711)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 107.6137 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 110.6518 680.5711)\\\" x=\\\"0 5.56 8.34 13.9 19.46\\\">other</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 133.4448 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 136.4829 680.5711)\\\" x=\\\"0 5.56 11.12 16.12 21.68 30.01 35.57 41.13 43.91\\\">documents</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 185.3989 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 188.437 680.5711)\\\" x=\\\"0 3.33 8.89 11.67 17.23 20.56 23.89 29.45\\\">referred</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 223.4517 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 226.4898 680.5711)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 234.8296 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 237.8677 680.5711)\\\" x=\\\"0 5.56 11.12 14.45 20.01 22.29 27.85\\\">herein,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 268.5025 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 271.5406 680.5711)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24 28.52 34.08\\\">including</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 311.189 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 314.2271 680.5711)\\\" x=\\\"0 5.56 11.12\\\">but</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 328.1285 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 331.1666 680.5711)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 345.068 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 348.1061 680.5711)\\\" x=\\\"0 2.28 4.56 12.89 15.17 17.95 23.51\\\">limited</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 377.1783 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 380.2165 680.5711)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.5563 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 391.5944 680.5711)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 411.0475 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 414.0856 680.5711)\\\" x=\\\"0 5.56 11.12 14.45 19.45 25.01 30.57 35.57\\\">purchase</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 455.2233 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 458.2614 680.5711)\\\" x=\\\"0 3.33 8.89 13.89 19.45 21.73 27.29\\\">receipt</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 488.3347 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 491.3728 680.5711)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 508.0574 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 511.0955 680.5711)\\\" x=\\\"0 2.78 5.06 10.62 16.18\\\">final</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.5574 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 532.5955 680.5711)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 669.2527)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 66.4545 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 69.6146 669.2527)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 86.2991 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 89.4592 669.2527)\\\" x=\\\"0 5 10 15.56 21.12 26.68 32.24 34.52 40.08\\\">schedule,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 132.3254 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 135.4855 669.2527)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 142.7658 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 145.9259 669.2527)\\\" x=\\\"0 5.56 11.12\\\">our</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.379 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 163.5391 669.2527)\\\" x=\\\"0 5.56 11.12 13.9 16.18 19.51\\\">entire</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 188.6123 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 191.7724 669.2527)\\\" x=\\\"0 5.56 11.12 14.45 20.01 25.57 33.9 39.46 45.02 47.8\\\">agreement.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 242.3583 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 245.5184 669.2527)\\\" x=\\\"0 9.44\\\">We</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 260.5184 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 263.6785 669.2527)\\\" x=\\\"0 5.56 11.12 16.12\\\">have</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 285.363 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 288.5231 669.2527)\\\" x=\\\"0 8.33 13.89 19.45\\\">made</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 313.5378 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 316.6978 669.2527)\\\" x=\\\"0 5.56\\\">no</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 327.8209 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 330.981 669.2527)\\\" x=\\\"0 5.56 8.89 14.45 22.78 25.06 30.06 35.62\\\">promises</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.606 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 374.766 669.2527)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.1059 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 386.266 669.2527)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.389 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 405.5491 669.2527)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.4504 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 422.6105 669.2527)\\\" x=\\\"0 5 10.56 16.12 18.9 24.46 26.74 32.3 37.86\\\">contained</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.0383 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 469.1983 669.2527)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 477.0401 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 480.2002 669.2527)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 495.8203 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 498.9804 669.2527)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 547.8964 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 551.0565 669.2527)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.9481 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 563.1082 669.2527)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 657.9344)\\\" x=\\\"0 5 10.56 15.56 21.12 23.78 29.34 32.12 37.68 43.24 46.57 49.23 54.79 60.35 65.35 70.91 79.24 84.8 90.36 93.14 98.14 100.92 103.58 110.25 115.81 120.81 123.47 128.47 134.03 139.59 145.15 150.71 156.27 158.93 161.71 167.27 169.93 172.71 178.27 180.55 185.55 188.21 194.88 200.44 203.77 209.33 214.89 223.22 228.78 234.34 237.12 239.78 248.11 253.67 258.67 261.45 264.11 269.67 275.23 277.89 285.11 288.44 290.72 293.5 296.28 301.84 307.4 310.06 315.62 321.18 326.74 329.4 334.4 336.68 342.24 347.8 353.36 358.92 361.58 367.14 372.14 374.8 379.8 385.36 390.92 393.58 399.14 404.7 410.26 412.92 418.48 423.48\\\">such other documents. Any change to this Agreement must be written and signed by you and us.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 644.616)\\\" x=\\\"0 7.22 14.44 21.11 27.22 35 43.33 50\\\">CUSTOMER</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 90.3217 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 93.5458 644.616)\\\" x=\\\"0 8.33 16.11 23.33 26.11 32.22 35 41.67\\\">MODIFIED</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 142.4325 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 145.6566 644.616)\\\" x=\\\"0 6.67 13.34 20.01 28.34 35.01 42.23\\\">PAYMENT</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 193.9964 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 197.2205 644.616)\\\" x=\\\"0 7.22 13.89 20 26.67\\\">DATES</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 230.5603 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 233.7844 644.616)\\\" x=\\\"0 6.67 13.89\\\">AND</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 254.8977 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 258.1218 644.616)\\\" x=\\\"0 6.11 13.33 20 27.78 35 41.67 48.89 56.11 62.78\\\">FREQUENCY.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 323.6833 644.616)\\\" x=\\\"0 3.2241\\\">  </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 330.1315 644.616)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 347.3629 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 350.587 644.616)\\\" x=\\\"0 5.56 11.12 13.9 19.46\\\">dates</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.0499 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 378.274 644.616)\\\" x=\\\"0 2.78 8.34 11.67\\\">for,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 392.7222 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 395.9463 644.616)\\\" x=\\\"0 2.78 6.11 11.67 17.23 22.79 28.35 33.91 38.91\\\">frequency</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 439.8623 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 443.0864 644.616)\\\" x=\\\"0 5.56 8.34\\\">of,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.2046 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 457.4286 644.616)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57\\\">number</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 491.3349 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 494.559 644.616)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 502.8988 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 506.1229 644.616)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 522.8075 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 526.0316 644.616)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.386 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 562.6101 644.616)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 633.2977)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 68.1781 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 72.0521 633.2977)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46\\\">Payments</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 116.515 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 120.389 633.2977)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 128.2308 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 132.1048 633.2977)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 147.7249 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 151.5989 633.2977)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 200.5149 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 204.3889 633.2977)\\\" x=\\\"0 5.56 8.89\\\">are</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 218.842 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 222.716 633.2977)\\\" x=\\\"0 5.56 11.12 16.12 21.68\\\">based</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 249.9621 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 253.8361 633.2977)\\\" x=\\\"0 5.56 11.12 16.68\\\">upon</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.0822 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 279.9562 633.2977)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 293.8575 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 297.7315 633.2977)\\\" x=\\\"0 5.56 11.12 16.12 21.68 27.24\\\">payday</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.9776 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 333.8516 633.2977)\\\" x=\\\"0 2.28 7.84 10.62 16.18 19.51 27.84 33.4 36.18 38.46 44.02\\\">information</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.4366 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 387.3105 633.2977)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.4336 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.3076 633.2977)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29 32.85\\\">provided</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 445.7255 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 449.5995 633.2977)\\\" x=\\\"0 7.22 9.5 12.28\\\">with</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.4413 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 471.3153 633.2977)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 490.7684 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 494.6424 633.2977)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 34.58 36.86 42.42 47.98\\\">application.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 545.409 633.2977)\\\" x=\\\"0 3.874\\\">  </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.157 633.2977)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 621.9793)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 51.9916 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 55.3463 621.9793)\\\" x=\\\"0 5 10.56 16.12 18.9 24.46 29.46\\\">contact</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 87.5875 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 90.9422 621.9793)\\\" x=\\\"0 5.56 11.12\\\">our</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 105.3953 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 108.75 621.9793)\\\" x=\\\"0 5 10.56 15.56 18.34 23.9 32.23 37.79\\\">customer</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 149.873 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 153.2277 621.9793)\\\" x=\\\"0 5 10.56 13.89 18.89 21.17 26.17\\\">service</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 184.9611 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 188.3158 621.9793)\\\" x=\\\"0 5.56 11.12 16.68 22.24 25.57 28.35 36.68 42.24 47.8\\\">department</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.9017 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 242.2564 621.9793)\\\" x=\\\"0 5.56 8.89\\\">or,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 253.9263 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 257.281 621.9793)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.3396 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 265.6942 621.9793)\\\" x=\\\"0 5.56 10.56 16.12 18.4 20.68 26.24 31.8 34.08\\\">available</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 305.3427 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 308.6973 621.9793)\\\" x=\\\"0 5.56 10.56\\\">use</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 324.8204 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 328.1751 621.9793)\\\" x=\\\"0 5.56 11.12 13.9 19.46 27.79 33.35 36.13 41.69\\\">automated</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.4309 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 378.7856 621.9793)\\\" x=\\\"0 8.33 13.89 19.45 25.01 30.01\\\">means,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 411.5786 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 414.9332 621.9793)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.9918 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 423.3465 621.9793)\\\" x=\\\"0 5.56 10.56 16.12 18.4 20.68 26.24 31.8 34.08 39.64\\\">available,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 465.7733 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 469.128 621.9793)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 477.4678 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 480.8225 621.9793)\\\" x=\\\"0 3.33 8.89 14.45 20.01 25.57 30.57\\\">request</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 514.177 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 517.5316 621.9793)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 523.0932 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 526.4478 621.9793)\\\" x=\\\"0 5 10.56 16.12 21.68 27.24\\\">change</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.2555 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 562.6101 621.9793)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 610.6609)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.0014 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 51.6173 610.6609)\\\" x=\\\"0 5 10 15.56 21.12 26.68 32.24 34.52 40.08\\\">scheduled</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 97.2667 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 101.8826 610.6609)\\\" x=\\\"0 5.56 11.12 13.9 19.46\\\">dates</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 126.3454 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 130.9613 610.6609)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 142.6313 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 147.2471 610.6609)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 163.9317 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 168.5476 610.6609)\\\" x=\\\"0 2.78 6.11 11.67 17.23 22.79 28.35 33.91 38.91\\\">frequency</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 212.4636 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 217.0795 610.6609)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.4193 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 230.0352 610.6609)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 265.1134 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 269.7292 610.6609)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46 44.46\\\">Payments.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 316.9705 610.6609)\\\" x=\\\"0 4.6159\\\">  </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 326.2022 610.6609)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 331.7589 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 336.3748 610.6609)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 349.158 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 353.7739 610.6609)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.68\\\">accept</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.2367 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 387.8526 610.6609)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.4142 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 398.03 610.6609)\\\" x=\\\"0 5 10.56 16.12 21.68 27.24\\\">change</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.8377 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 435.4535 610.6609)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 443.2953 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 447.9112 610.6609)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 461.8126 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 466.4285 610.6609)\\\" x=\\\"0 5 10 15.56 21.12 26.68 32.24 34.52 40.08\\\">scheduled</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.0779 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 516.6938 610.6609)\\\" x=\\\"0 5.56 11.12 13.9 19.46\\\">dates</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 541.1567 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 545.7726 610.6609)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 557.4425 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 562.0584 610.6609)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 599.3426)\\\" x=\\\"0 2.78 6.11 11.67 17.23 22.79 28.35 33.91 38.91\\\">frequency</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 77.016 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 80.7576 599.3426)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 89.0974 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 92.839 599.3426)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 127.9171 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 131.6587 599.3426)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46 44.46\\\">Payments,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 178.8999 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 182.6415 599.3426)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 196.5429 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 200.2844 599.3426)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.6389 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 237.3805 599.3426)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.7204 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 249.4619 599.3426)\\\" x=\\\"0 5.56 11.12 16.12\\\">each</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 271.1465 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 274.8881 599.3426)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 309.9662 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 313.7078 599.3426)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68\\\">Payment</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 353.1707 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 356.9123 599.3426)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 370.9748 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 374.7163 599.3426)\\\" x=\\\"0 5.56 11.12 13.9 19.46 27.79 33.35 36.13 38.41 43.41 48.97 51.25 53.53\\\">automatically</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 433.2515 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 436.9931 599.3426)\\\" x=\\\"0 5.56\\\">be</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 448.1161 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 451.8577 599.3426)\\\" x=\\\"0 8.33 13.89 19.45 21.73 24.51 26.79 32.35\\\">modified</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.7727 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 493.5143 599.3426)\\\" x=\\\"0 5\\\">so</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 504.0758 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 507.8174 599.3426)\\\" x=\\\"0 2.78 8.34 13.9\\\">that</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 524.4971 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 528.2387 599.3426)\\\" x=\\\"0 2.78 8.34 13.9\\\">that</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 544.9184 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 548.6599 599.3426)\\\" x=\\\"0 6.11 11.67 14.45 20.01\\\">Total</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 588.0242)\\\" x=\\\"0 7.22 12.78 17.78 20.56\\\">Cost,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 56.4398 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 60.6221 588.0242)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 77.3067 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.489 588.0242)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 95.3903 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 99.5726 588.0242)\\\" x=\\\"0 5.56 11.12 14.45 16.73 22.29\\\">period</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 127.4291 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 131.6113 588.0242)\\\" x=\\\"0 5.56 10.56 16.12\\\">over</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 151.0645 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 155.2467 588.0242)\\\" x=\\\"0 7.22 12.78 15.06 20.06\\\">which</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 180.8717 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 185.054 588.0242)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 198.9554 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 203.1377 588.0242)\\\" x=\\\"0 6.11 11.67 14.45 20.01\\\">Total</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.4277 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 229.61 588.0242)\\\" x=\\\"0 7.22 12.78 17.78\\\">Cost</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 250.1715 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 254.3538 588.0242)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 261.6341 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 265.8163 588.0242)\\\" x=\\\"0 5.56 11.12 13.4 18.96\\\">paid,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 287.5595 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 291.7418 588.0242)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 305.8043 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 309.9866 588.0242)\\\" x=\\\"0 3.33 8.89 17.22 22.78 25.06\\\">remain</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 340.6116 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 344.7938 588.0242)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 358.6952 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 362.8775 588.0242)\\\" x=\\\"0 5 10.56 18.89\\\">same</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 387.3306 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 391.5129 588.0242)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.0744 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 406.2567 588.0242)\\\" x=\\\"0 5.56 8.89 11.17 16.73\\\">prior</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 426.3202 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 430.5025 588.0242)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 438.8423 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 443.0246 588.0242)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.9259 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 461.1082 588.0242)\\\" x=\\\"0 3.33 8.89 14.45 20.01 25.57 30.57 33.35 38.91\\\">requested</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 505.5858 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 509.768 588.0242)\\\" x=\\\"0 5 10.56 16.12 21.68 27.24 32.8\\\">change.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 545.354 588.0242)\\\" x=\\\"0 4.1823\\\">  </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.7185 588.0242)\\\" x=\\\"0 6.67 12.23\\\">Any</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 576.7059)\\\" x=\\\"0 3.33 8.89 11.67 17.23 22.79 27.79 33.35\\\">refences</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 71.4545 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 75.2825 576.7059)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 83.1243 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 86.9523 576.7059)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 102.5725 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 106.4005 576.7059)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 155.3165 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 159.1445 576.7059)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 167.4844 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 171.3124 576.7059)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 185.2138 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 189.0418 576.7059)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57 33.9\\\">number,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.7264 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 229.5544 576.7059)\\\" x=\\\"0 2.78 6.11 11.67 17.23 22.79 28.35 33.91 38.91 43.91\\\">frequency,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.2488 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 280.0768 576.7059)\\\" x=\\\"0 2.78 5.06 13.39 15.67 21.23\\\">timing</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 306.8688 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 310.6968 576.7059)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 327.3814 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 331.2094 576.7059)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 364.5639 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 368.3919 576.7059)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 376.7318 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 380.5598 576.7059)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 415.6379 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 419.466 576.7059)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46\\\">Payments</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 463.9289 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 467.7569 576.7059)\\\" x=\\\"0 3.33 8.89 11.67 17.23 20.56\\\">refers</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 493.3184 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 497.1465 576.7059)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 505.4863 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 509.3143 576.7059)\\\" x=\\\"0 5 10.56 15.56\\\">such</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 530.4374 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 534.2654 576.7059)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57 33.9\\\">number,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 565.3875)\\\" x=\\\"0 2.78 6.11 11.67 17.23 22.79 28.35 33.91 38.91 43.91 46.69 49.35 52.13 54.41 62.74 68.3 70.96 76.52 82.08 87.64 90.3 95.86 104.19 109.75 115.31 120.87 123.65 126.31 131.87 136.87 139.53 147.86 153.42 158.42 161.08 166.64 172.2 174.86 183.19 188.75 194.31 196.59 199.37 201.65 207.21 212.77 215.43 220.99 225.99 228.65 235.32 240.88 246.44 252 254.66 260.22 263 265.66 270.66 276.22 281.78 285.11 287.77 291.1 296.66 302.22 307.78 313.34 318.34 321.12\\\">frequency, time and amount as may be modified by Snap at your request.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 552.0691)\\\" x=\\\"0 6.67 13.34 20.01 26.68 33.9 40.57 47.24 50.02 55.58 58.36 64.47 71.14\\\">SEVERABILITY.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 107.016 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 110.2288 552.0691)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 115.7855 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 118.9983 552.0691)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 124.5598 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 127.7726 552.0691)\\\" x=\\\"0 5 10.56 16.12 19.45\\\">court</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 150.004 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 153.2169 552.0691)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 162.1085 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 165.3213 552.0691)\\\" x=\\\"0 5.56 8.34 13.9 19.46\\\">other</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 188.1142 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 191.327 552.0691)\\\" x=\\\"0 5.56 7.84 12.84 18.4 23.96 26.74\\\">dispute</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 223.6317 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 226.8445 552.0691)\\\" x=\\\"0 3.33 8.89 13.89 19.45 21.73 27.29 30.07 32.35 37.91\\\">resolution</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 270.3211 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 273.5339 552.0691)\\\" x=\\\"0 5.56 11.12 16.68\\\">body</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 295.2185 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 298.4313 552.0691)\\\" x=\\\"0 2.78 5.06 10.62 16.18\\\">finds</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.6129 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 322.8257 552.0691)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.9488 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 342.1616 552.0691)\\\" x=\\\"0 5.56 11.12 14.45\\\">part</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.393 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 362.6058 552.0691)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 370.9457 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 374.1585 552.0691)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 389.7786 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 392.9914 552.0691)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 441.9074 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 445.1202 552.0691)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 453.4601 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 456.6729 552.0691)\\\" x=\\\"0 5.56\\\">be</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.7959 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 471.0087 552.0691)\\\" x=\\\"0 5 10.56 12.84\\\">void</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.4121 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 492.6249 552.0691)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.5165 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 504.7293 552.0691)\\\" x=\\\"0 5.56 11.12 16.68 22.24 25.02 30.58 33.91 38.91 44.47 50.03 55.59 57.87 63.43\\\">u* D E M O *e,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 540.7508)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 48.7201 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 53.1394 540.7508)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 102.0554 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 106.4747 540.7508)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 113.755 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 118.1743 540.7508)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 126.5142 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 130.9335 540.7508)\\\" x=\\\"0 5.56\\\">be</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 142.0565 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 146.4758 540.7508)\\\" x=\\\"0 3.33 8.89 14.45\\\">read</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 166.4905 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 170.9097 540.7508)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 181.4713 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 185.8906 540.7508)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 190.9492 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 195.3685 540.7508)\\\" x=\\\"0 2.78 8.34 13.9\\\">that</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 212.0482 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 216.4675 540.7508)\\\" x=\\\"0 5.56 11.12 14.45\\\">part</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.6989 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 238.1182 540.7508)\\\" x=\\\"0 7.22 12.78 16.11\\\">were</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.793 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 264.2123 540.7508)\\\" x=\\\"0 5.56 11.12 16.12 21.68\\\">never</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 289.227 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 293.6463 540.7508)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.2078 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 303.6271 540.7508)\\\" x=\\\"0 5.56 11.12 14.45\\\">part</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 320.8585 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 325.2778 540.7508)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 333.6177 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.037 540.7508)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 353.6571 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 358.0764 540.7508)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 409.7707 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 414.19 540.7508)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 431.4215 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 435.8408 540.7508)\\\" x=\\\"0 3.33 8.89 13.89\\\">rest</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 452.5107 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 456.93 540.7508)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 465.2699 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 469.6891 540.7508)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 483.5905 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 488.0098 540.7508)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 536.9258 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 541.3451 540.7508)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 555.4076 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 559.8269 540.7508)\\\" x=\\\"0 5.56\\\">be</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 529.4324)\\\" x=\\\"0 5.56 11.12 13.9 19.46 22.79 27.79 33.35 38.91 44.47 46.75 52.31\\\">enforceable.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 516.1141)\\\" x=\\\"0 6.67 13.89 21.67 28.89 31.67 38.34 41.12 47.23 53.9\\\">PROHIBITED</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 94.2182 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 97.4569 516.1141)\\\" x=\\\"0 6.67 13.89 20 26.67\\\">ACTS.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 126.9051 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 130.1438 516.1141)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 147.9368 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 151.1754 516.1141)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 165.2379 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 168.4766 516.1141)\\\" x=\\\"0 5 10.56 16.12\\\">keep</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 190.1612 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 193.3999 516.1141)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 207.3013 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.5399 516.1141)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 248.3329 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 251.5716 516.1141)\\\" x=\\\"0 2.78 6.11 11.67\\\">free</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 268.8031 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 272.0417 516.1141)\\\" x=\\\"0 2.78 6.11 11.67\\\">from</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 292.0417 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 295.2804 516.1141)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 311.4035 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 314.6422 516.1141)\\\" x=\\\"0 2.28 4.56 10.12 15.68\\\">liens</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.3258 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.5645 516.1141)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 347.4561 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 350.6947 516.1141)\\\" x=\\\"0 5 7.28 12.84 15.12 23.45 28.45\\\">claims.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 381.9252 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 385.1639 516.1141)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.9569 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 406.1956 516.1141)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 420.2581 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 423.4968 516.1141)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 437.3981 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 440.6368 516.1141)\\\" x=\\\"0 5.56 11.12 18.34\\\">pawn</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 464.5431 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 467.7818 516.1141)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 476.6734 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 479.912 516.1141)\\\" x=\\\"0 5.56 7.84 13.4 18.96 24.52\\\">pledge</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.9999 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 513.2386 516.1141)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 527.14 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 530.3787 516.1141)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 504.7957)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 50.893 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 55.1549 504.7957)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 69.2174 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 73.4794 504.7957)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 87.3807 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 91.6427 504.7957)\\\" x=\\\"0 8.33 13.89 18.89\\\">move</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 116.0958 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 120.3578 504.7957)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 134.2592 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 138.5211 504.7957)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 176.3141 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 180.576 504.7957)\\\" x=\\\"0 5.56 11.12 13.9 18.9 21.18 26.74\\\">outside</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 212.8807 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 217.1427 504.7957)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.4825 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 229.7445 504.7957)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 243.6458 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 247.9078 504.7957)\\\" x=\\\"0 5.56 11.12 16.68 20.01 25.57 30.57\\\">address</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 283.484 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 287.7459 504.7957)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 303.869 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 308.1309 504.7957)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29 32.85\\\">provided</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 346.5489 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 350.8109 504.7957)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.1507 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 363.4127 504.7957)\\\" x=\\\"0 5.56 10.56\\\">us,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 376.7525 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 381.0145 504.7957)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 397.699 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 401.961 504.7957)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 412.5225 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 416.7845 504.7957)\\\" x=\\\"0 5.56 11.12 16.68 22.24 25.02 30.58 36.14\\\">updated,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 455.7103 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 459.9722 504.7957)\\\" x=\\\"0 5.56 11.12 13.4 18.96 23.96\\\">unless</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 488.9371 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 493.199 504.7957)\\\" x=\\\"0 2.28\\\">it</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 498.2576 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 502.5196 504.7957)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.7998 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 514.0618 504.7957)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 522.4016 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 526.6636 504.7957)\\\" x=\\\"0 3.33 8.89 11.67 17.23 20.56\\\">return</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.7867 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0486 504.7957)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 493.4773)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 70.893 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 74.775 493.4773)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 83.1148 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 86.9968 493.4773)\\\" x=\\\"0 5.56 10.56\\\">us,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 100.3367 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 104.2187 493.4773)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 113.1103 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 116.9923 493.4773)\\\" x=\\\"0 5.56 11.12\\\">our</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 131.4454 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 135.3274 493.4773)\\\" x=\\\"0 5.56 11.12 16.12 18.4 23.96 29.52 35.08 40.64\\\">designee.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 178.7551 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 182.6371 493.4773)\\\" x=\\\"0 6.11\\\">To</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 194.307 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 198.189 493.4773)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 212.0904 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 215.9724 493.4773)\\\" x=\\\"0 5.56 10.56 13.34 18.9 24.46\\\">extent</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 243.2136 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 247.0956 493.4773)\\\" x=\\\"0 5.56 10.56\\\">use</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 263.2187 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 267.1007 493.4773)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.4405 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 279.3225 493.4773)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 293.2239 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 297.1059 493.4773)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 334.8988 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.7808 493.4773)\\\" x=\\\"0 3.33 8.89 14.45 20.01 22.29 25.62 31.18\\\">requires</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 374.9674 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 378.8494 493.4773)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 394.9724 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 398.8544 493.4773)\\\" x=\\\"0 8.33 10.61 16.17 18.45 26.78 32.34\\\">minimum</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 439.5282 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 443.4102 493.4773)\\\" x=\\\"0 5 8.33 10.61 13.39 18.95 22.28 24.56\\\">criteria</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 473.5323 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 477.4143 493.4773)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.0842 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 492.9662 493.4773)\\\" x=\\\"0 5.56 10.56 16.12\\\">use,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 511.8676 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 515.7496 493.4773)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24 28.52 34.08\\\">including</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 555.3981 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 559.2801 493.4773)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 482.159)\\\" x=\\\"0 5.56 10.56 16.12 24.45 30.01 32.29\\\">example</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 70.9565 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 74.5435 482.159)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 80.105 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 83.6921 482.159)\\\" x=\\\"0 5.56 11.12 14.45 22.78 25.06 27.84\\\">permit,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 114.3123 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 117.8993 482.159)\\\" x=\\\"0 2.28 4.56 9.56 15.12 20.68 25.68 31.24\\\">license,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 151.9228 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 155.5098 482.159)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 164.4014 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 167.9885 482.159)\\\" x=\\\"0 8.33 10.61 16.17 18.45 26.78 32.34\\\">minimum</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 208.6624 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 212.2494 482.159)\\\" x=\\\"0 5.56 11.12 16.68\\\">age,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.7123 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 235.2994 482.159)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 251.4224 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 255.0095 482.159)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 269.072 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 272.6591 482.159)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 286.5605 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 290.1476 482.159)\\\" x=\\\"0 5.56 7.84 10.12 15.68\\\">allow</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 313.0528 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 316.6399 482.159)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 332.7629 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 336.35 482.159)\\\" x=\\\"0 2.28 10.61 16.17 19.5 25.06 30.62 36.18\\\">improper</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.8666 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 379.4537 482.159)\\\" x=\\\"0 5.56 10.56\\\">use</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 395.5767 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 399.1638 482.159)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 407.5037 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 411.0907 482.159)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 424.9921 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 428.5792 482.159)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 469.1505 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 472.7376 482.159)\\\" x=\\\"0 6.67\\\">As</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.4075 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 487.9946 482.159)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64 45.2\\\">applicable,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 535.9828 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 539.5699 482.159)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.2399 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 554.8269 482.159)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 470.8406)\\\" x=\\\"0 5.56 11.12 16.68 19.46\\\">boat,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 55.3412 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 60.5175 470.8406)\\\" x=\\\"0 8.33 13.89 16.67 22.23 25.56 27.84 32.84 38.4\\\">motorized</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 104.4823 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 109.6586 470.8406)\\\" x=\\\"0 5 10.56 16.12 18.4 23.4 25.68 31.24\\\">vehicle,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 143.6821 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.8584 470.8406)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 157.75 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 162.9263 470.8406)\\\" x=\\\"0 5.56 8.34 13.9 19.46 22.79 30.01 32.29 37.29\\\">otherwise</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 205.7827 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.959 470.8406)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64 45.2\\\">applicable,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 258.9473 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 264.1236 470.8406)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.2466 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 285.4229 470.8406)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.4854 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 304.6617 470.8406)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 318.5631 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 323.7394 470.8406)\\\" x=\\\"0 5.56 11.12 14.45 22.78 25.06\\\">permit</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.5812 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 356.7575 470.8406)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 372.8805 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 378.0568 470.8406)\\\" x=\\\"0 5.56 11.12 14.45 19.45 25.01 30.57\\\">person,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 411.4113 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 416.5876 470.8406)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24 28.52 34.08\\\">including</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.236 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 461.4123 470.8406)\\\" x=\\\"0 5 10.56 16.12 19.45 24.45 30.01 32.29 35.07\\\">yourself,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.2639 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 504.4402 470.8406)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.78 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 517.9563 470.8406)\\\" x=\\\"0 5.56 11.12 16.68 20.01 25.57 28.35\\\">operate</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.8723 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0486 470.8406)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 459.5223)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 70.893 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 75.2445 459.5223)\\\" x=\\\"0 7.22 12.78 15.06 17.34\\\">while</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 98.1497 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 102.5012 459.5223)\\\" x=\\\"0 5 10.56 15.56\\\">such</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 123.6243 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 127.9757 459.5223)\\\" x=\\\"0 5.56 11.12 14.45 19.45 25.01\\\">person</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 158.5519 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 162.9034 459.5223)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 170.1837 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 174.5351 459.5223)\\\" x=\\\"0 2.28 10.61 16.17 21.73 24.01 27.34 32.9\\\">impaired</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 213.0019 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 217.3534 459.5223)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 227.915 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 232.2664 459.5223)\\\" x=\\\"0 5.56 8.89 14.45 20.01 25.01\\\">drugs,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 260.0594 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 264.4109 459.5223)\\\" x=\\\"0 5.56 7.84 12.84 18.4 23.96 29.52\\\">alcohol</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 296.2175 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 300.569 459.5223)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 309.4606 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 313.8121 459.5223)\\\" x=\\\"0 2.78 6.11 11.67\\\">from</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 333.8121 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.1636 459.5223)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 354.2866 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 358.6381 459.5223)\\\" x=\\\"0 5.56 8.34 13.9 19.46\\\">other</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 381.4311 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 385.7826 459.5223)\\\" x=\\\"0 5 10.56 16.12 21.12 26.68\\\">cause.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 415.2455 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 419.5969 459.5223)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 437.3899 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 441.7414 459.5223)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 455.8039 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 460.1554 459.5223)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.0567 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 478.4082 459.5223)\\\" x=\\\"0 5.56 10.56\\\">use</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 494.5313 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 498.8828 459.5223)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.7841 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 517.1356 459.5223)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 554.9286 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 559.2801 459.5223)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 448.2039)\\\" x=\\\"0 5 10.56 18.89 27.22 32.78 36.11 41.11 43.39 48.95 51.23 53.89 59.45 65.01 68.34 73.9 79.46 84.46 90.02 95.02\\\">commercial purposes.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 434.8855)\\\" x=\\\"0 9.44 16.11 23.33 30.55 33.33 40.55 48.33\\\">WARNING:</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 84.2084 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 87.8242 434.8855)\\\" x=\\\"0 7.22 12.78 15.06 20.62 25.62\\\">Unless</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 118.4492 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 122.065 434.8855)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 138.188 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 141.8038 434.8855)\\\" x=\\\"0 5.56 11.12 16.12\\\">have</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 163.4883 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 167.1041 434.8855)\\\" x=\\\"0 5.56 10.56 16.12 21.68 23.96 27.29 32.85\\\">acquired</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 205.5221 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 209.1378 434.8855)\\\" x=\\\"0 5.56 12.78 18.34 23.9 27.23 32.23 37.79 40.07\\\">ownership</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 254.7775 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 258.3933 434.8855)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 266.7331 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 270.3489 434.8855)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 284.2503 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 287.866 434.8855)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 328.4373 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 332.0531 434.8855)\\\" x=\\\"0 5.56 8.34 11.12 16.68 25.01 30.57 33.35 35.63 41.19\\\">attempting</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 378.806 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 382.4218 434.8855)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 390.7616 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 394.3774 434.8855)\\\" x=\\\"0 5 10.56 12.84 15.12\\\">sell,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 412.2778 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 415.8936 434.8855)\\\" x=\\\"0 5.56 11.12 18.34 23.9\\\">pawn,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 442.5781 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 446.1939 434.8855)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 455.0855 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 458.7013 434.8855)\\\" x=\\\"0 2.28 4.56 10.12\\\">lien</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.3849 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 478.0007 434.8855)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 491.902 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 495.5178 434.8855)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 533.3108 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 536.9265 434.8855)\\\" x=\\\"0 5 7.28 12.84 15.12 20.68 23.46 29.02\\\">violates</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 423.5672)\\\" x=\\\"0 5 7.78 13.34 16.12 21.68 24.34 26.62 32.18 39.4\\\">state law.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 410.2488)\\\" x=\\\"0 6.67 13.34 20.01 22.79 30.57 37.79 46.12 52.79 60.01 66.12\\\">ASSIGNMENT.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 101.9965 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 104.9066 410.2488)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 122.6995 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 125.6096 410.2488)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 144.5012 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 147.4112 410.2488)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 161.3126 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 164.2227 410.2488)\\\" x=\\\"0 5.56 10.56 15.56 17.84 23.4\\\">assign</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 193.1875 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 196.0976 410.2488)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 211.7177 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 214.6278 410.2488)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 263.5438 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 266.4538 410.2488)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.3454 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 278.2555 410.2488)\\\" x=\\\"0 2.78 6.11 11.67 17.23 22.23 25.01 30.57\\\">transfer</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.1569 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 315.0669 410.2488)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 328.9683 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 331.8784 410.2488)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 369.6713 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 372.5814 410.2488)\\\" x=\\\"0 7.22 9.5 12.28 17.84 23.4 28.96\\\">without</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 404.3246 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.2346 410.2488)\\\" x=\\\"0 5.56 11.12\\\">our</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 421.6877 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 424.5978 410.2488)\\\" x=\\\"0 5.56 8.89 11.17 16.73\\\">prior</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 444.6613 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 447.5713 410.2488)\\\" x=\\\"0 7.22 10.55 12.83 15.61 18.39 23.95\\\">written</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 477.0831 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 479.9931 410.2488)\\\" x=\\\"0 5.56 11.12 14.45 22.78 25.06 30.06 35.06 37.34 42.9 48.46\\\">permission.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 531.2382 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 534.1483 410.2488)\\\" x=\\\"0 9.44\\\">We</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.1483 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 552.0584 410.2488)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 398.9305)\\\" x=\\\"0 5.56 10.56 15.56 17.84 23.4 28.96 31.62 37.18 39.46 41.74 44.4 49.96 52.74 55.4 60.96 66.52 69.85 72.51 75.84 78.12 83.68 89.24 92.02 97.02 99.68 105.24 110.8 116.36 121.92 125.25 127.91 130.69 136.25 138.53 143.53 146.19 152.86 158.42 161.75 167.31 172.87 181.2 186.76 192.32 195.1 197.88 200.54 207.21 212.77 217.77 220.43 225.99 231.55 234.88 239.88 245.44 251 253.66 260.88 266.44 269.1 274.66 279.66 284.66 286.94 292.5 298.06 300.72 303 305.78 308.44 311.22 316.78 319.44 327.77 333.33 338.33 340.99 344.32 349.88 355.44 360.44 365.44 367.72 373.28 378.84 381.5 383.78 386.56\\\">assign all of our ri* D E M O *this Agreement. Any person we assign it to may reassign it.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 385.6121)\\\" x=\\\"0 6.67 13.89 21.11 28.89 36.11\\\">ACCORD</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 76.435 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 79.3433 385.6121)\\\" x=\\\"0 6.67 13.89\\\">AND</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 100.4566 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 103.3649 385.6121)\\\" x=\\\"0 6.67 13.34 19.45 22.23 28.9 35.01 41.68 48.9 55.01 57.79 65.57 72.79\\\">SATISFACTION.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 178.9265 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 181.8348 385.6121)\\\" x=\\\"0 6.67 12.23\\\">Any</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 199.0662 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 201.9746 385.6121)\\\" x=\\\"0 5 7.78 13.34 16.12 21.68 30.01 35.57 41.13\\\">statement</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.8857 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 248.794 385.6121)\\\" x=\\\"0 5.56 10.56 15.56 21.12 29.45 35.01 40.57 46.13 51.13 53.41 58.97\\\">accompanying</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 313.3351 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 316.2434 385.6121)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.6965 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.6049 385.6121)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 376.9593 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 379.8677 385.6121)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.2075 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 391.1159 385.6121)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 405.0172 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.9256 385.6121)\\\" x=\\\"0 5.56 8.34 11.12 16.68 21.68\\\">effect</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 432.3836 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 435.2919 385.6121)\\\" x=\\\"0 2.78 8.34 13.9\\\">that</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 451.9716 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 454.88 385.6121)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.3331 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 477.2414 385.6121)\\\" x=\\\"0 5.56 11.12 13.4 18.96 24.52 29.52\\\">balance</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.3293 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 515.2376 385.6121)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 522.5179 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 525.4263 385.6121)\\\" x=\\\"0 5.56 11.12 13.4\\\">paid</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 544.3911 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 547.2995 385.6121)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 555.1412 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 558.0496 385.6121)\\\" x=\\\"0 2.78 8.34 10.62\\\">full</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 374.2937)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.1625 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 50.8231 374.2937)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 64.7245 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 68.3851 374.2937)\\\" x=\\\"0 5.56 7.84 13.4\\\">bind</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 87.35 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 91.0106 374.2937)\\\" x=\\\"0 5.56 10.56\\\">us.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 104.3505 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 108.0111 374.2937)\\\" x=\\\"0 7.78 13.34\\\">Our</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 124.681 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 128.3417 374.2937)\\\" x=\\\"0 5.56 11.12 16.68 22.24 27.24 29.52\\\">deposit</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.6464 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 164.307 374.2937)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 172.6468 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 176.3075 374.2937)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 192.4305 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 196.0912 374.2937)\\\" x=\\\"0 5 10.56 15.56\\\">such</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 217.2142 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 220.8748 374.2937)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.2293 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 262.89 374.2937)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.9525 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 280.6131 374.2937)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 294.5145 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 298.1751 374.2937)\\\" x=\\\"0 5 10.56 16.12 21.12 23.9 26.18 28.96 34.52 37.3\\\">constitute</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 341.0365 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 344.6971 374.2937)\\\" x=\\\"0 5.56\\\">an</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.8201 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 359.4808 374.2937)\\\" x=\\\"0 5.56 10.56 15.56 21.12 24.45\\\">accord</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 389.4954 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 393.1561 374.2937)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 409.8406 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 413.5013 374.2937)\\\" x=\\\"0 5 10.56 13.34 15.62 20.62 23.4 28.96 33.96 36.74 39.02 44.58 50.14\\\">satisfaction,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.4212 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 470.0818 374.2937)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.7664 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 490.427 374.2937)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 503.2102 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 506.8709 374.2937)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 525.7625 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 529.4231 374.2937)\\\" x=\\\"0 5.56 11.12 16.68 18.96\\\">apply</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.388 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0486 374.2937)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 362.9754)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57 38.35 41.01 43.79 49.35 52.01 57.01 62.57 68.13 71.46 74.12 79.68 84.68 89.68 95.24 100.8 106.36 109.14\\\">payment to your account.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 349.657)\\\" x=\\\"0 2.78 10 16.67 23.89 31.11 37.78 45 52.22 58.89 61.67 64.33 73.77 79.33 81.99 87.55 93.11 95.77 101.33 106.89 109.67 112.33 115.66 121.22 126.78 132.34 134.62 137.95 143.51 146.17 151.17 156.73 162.29 164.95 167.73 173.29 175.95 181.51 187.07 190.4 195.4 200.96 206.52 211.52 217.08 219.74 222.02 227.58 232.58 238.14 241.47 247.03 252.59 257.59 263.15 265.81 268.59 271.92 277.48 285.81 288.47 294.03 299.03 301.69 307.25 312.81 318.37 321.03 328.25 333.81 336.47 342.03 347.59 352.59 358.15 360.81 366.37 371.93 374.71 377.37 382.93 386.26 391.82 396.82 399.1 404.66 410.22 415.78 418.44 424 429.56 434.56 437.22 439.5 445.06 450.06 455.62 458.95 464.51 470.07 475.07 480.63 483.29 486.07 491.63 494.29 499.29 504.85 510.41\\\">INSURANCE. We do not require you to purchase insurance from us and we have not provided any insurance to you.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 336.3387)\\\" x=\\\"0 7.22 13.89 21.11 27.78 30.56 37.23 43.34 46.12 48.78 56 61.56 67.12 72.68 75.34 80.34 85.9 91.46 94.79 97.45 100.78 106.34 111.9 117.46 123.02 128.02 130.8 133.58 136.24 143.46 149.02 151.68 157.24 160.57 166.13 168.79 172.12 177.68 183.24 188.8 191.08 194.41 199.97 205.53 208.19 210.97 216.53 219.19 224.75 228.08 233.64 238.64 240.92 246.48 252.04 254.7 259.7 265.26 270.82 273.48 280.7 282.98 285.76 291.32 293.98 299.54 302.2 309.42 312.75 315.03 317.81 320.59 326.15 331.71 334.37 337.7 343.26 348.26 353.82 356.1 361.66 364.44 367.1 369.88 375.44 378.77 381.43 386.99 392.55 397.55 403.11 405.77 411.33 416.89 421.89 430.22 435.78 441.34 444.12 446.78 455.11 460.67 466.23 471.79\\\">RECEIPT. Upon your request, we are required to provide you with a written receipt for each payment made.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 323.0203)\\\" x=\\\"0 7.78 15.56 22.23 28.9 36.12 43.34 46.12 53.34\\\">GOVERNING</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 94.2182 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 97.2444 323.0203)\\\" x=\\\"0 5.56 12.23 21.67\\\">LAW.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 121.6926 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 124.7189 323.0203)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 141.9503 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 144.9765 323.0203)\\\" x=\\\"0 2.28 7.84\\\">law</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.04 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 163.0663 323.0203)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 171.4061 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 174.4323 323.0203)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 188.3337 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 191.3599 323.0203)\\\" x=\\\"0 5 7.78 13.34 16.12\\\">state</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 213.0396 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 216.0658 323.0203)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 223.9076 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 226.9339 323.0203)\\\" x=\\\"0 7.22 12.78 15.06 20.06\\\">which</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 252.5589 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 255.5851 323.0203)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 271.7082 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 274.7344 323.0203)\\\" x=\\\"0 3.33 8.89 13.89 16.17 21.73\\\">reside</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.0293 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 305.0555 323.0203)\\\" x=\\\"0 7.22 12.78 18.34\\\">when</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 328.9618 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 331.988 323.0203)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.1111 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 351.1373 323.0203)\\\" x=\\\"0 5 7.28 12.84 18.4 23.96\\\">signed</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.6637 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 383.6899 323.0203)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 399.31 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 402.3363 323.0203)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 451.2523 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 454.2785 323.0203)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 470.9631 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 473.9893 323.0203)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64\\\">applicable</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 519.1993 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 522.2255 323.0203)\\\" x=\\\"0 2.78 8.34 13.9 19.46 22.79 28.35\\\">federal</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.8603 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 555.8865 323.0203)\\\" x=\\\"0 2.28 7.84\\\">law</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 311.7019)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.1625 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 50.5142 311.7019)\\\" x=\\\"0 5.56 11.12 16.12 21.68 25.01\\\">govern</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 81.0904 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 84.4421 311.7019)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 98.3434 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 101.6951 311.7019)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 150.6111 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 153.9628 311.7019)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 170.6474 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 173.9991 311.7019)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 187.9005 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 191.2521 311.7019)\\\" x=\\\"0 2.28 7.84 10.62 16.18 19.51 25.07 28.4 33.96 36.74 42.3 45.08 47.36 52.92\\\">interpretation</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 249.7385 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 253.0902 311.7019)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 261.43 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 264.7817 311.7019)\\\" x=\\\"0 2.28 5.06\\\">it,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 272.6186 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 275.9703 311.7019)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.68\\\">except</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 305.4332 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 308.7849 311.7019)\\\" x=\\\"0 2.78 8.34 13.9\\\">that</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 325.4646 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 328.8163 311.7019)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 342.7176 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 346.0693 311.7019)\\\" x=\\\"0 6.11 11.67 17.23 22.79 26.12 31.68\\\">Federal</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.0342 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 383.3859 311.7019)\\\" x=\\\"0 6.67 10 15.56 17.84 20.62 23.95 29.51 32.29 34.57 40.13\\\">Arbitration</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 429.0792 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 432.4309 311.7019)\\\" x=\\\"0 6.67 11.67\\\">Act</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 446.8791 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 450.2308 311.7019)\\\" x=\\\"0 5.56 10.56 16.12 19.45 25.01 30.01 35.01 37.29\\\">expressly</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 492.5258 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 495.8775 311.7019)\\\" x=\\\"0 5.56 11.12 16.12 21.68 25.01 30.57\\\">governs</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 531.4536 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 534.8053 311.7019)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 548.7067 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 552.0584 311.7019)\\\" x=\\\"0 5 10.56 13.89\\\">Jury</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 300.3836)\\\" x=\\\"0 6.11 9.44 11.72 17.28 19.56 22.22 31.66 37.22 39.5 44.5 50.06 53.39 56.05 61.61 67.17 72.73 75.39 82.06 85.39 90.95 93.23 96.01 99.34 104.9 107.68 109.96 115.52 121.08 123.74 130.96 133.24 138.8 144.36 149.36 154.92 157.7 160.36 167.03 172.59 178.15 180.81 186.37 191.37 196.37 201.93 207.49 214.71 216.99 222.55 228.11 233.67 239.23 241.89 244.67 250.23 255.79 258.57 261.23 266.23 271.79 277.35 280.01 283.34 288.9 293.9 296.18 301.74 307.3 309.96 315.52 318.3 320.96 323.74 329.3 334.86 337.52 343.08 348.64 354.2 357.53 363.09 368.09 373.09 375.75 378.03 380.31 385.31 388.09 393.65 399.21 401.87 407.43 412.99 418.55 423.55 429.11 431.77 437.33 442.89 445.55 448.33 453.89 459.45 462.11 468.78 474.34 477.67 483.23 488.79 497.12 502.68 508.24 511.02 513.68 520.9 526.46 529.24 534.8\\\">Trial Waiver and Arbitration Clause. You acknowledge that you reside at the address listed above on the Agreement Date.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 287.0652)\\\" x=\\\"0 7.22 15 22.22 28.89 36.11 44.44 51.11\\\">CONSUMER</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 91.435 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 94.8938 287.0652)\\\" x=\\\"0 7.22 13.89 20.56 28.34 35.56 41.67\\\">REPORT.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 139.3421 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 142.8009 287.0652)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.5939 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 164.0527 287.0652)\\\" x=\\\"0 5.56 11.12 16.12\\\">have</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 185.7373 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 189.1961 287.0652)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 28.35 30.63 35.63 41.19\\\">authorized</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 235.9539 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 239.4128 287.0652)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 249.9743 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 253.4331 287.0652)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 261.773 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 265.2318 287.0652)\\\" x=\\\"0 5.56 11.12 13.9 19.46 21.74\\\">obtain</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 292.5365 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 295.9953 287.0652)\\\" x=\\\"0 5.56 11.12\\\">one</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.6799 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 316.1388 287.0652)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 325.0304 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 328.4892 287.0652)\\\" x=\\\"0 8.33 13.89 17.22\\\">more</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.2724 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 354.7312 287.0652)\\\" x=\\\"0 5 10.56 16.12 21.12 26.68 35.01 40.57\\\">consumer</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 398.6375 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 402.0963 287.0652)\\\" x=\\\"0 3.33 8.89 14.45 20.01 23.34 26.12\\\">reports</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 433.2194 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 436.6782 287.0652)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.8013 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 451.2601 287.0652)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.3832 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 470.842 287.0652)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 478.6838 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 482.1427 287.0652)\\\" x=\\\"0 5 10.56 16.12 21.68 27.24 32.24 35.02 37.3 42.86\\\">connection</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 530.5704 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 534.0292 287.0652)\\\" x=\\\"0 7.22 9.5 12.28\\\">with</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.871 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 555.3299 287.0652)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 275.7469)\\\" x=\\\"0 2.78 6.11 11.67 17.23 22.23 27.79 32.79 35.57 37.85 43.41 48.97\\\">transaction.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 262.4285)\\\" x=\\\"0 7.22 14.44 21.11 28.33 31.11\\\">CREDIT</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 70.3217 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 73.874 262.4285)\\\" x=\\\"0 7.22 13.89 20.56 28.34 35.56 41.67 44.45 51.67 59.45\\\">REPORTING.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.1005 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 139.6529 262.4285)\\\" x=\\\"0 9.44\\\">We</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 154.6529 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 158.2051 262.4285)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 177.0967 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 180.6491 262.4285)\\\" x=\\\"0 3.33 8.89 14.45 20.01 23.34\\\">report</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 206.7721 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.3244 262.4285)\\\" x=\\\"0 2.28 7.84 10.62 16.18 19.51 27.84 33.4 36.18 38.46 44.02\\\">information</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.9094 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 263.4617 262.4285)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 271.8015 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 275.3538 262.4285)\\\" x=\\\"0 5 8.33 13.89 19.45 21.73\\\">credit</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.8655 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 303.4178 262.4285)\\\" x=\\\"0 5.56 11.12 14.45 20.01 25.57 31.13\\\">bureaus</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 339.5555 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 343.1078 262.4285)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.9994 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 355.5517 262.4285)\\\" x=\\\"0 5.56 8.34 13.9 19.46\\\">other</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 378.3447 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 381.897 262.4285)\\\" x=\\\"0 2.78 8.34 10.62 13.95 19.51 22.84 28.4 33.96 37.29 40.07 42.35 47.91\\\">third-parties</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.812 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 438.3644 262.4285)\\\" x=\\\"0 5.56 11.12 16.68 22.24\\\">about</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 463.3888 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 466.9411 262.4285)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.3942 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 489.9465 262.4285)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.68 32.24 35.02\\\">account,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 527.7492 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 531.3015 262.4285)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24 28.52 34.08\\\">including</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 251.1102)\\\" x=\\\"0 2.28 7.84 10.62 16.18 18.84 24.4 27.73 30.39 38.72 41 46 51 56.56 62.12 64.78 70.34 75.9 80.9 89.23 94.79 100.35 103.13 108.13 110.91 113.57 119.13 124.69 130.25 132.91 138.47 144.03 149.03 151.69 157.25 162.81 167.81 170.09 172.87 175.15 180.15 185.71 188.37 193.93 197.26 199.92 205.48 211.04 216.6 222.16 224.94 227.22 232.22 237.78 240.44 246 251 256 261.56 267.12 272.68 275.46 278.12 280.4 285.96 288.74 294.3 297.63 305.96 311.52 314.3 316.58 322.14 327.7 330.36 338.69 344.25 349.25 351.91 357.47 363.03 365.69 369.02 374.58 377.36 379.64 385.2 390.2 392.98 398.54 404.1 406.76 409.04 414.6 417.26 422.26 427.82 433.38 436.71 439.37 444.37 447.7 453.26 458.82 461.1 463.88 466.54 469.87 475.43 480.99 486.55 489.88 492.66\\\">late or missed payments, and any positive or negative account information may be reflected in your credit report.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 237.7918)\\\" x=\\\"0 2.78 10 17.22 23.89 32.22 39.44 42.22 48.33 51.11 58.33 65 71.11 73.89 81.67 88.89\\\">INDEMNIFICATION.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 124.765 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 128.29 237.7918)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.083 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 149.608 237.7918)\\\" x=\\\"0 5.56 11.12 14.45 20.01\\\">agree</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 175.1842 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 178.7092 237.7918)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 187.0491 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 190.5741 237.7918)\\\" x=\\\"0 2.28 7.84 13.4 18.96 27.29 32.85 35.13 37.91\\\">indemnify</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.4891 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 237.0141 237.7918)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.5756 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 251.1006 237.7918)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 267.7852 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 271.3102 237.7918)\\\" x=\\\"0 5.56 11.12 13.4\\\">hold</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.2751 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 293.8001 237.7918)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 304.3616 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 307.8866 237.7918)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 324.5712 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 328.0962 237.7918)\\\" x=\\\"0 5.56 11.12\\\">our</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 342.5493 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 346.0743 237.7918)\\\" x=\\\"0 5.56 10.56 15.56 17.84 23.4 28.96 34.52 40.08 45.08\\\">assignees,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.9405 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 397.4655 237.7918)\\\" x=\\\"0 5.56 11.12 16.68 22.24 25.02 30.02\\\">agents,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.2683 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 433.7933 237.7918)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 450.4779 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 454.0029 237.7918)\\\" x=\\\"0 2.28 7.84 12.84 18.4 21.73 27.29 30.62\\\">insurers</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.6279 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 493.1529 237.7918)\\\" x=\\\"0 5.56 11.12 14.45 22.78 25.06 30.62 35.62\\\">harmless</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 533.7779 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 537.3029 237.7918)\\\" x=\\\"0 2.78 6.11 11.67\\\">from</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 557.3029 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 560.8279 237.7918)\\\" x=\\\"0 5.56 7.84\\\">all</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 226.4734)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57 36.13 41.13\\\">damages,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 77.016 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 80.4241 226.4734)\\\" x=\\\"0 2.28 7.84 10.12 15.68 19.01 21.29 26.85 31.85\\\">injuries,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 115.0579 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 118.466 226.4734)\\\" x=\\\"0 5 7.28 12.84 15.12 23.45 28.45\\\">claims,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 149.6965 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 153.1046 226.4734)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57 36.13 41.13\\\">demands,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 197.0206 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 200.4287 226.4734)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 217.1132 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 220.5214 226.4734)\\\" x=\\\"0 5.56 10.56 16.12 21.68 27.24 32.24 37.8 42.8\\\">expenses,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 266.1073 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 269.5154 226.4734)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24 28.52 34.08\\\">including</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 309.1638 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 312.5719 226.4734)\\\" x=\\\"0 3.33 8.89 14.45 19.45 25.01 30.57 36.13 41.69 43.97\\\">reasonable</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 362.1129 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 365.521 226.4734)\\\" x=\\\"0 5.56 8.34 11.12 16.68 20.01 25.57 31.13 36.13 38.04\\\">attorney&apos;s</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 408.563 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 411.9711 226.4734)\\\" x=\\\"0 2.78 8.34 13.9\\\">fees</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.8725 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 434.2806 226.4734)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 442.6204 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 446.0285 226.4734)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 459.9299 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 463.338 226.4734)\\\" x=\\\"0 5.56 10.56 13.34 18.9 24.46\\\">extent</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 490.5792 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 493.9873 226.4734)\\\" x=\\\"0 5.56 11.12 14.45 22.78 25.06 27.84 30.62 36.18\\\">permitted</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 535.7305 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 539.1386 226.4734)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.7001 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.1082 226.4734)\\\" x=\\\"0 2.28 7.84 15.06\\\">law,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 215.1551)\\\" x=\\\"0 5.56 8.89 11.17 16.17 18.45 24.01\\\">arising</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 62.6752 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 67.1149 215.1551)\\\" x=\\\"0 5.56 11.12\\\">out</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 81.0163 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 85.4561 215.1551)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 93.7959 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 98.2356 215.1551)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 112.137 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 116.5767 215.1551)\\\" x=\\\"0 5 10.56 16.12 21.68 23.96 26.74 29.02 34.58 40.14\\\">condition,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 159.5016 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 163.9413 215.1551)\\\" x=\\\"0 8.33 13.89 16.17 21.73 24.51 30.07 35.63 41.19 46.75 51.75 57.31\\\">maintenance,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 224.039 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 228.4787 215.1551)\\\" x=\\\"0 5.56 10.56\\\">use</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 244.6017 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 249.0415 215.1551)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.9331 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 262.3728 215.1551)\\\" x=\\\"0 5.56 11.12 16.68 20.01 25.57 28.35 30.63 36.19\\\">operation</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 304.1307 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 308.5704 215.1551)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 316.9102 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 321.35 215.1551)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.2514 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 339.6911 215.1551)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.2624 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 384.7021 215.1551)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24 28.52 34.08\\\">including</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 424.3506 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 428.7903 215.1551)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.3518 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 438.7916 215.1551)\\\" x=\\\"0 5 7.28 12.84 15.12\\\">claim</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 462.2437 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 466.6835 215.1551)\\\" x=\\\"0 5.56 11.12 16.68 22.24\\\">under</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 492.2597 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 496.6994 215.1551)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 510.6008 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 515.0405 215.1551)\\\" x=\\\"0 5 7.78 11.11 13.39 18.39\\\">strict</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 536.2075 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 540.6472 215.1551)\\\" x=\\\"0 2.28 4.56 10.12 15.68 17.96 20.24 22.52 25.3\\\">liability</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 203.8367)\\\" x=\\\"0 5.56 11.12 16.12 18.9 22.23 24.51 30.07 35.63\\\">doctrine.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 190.5184)\\\" x=\\\"0 7.2217 15 21.1084 23.8867 31.1084 37.7783 44.4482\\\">NOTICES.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 80.3266 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 82.9828 190.5184)\\\" x=\\\"0 7.2217 12.7832 15.5615 17.8418 22.8418 28.4033\\\">Notices</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 116.3861 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 119.0424 190.5184)\\\" x=\\\"0 8.3301 13.8916\\\">may</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 137.934 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 140.5902 190.5184)\\\" x=\\\"0 5.5615\\\">be</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 151.7133 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 154.3695 190.5184)\\\" x=\\\"0 5.5615 7.8418 12.8418 18.4033\\\">given</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 178.3344 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 180.9906 190.5184)\\\" x=\\\"0 5.5615 11.123 14.4531 19.4531 25.0146 30.5762 36.1377 38.418 40.6982\\\">personally</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 226.6889 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 229.3451 190.5184)\\\" x=\\\"0 5.5615\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.2367 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 240.893 190.5184)\\\" x=\\\"0 5 10.5615 16.123\\\">sent</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.7943 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 262.4506 190.5184)\\\" x=\\\"0 5.5615\\\">by</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 273.0121 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 275.6684 190.5184)\\\" x=\\\"0 2.7783 5.0586 8.3887 13.3887\\\">first</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.8353 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 294.4916 190.5184)\\\" x=\\\"0 5 7.2803 12.8418 17.8418\\\">class</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 317.3334 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 319.9896 190.5184)\\\" x=\\\"0 8.3301 13.8916 16.1719 18.4522\\\">mail.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 341.2201 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 343.8764 190.5184)\\\" x=\\\"0 7.2217 12.7832 15.5615 17.8418 22.8418\\\">Notice</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 372.2797 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 374.9359 190.5184)\\\" x=\\\"0 8.3301 13.8916 16.1719 18.4522 24.0137\\\">mailed</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 404.5111 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.1674 190.5184)\\\" x=\\\"0 2.7783\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 415.5072 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 418.1635 190.5184)\\\" x=\\\"0 5.5615\\\">us</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 428.725 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 431.3812 190.5184)\\\" x=\\\"0 8.3301 13.8916 18.8916\\\">must</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 453.0512 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 455.7074 190.5184)\\\" x=\\\"0 5.5615\\\">be</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.8305 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 469.4867 190.5184)\\\" x=\\\"0 5 10.5615 16.1231\\\">sent</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 488.3881 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 491.0443 190.5184)\\\" x=\\\"0 2.7783\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.3842 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 502.0404 190.5184)\\\" x=\\\"0 2.7783 8.3398\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 515.9418 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 518.5981 190.5184)\\\" x=\\\"0 5.5615 11.123 16.6846 20.0146 25.5762 30.5762\\\">address</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 179.2)\\\" x=\\\"0 5 10.5615 16.1231 23.3447\\\">shown</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 62.0063 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 64.6625 179.2)\\\" x=\\\"0 2.2803\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 72.5043 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 75.1606 179.2)\\\" x=\\\"0 2.7783 8.3398 10.6201\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 90.7807 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 93.4369 179.2)\\\" x=\\\"0 6.6699 12.2314 15.5615 21.123 26.6846 35.0146 40.5762 46.1377 48.916\\\">Agreement,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 145.1312 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 147.7875 179.2)\\\" x=\\\"0 5.6115\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 156.7791 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 159.4854 179.2)\\\" x=\\\"0 5.6115\\\">as</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 170.1469 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 172.8531 179.2)\\\" x=\\\"0 7.2717\\\">we</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 185.7363 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 188.4426 179.2)\\\" x=\\\"0 5.5615 8.3398 13.9014 19.4629 22.793 30.0147 32.2949 37.2949\\\">otherwise</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.299 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 233.9553 179.2)\\\" x=\\\"0 5.5615 7.8418 11.1719 16.7334 21.7334\\\">direct</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 258.467 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 261.1232 179.2)\\\" x=\\\"0 2.7783 6.1084 11.6699\\\">from</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.1232 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 283.7795 179.2)\\\" x=\\\"0 2.7783 5.0586 13.3887\\\">time</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.7297 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 305.3859 179.2)\\\" x=\\\"0 2.8283\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 313.8258 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 316.532 179.2)\\\" x=\\\"0 2.7783 5.0586 13.3887 18.9502\\\">time.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.2605 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 340.9168 179.2)\\\" x=\\\"0 7.2217 12.7832 15.5615 17.8418 22.8418 28.4033\\\">Notices</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 374.3201 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 376.9764 179.2)\\\" x=\\\"0 2.8283\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 385.4162 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 388.1225 179.2)\\\" x=\\\"0 5.6115\\\">us</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 398.784 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 401.4902 179.2)\\\" x=\\\"0 5.5615 8.8916\\\">are</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 415.9434 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 418.5996 179.2)\\\" x=\\\"0 5.5615 11.1231 16.6846 25.0147 30.5762\\\">deemed</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.7373 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 457.3936 179.2)\\\" x=\\\"0 5.5615 7.8418 12.8418 18.4033\\\">given</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 481.3584 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 484.0147 179.2)\\\" x=\\\"0 7.2217 12.7832 18.3447\\\">when</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 507.9209 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 510.5771 179.2)\\\" x=\\\"0 2.7783 8.3398 13.9014\\\">they</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.4785 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 532.1348 179.2)\\\" x=\\\"0 5.5615 8.8916\\\">are</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 167.8816)\\\" x=\\\"0 5.5615 11.1231 14.4531 19.4531 25.0146 30.5762 36.1377 38.418 40.6982\\\">personally</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 78.7982 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.4545 167.8816)\\\" x=\\\"0 5.5615 7.8418 12.8418 18.4033\\\">given</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 105.4193 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 108.0756 167.8816)\\\" x=\\\"0 5.5615\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 116.9672 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 119.6234 167.8816)\\\" x=\\\"0 5.5615 10.5615 13.3398 18.9014 24.4629 26.7432 29.0234\\\">actually</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 153.6469 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 156.3031 167.8816)\\\" x=\\\"0 3.3301 8.8916 13.8916 19.4531 21.7334 26.7334 32.2949\\\">received</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 194.1596 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 196.8158 167.8816)\\\" x=\\\"0 5.6615\\\">at</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 205.3557 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 208.1119 167.8816)\\\" x=\\\"0 5.6115 11.223\\\">our</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 222.715 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 225.4213 167.8816)\\\" x=\\\"0 5.5615 11.123 16.6846 20.0146 25.5762 30.5762 35.5762\\\">address.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 263.7758 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 266.432 167.8816)\\\" x=\\\"0 7.2217 12.7832 15.5615 17.8418 22.8418 28.4033\\\">Notices</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.8353 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 302.4916 167.8816)\\\" x=\\\"0 5.6115 8.9916\\\">are</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 317.0947 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 319.801 167.8816)\\\" x=\\\"0 5.5615 11.123 16.6846 25.0146 30.5762\\\">deemed</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.9387 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 358.5949 167.8816)\\\" x=\\\"0 5.5615 7.8418 12.8418 18.4033\\\">given</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 382.5598 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 385.216 167.8816)\\\" x=\\\"0 2.8783\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.7559 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 396.5121 167.8816)\\\" x=\\\"0 5.05 10.6615\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 412.7852 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 415.4914 167.8816)\\\" x=\\\"0 7.2717 12.8832 18.4947\\\">when</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 439.5977 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 442.3039 167.8816)\\\" x=\\\"0 2.8283 8.4398 14.0514\\\">they</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 461.4053 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 464.1115 167.8816)\\\" x=\\\"0 5.6115 8.9916\\\">are</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 478.7147 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 481.4209 167.8816)\\\" x=\\\"0 5.5615 11.1231 14.4531 19.4531 25.0146 30.5762 36.1377 38.418 40.6982\\\">personally</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 527.1191 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 529.7754 167.8816)\\\" x=\\\"0 5.5615 7.8418 12.8418 18.4033\\\">given</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.7402 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 556.3965 167.8816)\\\" x=\\\"0 5.6615\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 156.5633)\\\" x=\\\"0 7.2717 12.8832 18.4947\\\">when</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 57.2063 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 59.9125 156.5633)\\\" x=\\\"0 5.5615 7.8418 13.4033 18.4033 23.9648\\\">placed</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 89.4389 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 92.0951 156.5633)\\\" x=\\\"0 2.3803\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 100.1369 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 102.8932 156.5633)\\\" x=\\\"0 2.8283 8.4398\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 116.9445 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 119.6508 156.5633)\\\" x=\\\"0 8.3301 13.8916 16.1719 18.4522\\\">mail,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 140.8813 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 143.5375 156.5633)\\\" x=\\\"0 5.5615 11.123 16.6846 20.0147 25.5762 30.5762 35.5762 41.1377\\\">addressed</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 190.2367 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 192.893 156.5633)\\\" x=\\\"0 2.7783\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 201.2328 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 203.8891 156.5633)\\\" x=\\\"0 5 10.5615\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 220.0121 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 222.6684 156.5633)\\\" x=\\\"0 5.5615\\\">at</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.0082 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 233.6645 156.5633)\\\" x=\\\"0 5 10.5615 16.123\\\">your</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 253.1176 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 255.7738 156.5633)\\\" x=\\\"0 5.5615 11.1231 16.6846 20.0147 25.5762 30.5762\\\">address</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.35 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 294.0062 156.5633)\\\" x=\\\"0 2.7783 8.3399 13.9014\\\">then</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 313.4691 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 316.1254 156.5633)\\\" x=\\\"0 5 10.5615 16.1231 23.3447\\\">shown</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 345.0316 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 347.6879 156.5633)\\\" x=\\\"0 5.5615\\\">on</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 358.8109 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 361.4672 156.5633)\\\" x=\\\"0 5.5615 11.1231\\\">our</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.9203 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 378.5766 156.5633)\\\" x=\\\"0 3.3301 8.8916 13.8916 19.4531 22.7832 28.3447 33.3447\\\">records,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 414.6996 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 417.3559 156.5633)\\\" x=\\\"0 5.5615 10.5615 16.123\\\">even</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 439.0404 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 441.6967 156.5633)\\\" x=\\\"0 2.7783 8.3398 13.9014 19.4629 25.0244\\\">though</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 472.2826 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 474.9389 156.5633)\\\" x=\\\"0 5 10.5615\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 491.0619 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 493.7182 156.5633)\\\" x=\\\"0 8.3301 10.6104 16.1719 21.7334\\\">might</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 518.2299 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 520.8861 156.5633)\\\" x=\\\"0 5.5615 11.123\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 145.2449)\\\" x=\\\"0 5.5615 10.5615 13.3398 18.9014 24.4629 26.7432 29.0234\\\">actually</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 67.1234 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 69.7797 145.2449)\\\" x=\\\"0 3.3301 8.8916 13.8916 19.4531 21.7334 26.7334\\\">receive</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 102.0746 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 104.7309 145.2449)\\\" x=\\\"0 5.5615 11.123\\\">our</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 119.184 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 121.8402 145.2449)\\\" x=\\\"0 8.3301 13.8916 16.1719 18.4521 24.0137\\\">mailed</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 151.4154 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 154.0717 145.2449)\\\" x=\\\"0 5.5615 11.1231 13.9014 16.1816 21.1816 26.7432\\\">notice.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 183.5932 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 186.2494 145.2449)\\\" x=\\\"0 6.6699 12.2314\\\">You</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 204.0424 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 206.6986 145.2449)\\\" x=\\\"0 5.8115 11.6231 15.2031 21.0146\\\">agree</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.5248 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 236.4311 145.2449)\\\" x=\\\"0 2.9283 8.6398 14.3514\\\">that</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 253.7107 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 256.517 145.2449)\\\" x=\\\"0 5.8615\\\">30</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 268.24 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 271.1963 145.2449)\\\" x=\\\"0 5.7115 11.4231 16.5731 21.7231\\\">days&apos;</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 294.9785 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 297.7848 145.2449)\\\" x=\\\"0 5.6615 11.3231 14.2014 16.5816 21.6816\\\">notice</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 325.1279 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 327.8842 145.2449)\\\" x=\\\"0 2.5803\\\">is</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.7645 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.7207 145.2449)\\\" x=\\\"0 3.4301 9.0916 14.7531 19.8531 25.5146 31.1762 36.8377 42.4992 44.8795 50.541\\\">reasonable,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 392.14 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 394.8963 145.2449)\\\" x=\\\"0 5.6615 11.3231 13.7033 19.3648 24.4648\\\">unless</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 424.4611 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 427.2174 145.2449)\\\" x=\\\"0 5.15 8.0783 13.7899 16.7182\\\">state</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 449.6471 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 452.4533 145.2449)\\\" x=\\\"0 2.5303 8.3418\\\">law</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.2668 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 471.173 145.2449)\\\" x=\\\"0 3.4301 9.0916 14.7531 20.4146 22.7949 26.225 31.8865\\\">requires</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 508.1596 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 510.9158 145.2449)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 517.0773 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 520.3336 145.2449)\\\" x=\\\"0 2.3803 8.0418 13.7033 19.3649 25.0264\\\">longer</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 133.9266)\\\" x=\\\"0 5.6615 11.3231 14.7531 17.1334 22.7949 28.4564\\\">period,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 64.4348 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 67.191 133.9266)\\\" x=\\\"0 2.5803\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 75.6328 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 78.5891 133.9266)\\\" x=\\\"0 7.3717 13.0832 15.5135 20.6635\\\">which</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 104.9641 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 107.7703 133.9266)\\\" x=\\\"0 5.15 10.8615 16.0115\\\">case</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 129.4934 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 132.2996 133.9266)\\\" x=\\\"0 5.25 11.0615\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 149.1727 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 152.0789 133.9266)\\\" x=\\\"0 5.7115 11.423 14.9031 20.6146\\\">agree</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 178.4051 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 181.2113 133.9266)\\\" x=\\\"0 2.9283 8.6398 14.3514\\\">that</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 198.491 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 201.2973 133.9266)\\\" x=\\\"0 3.0283 8.8398\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 215.9486 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 218.8549 133.9266)\\\" x=\\\"0 5.05 7.8783 13.4898 16.3182 21.9297 25.3098 28.7898 34.5014 40.2129 45.9244 48.3547 51.8348 57.5463\\\">state-required</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 282.1127 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 284.9189 133.9266)\\\" x=\\\"0 5.6615 11.3231 14.7531 17.1334 22.7949\\\">period</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 313.3754 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 316.1316 133.9266)\\\" x=\\\"0 2.5803\\\">is</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 324.0119 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 329.5182 133.9266)\\\" x=\\\"0 3.3301 8.8916 14.4531 19.4531 25.0147 30.5762 36.1377 41.6992 43.9795 49.541\\\">reasonable.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 381.8375 133.9266)\\\" x=\\\"0 2.6562\\\">  </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 387.15 133.9266)\\\" x=\\\"0 6.6699 12.2314\\\">You</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 404.943 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.5992 133.9266)\\\" x=\\\"0 5.5615 11.123 13.9014 19.4629 25.0244 28.3545 30.6348 35.6348\\\">authorize</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 448.7955 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 451.4518 133.9266)\\\" x=\\\"0 5.5615\\\">us</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 462.0133 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 464.6695 133.9266)\\\" x=\\\"0 2.7783\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 473.0094 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 475.6656 133.9266)\\\" x=\\\"0 5 10.5615 16.123\\\">send</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 497.3502 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 500.0064 133.9266)\\\" x=\\\"0 5.5615 11.1231 13.9014 16.1816 21.1816 26.7432\\\">notices</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 531.7496 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 534.4059 133.9266)\\\" x=\\\"0 2.7783\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 542.7457 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 545.402 133.9266)\\\" x=\\\"0 5 10.5615 16.123\\\">your</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 122.6082)\\\" x=\\\"0 5.56 13.89 19.45 21.73 24.01 26.67 32.23 37.79 43.35 46.68 52.24 57.24 62.24 64.9 70.46 76.02 78.3 83.86 88.86 93.86 96.52 102.08 105.41 110.97 116.53 118.81 124.37 126.65 129.43 134.99 140.55 143.21 148.77 153.77 156.43 158.71 164.27 171.49\\\">email address unless prohibited by law.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 109.2898)\\\" x=\\\"0 5 12.22 19.44\\\">JURY</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 59.2133 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 63.5195 109.2898)\\\" x=\\\"0 6.11 13.33 16.11 22.78\\\">TRIAL</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 91.8594 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 96.1656 109.2898)\\\" x=\\\"0 9.44 16.11 18.89 25.56 32.23\\\">WAIVER</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 135.6138 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 139.9201 109.2898)\\\" x=\\\"0 6.67 13.89\\\">AND</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 161.0334 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 165.3396 109.2898)\\\" x=\\\"0 6.67 13.89 20.56 23.34 29.45 36.67 43.34 49.45 52.23 60.01\\\">ARBITRATION</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 232.5662 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 236.8724 109.2898)\\\" x=\\\"0 7.22 12.78 19.45 26.67 33.34 40.01\\\">CLAUSE.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 279.6654 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 283.9716 109.2898)\\\" x=\\\"0 6.67\\\">By</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 295.6415 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 299.9478 109.2898)\\\" x=\\\"0 5 7.28 12.84 18.4 20.68 26.24 31.8\\\">signing,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 334.5327 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.8389 109.2898)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 354.962 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 359.2682 109.2898)\\\" x=\\\"0 5.56 11.12 14.45 20.01\\\">agree</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 384.8444 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 389.1507 109.2898)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 397.4905 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 401.7967 109.2898)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 417.4168 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 421.7231 109.2898)\\\" x=\\\"0 5 10.56 13.89\\\">Jury</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 440.6147 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 444.9209 109.2898)\\\" x=\\\"0 6.11 9.44 11.72 17.28\\\">Trial</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 464.4815 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 468.7877 109.2898)\\\" x=\\\"0 9.44 15 17.28 22.28 27.84\\\">Waiver</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.9596 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 504.2658 109.2898)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 520.9504 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 525.2566 109.2898)\\\" x=\\\"0 6.67 10 15.56 17.84 20.62 23.95 29.51 32.29 34.57 40.13\\\">Arbitration</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 97.9715)\\\" x=\\\"0 7.22 9.5 15.06 20.62 25.62 31.18 33.84 37.17 40.5 47.72 50 55.56 61.12 66.12 71.68 75.01 78.34\\\">Clause (“Clause”).</text></g><clipPath id=\\\"clip3-3\\\"><path d=\\\"M 35 76 L 573 76 L 573 94 L 35 94 L 35 76 z \\\"/></clipPath><path clip-path=\\\"url(#clip3-3)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 93.8719 L 572.95 93.8719 L 572.95 76.8719 L 35.45 76.8719 L 35.45 93.8719 z \\\"/><path clip-path=\\\"url(#clip3-3)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.15 91.8719 L 572.45 91.8719 L 572.45 80.5535 L 39.15 80.5535 L 39.15 91.8719 z \\\"/><path clip-path=\\\"url(#clip3-3)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 253.9396 91.8719 L 357.9396 91.8719 L 357.9396 79.8719 L 253.9396 79.8719 L 253.9396 91.8719 z \\\"/><g clip-path=\\\"url(#clip3-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 253.9396 82.6531)\\\" x=\\\"0 6.67 12.23 17.23 22.23 27.79 31.12 36.68 42.24 47.8 53.36 56.02 61.58 67.14 72.7 75.36 82.03 87.03 92.59 98.15\\\">Background and Scope</text></g><clipPath id=\\\"clip3-4\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip3-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 94.3719 L 573.45 94.3719 L 573.45 93.3719 L 34.95 93.3719 L 34.95 94.3719 z \\\"/><path clip-path=\\\"url(#clip3-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 77.3719 L 573.45 77.3719 L 573.45 76.3719 L 34.95 76.3719 L 34.95 77.3719 z \\\"/><path clip-path=\\\"url(#clip3-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 93.3719 L 573.45 93.3719 L 573.45 77.3719 L 572.45 77.3719 L 572.45 93.3719 z \\\"/><path clip-path=\\\"url(#clip3-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 93.3719 L 35.95 93.3719 L 35.95 77.3719 L 34.95 77.3719 L 34.95 93.3719 z \\\"/><g clip-path=\\\"url(#clip3-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 36.5264)\\\" x=\\\"0 6.498 11.997 14.391 16.785 21.789 26.793 29.295 34.299 39.303 44.307 504 506.3906 508.7812 511.1719 513.5625 515.9531 518.3438 520.7344 523.125 525.5156\\\">UT  07/2019          </text></g><g clip-path=\\\"url(#clip3-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 26.3398)\\\" x=\\\"0 6.003 11.007 16.011 21.015\\\">Page </text></g><g clip-path=\\\"url(#clip3-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 55.8097 26.3398)\\\" x=\\\"0\\\">4</text></g><g clip-path=\\\"url(#clip3-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.815 26.3398)\\\" x=\\\"0 2.394 7.398 9.9\\\"> of </text></g><g clip-path=\\\"url(#clip3-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 73.1021 26.3398)\\\" x=\\\"0\\\">7</text></g><g clip-path=\\\"url(#clip3-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#d9d9d9\\\" style=\\\"font-family:f3-0; font-size:54pt; white-space:pre\\\" transform=\\\"matrix(0.707 0.707 0.707 -0.707 135.6027 198.5094)\\\" x=\\\"0 56.016 96.048 136.08 176.112 216.144 236.16 284.184 324.216 344.232 364.248 416.232 456.264 480.24\\\">* D E M O *are</text></g><g clip-path=\\\"url(#clip3-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#002ba6\\\" style=\\\"font-family:f3-0; font-size:9pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.932 772)\\\" x=\\\"0 9.336 16.008 22.68 29.352 36.024 39.36 47.364 54.036 57.372 60.708 69.372 76.044 80.04 86.712 90.048 94.044 97.38 104.712 111.384 115.38 118.716 126.72 132.72 139.392 142.056 148.728 155.4 158.736 161.4 168.072 174.744 178.08 187.416 194.088 196.752 202.752 206.088 210.084 213.42 220.092 223.428 226.764 233.436 239.436 242.772 246.108 249.444 258.108 266.772 275.436 278.772 285.444 292.116 298.788 305.46 312.132 315.468 321.468 328.14\\\">Qoppa Software - For Evaluation Only - https://www.qoppa.com</text></g></g></svg></svg></g></svg><br>\\n<?xml version='1.0' encoding='UTF-8'?><svg id=\\\"qoppa_document\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" version=\\\"1.1\\\" xmlns=\\\"http://www.w3.org/2000/svg\\\" xmlns:xlink=\\\"http://www.w3.org/1999/xlink\\\"><!-- jPDFWeb v2019R1.03 - Demo Version --><style>title p { display: block; }</style><g id=\\\"qoppa_viewxform\\\" transform=\\\"matrix(1 0 0 1 0 0)\\\"><style type=\\\"text/css\\\">@font-face {font-family:f4-0;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f4-1;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f4-2;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}</style><svg id=\\\"qoppa_page_p4\\\" class=\\\"qoppa_page\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\"><rect class=\\\"qoppa_pageborder\\\" x=\\\"0.5pt\\\" y=\\\"0.5pt\\\" width=\\\"611pt\\\" height=\\\"791pt\\\" fill=\\\"none\\\" /><svg class=\\\"qoppa_pagecontents\\\" x=\\\"0pt\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" viewBox=\\\"0 0 612 792\\\" ><g class=\\\"qoppa_contentstream\\\" transform=\\\"matrix(1 0 0 -1 0 792)\\\" fill=\\\"black\\\" stroke=\\\"black\\\" stroke-width=\\\"1\\\" stroke-linecap=\\\"butt\\\" stroke-linejoin=\\\"miter\\\" stroke-miterlimit=\\\"10\\\"><clipPath id=\\\"clip4-1\\\"><path d=\\\"M 35 748 L 130 748 L 130 770 L 35 770 L 35 748 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-1)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 769.7 L 129.35 769.7 L 129.35 748.5906 L 35.45 748.5906 L 35.45 769.7 z \\\"/><path clip-path=\\\"url(#clip4-1)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 767.7 L 125.25 767.7 L 125.25 758.6453 L 39.55 758.6453 L 39.55 767.7 z \\\"/><path clip-path=\\\"url(#clip4-1)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 47.9683 767.7 L 116.9684 767.7 L 116.9684 757.7 L 47.9683 757.7 L 47.9683 767.7 z \\\"/><g clip-path=\\\"url(#clip4-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.9684 760.325)\\\" x=\\\"0 7.552 12 16.448 18.672 20.8 22.624 26.624 28.752 33.2 35.864 40.312 42.136 44.36 47.024 51.472 53.696 55.52 59.968 64.416\\\">What is arbitration?</text></g><clipPath id=\\\"clip4-2\\\"><path d=\\\"M 129 748 L 206 748 L 206 770 L 129 770 L 129 748 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 138.6945 760.325)\\\" x=\\\"0 5.336 9.784 11.912 16.36 18.184 20.408 24.856 27.52 31.968 36.416 38.64 40.464 44.464 48.912 51.04 53.264\\\">An alternative to</text></g><g clip-path=\\\"url(#clip4-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 157.5461 751.2703)\\\" x=\\\"0 4 8.448 12.896 15.56 17.784\\\">court.</text></g><clipPath id=\\\"clip4-3\\\"><path d=\\\"M 205 748 L 573 748 L 573 770 L 205 770 L 205 748 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 760.325)\\\" x=\\\"0 2.224\\\">In</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 216.5219 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 220.3852 760.325)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 26.768 31.216 35.664\\\">arbitration,</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 258.2758 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 262.139 760.325)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 266.5883 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 270.4515 760.325)\\\" x=\\\"0 2.224 6.672 8.496 11.16\\\">third</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 286.0609 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 289.9242 760.325)\\\" x=\\\"0 4.448 8.896 11.56 13.784\\\">party</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 307.7094 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 311.5727 760.325)\\\" x=\\\"0 2.664 5.504 10.84 13.504 17.952 19.776 22 26.448 29.112 31.952\\\">(&quot;Arbiter&quot;)</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 346.1898 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 350.0531 760.325)\\\" x=\\\"0 4 8.448 10.272 14.272 18.72\\\">solves</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 372.7758 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 376.639 760.325)\\\" x=\\\"0 5.776 7.6 11.6 16.048 20.496 22.72 27.168\\\">Disputes</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 407.8109 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 411.6742 760.325)\\\" x=\\\"0 1.824\\\">in</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 417.9477 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 421.8109 760.325)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 426.2601 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 430.1234 760.325)\\\" x=\\\"0 4.448 8.896 13.344 16.008 17.832 22.28\\\">hearing</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.8578 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 460.7211 760.325)\\\" x=\\\"0 2.664 5.504 9.952 14.4 18.848 21.512 23.336 27.784 32.232 35.072 37.736\\\">(&quot;hearing&quot;).</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 500.6859 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 504.5492 760.325)\\\" x=\\\"0 5.336 9.784 14.232\\\">You,</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.0062 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 524.8695 760.325)\\\" x=\\\"0 2.664 7.112 8.936 13.384 15.608 20.056\\\">related</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.3773 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 553.2406 760.325)\\\" x=\\\"0 2.224 6.672 8.496 11.16\\\">third</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 751.2703)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056 24.056 26.28 28.408 32.856 37.304 41.752 43.88 49.656 54.104 56.328 58.456 64.232 68.68 70.504 74.504 78.952 81.08 83.304 87.752 92.2 94.328 96.992 98.816 103.264 107.712 109.936 112.064 114.288 118.736 120.864 125.312 129.76 131.888 134.112 138.56 140.688 144.688 149.136 153.584 156.248 158.472 160.696 162.824 168.16 172.608 176.608 181.056 183.184 186.024 190.472 194.92 197.584 199.808 201.632 206.08 210.08 212.92 215.048 217.272 221.72 224.384 228.832 233.28 235.408 237.232 241.68 244.344 248.344 250.472 252.696 255.36 257.184 261.632 263.456 267.456\\\">parties, and we, waive the right to go to court. Such &quot;parties&quot; forgo jury trials.</text></g><clipPath id=\\\"clip4-4\\\"><path d=\\\"M 35 727 L 130 727 L 130 749 L 35 749 L 35 727 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-4)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 748.5906 L 129.35 748.5906 L 129.35 727.4813 L 35.45 727.4813 L 35.45 748.5906 z \\\"/><path clip-path=\\\"url(#clip4-4)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 746.5906 L 125.25 746.5906 L 125.25 728.4813 L 39.55 728.4813 L 39.55 746.5906 z \\\"/><path clip-path=\\\"url(#clip4-4)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 41.6461 746.5906 L 123.6461 746.5906 L 123.6461 736.5906 L 41.6461 736.5906 L 41.6461 746.5906 z \\\"/><g clip-path=\\\"url(#clip4-4)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 41.6461 739.2156)\\\" x=\\\"0 2.224 6.224 8.352 10.176 12.4 14.528 18.976 20.8 23.024 25.248 29.696 32.36 36.808 41.256 43.48 45.608 47.832 50.496 54.944 61.608 63.736 67.736 72.184 76.632 79.296\\\">Is it different from court</text></g><path clip-path=\\\"url(#clip4-4)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 56.4156 737.5359 L 108.4156 737.5359 L 108.4156 727.5359 L 56.4156 727.5359 L 56.4156 737.5359 z \\\"/><g clip-path=\\\"url(#clip4-4)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 56.4156 730.1609)\\\" x=\\\"0 4.448 8.896 13.344 15.472 17.296 21.744 24.408 28.408 30.536 32.76 35.424 37.248 41.696 43.52 47.52\\\">and jury trials?</text></g><clipPath id=\\\"clip4-5\\\"><path d=\\\"M 129 727 L 206 727 L 206 749 L 129 749 L 129 727 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-5)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 159.5461 739.2156)\\\" x=\\\"0 5.336 9.784 13.784\\\">Yes.</text></g><clipPath id=\\\"clip4-6\\\"><path d=\\\"M 205 727 L 573 727 L 573 749 L 205 749 L 205 727 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 739.2156)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 223.6351 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 226.6552 739.2156)\\\" x=\\\"0 4.448 8.896 13.344 16.008 17.832 22.28\\\">hearing</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 253.3896 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 256.4096 739.2156)\\\" x=\\\"0 1.824\\\">is</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.2338 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 265.2539 739.2156)\\\" x=\\\"0 4.448 7.112 8.936 12.936 17.384 19.608\\\">private</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 289.3125 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 292.3325 739.2156)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 305.6802 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 308.7002 739.2156)\\\" x=\\\"0 1.824 6.272 10.272\\\">less</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 322.9737 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 325.9937 739.2156)\\\" x=\\\"0 2.224 6.672 9.336 16 20.448\\\">formal</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.2672 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 351.2872 739.2156)\\\" x=\\\"0 2.224 6.672 11.12\\\">than</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 366.8575 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 369.8776 739.2156)\\\" x=\\\"0 4 8.448 12.896 15.56 17.784\\\">court.</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 389.8854 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 392.9055 739.2156)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608\\\">Arbiters</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 420.5148 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 423.5349 739.2156)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 438.6482 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 441.6682 739.2156)\\\" x=\\\"0 1.824 3.648 10.312 12.136\\\">limit</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.0276 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 459.0477 739.2156)\\\" x=\\\"0 4.448 7.112 11.56 14.224 18.672 23.12 27.568 30.232 32.056 36.504\\\">pre-hearing</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 500.0086 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 503.0286 739.2156)\\\" x=\\\"0 2.224 6.672 10.672\\\">fact</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 515.9232 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 518.9432 739.2156)\\\" x=\\\"0 2.224 4.048 8.496 12.944 14.768 19.216 23.664\\\">finding,</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 544.8338 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 547.8539 739.2156)\\\" x=\\\"0 4 8.448 10.272 12.096 16.544\\\">called</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 730.1609)\\\" x=\\\"0 2.84 7.288 9.112 13.112 17.112 21.56 25.56 30.008 32.672 36.672 38.896 41.736 43.864 48.752 53.2 57.648 59.776 64.224 68.672 72.672 74.496 78.496 80.32 84.768 89.216 91.344 93.168 97.168 99.296 101.52 103.344 107.792 112.24 114.064 116.288 118.416 124.192 128.64 133.088 135.752 137.976 141.976 144.104 146.768 151.216 153.88 158.328 160.152 164.152 166.28 170.728 174.728 179.176 181.84 184.064 188.512 191.176 195.624 197.752 203.088 205.752 210.2 212.024 214.248 218.696 221.36 225.36\\\">&quot;discovery.&quot; The decision is final. Courts rarely overturn Arbiters.</text></g><clipPath id=\\\"clip4-7\\\"><path d=\\\"M 35 706 L 130 706 L 130 728 L 35 728 L 35 706 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-7)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 727.4813 L 129.35 727.4813 L 129.35 706.3719 L 35.45 706.3719 L 35.45 727.4813 z \\\"/><path clip-path=\\\"url(#clip4-7)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 725.4813 L 125.25 725.4813 L 125.25 707.3719 L 39.55 707.3719 L 39.55 725.4813 z \\\"/><path clip-path=\\\"url(#clip4-7)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 44.2789 725.4813 L 121.2789 725.4813 L 121.2789 715.4813 L 44.2789 715.4813 L 44.2789 725.4813 z \\\"/><g clip-path=\\\"url(#clip4-7)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 44.2789 718.1062)\\\" x=\\\"0 7.552 12 16.448 18.576 23.024 27.472 31.92 35.92 38.048 40.272 44.72 49.168 51.296 57.072 58.896 63.344 67.792 71.792\\\">Who does the Clause</text></g><path clip-path=\\\"url(#clip4-7)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 70.3941 716.4266 L 95.3941 716.4266 L 95.3941 706.4266 L 70.3941 706.4266 L 70.3941 716.4266 z \\\"/><g clip-path=\\\"url(#clip4-7)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 70.3941 709.0516)\\\" x=\\\"0 4 8.448 12.448 16.896 19.56\\\">cover?</text></g><clipPath id=\\\"clip4-8\\\"><path d=\\\"M 129 706 L 206 706 L 206 728 L 129 728 L 129 706 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 144.5226 718.1062)\\\" x=\\\"0 5.336 9.784 14.232 16.456 18.584 24.36 28.36 30.584 32.712 37.16 41.608\\\">You, Us, and</text></g><g clip-path=\\\"url(#clip4-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 154.4348 709.0516)\\\" x=\\\"0 6.224 8.448 12.896 17.344 20.008 24.008\\\">Others.</text></g><clipPath id=\\\"clip4-9\\\"><path d=\\\"M 205 706 L 573 706 L 573 728 L 205 728 L 205 706 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 718.1062)\\\" x=\\\"0 4.888 9.336 11.16\\\">This</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.0101 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 228.5163 718.1062)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496\\\">Clause</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 253.4655 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 256.9716 718.1062)\\\" x=\\\"0 4.448 8.896 12.896 17.344 20.008 24.456\\\">governs</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 285.4326 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 288.9387 718.1062)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 300.0598 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 303.5659 718.1062)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056 24.056\\\">parties,</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.8472 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 333.3533 718.1062)\\\" x=\\\"0 2.224 6.672 11.12 12.944\\\">their</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.9627 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 352.4688 718.1062)\\\" x=\\\"0 4.448 8.896 10.72 13.384 17.384\\\">heirs,</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 372.0782 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 375.5844 718.1062)\\\" x=\\\"0 4 8.448 12.448 16.448 20.896 24.896 28.896 33.344 36.008 40.008\\\">successors,</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 417.8187 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 421.3249 718.1062)\\\" x=\\\"0 4.448 8.448 12.448 14.272 18.72 23.168 27.168\\\">assigns,</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 450.7194 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 454.2255 718.1062)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.5732 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 471.0793 718.1062)\\\" x=\\\"0 2.224 6.672 8.496 11.16\\\">third</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.6887 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 490.1949 718.1062)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056\\\">parties</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 514.2535 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 517.7596 718.1062)\\\" x=\\\"0 2.664 7.112 8.936 13.384 15.608 20.056\\\">related</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 542.2674 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 545.7735 718.1062)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.4454 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 555.9515 718.1062)\\\" x=\\\"0 4.448 8.896\\\">any</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 709.0516)\\\" x=\\\"0 5.776 7.6 11.6 16.048 20.496 22.72 27.168\\\">Dispute.</text></g><clipPath id=\\\"clip4-10\\\"><path d=\\\"M 35 630 L 130 630 L 130 707 L 35 707 L 35 630 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-10)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 706.3719 L 129.35 706.3719 L 129.35 630.9344 L 35.45 630.9344 L 35.45 706.3719 z \\\"/><path clip-path=\\\"url(#clip4-10)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 704.3719 L 125.25 704.3719 L 125.25 686.2625 L 39.55 686.2625 L 39.55 704.3719 z \\\"/><path clip-path=\\\"url(#clip4-10)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 47.7711 704.3719 L 117.7711 704.3719 L 117.7711 694.3719 L 47.7711 694.3719 L 47.7711 704.3719 z \\\"/><g clip-path=\\\"url(#clip4-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.7711 696.9969)\\\" x=\\\"0 7.552 12 13.824 17.824 22.272 24.4 30.176 32 36 40.448 44.896 47.12 51.568 55.568 57.696 62.144 64.808\\\">Which Disputes are</text></g><path clip-path=\\\"url(#clip4-10)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 65.9449 695.3172 L 98.9449 695.3172 L 98.9449 685.3172 L 65.9449 685.3172 L 65.9449 695.3172 z \\\"/><g clip-path=\\\"url(#clip4-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 65.9449 687.9422)\\\" x=\\\"0 4 8.448 12.448 16.896 19.56 24.008 28.456\\\">covered?</text></g><clipPath id=\\\"clip4-11\\\"><path d=\\\"M 129 630 L 206 630 L 206 707 L 129 707 L 129 630 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 145.298 696.9969)\\\" x=\\\"0 5.336 7.16 8.984 11.112 16.888 18.712 22.712 27.16 31.608 33.832 38.28 42.28\\\">All Disputes.</text></g><clipPath id=\\\"clip4-12\\\"><path d=\\\"M 205 630 L 573 630 L 573 707 L 205 707 L 205 630 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 696.9969)\\\" x=\\\"0 2.224\\\">In</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 216.5219 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 220.3165 696.9969)\\\" x=\\\"0 2.224 6.672 8.496\\\">this</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 232.8126 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 236.6072 696.9969)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496 24.944\\\">Clause,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 263.7791 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 267.5738 696.9969)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 278.6949 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 282.4895 696.9969)\\\" x=\\\"0 5.776 10.224 12.888\\\">word</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.8293 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 303.624 696.9969)\\\" x=\\\"0 2.84 8.616 10.44 14.44 18.888 23.336 25.56 30.008 34.008\\\">&quot;Disputes&quot;</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 340.4755 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 344.2702 696.9969)\\\" x=\\\"0 4.448 8.896\\\">has</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 357.1686 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 360.9633 696.9969)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 372.0844 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 375.879 696.9969)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456 24.904 28.904\\\">broadest</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 407.0118 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 410.8065 696.9969)\\\" x=\\\"0 4.448 8.896 12.896 16.896 18.72 23.168 24.992\\\">possible</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 440.2518 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 444.0464 696.9969)\\\" x=\\\"0 6.664 11.112 15.56 20.008 21.832 26.28 30.728\\\">meaning.</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 477.0034 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 480.7981 696.9969)\\\" x=\\\"0 4.888 9.336 11.16\\\">This</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 495.9582 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 499.7529 696.9969)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496\\\">Clause</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 524.7021 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 528.4968 696.9969)\\\" x=\\\"0 4.448 8.896 12.896 17.344 20.008 24.456\\\">governs</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 556.9577 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 560.7523 696.9969)\\\" x=\\\"0 4.448 6.272\\\">all</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 687.9422)\\\" x=\\\"0 2.84 8.616 10.44 14.44 18.888 23.336 25.56 30.008 34.008\\\">&quot;Disputes&quot;</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 246.7015 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 248.8785 687.9422)\\\" x=\\\"0 1.824 6.272 10.272 14.72 16.544 20.544 22.368 26.816\\\">involving</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.148 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 282.3249 687.9422)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 293.446 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 295.6229 687.9422)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056 24.056\\\">parties.</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 321.9041 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 324.081 687.9422)\\\" x=\\\"0 4.888 9.336 11.16\\\">This</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 339.2412 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 341.4181 687.9422)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44\\\">includes</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 370.8634 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 373.0403 687.9422)\\\" x=\\\"0 4.448 6.272\\\">all</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 381.1379 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 383.3148 687.9422)\\\" x=\\\"0 4 5.824 10.272 12.096 18.76\\\">claims</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 406.0765 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 408.2534 687.9422)\\\" x=\\\"0 4.448 8.448 12.896\\\">even</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 425.6011 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 427.778 687.9422)\\\" x=\\\"0 1.824 6.272 10.72 12.544 15.208 19.656 23.656 25.88 27.704\\\">indirectly</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 459.485 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 461.6619 687.9422)\\\" x=\\\"0 2.664 7.112 8.936 13.384 15.608 20.056\\\">related</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.1698 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 488.3466 687.9422)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 495.0185 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 497.1954 687.9422)\\\" x=\\\"0 4 8.448 12.896\\\">your</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.7579 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 514.9348 687.9422)\\\" x=\\\"0 4.448 8.896 13.344 15.168 16.992 20.992 25.44 27.664 29.488 33.936\\\">application</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.3254 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 555.5023 687.9422)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 678.8875)\\\" x=\\\"0 4.448 8.896 11.56 16.008 20.456 27.12 31.568 36.016 38.24\\\">agreements</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 252.0961 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 254.4013 678.8875)\\\" x=\\\"0 5.776 7.6 9.824\\\">with</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 268.6747 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 270.9799 678.8875)\\\" x=\\\"0 4.448 8.448\\\">us.</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.6518 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 283.957 678.8875)\\\" x=\\\"0 4.888 9.336 11.16\\\">This</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.1172 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 301.4224 678.8875)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44\\\">includes</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 330.8677 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 333.1729 678.8875)\\\" x=\\\"0 4 5.824 10.272 12.096 18.76\\\">claims</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.9346 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 358.2398 678.8875)\\\" x=\\\"0 2.664 7.112 8.936 13.384 15.608 20.056\\\">related</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 382.7477 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 385.0529 678.8875)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 391.7247 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 394.0299 678.8875)\\\" x=\\\"0 1.824 6.272 8.496 12.944 15.608 22.272 26.72 28.944 30.768 35.216\\\">information</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 433.6979 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 436.0031 678.8875)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 448.9016 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 451.2068 678.8875)\\\" x=\\\"0 4.448 7.112 11.56 15.56 17.384 21.832 26.28 30.28 32.104\\\">previously</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 487.3161 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 489.6213 678.8875)\\\" x=\\\"0 4.448 8.896 12.896\\\">gave</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 506.969 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 509.2742 678.8875)\\\" x=\\\"0 4.448 8.448\\\">us.</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 519.9461 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 522.2513 678.8875)\\\" x=\\\"0 2.224\\\">It</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.6966 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 529.0018 678.8875)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44\\\">includes</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 558.4471 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 560.7523 678.8875)\\\" x=\\\"0 4.448 6.272\\\">all</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 669.8328)\\\" x=\\\"0 4.448 8.896 12.896\\\">past</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 224.9711 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 227.1634 669.8328)\\\" x=\\\"0 4.448 8.896 11.56 16.008 20.456 27.12 31.568 36.016 38.24 42.24\\\">agreements.</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 271.6321 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 273.8245 669.8328)\\\" x=\\\"0 2.224\\\">It</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 278.2698 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 280.4621 669.8328)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44 29.44\\\">includes,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.13 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 314.3223 669.8328)\\\" x=\\\"0 4.448\\\">as</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 322.7716 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 324.9639 669.8328)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 340.0772 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 342.2695 669.8328)\\\" x=\\\"0 4.448\\\">be</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.1679 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 353.3602 669.8328)\\\" x=\\\"0 4.448 8.896 13.344 15.168 16.992 20.992 25.44 29.888 31.712 36.16\\\">applicable,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 391.7508 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 393.9431 669.8328)\\\" x=\\\"0 4.448 8.896\\\">any</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 406.8416 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 409.0339 669.8328)\\\" x=\\\"0 4.448 8.896 13.344 15.168 17.392 19.216 23.664 28.112 32.56\\\">additional</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 443.4245 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 445.6168 669.8328)\\\" x=\\\"0 4.448 8.896 11.56 13.384 17.832 22.28 26.28\\\">periods,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.1246 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 476.3169 669.8328)\\\" x=\\\"0 4.448 8.448 10.672 15.12 19.568 23.568 25.392 29.84 34.288 38.288\\\">extensions,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 516.8326 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 519.0249 669.8328)\\\" x=\\\"0 2.664 7.112 11.56 16.008 21.784 26.232 28.056 32.056\\\">renewals,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.31 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 555.5023 669.8328)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 660.7781)\\\" x=\\\"0 4.448 6.272 10.72 15.168 19.168\\\">plans.</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.2445 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 233.5225 660.7781)\\\" x=\\\"0 2.224\\\">It</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 237.9678 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 240.2458 660.7781)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44\\\">includes</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 269.6911 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 271.9691 660.7781)\\\" x=\\\"0 4 5.824 10.272 12.096 18.76\\\">claims</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 294.7308 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 297.0088 660.7781)\\\" x=\\\"0 2.664 7.112 8.936 13.384 15.608 20.056\\\">related</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 321.5167 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 323.7946 660.7781)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 330.4665 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 332.7445 660.7781)\\\" x=\\\"0 4.448 8.896 15.56 20.008 24.456 28.904\\\">damaged</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 366.1039 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 368.3819 660.7781)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456 23.12 25.344 29.344\\\">property,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 399.9522 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 402.2302 660.7781)\\\" x=\\\"0 4.448 8.896 12.896 17.344 21.792 24.016\\\">buyout,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 428.4724 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 430.7504 660.7781)\\\" x=\\\"0 2.664 7.112 8.936 13.384 17.384 19.608 24.056 26.28 30.728 37.392 41.84 46.288 48.512\\\">r* D E M O *t,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 481.4887 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 483.7667 660.7781)\\\" x=\\\"0 1.824 6.272 10.272 14.272\\\">loss,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 500.2627 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 502.5408 660.7781)\\\" x=\\\"0 4.448 8.896 15.56 20.008 24.456 28.904\\\">damage,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 533.6736 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 535.9516 660.7781)\\\" x=\\\"0 5.776 10.224 12.888 15.552 20 24.448 26.672 30.672\\\">warranty,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 651.7234)\\\" x=\\\"0 6.664 11.112 12.936 17.384 19.608 24.056 28.504 32.952 37.4 41.4 45.848\\\">maintenance,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.9281 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 260.595 651.7234)\\\" x=\\\"0 4 8.448 10.272 12.096 16.544 20.544 22.768 24.592 29.04 33.488\\\">collection,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 296.3099 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 298.9768 651.7234)\\\" x=\\\"0 4.448 8.896 12.896 16.896 21.344 25.344 29.344 31.168 35.616 40.064\\\">possession,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 341.2697 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 343.9366 651.7234)\\\" x=\\\"0 4.448 7.112 8.936 12.936 17.384 21.384 25.384\\\">privacy,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.546 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 374.2129 651.7234)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 387.5606 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 390.2275 651.7234)\\\" x=\\\"0 4 8.448 12.448 14.672 19.12 25.784 30.232\\\">customer</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 423.1259 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 425.7928 651.7234)\\\" x=\\\"0 1.824 6.272 8.496 12.944 15.608 22.272 26.72 28.944 30.768 35.216 39.664\\\">information.</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.6834 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 470.3503 651.7234)\\\" x=\\\"0 2.224\\\">It</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.7957 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 477.4626 651.7234)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44\\\">includes</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 506.9079 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 509.5748 651.7234)\\\" x=\\\"0 4 5.824 10.272 12.096 18.76\\\">claims</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 532.3365 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 535.0034 651.7234)\\\" x=\\\"0 2.664 7.112 8.936 13.384 15.608 20.056\\\">related</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.5112 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 562.1781 651.7234)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 642.6688)\\\" x=\\\"0 4 8.448 10.672 12.896 14.72 19.168\\\">setting</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.4672 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 236.1411 642.6688)\\\" x=\\\"0 4.448 8.448 10.272 14.72\\\">aside</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 255.313 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 257.987 642.6688)\\\" x=\\\"0 2.224 6.672 8.496\\\">this</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 270.4831 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 273.157 642.6688)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496 24.944\\\">Clause.</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 300.3289 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 303.0029 642.6688)\\\" x=\\\"0 2.224\\\">It</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 307.4482 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 310.1221 642.6688)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44\\\">includes</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 339.5674 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 342.2414 642.6688)\\\" x=\\\"0 4 5.824 10.272 12.096 18.76\\\">claims</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 365.0031 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 367.6771 642.6688)\\\" x=\\\"0 4.448 8.896 13.344 17.792\\\">about</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 387.6966 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 390.3706 642.6688)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 401.4917 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 404.1656 642.6688)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496 24.944 26.472\\\">Clause&apos;s</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.6422 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 437.3161 642.6688)\\\" x=\\\"0 4 8.448 10.272 12.096 16.544 18.368 20.592\\\">validity</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 461.9099 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 464.5838 642.6688)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 477.9315 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 480.6055 642.6688)\\\" x=\\\"0 4 8 12.448 16.896 21.344\\\">scope.</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 504.1758 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 506.8497 642.6688)\\\" x=\\\"0 2.224\\\">It</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 511.295 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 513.969 642.6688)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44\\\">includes</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 543.4143 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 546.0883 642.6688)\\\" x=\\\"0 4 5.824 10.272 12.096 18.76\\\">claims</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 633.6141)\\\" x=\\\"0 4.448 8.896 13.344 17.792 20.016 22.144 27.92 32.368 36.816 39.04 43.488 47.936 50.6 52.728 54.952 59.4 61.528 65.976 68.64 73.088 74.912 77.136 79.8 84.248 86.472 90.92\\\">about whether to arbitrate.</text></g><clipPath id=\\\"clip4-13\\\"><path d=\\\"M 35 578 L 130 578 L 130 631 L 35 631 L 35 578 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-13)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 630.9344 L 129.35 630.9344 L 129.35 578.6609 L 35.45 578.6609 L 35.45 630.9344 z \\\"/><path clip-path=\\\"url(#clip4-13)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 628.9344 L 125.25 628.9344 L 125.25 619.8797 L 39.55 619.8797 L 39.55 628.9344 z \\\"/><path clip-path=\\\"url(#clip4-13)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 41.1227 628.9344 L 124.1227 628.9344 L 124.1227 618.9344 L 41.1227 618.9344 L 41.1227 628.9344 z \\\"/><g clip-path=\\\"url(#clip4-13)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 41.1227 621.5594)\\\" x=\\\"0 5.336 8 12.448 14.576 18.576 23.024 27.472 29.6 35.376 39.824 41.648 45.648 47.472 51.92 56.368 58.496 61.16 62.984 67.432 71.88 74.104 78.104\\\">Are you waiving rights?</text></g><clipPath id=\\\"clip4-14\\\"><path d=\\\"M 129 578 L 206 578 L 206 631 L 129 631 L 129 578 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-14)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 159.5461 621.5594)\\\" x=\\\"0 5.336 9.784 13.784\\\">Yes.</text></g><clipPath id=\\\"clip4-15\\\"><path d=\\\"M 205 578 L 573 578 L 573 631 L 205 631 L 205 578 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-15)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 621.5594)\\\" x=\\\"0 5.336 9.784 14.232\\\">You </text></g><g clip-path=\\\"url(#clip4-15)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 225.85 621.5594)\\\" x=\\\"0 5.776 10.224 12.048 16.048\\\">waive</text></g><path clip-path=\\\"url(#clip4-15)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 225.85 620.213 L 225.85 620.213 L 245.85 620.213 L 246.1833 620.213 L 246.1833 619.5464 L 245.85 619.5464 L 225.85 619.5464 L 225.5167 619.5464 L 225.5167 620.213 z \\\"/><g clip-path=\\\"url(#clip4-15)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.85 621.5594)\\\" x=\\\"0 2.128 6.128 10.576 15.024 17.688 19.816 22.48 24.304 28.752 33.2 35.424 39.424 41.552 43.776 48.224\\\"> your rights to:</text></g><g clip-path=\\\"url(#clip4-15)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 611.5047)\\\" x=\\\"0 4.448 6.672 8.8 14.576 19.024 23.024 27.472 29.6 31.424 35.872 38.536 40.36 44.808 48.808 50.936 54.936 59.384 61.208 65.208 69.656 71.784 77.56 79.384 83.384 87.832 92.28 94.504 98.952 102.952\\\">1. Have juries solve Disputes.</text></g><g clip-path=\\\"url(#clip4-15)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 601.45)\\\" x=\\\"0 4.448 6.672 8.8 14.576 19.024 23.024 27.472 29.6 33.6 38.048 42.496 45.16 47.384 51.384 53.608 55.736 60.184 62.408 66.856 71.304 73.968 76.096 78.32 82.768 87.216 91.664 93.792 97.792 104.456 108.904 110.728 112.552 115.216 119.216 121.04 125.488 127.312 133.976 137.976 140.104 144.104 148.552 153 155.664 157.888 161.888 164.112 166.24 170.24 174.688 176.512 180.512 184.96 187.088 192.864 194.688 198.688 203.136 207.584 209.808 214.256 218.256\\\">2. Have courts, other than small-claims courts, solve Disputes.</text></g><g clip-path=\\\"url(#clip4-15)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 591.3953)\\\" x=\\\"0 4.448 6.672 8.8 14.136 18.584 21.248 25.248 29.696 31.824 36.272 40.272 42.4 46.848 48.976 53.424 56.088 57.912 61.912 66.36 68.584 73.032 75.16 79.608 81.832 84.056 88.504 91.168 95.616 100.064 104.064 106.192 110.64 115.088 119.536 123.984 126.648 131.096 132.92 135.048 139.496 142.16 144.288 146.112 150.56 152.688 157.136 159.264 161.928 166.376 170.824 173.488 177.936 181.936 186.384 190.832 193.056 197.504 199.728 201.552 205.552 210 212.128 216.128 220.576 225.024 229.472 233.472 235.296 237.52 241.52\\\">3. Serve as a private attorney general or in a* D E M O *tive capacity.</text></g><g clip-path=\\\"url(#clip4-15)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 581.3406)\\\" x=\\\"0 4.448 6.672 8.8 14.136 18.584 20.712 22.536 26.984 29.112 33.56 35.688 39.688 41.512 45.96 49.96 53.96 56.088 60.536 64.536 66.76 68.584 73.032 77.48\\\">4. Be in a class action.</text></g><clipPath id=\\\"clip4-16\\\"><path d=\\\"M 35 530 L 130 530 L 130 579 L 35 579 L 35 530 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-16)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 578.6609 L 129.35 578.6609 L 129.35 530.3875 L 35.45 530.3875 L 35.45 578.6609 z \\\"/><path clip-path=\\\"url(#clip4-16)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 576.6609 L 125.25 576.6609 L 125.25 558.5516 L 39.55 558.5516 L 39.55 576.6609 z \\\"/><path clip-path=\\\"url(#clip4-16)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 44.0152 576.6609 L 121.0152 576.6609 L 121.0152 566.6609 L 44.0152 566.6609 L 44.0152 576.6609 z \\\"/><g clip-path=\\\"url(#clip4-16)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 44.0152 569.2859)\\\" x=\\\"0 5.336 8 12.448 14.576 18.576 23.024 27.472 29.6 35.376 39.824 41.648 45.648 47.472 51.92 56.368 58.496 62.496 64.32 68.768 72.768\\\">Are you waiving class</text></g><path clip-path=\\\"url(#clip4-16)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 58.6109 567.6063 L 106.6109 567.6063 L 106.6109 557.6063 L 58.6109 557.6063 L 58.6109 567.6063 z \\\"/><g clip-path=\\\"url(#clip4-16)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 58.6109 560.2312)\\\" x=\\\"0 4.448 8.448 10.672 12.496 16.944 21.392 23.52 26.184 28.008 32.456 36.904 39.128 43.128\\\">action rights?</text></g><clipPath id=\\\"clip4-17\\\"><path d=\\\"M 129 530 L 206 530 L 206 579 L 129 579 L 129 530 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-17)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 159.5461 569.2859)\\\" x=\\\"0 5.336 9.784 13.784\\\">Yes.</text></g><clipPath id=\\\"clip4-18\\\"><path d=\\\"M 205 530 L 573 530 L 573 579 L 205 579 L 205 530 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 569.2859)\\\" x=\\\"0 5.7774 12 17.7774 23.5547 28.4414\\\">COURTS</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 243.6273 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 245.7523 569.2859)\\\" x=\\\"0 5.3359 11.1133\\\">AND</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.643 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 264.768 569.2859)\\\" x=\\\"0 5.3359 11.1133 16.4492 18.6719 23.5586 28.8945 34.6719\\\">ARBITERS</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 304.7758 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 306.9008 569.2859)\\\" x=\\\"0\\\">W</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 306.9008 567.9396 L 306.9008 567.9396 L 314.9008 567.9396 L 315.2341 567.9396 L 315.2341 567.2729 L 314.9008 567.2729 L 306.9008 567.2729 L 306.5674 567.2729 L 306.5674 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 314.4515 569.2859)\\\" x=\\\"0\\\">O</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 314.4515 567.9396 L 314.4515 567.9396 L 320.4515 567.9396 L 320.7849 567.9396 L 320.7849 567.2729 L 320.4515 567.2729 L 314.4515 567.2729 L 314.1182 567.2729 L 314.1182 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 320.6742 569.2859)\\\" x=\\\"0\\\">N</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 320.6742 567.9396 L 320.6742 567.9396 L 326.6742 567.9396 L 327.0075 567.9396 L 327.0075 567.2729 L 326.6742 567.2729 L 320.6742 567.2729 L 320.3409 567.2729 L 320.3409 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 326.4515 569.2859)\\\" x=\\\"0\\\">&apos;</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 326.4515 567.9396 L 326.4515 567.9396 L 328.4515 567.9396 L 328.7849 567.9396 L 328.7849 567.2729 L 328.4515 567.2729 L 326.4515 567.2729 L 326.1182 567.2729 L 326.1182 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 327.9789 569.2859)\\\" x=\\\"0\\\">T</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 327.9789 567.9396 L 327.9789 567.9396 L 332.9789 567.9396 L 333.3122 567.9396 L 333.3122 567.2729 L 332.9789 567.2729 L 327.9789 567.2729 L 327.6456 567.2729 L 327.6456 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 332.8656 569.2859)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 332.8656 567.9396 L 332.8656 567.9396 L 334.8656 567.9396 L 335.1989 567.9396 L 335.1989 567.2729 L 334.8656 567.2729 L 332.8656 567.2729 L 332.5323 567.2729 L 332.5323 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 334.9906 569.2859)\\\" x=\\\"0\\\">A</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 334.9906 567.9396 L 334.9906 567.9396 L 339.9906 567.9396 L 340.3239 567.9396 L 340.3239 567.2729 L 339.9906 567.2729 L 334.9906 567.2729 L 334.6573 567.2729 L 334.6573 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 340.3265 569.2859)\\\" x=\\\"0\\\">L</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 340.3265 567.9396 L 340.3265 567.9396 L 344.3265 567.9396 L 344.6599 567.9396 L 344.6599 567.2729 L 344.3265 567.2729 L 340.3265 567.2729 L 339.9932 567.2729 L 339.9932 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 344.7758 569.2859)\\\" x=\\\"0\\\">L</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 344.7758 567.9396 L 344.7758 567.9396 L 348.7758 567.9396 L 349.1091 567.9396 L 349.1091 567.2729 L 348.7758 567.2729 L 344.7758 567.2729 L 344.4424 567.2729 L 344.4424 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 349.225 569.2859)\\\" x=\\\"0\\\">O</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 349.225 567.9396 L 349.225 567.9396 L 355.225 567.9396 L 355.5583 567.9396 L 355.5583 567.2729 L 355.225 567.2729 L 349.225 567.2729 L 348.8917 567.2729 L 348.8917 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 355.4477 569.2859)\\\" x=\\\"0\\\">W</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 355.4477 567.9396 L 355.4477 567.9396 L 363.4477 567.9396 L 363.781 567.9396 L 363.781 567.2729 L 363.4477 567.2729 L 355.4477 567.2729 L 355.1143 567.2729 L 355.1143 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 362.9984 569.2859)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 362.9984 567.9396 L 362.9984 567.9396 L 364.9984 567.9396 L 365.3318 567.9396 L 365.3318 567.2729 L 364.9984 567.2729 L 362.9984 567.2729 L 362.6651 567.2729 L 362.6651 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 365.1234 569.2859)\\\" x=\\\"0\\\">C</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 365.1234 567.9396 L 365.1234 567.9396 L 371.1234 567.9396 L 371.4568 567.9396 L 371.4568 567.2729 L 371.1234 567.2729 L 365.1234 567.2729 L 364.7901 567.2729 L 364.7901 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 370.9008 569.2859)\\\" x=\\\"0\\\">L</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 370.9008 567.9396 L 370.9008 567.9396 L 374.9008 567.9396 L 375.2341 567.9396 L 375.2341 567.2729 L 374.9008 567.2729 L 370.9008 567.2729 L 370.5674 567.2729 L 370.5674 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 375.35 569.2859)\\\" x=\\\"0\\\">A</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 375.35 567.9396 L 375.35 567.9396 L 380.35 567.9396 L 380.6833 567.9396 L 380.6833 567.2729 L 380.35 567.2729 L 375.35 567.2729 L 375.0167 567.2729 L 375.0167 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 380.6859 569.2859)\\\" x=\\\"0\\\">S</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 380.6859 567.9396 L 380.6859 567.9396 L 385.6859 567.9396 L 386.0193 567.9396 L 386.0193 567.2729 L 385.6859 567.2729 L 380.6859 567.2729 L 380.3526 567.2729 L 380.3526 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 386.0219 569.2859)\\\" x=\\\"0\\\">S</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 386.0219 567.9396 L 386.0219 567.9396 L 391.0219 567.9396 L 391.3552 567.9396 L 391.3552 567.2729 L 391.0219 567.2729 L 386.0219 567.2729 L 385.6885 567.2729 L 385.6885 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 391.3578 569.2859)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 391.3578 567.9396 L 391.3578 567.9396 L 393.3578 567.9396 L 393.6911 567.9396 L 393.6911 567.2729 L 393.3578 567.2729 L 391.3578 567.2729 L 391.0245 567.2729 L 391.0245 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 393.4828 569.2859)\\\" x=\\\"0\\\">A</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 393.4828 567.9396 L 393.4828 567.9396 L 398.4828 567.9396 L 398.8161 567.9396 L 398.8161 567.2729 L 398.4828 567.2729 L 393.4828 567.2729 L 393.1495 567.2729 L 393.1495 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 398.8187 569.2859)\\\" x=\\\"0\\\">C</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 398.8187 567.9396 L 398.8187 567.9396 L 404.8187 567.9396 L 405.1521 567.9396 L 405.1521 567.2729 L 404.8187 567.2729 L 398.8187 567.2729 L 398.4854 567.2729 L 398.4854 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 404.5961 569.2859)\\\" x=\\\"0\\\">T</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 404.5961 567.9396 L 404.5961 567.9396 L 409.5961 567.9396 L 409.9294 567.9396 L 409.9294 567.2729 L 409.5961 567.2729 L 404.5961 567.2729 L 404.2628 567.2729 L 404.2628 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 409.4828 569.2859)\\\" x=\\\"0\\\">I</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 409.4828 567.9396 L 409.4828 567.9396 L 411.4828 567.9396 L 411.8161 567.9396 L 411.8161 567.2729 L 411.4828 567.2729 L 409.4828 567.2729 L 409.1495 567.2729 L 409.1495 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 411.7055 569.2859)\\\" x=\\\"0\\\">O</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 411.7055 567.9396 L 411.7055 567.9396 L 417.7055 567.9396 L 418.0388 567.9396 L 418.0388 567.2729 L 417.7055 567.2729 L 411.7055 567.2729 L 411.3721 567.2729 L 411.3721 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 417.9281 569.2859)\\\" x=\\\"0\\\">N</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 417.9281 567.9396 L 417.9281 567.9396 L 423.9281 567.9396 L 424.2614 567.9396 L 424.2614 567.2729 L 423.9281 567.2729 L 417.9281 567.2729 L 417.5948 567.2729 L 417.5948 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 423.7055 569.2859)\\\" x=\\\"0\\\">S</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 423.7055 567.9396 L 423.7055 567.9396 L 428.7055 567.9396 L 429.0388 567.9396 L 429.0388 567.2729 L 428.7055 567.2729 L 423.7055 567.2729 L 423.3721 567.2729 L 423.3721 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 429.0414 569.2859)\\\" x=\\\"0\\\">.</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 429.0414 567.9396 L 429.0414 567.9396 L 431.0414 567.9396 L 431.3747 567.9396 L 431.3747 567.2729 L 431.0414 567.2729 L 429.0414 567.2729 L 428.7081 567.2729 L 428.7081 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 431.264 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 433.389 569.2859)\\\" x=\\\"0 5.3359 9.7852\\\">You</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.6234 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 449.7484 569.2859)\\\" x=\\\"0\\\">w</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 449.7484 567.9396 L 449.7484 567.9396 L 455.7484 567.9396 L 456.0818 567.9396 L 456.0818 567.2729 L 455.7484 567.2729 L 449.7484 567.2729 L 449.4151 567.2729 L 449.4151 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 455.5258 569.2859)\\\" x=\\\"0\\\">a</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 455.5258 567.9396 L 455.5258 567.9396 L 459.5258 567.9396 L 459.8591 567.9396 L 459.8591 567.2729 L 459.5258 567.2729 L 455.5258 567.2729 L 455.1924 567.2729 L 455.1924 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 459.975 569.2859)\\\" x=\\\"0\\\">i</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 459.975 567.9396 L 459.975 567.9396 L 461.975 567.9396 L 462.3083 567.9396 L 462.3083 567.2729 L 461.975 567.2729 L 459.975 567.2729 L 459.6417 567.2729 L 459.6417 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 461.7992 569.2859)\\\" x=\\\"0\\\">v</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 461.7992 567.9396 L 461.7992 567.9396 L 465.7992 567.9396 L 466.1325 567.9396 L 466.1325 567.2729 L 465.7992 567.2729 L 461.7992 567.2729 L 461.4659 567.2729 L 461.4659 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 465.7992 569.2859)\\\" x=\\\"0\\\">e</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 465.7992 567.9396 L 465.7992 567.9396 L 469.7992 567.9396 L 470.1325 567.9396 L 470.1325 567.2729 L 469.7992 567.2729 L 465.7992 567.2729 L 465.4659 567.2729 L 465.4659 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 470.2484 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 472.3734 569.2859)\\\" x=\\\"0 4 8.4492 12.8984\\\">your</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 487.9359 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 490.0609 569.2859)\\\" x=\\\"0 2.6641 4.4883 8.9375 13.3867 15.6094\\\">rights</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.6703 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 511.7953 569.2859)\\\" x=\\\"0 2.2227\\\">to</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 518.4672 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 520.5922 569.2859)\\\" x=\\\"0 4.4492\\\">be</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.4906 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 531.6156 569.2859)\\\" x=\\\"0 1.8242\\\">in</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 537.889 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 540.014 569.2859)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 544.4633 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 546.5883 569.2859)\\\" x=\\\"0\\\">c</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 546.5883 567.9396 L 546.5883 567.9396 L 550.5883 567.9396 L 550.9216 567.9396 L 550.9216 567.2729 L 550.5883 567.2729 L 546.5883 567.2729 L 546.2549 567.2729 L 546.2549 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 550.5883 569.2859)\\\" x=\\\"0\\\">l</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 550.5883 567.9396 L 550.5883 567.9396 L 552.5883 567.9396 L 552.9216 567.9396 L 552.9216 567.2729 L 552.5883 567.2729 L 550.5883 567.2729 L 550.2549 567.2729 L 550.2549 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 552.4125 569.2859)\\\" x=\\\"0\\\">a</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 552.4125 567.9396 L 552.4125 567.9396 L 556.4125 567.9396 L 556.7458 567.9396 L 556.7458 567.2729 L 556.4125 567.2729 L 552.4125 567.2729 L 552.0792 567.2729 L 552.0792 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 556.8617 569.2859)\\\" x=\\\"0\\\">s</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 556.8617 567.9396 L 556.8617 567.9396 L 560.8617 567.9396 L 561.1951 567.9396 L 561.1951 567.2729 L 560.8617 567.2729 L 556.8617 567.2729 L 556.5284 567.2729 L 556.5284 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 560.8617 569.2859)\\\" x=\\\"0\\\">s</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 560.8617 567.9396 L 560.8617 567.9396 L 564.8617 567.9396 L 565.1951 567.9396 L 565.1951 567.2729 L 564.8617 567.2729 L 560.8617 567.2729 L 560.5284 567.2729 L 560.5284 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 560.2312)\\\" x=\\\"0\\\">a</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 209.85 558.8849 L 209.85 558.8849 L 213.85 558.8849 L 214.1833 558.8849 L 214.1833 558.2182 L 213.85 558.2182 L 209.85 558.2182 L 209.5167 558.2182 L 209.5167 558.8849 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 214.2992 560.2312)\\\" x=\\\"0\\\">c</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 214.2992 558.8849 L 214.2992 558.8849 L 218.2992 558.8849 L 218.6325 558.8849 L 218.6325 558.2182 L 218.2992 558.2182 L 214.2992 558.2182 L 213.9659 558.2182 L 213.9659 558.8849 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 218.2992 560.2312)\\\" x=\\\"0\\\">t</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 218.2992 558.8849 L 218.2992 558.8849 L 220.2992 558.8849 L 220.6325 558.8849 L 220.6325 558.2182 L 220.2992 558.2182 L 218.2992 558.2182 L 217.9659 558.2182 L 217.9659 558.8849 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 220.5219 560.2312)\\\" x=\\\"0\\\">i</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 220.5219 558.8849 L 220.5219 558.8849 L 222.5219 558.8849 L 222.8552 558.8849 L 222.8552 558.2182 L 222.5219 558.2182 L 220.5219 558.2182 L 220.1885 558.2182 L 220.1885 558.8849 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 222.3461 560.2312)\\\" x=\\\"0\\\">o</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 222.3461 558.8849 L 222.3461 558.8849 L 226.3461 558.8849 L 226.6794 558.8849 L 226.6794 558.2182 L 226.3461 558.2182 L 222.3461 558.2182 L 222.0128 558.2182 L 222.0128 558.8849 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 226.7953 560.2312)\\\" x=\\\"0\\\">n</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 226.7953 558.8849 L 226.7953 558.8849 L 230.7953 558.8849 L 231.1286 558.8849 L 231.1286 558.2182 L 230.7953 558.2182 L 226.7953 558.2182 L 226.462 558.2182 L 226.462 558.8849 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 231.2445 560.2312)\\\" x=\\\"0\\\">,</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.4672 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 235.5922 560.2312)\\\" x=\\\"0 4.4492\\\">as</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 244.0414 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 246.1664 560.2312)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 250.6156 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 252.7406 560.2312)\\\" x=\\\"0 2.6641 7.1133 11.5625 14.2266 18.6758 22.6758 27.125 31.5742 33.7969 38.2461 40.4688 42.293 46.293\\\">representative</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 303.4828 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 305.6078 560.2312)\\\" x=\\\"0 4.4492 8.8984\\\">and</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 318.9555 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 321.0805 560.2312)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 325.5297 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 327.6547 560.2312)\\\" x=\\\"0 6.6641 11.1133 17.7773 22.2266 26.6758 29.3398\\\">member.</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.2172 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 361.3422 560.2312)\\\" x=\\\"0 6.2227 10.6719 12.4961\\\">Only</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 377.8383 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 379.9633 560.2312)\\\" x=\\\"0 1.8242 6.2734 10.7227 12.5469 16.5469 18.3711 22.8203 27.2695 31.7188\\\">individual</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 413.5062 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 415.6312 560.2312)\\\" x=\\\"0 4.4492 7.1133 11.5625 13.3867 15.6094 18.2734 22.7227 24.9453 26.7695 31.2188 35.668\\\">arbitration,</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 453.5219 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 455.6469 560.2312)\\\" x=\\\"0 4.4492\\\">or</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 462.7601 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 464.8851 560.2312)\\\" x=\\\"0 4 10.6641 15.1133 16.9375 18.7617 21.4258 25.4258 27.25 31.6992 33.5234 40.1875\\\">small-claims</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.0727 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 511.1977 560.2312)\\\" x=\\\"0 4 8.4492 12.8984 15.5625 17.7851 21.7851\\\">courts,</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 535.2055 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 537.3305 560.2312)\\\" x=\\\"0 5.7773 7.6016 9.4258\\\">will</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 551.1766)\\\" x=\\\"0 4 8.4492 10.2734 14.2734\\\">solve</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 228.5726 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 230.6976 551.1766)\\\" x=\\\"0 5.7773 7.6016 11.6016 16.0508 20.5 22.7227 27.1719 31.1719\\\">Disputes.</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 264.0922 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 266.2172 551.1766)\\\" x=\\\"0 5.3359 9.7852\\\">You</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.4515 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 282.5765 551.1766)\\\" x=\\\"0 5.7774 10.2266 12.0508 16.0508\\\">waive</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 303.0765 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 304.9015 551.1766)\\\" x=\\\"0 4 8.4492 12.8984\\\">your</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 320.464 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 322.289 551.1766)\\\" x=\\\"0 2.6641 4.4883 8.9375 13.3867\\\">right</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 337.8984 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 339.7234 551.1766)\\\" x=\\\"0 2.2227\\\">to</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 346.3953 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 348.2203 551.1766)\\\" x=\\\"0 4.4492 8.8984 12.8984\\\">have</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 365.568 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 367.393 551.1766)\\\" x=\\\"0 2.6641 7.1133 11.5625 14.2266 18.6758 22.6758 27.125 31.5742 33.7969 38.2461 40.4687 42.293 46.293\\\">representative</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 418.1351 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 419.9601 551.1766)\\\" x=\\\"0 4 5.8242 10.2734 12.0977 18.7617 22.7617\\\">claims.</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 444.9445 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 446.7695 551.1766)\\\" x=\\\"0 5.7774 10.2266 12.0508 16.5 20.5\\\">Unless</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 471.2695 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 473.0945 551.1766)\\\" x=\\\"0 2.6641 7.1133 11.1133 15.5625 18.2266 22.2266 26.6758\\\">reversed</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 504.2195 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 506.0445 551.1766)\\\" x=\\\"0 4.4492\\\">on</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 514.943 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 516.768 551.1766)\\\" x=\\\"0 4.4492 8.8984 13.3477 17.7969 22.2461 24.0703\\\">appeal,</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 543.0609 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 544.8859 551.1766)\\\" x=\\\"0 1.8242\\\">if</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 548.9328 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 550.7578 551.1766)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 542.1219)\\\" x=\\\"0 4 8.4492 12.8984 15.5625\\\">court</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 227.6351 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 229.4601 542.1219)\\\" x=\\\"0 1.8242 6.2734 10.2734 14.7227 16.5469 18.3711 22.8203 27.2695 29.4922 33.9414\\\">invalidates</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 267.4015 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 269.2265 542.1219)\\\" x=\\\"0 2.2227 6.6719 8.4961\\\">this</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.7226 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 283.5477 542.1219)\\\" x=\\\"0 5.7773 10.2266 12.0508 16.0508 20.5 23.1641\\\">waiver,</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.9344 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 310.7594 542.1219)\\\" x=\\\"0 2.2226 6.6719 11.1211\\\">then</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 326.3297 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 328.4547 542.1219)\\\" x=\\\"0 2.2227 6.6719\\\">the</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 339.5758 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 341.4008 542.1219)\\\" x=\\\"0 4.4492 8.8984 11.5625 16.0117 20.4609 27.125 31.5742 36.0234\\\">agreement</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 379.6469 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 381.4719 542.1219)\\\" x=\\\"0 2.2227\\\">to</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.1437 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 389.9687 542.1219)\\\" x=\\\"0 4.4492 7.1133 11.5625 13.3867 15.6094 18.2734 22.7227 24.9453\\\">arbitrate</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.3633 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 421.1883 542.1219)\\\" x=\\\"0 5.7774 7.6016 9.4258\\\">will</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 432.4383 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 434.2633 542.1219)\\\" x=\\\"0 4.4492\\\">be</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 443.1617 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 444.9867 542.1219)\\\" x=\\\"0 4 8.4492 10.2734 14.7227\\\">void,</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 461.932 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 463.757 542.1219)\\\" x=\\\"0 4.4492 8.8984\\\">and</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 477.1047 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 478.9297 542.1219)\\\" x=\\\"0 5.7773 7.6016 11.6016 16.0508 20.5 22.7227 27.1719\\\">Disputes</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 510.1016 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 511.9266 542.1219)\\\" x=\\\"0 5.7773 7.6016 9.4258\\\">will</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 523.1766 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 525.0016 542.1219)\\\" x=\\\"0 4.4492\\\">be</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 533.9 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 535.725 542.1219)\\\" x=\\\"0 2.6641 7.1133 11.1133 15.5625 17.3867 21.3867 25.8359\\\">resolved</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 533.0672)\\\" x=\\\"0 4.4492\\\">by</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 218.2992 533.0672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 220.1242 533.0672)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 224.5734 533.0672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 226.3984 533.0672)\\\" x=\\\"0 1.8242 6.2734 10.7227 15.1719 19.6211\\\">judge,</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 248.2422 533.0672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 250.0672 533.0672)\\\" x=\\\"0 4.4492 8.8984\\\">but</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 261.1883 533.0672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 263.0133 533.0672)\\\" x=\\\"0 4.4492 8.8984\\\">not</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 274.1344 533.0672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 275.9594 533.0672)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.4086 533.0672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 282.2336 533.0672)\\\" x=\\\"0 1.8242 6.2734 8.9375 12.9375\\\">jury.</text></g><clipPath id=\\\"clip4-19\\\"><path d=\\\"M 35 491 L 130 491 L 130 531 L 35 531 L 35 491 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-19)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 530.3875 L 129.35 530.3875 L 129.35 491.1688 L 35.45 491.1688 L 35.45 530.3875 z \\\"/><path clip-path=\\\"url(#clip4-19)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 528.3875 L 125.25 528.3875 L 125.25 519.3328 L 39.55 519.3328 L 39.55 528.3875 z \\\"/><path clip-path=\\\"url(#clip4-19)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 49.9664 528.3875 L 114.9664 528.3875 L 114.9664 518.3875 L 49.9664 518.3875 L 49.9664 528.3875 z \\\"/><g clip-path=\\\"url(#clip4-19)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 49.9664 521.0125)\\\" x=\\\"0 7.552 12 16.448 18.672 20.8 22.624 27.072 32.848 34.976 39.424 43.872 48.32 50.144 51.968 56.416 60.416\\\">What law applies?</text></g><clipPath id=\\\"clip4-20\\\"><path d=\\\"M 129 491 L 206 491 L 206 531 L 129 531 L 129 491 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-20)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.009 521.0125)\\\" x=\\\"0 4.888 9.336 13.784 15.912 20.8 25.248 29.696 34.144 36.808 41.256\\\">The Federal</text></g><g clip-path=\\\"url(#clip4-20)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 142.4308 511.9578)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 19.16 23.608 25.832 27.656 32.104 36.552 38.68 44.016 48.016\\\">Arbitration Act</text></g><g clip-path=\\\"url(#clip4-20)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 153.1555 502.9031)\\\" x=\\\"0 2.664 5.504 10.392 15.728 21.064 23.904 26.568\\\">(&quot;FAA&quot;).</text></g><clipPath id=\\\"clip4-21\\\"><path d=\\\"M 205 491 L 573 491 L 573 531 L 205 531 L 205 491 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 521.0125)\\\" x=\\\"0 4.888 9.336 11.16\\\">This</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.0101 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 228.9725 521.0125)\\\" x=\\\"0 2.224 4.888 9.336 13.784 17.784 22.232 26.232 28.456 30.28 34.728\\\">transaction</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 268.1522 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 272.1145 521.0125)\\\" x=\\\"0 1.824 6.272 10.272 14.72 16.544 20.544 24.992\\\">involves</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 301.1106 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 305.0729 521.0125)\\\" x=\\\"0 1.824 6.272 8.496 12.944 15.608 19.608 21.832 26.28 28.504\\\">interstate</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.026 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 341.9884 521.0125)\\\" x=\\\"0 4 8.448 15.112 21.776 26.224 28.888 32.888 37.336\\\">commerce.</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 381.5509 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 385.5132 521.0125)\\\" x=\\\"0 4.888 9.336 13.784 17.784\\\">Thus,</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 405.521 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 409.4834 521.0125)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 420.6045 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 424.5668 521.0125)\\\" x=\\\"0 4.888 10.224\\\">FAA</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 440.1254 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 444.0877 521.0125)\\\" x=\\\"0 4.448 8.896 12.896 17.344 20.008 24.456 28.456\\\">governs.</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.7713 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 478.7336 521.0125)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 483.179 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 487.1413 521.0125)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 491.5905 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 495.5528 521.0125)\\\" x=\\\"0 4 8.448 12.896 15.56\\\">court</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 513.338 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 517.3003 521.0125)\\\" x=\\\"0 2.224 4.048 8.496 12.944\\\">finds</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 534.2456 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 538.208 521.0125)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.3291 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 553.2914 521.0125)\\\" x=\\\"0 4.888 10.224\\\">FAA</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 511.9578)\\\" x=\\\"0 4.448 8.896 13.344 17.344 21.792 23.32\\\">doesn&apos;t</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 235.3969 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 237.5853 511.9578)\\\" x=\\\"0 4.448 8.896 13.344 15.168 19.168\\\">apply,</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 258.9798 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 261.1682 511.9578)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 274.5159 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 276.7043 511.9578)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 287.8254 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 290.0138 511.9578)\\\" x=\\\"0 2.224 4.048 8.496 12.944 14.768 19.216\\\">finding</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 313.6818 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 315.8702 511.9578)\\\" x=\\\"0 4 8.448 12.896 14.424\\\">can&apos;t</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 332.5186 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 334.7071 511.9578)\\\" x=\\\"0 4.448\\\">be</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 343.6055 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 345.7939 511.9578)\\\" x=\\\"0 4.448 8.896 13.344 17.792 22.24 24.064 28.512 32.96\\\">appealed,</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.9853 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 383.1737 511.9578)\\\" x=\\\"0 2.224 6.672 11.12\\\">then</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 398.7441 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 400.9325 511.9578)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 412.0536 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 414.242 511.9578)\\\" x=\\\"0 4 6.224 10.672 12.896\\\">state</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 431.5857 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 433.7742 511.9578)\\\" x=\\\"0 1.824 6.272\\\">law</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 445.825 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 448.0134 511.9578)\\\" x=\\\"0 5.776 10.224 14.672 17.336\\\">where</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 469.8024 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 471.9908 511.9578)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.8893 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 487.0777 511.9578)\\\" x=\\\"0 5.776 10.224 12.888\\\">were</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 504.4175 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 506.606 511.9578)\\\" x=\\\"0 5.776 10.224 14.672\\\">when</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 525.731 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 527.9194 511.9578)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 540.8178 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 543.0062 511.9578)\\\" x=\\\"0 4 5.824 10.272 14.72 19.168 23.616\\\">signed,</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 502.9031)\\\" x=\\\"0 4.448 8.896 12.896 17.344 20.008 24.456 28.456\\\">governs.</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 240.5336 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 243.9142 502.9031)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.6993 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 261.0799 502.9031)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 284.6893 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 288.0699 502.9031)\\\" x=\\\"0 6.664 11.112 15.112\\\">must</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 305.4058 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 308.7864 502.9031)\\\" x=\\\"0 4.448 8.896 13.344 15.168\\\">apply</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 327.9582 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 331.3388 502.9031)\\\" x=\\\"0 4 8.448 12.896 16.896 19.12 23.568 28.016 30.24 32.064 36.064\\\">substantive</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.8545 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 375.235 502.9031)\\\" x=\\\"0 1.824 6.272\\\">law</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 387.2858 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 390.6664 502.9031)\\\" x=\\\"0 4 8.448 12.896 16.896 18.72 22.72 24.944 29.392 33.84\\\">consistent</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 426.7328 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 430.1134 502.9031)\\\" x=\\\"0 5.776 7.6 9.824\\\">with</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 444.3868 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 447.7674 502.9031)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 458.8885 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 462.2691 502.9031)\\\" x=\\\"0 4.888 10.224 15.56\\\">FAA.</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 480.0503 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 483.4309 502.9031)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 497.2161 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 500.5966 502.9031)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 524.206 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 527.5866 502.9031)\\\" x=\\\"0 6.664 11.112 15.112\\\">must</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 544.9225 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 548.3031 502.9031)\\\" x=\\\"0 2.224 6.672 8.496 10.32 14.768\\\">follow</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 493.8484)\\\" x=\\\"0 4 6.224 10.672 12.896 17.344 19.568 24.016 28.016 30.144 34.592 36.816 38.944 40.768 42.592 49.256 51.08 53.304 57.752 59.976 61.8 66.248 70.696 72.824 77.272 81.72 86.168 88.296 92.744 95.408 97.232 101.232 103.056 104.88 109.328 113.776 118.224 120.352 124.352 126.176 130.624 132.448 139.112 143.112\\\">statutes of limitation and privilege claims.</text></g><clipPath id=\\\"clip4-22\\\"><path d=\\\"M 35 433 L 130 433 L 130 492 L 35 492 L 35 433 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-22)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 491.1688 L 129.35 491.1688 L 129.35 433.8406 L 35.45 433.8406 L 35.45 491.1688 z \\\"/><path clip-path=\\\"url(#clip4-22)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 489.1688 L 125.25 489.1688 L 125.25 471.0594 L 39.55 471.0594 L 39.55 489.1688 z \\\"/><path clip-path=\\\"url(#clip4-22)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 45.443 489.1688 L 119.443 489.1688 L 119.443 479.1688 L 45.443 479.1688 L 45.443 489.1688 z \\\"/><g clip-path=\\\"url(#clip4-22)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 45.443 481.7937)\\\" x=\\\"0 5.776 10.224 14.672 16.8 19.024 23.472 27.92 30.048 34.496 38.944 41.608 43.832 45.656 50.104 54.104 56.232 58.456 61.12 65.12 67.248 69.472\\\">Can the * D E M O * to</text></g><path clip-path=\\\"url(#clip4-22)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 46.6363 480.1141 L 118.6363 480.1141 L 118.6363 470.1141 L 46.6363 470.1141 L 46.6363 480.1141 z \\\"/><g clip-path=\\\"url(#clip4-22)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 46.6363 472.7391)\\\" x=\\\"0 4 8.448 10.272 14.272 18.72 20.848 26.624 28.448 32.448 36.896 41.344 43.568 48.016 52.016 54.144 56.368 58.192 60.856 64.856 67.08\\\">solve Disputes first?</text></g><clipPath id=\\\"clip4-23\\\"><path d=\\\"M 129 433 L 206 433 L 206 492 L 129 492 L 129 433 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-23)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 159.5461 481.7937)\\\" x=\\\"0 5.336 9.784 13.784\\\">Yes.</text></g><clipPath id=\\\"clip4-24\\\"><path d=\\\"M 205 433 L 573 433 L 573 492 L 205 492 L 205 433 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 481.7937)\\\" x=\\\"0 7.552\\\">We</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 221.85 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 224.092 481.7937)\\\" x=\\\"0 4 8.448\\\">can</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 236.9904 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 239.2324 481.7937)\\\" x=\\\"0 2.224 4.888\\\">try</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 248.1191 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 250.3611 481.7937)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.033 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 259.275 481.7937)\\\" x=\\\"0 4 8.448 10.272 14.272\\\">solve</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 277.9976 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 280.2396 481.7937)\\\" x=\\\"0 5.776 7.6 11.6 16.048 20.496 22.72 27.168\\\">Disputes</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 311.4115 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 313.6535 481.7937)\\\" x=\\\"0 1.824\\\">if</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 317.7004 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 319.9424 481.7937)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 332.8408 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 335.0828 481.7937)\\\" x=\\\"0 4 8.448 10.272\\\">call</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 347.1805 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 349.4224 481.7937)\\\" x=\\\"0 4.448\\\">us</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 357.8717 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 360.1137 481.7937)\\\" x=\\\"0 4.448\\\">at</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 366.7855 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 369.0275 481.7937)\\\" x=\\\"0 2.664 7.112 11.56 16.008\\\">(100)</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 387.7033 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 389.9453 481.7937)\\\" x=\\\"0 4.448 8.896 13.344 16.008 20.456 24.904 29.352 33.8\\\">000-0006.</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 425.9766 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 428.2185 481.7937)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 432.6639 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 434.9058 481.7937)\\\" x=\\\"0 2.224 6.672 8.496\\\">this</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.4019 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 449.6439 481.7937)\\\" x=\\\"0 4.448 8.896 13.344 17.344 21.792 23.32\\\">doesn&apos;t</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 475.1908 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 477.4328 481.7937)\\\" x=\\\"0 4 8.448 10.272 14.272\\\">solve</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 496.1555 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 498.3974 481.7937)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.5185 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 511.7605 481.7937)\\\" x=\\\"0 5.776 7.6 11.6 16.048 20.496 22.72 27.168\\\">Dispute,</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 541.1551 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 543.3971 481.7937)\\\" x=\\\"0 6.664 11.112 12.936\\\">mail</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 558.1588 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 560.4008 481.7937)\\\" x=\\\"0 4.448\\\">us</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 472.7391)\\\" x=\\\"0 5.776 8.44 10.264 12.488 14.712 19.16\\\">written</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.4594 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 235.6405 472.7391)\\\" x=\\\"0 4.448 8.896 11.12 12.944 16.944 21.392\\\">notice,</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.2577 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 261.4388 472.7391)\\\" x=\\\"0 5.776 7.6 9.824 14.272 16.096\\\">within</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.9857 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 284.1668 472.7391)\\\" x=\\\"0 4.448 8.896\\\">100</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 297.5145 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 299.6956 472.7391)\\\" x=\\\"0 4.448 8.896 12.896\\\">days</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 316.594 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 318.7752 472.7391)\\\" x=\\\"0 4.448\\\">of</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 325.447 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 327.6282 472.7391)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.7493 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 340.9304 472.7391)\\\" x=\\\"0 5.776 7.6 11.6 16.048 20.496 22.72\\\">Dispute</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 368.1023 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 370.2834 472.7391)\\\" x=\\\"0 4.448 8.896 11.12 15.568\\\">date.</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.0763 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 390.2575 472.7391)\\\" x=\\\"0 2.224\\\">In</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 396.9293 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 399.1105 472.7391)\\\" x=\\\"0 4 8.448 12.896\\\">your</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 414.673 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 416.8541 472.7391)\\\" x=\\\"0 4.448 8.896 11.12 12.944 16.944 21.392\\\">notice,</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 440.4713 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 442.6524 472.7391)\\\" x=\\\"0 2.224 6.672 8.496\\\">tell</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 452.9727 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 455.1539 472.7391)\\\" x=\\\"0 4.448\\\">us</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 463.6031 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 465.7842 472.7391)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 476.9053 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 479.0864 472.7391)\\\" x=\\\"0 4.448 8.896 11.12 15.568 17.392 19.216\\\">details</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 502.3052 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 504.4863 472.7391)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 517.834 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 520.0151 472.7391)\\\" x=\\\"0 4.448 8.896\\\">how</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 534.6909 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 536.872 472.7391)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.7704 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 551.9515 472.7391)\\\" x=\\\"0 5.776 10.224 14.672\\\">want</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 463.6844)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 216.5219 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 219.4635 463.6844)\\\" x=\\\"0 4 8.448 10.272 14.272\\\">solve</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.1861 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 241.1277 463.6844)\\\" x=\\\"0 1.824 4.048\\\">it.</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.3973 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 250.3389 463.6844)\\\" x=\\\"0 7.552\\\">We</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.3389 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 265.2805 463.6844)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.5305 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 279.4721 463.6844)\\\" x=\\\"0 2.224 4.888\\\">try</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 288.3588 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 291.3004 463.6844)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 297.9723 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 300.9139 463.6844)\\\" x=\\\"0 4 8.448 10.272 14.272\\\">solve</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.6366 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 322.5782 463.6844)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 333.6993 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 336.6409 463.6844)\\\" x=\\\"0 5.776 7.6 11.6 16.048 20.496 22.72 27.168\\\">Dispute.</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 366.0354 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 368.977 463.6844)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 373.4224 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 376.364 463.6844)\\\" x=\\\"0 5.776\\\">we</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 386.5905 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 389.5321 463.6844)\\\" x=\\\"0 6.664 11.112 15.112\\\">make</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 409.0947 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 412.0363 463.6844)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 416.4855 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 419.4271 463.6844)\\\" x=\\\"0 5.776 8.44 10.264 12.488 14.712 19.16\\\">written</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 443.0365 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 445.9781 463.6844)\\\" x=\\\"0 4.448 6.672 8.896 13.344\\\">offer</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 461.9859 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 464.9275 463.6844)\\\" x=\\\"0 2.664 5.504 10.84 15.288 17.512 19.736 21.56 26.008 32.672 37.12 41.568\\\">(&quot;Settlement</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 508.7205 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 511.6621 463.6844)\\\" x=\\\"0 6.224 8.448 10.672 15.12 17.784 20.624 23.288\\\">Offer&quot;),</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 537.1699 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 540.1115 463.6844)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.0099 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 555.9515 463.6844)\\\" x=\\\"0 4 8.448\\\">can</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 454.6297)\\\" x=\\\"0 2.664 7.112 8.936 13.384 17.384\\\">reject</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 229.4594 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 233.7138 454.6297)\\\" x=\\\"0 1.824\\\">it</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 237.7606 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 242.015 454.6297)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 255.3627 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 259.6171 454.6297)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 29.392\\\">arbitrate.</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.2343 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 295.4887 454.6297)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.934 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 304.1884 454.6297)\\\" x=\\\"0 5.776\\\">we</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 314.4149 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 318.6693 454.6297)\\\" x=\\\"0 4.448 8.896 13.344 14.872\\\">don&apos;t</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.767 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 340.0214 454.6297)\\\" x=\\\"0 4 8.448 10.272 14.272\\\">solve</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 358.744 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 362.9984 454.6297)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 374.1195 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 378.3739 454.6297)\\\" x=\\\"0 5.776 7.6 11.6 16.048 20.496 22.72 27.168\\\">Dispute,</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 407.7684 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 412.0228 454.6297)\\\" x=\\\"0 4.448 6.272 8.496 12.944 17.392\\\">either</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 432.0814 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 436.3358 454.6297)\\\" x=\\\"0 4.448 8.896 11.56 13.784\\\">party</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.121 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 458.3754 454.6297)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 473.4887 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 477.7431 454.6297)\\\" x=\\\"0 4 6.224 10.672 13.336\\\">start</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 493.3016 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 497.556 454.6297)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 26.768 31.216 35.664\\\">arbitration.</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 535.4467 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 539.7011 454.6297)\\\" x=\\\"0 4.888\\\">To</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.037 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 553.2914 454.6297)\\\" x=\\\"0 4 6.224 10.672 13.336\\\">start</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 445.575)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 26.768 31.216 35.664\\\">arbitration,</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.7406 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 250.0233 445.575)\\\" x=\\\"0 4 8.448 12.896 15.12 19.568 23.568\\\">contact</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.8162 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 278.0989 445.575)\\\" x=\\\"0 4.448\\\">an</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 286.9973 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 289.28 445.575)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.8893 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 315.172 445.575)\\\" x=\\\"0 4.448\\\">or</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 322.2853 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 324.5679 445.575)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 26.768 31.216\\\">arbitration</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 360.2359 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 362.5185 445.575)\\\" x=\\\"0 4.448 7.112 11.56 16.008\\\">group</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 382.9795 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 385.2621 445.575)\\\" x=\\\"0 1.824 3.648 7.648 9.872 14.32 18.768\\\">listed.</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 406.2543 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 408.5369 445.575)\\\" x=\\\"0 5.776\\\">No</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 418.7635 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 421.0461 445.575)\\\" x=\\\"0 4.448 8.896 11.56 13.784\\\">party</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 438.8313 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 441.1139 445.575)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 452.3639 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 454.6466 445.575)\\\" x=\\\"0 4.448 6.272 10.272 14.272 16.096 20.544 24.544\\\">disclose</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 483.6427 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 485.9253 445.575)\\\" x=\\\"0 4 8.448 10.672 12.896 14.72 19.168 25.832 30.28 34.728\\\">settlement</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 522.8785 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 525.1611 445.575)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456 24.456 28.904 30.728\\\">proposals</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.8955 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 562.1781 445.575)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 436.5203)\\\" x=\\\"0 2.224 6.672 11.12 13.248 18.584 21.248 25.696 27.52 29.744 34.192 36.856 38.984 43.432 47.88 50.544 52.368 56.816 61.264 63.392 67.84 70.504 74.952 76.776 79 81.664 86.112 88.336 90.16 94.608 99.056\\\">the Arbiter during arbitration.</text></g><clipPath id=\\\"clip4-25\\\"><path d=\\\"M 35 412 L 130 412 L 130 434 L 35 434 L 35 412 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-25)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 433.8406 L 129.35 433.8406 L 129.35 412.7313 L 35.45 412.7313 L 35.45 433.8406 z \\\"/><path clip-path=\\\"url(#clip4-25)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 431.8406 L 125.25 431.8406 L 125.25 413.7313 L 39.55 413.7313 L 39.55 431.8406 z \\\"/><path clip-path=\\\"url(#clip4-25)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 40.0543 431.8406 L 127.0543 431.8406 L 127.0543 421.8406 L 40.0543 421.8406 L 40.0543 431.8406 z \\\"/><g clip-path=\\\"url(#clip4-25)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.0543 424.4656)\\\" x=\\\"0 5.776 10.224 16 18.128 22.128 26.576 31.024 35.472 37.296 41.744 43.872 47.872 52.32 56.768 58.896 62.896 67.344 71.792 74.016 78.464 82.464\\\">How should you contact</text></g><path clip-path=\\\"url(#clip4-25)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 75.9508 422.7859 L 88.9508 422.7859 L 88.9508 412.7859 L 75.9508 412.7859 L 75.9508 422.7859 z \\\"/><g clip-path=\\\"url(#clip4-25)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 75.9508 415.4109)\\\" x=\\\"0 4.448 8.448\\\">us?</text></g><clipPath id=\\\"clip4-26\\\"><path d=\\\"M 129 412 L 206 412 L 206 434 L 129 434 L 129 412 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-26)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 153.3273 424.4656)\\\" x=\\\"0 5.336 9.336 11.464 18.128 22.576 24.4 26.224\\\">By mail.</text></g><clipPath id=\\\"clip4-27\\\"><path d=\\\"M 205 412 L 573 412 L 573 434 L 205 434 L 205 412 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 424.4656)\\\" x=\\\"0 5.336 9.784 14.232\\\">Send</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 228.5336 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 231.2172 424.4656)\\\" x=\\\"0 6.664 11.112 12.936\\\">mail</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.9789 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 248.6625 424.4656)\\\" x=\\\"0 2.224 6.672\\\">to:</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.557 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 260.2406 424.4656)\\\" x=\\\"0 5.336 9.784 14.232\\\">Snap</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 278.9242 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 281.6078 424.4656)\\\" x=\\\"0 5.776 10.664\\\">RTO</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 298.4945 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 301.1781 424.4656)\\\" x=\\\"0 4.448 8.896\\\">LLC</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 315.8539 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 318.5375 424.4656)\\\" x=\\\"0 5.336 7.56 9.784 14.232 18.68 20.904 22.728 27.176 31.624\\\">Attention:</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 352.3851 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 355.0687 424.4656)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 19.16 23.608 25.832 27.656 32.104 36.552\\\">Arbitration.</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.8461 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 396.5297 424.4656)\\\" x=\\\"0 5.336 7.56 13.784\\\">P.O.</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 412.5336 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 415.2172 424.4656)\\\" x=\\\"0 5.336 9.784\\\">Box</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 429.0023 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 431.6859 424.4656)\\\" x=\\\"0 4.448 8.896 13.344 17.792 22.24\\\">26561,</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.1547 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 458.8383 424.4656)\\\" x=\\\"0 5.336 9.784 11.608\\\">Salt</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 472.6703 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 475.3539 424.4656)\\\" x=\\\"0 4.448 8.896 12.896\\\">Lake</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 492.7015 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 495.3851 424.4656)\\\" x=\\\"0 5.776 7.6 9.824 13.824\\\">City,</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 511.432 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 514.1156 424.4656)\\\" x=\\\"0 5.776\\\">UT</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 524.7797 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 527.4633 424.4656)\\\" x=\\\"0 4.448 8.896 13.344 17.792 22.24\\\">84126.</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.932 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 554.6156 424.4656)\\\" x=\\\"0 5.336 9.784\\\">You</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 415.4109)\\\" x=\\\"0 4 8.448 12.896 15.024 19.024 23.472 25.296 27.12 29.248 33.696 37.696 39.824 44.272 46.936 49.064 53.512 57.512 61.96 64.088 68.088 72.536 75.2 77.424 79.248 81.472 83.296 87.744 92.192 94.32 100.984 105.432 107.256 109.08 111.208 113.432 117.88 120.008 124.008 128.456 132.904 135.128 136.952 139.616 146.28 148.408 151.072 155.52 159.52 163.968 165.792 170.24 172.464\\\">can call us or use certified mail to confirm receipt.</text></g><clipPath id=\\\"clip4-28\\\"><path d=\\\"M 35 373 L 130 373 L 130 413 L 35 413 L 35 373 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-28)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 412.7313 L 129.35 412.7313 L 129.35 373.5125 L 35.45 373.5125 L 35.45 412.7313 z \\\"/><path clip-path=\\\"url(#clip4-28)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 410.7313 L 125.25 410.7313 L 125.25 392.6219 L 39.55 392.6219 L 39.55 410.7313 z \\\"/><path clip-path=\\\"url(#clip4-28)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 41.9508 410.7313 L 122.9508 410.7313 L 122.9508 400.7313 L 41.9508 400.7313 L 41.9508 410.7313 z \\\"/><g clip-path=\\\"url(#clip4-28)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 41.9508 403.3562)\\\" x=\\\"0 5.776 10.224 14.672 16.8 20.8 27.464 31.912 33.736 35.56 38.224 42.224 44.048 48.496 50.32 56.984 60.984 63.112 67.112 71.56 76.008 78.672\\\">Can small-claims court</text></g><path clip-path=\\\"url(#clip4-28)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 43.3219 401.6766 L 122.3219 401.6766 L 122.3219 391.6766 L 43.3219 391.6766 L 43.3219 401.6766 z \\\"/><g clip-path=\\\"url(#clip4-28)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 43.3219 394.3016)\\\" x=\\\"0 4 8.448 10.272 14.272 18.72 20.848 24.848 29.296 35.96 40.408 42.536 48.312 50.136 54.136 58.584 63.032 65.256 69.704 73.704\\\">solve s* D E M O *s?</text></g><clipPath id=\\\"clip4-29\\\"><path d=\\\"M 129 373 L 206 373 L 206 413 L 129 413 L 129 373 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-29)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 159.5461 403.3562)\\\" x=\\\"0 5.336 9.784 13.784\\\">Yes.</text></g><clipPath id=\\\"clip4-30\\\"><path d=\\\"M 205 373 L 573 373 L 573 413 L 205 413 L 205 373 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 403.3562)\\\" x=\\\"0 5.3359 9.7852 13.7852\\\">Each</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 228.0844 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 229.9094 403.3562)\\\" x=\\\"0 4.4492 8.8984 11.5625 13.7851\\\">party</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.6945 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 249.5195 403.3562)\\\" x=\\\"0 4.4492 8.8984\\\">has</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.418 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 264.243 403.3562)\\\" x=\\\"0 2.2227 6.6719\\\">the</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.3641 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 277.1891 403.3562)\\\" x=\\\"0 2.6641 4.4883 8.9375 13.3867\\\">right</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 292.7984 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 294.6234 403.3562)\\\" x=\\\"0 2.2227\\\">to</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 301.2953 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 303.1203 403.3562)\\\" x=\\\"0 4.4492 7.1133 11.5625 13.3867 15.6094 18.2734 22.7227 24.9453 29.3945\\\">arbitrate,</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 334.7375 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 336.5625 403.3562)\\\" x=\\\"0 4.4492\\\">or</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 343.6758 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 345.5008 403.3562)\\\" x=\\\"0 2.2227\\\">to</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 352.1727 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 353.9976 403.3562)\\\" x=\\\"0 4.4492\\\">go</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 362.8961 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 364.7211 403.3562)\\\" x=\\\"0 2.2227\\\">to</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.393 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 373.218 403.3562)\\\" x=\\\"0 4 10.6641 15.1133 16.9375 18.7617 21.4258 25.4258 27.25 31.6992 33.5234 40.1875\\\">small-claims</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 417.4055 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 419.2305 403.3562)\\\" x=\\\"0 4 8.4492 12.8984 15.5625\\\">court</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 437.0156 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 438.8406 403.3562)\\\" x=\\\"0 1.8242\\\">if</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 442.8875 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 444.7125 403.3562)\\\" x=\\\"0 2.2227 6.6719\\\">the</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 455.8336 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 457.6586 403.3562)\\\" x=\\\"0 4 10.6641 15.1133 16.9375 18.7617 21.4258 25.4258 27.25 31.6992 33.5234 40.1875\\\">small-claims</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.8461 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 503.6711 403.3562)\\\" x=\\\"0 4 8.4492 12.8984 15.5625\\\">court</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.4562 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 523.2812 403.3562)\\\" x=\\\"0 4.4492 8.8984\\\">has</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 536.1797 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 538.0047 403.3562)\\\" x=\\\"0 2.2227 6.6719\\\">the</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 394.3016)\\\" x=\\\"0 4.4492 8.8984 14.6758 19.125\\\">power</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.639 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 233.464 394.3016)\\\" x=\\\"0 2.2227\\\">to</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 240.1359 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 241.9609 394.3016)\\\" x=\\\"0 4.4492 8.8984 13.3477\\\">hear</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.9726 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 260.0976 394.3016)\\\" x=\\\"0 2.2226 6.6719\\\">the</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 271.2187 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 273.3437 394.3016)\\\" x=\\\"0 5.7773 7.6016 11.6016 16.0508 20.5 22.7227 27.1719\\\">Dispute.</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.7383 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 304.8633 394.3016)\\\" x=\\\"0 5.3359 8 12.4492 14.2734 16.4961 19.1602 23.6094 25.832 27.6562 32.1055\\\">Arbitration</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 341.418 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 343.543 394.3016)\\\" x=\\\"0 5.7773 7.6016 9.4258\\\">will</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 354.793 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 356.918 394.3016)\\\" x=\\\"0 4 8.4492 10.2734 14.2734\\\">solve</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.6406 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 377.7656 394.3016)\\\" x=\\\"0 4.4492 6.2734\\\">all</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 385.8633 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 387.9883 394.3016)\\\" x=\\\"0 5.7774 7.6016 11.6016 16.0508 20.5 22.7227 27.1719\\\">Disputes</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.1601 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 421.2851 394.3016)\\\" x=\\\"0 2.2227 6.6719 11.1211\\\">that</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.6289 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 436.7539 394.3016)\\\" x=\\\"0 2.2226 6.6719\\\">the</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.875 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 450 394.3016)\\\" x=\\\"0 4 10.6641 15.1133 16.9375 18.7617 21.4258 25.4258 27.25 31.6992 33.5234 40.1875\\\">small-claims</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 494.1875 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 496.3125 394.3016)\\\" x=\\\"0 4 8.4492 12.8984 15.5625\\\">court</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 514.0976 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 516.2226 394.3016)\\\" x=\\\"0 4.4492 8.8984 13.3477\\\">does</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 533.5703 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 535.6953 394.3016)\\\" x=\\\"0 4.4492 8.8984\\\">not</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 546.8164 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 548.9414 394.3016)\\\" x=\\\"0 4.4492 8.8984 12.8984\\\">have</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 385.2469)\\\" x=\\\"0 2.2227 6.6719\\\">the</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 220.9711 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 223.0961 385.2469)\\\" x=\\\"0 4.4492 8.8984 14.6758 19.125\\\">power</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 244.8852 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 247.0101 385.2469)\\\" x=\\\"0 2.2227\\\">to</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 253.682 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 255.807 385.2469)\\\" x=\\\"0 4.4492 8.8984 13.3477 16.0117\\\">hear.</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 274.0414 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 276.1664 385.2469)\\\" x=\\\"0 2.2226\\\">If</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.6117 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 282.7367 385.2469)\\\" x=\\\"0 2.2227 6.6719 11.1211 13.7852\\\">there</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 300.9711 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 303.0961 385.2469)\\\" x=\\\"0 1.8242\\\">is</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.9203 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 311.0453 385.2469)\\\" x=\\\"0 4.4492\\\">an</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.9437 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 322.0687 385.2469)\\\" x=\\\"0 4.4492 8.8984 13.3477 17.7969 22.2461\\\">appeal</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 346.139 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 348.264 385.2469)\\\" x=\\\"0 2.2227 4.8867 9.3359\\\">from</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 364.264 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 366.389 385.2469)\\\" x=\\\"0 4 10.6641 15.1133 16.9375 18.7617 21.4258 25.4258 27.25 31.6992 33.5234 40.1875\\\">small-claims</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 410.5765 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 412.7015 385.2469)\\\" x=\\\"0 4 8.4492 12.8984 15.5625 17.7852\\\">court,</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 432.7094 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 434.8344 385.2469)\\\" x=\\\"0 4.4492\\\">or</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 441.9477 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 444.0727 385.2469)\\\" x=\\\"0 1.8242\\\">if</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 448.1195 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 450.2445 385.2469)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.6937 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 456.8187 385.2469)\\\" x=\\\"0 5.7773 7.6016 11.6016 16.0508 20.5 22.7227\\\">Dispute</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 483.9906 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 486.1156 385.2469)\\\" x=\\\"0 4 8.4492 12.8984 17.3476 21.7969 26.2461\\\">changes</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 516.3617 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 518.4867 385.2469)\\\" x=\\\"0 4\\\">so</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.9359 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 529.0609 385.2469)\\\" x=\\\"0 2.2227 6.6719 11.1211\\\">that</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 542.4047 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 544.5297 385.2469)\\\" x=\\\"0 2.2227 6.6719\\\">the</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 376.1922)\\\" x=\\\"0 4 10.6641 15.1133 16.9375 18.7617 21.4258 25.4258 27.25 31.6992 33.5234 40.1875\\\">small-claims</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 254.0375 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 256.1625 376.1922)\\\" x=\\\"0 4 8.4492 12.8984 15.5625\\\">court</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 273.9477 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 276.0727 376.1922)\\\" x=\\\"0 1.8242 6.2734 10.2734 14.7226\\\">loses</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 294.7953 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 296.9203 376.1922)\\\" x=\\\"0 2.2227 6.6719\\\">the</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.0414 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 310.1664 376.1922)\\\" x=\\\"0 4.4492 8.8984 14.6758 19.125\\\">power</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 331.9555 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 333.7805 376.1922)\\\" x=\\\"0 2.2227\\\">to</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 340.4523 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 342.2773 376.1922)\\\" x=\\\"0 4.4492 8.8984 13.3477\\\">hear</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 358.289 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 360.1141 376.1922)\\\" x=\\\"0 1.8242 4.0469\\\">it,</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 366.3836 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 368.2086 376.1922)\\\" x=\\\"0 2.2226 6.6719 11.1211\\\">then</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.7789 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 385.6039 376.1922)\\\" x=\\\"0 2.2227 6.6719\\\">the</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 396.725 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 398.55 376.1922)\\\" x=\\\"0 5.7773 7.6016 11.6016 16.0508 20.5 22.7227\\\">Dispute</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 425.7219 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 427.5469 376.1922)\\\" x=\\\"0 5.7773 7.6016 9.4258\\\">will</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 438.7969 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 440.6219 376.1922)\\\" x=\\\"0 4.4492 8.8984 10.7227\\\">only</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 455.3445 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 457.1695 376.1922)\\\" x=\\\"0 4.4492\\\">be</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.068 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 467.893 376.1922)\\\" x=\\\"0 4.4492 8.8984 13.3477 16.0117\\\">heard</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 488.3539 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 490.1789 376.1922)\\\" x=\\\"0 4.4492\\\">by</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 498.6281 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 500.4531 376.1922)\\\" x=\\\"0 4.4492\\\">an</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.3516 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 511.1766 376.1922)\\\" x=\\\"0 5.3359 8 12.4492 14.2734 16.4961 20.9453 23.6094\\\">Arbiter.</text></g><clipPath id=\\\"clip4-31\\\"><path d=\\\"M 35 343 L 130 343 L 130 374 L 35 374 L 35 343 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-31)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 373.5125 L 129.35 373.5125 L 129.35 343.3484 L 35.45 343.3484 L 35.45 373.5125 z \\\"/><path clip-path=\\\"url(#clip4-31)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 371.5125 L 125.25 371.5125 L 125.25 362.4578 L 39.55 362.4578 L 39.55 371.5125 z \\\"/><path clip-path=\\\"url(#clip4-31)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 41.5875 371.5125 L 123.5875 371.5125 L 123.5875 361.5125 L 41.5875 361.5125 L 41.5875 371.5125 z \\\"/><g clip-path=\\\"url(#clip4-31)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 41.5875 364.1375)\\\" x=\\\"0 5.776 10.224 12.352 16.8 19.024 23.472 27.92 30.584 32.712 37.16 41.608 43.832 45.656 50.104 54.552 58.552 60.68 65.128 69.128 70.952 74.952 77.176\\\">Do other options exist?</text></g><clipPath id=\\\"clip4-32\\\"><path d=\\\"M 129 343 L 206 343 L 206 374 L 129 374 L 129 343 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-32)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 159.5461 364.1375)\\\" x=\\\"0 5.336 9.784 13.784\\\">Yes.</text></g><clipPath id=\\\"clip4-33\\\"><path d=\\\"M 205 343 L 573 343 L 573 374 L 205 374 L 205 343 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 364.1375)\\\" x=\\\"0 5.336 9.784 12.008\\\">Both</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 226.307 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 228.8021 364.1375)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056\\\">parties</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 252.8607 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 255.3557 364.1375)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 270.469 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 272.964 364.1375)\\\" x=\\\"0 4.448 8.448\\\">use</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 285.8625 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 288.3575 364.1375)\\\" x=\\\"0 1.824 6.272 12.048 14.272 18.72\\\">lawful</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.9044 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 311.3995 364.1375)\\\" x=\\\"0 4 8.448 10.272 12.496 15.16 19.608 24.056 25.88\\\">self-help</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 341.7315 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 344.2265 364.1375)\\\" x=\\\"0 2.664 7.112 13.776 18.224 22.672 24.496 28.944 32.944\\\">remedies.</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 379.3984 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 381.8935 364.1375)\\\" x=\\\"0 4.888 9.336 11.16\\\">This</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 397.0536 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 399.5487 364.1375)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44\\\">includes</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 428.994 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 431.489 364.1375)\\\" x=\\\"0 4 8.448 10.672 13.336 17.784 20.008\\\">set-off</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 453.7195 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 456.2146 364.1375)\\\" x=\\\"0 4.448\\\">or</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 463.3279 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 465.8229 364.1375)\\\" x=\\\"0 2.664 7.112 11.56 16.008 20.008 24.008 28.456 32.456 36.456 38.28 42.728\\\">repossession</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 513.0065 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 515.5015 364.1375)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 528.8492 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 531.3443 364.1375)\\\" x=\\\"0 4 8.448 10.272\\\">sale</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 546.0669 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 548.562 364.1375)\\\" x=\\\"0 4.448\\\">of</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 555.2339 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 557.7289 364.1375)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 355.0828)\\\" x=\\\"0 5.336 8 12.448 16.896 21.344 24.008 26.232 30.232\\\">Property.</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 242.307 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 245.9017 355.0828)\\\" x=\\\"0 5.336 9.784 12.008\\\">Both</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.3587 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 265.9534 355.0828)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056\\\">parties</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.0119 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 293.6066 355.0828)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.7199 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 312.3145 355.0828)\\\" x=\\\"0 4 8.448 12.896\\\">seek</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.213 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 332.8076 355.0828)\\\" x=\\\"0 2.664 7.112 13.776 18.224 22.672 24.496 28.944\\\">remedies</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 365.7568 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 369.3515 355.0828)\\\" x=\\\"0 5.776 10.224 12.048 16.048\\\">which</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 389.8515 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 393.4461 355.0828)\\\" x=\\\"0 4.448 8.896 13.344 14.872\\\">don&apos;t</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 410.5438 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 414.1384 355.0828)\\\" x=\\\"0 4 5.824 10.272 12.096\\\">claim</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 432.9002 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 436.4948 355.0828)\\\" x=\\\"0 6.664 11.112 15.56 20.008\\\">money</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 460.5065 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 464.1012 355.0828)\\\" x=\\\"0 4.448 8.896 15.56 20.008 24.456 28.904 32.904\\\">damages.</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.234 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 502.8287 355.0828)\\\" x=\\\"0 4.888 9.336 11.16\\\">This</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 517.9888 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 521.5835 355.0828)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44\\\">includes</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.0288 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 554.6234 355.0828)\\\" x=\\\"0 4.448 7.112 11.56\\\">pre-</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 346.0281)\\\" x=\\\"0 1.824 6.272 10.72 15.168 21.832 26.28 30.728 32.952 35.08 39.08 43.528 45.352 49.352 53.8 56.464 60.912 63.136 65.264 67.088 71.536 73.36 77.808 82.256 86.256 88.48 90.304 94.752 99.2 103.2 105.424 107.552 112 114.664 116.792 121.24 125.688 130.136 131.96 134.184 138.632 143.08 144.904 149.352 151.48 154.144 158.592 160.416 162.24 166.688 168.912\\\">judgment seizure, injunctions, or equitable relief.</text></g><clipPath id=\\\"clip4-34\\\"><path d=\\\"M 35 295 L 130 295 L 130 344 L 35 344 L 35 295 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-34)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 343.3484 L 129.35 343.3484 L 129.35 295.075 L 35.45 295.075 L 35.45 343.3484 z \\\"/><path clip-path=\\\"url(#clip4-34)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 341.3484 L 125.25 341.3484 L 125.25 323.2391 L 39.55 323.2391 L 39.55 341.3484 z \\\"/><path clip-path=\\\"url(#clip4-34)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 55.0406 341.3484 L 110.0406 341.3484 L 110.0406 331.3484 L 55.0406 331.3484 L 55.0406 341.3484 z \\\"/><g clip-path=\\\"url(#clip4-34)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 55.0406 333.9734)\\\" x=\\\"0 7.552 9.376 11.2 13.024 15.152 17.376 21.824 23.648 27.648 29.776 35.552 37.376 41.824 46.272 50.272\\\">Will this Clause</text></g><path clip-path=\\\"url(#clip4-34)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 47.3375 332.2938 L 118.3375 332.2938 L 118.3375 322.2938 L 47.3375 322.2938 L 47.3375 332.2938 z \\\"/><g clip-path=\\\"url(#clip4-34)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.3375 324.9187)\\\" x=\\\"0 4 8.448 12.896 15.12 16.944 21.392 25.84 30.288 32.416 34.64 39.088 41.216 45.664 50.112 54.112 58.56 61.224 65.672\\\">continue to govern?</text></g><clipPath id=\\\"clip4-35\\\"><path d=\\\"M 129 295 L 206 295 L 206 344 L 129 344 L 129 295 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-35)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.8976 333.9734)\\\" x=\\\"0 5.336 9.784 13.784 16.008 18.136 22.584 27.032 28.856 33.304 37.304\\\">Yes, unless</text></g><g clip-path=\\\"url(#clip4-35)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 135.7785 324.9187)\\\" x=\\\"0 4.448 6.672 11.12 15.568 18.232 24.008 25.832 29.832 34.28 36.408 40.856 45.304 47.968 52.416 56.864 61.312\\\">otherwise agreed.</text></g><clipPath id=\\\"clip4-36\\\"><path d=\\\"M 205 295 L 573 295 L 573 344 L 205 344 L 205 295 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 333.9734)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 223.6351 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 227.574 333.9734)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496\\\">Clause</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 252.5233 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 256.4622 333.9734)\\\" x=\\\"0 4 6.224 10.672 14.672\\\">stays</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.134 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 279.0729 333.9734)\\\" x=\\\"0 4.448 6.672 8.896 13.344 17.344 19.568 21.392 25.392 29.84\\\">effective,</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 311.1354 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 315.0743 333.9734)\\\" x=\\\"0 4.448 8.896 10.72 15.168 19.168\\\">unless</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.2462 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 342.1851 333.9734)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 353.3062 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 357.2451 333.9734)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056\\\">parties</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 381.3037 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 385.2426 333.9734)\\\" x=\\\"0 4 5.824 10.272\\\">sign</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 399.9652 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 403.9041 333.9734)\\\" x=\\\"0 4.448\\\">an</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 412.8026 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 416.7415 333.9734)\\\" x=\\\"0 4.448 8.896 11.56 16.008 20.456 27.12 31.568 36.016\\\">agreement</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.9875 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 458.9264 333.9734)\\\" x=\\\"0 4 6.224 10.672 12.896 14.72 19.168\\\">stating</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 482.5436 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 486.4825 333.9734)\\\" x=\\\"0 1.824\\\">it</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 490.5294 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 494.4683 333.9734)\\\" x=\\\"0 4.448 8.896 13.344 17.344 21.792 23.32 25.544\\\">doesn&apos;t.</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 522.2378 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 526.1767 333.9734)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 539.9619 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 543.9008 333.9734)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496\\\">Clause</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 324.9187)\\\" x=\\\"0 4.448 8.896 12.896 17.344 20.008 24.456\\\">governs</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.3109 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 241.2057 324.9187)\\\" x=\\\"0 1.824\\\">if</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.2526 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 248.1473 324.9187)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 261.0458 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 263.9405 324.9187)\\\" x=\\\"0 2.664 7.112 11.112 15.112 16.936 21.384\\\">rescind</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 289.7765 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 292.6712 324.9187)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 303.7923 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 306.6871 324.9187)\\\" x=\\\"0 2.224 4.888 9.336 13.784 17.784 22.232 26.232 28.456 30.28 34.728 39.176\\\">transaction.</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.0894 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 350.9842 324.9187)\\\" x=\\\"0 2.224\\\">It</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.4295 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 358.3243 324.9187)\\\" x=\\\"0 4.448 8.896 12.896 17.344 20.008 24.456\\\">governs</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 386.7852 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 389.68 324.9187)\\\" x=\\\"0 1.824\\\">if</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.7268 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 396.6216 324.9187)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 409.52 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 412.4148 324.9187)\\\" x=\\\"0 4.448 8.896 11.12 15.568 20.016 21.84 24.064\\\">default,</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 438.7038 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 441.5986 324.9187)\\\" x=\\\"0 2.664 7.112 11.56 16.008 21.784\\\">renew,</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 465.6103 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 468.5051 324.9187)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456 24.456\\\">prepay,</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 495.1887 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 498.0834 324.9187)\\\" x=\\\"0 4.448\\\">or</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 505.1967 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 508.0915 324.9187)\\\" x=\\\"0 4.448 8.896 12.896\\\">pay.</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 523.2126 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 526.1073 324.9187)\\\" x=\\\"0 2.224\\\">It</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 530.5527 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 533.4474 324.9187)\\\" x=\\\"0 4.448 8.896 12.896 17.344 20.008 24.456\\\">governs</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 561.9084 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 564.8031 324.9187)\\\" x=\\\"0 1.824\\\">if</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 315.8641)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 222.7484 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 227.0199 315.8641)\\\" x=\\\"0 2.224 6.672 9.336 16 17.824 22.272 26.72 28.944 33.392\\\">terminate,</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.6371 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 266.9086 315.8641)\\\" x=\\\"0 1.824\\\">if</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 270.9555 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 275.2269 315.8641)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 288.1254 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 292.3969 315.8641)\\\" x=\\\"0 2.664 7.112 8.936 13.384 17.384 19.608 24.056 26.28 30.728\\\">reinstate,</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 325.35 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 329.6215 315.8641)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 342.9691 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 347.2406 315.8641)\\\" x=\\\"0 1.824\\\">if</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.2875 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 355.559 315.8641)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 368.4574 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 372.7289 315.8641)\\\" x=\\\"0 2.664 7.112 9.336 13.784 16.448\\\">return</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.6273 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 397.8988 315.8641)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 409.0199 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 413.2914 315.8641)\\\" x=\\\"0 5.336 8 12.448 16.896 21.344 24.008 26.232 30.232\\\">Property.</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 445.7484 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 450.0199 315.8641)\\\" x=\\\"0 2.224\\\">It</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.4652 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 458.7367 315.8641)\\\" x=\\\"0 4.448 8.896 12.896 17.344 20.008 24.456\\\">governs</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 487.1977 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 491.4691 315.8641)\\\" x=\\\"0 1.824\\\">if</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 495.516 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 499.7875 315.8641)\\\" x=\\\"0 4 8.448 12.896\\\">your</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 515.35 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 519.6215 315.8641)\\\" x=\\\"0 5.336 9.784 12.448 16.896 21.344 28.008 32.456 36.904\\\">Agreement</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 558.7543 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 563.0258 315.8641)\\\" x=\\\"0 1.824\\\">is</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 306.8094)\\\" x=\\\"0 1.824 8.488 12.936 17.384 21.384 23.608 28.056\\\">impacted</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 242.3578 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 248.4078 306.8094)\\\" x=\\\"0 4.448\\\">by</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.857 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 262.907 306.8094)\\\" x=\\\"0 4.448 8.896 13.344 17.344 20.008 24.456 28.904 31.128 35.128 39.128\\\">bankruptcy.</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 304.2625 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 310.3125 306.8094)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 324.0976 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 330.1477 306.8094)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496\\\">Clause</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.0969 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 361.1469 306.8094)\\\" x=\\\"0 2.664 7.112 13.776 18.224 20.048 24.496\\\">remains</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 389.6469 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 395.6969 306.8094)\\\" x=\\\"0 4.448 6.672 8.896 13.344 17.344 19.568 21.392 25.392 29.84\\\">effective,</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 427.7594 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 433.8094 306.8094)\\\" x=\\\"0 4.448 8.896 12.896 17.344 19.168 21.392\\\">despite</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 459.6531 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 465.7031 306.8094)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 470.1523 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 476.2023 306.8094)\\\" x=\\\"0 2.224 4.888 9.336 13.784 17.784 22.232 26.232 28.456 30.28 34.728 39.176 40.704\\\">transaction&apos;s</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 520.9094 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 526.9594 306.8094)\\\" x=\\\"0 2.224 6.672 9.336 16 17.824 22.272 26.72 28.944 30.768 35.216 39.664\\\">termination,</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 297.7547)\\\" x=\\\"0 4.448 11.112 15.56 20.008 24.456 31.12 35.568 40.016 42.24 44.464 46.592 51.04 55.04 59.488 61.312 63.976 68.424 70.648 72.472 76.92 81.368 83.592 85.72 90.168 92.832 94.96 99.408 103.856 106.52 108.744 113.192 115.856 122.52 126.968 131.416 135.416 139.864\\\">amendment, expiration, or performance.</text></g><clipPath id=\\\"clip4-37\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 770.2 L 129.85 770.2 L 129.85 769.2 L 34.95 769.2 L 34.95 770.2 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 769.2 L 35.95 769.2 L 35.95 749.0906 L 34.95 749.0906 L 34.95 769.2 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 770.2 L 206.25 770.2 L 206.25 769.2 L 129.85 769.2 L 129.85 770.2 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 769.2 L 129.85 769.2 L 129.85 749.0906 L 128.85 749.0906 L 128.85 769.2 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 770.2 L 573.45 770.2 L 573.45 769.2 L 206.25 769.2 L 206.25 770.2 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 769.2 L 573.45 769.2 L 573.45 749.0906 L 572.45 749.0906 L 572.45 769.2 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 769.2 L 206.25 769.2 L 206.25 749.0906 L 205.25 749.0906 L 205.25 769.2 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 749.0906 L 129.85 749.0906 L 129.85 748.0906 L 34.95 748.0906 L 34.95 749.0906 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 748.0906 L 35.95 748.0906 L 35.95 727.9813 L 34.95 727.9813 L 34.95 748.0906 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 749.0906 L 206.25 749.0906 L 206.25 748.0906 L 129.85 748.0906 L 129.85 749.0906 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 748.0906 L 129.85 748.0906 L 129.85 727.9813 L 128.85 727.9813 L 128.85 748.0906 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 749.0906 L 573.45 749.0906 L 573.45 748.0906 L 206.25 748.0906 L 206.25 749.0906 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 748.0906 L 573.45 748.0906 L 573.45 727.9813 L 572.45 727.9813 L 572.45 748.0906 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 748.0906 L 206.25 748.0906 L 206.25 727.9813 L 205.25 727.9813 L 205.25 748.0906 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 727.9813 L 129.85 727.9813 L 129.85 726.9813 L 34.95 726.9813 L 34.95 727.9813 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 726.9813 L 35.95 726.9813 L 35.95 706.8719 L 34.95 706.8719 L 34.95 726.9813 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 727.9813 L 206.25 727.9813 L 206.25 726.9813 L 129.85 726.9813 L 129.85 727.9813 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 726.9813 L 129.85 726.9813 L 129.85 706.8719 L 128.85 706.8719 L 128.85 726.9813 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 727.9813 L 573.45 727.9813 L 573.45 726.9813 L 206.25 726.9813 L 206.25 727.9813 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 726.9813 L 573.45 726.9813 L 573.45 706.8719 L 572.45 706.8719 L 572.45 726.9813 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 726.9813 L 206.25 726.9813 L 206.25 706.8719 L 205.25 706.8719 L 205.25 726.9813 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 706.8719 L 129.85 706.8719 L 129.85 705.8719 L 34.95 705.8719 L 34.95 706.8719 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 705.8719 L 35.95 705.8719 L 35.95 631.4344 L 34.95 631.4344 L 34.95 705.8719 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 706.8719 L 206.25 706.8719 L 206.25 705.8719 L 129.85 705.8719 L 129.85 706.8719 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 705.8719 L 129.85 705.8719 L 129.85 631.4344 L 128.85 631.4344 L 128.85 705.8719 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 706.8719 L 573.45 706.8719 L 573.45 705.8719 L 206.25 705.8719 L 206.25 706.8719 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 705.8719 L 573.45 705.8719 L 573.45 631.4344 L 572.45 631.4344 L 572.45 705.8719 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 705.8719 L 206.25 705.8719 L 206.25 631.4344 L 205.25 631.4344 L 205.25 705.8719 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 631.4344 L 129.85 631.4344 L 129.85 630.4344 L 34.95 630.4344 L 34.95 631.4344 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 630.4344 L 35.95 630.4344 L 35.95 579.1609 L 34.95 579.1609 L 34.95 630.4344 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 631.4344 L 206.25 631.4344 L 206.25 630.4344 L 129.85 630.4344 L 129.85 631.4344 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 630.4344 L 129.85 630.4344 L 129.85 579.1609 L 128.85 579.1609 L 128.85 630.4344 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 631.4344 L 573.45 631.4344 L 573.45 630.4344 L 206.25 630.4344 L 206.25 631.4344 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 630.4344 L 573.45 630.4344 L 573.45 579.1609 L 572.45 579.1609 L 572.45 630.4344 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 630.4344 L 206.25 630.4344 L 206.25 579.1609 L 205.25 579.1609 L 205.25 630.4344 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 579.1609 L 129.85 579.1609 L 129.85 578.1609 L 34.95 578.1609 L 34.95 579.1609 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 578.1609 L 35.95 578.1609 L 35.95 530.8875 L 34.95 530.8875 L 34.95 578.1609 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 579.1609 L 206.25 579.1609 L 206.25 578.1609 L 129.85 578.1609 L 129.85 579.1609 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 578.1609 L 129.85 578.1609 L 129.85 530.8875 L 128.85 530.8875 L 128.85 578.1609 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 579.1609 L 573.45 579.1609 L 573.45 578.1609 L 206.25 578.1609 L 206.25 579.1609 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 578.1609 L 573.45 578.1609 L 573.45 530.8875 L 572.45 530.8875 L 572.45 578.1609 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 578.1609 L 206.25 578.1609 L 206.25 530.8875 L 205.25 530.8875 L 205.25 578.1609 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 530.8875 L 129.85 530.8875 L 129.85 529.8875 L 34.95 529.8875 L 34.95 530.8875 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 529.8875 L 35.95 529.8875 L 35.95 491.6688 L 34.95 491.6688 L 34.95 529.8875 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 530.8875 L 206.25 530.8875 L 206.25 529.8875 L 129.85 529.8875 L 129.85 530.8875 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 529.8875 L 129.85 529.8875 L 129.85 491.6688 L 128.85 491.6688 L 128.85 529.8875 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 530.8875 L 573.45 530.8875 L 573.45 529.8875 L 206.25 529.8875 L 206.25 530.8875 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 529.8875 L 573.45 529.8875 L 573.45 491.6688 L 572.45 491.6688 L 572.45 529.8875 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 529.8875 L 206.25 529.8875 L 206.25 491.6688 L 205.25 491.6688 L 205.25 529.8875 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 491.6688 L 129.85 491.6688 L 129.85 490.6688 L 34.95 490.6688 L 34.95 491.6688 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 490.6688 L 35.95 490.6688 L 35.95 434.3406 L 34.95 434.3406 L 34.95 490.6688 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 491.6688 L 206.25 491.6688 L 206.25 490.6688 L 129.85 490.6688 L 129.85 491.6688 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 490.6688 L 129.85 490.6688 L 129.85 434.3406 L 128.85 434.3406 L 128.85 490.6688 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 491.6688 L 573.45 491.6688 L 573.45 490.6688 L 206.25 490.6688 L 206.25 491.6688 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 490.6688 L 573.45 490.6688 L 573.45 434.3406 L 572.45 434.3406 L 572.45 490.6688 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 490.6688 L 206.25 490.6688 L 206.25 434.3406 L 205.25 434.3406 L 205.25 490.6688 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 434.3406 L 129.85 434.3406 L 129.85 433.3406 L 34.95 433.3406 L 34.95 434.3406 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 433.3406 L 35.95 433.3406 L 35.95 413.2313 L 34.95 413.2313 L 34.95 433.3406 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 434.3406 L 206.25 434.3406 L 206.25 433.3406 L 129.85 433.3406 L 129.85 434.3406 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 433.3406 L 129.85 433.3406 L 129.85 413.2313 L 128.85 413.2313 L 128.85 433.3406 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 434.3406 L 573.45 434.3406 L 573.45 433.3406 L 206.25 433.3406 L 206.25 434.3406 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 433.3406 L 573.45 433.3406 L 573.45 413.2313 L 572.45 413.2313 L 572.45 433.3406 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 433.3406 L 206.25 433.3406 L 206.25 413.2313 L 205.25 413.2313 L 205.25 433.3406 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 413.2313 L 129.85 413.2313 L 129.85 412.2313 L 34.95 412.2313 L 34.95 413.2313 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 412.2313 L 35.95 412.2313 L 35.95 374.0125 L 34.95 374.0125 L 34.95 412.2313 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 413.2313 L 206.25 413.2313 L 206.25 412.2313 L 129.85 412.2313 L 129.85 413.2313 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 412.2313 L 129.85 412.2313 L 129.85 374.0125 L 128.85 374.0125 L 128.85 412.2313 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 413.2313 L 573.45 413.2313 L 573.45 412.2313 L 206.25 412.2313 L 206.25 413.2313 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 412.2313 L 573.45 412.2313 L 573.45 374.0125 L 572.45 374.0125 L 572.45 412.2313 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 412.2313 L 206.25 412.2313 L 206.25 374.0125 L 205.25 374.0125 L 205.25 412.2313 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 374.0125 L 129.85 374.0125 L 129.85 373.0125 L 34.95 373.0125 L 34.95 374.0125 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 373.0125 L 35.95 373.0125 L 35.95 343.8484 L 34.95 343.8484 L 34.95 373.0125 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 374.0125 L 206.25 374.0125 L 206.25 373.0125 L 129.85 373.0125 L 129.85 374.0125 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 373.0125 L 129.85 373.0125 L 129.85 343.8484 L 128.85 343.8484 L 128.85 373.0125 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 374.0125 L 573.45 374.0125 L 573.45 373.0125 L 206.25 373.0125 L 206.25 374.0125 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 373.0125 L 573.45 373.0125 L 573.45 343.8484 L 572.45 343.8484 L 572.45 373.0125 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 373.0125 L 206.25 373.0125 L 206.25 343.8484 L 205.25 343.8484 L 205.25 373.0125 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 343.8484 L 129.85 343.8484 L 129.85 342.8484 L 34.95 342.8484 L 34.95 343.8484 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 295.575 L 129.85 295.575 L 129.85 294.575 L 34.95 294.575 L 34.95 295.575 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 342.8484 L 35.95 342.8484 L 35.95 295.575 L 34.95 295.575 L 34.95 342.8484 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 343.8484 L 206.25 343.8484 L 206.25 342.8484 L 129.85 342.8484 L 129.85 343.8484 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 295.575 L 206.25 295.575 L 206.25 294.575 L 129.85 294.575 L 129.85 295.575 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 342.8484 L 129.85 342.8484 L 129.85 295.575 L 128.85 295.575 L 128.85 342.8484 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 343.8484 L 573.45 343.8484 L 573.45 342.8484 L 206.25 342.8484 L 206.25 343.8484 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 295.575 L 573.45 295.575 L 573.45 294.575 L 206.25 294.575 L 206.25 295.575 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 342.8484 L 573.45 342.8484 L 573.45 295.575 L 572.45 295.575 L 572.45 342.8484 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 342.8484 L 206.25 342.8484 L 206.25 295.575 L 205.25 295.575 L 205.25 342.8484 z \\\"/><g clip-path=\\\"url(#clip4-37)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 286.1385 282.8562)\\\" x=\\\"0 6.67 10 15.56 20.56 26.12 31.12\\\">Process</text></g><clipPath id=\\\"clip4-38\\\"><path d=\\\"M 35 214 L 128 214 L 128 272 L 35 272 L 35 214 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-38)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.2 271.652 L 127.6 271.652 L 127.6 214.3238 L 35.2 214.3238 L 35.2 271.652 z \\\"/><path clip-path=\\\"url(#clip4-38)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.3 269.652 L 123.5 269.652 L 123.5 251.5426 L 39.3 251.5426 L 39.3 269.652 z \\\"/><path clip-path=\\\"url(#clip4-38)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 44.7652 269.652 L 118.7652 269.652 L 118.7652 259.652 L 44.7652 259.652 L 44.7652 269.652 z \\\"/><g clip-path=\\\"url(#clip4-38)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 44.7652 262.277)\\\" x=\\\"0 5.776 10.224 16 18.128 22.576 27.024 31.472 35.472 37.6 42.048 44.712 49.16 50.984 53.208 55.872 60.32 62.544 64.368 68.816\\\">How does arbitration</text></g><path clip-path=\\\"url(#clip4-38)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 71.3961 260.5973 L 92.3961 260.5973 L 92.3961 250.5973 L 71.3961 250.5973 L 71.3961 260.5973 z \\\"/><g clip-path=\\\"url(#clip4-38)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 71.3961 253.2223)\\\" x=\\\"0 4 6.224 10.672 13.336 15.56\\\">start?</text></g><clipPath id=\\\"clip4-39\\\"><path d=\\\"M 127 214 L 206 214 L 206 272 L 127 272 L 127 214 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-39)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 137.6496 262.277)\\\" x=\\\"0 6.664 11.112 12.936 14.76 16.584 21.032 25.48 27.608 32.056 34.184 38.632 43.08 45.304 47.128 51.128 55.576\\\">Mailing a notice.</text></g><clipPath id=\\\"clip4-40\\\"><path d=\\\"M 205 214 L 574 214 L 574 272 L 205 272 L 205 214 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 262.277)\\\" x=\\\"0 5.336 7.16 9.384 13.832 18.28\\\">Either</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 230.5453 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 233.8153 262.277)\\\" x=\\\"0 4.448 8.896 11.56 13.784\\\">party</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 251.6004 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 254.8704 262.277)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 269.9837 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 273.2536 262.277)\\\" x=\\\"0 6.664 11.112 12.936\\\">mail</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 288.0154 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 291.2853 262.277)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.4064 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 305.6764 262.277)\\\" x=\\\"0 4.448 6.672 11.12 15.568\\\">other</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 323.9108 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 327.1807 262.277)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 331.6299 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 334.8999 262.277)\\\" x=\\\"0 2.664 7.112 11.56 16.008 20.456 24.456\\\">request</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 361.5835 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 364.8535 262.277)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.5253 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 374.7953 262.277)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 29.392\\\">arbitrate,</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 406.4125 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 409.6825 262.277)\\\" x=\\\"0 4.448 8.448 12.896\\\">even</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 427.0301 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 430.3001 262.277)\\\" x=\\\"0 1.824\\\">if</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.3469 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 437.6169 262.277)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 442.0661 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 445.3361 262.277)\\\" x=\\\"0 1.824 6.272 12.048 16.048 20.496 22.32\\\">lawsuit</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 469.883 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 473.1529 262.277)\\\" x=\\\"0 4.448 8.896\\\">has</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.0514 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 489.3213 262.277)\\\" x=\\\"0 4.448 8.896 13.344\\\">been</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 507.1182 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 510.3882 262.277)\\\" x=\\\"0 2.224 4.048 5.872 10.32 14.768\\\">filed.</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 527.3804 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 530.6503 262.277)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 544.4355 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 547.7055 262.277)\\\" x=\\\"0 4.448 8.896 11.12 12.944 16.944\\\">notice</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 253.2223)\\\" x=\\\"0 4 8.448 12.896 17.344 19.168\\\">should</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.2211 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 236.4008 253.2223)\\\" x=\\\"0 4.448 8.896 12.896 16.896 19.56 21.384 25.832\\\">describe</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 266.6859 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 269.8656 253.2223)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.9867 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 284.1664 253.2223)\\\" x=\\\"0 5.776 7.6 11.6 16.048 20.496 22.72\\\">Dispute</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 311.3383 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 314.518 253.2223)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 327.8656 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 331.0453 253.2223)\\\" x=\\\"0 2.664 7.112 8.936 10.76 15.208\\\">relief</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.4789 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 351.6586 253.2223)\\\" x=\\\"0 4 8.448 12.896 17.344 21.792 24.016\\\">sought.</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 377.9008 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 381.0805 253.2223)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 394.8656 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 398.0453 253.2223)\\\" x=\\\"0 2.664 7.112 11.112 15.56 17.384 21.384 23.208 27.656\\\">receiving</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.1547 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 433.3344 253.2223)\\\" x=\\\"0 4.448 8.896 11.56 13.784\\\">party</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 451.1195 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 454.2992 253.2223)\\\" x=\\\"0 6.664 11.112 15.112\\\">must</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 471.6351 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 474.8148 253.2223)\\\" x=\\\"0 6.664 11.112 12.936\\\">mail</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.5765 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 492.7562 253.2223)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 497.2055 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 500.3851 253.2223)\\\" x=\\\"0 2.664 7.112 11.112 15.56 20.008 24.456 28.456\\\">response</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 533.2953 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 536.475 253.2223)\\\" x=\\\"0 5.776 7.6 9.824 14.272 16.096\\\">within</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 557.0219 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 560.2015 253.2223)\\\" x=\\\"0 4.448\\\">20</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 244.1676)\\\" x=\\\"0 4.448 8.896 12.896 16.896\\\">days.</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 228.7211 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 231.1538 244.1676)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 235.5991 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 238.0317 244.1676)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 250.9302 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 253.3629 244.1676)\\\" x=\\\"0 6.664 11.112 12.936\\\">mail</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 268.1246 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 270.5573 244.1676)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.6783 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 284.111 244.1676)\\\" x=\\\"0 4.448 8.896 15.56 20.008 24.456 28.904\\\">demand,</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 315.2438 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 317.6765 244.1676)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 330.575 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 333.0076 244.1676)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.1209 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 350.5536 244.1676)\\\" x=\\\"0 4 8.448 12.896 17.344 21.344\\\">choose</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 376.3505 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 378.7831 244.1676)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 389.9042 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 392.3369 244.1676)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 26.768 31.216\\\">arbitration</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 428.0049 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 430.4375 244.1676)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456\\\">group.</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 453.1211 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 455.5538 244.1676)\\\" x=\\\"0 6.224 8.888\\\">Or,</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.6632 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 469.0959 244.1676)\\\" x=\\\"0 4 8.448 12.896\\\">your</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.6584 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 487.091 244.1676)\\\" x=\\\"0 4.448 8.896 15.56 20.008 24.456\\\">demand</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 516.0012 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 518.4339 244.1676)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 533.5471 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 535.9798 244.1676)\\\" x=\\\"0 4 6.224 10.672 12.896\\\">state</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.3236 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 555.7562 244.1676)\\\" x=\\\"0 2.224 6.672 11.12\\\">that</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 235.1129)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 222.4984 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 224.7098 235.1129)\\\" x=\\\"0 5.776 10.224 14.672\\\">want</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 241.6082 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 243.8196 235.1129)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 254.9407 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 257.152 235.1129)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056\\\">parties</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.2106 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 283.4219 235.1129)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.0938 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 292.3052 235.1129)\\\" x=\\\"0 4 8.448 12.896 17.344 21.344\\\">choose</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 318.1021 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 320.3134 235.1129)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 324.7626 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 326.974 235.1129)\\\" x=\\\"0 1.824 6.272 10.272 14.72\\\">local</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 343.5208 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 345.7322 235.1129)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608\\\">Arbiter.</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.5642 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 373.7756 235.1129)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 378.2209 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 380.4322 235.1129)\\\" x=\\\"0 2.664 7.112 8.936 13.384 15.608 20.056\\\">related</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 404.94 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 407.1514 235.1129)\\\" x=\\\"0 2.224 6.672 8.496 11.16\\\">third</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 422.7608 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 424.9721 235.1129)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056\\\">parties</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 449.0307 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 451.2421 235.1129)\\\" x=\\\"0 4.448\\\">or</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 458.3553 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 460.5667 235.1129)\\\" x=\\\"0 5.776\\\">we</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 470.7932 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 473.0046 235.1129)\\\" x=\\\"0 6.664 11.112 12.936\\\">mail</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 487.7663 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 489.9777 235.1129)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.0988 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 503.3101 235.1129)\\\" x=\\\"0 4.448 8.896 15.56 20.008 24.456 28.904\\\">demand,</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 534.4429 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 536.6543 235.1129)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.5527 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 551.7641 235.1129)\\\" x=\\\"0 6.664 11.112 15.112\\\">must</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 226.0582)\\\" x=\\\"0 2.664 7.112 11.112 15.56 20.008 24.456\\\">respond</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.5101 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 241.2739 226.0582)\\\" x=\\\"0 1.824\\\">in</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.5474 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 250.3112 226.0582)\\\" x=\\\"0 4.448\\\">20</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.2096 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 261.9734 226.0582)\\\" x=\\\"0 4.448 8.896 12.896 16.896\\\">days.</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.0945 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 283.8583 226.0582)\\\" x=\\\"0 5.336 9.784 14.232\\\">Your</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 300.7567 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 303.5205 226.0582)\\\" x=\\\"0 2.664 7.112 11.112 15.56 20.008 24.456 28.456\\\">response</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 336.4306 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 339.1944 226.0582)\\\" x=\\\"0 6.664 11.112 15.112\\\">must</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 356.5304 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 359.2942 226.0582)\\\" x=\\\"0 4 8.448 12.896 17.344 21.344\\\">choose</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 385.091 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 387.8548 226.0582)\\\" x=\\\"0 4.448\\\">an</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 396.7533 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 399.517 226.0582)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 26.768 31.216\\\">arbitration</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 435.185 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 437.9488 226.0582)\\\" x=\\\"0 4.448 7.112 11.56 16.008\\\">group</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 458.4097 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 461.1735 226.0582)\\\" x=\\\"0 4.448\\\">or</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.2868 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 471.0506 226.0582)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456 24.456\\\">propose</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.9607 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 502.7245 226.0582)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 507.1737 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 509.9375 226.0582)\\\" x=\\\"0 1.824 6.272 10.272 14.72\\\">local</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.4844 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 529.2482 226.0582)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608\\\">Arbiter.</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 555.0802 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 557.844 226.0582)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 562.2893 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 565.0531 226.0582)\\\" x=\\\"0 1.824\\\">it</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 217.0035)\\\" x=\\\"0 4.448 8.896 13.344 17.344 21.792 23.32 25.544 27.768 29.896 35.672 40.12 42.248 48.912 53.36 57.36 59.488 63.488 67.936 72.384 76.832 80.832 85.28 87.408 89.632 94.08 98.528 100.656 105.104 107.768 112.216 116.664 121.112\\\">doesn&apos;t, we may choose the group.</text></g><clipPath id=\\\"clip4-41\\\"><path d=\\\"M 35 137 L 128 137 L 128 215 L 35 215 L 35 137 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-41)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.2 214.3238 L 127.6 214.3238 L 127.6 137.8863 L 35.2 137.8863 L 35.2 214.3238 z \\\"/><path clip-path=\\\"url(#clip4-41)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.3 212.3238 L 123.5 212.3238 L 123.5 203.2691 L 39.3 203.2691 L 39.3 212.3238 z \\\"/><path clip-path=\\\"url(#clip4-41)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 53.191 212.3238 L 110.191 212.3238 L 110.191 202.3238 L 53.191 202.3238 L 53.191 212.3238 z \\\"/><g clip-path=\\\"url(#clip4-41)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 53.191 204.9488)\\\" x=\\\"0 7.552 12 16.448 18.576 23.024 25.688 30.136 31.96 34.184 36.848 41.296 43.52 47.968 51.968\\\">* D E M O *tes?</text></g><clipPath id=\\\"clip4-42\\\"><path d=\\\"M 127 137 L 206 137 L 206 215 L 127 215 L 127 137 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-42)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 134.4621 204.9488)\\\" x=\\\"0 5.336 10.672 16.008 18.232 20.36 24.36 29.696 36.36 41.696 43.92 46.048 50.496 53.16 55.288 59.736\\\">AAA, JAMS, or an</text></g><g clip-path=\\\"url(#clip4-42)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 140.1164 195.8941)\\\" x=\\\"0 4.448 8.896 11.56 16.008 20.456 24.904 27.032 32.368 35.032 39.48 41.304 43.528 47.976 50.64\\\">agreed Arbiter.</text></g><clipPath id=\\\"clip4-43\\\"><path d=\\\"M 205 137 L 574 137 L 574 215 L 205 215 L 205 137 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 204.9488)\\\" x=\\\"0 5.336 9.784\\\">You</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 223.8344 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 226.373 204.9488)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 241.4863 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 244.025 204.9488)\\\" x=\\\"0 4 8.448 10.272 14.72 18.72\\\">select</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 264.9703 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 267.509 204.9488)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 278.6301 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 281.1687 204.9488)\\\" x=\\\"0 5.336 12 16.448 19.112 20.936 24.936 29.384\\\">American</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 315.0047 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 317.5433 204.9488)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 19.16 23.608 25.832 27.656 32.104\\\">Arbitration</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 354.098 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 356.6367 204.9488)\\\" x=\\\"0 5.336 9.336 13.336 17.784 21.784 23.608 28.056 30.28 32.104 36.552\\\">Association</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 397.6406 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 400.1793 204.9488)\\\" x=\\\"0 2.664 5.504 10.84 16.176 21.512 24.352\\\">(&quot;AAA&quot;)</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 427.1949 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 429.7336 204.9488)\\\" x=\\\"0 2.664 7.112 9.776 14.224 18.672 23.12 25.784 30.232 34.68 39.128 41.792 46.24 50.688 55.136 59.584\\\">(1-800-778-7879)</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 491.9953 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 494.534 204.9488)\\\" x=\\\"0 4.448 6.672 8.896 13.344 15.568 17.792 20.016 25.792 31.568 37.344 39.568 44.016 48.464 51.128 53.352 57.8 60.464\\\">http://www.adr.org</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.448 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 561.9867 204.9488)\\\" x=\\\"0 4.448\\\">or</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 195.8941)\\\" x=\\\"0 4 9.336 16\\\">JAMS</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 185.8395)\\\" x=\\\"0 2.664 7.112 9.776 14.224 18.672 23.12 25.784 30.232 34.68 39.128 41.792 46.24 50.688 55.136 59.584\\\">(1-800-352-5267)</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 271.8617 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 274.6277 185.8395)\\\" x=\\\"0 4.448 6.672 8.896 13.344 15.568 17.792 20.016 25.792 31.568 37.344 39.568 41.392 45.84 52.504 56.504 60.952 65.4 68.064 70.288 74.288 78.736 85.4\\\">http://www.jamsadr.com.</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 362.2527 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 365.0186 185.8395)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 378.8038 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 381.5697 185.8395)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056\\\">parties</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 405.6283 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 408.3943 185.8395)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 423.5075 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 426.2735 185.8395)\\\" x=\\\"0 4.448 6.272 10.272\\\">also</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 440.9961 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 443.7621 185.8395)\\\" x=\\\"0 4.448 8.896 11.56 16.008\\\">agree</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 464.223 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 466.989 185.8395)\\\" x=\\\"0 1.824\\\">in</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 473.2624 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 476.0284 185.8395)\\\" x=\\\"0 5.776 8.44 10.264 12.488 14.312 18.76\\\">writing</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.2393 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 502.0053 185.8395)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 508.6771 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 511.4431 185.8395)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 515.8923 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 518.6583 185.8395)\\\" x=\\\"0 1.824 6.272 10.272 14.72\\\">local</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 535.2051 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 537.9711 185.8395)\\\" x=\\\"0 4.448 6.672 8.896 13.344 16.008 20.456 24.904 28.904\\\">attorney,</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 176.7848)\\\" x=\\\"0 2.664 7.112 9.336 11.16 13.824 18.272\\\">retired</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 232.3227 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 235.2385 176.7848)\\\" x=\\\"0 1.824 6.272 10.72 15.168 19.616\\\">judge,</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.0823 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 259.9982 176.7848)\\\" x=\\\"0 4.448\\\">or</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 267.1114 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 270.0273 176.7848)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 293.6367 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 296.5526 176.7848)\\\" x=\\\"0 1.824\\\">in</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.826 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 305.7419 176.7848)\\\" x=\\\"0 4.448 8.896 13.344\\\">good</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 323.5388 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 326.4547 176.7848)\\\" x=\\\"0 4 6.224 10.672 15.12 19.568 21.392 25.84\\\">standing</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 356.7477 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 359.6635 176.7848)\\\" x=\\\"0 5.776 7.6 9.824\\\">with</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 373.937 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 376.8529 176.7848)\\\" x=\\\"0 4.448\\\">an</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 385.7513 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 388.6672 176.7848)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 26.768 31.216\\\">arbitration</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 424.3351 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 427.251 176.7848)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456\\\">group.</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 449.9346 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 452.8505 176.7848)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.6357 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 469.5516 176.7848)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 493.1609 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 496.0768 176.7848)\\\" x=\\\"0 6.664 11.112 15.112\\\">must</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 513.4127 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 516.3286 176.7848)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944\\\">arbitrate</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 545.7232 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 548.6391 176.7848)\\\" x=\\\"0 4.448 8.896 13.344 17.792\\\">under</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 167.7301)\\\" x=\\\"0 5.336 10.672\\\">AAA</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.6078 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 228.6503 167.7301)\\\" x=\\\"0 4.448\\\">or</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 235.7636 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 238.8062 167.7301)\\\" x=\\\"0 4 9.336 16\\\">JAMS</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 260.1421 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 263.1846 167.7301)\\\" x=\\\"0 4 8.448 12.896 16.896 21.344 28.008 32.456\\\">consumer</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 298.3096 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 301.3522 167.7301)\\\" x=\\\"0 2.664 7.112 8.936 13.384 17.384\\\">rules.</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 320.9615 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 324.0041 167.7301)\\\" x=\\\"0 5.336 9.784\\\">You</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.2384 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 341.281 167.7301)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 356.3943 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 359.4368 167.7301)\\\" x=\\\"0 4.448 8.896\\\">get</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 370.5579 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 373.6004 167.7301)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 378.0497 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 381.0922 167.7301)\\\" x=\\\"0 4 8.448 12.896\\\">copy</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 397.9906 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 401.0331 167.7301)\\\" x=\\\"0 4.448\\\">of</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 407.705 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 410.7476 167.7301)\\\" x=\\\"0 2.224 6.672 11.12 15.12\\\">these</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.3179 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 433.3604 167.7301)\\\" x=\\\"0 2.664 7.112 8.936 13.384\\\">rules</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 450.7471 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 453.7897 167.7301)\\\" x=\\\"0 2.224 4.888 9.336\\\">from</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 469.7897 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 472.8322 167.7301)\\\" x=\\\"0 4 8.448 12.448\\\">such</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.7306 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 492.7732 167.7301)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456\\\">group.</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 515.4568 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 518.4993 167.7301)\\\" x=\\\"0 5.336 9.784\\\">Any</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 532.2845 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 535.327 167.7301)\\\" x=\\\"0 2.664 7.112 8.936 13.384\\\">rules</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.7137 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 555.7562 167.7301)\\\" x=\\\"0 2.224 6.672 11.12\\\">that</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 158.6754)\\\" x=\\\"0 4 8.448 12.896 15.12 16.944 18.768 22.768\\\">conflict</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 234.5922 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 237.7758 158.6754)\\\" x=\\\"0 5.776 7.6 9.824\\\">with</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 252.0492 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 255.2328 158.6754)\\\" x=\\\"0 4.448 8.896\\\">any</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 268.1312 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 271.3148 158.6754)\\\" x=\\\"0 4.448\\\">of</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 277.9867 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 281.1703 158.6754)\\\" x=\\\"0 4.448 8.896\\\">our</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 292.7328 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 295.9164 158.6754)\\\" x=\\\"0 4.448 8.896 11.56 16.008 20.456 27.12 31.568 36.016 38.24\\\">agreements</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.1625 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 341.3461 158.6754)\\\" x=\\\"0 5.776 7.6 9.824\\\">with</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.6195 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 358.8031 158.6754)\\\" x=\\\"0 4 8.448 12.896\\\">you,</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 373.9242 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 377.1078 158.6754)\\\" x=\\\"0 4.448 8.896 13.344 14.872\\\">don&apos;t</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 394.2055 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 397.389 158.6754)\\\" x=\\\"0 4.448 8.896 13.344 15.168 19.168\\\">apply.</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 418.7836 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 421.9672 158.6754)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 426.4125 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 429.5961 158.6754)\\\" x=\\\"0 2.224 6.672 11.12 15.12\\\">these</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 449.1664 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 452.35 158.6754)\\\" x=\\\"0 4.448 8.896 11.12 12.944 17.392 21.84\\\">options</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 478.1937 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 481.3773 158.6754)\\\" x=\\\"0 4.448 7.112 11.56 16.008 17.536\\\">aren&apos;t</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.139 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 504.3227 158.6754)\\\" x=\\\"0 4.448 8.448 12.896 14.72 16.544 20.992 25.44 27.264 31.712\\\">available,</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 538.264 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 541.4476 158.6754)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 554.7953 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 557.9789 158.6754)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 149.6207)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056\\\">parties</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.6586 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 236.2535 149.6207)\\\" x=\\\"0 4 8.448 12.896 14.424\\\">can&apos;t</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 252.9019 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 255.4968 149.6207)\\\" x=\\\"0 4.448 8.896 11.56 16.008\\\">agree</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.9578 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 278.5527 149.6207)\\\" x=\\\"0 4.448\\\">on</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 287.4511 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 290.046 149.6207)\\\" x=\\\"0 4.448 8.896 13.344 15.568 20.016 24.464 27.128\\\">another,</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.4015 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 321.9964 149.6207)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 326.4456 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 329.0405 149.6207)\\\" x=\\\"0 4 8.448 12.896 15.56\\\">court</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 346.8256 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 349.4205 149.6207)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 364.5338 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 367.1287 149.6207)\\\" x=\\\"0 4 8.448 12.896 17.344 21.344\\\">choose</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 392.9256 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 395.5205 149.6207)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 406.6416 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 409.2365 149.6207)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456\\\">group.</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 431.9201 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 434.515 149.6207)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 448.3001 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 450.895 149.6207)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056\\\">parties</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.9536 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 477.5485 149.6207)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 488.7985 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 491.3934 149.6207)\\\" x=\\\"0 2.224 6.672 11.12\\\">then</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 506.9637 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 509.5586 149.6207)\\\" x=\\\"0 4.448 8.896 11.12 15.568 17.392\\\">obtain</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 531.4024 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 533.9973 149.6207)\\\" x=\\\"0 4.448\\\">an</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 542.8957 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 545.4906 149.6207)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 140.566)\\\" x=\\\"0 4.448 8.896 13.344 17.792 20.456 22.584 26.584 31.032 35.032 39.48 41.608 46.056 48.72 53.168 57.616 62.064 63.592 67.592 69.72 72.384 76.832 78.656 83.104 87.104 89.328 91.456 96.792 101.24 105.24 109.688 111.816 117.152 119.816 124.264 126.088 128.312 132.76 135.424 137.552 144.216 148.664 152.664 154.888 157.016 161.464 165.912 168.136 172.584 175.248 179.248 183.696 185.824 189.824 194.272 198.72 201.384 203.512 207.96 212.408 215.072 219.52 223.968 230.632 235.08 239.528 241.752 245.752 247.88 253.656 255.48 257.704 262.152 264.28 268.728 272.728 274.952 277.08 281.528 285.528 287.656 289.88 294.328 298.776 302.776 304.904 309.352 312.016 316.464 318.592 324.368 327.032 328.856 331.08 333.304 337.752 342.2\\\">under such group&apos;s rules. Such Arbiter must enforce your agreements with us, as they are written.</text></g><clipPath id=\\\"clip4-44\\\"><path d=\\\"M 35 116 L 128 116 L 128 138 L 35 138 L 35 116 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-44)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.2 137.8863 L 127.6 137.8863 L 127.6 116.777 L 35.2 116.777 L 35.2 137.8863 z \\\"/><path clip-path=\\\"url(#clip4-44)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.3 135.8863 L 123.5 135.8863 L 123.5 117.777 L 39.3 117.777 L 39.3 135.8863 z \\\"/><path clip-path=\\\"url(#clip4-44)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.6754 135.8863 L 125.6754 135.8863 L 125.6754 125.8863 L 39.6754 125.8863 L 39.6754 135.8863 z \\\"/><g clip-path=\\\"url(#clip4-44)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 39.6754 128.5113)\\\" x=\\\"0 7.552 9.376 11.2 13.024 15.152 17.376 21.824 26.272 28.4 32.848 37.296 41.744 44.408 46.232 50.68 55.128 57.256 61.704 66.152 68.28 72.728 77.176 79\\\">Will the hearing be held</text></g><path clip-path=\\\"url(#clip4-44)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 66.9449 126.8316 L 95.9449 126.8316 L 95.9449 116.8316 L 66.9449 116.8316 L 66.9449 126.8316 z \\\"/><g clip-path=\\\"url(#clip4-44)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 66.9449 119.4567)\\\" x=\\\"0 4.448 8.896 13.344 16.008 20.456 24.456\\\">nearby?</text></g><clipPath id=\\\"clip4-45\\\"><path d=\\\"M 127 116 L 206 116 L 206 138 L 127 138 L 127 116 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-45)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 158.5461 128.5113)\\\" x=\\\"0 5.336 9.784 13.784\\\">Yes.</text></g><clipPath id=\\\"clip4-46\\\"><path d=\\\"M 205 116 L 574 116 L 574 138 L 205 138 L 205 116 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-46)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 128.5113)\\\" x=\\\"0 4.888 9.336 13.784 15.912 21.248 23.912 28.36 30.184 32.408 36.856 39.52 41.648 47.424 49.248 51.072 52.896 55.024 59.472 62.136 66.584 71.032 73.696 75.824 78.048 82.496 86.944 89.072 93.52 97.968 102.416 105.08 106.904 111.352 115.8 117.928 123.704 125.528 127.752 132.2 134.024 138.472 140.6 145.048 149.496 151.624 158.288 160.112 161.936 166.384 170.384 172.512 176.96 179.184 181.312 185.312 189.76 194.208 196.872 199 203.448 207.896 214.56 219.008 221.136 225.584 228.248 230.376 236.152 240.6 245.048 247.712 252.16 254.288 256.512 260.96 265.408 267.536 269.76 272.424 276.872 281.32 285.32 289.768 293.768 295.992 297.816 302.264 306.712 308.84 313.288 317.288 321.288 325.736 328.4 331.064 335.512 339.96\\\">The Arbiter will order the hearing within 30 miles of your home or where the transaction occurred.</text></g><clipPath id=\\\"clip4-47\\\"><path d=\\\"M 35 74 L 128 74 L 128 117 L 35 117 L 35 74 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-47)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.2 116.777 L 127.6 116.777 L 127.6 74.777 L 35.2 74.777 L 35.2 116.777 z \\\"/><path clip-path=\\\"url(#clip4-47)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.3 114.777 L 123.5 114.777 L 123.5 105.7223 L 39.3 105.7223 L 39.3 114.777 z \\\"/><path clip-path=\\\"url(#clip4-47)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 43.6695 114.777 L 119.6695 114.777 L 119.6695 104.777 L 43.6695 104.777 L 43.6695 114.777 z \\\"/><g clip-path=\\\"url(#clip4-47)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 43.6695 107.402)\\\" x=\\\"0 7.552 12 16.448 18.672 20.8 25.248 29.696 34.144 38.592 40.816 42.944 47.392 51.84 56.288 60.736 65.184 67.008 71.008\\\">What about appeals?</text></g><clipPath id=\\\"clip4-48\\\"><path d=\\\"M 127 74 L 206 74 L 206 117 L 127 117 L 127 74 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-48)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 145.2277 107.402)\\\" x=\\\"0 5.336 9.784 14.232 18.68 23.128 24.952 28.952 31.08 35.528 38.192\\\">Appeals are</text></g><g clip-path=\\\"url(#clip4-48)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 153.8098 98.3473)\\\" x=\\\"0 1.824 3.648 10.312 12.136 14.36 18.808 23.256\\\">limited.</text></g><clipPath id=\\\"clip4-49\\\"><path d=\\\"M 205 74 L 574 74 L 574 117 L 205 117 L 205 74 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 107.402)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 223.3852 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 227.8141 107.402)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608 25.136\\\">Arbiter&apos;s</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.9508 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 261.3798 107.402)\\\" x=\\\"0 4.448 8.896 12.896 14.72 18.72 20.544 24.992\\\">decision</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.8251 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 295.2541 107.402)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 306.5041 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 310.933 107.402)\\\" x=\\\"0 4.448\\\">be</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.8314 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 324.2604 107.402)\\\" x=\\\"0 2.224 4.048 8.496 12.944 14.768\\\">final.</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 341.2526 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 345.6815 107.402)\\\" x=\\\"0\\\">A</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.0175 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 355.4464 107.402)\\\" x=\\\"0 4.448 8.896 11.56 13.784\\\">party</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 373.2316 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 377.6605 107.402)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 392.7738 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 397.2028 107.402)\\\" x=\\\"0 2.224 4.048 5.872\\\">file</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 407.5231 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 411.952 107.402)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 423.0731 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 427.5021 107.402)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608 25.136\\\">Arbiter&apos;s</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.6388 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 461.0678 107.402)\\\" x=\\\"0 4.448 10.224 14.672 17.336\\\">award</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 482.8568 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 487.2858 107.402)\\\" x=\\\"0 5.776 7.6 9.824\\\">with</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.5592 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 505.9882 107.402)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 517.1093 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 521.5382 107.402)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456\\\">proper</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 544.6632 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 549.0922 107.402)\\\" x=\\\"0 4 8.448 12.896 15.56 17.784\\\">court.</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 98.3473)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 19.16 23.608 25.832 27.656 32.104\\\">Arbitration</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 246.1547 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 248.4088 98.3473)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.6588 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 261.913 98.3473)\\\" x=\\\"0 4 8.448 10.272 14.272\\\">solve</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.6356 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 282.8898 98.3473)\\\" x=\\\"0 4.448 8.896 13.344 17.792 22.24 24.064\\\">appeals</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 310.9601 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 313.2142 98.3473)\\\" x=\\\"0 4.448\\\">of</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.8861 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 322.1403 98.3473)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 326.5895 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 328.8436 98.3473)\\\" x=\\\"0 4 10.664 15.112 16.936 18.76 21.424 25.424 27.248 31.696 33.52 40.184\\\">small-claims</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 373.0311 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 375.2853 98.3473)\\\" x=\\\"0 4 8.448 12.896 15.56\\\">court</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.0704 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 395.3246 98.3473)\\\" x=\\\"0 1.824 6.272 10.72 15.168 19.616 26.28 30.728 35.176 37.4\\\">judgement.</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.9535 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 437.2077 98.3473)\\\" x=\\\"0\\\">A</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 442.5436 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 444.7977 98.3473)\\\" x=\\\"0 4.448 8.896 11.56 13.784\\\">party</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 462.5829 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 464.837 98.3473)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 479.9503 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 482.2045 98.3473)\\\" x=\\\"0 4.448 8.896 13.344 17.792 22.24\\\">appeal</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 506.2748 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 508.5289 98.3473)\\\" x=\\\"0 4.448 8.896 13.344 17.792\\\">under</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 528.9899 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 531.244 98.3473)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 542.3651 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 544.6193 98.3473)\\\" x=\\\"0 4.888 10.224 15.56\\\">FAA.</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 562.4005 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 564.6547 98.3473)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 89.2926)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 220.7211 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 223.3349 89.2926)\\\" x=\\\"0 4.448 11.112 15.56 20.008 24.456\\\">amount</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 250.0185 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 252.6324 89.2926)\\\" x=\\\"0 1.824\\\">in</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 258.9058 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 261.5196 89.2926)\\\" x=\\\"0 4 8.448 12.896 15.12 17.784 22.232 26.232 30.68 33.344 37.344\\\">controversy</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.8673 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 305.4811 89.2926)\\\" x=\\\"0 4.448 8.448 12.448 16.896 21.344 25.792\\\">exceeds</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.278 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 337.8918 89.2926)\\\" x=\\\"0 4.448 8.896 11.12 15.568 20.016 24.464 26.688 31.136 35.584\\\">$1,500.00,</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.7043 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 378.3182 89.2926)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 382.7674 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 385.3812 89.2926)\\\" x=\\\"0 4.448 8.896 11.56 13.784\\\">party</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.1664 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 405.7802 89.2926)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 420.8935 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 423.5074 89.2926)\\\" x=\\\"0 4.448 8.896 13.344 17.792 22.24\\\">appeal</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.5777 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 450.1915 89.2926)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 461.3126 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 463.9264 89.2926)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608 25.136\\\">Arbiter&apos;s</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 493.0632 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 495.677 89.2926)\\\" x=\\\"0 2.224 4.048 8.496 12.944 14.768 19.216 23.664\\\">finding.</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.5676 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 524.1815 89.2926)\\\" x=\\\"0 5.336 9.784 13.784\\\">Such</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 542.4158 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 545.0297 89.2926)\\\" x=\\\"0 4.448 8.896 13.344 17.792 22.24\\\">appeal</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 80.2379)\\\" x=\\\"0 5.776 7.6 9.424 11.248 13.376 17.824 22.272 24.4 26.624 31.072 33.2\\\">will be to a</text></g><clipPath id=\\\"clip4-50\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 272.152 L 128.1 272.152 L 128.1 271.152 L 34.7 271.152 L 34.7 272.152 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 271.152 L 35.7 271.152 L 35.7 214.8238 L 34.7 214.8238 L 34.7 271.152 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.1 272.152 L 206 272.152 L 206 271.152 L 128.1 271.152 L 128.1 272.152 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127.1 271.152 L 128.1 271.152 L 128.1 214.8238 L 127.1 214.8238 L 127.1 271.152 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 272.152 L 573.7 272.152 L 573.7 271.152 L 206 271.152 L 206 272.152 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.7 271.152 L 573.7 271.152 L 573.7 214.8238 L 572.7 214.8238 L 572.7 271.152 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 271.152 L 206 271.152 L 206 214.8238 L 205 214.8238 L 205 271.152 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 214.8238 L 128.1 214.8238 L 128.1 213.8238 L 34.7 213.8238 L 34.7 214.8238 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 213.8238 L 35.7 213.8238 L 35.7 138.3863 L 34.7 138.3863 L 34.7 213.8238 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.1 214.8238 L 206 214.8238 L 206 213.8238 L 128.1 213.8238 L 128.1 214.8238 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127.1 213.8238 L 128.1 213.8238 L 128.1 138.3863 L 127.1 138.3863 L 127.1 213.8238 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 214.8238 L 573.7 214.8238 L 573.7 213.8238 L 206 213.8238 L 206 214.8238 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.7 213.8238 L 573.7 213.8238 L 573.7 138.3863 L 572.7 138.3863 L 572.7 213.8238 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 213.8238 L 206 213.8238 L 206 138.3863 L 205 138.3863 L 205 213.8238 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 138.3863 L 128.1 138.3863 L 128.1 137.3863 L 34.7 137.3863 L 34.7 138.3863 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 137.3863 L 35.7 137.3863 L 35.7 117.277 L 34.7 117.277 L 34.7 137.3863 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.1 138.3863 L 206 138.3863 L 206 137.3863 L 128.1 137.3863 L 128.1 138.3863 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127.1 137.3863 L 128.1 137.3863 L 128.1 117.277 L 127.1 117.277 L 127.1 137.3863 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 138.3863 L 573.7 138.3863 L 573.7 137.3863 L 206 137.3863 L 206 138.3863 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.7 137.3863 L 573.7 137.3863 L 573.7 117.277 L 572.7 117.277 L 572.7 137.3863 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 137.3863 L 206 137.3863 L 206 117.277 L 205 117.277 L 205 137.3863 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 117.277 L 128.1 117.277 L 128.1 116.277 L 34.7 116.277 L 34.7 117.277 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 75.277 L 128.1 75.277 L 128.1 74.277 L 34.7 74.277 L 34.7 75.277 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 116.277 L 35.7 116.277 L 35.7 75.277 L 34.7 75.277 L 34.7 116.277 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.1 117.277 L 206 117.277 L 206 116.277 L 128.1 116.277 L 128.1 117.277 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.1 75.277 L 206 75.277 L 206 74.277 L 128.1 74.277 L 128.1 75.277 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127.1 116.277 L 128.1 116.277 L 128.1 75.277 L 127.1 75.277 L 127.1 116.277 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 117.277 L 573.7 117.277 L 573.7 116.277 L 206 116.277 L 206 117.277 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 75.277 L 573.7 75.277 L 573.7 74.277 L 206 74.277 L 206 75.277 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.7 116.277 L 573.7 116.277 L 573.7 75.277 L 572.7 75.277 L 572.7 116.277 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 116.277 L 206 116.277 L 206 75.277 L 205 75.277 L 205 116.277 z \\\"/><g clip-path=\\\"url(#clip4-50)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 36.5264)\\\" x=\\\"0 6.498 11.997 14.391 16.785 21.789 26.793 29.295 34.299 39.303 44.307 504 506.3906 508.7812 511.1719 513.5625 515.9531 518.3438 520.7344 523.125 525.5156\\\">UT  07/2019          </text></g><g clip-path=\\\"url(#clip4-50)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 26.3398)\\\" x=\\\"0 6.003 11.007 16.011 21.015\\\">Page </text></g><g clip-path=\\\"url(#clip4-50)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 55.8097 26.3398)\\\" x=\\\"0\\\">5</text></g><g clip-path=\\\"url(#clip4-50)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.815 26.3398)\\\" x=\\\"0 2.394 7.398 9.9\\\"> of </text></g><g clip-path=\\\"url(#clip4-50)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 73.1021 26.3398)\\\" x=\\\"0\\\">7</text></g><g clip-path=\\\"url(#clip4-50)\\\"><text stroke=\\\"none\\\" fill=\\\"#d9d9d9\\\" style=\\\"font-family:f4-0; font-size:54pt; white-space:pre\\\" transform=\\\"matrix(0.707 0.707 0.707 -0.707 135.6027 198.5094)\\\" x=\\\"0 56.016 96.048 136.08 176.112 216.144 236.16 284.184 324.216 344.232 364.248 416.232 456.264 480.24\\\">Qoppa Software</text></g><g clip-path=\\\"url(#clip4-50)\\\"><text stroke=\\\"none\\\" fill=\\\"#002ba6\\\" style=\\\"font-family:f4-0; font-size:9pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.932 772)\\\" x=\\\"0 9.336 16.008 22.68 29.352 36.024 39.36 47.364 54.036 57.372 60.708 69.372 76.044 80.04 86.712 90.048 94.044 97.38 104.712 111.384 115.38 118.716 126.72 132.72 139.392 142.056 148.728 155.4 158.736 161.4 168.072 174.744 178.08 187.416 194.088 196.752 202.752 206.088 210.084 213.42 220.092 223.428 226.764 233.436 239.436 242.772 246.108 249.444 258.108 266.772 275.436 278.772 285.444 292.116 298.788 305.46 312.132 315.468 321.468 328.14\\\">Qoppa Software - For Evaluation Only - https://www.qoppa.com</text></g></g></svg></svg></g></svg><br>\\n<?xml version='1.0' encoding='UTF-8'?><svg id=\\\"qoppa_document\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" version=\\\"1.1\\\" xmlns=\\\"http://www.w3.org/2000/svg\\\" xmlns:xlink=\\\"http://www.w3.org/1999/xlink\\\"><!-- jPDFWeb v2019R1.03 - Demo Version --><style>title p { display: block; }</style><g id=\\\"qoppa_viewxform\\\" transform=\\\"matrix(1 0 0 1 0 0)\\\"><style type=\\\"text/css\\\">@font-face {font-family:f5-0;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f5-1;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f5-2;src:url(\\\"data:application/font-woff;charset=utf-8;base64,d09GRgABAAAAAAp4AAoAAAAADawAAQABAAAAAAAAAAAAAAAAAAAAAAAAAABPUy8yAAAA9AAAADcAAABWWd9ZMmNtYXAAAAEsAAAAbAAAAIwCiwM0Z2x5ZgAAAZgAAAdLAAAJ6ArdyapoZWFkAAAI5AAAADEAAAA2GI9khmhoZWEAAAkYAAAAIAAAACQGNwJvaG10eAAACTgAAABeAAAAgDkXBShsb2NhAAAJmAAAAEIAAABCI1gg9G1heHAAAAncAAAAGAAAACAAIwA9bmFtZQAACfQAAAB3AAAA1A1JKK1wb3N0AAAKbAAAAAwAAAAgAAMAAHicY2Bk8mKcwMDKwMDUxbSbARlwMeogc/8DATI/MCDAkUEBCG8y3fyvxxDFdJPhEkwOAMlSDLoAeJxjYGBgZGAGYgYGHgYWhgYgLcMgABThYVBg0GewYnBj8GcIZAhmSGRIZkhjyGQoZ6j8/x+oSoFBFyjriiSbypDBkAOS/f/4//X/Z/8f/r/7/67/O/+v+b/6/6r/K/8v/78MbA9OAAAj1iOqeJxtVktsG9cVnXuHpChTEr/DjyRSHI44/IlUpeGQkvgTbepPkZJlUTQlWVLNWq2h2rHrohsv4iJo4P6SOqmRxIukDYqiWRTtJmgBN0CCBu1CRhZd1E5bdFOgdtuVG7SAAY16Z0gmClAOMPPmzX33nnfueUdigPEzf4QEjDIswwDHy5BQnsJovc7QK9Og+3tMU/2W5gT5vSb91Hnm+DE48VCd5+wS+9HcR27829EgRWNrDRroWxfD2GWJs9LKRrMJP242lQ9a66sUeInWm7SancuK68p5+K5yA3519AQP1/+0/nSdgih+heIlGnZ/Gm8VrCgpN2FF+cUOHtb+sq7cV0OpfuL4E/wzPmTMzBBFO11Ol6HL0CWG6EqntDHNSal0Kk0z8P07W9usbnfv7t3tbYT6xtuXTxcRSzPPXcvnAUslfIjN5i/f2bmA7MUv/fT1y5fLUC7f+db8Aq6svvjCwgKj1Rw9/j0+wUfMIDN5oqb61ArTi6A+qahLpA8G+jDeAhBKq1EqmpSK5m5jk0WfL+Hz+Ya80aAoJKKR9A8IIjQ2X9uanWMxm7k96HSa3S63yxUIBPiwkwPIZvCRbn//JxdmZkdcVktP0eLiBtzdp/Bi890fXrq0DDMzr3/93DnWoDeaTaf0M91Wa38glz17ZW1N63P8+N+4T5yN0QuBEsQ2+vZOQoE20LSzjbq9m/Q4BcB/DInEcm58nGUnJ4vNtbN6Q21j58ZGravRVSisnU4m2e7trYWyLCMuLlz9yuKCEZ7N8Ty43cW009nriMZuXB/7AkxMPW/cCooIPt9M2eOxcpHIxs7YGMjyV1WOReqrHh1MjMmQrlQqCVAXp3IpnCBZ1rikS1YnA7QRvdoL9XK0+i5zxenaQSIBaDDYt7r1OhhNJKbOjcQwl6vFQyEv+PlMjueNoIv4+WhUFNE7OLoXDML1XZ5HiEaXngwT82arxRK22TASmykHg106o7FbjLuc4HInL/ZRPb3VIosODrNZjePg8SfwT7QxfItjFa8GXsV6UqKaIOB7vT6fND88jEP+hsz7DRuWqUztQNXk1OTzSxNpC+xJA/2AqfTGcjbLQnB4wrRNJMLs3IsHy2UdRCKrLW2Kx0+JNydjZAKfVTarIpXG26UFQ7u0yim8g+HwdCESBoMhFpsfDQSs5/vzhfWtuXkdCe3WfLWCIBcjEcRYLDdfH4l7vWOmRljEfOHefqWi1+VzP6f9GqlamjQ1cEJTnMQJdHIFWZLFjnqiRrPZ1s85oNmsVyokigtWj9uGt1hA6O2LT5WUPHxQWuXjCT2yekbj8gzd/kHn3UVKsKbanFHiTstpeM8nhqS1xCjUYdA7nhdFqOOhcszbbQAj8fPKj2Az7vPRVteVv1ImVHMy9zRPU32LgKoJz9Tph4fNLx49I0vr1G7HMZJVogg8PErSfJFhCLKNiWrzXAfVCXSpdtdpmGwNXdZidUAU87IgWAbEYHExHCK8dkc6z/vrDk6a9fpIpQthpxPA7YlEPG7A+Mhp5TtQj/F+xFAorbwPF8PeQWRHR/PKI8JR0rixadxwn+dGaHPzylAonKvSCagD9S4fVLkxLERUJ4kn1pU3YSXj84rBivIHbdPI8HT2uinn5zxVOOGpXOdsqZ7qvZHNqN555WqhAJjJ3FwUxXB4aWVYgHAIbexS+ca3z5yBublvXl1eLmEqtbGblNlsZrmRkluaLR1PooHqOZjhzi7GTxg5iUgduxwtfmUi9lUuGJzYzuVZmMo8N8LzzvrH84EAHYvZJf8Q+P1oKAVIbKXS7YNqRQc2u1fBB5O6YrFSkyRgC/nyYjbTPi+T8LhTWy/I7aKqr0jqzmVJc/DO0aVOwuO6i+dj1zJTmM9dSAeDzpWPV6gkDPnLM8FhCAR+p3hJd7pK9eB2qQQuZ6A0qctkF8v5AguSVKsUiy1tTdOtQbW5k73r/AlRdfMyN9Af8zg4u89iMXMJj4caV4263QBGo2lV9TI2FksrD7W+ATNEnvOA8pGv25NtErs6Qjhh8F3/z+DjSWmvkkxa6jreH40KAqLb4/za3CySo+3WJib6NrqDQXlEGEb9VGY6GwrDC9lwGHm+2pOwO/r6Iv6eXt2gb6i2Go1AKFzvzbvdCA7HWNRitph5P+GzHv8XevG+6hF2zRscbQgaKNWVNK/4Wb1u7uNOdRtNPY4+s308IMD0NN5/t6S8HzxlQgBgqyw90OOpwmLpVotL2vvfiQfNI9RuqXnpwH7a0bT1DXS6StZ0yliv9ofDU3uRKKJB+XWSrN4w0H8TBo6eVUIeD7CSVIFNytlLiR9TTmJ3ACVWYC+//Grjt2c/pFW78NZnHqEjIT2glx4tbgAo1AQCu3P9SmP/G7W3N/e/vPUWrbkEbyjX4KWjZ/CScq2z1nKcgH+1cNO6NtZRaP/TUiAwdnjl/CNOGC5ZTD193b09Jotot5u4D3fuoOHoN7lYDIFl2TUdIthtQxNUaOt/bprEGQB4nGNgZGBgAOKDhy+vj+e3+crAzfwCKMJw21zgLIL+r8fMyHQTqI6DgQkkCgBlUwuTAAAAeJxjYGRgYLr5X48hitmRgeH/fWZGBqAIClAAAHbABKt4nGNggABGXyAWA9MKQDoKzAbSTLMZ/JmSGQKYuRj0QRjI12XSYVBj/MKgDqTVgWo4gLQzwz0IZnZkcATyXYBYGUqrAc10AKqXB6oVBPKdgGxepksMLEBaAABlFhBuAAAAAAAAAAAAAAAAAA4AGgAoADoAUgBoAKIBAgFUAbQB8AIsAloChAKYAqQC6AMSA0oDiAPGA+4EPgRsBJYEqgTIBPQAAHicY2BkYGBQYLBhYGIAAUYGNAAACboAYXicbco9C4IAEMbxv6/Z6tTo4BhRX8ChFkcnB7ewMEE0VIK+vQ94m3Lc8bvnDjhQ4eH4RyBWr3bk2OwSkZo9pWezL2fmgBOFOVT+4cHAlz8jLY32mZw3HT/NWVnNk7t+Ol47l21SyiOTtoGehBsXrqrN5wJrcRoTAHicY2BmwAsAAH0ABA==\\\");}</style><svg id=\\\"qoppa_page_p5\\\" class=\\\"qoppa_page\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\"><rect class=\\\"qoppa_pageborder\\\" x=\\\"0.5pt\\\" y=\\\"0.5pt\\\" width=\\\"611pt\\\" height=\\\"791pt\\\" fill=\\\"none\\\" /><svg class=\\\"qoppa_pagecontents\\\" x=\\\"0pt\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" viewBox=\\\"0 0 612 792\\\" ><g class=\\\"qoppa_contentstream\\\" transform=\\\"matrix(1 0 0 -1 0 792)\\\" fill=\\\"black\\\" stroke=\\\"black\\\" stroke-width=\\\"1\\\" stroke-linecap=\\\"butt\\\" stroke-linejoin=\\\"miter\\\" stroke-miterlimit=\\\"10\\\"><clipPath id=\\\"clip5-1\\\"><path d=\\\"M 35 727 L 128 727 L 128 770 L 35 770 L 35 727 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-1)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.2 769.7 L 127.6 769.7 L 127.6 727.7 L 35.2 727.7 L 35.2 769.7 z \\\"/><clipPath id=\\\"clip5-2\\\"><path d=\\\"M 205 727 L 574 727 L 574 770 L 205 770 L 205 727 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 760.325)\\\" x=\\\"0 4.448 7.112 12.448 15.112 19.56 21.384 23.608 28.056\\\">3-Arbiter</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 240.3227 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 243.109 760.325)\\\" x=\\\"0 4.448 8.896 13.344 17.792\\\">panel</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.7301 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 265.5165 760.325)\\\" x=\\\"0 2.224 4.888 9.336\\\">from</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.5165 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 284.3029 760.325)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 295.424 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 298.2103 760.325)\\\" x=\\\"0 4 8.448 15.112\\\">same</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 317.7728 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 320.5592 760.325)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 26.768 31.216\\\">arbitration</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 356.2272 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 359.0136 760.325)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456\\\">group.</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 381.6972 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 384.4835 760.325)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 398.2687 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 401.0551 760.325)\\\" x=\\\"0 4.448 8.896 13.344 17.792 22.24\\\">appeal</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 425.1254 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 427.9118 760.325)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 439.1618 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 441.9481 760.325)\\\" x=\\\"0 4.448\\\">be</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 450.8466 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 453.6329 760.325)\\\" x=\\\"0 4.448\\\">de</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 462.5314 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 465.3178 760.325)\\\" x=\\\"0 4.448 8.896 12.896 17.344\\\">novo,</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.8881 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 487.6745 760.325)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.0221 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 503.8085 760.325)\\\" x=\\\"0 4 8.448 10.272 14.272 18.72\\\">solved</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.9804 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 529.7667 760.325)\\\" x=\\\"0 4.448\\\">by</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 538.216 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 541.0023 760.325)\\\" x=\\\"0 6.664 11.112 12.936 17.384 20.048 21.872 24.096\\\">majority</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 751.2703)\\\" x=\\\"0 4 8.448 10.672 15.12\\\">vote.</text></g><clipPath id=\\\"clip5-3\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-3)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 770.2 L 128.1 770.2 L 128.1 769.2 L 34.7 769.2 L 34.7 770.2 z \\\"/><path clip-path=\\\"url(#clip5-3)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 728.2 L 128.1 728.2 L 128.1 727.2 L 34.7 727.2 L 34.7 728.2 z \\\"/><path clip-path=\\\"url(#clip5-3)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 769.2 L 35.7 769.2 L 35.7 728.2 L 34.7 728.2 L 34.7 769.2 z \\\"/><path clip-path=\\\"url(#clip5-3)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.1 770.2 L 206 770.2 L 206 769.2 L 128.1 769.2 L 128.1 770.2 z \\\"/><path clip-path=\\\"url(#clip5-3)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.1 728.2 L 206 728.2 L 206 727.2 L 128.1 727.2 L 128.1 728.2 z \\\"/><path clip-path=\\\"url(#clip5-3)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127.1 769.2 L 128.1 769.2 L 128.1 728.2 L 127.1 728.2 L 127.1 769.2 z \\\"/><path clip-path=\\\"url(#clip5-3)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 770.2 L 573.7 770.2 L 573.7 769.2 L 206 769.2 L 206 770.2 z \\\"/><path clip-path=\\\"url(#clip5-3)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 728.2 L 573.7 728.2 L 573.7 727.2 L 206 727.2 L 206 728.2 z \\\"/><path clip-path=\\\"url(#clip5-3)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.7 769.2 L 573.7 769.2 L 573.7 728.2 L 572.7 728.2 L 572.7 769.2 z \\\"/><path clip-path=\\\"url(#clip5-3)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 769.2 L 206 769.2 L 206 728.2 L 205 728.2 L 205 769.2 z \\\"/><g clip-path=\\\"url(#clip5-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 241.2386 715.4812)\\\" x=\\\"0 6.67 10 15.56 17.84 20.62 23.95 29.51 32.29 34.57 40.13 45.69 48.35 54.46 60.02 65.58 70.58 73.24 78.8 84.36 89.92 92.58 99.25 106.47 112.03 115.36 120.92\\\">Ar* D E M O *ees and Awards</text></g><clipPath id=\\\"clip5-4\\\"><path d=\\\"M 35 680 L 128 680 L 128 705 L 35 705 L 35 680 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-4)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.6 704.277 L 127.5 704.277 L 127.5 680.277 L 35.6 680.277 L 35.6 704.277 z \\\"/><path clip-path=\\\"url(#clip5-4)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.7 700.777 L 123.4 700.777 L 123.4 682.6676 L 39.7 682.6676 L 39.7 700.777 z \\\"/><path clip-path=\\\"url(#clip5-4)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 52.677 700.777 L 110.677 700.777 L 110.677 690.777 L 52.677 690.777 L 52.677 700.777 z \\\"/><g clip-path=\\\"url(#clip5-4)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 52.677 693.4019)\\\" x=\\\"0 7.552 9.376 11.2 13.024 15.152 20.928 25.376 27.504 31.952 36.4 40.4 44.848 49.296 53.296\\\">Will we advance</text></g><path clip-path=\\\"url(#clip5-4)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 51.093 691.7223 L 112.093 691.7223 L 112.093 681.7223 L 51.093 681.7223 L 51.093 691.7223 z \\\"/><g clip-path=\\\"url(#clip5-4)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 51.093 684.3473)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 19.16 23.608 25.832 27.656 32.104 36.552 38.68 43.568 48.016 52.464 56.464\\\">Arbitration Fees?</text></g><clipPath id=\\\"clip5-5\\\"><path d=\\\"M 127 680 L 206 680 L 206 705 L 127 705 L 127 680 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-5)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 135.7422 693.4019)\\\" x=\\\"0 5.336 9.784 13.784 16.008 18.136 22.584 27.032 29.256 31.384 35.384 39.832 44.28 46.408 53.072 57.52\\\">Yes, but you may</text></g><g clip-path=\\\"url(#clip5-5)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 148.541 684.3473)\\\" x=\\\"0 4.448 8.896 12.896 15.024 19.024 23.472 27.472 29.696 33.696\\\">pay costs.</text></g><clipPath id=\\\"clip5-6\\\"><path d=\\\"M 205 680 L 573 680 L 573 705 L 205 705 L 205 680 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 693.4019)\\\" x=\\\"0 7.552\\\">We</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 221.6 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 224.0728 693.4019)\\\" x=\\\"0 4.448 8.896 12.896 17.344 21.792 25.792\\\">advance</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 254.3189 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 256.7917 693.4019)\\\" x=\\\"0 4 8.448 12.896\\\">your</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 272.3542 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 274.827 693.4019)\\\" x=\\\"0 2.84 8.176 10.84 15.288 17.112 19.336 22 26.448 28.672 30.496 34.944\\\">&quot;Arbitration</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 314.2216 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 316.6944 693.4019)\\\" x=\\\"0 4.888 9.336 13.784 17.784\\\">Fees&quot;</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 337.3194 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 339.7922 693.4019)\\\" x=\\\"0 1.824\\\">if</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 343.8391 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 346.3119 693.4019)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.2103 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 361.6831 693.4019)\\\" x=\\\"0 4.448 8.448\\\">ask</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 374.1323 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 376.6051 693.4019)\\\" x=\\\"0 4.448\\\">us</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 385.0544 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 387.5272 693.4019)\\\" x=\\\"0 2.224 6.672\\\">to.</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 396.4217 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 398.8945 693.4019)\\\" x=\\\"0 4.888 9.336 11.16\\\">This</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 414.0547 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 416.5275 693.4019)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44\\\">includes</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 445.9728 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 448.4456 693.4019)\\\" x=\\\"0 2.224 4.048 5.872 7.696 12.144 16.592\\\">filing,</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.262 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 469.7348 693.4019)\\\" x=\\\"0 4.448 8.896 15.56 17.384 21.832 23.656 27.656 29.88 32.544 36.992 39.216 41.04 45.04 49.488\\\">administrative,</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.4497 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 523.9225 693.4019)\\\" x=\\\"0 4.448 8.896 13.344 16.008 17.832 22.28 26.728\\\">hearing,</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.8795 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 555.3523 693.4019)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 684.3473)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608 25.136 29.136 31.264 33.488 37.936 42.384 46.384 48.608 50.736 56.072 60.52 64.968 67.096 71.544 75.992 79.992 82.12 86.12 90.568 95.016 97.68 99.808 104.256 106.48 108.704 113.152 115.816 120.264 124.712 128.712 130.84 133.064 137.512 141.96 145.96 148.088 152.536 156.984 161.432 163.56 168.008 170.232 174.68 179.128 181.792 183.92 188.368 192.368 196.816 201.264 205.712 209.712 214.16 218.16\\\">Arbiter&apos;s fees. You pay your attorney fees and other expenses.</text></g><clipPath id=\\\"clip5-7\\\"><path d=\\\"M 35 656 L 128 656 L 128 681 L 35 681 L 35 656 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-7)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.6 680.277 L 127.5 680.277 L 127.5 656.6769 L 35.6 656.6769 L 35.6 680.277 z \\\"/><path clip-path=\\\"url(#clip5-7)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.7 676.277 L 123.4 676.277 L 123.4 658.1676 L 39.7 658.1676 L 39.7 676.277 z \\\"/><path clip-path=\\\"url(#clip5-7)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 50.0715 676.277 L 113.0715 676.277 L 113.0715 666.277 L 50.0715 666.277 L 50.0715 676.277 z \\\"/><g clip-path=\\\"url(#clip5-7)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 50.0715 668.9019)\\\" x=\\\"0 5.336 8 12.448 14.576 19.024 23.472 30.136 34.584 39.032 43.48 47.48 49.608 54.056 58.504\\\">Are damages and</text></g><path clip-path=\\\"url(#clip5-7)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 40.4641 667.2223 L 123.4641 667.2223 L 123.4641 657.2223 L 40.4641 657.2223 L 40.4641 667.2223 z \\\"/><g clip-path=\\\"url(#clip5-7)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.4641 659.8473)\\\" x=\\\"0 4.448 6.672 8.896 13.344 16.008 20.456 24.904 28.904 31.032 33.256 37.704 42.152 46.152 48.28 52.728 57.176 61.176 65.176 67 71.448 73.272 77.72\\\">attorney fees possible?</text></g><clipPath id=\\\"clip5-8\\\"><path d=\\\"M 127 656 L 206 656 L 206 681 L 127 681 L 127 656 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 139.625 668.9019)\\\" x=\\\"0 5.336 9.784 13.784 16.008 18.136 19.96 22.184 24.312 28.76 30.584 32.408 36.856 42.632 47.08 51.528\\\">Yes, if allowed.</text></g><clipPath id=\\\"clip5-9\\\"><path d=\\\"M 205 656 L 573 656 L 573 681 L 205 681 L 205 656 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 668.9019)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 223.3852 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 225.9124 668.9019)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 249.5218 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 252.049 668.9019)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 267.1623 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 269.6895 668.9019)\\\" x=\\\"0 4.448 10.224 14.672 17.336\\\">award</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.4786 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 294.0058 668.9019)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 305.1269 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 307.6542 668.9019)\\\" x=\\\"0 4 8.448 15.112\\\">same</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 327.2167 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 329.7439 668.9019)\\\" x=\\\"0 4.448 8.896 15.56 20.008 24.456 28.904\\\">damages</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 362.6541 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 365.1813 668.9019)\\\" x=\\\"0 4.448\\\">as</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 373.6305 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 376.1578 668.9019)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.607 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 383.1342 668.9019)\\\" x=\\\"0 4 8.448 12.896 15.56 17.784\\\">court.</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.142 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 405.6693 668.9019)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608\\\">Arbiters</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 433.2786 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 435.8059 668.9019)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 450.9192 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 453.4464 668.9019)\\\" x=\\\"0 4.448 10.224 14.672 17.336\\\">award</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 475.2355 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 477.7627 668.9019)\\\" x=\\\"0 2.664 7.112 11.56 15.56 20.008 24.456 28.904 33.352 35.176\\\">reasonable</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 517.3955 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 519.9227 668.9019)\\\" x=\\\"0 4.448 6.672 8.896 13.344 16.008 20.456 24.904\\\">attorney</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 548.829 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 551.3562 668.9019)\\\" x=\\\"0 2.224 6.672 11.12 15.12\\\">fees,</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 659.8473)\\\" x=\\\"0 4.448 8.896 13.344 15.472 19.92 23.92 28.368 32.816 37.264 41.264 45.712 49.712 51.936 54.064 55.888 58.112 60.24 64.688 66.512 68.336 72.784 78.56 83.008 87.456 89.584 94.032 98.032 100.16 101.984 106.432 112.208\\\">and expenses, * D E M O *by law.</text></g><clipPath id=\\\"clip5-10\\\"><path d=\\\"M 35 633 L 128 633 L 128 657 L 35 657 L 35 633 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-10)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.6 656.6769 L 127.5 656.6769 L 127.5 633.077 L 35.6 633.077 L 35.6 656.6769 z \\\"/><path clip-path=\\\"url(#clip5-10)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.7 652.6769 L 123.4 652.6769 L 123.4 634.5676 L 39.7 634.5676 L 39.7 652.6769 z \\\"/><path clip-path=\\\"url(#clip5-10)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 40.675 652.6769 L 124.675 652.6769 L 124.675 642.6769 L 40.675 642.6769 L 40.675 652.6769 z \\\"/><g clip-path=\\\"url(#clip5-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 645.3019)\\\" x=\\\"0 7.552 9.376 11.2 13.024 15.152 19.152 23.6 28.048 30.176 34.624 39.072 43.072 45.2 50.536 53.2 57.648 59.472 61.696 64.36 68.808 71.032 72.856 77.304\\\">Will you pay Arbitration</text></g><path clip-path=\\\"url(#clip5-10)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 52.7473 643.6223 L 110.7473 643.6223 L 110.7473 633.6223 L 52.7473 633.6223 L 52.7473 643.6223 z \\\"/><g clip-path=\\\"url(#clip5-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 52.7473 636.2473)\\\" x=\\\"0 4.888 9.336 13.784 17.784 19.912 21.736 23.96 26.088 30.088 34.536 38.984 41.112 46.888 48.712 53.16\\\">Fees if you win?</text></g><clipPath id=\\\"clip5-11\\\"><path d=\\\"M 127 633 L 206 633 L 206 657 L 127 657 L 127 633 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 160.2754 645.3019)\\\" x=\\\"0 5.776 10.224\\\">No.</text></g><clipPath id=\\\"clip5-12\\\"><path d=\\\"M 205 633 L 573 633 L 573 657 L 205 657 L 205 633 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 645.3019)\\\" x=\\\"0 2.224 4.448 6.576 8.8 13.248 17.696 19.824 25.16 27.824 32.272 34.096 36.32 40.768 43.432 45.56 50.008 55.784 60.232 62.896 67.344 71.344 73.472 77.472 81.92 86.368 88.496 90.72 95.168 99.616 104.064 108.064 110.288 112.416 116.416 120.864 125.312 127.44 131.888 136.336 140.784 142.312 144.536 146.664 149.328 153.776 155.6 162.264 166.712 171.16 173.824 177.824 182.272 184.4 188.848 192.848 194.976 197.2 201.648 206.096 208.224 213.56 216.224 220.672 222.496 224.72 227.384 231.832 234.056 235.88 240.328 244.776 246.904 251.792 256.24 260.688 264.688\\\">If the Arbiter awards you funds, you don&apos;t reimburse us the Arbitration Fees.</text></g><clipPath id=\\\"clip5-13\\\"><path d=\\\"M 35 601 L 128 601 L 128 634 L 35 634 L 35 601 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-13)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.6 633.077 L 127.5 633.077 L 127.5 601.9129 L 35.6 601.9129 L 35.6 633.077 z \\\"/><path clip-path=\\\"url(#clip5-13)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.7 629.077 L 123.4 629.077 L 123.4 610.9676 L 39.7 610.9676 L 39.7 629.077 z \\\"/><path clip-path=\\\"url(#clip5-13)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 51.1711 629.077 L 112.1711 629.077 L 112.1711 619.077 L 51.1711 619.077 L 51.1711 629.077 z \\\"/><g clip-path=\\\"url(#clip5-13)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 51.1711 621.702)\\\" x=\\\"0 7.552 9.376 11.2 13.024 15.152 19.152 23.6 28.048 30.176 34.624 38.624 43.072 45.736 47.864 52.312 56.76\\\">Will you ever pay</text></g><path clip-path=\\\"url(#clip5-13)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 51.093 620.0223 L 112.093 620.0223 L 112.093 610.0223 L 51.093 610.0223 L 51.093 620.0223 z \\\"/><g clip-path=\\\"url(#clip5-13)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 51.093 612.6473)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 19.16 23.608 25.832 27.656 32.104 36.552 38.68 43.568 48.016 52.464 56.464\\\">Arbitration Fees?</text></g><clipPath id=\\\"clip5-14\\\"><path d=\\\"M 127 601 L 206 601 L 206 634 L 127 634 L 127 601 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-14)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 152.2715 621.702)\\\" x=\\\"0 5.336 9.784 13.784 16.008 21.784 26.232\\\">Yes/No.</text></g><clipPath id=\\\"clip5-15\\\"><path d=\\\"M 205 601 L 573 601 L 573 634 L 205 634 L 205 601 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 621.702)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 214.0453 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 217.6688 621.702)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 228.7898 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 232.4133 621.702)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.0227 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 259.6461 621.702)\\\" x=\\\"0 4.448 8.896 13.344 17.344 21.792 23.32\\\">doesn&apos;t</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 285.193 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 288.8164 621.702)\\\" x=\\\"0 4.448 10.224 14.672 17.336\\\">award</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 310.6055 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 314.2289 621.702)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 327.1273 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 330.7508 621.702)\\\" x=\\\"0 2.224 6.672 11.12 15.568 19.568\\\">funds,</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 352.5437 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 356.1672 621.702)\\\" x=\\\"0 2.224 6.672 11.12\\\">then</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.7375 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 375.3609 621.702)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.2594 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 391.8828 621.702)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 406.9961 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 410.6195 621.702)\\\" x=\\\"0 2.664 7.112 11.56 16.008\\\">repay</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.6312 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 434.2547 621.702)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 445.3758 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 448.9992 621.702)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 19.16 23.608 25.832 27.656 32.104\\\">Arbitration</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 485.5539 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 489.1773 621.702)\\\" x=\\\"0 4.888 9.336 13.784 17.784\\\">Fees.</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.1851 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 512.8086 621.702)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.5937 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 530.2172 621.702)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.8265 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 557.45 621.702)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 612.6473)\\\" x=\\\"0 4.448 8.896 12.896 14.72 19.168\\\">decide</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.2211 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 236.7228 612.6473)\\\" x=\\\"0 5.776 10.224 14.672 16.896 21.344 25.792\\\">whether</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 265.1838 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 268.6855 612.6473)\\\" x=\\\"0 4 8.448 12.896 14.424 16.248\\\">you&apos;ll</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 286.7597 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 290.2614 612.6473)\\\" x=\\\"0 4.448 8.896 12.896\\\">pay.</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 305.3825 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 308.8842 612.6473)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 313.3295 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 316.8312 612.6473)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.7297 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 333.2314 612.6473)\\\" x=\\\"0 6.664 11.112 15.112\\\">must</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 350.5673 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 354.0691 612.6473)\\\" x=\\\"0 4.448 8.896\\\">pay</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 366.9675 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 370.4692 612.6473)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 19.16 23.608 25.832 27.656 32.104\\\">Arbitration</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 407.0239 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 410.5256 612.6473)\\\" x=\\\"0 4.888 9.336 13.784 17.784\\\">Fees,</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.5334 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 434.0351 612.6473)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 445.1562 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 448.658 612.6473)\\\" x=\\\"0 4.448 11.112 15.56 20.008 24.456\\\">amount</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 475.3415 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 478.8433 612.6473)\\\" x=\\\"0 5.776 10.224 14.672 16.2\\\">won&apos;t</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 497.269 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 500.7708 612.6473)\\\" x=\\\"0 4.448 8.448 12.448 16.896 21.344\\\">exceed</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.5676 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 530.0694 612.6473)\\\" x=\\\"0 4 6.224 10.672 12.896\\\">state</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 547.4131 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 550.9148 612.6473)\\\" x=\\\"0 4 8.448 12.896 15.56\\\">court</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 603.5926)\\\" x=\\\"0 4 8.448 12.448 14.672 18.672\\\">costs.</text></g><clipPath id=\\\"clip5-16\\\"><path d=\\\"M 35 534 L 128 534 L 128 602 L 35 602 L 35 534 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-16)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.6 601.9129 L 127.5 601.9129 L 127.5 534.5301 L 35.6 534.5301 L 35.6 601.9129 z \\\"/><path clip-path=\\\"url(#clip5-16)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.7 597.9129 L 123.4 597.9129 L 123.4 579.8035 L 39.7 579.8035 L 39.7 597.9129 z \\\"/><path clip-path=\\\"url(#clip5-16)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 45.2063 597.9129 L 118.2063 597.9129 L 118.2063 587.9129 L 45.2063 587.9129 L 45.2063 597.9129 z \\\"/><g clip-path=\\\"url(#clip5-16)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 45.2063 590.5379)\\\" x=\\\"0 7.552 12 16.448 18.672 20.8 25.248 29.696 34.144 38.592 43.04 47.488 51.488 53.616 55.44 57.664 59.792 63.792 68.24\\\">What happens if you</text></g><path clip-path=\\\"url(#clip5-16)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 73.3 588.8582 L 90.3 588.8582 L 90.3 578.8582 L 73.3 578.8582 L 73.3 588.8582 z \\\"/><g clip-path=\\\"url(#clip5-16)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 73.3 581.4832)\\\" x=\\\"0 5.776 7.6 12.048\\\">win?</text></g><clipPath id=\\\"clip5-17\\\"><path d=\\\"M 127 534 L 206 534 L 206 602 L 127 602 L 127 534 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-17)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 131.9356 590.5379)\\\" x=\\\"0 5.336 9.784 14.232 16.36 20.36 24.808 29.256 31.08 35.528 37.656 42.104 46.552 48.776 50.904 57.568 62.016 64.68\\\">You could get more</text></g><g clip-path=\\\"url(#clip5-17)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 139.2246 581.4832)\\\" x=\\\"0 2.224 6.672 11.12 15.568 17.696 19.92 24.368 28.816 30.944 36.28 38.944 43.392 45.216 47.44 51.888\\\">than the Arbiter</text></g><g clip-path=\\\"url(#clip5-17)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 150.0449 572.4285)\\\" x=\\\"0 4.448 10.224 14.672 17.336 21.784 26.232 30.68\\\">awarded.</text></g><clipPath id=\\\"clip5-18\\\"><path d=\\\"M 205 534 L 573 534 L 573 602 L 205 602 L 205 534 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 590.5379)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 214.0453 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 216.367 590.5379)\\\" x=\\\"0 4.448\\\">an</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.2654 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 227.5871 590.5379)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608 25.136\\\">Arbiter&apos;s</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.7238 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 259.0455 590.5379)\\\" x=\\\"0 4.448 10.224 14.672 17.336\\\">award</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.8345 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 283.1562 590.5379)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 289.8281 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 292.1498 590.5379)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 305.0482 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 307.3699 590.5379)\\\" x=\\\"0 4.448 8.448 12.448 16.896 21.344 25.792\\\">exceeds</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 337.1667 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 339.4884 590.5379)\\\" x=\\\"0 4.448 8.896\\\">our</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.0509 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 353.3726 590.5379)\\\" x=\\\"0 1.824 6.272 10.272\\\">last</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 365.8687 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 368.1903 590.5379)\\\" x=\\\"0 5.336 9.784 12.008 14.232 16.056 20.504 27.168 31.616 36.064\\\">Settlement</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 406.4794 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 408.8011 590.5379)\\\" x=\\\"0 6.224 8.448 10.672 15.12 17.784\\\">Offer,</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 428.805 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 431.1266 590.5379)\\\" x=\\\"0 5.776\\\">we</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 441.3532 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 443.6749 590.5379)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.9249 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 457.2465 590.5379)\\\" x=\\\"0 4.448 8.896\\\">pay</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 470.145 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 472.4666 590.5379)\\\" x=\\\"0\\\">3</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 476.9159 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 479.2375 590.5379)\\\" x=\\\"0 4.448 11.112 15.56 20.008 24.456 26.68 30.68\\\">amounts.</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.1438 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 514.4654 590.5379)\\\" x=\\\"0 7.552\\\">We</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.4654 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 528.7871 590.5379)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 540.0371 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 542.3588 590.5379)\\\" x=\\\"0 4.448 8.896\\\">pay</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 555.2572 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 557.5789 590.5379)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 581.4832)\\\" x=\\\"0 4.448 7.112 11.56 16.008 18.232 22.68\\\">greater</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 234.9477 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 238.6632 581.4832)\\\" x=\\\"0 4.448\\\">of</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.3351 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 249.0506 581.4832)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 260.1717 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 263.8872 581.4832)\\\" x=\\\"0 4.448 10.224 14.672 17.336\\\">award</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 285.6762 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 289.3918 581.4832)\\\" x=\\\"0 4.448 11.112 15.56 20.008 24.456\\\">amount</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 316.0754 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 319.7909 581.4832)\\\" x=\\\"0 4.448\\\">or</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 326.9042 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 330.6197 581.4832)\\\" x=\\\"0 4.448 8.896 13.344 17.792 20.016 24.464\\\">$500.00</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.5376 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 363.2532 581.4832)\\\" x=\\\"0 2.664 5.504 9.952 14.4 18.848 23.296\\\">(&quot;bonus</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 390.5539 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 394.2695 581.4832)\\\" x=\\\"0 4.448 8.896 12.896 19.56 24.008 28.456 30.68 33.52 36.184\\\">payment&quot;).</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 432.6796 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 436.3951 581.4832)\\\" x=\\\"0 7.552\\\">We</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 448.3951 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 452.1107 581.4832)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 463.3607 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 467.0762 581.4832)\\\" x=\\\"0 4.448 8.896\\\">pay</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 479.9746 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 483.6901 581.4832)\\\" x=\\\"0 4 8.448 12.896\\\">your</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.2526 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 502.9682 581.4832)\\\" x=\\\"0 4.448 6.672 8.896 13.344 16.008 20.456 24.904\\\">attorney</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 531.8744 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 535.5899 581.4832)\\\" x=\\\"0 2.224 8 9.824 13.824\\\">twice</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.8634 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 557.5789 581.4832)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 572.4285)\\\" x=\\\"0 4.448 6.672 8.896 13.344 16.008 20.456 24.904\\\">attorney</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.5063 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 242.1723 572.4285)\\\" x=\\\"0 2.224 6.672 11.12\\\">fees</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.2934 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 260.9594 572.4285)\\\" x=\\\"0 4 8.448 12.896 15.12 19.568 22.232 24.896 29.344\\\">conferred</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 294.7563 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 298.4224 572.4285)\\\" x=\\\"0 2.664 5.504 9.952 12.176 14.4 18.848 21.512 25.96 30.408\\\">(&quot;attorney</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 332.8325 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 336.4986 572.4285)\\\" x=\\\"0 4.448 7.112 11.56 18.224 20.048 24.496 31.16 34 36.664\\\">premium&quot;).</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.3892 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 379.0552 572.4285)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.5005 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 387.1666 572.4285)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 398.2877 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 401.9537 572.4285)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 425.5631 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 429.2291 572.4285)\\\" x=\\\"0 4.448 7.112 11.56 16.008 18.672 22.672\\\">orders,</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.1276 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 457.7936 572.4285)\\\" x=\\\"0 5.776\\\">we</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.0202 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 471.6862 572.4285)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 482.9362 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 486.6023 572.4285)\\\" x=\\\"0 4.448 8.896\\\">pay</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.5007 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 503.1667 572.4285)\\\" x=\\\"0 2.664 7.112 11.56 15.56 20.008 24.456 28.904 33.352 35.176\\\">reasonable</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 542.7996 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 546.4656 572.4285)\\\" x=\\\"0 4.448 8.448 12.896 17.344 20.008\\\">expert</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 563.3738)\\\" x=\\\"0 5.776 7.6 9.824 14.272 18.72 22.72\\\">witness</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 236.3227 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 238.5023 563.3738)\\\" x=\\\"0 4 8.448 12.448 14.672\\\">costs</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.1741 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 259.3537 563.3738)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 272.7014 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 274.881 563.3738)\\\" x=\\\"0 4.448 6.672 11.12 15.568\\\">other</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 293.1153 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 295.2949 563.3738)\\\" x=\\\"0 4 8.448 12.448 14.672\\\">costs</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 313.9668 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 316.1464 563.3738)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.0448 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 331.2244 563.3738)\\\" x=\\\"0 1.824 6.272 10.272 14.72 17.384 20.048 24.496\\\">incurred</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 360.1736 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 362.3532 563.3738)\\\" x=\\\"0 2.664 5.504 9.504 13.952 17.952\\\">(&quot;cost</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 382.529 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 384.7086 563.3738)\\\" x=\\\"0 4.448 7.112 11.56 18.224 20.048 24.496 31.16 34 36.664\\\">premium&quot;).</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 423.5992 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 425.7788 563.3738)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.2241 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 432.4037 563.3738)\\\" x=\\\"0 5.776\\\">we</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 442.6303 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 444.8099 563.3738)\\\" x=\\\"0 4.448 8.896 12.896 17.344\\\">never</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 464.8216 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 467.0012 563.3738)\\\" x=\\\"0 6.664 11.112 15.56\\\">made</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 487.0129 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 489.1925 563.3738)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 493.6417 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 495.8213 563.3738)\\\" x=\\\"0 5.336 9.784 12.008 14.232 16.056 20.504 27.168 31.616 36.064\\\">Settlement</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 534.1103 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 536.2899 563.3738)\\\" x=\\\"0 6.224 8.448 10.672 15.12 17.784\\\">Offer,</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 556.2938 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 558.4734 563.3738)\\\" x=\\\"0 5.776\\\">we</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 554.3191)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 220.85 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 224.1983 554.3191)\\\" x=\\\"0 4.448 8.896\\\">pay</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 237.0968 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 240.4451 554.3191)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 251.5662 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 254.9145 554.3191)\\\" x=\\\"0 4.448 8.896 13.344 17.792\\\">bonus</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.7114 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 280.0597 554.3191)\\\" x=\\\"0 4.448 8.896 12.896 19.56 24.008 28.456 30.68\\\">payment,</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.966 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 316.3143 554.3191)\\\" x=\\\"0 4.448 6.672 8.896 13.344 16.008 20.456 24.904\\\">attorney</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 345.2206 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 348.5689 554.3191)\\\" x=\\\"0 4.448 7.112 11.56 18.224 20.048 24.496 31.16\\\">premium,</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 381.9556 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 385.3039 554.3191)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 398.6516 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 401.9999 554.3191)\\\" x=\\\"0 4.448 8.896\\\">any</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 414.8984 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 418.2467 554.3191)\\\" x=\\\"0 4 8.448 12.448\\\">cost</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 432.9186 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 436.2669 554.3191)\\\" x=\\\"0 4.448 7.112 11.56 18.224 20.048 24.496 31.16\\\">premium.</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 469.6536 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 473.002 554.3191)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.7871 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 490.1355 554.3191)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 513.7448 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 517.0932 554.3191)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 532.2064 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 535.5548 554.3191)\\\" x=\\\"0 4.448 7.112 11.56 16.008\\\">order</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 554.2306 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 557.5789 554.3191)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 545.2645)\\\" x=\\\"0 4.448 7.112 11.56 15.56 20.008 24.008\\\">process</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 237.6117 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 240.0494 545.2645)\\\" x=\\\"0 2.224 6.672\\\">for</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 249.3853 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 251.8229 545.2645)\\\" x=\\\"0 4.448 8.896 12.896 19.56 24.008 28.456 30.68\\\">payment.</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 284.7292 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 287.1668 545.2645)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.6121 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 294.0498 545.2645)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 298.499 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 300.9366 545.2645)\\\" x=\\\"0 1.824 6.272\\\">law</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.9874 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 315.425 545.2645)\\\" x=\\\"0 4.448 6.272 8.096 12.544 18.32\\\">allows</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 337.7493 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 340.1869 545.2645)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 353.0853 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 355.523 545.2645)\\\" x=\\\"0 6.664 11.112 13.776 18.224\\\">more,</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.9722 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 378.4098 545.2645)\\\" x=\\\"0 2.224 6.672 8.496\\\">this</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 390.9059 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 393.3436 545.2645)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496\\\">Clause</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 418.2928 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 420.7304 545.2645)\\\" x=\\\"0 5.776 10.224 14.672 16.2\\\">won&apos;t</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 439.1562 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 441.5938 545.2645)\\\" x=\\\"0 4.448 7.112 11.56 15.56 20.008 24.456\\\">prevent</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.2774 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 470.7151 545.2645)\\\" x=\\\"0 4 8.448 12.448\\\">such</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 487.6135 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 490.0511 545.2645)\\\" x=\\\"0 4.448 10.224 14.672 17.336 21.784\\\">award.</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 514.0628 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 516.5005 545.2645)\\\" x=\\\"0 7.552\\\">We</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 528.5005 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 530.9381 545.2645)\\\" x=\\\"0 5.776 10.224 14.672 16.2\\\">won&apos;t</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.3639 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 551.8015 545.2645)\\\" x=\\\"0 4 8.448 12.896\\\">seek</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 536.2098)\\\" x=\\\"0 4.448 6.672 8.896 13.344 16.008 20.456 24.904 28.904 31.032 33.256 37.704 42.152 46.152 48.28 52.728 57.176 61.624 63.752 68.2 72.2 76.648 81.096 85.544 89.544 93.992 97.992\\\">attorney fees and expenses.</text></g><clipPath id=\\\"clip5-19\\\"><path d=\\\"M 35 510 L 128 510 L 128 535 L 35 535 L 35 510 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-19)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.6 534.5301 L 127.5 534.5301 L 127.5 510.5301 L 35.6 510.5301 L 35.6 534.5301 z \\\"/><path clip-path=\\\"url(#clip5-19)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.7 530.5301 L 123.4 530.5301 L 123.4 512.4207 L 39.7 512.4207 L 39.7 530.5301 z \\\"/><path clip-path=\\\"url(#clip5-19)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 51.2317 530.5301 L 112.2317 530.5301 L 112.2317 520.5301 L 51.2317 520.5301 L 51.2317 530.5301 z \\\"/><g clip-path=\\\"url(#clip5-19)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 51.2317 523.1551)\\\" x=\\\"0 5.776 10.224 14.672 16.8 21.248 25.696 27.824 32.272 38.048 42.496 45.16 49.608 51.736 56.184\\\">Can an award be</text></g><path clip-path=\\\"url(#clip5-19)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 62.1535 521.4754 L 101.1535 521.4754 L 101.1535 511.4754 L 62.1535 511.4754 L 62.1535 521.4754 z \\\"/><g clip-path=\\\"url(#clip5-19)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 62.1535 514.1004)\\\" x=\\\"0 4.448 8.448 12.896 14.72 19.168 20.992 25.44 29.888 34.336\\\">explained?</text></g><clipPath id=\\\"clip5-20\\\"><path d=\\\"M 127 510 L 206 510 L 206 535 L 127 535 L 127 510 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-20)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 158.4961 523.1551)\\\" x=\\\"0 5.336 9.784 13.784\\\">Yes.</text></g><clipPath id=\\\"clip5-21\\\"><path d=\\\"M 205 510 L 573 510 L 573 535 L 205 535 L 205 510 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 523.1551)\\\" x=\\\"0\\\">A</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 214.9359 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 218.2265 523.1551)\\\" x=\\\"0 4.448 8.896 11.56 13.784\\\">party</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 236.0117 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 239.3023 523.1551)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 254.4155 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 257.7061 523.1551)\\\" x=\\\"0 2.664 7.112 11.56 16.008 20.456 24.456\\\">request</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 284.3897 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 287.6803 523.1551)\\\" x=\\\"0 4.448 8.896 11.12 15.568 17.392 19.216\\\">details</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 310.899 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 314.1896 523.1551)\\\" x=\\\"0 2.224 4.888 9.336\\\">from</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 330.1896 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 333.4802 523.1551)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 344.6013 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 347.8919 523.1551)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608\\\">Arbiter,</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 373.7239 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 377.0145 523.1551)\\\" x=\\\"0 5.776 7.6 9.824 14.272 16.096\\\">within</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 397.5613 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 400.8519 523.1551)\\\" x=\\\"0 4.448\\\">14</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 409.7504 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 413.0409 523.1551)\\\" x=\\\"0 4.448 8.896 12.896\\\">days</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 429.9394 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 433.23 523.1551)\\\" x=\\\"0 4.448\\\">of</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 439.9018 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 443.1924 523.1551)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.3135 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 457.6041 523.1551)\\\" x=\\\"0 2.664 7.112 8.936 10.76 15.208 19.656\\\">ruling.</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 479.4869 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 482.7775 523.1551)\\\" x=\\\"0 5.776 10.224 14.672\\\">Upon</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.9025 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 505.193 523.1551)\\\" x=\\\"0 4 8.448 12.448\\\">such</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 522.0915 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 525.3821 523.1551)\\\" x=\\\"0 2.664 7.112 11.56 16.008 20.456 24.456 26.68\\\">request,</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 554.2883 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 557.5789 523.1551)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 514.1004)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608 25.736 31.512 33.336 35.16 36.984 39.112 43.56 47.56 52.008 53.832 58.28 60.104 64.552 66.68 68.904 73.352 77.8 79.928 82.592 87.04 88.864 90.688 95.136 99.584 101.712 103.536 107.984 110.112 115.888 118.552 120.376 122.6 124.424 128.872 133.32\\\">Arbiter will explain the ruling in writing.</text></g><clipPath id=\\\"clip5-22\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 704.777 L 128 704.777 L 128 703.777 L 35.1 703.777 L 35.1 704.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 703.777 L 36.1 703.777 L 36.1 680.777 L 35.1 680.777 L 35.1 703.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128 704.777 L 206 704.777 L 206 703.777 L 128 703.777 L 128 704.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127 703.777 L 128 703.777 L 128 680.777 L 127 680.777 L 127 703.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 704.777 L 573.3 704.777 L 573.3 703.777 L 206 703.777 L 206 704.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.3 703.777 L 573.3 703.777 L 573.3 680.777 L 572.3 680.777 L 572.3 703.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 703.777 L 206 703.777 L 206 680.777 L 205 680.777 L 205 703.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 680.777 L 128 680.777 L 128 679.777 L 35.1 679.777 L 35.1 680.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 679.777 L 36.1 679.777 L 36.1 657.1769 L 35.1 657.1769 L 35.1 679.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128 680.777 L 206 680.777 L 206 679.777 L 128 679.777 L 128 680.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127 679.777 L 128 679.777 L 128 657.1769 L 127 657.1769 L 127 679.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 680.777 L 573.3 680.777 L 573.3 679.777 L 206 679.777 L 206 680.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.3 679.777 L 573.3 679.777 L 573.3 657.1769 L 572.3 657.1769 L 572.3 679.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 679.777 L 206 679.777 L 206 657.1769 L 205 657.1769 L 205 679.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 657.1769 L 128 657.1769 L 128 656.1769 L 35.1 656.1769 L 35.1 657.1769 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 656.1769 L 36.1 656.1769 L 36.1 633.577 L 35.1 633.577 L 35.1 656.1769 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128 657.1769 L 206 657.1769 L 206 656.1769 L 128 656.1769 L 128 657.1769 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127 656.1769 L 128 656.1769 L 128 633.577 L 127 633.577 L 127 656.1769 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 657.1769 L 573.3 657.1769 L 573.3 656.1769 L 206 656.1769 L 206 657.1769 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.3 656.1769 L 573.3 656.1769 L 573.3 633.577 L 572.3 633.577 L 572.3 656.1769 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 656.1769 L 206 656.1769 L 206 633.577 L 205 633.577 L 205 656.1769 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 633.577 L 128 633.577 L 128 632.577 L 35.1 632.577 L 35.1 633.577 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 632.577 L 36.1 632.577 L 36.1 602.4129 L 35.1 602.4129 L 35.1 632.577 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128 633.577 L 206 633.577 L 206 632.577 L 128 632.577 L 128 633.577 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127 632.577 L 128 632.577 L 128 602.4129 L 127 602.4129 L 127 632.577 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 633.577 L 573.3 633.577 L 573.3 632.577 L 206 632.577 L 206 633.577 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.3 632.577 L 573.3 632.577 L 573.3 602.4129 L 572.3 602.4129 L 572.3 632.577 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 632.577 L 206 632.577 L 206 602.4129 L 205 602.4129 L 205 632.577 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 602.4129 L 128 602.4129 L 128 601.4129 L 35.1 601.4129 L 35.1 602.4129 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 601.4129 L 36.1 601.4129 L 36.1 535.0301 L 35.1 535.0301 L 35.1 601.4129 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128 602.4129 L 206 602.4129 L 206 601.4129 L 128 601.4129 L 128 602.4129 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127 601.4129 L 128 601.4129 L 128 535.0301 L 127 535.0301 L 127 601.4129 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 602.4129 L 573.3 602.4129 L 573.3 601.4129 L 206 601.4129 L 206 602.4129 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.3 601.4129 L 573.3 601.4129 L 573.3 535.0301 L 572.3 535.0301 L 572.3 601.4129 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 601.4129 L 206 601.4129 L 206 535.0301 L 205 535.0301 L 205 601.4129 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 535.0301 L 128 535.0301 L 128 534.0301 L 35.1 534.0301 L 35.1 535.0301 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 511.0301 L 128 511.0301 L 128 510.0301 L 35.1 510.0301 L 35.1 511.0301 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 534.0301 L 36.1 534.0301 L 36.1 511.0301 L 35.1 511.0301 L 35.1 534.0301 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128 535.0301 L 206 535.0301 L 206 534.0301 L 128 534.0301 L 128 535.0301 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128 511.0301 L 206 511.0301 L 206 510.0301 L 128 510.0301 L 128 511.0301 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127 534.0301 L 128 534.0301 L 128 511.0301 L 127 511.0301 L 127 534.0301 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 535.0301 L 573.3 535.0301 L 573.3 534.0301 L 206 534.0301 L 206 535.0301 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 511.0301 L 573.3 511.0301 L 573.3 510.0301 L 206 510.0301 L 206 511.0301 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.3 534.0301 L 573.3 534.0301 L 573.3 511.0301 L 572.3 511.0301 L 572.3 534.0301 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 534.0301 L 206 534.0301 L 206 511.0301 L 205 511.0301 L 205 534.0301 z \\\"/><g clip-path=\\\"url(#clip5-22)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 273.1062 500.3113)\\\" x=\\\"0 7.78 10.56 16.12 21.68 25.01 27.67 35.45 41.01 43.79 46.07 51.63 57.19\\\">Other Options</text></g><clipPath id=\\\"clip5-23\\\"><path d=\\\"M 35 438 L 128 438 L 128 490 L 35 490 L 35 438 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-23)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.6 489.107 L 127.5 489.107 L 127.5 438.107 L 35.6 438.107 L 35.6 489.107 z \\\"/><path clip-path=\\\"url(#clip5-23)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.7 485.607 L 123.4 485.607 L 123.4 458.443 L 39.7 458.443 L 39.7 485.607 z \\\"/><path clip-path=\\\"url(#clip5-23)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 48.2942 485.607 L 115.2942 485.607 L 115.2942 475.607 L 48.2942 475.607 L 48.2942 485.607 z \\\"/><g clip-path=\\\"url(#clip5-23)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 48.2942 478.232)\\\" x=\\\"0 2.224 4.448 6.576 10.576 15.024 19.472 21.6 26.048 30.496 34.944 36.472 38.696 40.824 46.6 51.048 55.496 57.72 59.848 62.072\\\">If you don&apos;t want to</text></g><path clip-path=\\\"url(#clip5-23)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 43.8078 476.5524 L 119.8078 476.5524 L 119.8078 466.5524 L 43.8078 466.5524 L 43.8078 476.5524 z \\\"/><g clip-path=\\\"url(#clip5-23)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 43.8078 469.1774)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 29.392 31.616 33.744 37.744 42.192 46.64 48.768 52.768 57.216 61.664 63.792 67.792 70.016 71.84 73.664\\\">arbitrate, can you still</text></g><path clip-path=\\\"url(#clip5-23)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 49.8254 467.4977 L 113.8254 467.4977 L 113.8254 457.4977 L 49.8254 457.4977 L 49.8254 467.4977 z \\\"/><g clip-path=\\\"url(#clip5-23)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 49.8254 460.1227)\\\" x=\\\"0 4.448 8.896 11.12 13.248 17.696 19.824 22.048 24.712 29.16 33.608 37.608 42.056 46.056 48.28 50.104 54.552 59\\\">get a transaction?</text></g><clipPath id=\\\"clip5-24\\\"><path d=\\\"M 127 438 L 206 438 L 206 490 L 127 490 L 127 438 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-24)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.1817 478.232)\\\" x=\\\"0 5.336 9.784 13.784 16.008 18.136 23.472 27.92 32.368 34.496 38.496 42.944 47.392 49.52 53.968 58.416\\\">Yes. You can get</text></g><g clip-path=\\\"url(#clip5-24)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 137.2266 469.1774)\\\" x=\\\"0 4.448 8.896 11.56 13.688 17.688 22.136 24.8 28.8 30.624 34.624 39.072 43.072 45.2 49.648 54.096\\\">our* D E M O *nd</text></g><g clip-path=\\\"url(#clip5-24)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 143.668 460.1227)\\\" x=\\\"0 4.448 8.896 12.896 14.72 19.168 23.616 25.744 30.192 34.64 36.864 38.992 41.216\\\">decide not to</text></g><g clip-path=\\\"url(#clip5-24)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 150.6914 451.068)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 29.392\\\">arbitrate.</text></g><clipPath id=\\\"clip5-25\\\"><path d=\\\"M 205 438 L 573 438 L 573 490 L 205 490 L 205 438 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-25)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 478.232)\\\" x=\\\"0 5.776 10.224 14.672 18.672 20.496 24.944 29.392 32.056 34.184 36.408 40.856 45.304 49.304 53.752 55.88 59.88 64.328 68.776 70.6 74.6 79.048 83.048\\\">Consider these choices:</text></g><g clip-path=\\\"url(#clip5-25)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 469.1774)\\\" x=\\\"0 4.448 6.672 8.8 11.024 15.472 17.696 22.144 24.808 31.472 35.92 37.744 39.872 45.648 47.472 51.472 55.92 60.368 62.592 67.04 69.168 74.944 79.392 83.392 87.84 89.664 94.112 96.336 98.16 102.608 107.056 109.28 111.408 117.184 121.632 126.08 128.304 132.752 136.752 138.976 141.104 145.552 149.552 151.776 153.904 158.352 162.8 167.248 169.376 173.824 176.048 178.272 182.72 189.384 193.832 196.056 198.184 200.408 204.856 206.984 210.984 215.432 217.656 219.88 221.704 226.152 228.28 232.728 237.176 241.176 243.304 249.08 250.904 254.904 259.352 263.8 266.024 270.472 274.472\\\">1. Informal Dispute Resolution. Contact us, and attempt to settle any Disputes.</text></g><g clip-path=\\\"url(#clip5-25)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 460.1227)\\\" x=\\\"0 4.448 6.672 8.8 14.136 20.8 25.248 27.072 28.896 31.56 35.56 37.384 41.832 43.656 50.32 54.32 56.448 62.224 66.672 71.12 73.784 76.008 78.232 80.36 85.696 90.144 94.592 98.592 100.72 102.944 107.392 109.52 113.52 117.968 119.792 123.792 128.24 130.368 136.144 137.968 141.968 146.416 150.864 153.088 157.536 161.536 163.664 165.488 169.936 172.064 176.064 182.728 187.176 189 190.824 193.488 197.488 199.312 203.76 205.584 212.248 216.248 218.376 222.376 226.824 231.272 233.936 236.16 238.384 240.512 246.288 248.112 250.336 254.784 256.608 261.056 263.184 267.184 269.408 273.856 276.08 280.528 282.656 284.48 288.928 294.704 296.832 298.656 300.48 307.144 308.968 311.192 315.192\\\">2. Small-claims Court. Seek to solve Disputes in small-claims court, within state law limits.</text></g><g clip-path=\\\"url(#clip5-25)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 451.068)\\\" x=\\\"0 4.448 6.672 8.8 15.024 19.472 21.696 23.824 28.272 30.4 34.848 39.296 43.744 47.744 52.192 54.32 61.872 63.696 65.92 70.368 74.816 79.264 81.488 83.616 85.84 90.288 94.736 96.864 102.64 104.464 108.912 113.36 117.36 121.808 124.032 126.16 133.712 136.376 138.2 140.424 144.872 147 149.224 153.672 155.8 160.248 164.248 166.376 170.824 175.272 179.72 181.848 186.296 190.296 194.296 196.424 198.648 203.096 205.76 207.888 212.336 216.784 218.912 224.248 228.696 231.36 235.808 240.256 246.92 251.368 255.816 258.04 260.168 265.944 267.768 269.992 274.44 278.888 283.336 285.56 287.688 289.912 294.36 298.808 300.936 306.712 308.536 312.984 317.432 321.432 325.88\\\">3. Get a Lease Without the Clause. Write to us and ask for an Agreement without the Clause.</text></g><g clip-path=\\\"url(#clip5-25)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 442.0133)\\\" x=\\\"0 4.448 6.672 8.8 15.024 19.472 21.696 24.36 30.584 35.032 37.256 39.384 43.832 46.056 48.184 53.52 56.184 60.632 62.456 64.68 67.344 71.792 74.016 75.84 80.288 84.736 86.96 89.088 94.424 96.248 100.696 105.144 107.272 111.72 116.168 120.616 122.744 124.968 129.416 133.864 138.312 140.44 142.664 144.488 151.152 155.6 157.424 161.424 163.552 168 172.448 174.672 177.336 181.784 186.232 188.456\\\">4. Opt-Out of Arbitration. Sign and then timely opt-out.</text></g><clipPath id=\\\"clip5-26\\\"><path d=\\\"M 35 405 L 128 405 L 128 439 L 35 439 L 35 405 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-26)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.6 438.107 L 127.5 438.107 L 127.5 405.107 L 35.6 405.107 L 35.6 438.107 z \\\"/><path clip-path=\\\"url(#clip5-26)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.7 434.607 L 123.4 434.607 L 123.4 416.4977 L 39.7 416.4977 L 39.7 434.607 z \\\"/><path clip-path=\\\"url(#clip5-26)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 42.1633 434.607 L 121.1633 434.607 L 121.1633 424.607 L 42.1633 424.607 L 42.1633 434.607 z \\\"/><g clip-path=\\\"url(#clip5-26)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 42.1633 427.232)\\\" x=\\\"0 5.776 10.224 14.672 16.8 20.8 25.248 29.696 31.824 36.272 40.72 42.944 45.608 50.056 54.504 56.728 58.856 63.304 65.528 67.656 69.88 74.328\\\">Can you opt-out of the</text></g><path clip-path=\\\"url(#clip5-26)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 66.8508 425.5524 L 96.8508 425.5524 L 96.8508 415.5524 L 66.8508 415.5524 L 66.8508 425.5524 z \\\"/><g clip-path=\\\"url(#clip5-26)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 66.8508 418.1774)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496 24.944\\\">Clause?</text></g><clipPath id=\\\"clip5-27\\\"><path d=\\\"M 127 405 L 206 405 L 206 439 L 127 439 L 127 405 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-27)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 140.7617 427.232)\\\" x=\\\"0 5.336 9.784 13.784 16.008 18.136 25.688 27.512 29.736 34.184 36.008 40.456 42.584 47.032\\\">Yes. Within 60</text></g><g clip-path=\\\"url(#clip5-27)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 156.9395 418.1774)\\\" x=\\\"0 4.448 8.896 12.896 16.896\\\">days.</text></g><clipPath id=\\\"clip5-28\\\"><path d=\\\"M 205 405 L 573 405 L 573 439 L 205 439 L 205 405 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 427.232)\\\" x=\\\"0 7.552 10.216 12.04 14.264\\\">Write</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 228.3109 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 232.8069 427.232)\\\" x=\\\"0 4.448\\\">us</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 241.2562 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 245.7522 427.232)\\\" x=\\\"0 5.776 7.6 9.824 14.272 16.096\\\">within</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 266.299 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 270.795 427.232)\\\" x=\\\"0 4.448\\\">60</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 279.6935 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 284.1895 427.232)\\\" x=\\\"0 4 8.448 10.272 14.72 19.168 23.616 28.064\\\">calendar</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 314.9238 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 319.4198 427.232)\\\" x=\\\"0 4.448 8.896 12.896\\\">days</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 336.3183 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 340.8143 427.232)\\\" x=\\\"0 4.448\\\">of</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 347.4861 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 351.9821 427.232)\\\" x=\\\"0 4 5.824 10.272 14.72 16.544 20.992\\\">signing</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 377.4274 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 381.9234 427.232)\\\" x=\\\"0 4 8.448 12.896\\\">your</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 397.4859 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 401.9819 427.232)\\\" x=\\\"0 4.448 8.896 11.56 16.008 20.456 27.12 31.568 36.016\\\">agreement</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 440.228 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 444.724 427.232)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 451.3959 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 455.8919 427.232)\\\" x=\\\"0 4.448 8.896 11.12 13.784 18.232 22.68\\\">opt-out</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 480.7981 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 485.2941 427.232)\\\" x=\\\"0 4.448\\\">of</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 491.966 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 496.462 427.232)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 507.5831 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 512.0791 427.232)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496\\\">Clause</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 537.0283 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 541.5243 427.232)\\\" x=\\\"0 2.224 6.672\\\">for</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 550.8602 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 555.3562 427.232)\\\" x=\\\"0 2.224 6.672 11.12\\\">that</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 418.1774)\\\" x=\\\"0 4.448 8.896 11.56 16.008 20.456 27.12 31.568 36.016 38.24\\\">agreement.</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 250.0688 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 252.4616 418.1774)\\\" x=\\\"0 4.448 6.272 10.272\\\">List</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 264.9577 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 267.3505 418.1774)\\\" x=\\\"0 4 8.448 12.896\\\">your</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 282.913 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 285.3058 418.1774)\\\" x=\\\"0 4.448 8.896 15.56 20.008\\\">name,</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 307.5402 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 309.933 418.1774)\\\" x=\\\"0 4.448 8.896 13.344 16.008 20.456 24.456 28.456\\\">address,</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 340.6166 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 343.0095 418.1774)\\\" x=\\\"0 4.448 8.448 12.448 16.896 21.344 25.792\\\">account</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.029 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 373.4218 418.1774)\\\" x=\\\"0 4.448 8.896 15.56 20.008 24.456\\\">number</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 400.5468 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 402.9397 418.1774)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 416.2873 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 418.6801 418.1774)\\\" x=\\\"0 4.448 8.896 11.12 15.568\\\">date.</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 436.4731 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 438.8659 418.1774)\\\" x=\\\"0 4.448 6.272 10.272\\\">List</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 451.362 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 453.7549 418.1774)\\\" x=\\\"0 2.224 6.672 11.12\\\">that</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.0986 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 469.4914 418.1774)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 482.3899 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 484.7827 418.1774)\\\" x=\\\"0 2.84 7.288 11.736\\\">&quot;opt</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 498.7437 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 501.1365 418.1774)\\\" x=\\\"0 4.448 8.896 11.12 13.344\\\">out.&quot;</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 517.3201 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 519.7129 418.1774)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 524.1582 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 526.551 418.1774)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 539.4495 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 541.8423 418.1774)\\\" x=\\\"0 4.448 8.896\\\">opt</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.9634 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 555.3562 418.1774)\\\" x=\\\"0 4.448 8.896 11.12\\\">out,</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 409.1227)\\\" x=\\\"0 1.824 4.048 6.176 11.952 13.776 15.6 17.424 19.552 24 28.448 30.272 34.272 36.4 40.848 45.296 49.744 51.568 55.568 57.696 59.92 64.368 66.496 68.72 73.168 77.616 79.84 81.968 86.416 90.864 93.528 97.976 102.424 109.088 113.536 117.984 120.208\\\">it will only apply to that agreement.</text></g><clipPath id=\\\"clip5-29\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 489.607 L 128 489.607 L 128 488.607 L 35.1 488.607 L 35.1 489.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 488.607 L 36.1 488.607 L 36.1 438.607 L 35.1 438.607 L 35.1 488.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128 489.607 L 206 489.607 L 206 488.607 L 128 488.607 L 128 489.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127 488.607 L 128 488.607 L 128 438.607 L 127 438.607 L 127 488.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 489.607 L 573.3 489.607 L 573.3 488.607 L 206 488.607 L 206 489.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.3 488.607 L 573.3 488.607 L 573.3 438.607 L 572.3 438.607 L 572.3 488.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 488.607 L 206 488.607 L 206 438.607 L 205 438.607 L 205 488.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 438.607 L 128 438.607 L 128 437.607 L 35.1 437.607 L 35.1 438.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 405.607 L 128 405.607 L 128 404.607 L 35.1 404.607 L 35.1 405.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 437.607 L 36.1 437.607 L 36.1 405.607 L 35.1 405.607 L 35.1 437.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128 438.607 L 206 438.607 L 206 437.607 L 128 437.607 L 128 438.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128 405.607 L 206 405.607 L 206 404.607 L 128 404.607 L 128 405.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127 437.607 L 128 437.607 L 128 405.607 L 127 405.607 L 127 437.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 438.607 L 573.3 438.607 L 573.3 437.607 L 206 437.607 L 206 438.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 405.607 L 573.3 405.607 L 573.3 404.607 L 206 404.607 L 206 405.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.3 437.607 L 573.3 437.607 L 573.3 405.607 L 572.3 405.607 L 572.3 437.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 437.607 L 206 437.607 L 206 405.607 L 205 405.607 L 205 437.607 z \\\"/><g clip-path=\\\"url(#clip5-29)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 162.1492 377.7699)\\\" x=\\\"0 6.67 10 12.28 17.84 20.62 23.28 28.84 34.4 39.96 42.62 45.95 51.51 54.29 59.85 62.13 67.69 70.35 75.91 78.57 84.13 89.69 93.02 98.58 101.24 106.24 111.8 117.36 122.36 125.02 130.58 133.91 136.57 142.13 144.41 149.97 154.97 157.75 161.08 166.64 172.2 174.48 179.48 182.14 187.14 192.7 198.26 203.26 205.92 211.48 214.26 216.92 219.7 225.26 227.54 232.54 235.2 241.87 247.43 250.76 256.32 261.88 270.21 275.77 281.33\\\">Print and retain a hard copy or electronic copy of this Agreement</text></g><g clip-path=\\\"url(#clip5-29)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 36.5264)\\\" x=\\\"0 6.498 11.997 14.391 16.785 21.789 26.793 29.295 34.299 39.303 44.307 504 506.3906 508.7812 511.1719 513.5625 515.9531 518.3438 520.7344 523.125 525.5156\\\">UT  07/2019          </text></g><g clip-path=\\\"url(#clip5-29)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 26.3398)\\\" x=\\\"0 6.003 11.007 16.011 21.015\\\">Page </text></g><g clip-path=\\\"url(#clip5-29)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 55.8097 26.3398)\\\" x=\\\"0\\\">6</text></g><g clip-path=\\\"url(#clip5-29)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.815 26.3398)\\\" x=\\\"0 2.394 7.398 9.9\\\"> of </text></g><g clip-path=\\\"url(#clip5-29)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 73.1021 26.3398)\\\" x=\\\"0\\\">7</text></g><g clip-path=\\\"url(#clip5-29)\\\"><text stroke=\\\"none\\\" fill=\\\"#d9d9d9\\\" style=\\\"font-family:f5-0; font-size:54pt; white-space:pre\\\" transform=\\\"matrix(0.707 0.707 0.707 -0.707 135.6027 198.5094)\\\" x=\\\"0 56.016 96.048 136.08 176.112 216.144 236.16 284.184 324.216 344.232 364.248 416.232 456.264 480.24\\\">Qoppa Software</text></g><g clip-path=\\\"url(#clip5-29)\\\"><text stroke=\\\"none\\\" fill=\\\"#002ba6\\\" style=\\\"font-family:f5-0; font-size:9pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.932 772)\\\" x=\\\"0 9.336 16.008 22.68 29.352 36.024 39.36 47.364 54.036 57.372 60.708 69.372 76.044 80.04 86.712 90.048 94.044 97.38 104.712 111.384 115.38 118.716 126.72 132.72 139.392 142.056 148.728 155.4 158.736 161.4 168.072 174.744 178.08 187.416 194.088 196.752 202.752 206.088 210.084 213.42 220.092 223.428 226.764 233.436 239.436 242.772 246.108 249.444 258.108 266.772 275.436 278.772 285.444 292.116 298.788 305.46 312.132 315.468 321.468 328.14\\\">Qoppa Software - For Evaluation Only - https://www.qoppa.com</text></g></g></svg></svg></g></svg><br>\\n<?xml version='1.0' encoding='UTF-8'?><svg id=\\\"qoppa_document\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" version=\\\"1.1\\\" xmlns=\\\"http://www.w3.org/2000/svg\\\" xmlns:xlink=\\\"http://www.w3.org/1999/xlink\\\"><!-- jPDFWeb v2019R1.03 - Demo Version --><style>title p { display: block; }</style><g id=\\\"qoppa_viewxform\\\" transform=\\\"matrix(1 0 0 1 0 0)\\\"><style type=\\\"text/css\\\">@font-face {font-family:f6-0;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f6-1;src:url(\\\"data:application/font-woff;charset=utf-8;base64,d09GRgABAAAAAA/IAAoAAAAAFYgAAQABAAAAAAAAAAAAAAAAAAAAAAAAAABPUy8yAAAA9AAAADcAAABWXq1b6mNtYXAAAAEsAAAAeQAAAJQDAgMFZ2x5ZgAAAagAAAwIAAAQiJLS0atoZWFkAAANsAAAADEAAAA2G7FrVmhoZWEAAA3kAAAAIAAAACQNSwULaG10eAAADgQAAACTAAAA3tuhFBhsb2NhAAAOmAAAAHIAAABycLpseG1heHAAAA8MAAAAGAAAACAAPAA1bmFtZQAADyQAAACYAAABdhyGNgFwb3N0AAAPvAAAAAwAAAAgAAMAAHicY2Bk8mKcwMDKwMDUxbSbARlwMeogc/8DATI/MCDAkUEBCG+y5f4LYtjBlsu4DiYHAMOSDEgAeJxjYGBgZGAGYgYGHgYWhg4gLccgABThY1BgUGHQZNBhsGJwZHBj8GTwZQhkCGXIZChgqPz/H6hOgUGZQQMorweUdwbLBzAEMyQy5DAU/f////H/h//v/b/z//b/q/+v/L/0//z/s//P/D/4f///fWDb8AAA9+Yl7wAAAHiclVd9VBNXFp83kwQEVCLGSNHWYQxIUVDGgFhFLB8GtCBBEawF1ALKhxYCWugK8iEBKSoYBSl+HLGWYzmsWhcVidXgulpBpa7HKots9bisrGs9rttaSB5730yw6Nk/dl94w0zmvXfv/d3f/b0XiqaUFCVZJW2lGOodikKsE6vinDiGhc4peKHzTix0Xs058fQpfDEMBaL4Rm2NFl+Ay/1vwy9/FVWjRYHw0HM+/DKtQukGtAenkW7ABgPeiKpIN6B0CqxEDEVIlLIMSkaNpmaAxQnKCYrxNoybu5t6tp9ygpKnVWpOIbORKRylcjd3bpxUwat9/XzVs93d3OmMcm/vvrT49+beSjvl2M7h+rTWDRloz18mmCah2rQrmZlxcS/pvVPnzFmHJ9PdE3n+k5sq2rkVLXWpq5Onp5/Al6MsXaoBvGnGvi/sC4t+37h6DU9BQ9RnWEsnSm9Ro8iD3BFx5EIn4tvIsxDXo4+xFvWiH9ED1It98Gg8BvuI88Jhnrc4z4lM4cklHHni24UwqV56C7P4bfwOZtF19Bz9C12HOS24FxVTnZQdRakA4fGcwgcCRMWdSUlJs2d3dl5MjIwsJuPAABnHiONgADT4HhrtL+SMGoV4hBpxbBVqlLYOhMKXFE2tGuqTKMGnsSS7Kld3N7mjny/vo5wgd7SRMVPkjix02n+7Btr2CnKtwBzqQfc/Ky1Fy9ByfVmZHn+Nm0pLpbEWW4sD/YJ+SWJ9SBII69rCA0ez4LWcZ6gqHn/1U1YbRPqzYclgAYxbAJyyg3EsWGd9VVPF7HGuNjIb3lf0BHIuIx8FK7GzzJMiKZLFxm7e3H29IN+x3S4iYkNBaKhWe78nOpq51hx4717eZ4dO5GzK1l0sCw0NDcnVp6V+czIvr1TMwUqI1wXszYQH39eMiaZYAM9qkwM01ByQjvcRBzKSdT58dvalE7m5CtNbf82YNw8/9dTUR2kjI0rKwsLa7YqKblyvqAjTMKrp0cviG1PT1qxuffzeexvNuxeHb9cvXx4Rkd6amVlQcK0sKQmwhyqSjJd2wt1oYASSs5ycQwpWzsv5G8iEii8bLEl0lvEyLaEPWRKZq2a/o/gwihfiiIE4WEihK6lENVSd70i33Ue6DfGhVDrT/DTAkLG/PCZm+bKytA+WOLYrSkpaH5aVl5WdbsiQOjSbB3Lj4upqU1ICF27rSEkx7HnwQ2FR7DBHJgNmo6lpBLWRhphxQo54qEkOiDLSKHI2fLElfHFYWF5FdDQ9NnqZvsvZ5JyV9aVloKTk6c0t+QX5Z9robQcSEgzVa9bo9WgHst+x8+4fVq0yd+PGM6erd3dd31ZKYl0DOCkhVhmJVcECjSVK82L6maXnFq2QtjYPvJCqCd1irH6OpVwoKFU0nMPZfr5+gAcS7qzev8q8YrxSAt3qOLNyaWRRUWRkSMjempAQ3Ns3PyA9Y36A+pecnAvfbsp5iW9sK/3h7rZStO13i6D9LiE4JCgoJBilrzue5A8t6XjLzjsHk6EdvLOz8tlZXVaW7uwzwDDGWmcihq/8It440YKfQsoAw1dugUvMSsBwcbgVQ8foaP33E00Ts3RHaBuCYT6AeNrIqPfHixiW4iz8YucOgiGjQnGnT++u7rpeuo3kUNAHiQpQsiEVqeDlr1RCouq05AALhzBFSWMBZxuiNohDoOZOPHJCDN1l6ew8TCcf6zaH/4xooh7oPH6fjqUbLbFiXSUO9UnjxTqWApJ+nEwEf1hOrBSxkRGSMHa/NjQoroxJTW3qKSwsKur9Mj3D4YqisfEnfLX17NlW561b++uXLaurQ5PQ5H11Wm3FrcLCzg7cgBs6OwRJo46AnUTw1Y6SE1ZMEQXLA9kQvfJAKBnZo0BddnY2voj/bUJd9D8sCuwtddi1C/+Kn+8xNNOP6NvgN6wjeQzr2BP9kUMliV3y2LyF8TDfYVYP9khCmtGzZnSheSBUjJXMKYQ5RP9JtYozCs2ciT5hiWRcCD50bTO6DGPbYEyBqL+Ik/OooL2dvB5eRyaDdw5knVHCUsBtOS+T4R6ciXW45ww63IwOn5G2Ds6VXB4IlfQOsqSL8UvMwlwXMpsgLBYlSIGcnWLdBN04FpDYWBAUPH360shzuNJkQpnIvrJy0aK83FOWHqnDuHHBwbEloaEWWzpcp7u/feMnrCvBN3GoQvoC8jmOUsH6NsrXkglQK30JU1lrQlkfP6Uf062rXp99r7KyckfP3c8/11efv3QJd+Brf4SG1J0Nz3WotVw3q34/UqKJ9dDw3/HzQ7rbaAmKuQkNH8Nfd91c+205wYZozhOwP0vkkxiNu5u1aqY4CXSy1smr2IeVj+58vrdGq9XpLrVrFsXFHUaRk42jamtfPtm5I2PDoDkl5eO1DU15uWPP2e6rc96yxbgnNu7ddz09vbxWJc2fj3/+XgdlexKEyVft55erCwqKiDxyr6JCyBmcQyQtQo0IWkSyL2kZ3Ix+bEePRClyEHML9cDBOGdrPfg6Q/odRR/JreA2/fDi1q0LAttXrz53bvVqE+uaX+AcsCA/H9kxS83f4N4PoSGW+cB8/ERp6dq1JC8RQ31Mn2Q+9RblRlEsLycqNsWq/oACiLCoZWrZsPixPOPZlpXVgRcr2mzNn/r5OTisshQkJx94uMtnxYqPkufNQ3WFdPM/o6Lw2VOurrP5LPy5PmZ56TENYDI9qlestwrIh6fAt8lv7AFyoLVakE+5dbPRFO7PCw7WaPL25xqNm5pMBVuzsm6eyKdftCQnXbqxfl2h5PxAqDatphZJB3cbagS8NBDXI4jrTf0YFknlcMIJ3Wj/5uwchUkSHJSgXwZNnxAULDEpcrKbH5Tp9WXOsbFH4318klO+u5ac4uOTcDQ2tqoK/4JfVlcJsRBbfRCLI4kFMOTk4srDyI2wC9C1bW66uLVAiKDwQG5IsCYsd3+etBU7p9bWYPOgwVB7siUp+dKNdesLxbUlnhCHLcWJJwzBeTQyJHdW7fhbLMhxQlRUZvbSpUrc35JfMKFdsjRybfHKOAfmnTL9w/vby3fsoHPrFi9ZsmSfZUNc3JGPeJ+4uDMz0KiqKsNubMYDu6sJfo4Q2BqoFwU8qDmr92qyKSuI2PNyetZV1jVk7hyfD/Gd+vo2psqwKsHN3e6IAz4ebzBvZKrEPGuwVuCXA+Xxxj7lxylGwiRmX82NF3YtxvM3bEYiptGU9Lfrsq/AiXbWMEpm7Svk1H/WhDXvXrGCFjgAFcY8gbzIRa2UiyyDG0eWsMpo3LUr1cvbiPcdrxQk9uUxf/8ii5ZuQfqDAkdhnkbQWusepyCKC/OMRmlrx9XBbtGGdYyoxxryzqrH8E6mgtinwAMxKbMhAatfc2X4RqbCrYvCw1MDHzeUGo3F5Svd3NpKyuPc3IzEHVd2y4WD+sFucHHOnBJw0fqf+i1OsPM/xClRCYu8Hucwx8aSE6RqRJGQnDBWXgkFCTyj/cUSEa9CfTx4SE7tn4n1kZJ87buUZMY0XCFV1ciWkIvgidcJdv57zcv/v5pnPAaCUP+IohdwoE/C+nD6Ra8hTZ/0mrZ/s9GYsmvxNInatskAIDytIdsktQBq9zjM8Xh9X7AiwNPsm3vCFPhdSMuAg/EfXbwwc2bAgoQ7dm2jcMKp9LSYFefa5s0LmJ+DB2jjeOeExKragAAvb5dJASFTp+5FHitiSqrnzvX2fnuyJmzWTBM+Bva5oee0u3QG0XWVWB2gfnBuJ8cpUdQBFdp9xqyZk1yamtqKi0eP9vXNDguotJ38dgb9sQHZ4pcGy9FPFi5818MB1tMLeq4iXBCUyLom7BWwpxL1KT6Q6uVlRCmECxZbwgS62RKOPz0kcgl2f9BNFTkbj6LhyIYYZ9yH+zpQVSOqkqjMJiZgsBvek7FwqpO2wT0B0h5x9uSI50JO00/anzX91N6FAk89+tsptACm3REOPx6D3YyD+YUwHeaPAVvP4cGe/JYk0+EXJfzRqWh9/+PH/Wg9/rQfyGPbT3sgM65EOkxb7qIDeA3xE3SF+DkOfum4uisE7sCHrMEh+k9e0/lFCQvfn+YxF1V1WAOIG6LGNI/xnxOtrR0OZIii/gNGMRZMeJxjYGRgYABibcHwn/H8Nl8ZuDkYQOC2ucBZGP3/378gNlW2XKA6DgYmkCgAJZELFQAAAHicY2BkYGDL/RfEsINt5f9//2+wqTIARVCAOQCzqAdjeJxjYIAAplVArMDAwFLEIA7EfkwrGaqB2IvJkmEbFIPkYoD4MRDbA3EUEMsDcRhUPAnKDgOpZw37/4/1GEMCEC9hDWNYwvKYYQlQfA/bSgifzRIoFwbU95hBF6QGZCcQd7MwMHgAaTAGqheAsrsZL0EwUH83WB1UnGklWI89UK0ykN8OZEsDzeMC0nwM0gDhly58AAAAAAAAAAAAAAAAOACEAKAAugDOANoA6gEWASoBYgGoAcYB/AI8AlACngLeAvADDgNGA2oDhAOaA6gDxgP2BDYEggSWBMIE/gUuBWQFkgXOBfIGMAZQBmIGcAakBsQG+AcoB0IHggeqB8oH4AgACB4IRAAAeJxjYGRgYLBgMGFgZgABRgY0AAALkQByeJyljD0KwmAQRF9M/GutLNMLohGsrLRQEIkgSLATNTEgfmJsbDyBB/MYHsVJ8p3AsAy82dlZoMkOF8drAx2pZIexXMk1Wiwsu0xYW/bEb8t1unwsN7T/MsNw48mdlIQzD0IilmrPWdGTUg5KDZkUK/fZsOcqn9OpaMZMlV44/tl+MSKo1N0WPtPG6MJnSJ+BpsLPHw3RNqR4nGNgZsALAAB9AAQ=\\\");}@font-face {font-family:f6-2;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}</style><svg id=\\\"qoppa_page_p6\\\" class=\\\"qoppa_page\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\"><rect class=\\\"qoppa_pageborder\\\" x=\\\"0.5pt\\\" y=\\\"0.5pt\\\" width=\\\"611pt\\\" height=\\\"791pt\\\" fill=\\\"none\\\" /><svg class=\\\"qoppa_pagecontents\\\" x=\\\"0pt\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" viewBox=\\\"0 0 612 792\\\" ><g class=\\\"qoppa_contentstream\\\" transform=\\\"matrix(1 0 0 -1 0 792)\\\" fill=\\\"black\\\" stroke=\\\"black\\\" stroke-width=\\\"1\\\" stroke-linecap=\\\"butt\\\" stroke-linejoin=\\\"miter\\\" stroke-miterlimit=\\\"10\\\"><clipPath id=\\\"clip6-1\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 284.4843 735.5809)\\\" x=\\\"0 6.67 11.67 17.23 19.51 25.07 27.35\\\">Exhibit</text></g><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(0.99 0 0 -1 314.4843 735.5809)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 317.4843 735.5809)\\\" x=\\\"0\\\">A</text></g><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 94.4 699.1621)\\\" x=\\\"0 3.2783 9.3398 14.8398 20.9014 23.6816 29.1816\\\">Invoice</text></g><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 129.6432 699.1621)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 132.7994 699.1621)\\\" x=\\\"0\\\">#</text></g><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 138.8609 699.1621)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 142.0172 699.1621)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 142.0172 697.4792 L 142.0172 697.4792 L 145.0172 697.4792 L 145.4339 697.4792 L 145.4339 696.6458 L 145.0172 696.6458 L 142.0172 696.6458 L 141.6005 696.6458 L 141.6005 697.4792 z \\\"/><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 145.1734 699.1621)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 145.1734 697.4792 L 145.1734 697.4792 L 148.1734 697.4792 L 148.5901 697.4792 L 148.5901 696.6458 L 148.1734 696.6458 L 145.1734 696.6458 L 144.7568 696.6458 L 144.7568 697.4792 z \\\"/><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 148.3297 699.1621)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 148.3297 697.4792 L 148.3297 697.4792 L 151.3297 697.4792 L 151.7464 697.4792 L 151.7464 696.6458 L 151.3297 696.6458 L 148.3297 696.6458 L 147.913 696.6458 L 147.913 697.4792 z \\\"/><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 151.4859 699.1621)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 151.4859 697.4792 L 151.4859 697.4792 L 154.4859 697.4792 L 154.9026 697.4792 L 154.9026 696.6458 L 154.4859 696.6458 L 151.4859 696.6458 L 151.0693 696.6458 L 151.0693 697.4792 z \\\"/><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 154.6422 699.1621)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 154.6422 697.4792 L 154.6422 697.4792 L 157.6422 697.4792 L 158.0589 697.4792 L 158.0589 696.6458 L 157.6422 696.6458 L 154.6422 696.6458 L 154.2255 696.6458 L 154.2255 697.4792 z \\\"/><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 157.7984 699.1621)\\\" x=\\\"0\\\">0</text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 157.7984 697.4792 L 157.7984 697.4792 L 163.7984 697.4792 L 164.2151 697.4792 L 164.2151 696.6458 L 163.7984 696.6458 L 157.7984 696.6458 L 157.3818 696.6458 L 157.3818 697.4792 z \\\"/><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 163.86 699.1621)\\\" x=\\\"0\\\">4</text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 163.86 697.4792 L 163.86 697.4792 L 169.86 697.4792 L 170.2766 697.4792 L 170.2766 696.6458 L 169.86 696.6458 L 163.86 696.6458 L 163.4433 696.6458 L 163.4433 697.4792 z \\\"/><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 169.9215 699.1621)\\\" x=\\\"0\\\">1</text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 169.9215 697.4792 L 169.9215 697.4792 L 175.9215 697.4792 L 176.3382 697.4792 L 176.3382 696.6458 L 175.9215 696.6458 L 169.9215 696.6458 L 169.5048 696.6458 L 169.5048 697.4792 z \\\"/><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 175.983 699.1621)\\\" x=\\\"0\\\">2</text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 175.983 697.4792 L 175.983 697.4792 L 181.983 697.4792 L 182.3997 697.4792 L 182.3997 696.6458 L 181.983 696.6458 L 175.983 696.6458 L 175.5663 696.6458 L 175.5663 697.4792 z \\\"/><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 182.0445 699.1621)\\\" x=\\\"0\\\">9</text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 182.0445 697.4792 L 182.0445 697.4792 L 188.0445 697.4792 L 188.4612 697.4792 L 188.4612 696.6458 L 188.0445 696.6458 L 182.0445 696.6458 L 181.6279 696.6458 L 181.6279 697.4792 z \\\"/><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 188.1061 699.1621)\\\" x=\\\"0\\\">9</text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 188.1061 697.4792 L 188.1061 697.4792 L 194.1061 697.4792 L 194.5227 697.4792 L 194.5227 696.6458 L 194.1061 696.6458 L 188.1061 696.6458 L 187.6894 696.6458 L 187.6894 697.4792 z \\\"/><clipPath id=\\\"clip6-2\\\"><path d=\\\"M 71 551 L 537 551 L 537 572 L 71 572 L 71 551 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 286.9417 561.1477)\\\" x=\\\"0 6.003 9 14.004 19.008 24.012 28.512 31.014\\\">Products</text></g><clipPath id=\\\"clip6-3\\\"><path d=\\\"M 71 531 L 165 531 L 165 552 L 71 552 L 71 531 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 106.4173 541.1477)\\\" x=\\\"0 7.497 12.501 17.505 22.509\\\">Model</text></g><clipPath id=\\\"clip6-4\\\"><path d=\\\"M 164 531 L 258 531 L 258 552 L 164 552 L 164 531 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-4)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 189.1385 541.1477)\\\" x=\\\"0 6.498 11.502 16.002 20.502 23.499 25.551 30.555 33.057 35.109 40.113\\\">Description</text></g><clipPath id=\\\"clip6-5\\\"><path d=\\\"M 257 531 L 351 531 L 351 552 L 257 552 L 257 531 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-5)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 297.6995 541.1477)\\\" x=\\\"0 7.002 9.504\\\">Qty</text></g><clipPath id=\\\"clip6-6\\\"><path d=\\\"M 350 531 L 444 531 L 444 552 L 350 552 L 350 531 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-6)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 387.4212 541.1477)\\\" x=\\\"0 6.003 9 11.052 15.552\\\">Price</text></g><clipPath id=\\\"clip6-7\\\"><path d=\\\"M 443 531 L 537 531 L 537 552 L 443 552 L 443 531 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-7)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 460.2107 541.1477)\\\" x=\\\"0 6.003 10.503 13.005 18.009 23.013 28.017 33.021 38.025 40.419 46.422 49.419 51.471 55.971\\\">Extended Price</text></g><clipPath id=\\\"clip6-8\\\"><path d=\\\"M 164 511 L 258 511 L 258 532 L 164 532 L 164 511 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 178.6472 522.0696)\\\" x=\\\"0 5.336 9.784 12.448 16.448 18.272 22.272 26.72 30.72 32.848 37.296 41.744 46.192 48.32 53.208 57.656 62.104\\\">Services and Fees</text></g><clipPath id=\\\"clip6-9\\\"><path d=\\\"M 257 511 L 351 511 L 351 532 L 257 532 L 257 511 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 302.4754 522.0696)\\\" x=\\\"0\\\">1</text></g><clipPath id=\\\"clip6-10\\\"><path d=\\\"M 350 511 L 444 511 L 444 532 L 350 532 L 350 511 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 378.8426 522.0696)\\\" x=\\\"0 4.448 6.576 11.024 13.248 17.696 22.144 26.592 28.816 33.264\\\">$ 3,784.97</text></g><clipPath id=\\\"clip6-11\\\"><path d=\\\"M 443 511 L 537 511 L 537 532 L 443 532 L 443 511 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 471.8426 522.0696)\\\" x=\\\"0 4.448 6.576 11.024 13.248 17.696 22.144 26.592 28.816 33.264\\\">$ 3,784.97</text></g><clipPath id=\\\"clip6-12\\\"><path d=\\\"M 164 491 L 258 491 L 258 512 L 164 512 L 164 491 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 196.364 502.0696)\\\" x=\\\"0 6.664 11.112 13.336 15.56 18.224 22.672 26.672\\\">Mattress</text></g><clipPath id=\\\"clip6-13\\\"><path d=\\\"M 257 491 L 351 491 L 351 512 L 257 512 L 257 491 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-13)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 302.4754 502.0696)\\\" x=\\\"0\\\">1</text></g><clipPath id=\\\"clip6-14\\\"><path d=\\\"M 350 491 L 444 491 L 444 512 L 350 512 L 350 491 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-14)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 386.6277 502.0696)\\\" x=\\\"0 4.448 6.576 11.024 13.248 17.696\\\">$ 1.00</text></g><clipPath id=\\\"clip6-15\\\"><path d=\\\"M 443 491 L 537 491 L 537 512 L 443 512 L 443 491 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 479.6277 502.0696)\\\" x=\\\"0 4.448 6.576 11.024 13.248 17.696\\\">$ 1.00</text></g><clipPath id=\\\"clip6-16\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 71.2 572.4446 L 537.2 572.4446 L 537.2 571.4446 L 71.2 571.4446 L 71.2 572.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 536.2 571.4446 L 537.2 571.4446 L 537.2 552.4446 L 536.2 552.4446 L 536.2 571.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 71.2 571.4446 L 72.2 571.4446 L 72.2 552.4446 L 71.2 552.4446 L 71.2 571.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 71.2 552.4446 L 165.2 552.4446 L 165.2 551.4446 L 71.2 551.4446 L 71.2 552.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 71.2 551.4446 L 72.2 551.4446 L 72.2 532.4446 L 71.2 532.4446 L 71.2 551.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 165.2 552.4446 L 258.2 552.4446 L 258.2 551.4446 L 165.2 551.4446 L 165.2 552.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 164.2 551.4446 L 165.2 551.4446 L 165.2 532.4446 L 164.2 532.4446 L 164.2 551.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 258.2 552.4446 L 351.2 552.4446 L 351.2 551.4446 L 258.2 551.4446 L 258.2 552.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 257.2 551.4446 L 258.2 551.4446 L 258.2 532.4446 L 257.2 532.4446 L 257.2 551.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 351.2 552.4446 L 444.2 552.4446 L 444.2 551.4446 L 351.2 551.4446 L 351.2 552.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 350.2 551.4446 L 351.2 551.4446 L 351.2 532.4446 L 350.2 532.4446 L 350.2 551.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 444.2 552.4446 L 537.2 552.4446 L 537.2 551.4446 L 444.2 551.4446 L 444.2 552.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 536.2 551.4446 L 537.2 551.4446 L 537.2 532.4446 L 536.2 532.4446 L 536.2 551.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 443.2 551.4446 L 444.2 551.4446 L 444.2 532.4446 L 443.2 532.4446 L 443.2 551.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 71.2 532.4446 L 165.2 532.4446 L 165.2 531.4446 L 71.2 531.4446 L 71.2 532.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 71.2 531.4446 L 72.2 531.4446 L 72.2 512.4446 L 71.2 512.4446 L 71.2 531.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 165.2 532.4446 L 258.2 532.4446 L 258.2 531.4446 L 165.2 531.4446 L 165.2 532.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 164.2 531.4446 L 165.2 531.4446 L 165.2 512.4446 L 164.2 512.4446 L 164.2 531.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 258.2 532.4446 L 351.2 532.4446 L 351.2 531.4446 L 258.2 531.4446 L 258.2 532.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 257.2 531.4446 L 258.2 531.4446 L 258.2 512.4446 L 257.2 512.4446 L 257.2 531.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 351.2 532.4446 L 444.2 532.4446 L 444.2 531.4446 L 351.2 531.4446 L 351.2 532.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 350.2 531.4446 L 351.2 531.4446 L 351.2 512.4446 L 350.2 512.4446 L 350.2 531.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 444.2 532.4446 L 537.2 532.4446 L 537.2 531.4446 L 444.2 531.4446 L 444.2 532.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 536.2 531.4446 L 537.2 531.4446 L 537.2 512.4446 L 536.2 512.4446 L 536.2 531.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 443.2 531.4446 L 444.2 531.4446 L 444.2 512.4446 L 443.2 512.4446 L 443.2 531.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 71.2 512.4446 L 165.2 512.4446 L 165.2 511.4446 L 71.2 511.4446 L 71.2 512.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 71.2 492.4446 L 165.2 492.4446 L 165.2 491.4446 L 71.2 491.4446 L 71.2 492.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 71.2 511.4446 L 72.2 511.4446 L 72.2 492.4446 L 71.2 492.4446 L 71.2 511.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 165.2 512.4446 L 258.2 512.4446 L 258.2 511.4446 L 165.2 511.4446 L 165.2 512.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 165.2 492.4446 L 258.2 492.4446 L 258.2 491.4446 L 165.2 491.4446 L 165.2 492.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 164.2 511.4446 L 165.2 511.4446 L 165.2 492.4446 L 164.2 492.4446 L 164.2 511.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 258.2 512.4446 L 351.2 512.4446 L 351.2 511.4446 L 258.2 511.4446 L 258.2 512.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 258.2 492.4446 L 351.2 492.4446 L 351.2 491.4446 L 258.2 491.4446 L 258.2 492.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 257.2 511.4446 L 258.2 511.4446 L 258.2 492.4446 L 257.2 492.4446 L 257.2 511.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 351.2 512.4446 L 444.2 512.4446 L 444.2 511.4446 L 351.2 511.4446 L 351.2 512.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 351.2 492.4446 L 444.2 492.4446 L 444.2 491.4446 L 351.2 491.4446 L 351.2 492.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 350.2 511.4446 L 351.2 511.4446 L 351.2 492.4446 L 350.2 492.4446 L 350.2 511.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 444.2 512.4446 L 537.2 512.4446 L 537.2 511.4446 L 444.2 511.4446 L 444.2 512.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 444.2 492.4446 L 537.2 492.4446 L 537.2 491.4446 L 444.2 491.4446 L 444.2 492.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 536.2 511.4446 L 537.2 511.4446 L 537.2 492.4446 L 536.2 492.4446 L 536.2 511.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 443.2 511.4446 L 444.2 511.4446 L 444.2 492.4446 L 443.2 492.4446 L 443.2 511.4446 z \\\"/><clipPath id=\\\"clip6-17\\\"><path d=\\\"M 264 464 L 404 464 L 404 478 L 264 478 L 264 464 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-17)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.9359 468.3239)\\\" x=\\\"0 5.336 9.784 14.232 16.36 21.248 25.696 27.92 32.368 34.192\\\">Sub Total:</text></g><clipPath id=\\\"clip6-18\\\"><path d=\\\"M 403 464 L 535 464 L 535 478 L 403 478 L 403 464 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.55 468.3239)\\\" x=\\\"0 4.448 6.576 11.024 13.248 17.696 22.144 26.592 28.816 33.264\\\">$ 3,785.97</text></g><clipPath id=\\\"clip6-19\\\"><path d=\\\"M 264 451 L 404 451 L 404 465 L 264 465 L 264 451 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-19)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 358.6078 454.8239)\\\" x=\\\"0 5.336 9.784 11.608 16.056 20.056 22.184 27.072 31.52 35.52\\\">Sales Tax:</text></g><clipPath id=\\\"clip6-20\\\"><path d=\\\"M 403 451 L 535 451 L 535 465 L 403 465 L 403 451 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-20)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.55 454.8239)\\\" x=\\\"0 4.448 6.576 11.024 15.472 17.696 22.144\\\">$ 86.03</text></g><clipPath id=\\\"clip6-21\\\"><path d=\\\"M 264 437 L 404 437 L 404 452 L 264 452 L 264 437 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.7758 441.3239)\\\" x=\\\"0 4.888 9.336 11.56 16.008 17.832 19.96 22.184 26.632 30.632 35.08 36.904 40.904 45.352\\\">Total Invoice:</text></g><clipPath id=\\\"clip6-22\\\"><path d=\\\"M 403 437 L 535 437 L 535 452 L 403 452 L 403 437 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-22)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.55 441.3239)\\\" x=\\\"0 4.448 6.576 11.024 13.248 17.696 22.144 26.592 28.816 33.264\\\">$ 3,872.00</text></g><clipPath id=\\\"clip6-23\\\"><path d=\\\"M 264 424 L 404 424 L 404 438 L 264 438 L 264 424 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-23)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 284.3578 427.8239)\\\" x=\\\"0 5.336 12 14.224 16.352 22.128 26.576 31.024 33.152 38.04 42.488 46.936 51.384 55.384 57.512 60.176 65.952 68.176 72.624 74.752 80.088 82.752 87.2 91.2 93.328 98.216 102.664 107.112 109.776\\\">Amt Due Today (w/o Proc Fee):</text></g><clipPath id=\\\"clip6-24\\\"><path d=\\\"M 403 424 L 535 424 L 535 438 L 403 438 L 403 424 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.55 427.8239)\\\" x=\\\"0 4.448 6.576 11.024 13.248 17.696 22.144 26.592 28.816 33.264\\\">$ 3,784.30</text></g><clipPath id=\\\"clip6-25\\\"><path d=\\\"M 264 410 L 404 410 L 404 425 L 264 425 L 264 410 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-25)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.4242 414.3239)\\\" x=\\\"0 5.336 9.784 14.232 16.056 18.184 23.96 28.408 32.408 34.632 36.76 42.536 46.984 50.984 55.432 57.56 62.896 67.344 69.472 74.36 78.808 83.256 87.704 91.704\\\">Addl Cust Cash Pd Today:</text></g><clipPath id=\\\"clip6-26\\\"><path d=\\\"M 403 410 L 535 410 L 535 425 L 403 425 L 403 410 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-26)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.55 414.3239)\\\" x=\\\"0 4.448 6.576 11.024 13.248 17.696\\\">$ 0.00</text></g><clipPath id=\\\"clip6-27\\\"><path d=\\\"M 264 397 L 404 397 L 404 411 L 264 411 L 264 397 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 333.8422 400.8239)\\\" x=\\\"0 5.336 9.784 14.232 18.68 20.808 26.584 31.032 35.032 39.48 41.608 47.384 51.384 55.832 60.28\\\">Snap Cash Used:</text></g><clipPath id=\\\"clip6-28\\\"><path d=\\\"M 403 397 L 535 397 L 535 411 L 403 411 L 403 397 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.55 400.8239)\\\" x=\\\"0 4.448 6.576 11.024 15.472 17.696 22.144\\\">$ 87.70</text></g><clipPath id=\\\"clip6-29\\\"><path d=\\\"M 264 383 L 404 383 L 404 398 L 264 398 L 264 383 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-29)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 274.8227 387.3239)\\\" x=\\\"0 5.336 8 12.448 16.448 18.576 23.464 27.912 32.36 34.488 40.264 44.712 46.536 48.36 52.808 56.808 59.032 63.48 67.928 70.056 72.72 77.168 81.168 83.296 89.96 94.408 97.072 101.072 105.52 109.968 114.416 116.64 119.304\\\">Proc Fee Collected (by Merchant):</text></g><clipPath id=\\\"clip6-30\\\"><path d=\\\"M 403 383 L 535 383 L 535 398 L 403 398 L 403 383 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.55 387.3239)\\\" x=\\\"0 4.448 6.576 11.024 13.248 17.696\\\">$ 0.00</text></g><clipPath id=\\\"clip6-31\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip6-31)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 403.55 464.9489 L 534.3 464.9489 L 534.3 464.4489 L 403.55 464.4489 L 403.55 464.9489 z \\\"/><path clip-path=\\\"url(#clip6-31)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 403.55 451.4489 L 534.3 451.4489 L 534.3 450.9489 L 403.55 450.9489 L 403.55 451.4489 z \\\"/><path clip-path=\\\"url(#clip6-31)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 403.55 437.9489 L 534.3 437.9489 L 534.3 437.4489 L 403.55 437.4489 L 403.55 437.9489 z \\\"/><path clip-path=\\\"url(#clip6-31)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 403.55 424.4489 L 534.3 424.4489 L 534.3 423.9489 L 403.55 423.9489 L 403.55 424.4489 z \\\"/><path clip-path=\\\"url(#clip6-31)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 403.55 410.9489 L 534.3 410.9489 L 534.3 410.4489 L 403.55 410.4489 L 403.55 410.9489 z \\\"/><path clip-path=\\\"url(#clip6-31)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 403.55 397.4489 L 534.3 397.4489 L 534.3 396.9489 L 403.55 396.9489 L 403.55 397.4489 z \\\"/><path clip-path=\\\"url(#clip6-31)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 403.55 383.9489 L 534.3 383.9489 L 534.3 383.4489 L 403.55 383.4489 L 403.55 383.9489 z \\\"/><g clip-path=\\\"url(#clip6-31)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 36.5264)\\\" x=\\\"0 6.498 11.997 14.391 16.785 21.789 26.793 29.295 34.299 39.303 44.307 504 506.3906 508.7812 511.1719 513.5625 515.9531 518.3438 520.7344 523.125 525.5156\\\">UT  07/2019          </text></g><g clip-path=\\\"url(#clip6-31)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 26.3398)\\\" x=\\\"0 6.003 11.007 16.011 21.015\\\">Page </text></g><g clip-path=\\\"url(#clip6-31)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 55.8097 26.3398)\\\" x=\\\"0\\\">7</text></g><g clip-path=\\\"url(#clip6-31)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.815 26.3398)\\\" x=\\\"0 2.394 7.398 9.9\\\"> of </text></g><g clip-path=\\\"url(#clip6-31)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 73.1021 26.3398)\\\" x=\\\"0\\\">7</text></g><g clip-path=\\\"url(#clip6-31)\\\"><text stroke=\\\"none\\\" fill=\\\"#d9d9d9\\\" style=\\\"font-family:f6-0; font-size:54pt; white-space:pre\\\" transform=\\\"matrix(0.707 0.707 0.707 -0.707 135.6027 198.5094)\\\" x=\\\"0 56.016 96.048 136.08 176.112 216.144 236.16 284.184 324.216 344.232 364.248 416.232 456.264 480.24\\\">Qoppa Software</text></g><g clip-path=\\\"url(#clip6-31)\\\"><text stroke=\\\"none\\\" fill=\\\"#002ba6\\\" style=\\\"font-family:f6-0; font-size:9pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.932 772)\\\" x=\\\"0 9.336 16.008 22.68 29.352 36.024 39.36 47.364 54.036 57.372 60.708 69.372 76.044 80.04 86.712 90.048 94.044 97.38 104.712 111.384 115.38 118.716 126.72 132.72 139.392 142.056 148.728 155.4 158.736 161.4 168.072 174.744 178.08 187.416 194.088 196.752 202.752 206.088 210.084 213.42 220.092 223.428 226.764 233.436 239.436 242.772 246.108 249.444 258.108 266.772 275.436 278.772 285.444 292.116 298.788 305.46 312.132 315.468 321.468 328.14\\\">Qoppa Software - For Evaluation Only - https://www.qoppa.com</text></g></g></svg></svg></g></svg><br>\\n</body> \\n </html>\\n\"\n        }\n    },\n    \"success\": true,\n    \"status\": 200\n}"},{"id":"d4e16e1a-bc5d-4cc2-890f-df8e4b625664","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer pORU5GTWtNeE1UQkJPVE5DUl....JiWYvnmRQSSCozUr6Xt7RXRK","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Content-Type","value":"application/json"},{"key":"Request-Id","value":"123"}],"url":{"raw":"https://api-sandbox.snapfinance.com/platform/v1/application/{{applicationId}}/agreement?renderType=html&document=agreement","protocol":"https","host":["api-sandbox","snapfinance","com"],"path":["platform","v1","application","{{applicationId}}","agreement"],"query":[{"key":"renderType","value":"html"},{"key":"document","value":"agreement"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"136"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 16 Jul 2020 17:02:21 GMT"},{"key":"x-amzn-RequestId","value":"7bdbe015-ee4e-47a5-a8c5-70f56a2cde04"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"Pxo0aFo-PHcFy6A="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f10881c-f4d45cc21e4bc05a15184b31"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 0a72bb7be10458e1aefa37a097f21894.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"Zcwg0uNr6gJ8ilLNW9-r5krSpR6T7Z-LLnNpLYvub6tAYp-Dx30msw=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"status\": 404,\n    \"error\": [\n        {\n            \"code\": \"application_invalid\",\n            \"type\": \"invalid_request_error\",\n            \"message\": \"Application not found\"\n        }\n    ]\n}"},{"id":"797dd085-ab1b-496d-b833-113964a50e38","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Content-Type","value":"application/json"},{"key":"Request-Id","value":"123"}],"url":{"raw":"{{baseUrl}}/platform/v1/application/{{applicationId}}/agreement?renderType=html&document=agreement","host":["{{baseUrl}}"],"path":["platform","v1","application","{{applicationId}}","agreement"],"query":[{"key":"renderType","value":"html"},{"key":"document","value":"agreement"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1825083"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:24:43 GMT"},{"key":"x-amzn-RequestId","value":"40b52282-2a30-4df6-8cdf-82aa447ca6b3"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P02OxEfnPHcF9yw="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d0c4-8b923ff4b1bf11f48fb3b3b8"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"OcTSGzIIqa3esIfeYqbdx2iywfRfpBgLnbSAPl3aJcuDg_Vl84kX2A=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"agreementInformation\": {\n            \"applicationId\": \"{{applicationId}}\",\n            \"customerInformation\": {\n                \"dobDate\": \"1977-07-07\",\n                \"customerId\": \"000007777\",\n                \"customerIdType\": \"SSN4\",\n                \"mobilePhone\": \"1000000019\",\n                \"mobilePhoneCountry\": \"US\",\n                \"email\": \"test@test.com\",\n                \"firstName\": \"John\",\n                \"lastName\": \"Smith\",\n                \"billingAddress\": {\n                    \"streetAddress\": \"123mainst\",\n                    \"city\": \"Saltlakecity\",\n                    \"state\": \"UT\",\n                    \"country\": \"US\",\n                    \"postalCode\": \"84001\"\n                }\n            },\n            \"snapFinanceInformation\": {\n                \"businessName\": \"Snap RTO LLC\",\n                \"snapAddress\": {\n                    \"streetAddress\": \"Any street in town\",\n                    \"city\": \"Salt Lake City\",\n                    \"state\": \"UT\",\n                    \"country\": \"US\",\n                    \"postalCode\": \"84126\"\n                },\n                \"email\": \"test@test.com\",\n                \"phoneNumber\": \"1000000007\",\n                \"phoneNumberCode\": \"US\"\n            },\n            \"agreementDetails\": \"<!DOCTYPE html>\\n<html>\\n\\t<head>\\n\\t\\t<meta charset=\\\"utf-8\\\">\\n\\t\\t<style type=\\\"text/css\\\">\\n\\t\\t\\tbody {background-color:lightgray; text-align:center;}\\n\\t\\t\\t.qoppa_pageborder {fill:white;}\\n\\t\\t\\t#qoppa_document {padding:5px; margin:auto;}\\n\\t\\t</style>\\n\\t</head>\\n\\t<body>\\n<?xml version='1.0' encoding='UTF-8'?><svg id=\\\"qoppa_document\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" version=\\\"1.1\\\" xmlns=\\\"http://www.w3.org/2000/svg\\\" xmlns:xlink=\\\"http://www.w3.org/1999/xlink\\\"><!-- jPDFWeb v2019R1.03 - Demo Version --><style>title p { display: block; }</style><g id=\\\"qoppa_viewxform\\\" transform=\\\"matrix(1 0 0 1 0 0)\\\"><style type=\\\"text/css\\\">@font-face {font-family:f0-0;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f0-1;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f0-2;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}</style><svg id=\\\"qoppa_page_p0\\\" class=\\\"qoppa_page\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\"><rect class=\\\"qoppa_pageborder\\\" x=\\\"0.5pt\\\" y=\\\"0.5pt\\\" width=\\\"611pt\\\" height=\\\"791pt\\\" fill=\\\"none\\\" /><svg class=\\\"qoppa_pagecontents\\\" x=\\\"0pt\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" viewBox=\\\"0 0 612 792\\\" ><g class=\\\"qoppa_contentstream\\\" transform=\\\"matrix(1 0 0 -1 0 792)\\\" fill=\\\"black\\\" stroke=\\\"black\\\" stroke-width=\\\"1\\\" stroke-linecap=\\\"butt\\\" stroke-linejoin=\\\"miter\\\" stroke-miterlimit=\\\"10\\\"><clipPath id=\\\"clip0-1\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><g clip-path=\\\"url(#clip0-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:8.25pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 213.8098 759.5594)\\\" x=\\\"0 7.942 15.279 23.221 29.942 37.279 43.395 47.058 54.395 62.337 70.279 78.221 86.163 93.5 100.837 108.174 111.1 118.437 126.995 134.937 142.274 149.611 158.774 166.111 174.053\\\">RENTAL-PURCHASE AGREEMENT</text></g><clipPath id=\\\"clip0-2\\\"><path d=\\\"M 35 701 L 285 701 L 285 758 L 35 758 L 35 701 z \\\"/></clipPath><g clip-path=\\\"url(#clip0-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 745.5311)\\\" x=\\\"0 5.56 11.12 16.68 21.68 27.24 29.9 37.12 42.68 51.01 56.57 62.13 67.69 72.69 75.35 78.68 84.24 89.8 94.8 99.8 105.36 108.69 112.02 114.8 117.46 124.13 131.35 138.02 144.69 147.35 154.57 160.68 168.46 171.12 176.68 182.24\\\">Lease Company (Lessor): SNAP RTO LLC</text></g><g clip-path=\\\"url(#clip0-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 732.2127)\\\" x=\\\"0 6.67 9.45 17.23 20.01 22.67 29.34 34.9 39.9 42.56 48.12 53.68 59.24 64.8\\\">P.O. Box 26561</text></g><g clip-path=\\\"url(#clip0-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 718.8943)\\\" x=\\\"0 6.67 12.23 14.51 17.29 19.95 25.51 31.07 36.07 41.63 44.29 51.51 53.79 56.57 61.57 64.35 67.01 74.23 80.34 83 88.56 94.12 99.68 105.24\\\">Salt Lake City, UT 84126</text></g><g clip-path=\\\"url(#clip0-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 705.576)\\\" x=\\\"0 6.67 12.23 17.79 23.35 28.91 31.69 34.35 37.68 43.24 48.8 54.36 57.69 60.35 65.91 71.47 77.03 80.36 85.92 91.48 97.04\\\">Phone: (877) 557-3769</text></g><clipPath id=\\\"clip0-3\\\"><path d=\\\"M 284 701 L 574 701 L 574 758 L 284 758 L 284 701 z \\\"/></clipPath><g clip-path=\\\"url(#clip0-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.225 745.5311)\\\" x=\\\"0 5.56 11.12 16.12 21.12 26.68 32.24 35.02 37.68 42.68 48.24 53.8 59.36 62.02 64.68 71.35 79.68 81.96 84.74\\\">Lessee: John  Smith</text></g><g clip-path=\\\"url(#clip0-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 290.225 732.2127)\\\" x=\\\"0 5.56 11.12 16.68 25.01 30.57 32.85 38.41 43.41\\\">123mainst</text></g><g clip-path=\\\"url(#clip0-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.225 718.8943)\\\" x=\\\"0 6.67 12.23 14.51 17.29 19.57 25.13 30.13 35.69 40.69 42.97 45.75 50.75 53.53 56.19 63.41 69.52 72.18 77.74 83.3 88.86 94.42\\\">Saltlakecity, UT 84001</text></g><g clip-path=\\\"url(#clip0-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 290.225 705.576)\\\" x=\\\"0 2.28 7.84 13.4 15.68 21.24 26.8 32.36 37.36 47.51 53.07 58.07 66.4 71.96 74.74 79.74 85.3\\\">jbolanos@acme.com</text></g><clipPath id=\\\"clip0-4\\\"><path d=\\\"M 35 674 L 285 674 L 285 702 L 35 702 L 35 674 z \\\"/></clipPath><g clip-path=\\\"url(#clip0-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 689.7576)\\\" x=\\\"0 6.67 12.23 17.79 20.07 22.35 27.35 32.91 35.69 37.97 43.53 49.09 51.75 54.53 61.75 64.53 67.19 72.75 78.31 83.87 89.43 94.99 100.55 106.11 111.67 117.23 126.67 133.89\\\">Application ID: 200717000WUT</text></g><clipPath id=\\\"clip0-5\\\"><path d=\\\"M 284 674 L 428 674 L 428 702 L 284 702 L 284 674 z \\\"/></clipPath><g clip-path=\\\"url(#clip0-5)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.225 689.7576)\\\" x=\\\"0 5.56 11.12 16.68 21.68 27.24 29.9 37.12 42.68 45.46 51.02 53.8 56.46 62.02 67.58 70.36 75.92 81.48 84.26 89.82 95.38 100.94\\\">Lease Date: 07/17/2020</text></g><g clip-path=\\\"url(#clip0-5)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.225 678.4393)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 27.68 34.35\\\">10:22 AM</text></g><clipPath id=\\\"clip0-6\\\"><path d=\\\"M 427 674 L 574 674 L 574 702 L 427 702 L 427 674 z \\\"/></clipPath><g clip-path=\\\"url(#clip0-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 433.375 689.7576)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79 40.45 47.67 53.23 58.79 64.35 66.63 69.41 71.69 77.25 82.81 85.59 88.25 95.47 101.03\\\">Property Condition: New</text></g><clipPath id=\\\"clip0-7\\\"><path d=\\\"M 35 631 L 574 631 L 574 675 L 35 675 L 35 631 z \\\"/></clipPath><g clip-path=\\\"url(#clip0-7)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 662.6209)\\\" x=\\\"0 7.22 12.78 17.78 22.78 26.11 28.39 33.95 36.73 39.01 44.57 50.13 52.79 58.35 61.13 63.79 69.35 74.91 80.47 86.03 91.03 93.69 99.25 104.81 107.09 112.65 118.21 120.87 126.43 131.99 135.32 140.32 145.88 151.44 156.44 162 167.56 170.22 173 176.33 181.89 190.22 192.88 195.66 201.22 206.78 209.44 216.66 222.22 225 230.56 232.84 235.12 240.68 244.01 246.67 250 252.78 258.34 263.9 266.56 269.89 276.56 279.89 285.45 291.01 296.57 299.9 302.68 307.68 311.01 314.34 317 319.78 325.34 328.67 331.45 337.01 342.57 345.9 348.56 354.12 359.12 364.68 366.96 372.52 374.8 380.36 385.92 391.48 394.14 396.42 401.98 404.64 411.31 416.31 421.87 424.15 429.71 431.99 434.77 437.43 444.1\\\">Description of goods being purchased from th* D E M O *(the “Property”) further explained in Exhibit A:</text></g><g clip-path=\\\"url(#clip0-7)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 649.3025)\\\" x=\\\"0 6.67 12.23 15.56 20.56 22.84 27.84 33.4 38.4 41.06 46.62 52.18 57.74 60.4 66.51 72.07 77.63 82.63 85.41 88.07 96.4 101.96 104.74 107.52 110.85 116.41 121.41\\\">Services and Fees, Mattress</text></g><clipPath id=\\\"clip0-8\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.025 757.4998 L 285.075 757.4998 L 285.075 756.9998 L 35.025 756.9998 L 35.025 757.4998 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.025 756.9998 L 35.525 756.9998 L 35.525 701.7264 L 35.025 701.7264 L 35.025 756.9998 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 285.075 757.4998 L 573.375 757.4998 L 573.375 756.9998 L 285.075 756.9998 L 285.075 757.4998 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.875 756.9998 L 573.375 756.9998 L 573.375 701.7264 L 572.875 701.7264 L 572.875 756.9998 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 284.575 756.9998 L 285.075 756.9998 L 285.075 701.7264 L 284.575 701.7264 L 284.575 756.9998 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.025 701.7264 L 285.075 701.7264 L 285.075 701.2264 L 35.025 701.2264 L 35.025 701.7264 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.025 701.2264 L 35.525 701.2264 L 35.525 674.5897 L 35.025 674.5897 L 35.025 701.2264 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 285.075 701.7264 L 428.225 701.7264 L 428.225 701.2264 L 285.075 701.2264 L 285.075 701.7264 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 284.575 701.2264 L 285.075 701.2264 L 285.075 674.5897 L 284.575 674.5897 L 284.575 701.2264 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 428.225 701.7264 L 573.375 701.7264 L 573.375 701.2264 L 428.225 701.2264 L 428.225 701.7264 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.875 701.2264 L 573.375 701.2264 L 573.375 674.5897 L 572.875 674.5897 L 572.875 701.2264 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 427.725 701.2264 L 428.225 701.2264 L 428.225 674.5897 L 427.725 674.5897 L 427.725 701.2264 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.025 674.5897 L 573.375 674.5897 L 573.375 674.0897 L 35.025 674.0897 L 35.025 674.5897 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.025 632.1346 L 573.375 632.1346 L 573.375 631.6346 L 35.025 631.6346 L 35.025 632.1346 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.875 674.0897 L 573.375 674.0897 L 573.375 632.1346 L 572.875 632.1346 L 572.875 674.0897 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.025 674.0897 L 35.525 674.0897 L 35.525 632.1346 L 35.025 632.1346 L 35.025 674.0897 z \\\"/><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 620.1658)\\\" x=\\\"0 6.11 13.89 21.11 29.44 36.11 42.22 45 52.78\\\">FORMATION</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 93.0951 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 97.0295 620.1658)\\\" x=\\\"0 7.78\\\">OF</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 110.9162 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 114.8506 620.1658)\\\" x=\\\"0 6.67 14.45 21.67 28.34 35.01 43.34 50.01 57.23 63.34\\\">AGREEMENT.</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 180.9688 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 184.9032 620.1658)\\\" x=\\\"0 6.67\\\">By</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 196.5731 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 200.5075 620.1658)\\\" x=\\\"0 5 7.28 12.84 18.4 20.68 26.24\\\">signing</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 232.3141 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 236.2485 620.1658)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 251.8686 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 255.803 620.1658)\\\" x=\\\"0 7.22 12.78 18.34 21.12 26.68 28.96 32.29 38.96 44.52 47.85 52.85 58.41 63.97 68.97\\\">Rental-Purchase</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 330.344 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 334.2784 620.1658)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement,</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 385.9727 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 389.9071 620.1658)\\\" x=\\\"0 5.56 7.84 12.84\\\">also</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 408.3105 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 412.2448 620.1658)\\\" x=\\\"0 5 10.56 16.12 23.34\\\">known</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 441.1511 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 445.0855 620.1658)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 455.647 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 459.5814 620.1658)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 465.1429 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 469.0773 620.1658)\\\" x=\\\"0 5.56 11.12 16.68 21.68\\\">Lease</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 496.3234 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 500.2578 620.1658)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.1738 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.1082 620.1658)\\\" x=\\\"0 7.22 9.5 12.28\\\">with</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 608.8475)\\\" x=\\\"0 7.78 13.34 16.12 18.4 23.96\\\">Option</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 62.6215 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 66.5575 608.8475)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 74.8974 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 78.8334 608.8475)\\\" x=\\\"0 6.67 12.23 15.56 20.56 26.12 31.68 36.68\\\">Purchase</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 121.0795 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 125.0155 608.8475)\\\" x=\\\"0 3.33 6.11 11.67 13.95\\\">(this</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 143.9657 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 147.9017 608.8475)\\\" x=\\\"0 3.33 10 15.56 18.89 24.45 30.01 38.34 43.9 49.46 52.24 55.57 58.9\\\">“Agreement”),</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.5863 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 213.5223 608.8475)\\\" x=\\\"0 5 10.56 16.12\\\">you,</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 232.4237 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 236.3597 608.8475)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 250.2611 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 254.1971 608.8475)\\\" x=\\\"0 7.22 12.78 17.78 20.56 26.12 34.45 40.01 43.34 46.67 51.67\\\">Customer(s)</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 309.202 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 313.138 608.8475)\\\" x=\\\"0 3.33 6.66 11.66 17.22 22.78\\\">(“you”</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 339.2513 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 343.1873 608.8475)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.8719 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 363.8079 608.8475)\\\" x=\\\"0 3.33 8.33 13.89 19.45 22.78 26.11\\\">“your”)</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.2513 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 397.1873 608.8475)\\\" x=\\\"0 5 10.56 16.12 21.68 26.68\\\">choose</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 429.4334 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 433.3695 608.8475)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 441.7093 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 445.6453 608.8475)\\\" x=\\\"0 2.28 7.84 13.4 18.4\\\">lease</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 469.6102 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 473.5462 608.8475)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 487.4476 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 491.3836 608.8475)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.1766 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 533.1126 608.8475)\\\" x=\\\"0 2.78 6.11 11.67\\\">from</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.1126 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0486 608.8475)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 597.5291)\\\" x=\\\"0 5.56 11.12 16.68 21.68\\\">Lease</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.3461 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 63.7235 597.5291)\\\" x=\\\"0 7.22 12.78 21.11 26.67 32.23 37.79\\\">Company</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 106.5213 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 109.8987 597.5291)\\\" x=\\\"0 3.33 6.66 13.88 19.44 22.22\\\">(“we,”</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 135.4505 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 138.8278 597.5291)\\\" x=\\\"0 3.33 8.89 13.89 16.67\\\">“us,”</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 158.8278 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 162.2052 597.5291)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 178.8898 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 182.2672 597.5291)\\\" x=\\\"0 3.33 8.89 14.45 17.78 21.11\\\">“our”)</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 206.7105 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.0879 597.5291)\\\" x=\\\"0 5.56 10.56 15.56 21.12 24.45 30.01 32.29 37.85\\\">according</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 253.5059 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 256.8832 597.5291)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 265.2231 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 268.6005 597.5291)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 282.5018 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 285.8792 597.5291)\\\" x=\\\"0 2.78 8.34 11.67 20\\\">terms</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 310.8792 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 314.2566 597.5291)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 322.5964 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 325.9738 597.5291)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 341.5939 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 344.9713 597.5291)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement.</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 396.6656 597.5291)\\\" x=\\\"0 3.3774\\\">  </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 403.4204 597.5291)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 420.6518 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 424.0292 597.5291)\\\" x=\\\"0 2.78 8.34 11.67\\\">term</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 444.0292 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 447.4066 597.5291)\\\" x=\\\"0 3.33 10.55 16.11 18.89 24.45 26.73 29.01 34.57 37.9\\\">“Retailer”</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 488.6419 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 492.0193 597.5291)\\\" x=\\\"0 8.33 13.89 19.45 25.01 30.01 36.68 42.24 47.8 52.8 57.8 61.13 67.8 73.36\\\">meansEbaycrYou</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 586.2107)\\\" x=\\\"0 5.56 11.12 16.12 21.68 24.34 27.12 32.68 38.24 40.9 44.23 46.51 52.07 57.63 60.41 63.19 65.85 71.41 76.97 79.75 82.41 87.97 93.53 96.31 98.97 101.75 107.31 112.87 115.53 121.09 126.65 128.93 131.21 136.77 142.33 145.11 147.39 152.95 158.51 161.29 163.95 166.73 172.29 174.95 180.51 185.51 191.07 196.63 198.91 202.24 207.8 210.46 216.02 223.24 228.8 234.36 237.69 242.69 248.25 250.53 256.09 258.75 264.31 267.09 269.75 272.53 278.09 283.65 286.31 292.98 296.31 301.87 307.43 312.99 316.32 319.1 324.1 326.76 332.32 337.32 339.98 345.54 351.1 356.1 361.1 364.43 366.71 372.27 377.83 383.39 386.05 391.61 397.17 400.5 406.06 408.34 413.9\\\">have the right, but not the obligation, to acquire ownership of the Property as described herein.</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 572.8924)\\\" x=\\\"0 6.67 13.89 21.67 28.89 31.67 38.34 41.12 47.23 50.01 57.79\\\">ACQUISITION</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 98.1049 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 101.7037 572.8924)\\\" x=\\\"0 7.78\\\">OF</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 115.5905 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 119.1893 572.8924)\\\" x=\\\"0 6.67 13.89 21.67 28.34 35.01 42.23 48.34\\\">PROPERTY</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 174.1991 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 177.798 572.8924)\\\" x=\\\"0 6.67\\\">AS</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 191.1378 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 194.7367 572.8924)\\\" x=\\\"0 6.67 14.45 21.12 28.34 34.45\\\">AGENT;</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.9632 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 235.5621 572.8924)\\\" x=\\\"0 7.22 13.89\\\">NEW</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 258.8922 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 262.4911 572.8924)\\\" x=\\\"0 7.22 15 22.22 29.44 32.22 38.33 41.11 48.89 56.11\\\">CONDITION;</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 321.3778 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 324.9766 572.8924)\\\" x=\\\"0 7.22 13.89 20.56 27.78 35 37.78 44.45 50.56 53.34 61.12 68.34\\\">DESCRIPTION.</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 396.0948 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 399.6937 572.8924)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 417.4866 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 421.0855 572.8924)\\\" x=\\\"0 5.56 8.89\\\">are</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 435.5386 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 439.1375 572.8924)\\\" x=\\\"0 5.56 11.12 13.9 19.46 21.74 27.3 29.58 35.14\\\">obtaining</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 479.8455 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 483.4444 572.8924)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 497.3458 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 500.9446 572.8924)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 538.7376 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 542.3365 572.8924)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.898 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 556.4968 572.8924)\\\" x=\\\"0 5.56 11.12\\\">our</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 561.574)\\\" x=\\\"0 5.56 11.12 16.68 22.24 25.02\\\">agent.</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.9027 561.574)\\\" x=\\\"0 4.0087\\\">  </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 68.9202 561.574)\\\" x=\\\"0 9.44\\\">We</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 83.9202 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 87.9288 561.574)\\\" x=\\\"0 5.56 12.78\\\">own</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 106.2736 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 110.2823 561.574)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 124.1837 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 128.1924 561.574)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 165.9853 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 169.994 561.574)\\\" x=\\\"0 5.56 11.12 13.4 18.96 23.96\\\">unless</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 198.9589 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 202.9676 561.574)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 219.6522 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 223.6609 561.574)\\\" x=\\\"0 5.56 11.12 13.9 16.18\\\">until</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 242.1228 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 246.1315 561.574)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.2545 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 266.2632 561.574)\\\" x=\\\"0 8.33 13.89 18.89\\\">make</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.7163 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 294.7251 561.574)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.6264 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 312.6351 561.574)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57 38.35\\\">payments</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.9896 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 359.9983 561.574)\\\" x=\\\"0 5.56 11.12 16.12 21.68 26.68 31.68 37.24 40.57\\\">necessary</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 405.5745 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 409.5832 561.574)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 417.923 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 421.9318 561.574)\\\" x=\\\"0 5.56 10.56 16.12 21.68 23.96 27.29\\\">acquire</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.7882 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 458.7969 561.574)\\\" x=\\\"0 5.56 12.78 18.34 23.9 27.23 32.23 37.79 40.07 45.63\\\">ownership.</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 507.2149 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 511.2236 561.574)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.0165 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 533.0253 561.574)\\\" x=\\\"0 5.56 11.12 14.45 20.01\\\">agree</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 558.6014 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 562.6101 561.574)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 550.2557)\\\" x=\\\"0 5.56 11.12 13.9 19.46 21.74 27.3 29.96 32.74 36.07 41.63 49.96 52.62 55.4 60.96 66.52 69.18 76.4 81.96 84.74 90.3 92.58 94.86 100.42 103.75 106.41 111.97 117.53 119.81 124.81 127.47 133.03 138.59 145.81 148.47 154.03 159.59 165.15 170.71 175.71 178.37 181.15 186.71 190.04 192.7 198.26 203.82 207.15 212.15 217.71 223.27 228.83 231.11 233.89 236.55 239.33 244.89 253.22 255.5 257.78 262.78 265.44 271 274.33 276.99 282.55 288.11 293.67 298.67 304.23 309.79 315.35 317.63 323.19 325.85 331.41 336.97 340.3 345.86 351.42 356.42 361.98 366.98\\\">obtain from the Retailer only new goods for personal, family or household purposes.</text></g><clipPath id=\\\"clip0-9\\\"><path d=\\\"M 35 529 L 574 529 L 574 547 L 35 547 L 35 529 z \\\"/></clipPath><path clip-path=\\\"url(#clip0-9)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 35.3 546.1561 L 573.1 546.1561 L 573.1 529.8377 L 35.3 529.8377 L 35.3 546.1561 z \\\"/><path clip-path=\\\"url(#clip0-9)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 40.7 543.1561 L 555.4 543.1561 L 555.4 531.8377 L 40.7 531.8377 L 40.7 543.1561 z \\\"/><path clip-path=\\\"url(#clip0-9)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 96.7096 543.1561 L 499.7096 543.1561 L 499.7096 531.1561 L 96.7096 531.1561 L 96.7096 543.1561 z \\\"/><g clip-path=\\\"url(#clip0-9)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 96.7096 533.9373)\\\" x=\\\"0 2.78 11.11 17.78 25.56 32.78 38.89 45.56 52.78 58.89 61.55 68.77 75.44 82.66 88.77 95.44 101 104.33 111 118.22 125.44 132.66 139.88 146.55 153.22 159.89 162.55 169.77 172.55 179.22 186.44 192 199.78 206.45 213.67 220.89 227.56 234.23 236.89 239.82 242.48 245.26 252.48 259.7 265.26 272.48 279.7 282.48 289.7 297.48 300.14 307.36 315.14 321.81 327.92 330.58 337.25 344.47 351.69 354.35 361.02 367.69 374.36 382.69 389.36 396.58\\\">IMPORTANT RENTAL-PURCHASE DISCLOSURES – INCLUDING COST AND PAYMENT</text></g><clipPath id=\\\"clip0-10\\\"><path d=\\\"M 35 81 L 574 81 L 574 530 L 35 530 L 35 81 z \\\"/></clipPath><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 517.619)\\\" x=\\\"0 6.11 13.33 16.11\\\">THIS</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 63.4783 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 68.7771 517.619)\\\" x=\\\"0 6.11 13.33 20 27.22 33.89 40.56 47.78 53.89 56.67 64.45\\\">TRANSACTION</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 140.447 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 145.7457 517.619)\\\" x=\\\"0 2.78\\\">IS</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 155.194 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 160.4927 517.619)\\\" x=\\\"0\\\">A</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 167.1627 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 172.4614 517.619)\\\" x=\\\"0 5.56 12.23 18.9 25.57\\\">LEASE</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 204.7026 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.0014 517.619)\\\" x=\\\"0 6.67 14.45 21.67 28.34 35.01 43.34 50.01 57.23\\\">AGREEMENT</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 273.3412 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 278.64 517.619)\\\" x=\\\"0 9.44 12.22 18.33\\\">WITH</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 304.1868 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 309.4856 517.619)\\\" x=\\\"0 7.78 14.45 20.56 23.34 31.12\\\">OPTION</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 347.8206 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 353.1193 517.619)\\\" x=\\\"0 6.11\\\">TO</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 367.006 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 372.3048 517.619)\\\" x=\\\"0 6.67 13.89 21.11 28.33 35.55 42.22 48.89 55.56\\\">PURCHASE.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.6495 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 435.9483 517.619)\\\" x=\\\"0 6.67 14.45\\\">YOU</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 457.6182 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 462.9169 517.619)\\\" x=\\\"0 9.44 12.22 17.78\\\">WILL</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.2568 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 491.5555 517.619)\\\" x=\\\"0 7.22 15\\\">NOT</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.6639 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 517.9627 517.619)\\\" x=\\\"0 7.78 17.22\\\">OWN</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 542.4012 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 547.6999 517.619)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 506.3006)\\\" x=\\\"0 6.67 13.89 21.67 28.34 35.01 42.23 48.34\\\">PROPERTY</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 95.7098 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 100.6852 506.3006)\\\" x=\\\"0 7.22 14.44 20.55 23.33\\\">UNTIL</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 129.5768 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 134.5522 506.3006)\\\" x=\\\"0 6.67 14.45\\\">YOU</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 156.2221 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 161.1975 506.3006)\\\" x=\\\"0 7.22 13.89 20.56\\\">HAVE</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 188.429 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 193.4044 506.3006)\\\" x=\\\"0 6.67 13.34 16.12\\\">PAID</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 216.7442 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 221.7197 506.3006)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 241.7197 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 246.6951 506.3006)\\\" x=\\\"0 6.11 13.89 20 26.67\\\">TOTAL</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 278.9216 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 283.8971 506.3006)\\\" x=\\\"0 6.67 13.34 20.01 28.34 35.01 42.23 48.34\\\">PAYMENTS</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.9068 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 343.8822 506.3006)\\\" x=\\\"0 7.22 13.89 21.11 27.78 34.45 41.12 47.79 55.01\\\">NECESSARY</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 405.5668 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 410.5422 506.3006)\\\" x=\\\"0 6.11\\\">TO</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 424.4289 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 429.4044 506.3006)\\\" x=\\\"0 6.67 13.89 21.67 28.89 31.67 38.89\\\">ACQUIRE</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.9659 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 479.9413 506.3006)\\\" x=\\\"0 7.78 17.22 24.44 31.11 38.33 45 52.22 55\\\">OWNERSHIP</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 541.6112 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 546.5866 506.3006)\\\" x=\\\"0 6.67 13.89\\\">AND</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 494.9822)\\\" x=\\\"0 7.22 15 23.33 30 35.56\\\">COMPLY</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 82.9314 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 86.988 494.9822)\\\" x=\\\"0 9.44 12.22 18.33\\\">WITH</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 112.5348 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 116.5913 494.9822)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.5913 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 140.6478 494.9822)\\\" x=\\\"0 7.78 17.22 24.44 31.11 38.33 45 52.22 55\\\">OWNERSHIP</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 202.3178 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 206.3743 494.9822)\\\" x=\\\"0 6.11 12.78 20 28.33 35\\\">TERMS.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 244.1526 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 248.2091 494.9822)\\\" x=\\\"0 6.67 14.45\\\">YOU</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 269.879 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 273.9355 494.9822)\\\" x=\\\"0 6.67 13.89\\\">ARE</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 294.497 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 298.5535 494.9822)\\\" x=\\\"0 7.22 15\\\">NOT</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.6619 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 323.7184 494.9822)\\\" x=\\\"0 7.78 14.45 20.01 22.79 30.57 37.24 43.35 50.02\\\">OBLIGATED</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.9548 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 385.0113 494.9822)\\\" x=\\\"0 6.11\\\">TO</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 398.898 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 402.9545 494.9822)\\\" x=\\\"0 6.67 13.34\\\">PAY</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 422.9643 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 427.0208 494.9822)\\\" x=\\\"0\\\">A</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 433.6907 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 437.7472 494.9822)\\\" x=\\\"0 6.67 13.89\\\">SUM</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 459.9689 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 464.0254 494.9822)\\\" x=\\\"0 7.78 15 21.67 28.34 34.45 41.12\\\">GREATER</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.3652 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 516.4217 494.9822)\\\" x=\\\"0 6.11 13.33 20\\\">THAN</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 543.6434 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 547.6999 494.9822)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 483.6639)\\\" x=\\\"0 6.11 13.89 20 26.67 32.23 34.89 41.56 48.23 54.9 63.23 69.9 77.12 83.23 89.9 92.56 98.67 106.45 113.67 116.33 123 125.66 132.33 135.11 142.33 150.11 155.67 162.34 165 170.56 177.23 183.9 190.57 197.24 199.9 206.01 212.68 219.9 228.23\\\">TOTAL PAYMENTS FOR A SINGLE LEASE TERM.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 470.3455)\\\" x=\\\"0 7.22 12.78 17.78\\\">Cash</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 64.0447 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 67.2085 470.3455)\\\" x=\\\"0 6.67 10 12.28 17.28\\\">Price</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 90.0503 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 93.214 470.3455)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 101.5539 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 104.7176 470.3455)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 145.2889 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.4527 470.3455)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 165.6841 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 168.8478 470.3455)\\\" x=\\\"0 7.22 12.78 17.78\\\">Cash</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 192.1926 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 195.3563 470.3455)\\\" x=\\\"0 6.67 10 12.28 17.28\\\">Price</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 218.1981 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 221.3619 470.3455)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 229.7017 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 232.8655 470.3455)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 246.7668 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 249.9306 470.3455)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 287.7235 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 290.8873 470.3455)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 298.1676 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 301.3313 470.3455)\\\" x=\\\"0\\\">$</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 306.8928 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 310.0566 470.3455)\\\" x=\\\"0 5.56 8.34 13.9 19.46 25.02 27.8 33.36 38.92\\\">3,872.00,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.7607 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 354.9244 470.3455)\\\" x=\\\"0 7.22 12.78 15.06 20.06\\\">which</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.5494 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 383.7132 470.3455)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 390.9935 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 394.1572 470.3455)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 408.0586 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 411.2223 470.3455)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 444.5768 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 447.7406 470.3455)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 463.8636 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 467.0274 470.3455)\\\" x=\\\"0 7.22 12.78 18.34 20.62\\\">would</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 493.2139 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 496.3776 470.3455)\\\" x=\\\"0 5.56 11.12 16.12\\\">have</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 518.0622 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 521.226 470.3455)\\\" x=\\\"0 5.56 11.12 13.4\\\">paid</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 540.1908 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 543.3545 470.3455)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 548.4131 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 551.5769 470.3455)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 459.0271)\\\" x=\\\"0 5.56 11.12\\\">had</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 57.3846 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 60.336 459.0271)\\\" x=\\\"0 5.56 11.12 14.45 19.45 25.01 30.57 35.57 41.13\\\">purchased</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 107.0352 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 109.9866 459.0271)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 123.888 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 126.8394 459.0271)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 164.6324 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 167.5838 459.0271)\\\" x=\\\"0 2.78 6.11 11.67\\\">from</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 187.5838 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 190.5352 459.0271)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 204.4366 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 207.388 459.0271)\\\" x=\\\"0 7.22 12.78 15.56 21.12 23.4 25.68 31.24\\\">Retailer</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 241.9632 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 244.9147 459.0271)\\\" x=\\\"0 7.22 9.5 12.28\\\">with</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.7565 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 265.7079 459.0271)\\\" x=\\\"0 5 10.56 15.56\\\">cash</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 286.8309 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 289.7824 459.0271)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 300.9054 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 303.8568 459.0271)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 317.7582 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 320.7096 459.0271)\\\" x=\\\"0 5.56 11.12\\\">day</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 336.8327 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 339.7841 459.0271)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.1239 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 351.0754 459.0271)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 366.6955 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 369.6469 459.0271)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 421.3412 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 424.2927 459.0271)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 25.68 27.96 32.96\\\">inclusive</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 462.8181 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 465.7695 459.0271)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.1093 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 477.0607 459.0271)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 493.1838 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 496.1352 459.0271)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64\\\">applicable</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 541.3452 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 544.2966 459.0271)\\\" x=\\\"0 5 10.56 12.84 18.4\\\">sales</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 447.7088)\\\" x=\\\"0 5.56 8.89 11.55 17.11 22.11 27.67 30.33 33.11 38.67 43.67\\\">or use tax.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 434.3904)\\\" x=\\\"0 6.11 11.67 14.45 20.01\\\">Total</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 62.99 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 66.9187 434.3904)\\\" x=\\\"0 7.22 12.78 17.78\\\">Cost</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 87.4803 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 91.409 434.3904)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 99.7488 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 103.6775 434.3904)\\\" x=\\\"0 5.56 11.12 16.68 21.68 27.24\\\">Lease;</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 133.7019 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 137.6306 434.3904)\\\" x=\\\"0 6.67 12.23 15.56 17.84 23.4 28.96 31.24\\\">Periodic</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 173.8758 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 177.8045 434.3904)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46 44.46\\\">Payments;</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.0457 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 228.9744 434.3904)\\\" x=\\\"0 6.67 10 15.56 20.56 26.12 31.12 36.12 38.4 43.96\\\">Processing</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 278.5007 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 282.4295 434.3904)\\\" x=\\\"0 6.11 11.67 17.23\\\">Fee;</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.4392 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 306.3679 434.3904)\\\" x=\\\"0 2.78 8.34 10.62 13.4 15.68 21.24\\\">Initial</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.8884 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 333.8171 434.3904)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46\\\">Payment;</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 376.0584 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 379.9871 434.3904)\\\" x=\\\"0 7.22 12.78 17.78\\\">Cost</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 400.5486 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 404.4773 434.3904)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 412.8171 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 416.7459 434.3904)\\\" x=\\\"0 7.22 12.78 18.34 21.12 26.68 28.96\\\">Rental.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 448.489 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 452.4177 434.3904)\\\" x=\\\"0 7.22 12.78 15.06 20.62 25.62\\\">Unless</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 483.0427 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 486.9714 434.3904)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 503.0945 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 507.0232 434.3904)\\\" x=\\\"0 5.56 10.56 16.12 19.45 24.45 26.73 31.73\\\">exercise</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 544.3181 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 548.2468 434.3904)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 423.0721)\\\" x=\\\"0 5.56 11.12 16.68 20.01 27.23 32.79\\\">100-Day</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 78.4979 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.2541 423.0721)\\\" x=\\\"0 7.78 13.34 16.12 18.4 23.96\\\">Option</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 110.7756 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 113.5318 423.0721)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 122.4234 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 125.1797 423.0721)\\\" x=\\\"0 6.67 12.23 15.56 17.84\\\">Early</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 148.0215 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 150.7777 423.0721)\\\" x=\\\"0 6.67 12.23 17.23 20.56 28.34 33.9\\\">Buy-Out</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 187.4574 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 190.2136 423.0721)\\\" x=\\\"0 7.78 13.34 16.12 18.4 23.96\\\">Option</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 219.7351 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 222.4914 423.0721)\\\" x=\\\"0 5 10.56\\\">set</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 235.8312 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 238.5875 423.0721)\\\" x=\\\"0 2.78 8.34 11.67 14.45\\\">forth</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 258.5972 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 261.3535 423.0721)\\\" x=\\\"0 5.56 11.12 13.4 18.96 26.18\\\">below,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.3183 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 293.0746 423.0721)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 306.9759 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 309.7322 423.0721)\\\" x=\\\"0 3.33 9.44 15 17.78 23.34\\\">“Total</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.3523 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.1086 423.0721)\\\" x=\\\"0 7.22 12.78 17.78 20.56\\\">Cost”</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 362.0002 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 364.7564 423.0721)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 373.0962 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 375.8525 423.0721)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 389.7539 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 392.5101 423.0721)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.3031 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 433.0593 423.0721)\\\" x=\\\"0 5.56 11.12 16.68 22.24\\\">under</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 458.6355 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 461.3917 423.0721)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 477.0119 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 479.7681 423.0721)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 528.6841 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 531.4404 423.0721)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 545.5029 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 548.2591 423.0721)\\\" x=\\\"0 5.56\\\">be</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.3822 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 562.1384 423.0721)\\\" x=\\\"0\\\">$</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 411.7537)\\\" x=\\\"0 5.56 8.34 13.9 19.46 25.02 27.8 33.36 38.92\\\">3,965.32.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 82.4041 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 85.187 411.7537)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 102.4184 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 105.2013 411.7537)\\\" x=\\\"0 6.11 11.67 14.45 20.01\\\">Total</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 127.4913 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 130.2742 411.7537)\\\" x=\\\"0 7.22 12.78 17.78\\\">Cost</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 150.8357 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 153.6186 411.7537)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.8989 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 163.6817 411.7537)\\\" x=\\\"0 5.56 11.12 16.12 21.68\\\">based</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 190.9279 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 193.7107 411.7537)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 204.8338 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 207.6166 411.7537)\\\" x=\\\"0 5.56\\\">an</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 218.7397 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 221.5226 411.7537)\\\" x=\\\"0 2.78 8.34 10.62 13.4 15.68 21.24\\\">Initial</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.0431 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 247.8259 411.7537)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68\\\">Payment</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 287.2888 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 290.0717 411.7537)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 298.4115 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 301.1944 411.7537)\\\" x=\\\"0\\\">$</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 306.7559 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 309.5388 411.7537)\\\" x=\\\"0 5.56 8.34 13.9\\\">0.00</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.0017 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 331.7846 411.7537)\\\" x=\\\"0 5.56 11.12 16.12 21.68 27.24 29.52\\\">payable</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 366.8725 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 369.6554 411.7537)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.7784 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 383.5613 411.7537)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 397.4626 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 400.2455 411.7537)\\\" x=\\\"0 5.56 11.12 13.9\\\">date</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.7084 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 422.4913 411.7537)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.8311 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 433.614 411.7537)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 449.2341 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 452.017 411.7537)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 500.933 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 503.7159 411.7537)\\\" x=\\\"0 3.33 6.11 11.67\\\">(the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 520.9473 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 523.7302 411.7537)\\\" x=\\\"0 3.33 10.55 16.11 21.67 27.23 29.51 32.84 38.4\\\">“Required</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 400.4353)\\\" x=\\\"0 2.78 8.34 10.62 13.4 15.68 21.24\\\">Initial</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 64.2205 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 68.4622 400.4353)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46 42.79 46.12\\\">Payment”),</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 117.3635 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 121.6052 400.4353)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 126.6638 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 130.9055 400.4353)\\\" x=\\\"0 5.56 11.12 16.12\\\">any,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 149.8068 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 154.0485 400.4353)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 159.61 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 163.8517 400.4353)\\\" x=\\\"0 5.56 8.89 14.45 19.45 25.01 30.01 35.01 37.29 42.85\\\">processing</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 212.2697 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 216.5114 400.4353)\\\" x=\\\"0 2.78 8.34\\\">fee</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 230.4127 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 234.6544 400.4353)\\\" x=\\\"0 3.33 10.55 16.11 18.39 23.39\\\">(which</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 263.6095 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 267.8511 400.4353)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.1314 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 279.3731 400.4353)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 293.2745 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 297.5161 400.4353)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 303.0777 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 307.3193 400.4353)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 345.6738 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 349.9155 400.4353)\\\" x=\\\"0 2.78 8.34 15.56 21.12 24.45 30.01\\\">towards</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 384.9301 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 389.1718 400.4353)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.0732 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.3149 400.4353)\\\" x=\\\"0 5 10.56 15.56\\\">cost</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 425.6547 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 429.8964 400.4353)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 438.2362 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 442.4779 400.4353)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 461.931 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 466.1727 400.4353)\\\" x=\\\"0 3.33 8.89 14.45 17.23 22.79 25.07\\\">rental)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 494.576 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 498.8177 400.4353)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 507.1575 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 511.3992 400.4353)\\\" x=\\\"0\\\">$</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 516.9607 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 521.2024 400.4353)\\\" x=\\\"0 5.56 11.12 13.9 19.46\\\">10.00</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 546.2268 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 550.4685 400.4353)\\\" x=\\\"0 3.33 6.11 11.67\\\">(the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 389.117)\\\" x=\\\"0 3.33 10 13.33 18.89 23.89 29.45 34.45 39.45 41.73 47.29\\\">“Processing</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 93.5564 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 97.3241 389.117)\\\" x=\\\"0 6.11 11.67 17.23 20.56 23.89\\\">Fee”),</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 123.9941 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 127.7617 389.117)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 132.8203 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 136.588 389.117)\\\" x=\\\"0 5.56 11.12 16.12\\\">any,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 155.4894 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 159.2571 389.117)\\\" x=\\\"0 5.56\\\">26</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 170.3801 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 174.1478 389.117)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.74 24.02 29.58 35.14 40.7\\\">additional</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 217.1361 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 220.9038 389.117)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57 38.35\\\">payments</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 264.2583 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 268.026 389.117)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.3658 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 280.1335 389.117)\\\" x=\\\"0\\\">$</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 285.695 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 289.4627 389.117)\\\" x=\\\"0 5.56 8.34 13.9\\\">6.97</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.9256 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 312.6933 389.117)\\\" x=\\\"0 3.33 8.89\\\">(as</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 326.5849 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 330.3526 389.117)\\\" x=\\\"0 5.56 11.12 13.4 18.96 23.96 26.74 32.3 37.86\\\">adjusted,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 370.9971 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 374.7648 389.117)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.3263 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 384.094 389.117)\\\" x=\\\"0 3.33 10.55 16.11 21.67 27.23 29.51 35.07\\\">“Regular</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 422.5022 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 426.2699 389.117)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46 42.79\\\">Payment”)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 472.393 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 476.1607 389.117)\\\" x=\\\"0 5.56 11.12 16.12 21.68\\\">each,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 500.6235 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 504.3912 389.117)\\\" x=\\\"0 5.56 11.12 16.12 21.68 27.24 29.52\\\">payable</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 539.4791 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 543.2468 389.117)\\\" x=\\\"0 5.56 10.56 16.12 19.45\\\">every</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 377.7986)\\\" x=\\\"0 5.56 8.34 13.9 19.46\\\">other</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 63.493 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 66.4195 377.7986)\\\" x=\\\"0 7.22 12.78 18.34 23.34\\\">week.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 92.5426 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 95.4692 377.7986)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 112.7006 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 115.6272 377.7986)\\\" x=\\\"0 6.11 11.67 14.45 20.01\\\">Total</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 137.9172 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 140.8438 377.7986)\\\" x=\\\"0 7.22 12.78 17.78\\\">Cost</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 161.4053 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 164.3319 377.7986)\\\" x=\\\"0 5.56 7.84 12.84\\\">also</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 182.7352 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 185.6617 377.7986)\\\" x=\\\"0 3.33 8.89 11.67 13.95 19.51 24.51 27.29\\\">reflects</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 217.9518 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 220.8784 377.7986)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 237.0014 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 239.928 377.7986)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.74 24.02 29.58 35.14 40.7\\\">additional</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 282.9163 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 285.8428 377.7986)\\\" x=\\\"0 5 10.56 15.56\\\">cash</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 306.9659 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 309.8924 377.7986)\\\" x=\\\"0 5.56 11.12 13.4\\\">paid</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 328.8573 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 331.7839 377.7986)\\\" x=\\\"0 2.78 8.34 13.9 19.46 24.46\\\">today,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.0251 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 361.9516 377.7986)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 367.0102 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 369.9368 377.7986)\\\" x=\\\"0 5.56 11.12 16.12\\\">any.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.8382 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 391.7647 377.7986)\\\" x=\\\"0 6.67 12.23 17.79\\\">Your</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 412.8878 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 415.8143 377.7986)\\\" x=\\\"0 2.78 8.34 11.12 16.68\\\">total</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.7743 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 437.7009 377.7986)\\\" x=\\\"0 2.28 7.84 10.12 12.9 15.18 20.74\\\">initial</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 460.7233 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 463.6499 377.7986)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 502.0044 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 504.931 377.7986)\\\" x=\\\"0 5.56 11.12\\\">due</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.6155 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 524.5421 377.7986)\\\" x=\\\"0 2.78 8.34 13.9 19.46\\\">today</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.005 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 551.9316 377.7986)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.2118 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 562.1384 377.7986)\\\" x=\\\"0\\\">$</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 366.4803)\\\" x=\\\"0 5.56 8.34 13.9 19.46\\\">0.00,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 62.9412 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 66.7951 366.4803)\\\" x=\\\"0 7.22 12.78 15.06 20.06\\\">which</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 92.4201 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 96.274 366.4803)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 103.5543 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 107.4082 366.4803)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 121.3096 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 125.1635 366.4803)\\\" x=\\\"0 5 10.56\\\">sum</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 144.0551 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 147.909 366.4803)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 156.2488 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 160.1027 366.4803)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 174.0041 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 177.858 366.4803)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 29.51 35.07\\\">Required</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 218.4976 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 222.3515 366.4803)\\\" x=\\\"0 2.78 8.34 10.62 13.4 15.68 21.24\\\">Initial</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.872 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 249.7259 366.4803)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46\\\">Payment,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.9672 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 295.8211 366.4803)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 300.8797 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 304.7336 366.4803)\\\" x=\\\"0 5.56 11.12 16.12\\\">any,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 323.6349 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 327.4888 366.4803)\\\" x=\\\"0 6.67 10 15.56 20.56 26.12 31.12 36.12 38.4 43.96\\\">Processing</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 377.0152 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 380.8691 366.4803)\\\" x=\\\"0 6.11 11.67 17.23\\\">Fee,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 400.8789 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 404.7328 366.4803)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 409.7914 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 413.6453 366.4803)\\\" x=\\\"0 5.56 11.12 16.12\\\">any,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 432.5466 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 436.4005 366.4803)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 453.0851 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 456.939 366.4803)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 473.062 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 476.916 366.4803)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.74 24.02 29.58 35.14 40.7\\\">additional</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 519.9042 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 523.7581 366.4803)\\\" x=\\\"0 5 10.56 15.56\\\">cash</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 544.8812 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 548.7351 366.4803)\\\" x=\\\"0 5.56 11.12 13.4\\\">paid</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 355.1619)\\\" x=\\\"0 2.78 8.34 13.9 19.46 24.46\\\">today.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 67.9412 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 70.9372 355.1619)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 76.4938 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 79.4898 355.1619)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 95.6128 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 98.6088 355.1619)\\\" x=\\\"0 5.56\\\">do</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 109.7318 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 112.7278 355.1619)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 126.6291 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 129.6251 355.1619)\\\" x=\\\"0 3.33 8.89 17.22 19.5\\\">remit</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 151.9054 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 154.9013 355.1619)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 171.0244 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 174.0203 355.1619)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64\\\">applicable</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 219.2303 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 222.2262 355.1619)\\\" x=\\\"0 6.67 10 15.56 20.56 26.12 31.12 36.12 38.4 43.96\\\">Processing</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 271.7526 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 274.7486 355.1619)\\\" x=\\\"0 6.11 11.67\\\">Fee</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.98 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 294.976 355.1619)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 303.8676 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 306.8635 355.1619)\\\" x=\\\"0 2.78 8.34 10.62 13.4 15.68 21.24\\\">Initial</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 330.3841 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 333.38 355.1619)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68\\\">Payment</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 372.8429 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 375.8388 355.1619)\\\" x=\\\"0 5.56\\\">at</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 384.1787 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 387.1747 355.1619)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 401.076 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 404.072 355.1619)\\\" x=\\\"0 2.78 5.06 13.39\\\">time</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 423.0222 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 426.0181 355.1619)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.358 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 437.3539 355.1619)\\\" x=\\\"0 5.56 11.12 14.45 19.45 25.01 30.57 35.57 41.13\\\">purchase,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 481.2699 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 484.2659 355.1619)\\\" x=\\\"0 2.28\\\">it</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.3245 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 492.3205 355.1619)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.6007 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 502.5967 355.1619)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24 31.8\\\">included</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 539.9649 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 542.9608 355.1619)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 550.8026 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.7986 355.1619)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 343.8436)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 75.7781 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 78.9772 343.8436)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46\\\">Payments</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 123.44 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 126.6391 343.8436)\\\" x=\\\"0 5 10.56\\\">set</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 139.9789 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 143.1779 343.8436)\\\" x=\\\"0 2.78 8.34 11.67 14.45\\\">forth</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 163.1877 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 166.3868 343.8436)\\\" x=\\\"0 5.56 11.12 16.68 21.68 27.24\\\">above.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 196.4112 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 199.6102 343.8436)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 216.8416 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 220.0407 343.8436)\\\" x=\\\"0 6.11 11.67 14.45 20.01\\\">Total</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 242.3307 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 245.5297 343.8436)\\\" x=\\\"0 7.22 12.78 17.78\\\">Cost</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 266.0913 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 269.2903 343.8436)\\\" x=\\\"0 5.56 11.12 16.68\\\">does</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.9749 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 294.1739 343.8436)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.0753 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 311.2743 343.8436)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24\\\">include</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 343.0809 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 346.28 343.8436)\\\" x=\\\"0 2.28 7.84 10.62\\\">late</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 362.4616 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 365.6606 343.8436)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57 38.35\\\">payment,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 406.7935 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 409.9925 343.8436)\\\" x=\\\"0 5.56 11.12 16.68 21.68 27.24 30.02 32.8 35.08 40.08 42.36 47.92 53.48\\\">nonsufficient</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.2571 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 469.4562 343.8436)\\\" x=\\\"0 2.78 8.34 13.9 19.46 24.46\\\">funds,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 496.6974 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 499.8964 343.8436)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 27.3 30.08\\\">default,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 532.7577 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 535.9568 343.8436)\\\" x=\\\"0 5.56 7.84 12.84 17.84 23.4 28.96\\\">pickup,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 332.5252)\\\" x=\\\"0 3.33 8.89 11.17 16.73 21.73 24.51 30.07 32.85 38.41 46.74 52.3 57.86 60.64\\\">reinstatement,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 104.1228 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 108.8966 332.5252)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 117.7882 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 122.5619 332.5252)\\\" x=\\\"0 5.56 8.34 13.9 19.46\\\">other</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 145.3549 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 150.1286 332.5252)\\\" x=\\\"0 2.78 8.34 13.9 18.9\\\">fees,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 171.8083 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 176.5821 332.5252)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 181.6407 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 186.4144 332.5252)\\\" x=\\\"0 5.56 11.12 16.12\\\">any,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 205.3158 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.0895 332.5252)\\\" x=\\\"0 5.56 7.84 12.84 17.84 20.12 25.68 30.68 36.24\\\">disclosed</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 251.8962 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 256.6699 332.5252)\\\" x=\\\"0 5.56 11.12 13.4 18.96 26.18\\\">below.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 285.6347 332.5252)\\\" x=\\\"0 4.7737\\\">  </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 295.1822 332.5252)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.4137 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 317.1874 332.5252)\\\" x=\\\"0 5 10.56 15.56\\\">cost</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.5273 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 340.301 332.5252)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.6409 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 353.4146 332.5252)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 372.8677 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 377.6415 332.5252)\\\" x=\\\"0 3.33 8.89 14.45 17.23 22.79\\\">rental</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.7147 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.4884 332.5252)\\\" x=\\\"0 3.33 6.66 13.88 19.44 24.44\\\">(“Cost</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.7101 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 439.4839 332.5252)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.8237 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 452.5975 332.5252)\\\" x=\\\"0 7.22 12.78 18.34 21.12 26.68 28.96 32.29\\\">Rental”)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 488.2225 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 492.9962 332.5252)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 500.2765 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 505.0502 332.5252)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 518.9516 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 523.7253 332.5252)\\\" x=\\\"0 5.56 7.84 10.62 13.4 18.96 22.29 27.85 33.41 38.41\\\">difference</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 321.2068)\\\" x=\\\"0 5.56 11.12 13.9 21.12 26.68 32.24 37.8 40.46 43.24 48.8 54.36 57.02 63.13 68.69 71.47 77.03 79.31 81.97 89.19 94.75 99.75 102.53 105.19 110.75 116.31 121.87 124.53 131.75 137.31 142.31 147.87 150.53 157.2 160.53 162.81 167.81 173.37 176.15 178.81 184.37 189.93 195.49 198.15 205.37 207.65 209.93 212.21 214.87 220.43 225.99 228.65 234.21 236.87 242.43 247.99 250.77 256.33 261.89\\\">between the Total Cost and Cash Price, and will be $ 93.32.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 309.8885)\\\" x=\\\"0 6.67 11.67 17.23 22.79 27.79 30.57 36.13\\\">Expected</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 82.3943 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 86.3823 309.8885)\\\" x=\\\"0 7.22 12.78 15.06 17.34 22.34 27.9 31.23\\\">Delivery</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 122.6177 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 126.6057 309.8885)\\\" x=\\\"0 7.22 12.78 15.56 21.12\\\">Date;</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 150.507 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 154.495 309.8885)\\\" x=\\\"0 6.11 8.39 11.72 16.72\\\">First</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 173.9921 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 177.9801 309.8885)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 213.0582 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 217.0462 309.8885)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46\\\">Payment.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.2874 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 263.2754 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 267.2634 309.8885)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 284.4948 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 288.4828 309.8885)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 29.51 35.07\\\">Required</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.1225 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 333.1105 309.8885)\\\" x=\\\"0 2.78 8.34 10.62 13.4 15.68 21.24\\\">Initial</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 356.631 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 360.619 309.8885)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46\\\">Payment,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.8602 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 406.8482 309.8885)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 411.9068 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 415.8947 309.8885)\\\" x=\\\"0 5.56 11.12 16.12\\\">any,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.7961 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 438.7841 309.8885)\\\" x=\\\"0 5 10.56 15.56 21.12 24.45\\\">covers</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.2372 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 472.2252 309.8885)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.1266 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 490.1146 309.8885)\\\" x=\\\"0 3.33 8.89 14.45 17.23 22.79\\\">rental</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 515.1878 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 519.1758 309.8885)\\\" x=\\\"0 5.56 11.12 14.45 16.73 22.29\\\">period</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 547.0323 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 551.0202 309.8885)\\\" x=\\\"0 2.78 8.34 13.9\\\">that</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 298.5701)\\\" x=\\\"0 5.56 11.12 16.68 18.96 24.52\\\">begins</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 70.2264 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 73.3394 298.5701)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 84.4625 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 87.5755 298.5701)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 101.4769 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 104.59 298.5701)\\\" x=\\\"0 5.56 11.12 13.9\\\">date</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 124.0529 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 127.166 298.5701)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 143.289 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 146.4021 298.5701)\\\" x=\\\"0 3.33 8.89 13.89 19.45 21.73 26.73\\\">receive</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 178.697 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 181.8101 298.5701)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 195.7114 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 198.8245 298.5701)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 236.6175 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 239.7305 298.5701)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.4151 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 259.5282 298.5701)\\\" x=\\\"0 5.56 11.12 16.68\\\">ends</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.2128 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 284.3258 298.5701)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 295.4489 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 298.562 298.5701)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 318.0151 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 321.1281 298.5701)\\\" x=\\\"0 2.78 5.06 8.39 13.39\\\">first</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 337.2951 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 340.4082 298.5701)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.4863 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 378.5994 298.5701)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68\\\">Payment</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 418.0623 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 421.1754 298.5701)\\\" x=\\\"0 5.56 11.12 13.9 19.46\\\">date.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 443.4166 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 446.5297 298.5701)\\\" x=\\\"0 6.67 12.23 17.79\\\">Your</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.6527 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 470.7658 298.5701)\\\" x=\\\"0 2.78 5.06 8.39 13.39\\\">first</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.9328 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 490.0459 298.5701)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 525.124 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 528.237 298.5701)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68\\\">Payment</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 287.2518)\\\" x=\\\"0 5.56 11.12 13.9\\\">date</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.1629 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 63.9277 287.2518)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 77.9902 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.7549 287.2518)\\\" x=\\\"0 5.56\\\">be</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 92.878 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 96.6428 287.2518)\\\" x=\\\"0 5.56\\\">at</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 104.9826 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 108.7474 287.2518)\\\" x=\\\"0 2.28 7.84 13.4 18.4\\\">least</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 129.929 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 133.6938 287.2518)\\\" x=\\\"0 5 10.56 15.56 21.12\\\">seven</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.3784 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 164.1432 287.2518)\\\" x=\\\"0 5.56 11.12 16.12\\\">days</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 185.2662 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 189.031 287.2518)\\\" x=\\\"0 5.56 8.34 11.12 16.68\\\">after</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.0407 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 212.8055 287.2518)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 226.7069 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 230.4717 287.2518)\\\" x=\\\"0 2.28 7.84 10.62 16.18\\\">later</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 249.9834 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 253.7482 287.2518)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.088 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 265.8528 287.2518)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 27.8 33.36 38.92 44.48\\\">07/24/2020</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 315.9016 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 319.6664 287.2518)\\\" x=\\\"0 3.33 5.61\\\">(i)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 328.6068 287.2518)\\\" x=\\\"0 3.7648\\\">  </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 336.1364 287.2518)\\\" x=\\\"0 3.33 6.11 11.67\\\">(the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 353.3678 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 357.1326 287.2518)\\\" x=\\\"0 3.33 10 15 20.56 26.12 31.12 33.9 39.46\\\">“Expected</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.157 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 405.9218 287.2518)\\\" x=\\\"0 7.22 12.78 15.06 17.34 22.34 27.9 31.23\\\">Delivery</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 442.1572 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 445.9219 287.2518)\\\" x=\\\"0 7.22 12.78 15.56 21.12 24.45 27.78\\\">Date”),</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 476.4835 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 480.2482 287.2518)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 496.9328 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 500.6976 287.2518)\\\" x=\\\"0 3.33 5.61 7.89\\\">(ii)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 511.9183 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 515.6831 287.2518)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.5844 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 533.3492 287.2518)\\\" x=\\\"0 5.56 11.12 13.9\\\">date</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.8121 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 556.5769 287.2518)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 275.9334)\\\" x=\\\"0 7.22 12.78 15.06 20.06 25.62 28.28 31.06 36.62 42.18 44.84 51.51 54.84 60.4 65.96 71.52 74.85 77.63 82.63 85.29 87.57 92.57 95.23 100.79 104.12 109.68 114.68 116.96 122.52 128.08 133.64 136.3 141.86 145.19 147.85 153.41 158.97 161.25 163.53 168.53 174.09 177.42 182.98 188.54 191.2 193.98 199.54 202.2 207.2 212.76 218.32\\\">which the Property is provided or delivered to you.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 264.615)\\\" x=\\\"0 5.56 11.12 16.68 20.01 27.23 32.79\\\">100-Day</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 78.4979 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.9917 264.615)\\\" x=\\\"0 7.78 13.34 16.12 18.4 23.96 29.52\\\">Option.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 114.2915 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 117.7853 264.615)\\\" x=\\\"0 6.67\\\">At</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 127.2335 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 130.7273 264.615)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.8504 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 150.3442 264.615)\\\" x=\\\"0 2.78 5.06 13.39\\\">time</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 169.2944 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 172.7882 264.615)\\\" x=\\\"0 5.56 11.12 14.45 16.73 22.29\\\">during</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 200.6446 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 204.1385 264.615)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 218.0398 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 221.5336 264.615)\\\" x=\\\"0 2.78 5.06 8.39 13.39\\\">first</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 237.7006 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 241.1944 264.615)\\\" x=\\\"0 5.56 11.12\\\">100</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.879 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 261.3728 264.615)\\\" x=\\\"0 2.78 6.11 11.67\\\">from</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.3728 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 284.8666 264.615)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 298.768 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 302.2618 264.615)\\\" x=\\\"0 6.67 11.67 17.23 22.79 27.79 30.57 36.13\\\">Expected</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 343.9561 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 347.45 264.615)\\\" x=\\\"0 7.22 12.78 15.06 17.34 22.34 27.9 31.23\\\">Delivery</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.6853 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 387.1791 264.615)\\\" x=\\\"0 7.22 12.78 15.56 21.12\\\">Date,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 411.0805 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 414.5743 264.615)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 428.4757 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 431.9695 264.615)\\\" x=\\\"0 3.33 8.89 14.45 20.01 23.34 30.56 36.12\\\">“100-Day</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 473.0974 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 476.5912 264.615)\\\" x=\\\"0 7.78 13.34 16.12 18.4 23.96 29.52\\\">Option”</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.4428 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 512.9366 264.615)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.8 31.8\\\">applies,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 547.5215 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 551.0154 264.615)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 253.2967)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 56.823 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 59.7295 253.2967)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 78.6211 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.5276 253.2967)\\\" x=\\\"0 5.56 10.56 16.12 21.68 23.96 27.29\\\">acquire</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 114.384 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 117.2905 253.2967)\\\" x=\\\"0 5.56 12.78 18.34 23.9 27.23 32.23 37.79 40.07\\\">ownership</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 162.9301 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 165.8366 253.2967)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 174.1764 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 177.0829 253.2967)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 190.9843 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 193.8907 253.2967)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.6837 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 234.5901 253.2967)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.1517 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 248.0581 253.2967)\\\" x=\\\"0 5.56 11.12 16.12 18.4 23.96\\\">paying</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 277.5845 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 280.4909 253.2967)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.0525 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 293.9589 253.2967)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 307.8603 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 310.7667 253.2967)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 344.1212 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 347.0277 253.2967)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 357.5892 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 360.4957 253.2967)\\\" x=\\\"0 7.22 12.78 15.06 20.06\\\">which</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 386.1207 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 389.0271 253.2967)\\\" x=\\\"0 3.33 5.61\\\">(i)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 397.9676 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 400.874 253.2967)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 414.7754 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 417.6819 253.2967)\\\" x=\\\"0 5 10.56\\\">sum</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 436.5735 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 439.4799 253.2967)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.8198 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 450.7262 253.2967)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 464.6276 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 467.5341 253.2967)\\\" x=\\\"0 5.56 11.12\\\">100</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.2186 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 487.1251 253.2967)\\\" x=\\\"0\\\">–</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 490.0548 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 492.9612 253.2967)\\\" x=\\\"0 7.22 12.78\\\">Day</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 510.7444 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 513.6509 253.2967)\\\" x=\\\"0 6.67 15 20.56 26.12 31.68 34.46\\\">Amount,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 550.8921 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.7986 253.2967)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 241.9783)\\\" x=\\\"0 6.67 10 15.56 20.56 26.12 31.12 36.12 38.4 43.96\\\">Processing</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 90.2264 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 92.924 241.9783)\\\" x=\\\"0 6.11 11.67 17.23\\\">Fee,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 112.9338 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 115.6314 241.9783)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 120.69 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 123.3877 241.9783)\\\" x=\\\"0 5.56 11.12 16.12\\\">any,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 142.289 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 144.9867 241.9783)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64\\\">applicable</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 190.1967 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 192.8943 241.9783)\\\" x=\\\"0 5 10.56 12.84 18.4\\\">sales</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 216.2976 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 218.9953 241.9783)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 227.8869 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 230.5845 241.9783)\\\" x=\\\"0 5.56 10.56\\\">use</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 246.7076 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 249.4052 241.9783)\\\" x=\\\"0 2.78 8.34 13.34 18.9 23.9\\\">taxes,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.0849 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 278.7826 241.9783)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 295.4672 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 298.1648 241.9783)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 314.2879 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 316.9855 241.9783)\\\" x=\\\"0 5.56 11.12 16.68 22.24 24.52\\\">unpaid</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 347.0734 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 349.771 241.9783)\\\" x=\\\"0 2.78 8.34 13.9\\\">fees</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 368.6724 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 371.3701 241.9783)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 384.1533 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 386.8509 241.9783)\\\" x=\\\"0 5.56 11.12 16.12\\\">have</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 408.5355 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 411.2331 241.9783)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01 30.57 36.13\\\">charged,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 450.1492 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 452.8468 241.9783)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.68 32.24\\\">exceeds</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 490.0929 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 492.7906 241.9783)\\\" x=\\\"0 3.33 5.61 7.89\\\">(ii)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 504.0113 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 506.7089 241.9783)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 520.6103 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 523.3079 241.9783)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 556.6624 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 559.3601 241.9783)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 230.66)\\\" x=\\\"0 5.56 11.12 16.12 18.78 21.56 27.12 29.4 32.18 34.46 40.02 42.3 44.96 51.63 57.19 62.19 70.52 76.08 81.64 84.42 87.08 92.64 98.2 103.76 106.42 113.64 119.2 124.76 130.32 132.6 138.16 141.49 144.15 150.82 156.38 161.38 169.71 175.27 180.83 183.61 188.61 191.27 196.27 201.83 207.39 210.05 215.61 221.17 226.17 231.73 234.39 242.72 248.28 253.84 259.4 262.18 264.84 270.95 276.51 282.07 284.73 290.29 295.85 301.41 304.07 311.29 316.85 321.85 324.51 331.18 339.51 345.07 350.63 356.19 358.97 361.63 363.91 368.91 371.57 377.13 379.79 385.35 390.91 393.69 399.25 404.81\\\">any Initial Payment and Regular Payments you have made. The 100 Day Amount is $ 97.70.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 219.3416)\\\" x=\\\"0 6.67 12.23 15.56 17.84\\\">Early</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 63.5418 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 66.4605 219.3416)\\\" x=\\\"0 6.67 12.23 17.23 20.56 28.34 33.9\\\">Buy-Out</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 103.1401 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 106.0588 219.3416)\\\" x=\\\"0 7.78 13.34 16.12 18.4 23.96 29.52\\\">Option.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 138.3586 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 141.2772 219.3416)\\\" x=\\\"0 6.67 9.45 12.23 17.79\\\">After</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 162.3954 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 165.3141 219.3416)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 184.7672 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 187.6858 219.3416)\\\" x=\\\"0 5.56 11.12 16.68 20.01 27.23 32.79\\\">100-Day</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.4837 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 228.4024 219.3416)\\\" x=\\\"0 7.22 12.78 17.78\\\">Cash</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 251.7471 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 254.6657 219.3416)\\\" x=\\\"0 6.67 12.23 17.23 22.79 25.57\\\">Payoff</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 283.0153 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 285.934 219.3416)\\\" x=\\\"0 7.78 13.34 16.12 18.4 23.96\\\">Option</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 315.4555 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 318.3741 219.3416)\\\" x=\\\"0 5.56 11.12\\\">has</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 334.4972 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 337.4158 219.3416)\\\" x=\\\"0 5.56 10.56 16.12 18.4 21.73 27.29 32.85\\\">expired,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 373.0506 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 375.9693 219.3416)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 389.8706 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 392.7893 219.3416)\\\" x=\\\"0 3.33 10 15.56 18.89 21.17\\\">“Early</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 418.9611 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 421.8798 219.3416)\\\" x=\\\"0 6.67 12.23 17.23 20.56 28.34 33.9\\\">Buy-Out</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 458.5595 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 461.4781 219.3416)\\\" x=\\\"0 7.78 13.34 16.12 18.4 23.96 29.52\\\">Option”</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 494.3297 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 497.2484 219.3416)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.8\\\">applies</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.055 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 531.9737 219.3416)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 548.6582 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 551.5769 219.3416)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 208.0232)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 59.5916 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 63.2372 208.0232)\\\" x=\\\"0 5.56 11.12 14.45 19.45 25.01 30.57 35.57\\\">purchase</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 104.3748 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 108.0204 208.0232)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 121.9218 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 125.5673 208.0232)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 163.3603 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 167.0058 208.0232)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 177.5674 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 181.2129 208.0232)\\\" x=\\\"0 5.56 11.12 16.12 18.4 23.96\\\">paying</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 210.7393 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 214.3849 208.0232)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 224.9464 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 228.5919 208.0232)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 242.4933 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 246.1389 208.0232)\\\" x=\\\"0 5 10.56\\\">sum</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 265.0305 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 268.676 208.0232)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 277.0159 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 280.6614 208.0232)\\\" x=\\\"0 3.33 8.89\\\">(1)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 292.8831 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 296.5286 208.0232)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.6517 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 316.2972 208.0232)\\\" x=\\\"0 5.56 11.12 16.12\\\">past</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.1986 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.8442 208.0232)\\\" x=\\\"0 5.56 11.12\\\">due</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.5287 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 359.1743 208.0232)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 394.2524 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 397.898 208.0232)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46 44.46\\\">Payments,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 445.1392 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 448.7847 208.0232)\\\" x=\\\"0 5.56 11.12 16.68 22.24 24.52\\\">unpaid</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 478.8726 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 482.5182 208.0232)\\\" x=\\\"0 2.78 8.34 13.9\\\">fees</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.4196 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 505.0651 208.0232)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.7497 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 525.3952 208.0232)\\\" x=\\\"0 5 10.56 12.84 18.4 23.4 26.18 31.74 36.74\\\">sales/use</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 196.7049)\\\" x=\\\"0 2.78 8.34 13.34 18.9 23.9\\\">taxes,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 67.3797 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 70.748 196.7049)\\\" x=\\\"0 3.33 8.89\\\">(2)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 82.9697 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 86.338 196.7049)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02\\\">70.00%</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 120.254 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 123.6223 196.7049)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 131.9621 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 135.3305 196.7049)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 149.2318 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 152.6001 196.7049)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 185.9546 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 189.3229 196.7049)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 199.8845 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 203.2528 196.7049)\\\" x=\\\"0 7.22 12.78 15.06 20.06\\\">which</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 228.8778 196.7049)\\\" x=\\\"0 3.3683\\\">  </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 235.6144 196.7049)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 249.5157 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 252.8841 196.7049)\\\" x=\\\"0 6.11 11.67 14.45 20.01\\\">Total</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.1741 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 278.5424 196.7049)\\\" x=\\\"0 7.22 12.78 17.78\\\">Cost</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.1039 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 302.4722 196.7049)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.68 32.24\\\">exceeds</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 339.7183 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 343.0866 196.7049)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 356.988 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 360.3563 196.7049)\\\" x=\\\"0 2.78 8.34 10.62 13.4 15.68 21.24\\\">Initial</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.8768 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 387.2451 196.7049)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46\\\">Payment,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 429.4863 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 432.8546 196.7049)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 437.9132 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 441.2815 196.7049)\\\" x=\\\"0 5.56 11.12 16.12\\\">any,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 460.1829 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 463.5512 196.7049)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 480.2358 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 483.6041 196.7049)\\\" x=\\\"0 5 10 15.56 21.12 26.68 32.24 34.52 40.08\\\">scheduled</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.2535 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 532.6218 196.7049)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 185.3865)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46 44.46 47.12 49.9 55.46 58.79 64.35 69.91 75.47 81.03 83.69 86.47 92.03 97.59 100.25 105.81 111.37 114.15 119.71 122.37 127.37 132.93 138.49 141.15 146.71 151.71 157.27 160.6 165.6 167.88 172.88 178.44 181.1 186.1 191.66 197.22 200.55 203.21 208.77 214.33 217.11 219.39 224.95 230.51 233.17 238.73 244.29 249.85 252.51 255.84 261.4 264.73 267.39 272.95 278.51 284.07 286.35 288.63 293.63 299.19 304.75 307.03 312.59 315.25 320.25 325.81 328.09 333.65 338.65 341.31 346.87 350.2 352.86 358.42 363.42 368.98 371.64 374.42 379.98 384.98 390.54 395.54\\\">Payments through the date you exercise your option and (3) applicable sales or use taxes.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 174.0682)\\\" x=\\\"0 7.22 12.78 15.44 22.11 27.67 32.67 38.23 41.56 43.84 46.62 51.62 54.28 61.5 67.06 72.62 78.18 83.18 85.46 88.24 90.9 98.12 103.68 109.24 114.8 117.08 120.41 125.97 131.53 134.31 136.97 144.19 149.75 152.41 157.41 162.97 167.97 173.53 176.86 179.14 181.92 186.92 189.58 195.14 200.7 206.26 211.82 216.82 219.1 221.88 224.54 226.82 231.82 234.48 237.81 243.37 248.93 254.49 256.77 260.1 265.66 271.22 273.88 279.44 285 290.56 296.12 299.45 302.11 304.89 310.45 312.73 317.73 320.39 327.06 332.62 335.95 341.51 347.07 355.4 360.96 366.52 369.3\\\">No Security Deposit Required. No security deposit is required under this Agreement.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 162.7498)\\\" x=\\\"0 5.56 11.12 16.68 21.68\\\">Lease</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 67.9461 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 72.4996 162.7498)\\\" x=\\\"0 6.11 11.67 15 23.33\\\">Term,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 98.608 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 103.1616 162.7498)\\\" x=\\\"0 6.67 12.23 17.79 22.79 28.35 33.91 39.47 45.03 50.59\\\">Subsequent</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 156.5405 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 161.094 162.7498)\\\" x=\\\"0 6.11 11.67 15 23.33 28.33\\\">Terms;</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 192.2024 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 196.7559 162.7498)\\\" x=\\\"0 7.22 12.78 18.34 23.9 31.12 36.68 38.96\\\">Renewal.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.504 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 243.0575 162.7498)\\\" x=\\\"0 6.67 12.23 17.79\\\">Your</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 264.1806 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 268.7341 162.7498)\\\" x=\\\"0 2.28 7.84 10.12 12.9 15.18 20.74\\\">initial</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.7566 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 296.3101 162.7498)\\\" x=\\\"0 2.28 7.84 13.4 18.4\\\">lease</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 320.2749 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 324.8285 162.7498)\\\" x=\\\"0 2.78 8.34 11.67\\\">term</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 344.8285 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 349.382 162.7498)\\\" x=\\\"0 5.56 10.56 16.12 18.4 21.73 27.29\\\">expires</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 381.6769 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 386.2305 162.7498)\\\" x=\\\"0 5.56\\\">60</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 397.3535 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 401.907 162.7498)\\\" x=\\\"0 5.56 11.12 16.12\\\">days</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 423.0301 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 427.5836 162.7498)\\\" x=\\\"0 2.78 6.11 11.67\\\">from</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.5836 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 452.1372 162.7498)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.0385 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 470.5921 162.7498)\\\" x=\\\"0 2.28 7.84 10.62 16.18\\\">later</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 490.1038 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 494.6573 162.7498)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 502.9972 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 507.5507 162.7498)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.4521 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 526.0056 162.7498)\\\" x=\\\"0 6.67 11.67 17.23 22.79 27.79 30.57 36.13\\\">Expected</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 151.4315)\\\" x=\\\"0 7.22 12.78 15.06 17.34 22.34 27.9 31.23\\\">Delivery</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 76.9353 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.1545 151.4315)\\\" x=\\\"0 7.22 12.78 15.56\\\">Date</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 102.2775 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 106.4967 151.4315)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 115.3883 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 119.6074 151.4315)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 133.5088 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 137.7279 151.4315)\\\" x=\\\"0 5.56 11.12 13.9\\\">date</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 157.1908 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 161.4099 151.4315)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 172.533 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 176.7521 151.4315)\\\" x=\\\"0 7.22 12.78 15.06 20.06\\\">which</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 202.3771 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 206.5963 151.4315)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 220.4976 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 224.7168 151.4315)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.5097 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 266.7289 151.4315)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 274.0091 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 278.2283 151.4315)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29 32.85\\\">provided</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 316.6463 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 320.8654 151.4315)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.757 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 333.9761 151.4315)\\\" x=\\\"0 5.56 11.12 13.4 15.68 20.68 26.24 29.57 35.13\\\">delivered</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 374.6744 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 378.8935 151.4315)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 387.2334 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 391.4525 151.4315)\\\" x=\\\"0 5 10.56 16.12\\\">you.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 410.3539 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 414.573 151.4315)\\\" x=\\\"0 7.22 12.78 15.56 17.84\\\">Until</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.6951 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 438.9142 151.4315)\\\" x=\\\"0 3.33 5.61\\\">(i)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.8546 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 452.0738 151.4315)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.1968 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 472.416 151.4315)\\\" x=\\\"0 5.56 11.12 13.9 19.46 21.74\\\">obtain</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.7206 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 503.9398 151.4315)\\\" x=\\\"0 5.56 12.78 18.34 23.9 27.23 32.23 37.79 40.07\\\">ownership</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.5794 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.7986 151.4315)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 140.1131)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 78.493 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 82.2535 140.1131)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 92.815 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 96.5756 140.1131)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29 32.85\\\">provided</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 134.9936 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 138.7541 140.1131)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.5959 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 150.3565 140.1131)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 165.9766 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 169.7371 140.1131)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 221.4315 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 225.192 140.1131)\\\" x=\\\"0 3.33 5.61 7.89\\\">(ii)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 236.4127 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 240.1733 140.1131)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.2963 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 260.0569 140.1131)\\\" x=\\\"0 2.78 8.34 11.67 20 22.28 27.84 33.4 36.18\\\">terminate</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 301.8001 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 305.5606 140.1131)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 321.1807 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 324.9413 140.1131)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 373.8573 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 377.6179 140.1131)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.1794 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 391.9399 140.1131)\\\" x=\\\"0 5.56 11.12 14.45 22.78 25.06 27.84 30.62 36.18\\\">permitted</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 433.6831 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 437.4437 140.1131)\\\" x=\\\"0 5.56 11.12 14.45 20.01 25.57 31.13 36.69 42.25\\\">hereunder</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 483.0345 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 486.795 140.1131)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 503.4796 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 507.2402 140.1131)\\\" x=\\\"0 5 10.56 13.89 17.22 22.78 28.34 33.9 39.46\\\">surrender</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 550.038 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.7986 140.1131)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 128.7947)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 78.493 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.5631 128.7947)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 89.4049 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 92.4749 128.7947)\\\" x=\\\"0 2.28 5.06\\\">its</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 102.5335 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 105.6036 128.7947)\\\" x=\\\"0 5.56 8.89 11.17 16.73 19.01 24.57 30.13\\\">original</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 138.0206 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 141.0907 128.7947)\\\" x=\\\"0 5 10.56 16.12 21.68 23.96 26.74 29.02 34.58 40.14\\\">condition,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 184.0155 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 187.0856 128.7947)\\\" x=\\\"0 2.28 7.84 12.84\\\">less</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 204.9274 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 207.9975 128.7947)\\\" x=\\\"0 3.33 8.89 14.45 19.45 25.01 30.57 36.13 41.69 43.97\\\">reasonable</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.5385 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 260.6086 128.7947)\\\" x=\\\"0 7.22 12.78 18.34\\\">wear</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 282.2834 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 285.3535 128.7947)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.038 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 305.1081 128.7947)\\\" x=\\\"0 2.78 8.34 13.9 17.23\\\">tear,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 325.1179 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 328.188 128.7947)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.7495 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 341.8196 128.7947)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 350.1594 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 353.2295 128.7947)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 367.1309 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 370.201 128.7947)\\\" x=\\\"0 5.56 11.12\\\">end</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 386.8855 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 389.9556 128.7947)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 398.2955 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 401.3656 128.7947)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 406.9271 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 409.9972 128.7947)\\\" x=\\\"0 2.28 7.84 13.4 18.4\\\">lease</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 433.962 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 437.0321 128.7947)\\\" x=\\\"0 2.78 8.34 11.67 20\\\">term,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 459.8104 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 462.8805 128.7947)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 471.7721 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 474.8422 128.7947)\\\" x=\\\"0 3.33 5.61 7.89 10.17\\\">(iii)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 488.3432 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 491.4133 128.7947)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 504.1965 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 507.2666 128.7947)\\\" x=\\\"0 2.78 8.34 11.67 20 22.28 27.84 33.4 36.18\\\">terminate</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.0097 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 552.0798 128.7947)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 117.4764)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 89.616 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 93.7725 117.4764)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 101.6143 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 105.7709 117.4764)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 111.3324 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 115.4889 117.4764)\\\" x=\\\"0 8.33 13.89 19.45 25.01 30.57\\\">manner</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 149.3952 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 153.5517 117.4764)\\\" x=\\\"0 5.56 11.12 14.45 22.78 25.06 27.84 30.62 36.18\\\">permitted</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 195.2948 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 199.4514 117.4764)\\\" x=\\\"0 5.56 11.12 14.45 20.01 25.57 31.13 36.69 42.25 45.58\\\">hereunder,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.8205 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 251.977 117.4764)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 267.5971 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 271.7537 117.4764)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 320.6697 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 324.8262 117.4764)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.8887 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 343.0452 117.4764)\\\" x=\\\"0 5.56 11.12 13.9 19.46 27.79 33.35 36.13 38.41 43.41 48.97 51.25 53.53\\\">automatically</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 401.5804 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 405.7369 117.4764)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 422.4215 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 426.578 117.4764)\\\" x=\\\"0 3.33 8.89 14.45 20.01 25.57 28.35 33.91 39.47 41.75\\\">repeatedly</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 473.3358 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 477.4923 117.4764)\\\" x=\\\"0 3.33 8.89 14.45 20.01\\\">renew</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 504.7287 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 508.8852 117.4764)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 520.5551 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 524.7116 117.4764)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.74 24.02 29.58 35.14 40.7\\\">additional</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 106.158)\\\" x=\\\"0 2.28 7.84 13.4 18.4 23.96 26.62 29.4 34.96 38.29 46.62 51.62 54.4 57.06 62.62 68.18 73.18 78.74 81.4 86.96 92.52 95.18 100.74 106.3 111.3 116.3 118.96 121.24 126.8 129.46 131.74 137.3 142.86 148.42 151.2 156.76\\\">lease terms, each 60 days in length.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 94.8397)\\\" x=\\\"0 8.33 13.89 16.17 21.73 24.51 30.07 35.63 41.19 46.75 51.75\\\">Maintenance</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 98.0193 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 101.2487 94.8397)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 109.5885 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 112.8178 94.8397)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 126.7192 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 129.9485 94.8397)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 170.5198 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 173.7491 94.8397)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 191.5421 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 194.7714 94.8397)\\\" x=\\\"0 5.56 8.89\\\">are</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.2246 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 212.4539 94.8397)\\\" x=\\\"0 3.33 8.89 13.89 19.45 25.01 30.57 35.57 37.85 43.41 45.69\\\">responsible</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 263.7136 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 266.943 94.8397)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 278.6129 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 281.8422 94.8397)\\\" x=\\\"0 8.33 13.89 16.17 21.73 24.51 30.07 32.35 37.91 40.19 45.75\\\">maintaining</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 333.1606 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 336.3899 94.8397)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 345.2815 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 348.5108 94.8397)\\\" x=\\\"0 5 10.56 13.89 18.89 21.17 26.17 28.45 34.01\\\">servicing</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.086 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 391.3154 94.8397)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 405.2167 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 408.446 94.8397)\\\" x=\\\"0 5.56 8.89 14.45 20.01 25.57 28.9 31.68\\\">property</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 445.1306 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 448.3599 94.8397)\\\" x=\\\"0 7.22 12.78 15.06 17.34\\\">while</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 471.2652 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 474.4945 94.8397)\\\" x=\\\"0 2.28\\\">it</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 479.5531 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 482.7825 94.8397)\\\" x=\\\"0 2.28 5.06\\\">its</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 492.8411 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 496.0704 94.8397)\\\" x=\\\"0 5.56 11.12 13.4 18.96\\\">being</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 520.5968 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 523.8261 94.8397)\\\" x=\\\"0 2.28 7.84 13.4 18.4 23.96 29.52\\\">leased.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 556.1308 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 559.3601 94.8397)\\\" x=\\\"0 2.78\\\">In</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 83.5213)\\\" x=\\\"0 5.56 10.56 15.56 21.12 24.45 30.01 35.57 41.13 46.13\\\">accordance</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 92.3992 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 95.7041 83.5213)\\\" x=\\\"0 7.22 9.5 12.28\\\">with</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 113.5459 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 116.8509 83.5213)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 132.471 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 135.7759 83.5213)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 187.4702 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 190.7752 83.5213)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 206.8982 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.2031 83.5213)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 224.2656 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 227.5706 83.5213)\\\" x=\\\"0 5 10.56 16.12 21.68 27.24 32.24\\\">conduct</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.595 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 265.8999 83.5213)\\\" x=\\\"0 5.56 7.84\\\">all</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.022 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 279.3269 83.5213)\\\" x=\\\"0 8.33 13.89 16.17 21.73 24.51 30.07 35.63 41.19 46.75 51.75 57.31\\\">maintenance,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 339.4246 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 342.7295 83.5213)\\\" x=\\\"0 3.33 8.89 14.45 20.01 22.29 25.62 30.62\\\">repairs,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 376.1328 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 379.4377 83.5213)\\\" x=\\\"0 5.56 11.12 16.12 21.68 27.24\\\">upkeep</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 412.2454 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 415.5503 83.5213)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 432.2349 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 435.5398 83.5213)\\\" x=\\\"0 5 10.56 13.89 19.45\\\">care.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 457.7712 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 461.0762 83.5213)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.6328 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 469.9377 83.5213)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.0608 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 489.3657 83.5213)\\\" x=\\\"0 8.33 13.89 19.45 25.01 27.79 33.35 38.35 41.13 46.69 50.02 55.58 58.91 61.13\\\">manufacturer’s</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 555.5034 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 558.8083 83.5213)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 83.5213)\\\" x=\\\"0\\\"> </text></g><clipPath id=\\\"clip0-11\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip0-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 546.6561 L 573.6 546.6561 L 573.6 545.6561 L 34.8 545.6561 L 34.8 546.6561 z \\\"/><path clip-path=\\\"url(#clip0-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.6 545.6561 L 573.6 545.6561 L 573.6 530.3377 L 572.6 530.3377 L 572.6 545.6561 z \\\"/><path clip-path=\\\"url(#clip0-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 545.6561 L 35.8 545.6561 L 35.8 530.3377 L 34.8 530.3377 L 34.8 545.6561 z \\\"/><path clip-path=\\\"url(#clip0-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 530.3377 L 573.6 530.3377 L 573.6 529.3377 L 34.8 529.3377 L 34.8 530.3377 z \\\"/><path clip-path=\\\"url(#clip0-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 81.9217 L 573.6 81.9217 L 573.6 80.9217 L 34.8 80.9217 L 34.8 81.9217 z \\\"/><path clip-path=\\\"url(#clip0-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.6 529.3377 L 573.6 529.3377 L 573.6 81.9217 L 572.6 81.9217 L 572.6 529.3377 z \\\"/><path clip-path=\\\"url(#clip0-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 529.3377 L 35.8 529.3377 L 35.8 81.9217 L 34.8 81.9217 L 34.8 529.3377 z \\\"/><g clip-path=\\\"url(#clip0-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 36.5264)\\\" x=\\\"0 6.498 11.997 14.391 16.785 21.789 26.793 29.295 34.299 39.303 44.307 504 506.3906 508.7812 511.1719 513.5625 515.9531 518.3438 520.7344 523.125 525.5156\\\">UT  07/2019          </text></g><g clip-path=\\\"url(#clip0-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 26.3398)\\\" x=\\\"0 6.003 11.007 16.011 21.015\\\">Page </text></g><g clip-path=\\\"url(#clip0-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 55.8097 26.3398)\\\" x=\\\"0\\\">1</text></g><g clip-path=\\\"url(#clip0-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.815 26.3398)\\\" x=\\\"0 2.394 7.398 9.9\\\"> of </text></g><g clip-path=\\\"url(#clip0-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 73.1021 26.3398)\\\" x=\\\"0\\\">7</text></g><g clip-path=\\\"url(#clip0-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#d9d9d9\\\" style=\\\"font-family:f0-0; font-size:54pt; white-space:pre\\\" transform=\\\"matrix(0.707 0.707 0.707 -0.707 135.6027 198.5094)\\\" x=\\\"0 56.016 96.048 136.08 176.112 216.144 236.16 284.184 324.216 344.232 364.248 416.232 456.264 480.24\\\">Qoppa Software</text></g><g clip-path=\\\"url(#clip0-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#002ba6\\\" style=\\\"font-family:f0-0; font-size:9pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.932 772)\\\" x=\\\"0 9.336 16.008 22.68 29.352 36.024 39.36 47.364 54.036 57.372 60.708 69.372 76.044 80.04 86.712 90.048 94.044 97.38 104.712 111.384 115.38 118.716 126.72 132.72 139.392 142.056 148.728 155.4 158.736 161.4 168.072 174.744 178.08 187.416 194.088 196.752 202.752 206.088 210.084 213.42 220.092 223.428 226.764 233.436 239.436 242.772 246.108 249.444 258.108 266.772 275.436 278.772 285.444 292.116 298.788 305.46 312.132 315.468 321.468 328.14\\\">Qoppa Software - For Evaluation Only - https://www.qoppa.com</text></g></g></svg></svg></g></svg><br>\\n<?xml version='1.0' encoding='UTF-8'?><svg id=\\\"qoppa_document\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" version=\\\"1.1\\\" xmlns=\\\"http://www.w3.org/2000/svg\\\" xmlns:xlink=\\\"http://www.w3.org/1999/xlink\\\"><!-- jPDFWeb v2019R1.03 - Demo Version --><style>title p { display: block; }</style><g id=\\\"qoppa_viewxform\\\" transform=\\\"matrix(1 0 0 1 0 0)\\\"><style type=\\\"text/css\\\">@font-face {font-family:f1-0;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f1-1;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f1-2;src:url(\\\"data:application/font-woff;charset=utf-8;base64,d09GRgABAAAAAAW8AAoAAAAABzQAAQABAAAAAAAAAAAAAAAAAAAAAAAAAABPUy8yAAAA9AAAADcAAABWWalZZmNtYXAAAAEsAAAAUwAAAGwBegIKZ2x5ZgAAAYAAAALfAAADgId/tkZoZWFkAAAEYAAAADMAAAA2GHlkumhoZWEAAASUAAAAIAAAACQGIAKxaG10eAAABLQAAAA0AAAARCRzAuxsb2NhAAAE6AAAACQAAAAkBYYGdm1heHAAAAUMAAAAGAAAACAAFAAzbmFtZQAABSQAAACMAAABPhepMhlwb3N0AAAFsAAAAAwAAAAgAAMAAHicY2Bk8mKcwMDKwMDUxbSbARlwMeogc/8DATI/MCDAkUEBCG8y3fifzBDFdINhLkwOAMp0DLgAeJxjYGBgZGAGYgYGHgYWhgQgLcIgABRhYVBgcGRwZXBn8GTwZwhmCGWI//8fKAsSdQaL+sBE/z/+f/j/of8H/x/4v+//7v+7/m8Em4cBADR/GXUAeJx9kk1ME0EYhmcGu42lUTZQQEgKy5oWQktLt0vbAG20WwJ0m1YskKalbKG7EH7CQYkajAnFGIrCRaUGEE1MxL+bBw/ECzdT0YsHUG8cvZDozXTrbFuMJ2eyySQz7/e+37MfQAAvtImyAAENALAcQtpIqWnIwL1b1+Hnqcvyl+A4JCV4Hgbkt/L3w0P8Fj8EbflfaBsdAAoAVZPRwNodHYytprqGNhgNdJOa0FXVVDM2R4eDIdQEXMhE8crMDwxoEgTLXpr14DUdttvVCU0wpB1PvnqdTHo8E97m5n7/vRU/39ISuOJ241QhnO8J9iQACUAl00hWULRDKczajYZWGDqCM/KDo/jSpsvlcm4toay8LWfCfb23F3t6lJyKXsT6cgBaIEnpShuJuR9IJUfgXXkevkPZwa+DP//29QH3Rf+/L5ZmKZI2EjC9KQijoxuLQ4PlY4TLFZvjvBw3t8G/h7Xe2j5tUnzxUhQ97kmf0ejnV9I8L80Oyff9w4pXFDvu4mxlADA0yewKggK3mFmDj6pCZoakkEbuicMYyubSJ/fH+F4LAEWTZXQZidX1kEHHkf3wfmRtb28NCbmnhS+be4PCJU0Ka04rGqgIcGWUGpPTEQFeiyJ77iN+m0UsZq4w+IYZnAUN2A53r6tSE3SJRmWJ/QkMeGcdAxDWM0IiIaxP+ziOm5rx+TgfOpCknR1RFKXnO5KUmwnwy7h9nk8v8wFQYG3CPhPYp73I2shUF2dGKa/sf+CfuBW3kgfGH/n9p2Lqzq5wsN1qsy0ssB09vqs3+vtVI2eeBU2tdJMw6nLigerTermpkMHQSDk76+vr6ixtgWGn0+WUUnp9uxlX0+mqWk29I91dCiecSeF0rpTJwOIfUJrlwlGtzPPkTbe7oiJutURjFovQ0OBxa63WCxeH4LacXDWbTOZVuCWPpbrdej2A+d/5cWTOP1T+s4piKWTOfUK2xzYA/gBtBuJcAHicY2BkYGAA4rxdv17H89t8ZeBmfgEUYbhtLnAWRv///T+Z6QPTDaA6DgYmkCgAl1oOtgB4nGNgZGBguvE/mSGK2fH/7/+/mT4wAEVQgCAAvv0H1HicY2CAAEZfCGaaDcSXGPSAOADIDmDmYtBjFGOIZtIBsh2BYpcgYkA5HbAajf+/AR7DC3wAAAAAAAAAAAAAABwAUABwAIgAvgDKANoA9AEKAT4BiAGyAcB4nGNgZGBgEGQwYmBiAAFGBjQAAAcrAEh4nJWOMQ6CUBBEH4KKrZUlpRURQkUptZWJhZ1RURPiJ0BD41E8BudzhH8AyGaTN7OTyQJLzrg43gpYawd22EoNPMMntewSsrfsiUvLczZ8LS/kd2QYXVsqXjx40nAQXaUNtTaXE3Dkwlv6T/c+m6vfUHAbnf+QEE9Mn3pdyzFKBET6eaeZ1PIDR/8t33icY2BmwAsAAH0ABA==\\\");}@font-face {font-family:f1-3;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}</style><svg id=\\\"qoppa_page_p1\\\" class=\\\"qoppa_page\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\"><rect class=\\\"qoppa_pageborder\\\" x=\\\"0.5pt\\\" y=\\\"0.5pt\\\" width=\\\"611pt\\\" height=\\\"791pt\\\" fill=\\\"none\\\" /><svg class=\\\"qoppa_pagecontents\\\" x=\\\"0pt\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" viewBox=\\\"0 0 612 792\\\" ><g class=\\\"qoppa_contentstream\\\" transform=\\\"matrix(1 0 0 -1 0 792)\\\" fill=\\\"black\\\" stroke=\\\"black\\\" stroke-width=\\\"1\\\" stroke-linecap=\\\"butt\\\" stroke-linejoin=\\\"miter\\\" stroke-miterlimit=\\\"10\\\"><clipPath id=\\\"clip1-1\\\"><path d=\\\"M 35 487 L 574 487 L 574 770 L 35 770 L 35 487 z \\\"/></clipPath><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 759.4812)\\\" x=\\\"0 5 10.56 12.84 15.12 20.68 24.01 26.23\\\">seller’s</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 71.9353 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 75.2187 759.4812)\\\" x=\\\"0 7.22 12.78 16.11 19.44 25 30.56 33.34\\\">warranty</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 113.5635 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 116.8468 759.4812)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 124.1271 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 127.4105 759.4812)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 135.2523 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 138.5357 759.4812)\\\" x=\\\"0 2.78 8.34 11.67 16.67\\\">force</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.7671 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 164.0505 759.4812)\\\" x=\\\"0 7.22 12.78 18.34\\\">when</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 187.9567 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 191.2401 759.4812)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 207.3631 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.6465 759.4812)\\\" x=\\\"0 5.56 10.56 16.12 21.68 23.96 27.29\\\">acquire</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 243.503 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 246.7863 759.4812)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 260.6877 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 263.9711 759.4812)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 304.5424 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 307.8258 759.4812)\\\" x=\\\"0 2.28\\\">it</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.8844 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 316.1677 759.4812)\\\" x=\\\"0 5 10.56 16.12 18.4\\\">shall</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 336.8513 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 340.1347 759.4812)\\\" x=\\\"0 5.56\\\">be</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.2578 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 354.5411 759.4812)\\\" x=\\\"0 2.78 6.11 11.67 17.23 22.23 25.01 30.57 33.9 37.23 42.79\\\">transferred</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.8956 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 406.179 759.4812)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 414.5188 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 417.8022 759.4812)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 433.9253 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 437.2086 759.4812)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 442.2672 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 445.5506 759.4812)\\\" x=\\\"0 5.56 7.84 10.12 15.68 22.9 28.46\\\">allowed</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 479.5789 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 482.8623 759.4812)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 493.4238 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 496.7072 759.4812)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 510.6086 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 513.892 759.4812)\\\" x=\\\"0 2.78 8.34 11.67 20\\\">terms</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 538.892 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 542.1754 759.4812)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 550.5152 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.7986 759.4812)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 748.1629)\\\" x=\\\"0 7.22 12.78 16.11 19.44 25 30.56 33.34 38.34\\\">warranty.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 736.8445)\\\" x=\\\"0 5.56 11.12 16.12 18.9\\\">Lost,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 62.3797 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 65.5493 736.8445)\\\" x=\\\"0 6.67 9.45 15.01 17.29 22.85 28.41\\\">Stolen,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 96.7407 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 99.9104 736.8445)\\\" x=\\\"0 7.22 12.78 21.11 26.67 32.23 37.79 43.35\\\">Damaged,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.0481 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 149.2177 736.8445)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 158.1093 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 161.279 736.8445)\\\" x=\\\"0 7.22 12.78 17.78 20.56 23.89 29.45 34.45 40.01\\\">Destroyed</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 206.8552 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.0248 736.8445)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 250.5961 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 253.7657 736.8445)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.3224 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 262.492 736.8445)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.3934 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 279.563 736.8445)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 317.356 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 320.5256 736.8445)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 327.8059 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 330.9756 736.8445)\\\" x=\\\"0 2.28 7.84 12.84 15.62\\\">lost,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 349.374 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 352.5437 736.8445)\\\" x=\\\"0 5 7.78 13.34 15.62 21.18 26.74\\\">stolen,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 382.0651 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 385.2348 736.8445)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57 36.13\\\">damaged</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 426.934 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 430.1037 736.8445)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 438.9952 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 442.1649 736.8445)\\\" x=\\\"0 5.56 11.12 16.12 18.9 22.23 27.79 32.79 38.35 43.91\\\">destroyed,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 488.8592 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 492.0289 736.8445)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 508.1519 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 511.3216 736.8445)\\\" x=\\\"0 5.56 11.12 14.45 20.01\\\">agree</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 536.8977 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 540.0674 736.8445)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 548.4072 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 551.5769 736.8445)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 725.5262)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 51.2615 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 55.736 725.5262)\\\" x=\\\"0 5.56\\\">at</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 64.0758 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 68.5503 725.5262)\\\" x=\\\"0 5.56 11.12 16.12\\\">once</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 90.2349 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 94.7094 725.5262)\\\" x=\\\"0 5.56\\\">an</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 105.8324 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 110.3069 725.5262)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 143.6614 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.1359 725.5262)\\\" x=\\\"0 5.56 11.12 16.68 22.24\\\">equal</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 172.6622 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 177.1367 725.5262)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 185.4766 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 189.951 725.5262)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 203.8524 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 208.3269 725.5262)\\\" x=\\\"0 2.28 7.84 12.84 17.84 23.4\\\">lesser</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 235.0603 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 239.5348 725.5262)\\\" x=\\\"0 5.56 8.34\\\">of:</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 250.6529 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 255.1274 725.5262)\\\" x=\\\"0 3.33 8.89\\\">(1)</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 267.3491 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 271.8236 725.5262)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 285.7249 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 290.1994 725.5262)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79 40.01\\\">Property’s</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.2141 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 339.6885 725.5262)\\\" x=\\\"0 2.78 8.34 10.62\\\">fair</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 353.6387 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 358.1132 725.5262)\\\" x=\\\"0 8.33 13.89 17.22 22.22 27.78\\\">market</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.6747 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 393.1492 725.5262)\\\" x=\\\"0 5 10.56 12.84 18.4 23.96\\\">value,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.8924 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 424.3669 725.5262)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.9284 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 439.4029 725.5262)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.7427 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 452.2172 725.5262)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.1185 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 470.593 725.5262)\\\" x=\\\"0 2.78 5.06 13.39\\\">time</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.5432 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 494.0177 725.5262)\\\" x=\\\"0 2.28\\\">it</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.0763 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 503.5508 725.5262)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 510.831 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 515.3055 725.5262)\\\" x=\\\"0 2.28 7.84 12.84 15.62\\\">lost,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 533.704 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 538.1785 725.5262)\\\" x=\\\"0 5 7.78 13.34 15.62 21.18 26.74\\\">stolen,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 714.2078)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57 36.13\\\">damaged</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 82.3992 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 86.9016 714.2078)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 95.7932 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 100.2955 714.2078)\\\" x=\\\"0 5.56 11.12 16.12 18.9 22.23 27.79 32.79 38.35\\\">destroyed</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 144.2115 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.7139 714.2078)\\\" x=\\\"0 3.33 8.89 14.45 17.23 22.79 26.12 34.45 36.73 42.29 47.85\\\">(determined</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 202.1319 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 206.6342 714.2078)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 217.1958 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 221.6981 714.2078)\\\" x=\\\"0 5.56 10.56\\\">us,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 235.038 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 239.5403 714.2078)\\\" x=\\\"0 5.56 10.56 12.84 18.4\\\">using</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 263.5052 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 268.0075 714.2078)\\\" x=\\\"0 5.56\\\">an</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 279.1306 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 283.6329 714.2078)\\\" x=\\\"0 2.28 7.84 13.4 18.96 23.96 26.74 30.07\\\">industry</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 318.7062 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 323.2085 714.2078)\\\" x=\\\"0 5 10.56 12.84 18.4\\\">value</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 347.1734 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 351.6758 714.2078)\\\" x=\\\"0 5.56 11.12 13.4 18.96\\\">guide</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 376.2021 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 380.7045 714.2078)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.4877 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 397.99 714.2078)\\\" x=\\\"0 5 10.56 12.84 18.4 23.4 26.18\\\">select,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 426.95 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 431.4524 714.2078)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 436.511 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 441.0133 714.2078)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 457.1364 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 461.6387 714.2078)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.919 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 473.4214 714.2078)\\\" x=\\\"0 5.56 10.56 16.12 18.4 20.68 26.24 31.8 34.08 39.64 42.97\\\">available);</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 519.1782 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 523.6806 714.2078)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 532.5722 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 537.0745 714.2078)\\\" x=\\\"0 3.33 8.89\\\">(2)</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.2962 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.7986 714.2078)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 702.8895)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57 33.35 36.01 41.01 46.57 52.13 54.79 62.01 67.57 73.13 75.41 80.97 83.63 89.19 94.75 100.31 105.87 108.53 111.31 116.87 119.53 125.09 130.65 135.65 138.31 143.87 146.65 149.31 154.31 159.87 164.87 170.43 173.09 175.87 178.15 186.48 192.04 194.7 197.48 203.04 205.7 211.26 216.26 221.82 225.15 230.15 232.43 237.43 242.99 245.65 248.43 253.99 259.55 262.21 267.77 273.33 278.89 282.22 289.44 295 300 302.66 310.44 316 318.78 321.06 326.62 332.18 334.84 340.4 343.73 346.39 353.06 358.62 361.95 364.23 369.23 371.89 378.56 384.12 389.12 392.45 400.23 405.79 408.57 411.23 419.01 424.57 427.35 429.63 435.19 440.75 443.53 446.19 451.75 456.75 459.41 464.97 470.53 476.09 478.37 480.65 485.65 491.21 496.77 499.05 504.61\\\">amount you would need to pay at such time to exercise the 100-Day Option or Early Buy-Out Option, as applicable.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 691.5711)\\\" x=\\\"0 7.22 12.78 15.06 20.62 25.62 28.4 33.96 36.74 42.3 50.63 56.19 61.75\\\">Reinstatement</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 105.2361 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 108.6807 691.5711)\\\" x=\\\"0 7.22 9.5 15.06 20.62 23.4 28.4\\\">Rights.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 139.8623 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 143.3069 691.5711)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 148.8635 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 152.3081 691.5711)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 168.4311 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 171.8757 691.5711)\\\" x=\\\"0 5.56 8.89\\\">are</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 186.3288 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 189.7734 691.5711)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 197.6152 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 201.0597 691.5711)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 27.3\\\">default</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.1428 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 234.5873 691.5711)\\\" x=\\\"0 5.56 11.12 16.68 19.46 25.02\\\">and/or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.9418 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 266.3864 691.5711)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.2877 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 283.7323 691.5711)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 321.5253 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 324.9698 691.5711)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 332.2501 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 335.6947 691.5711)\\\" x=\\\"0 5 10.56 13.89 17.22 22.78 28.34 33.9 39.46 42.79 48.35\\\">surrendered</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 389.6156 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 393.0601 691.5711)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 401.9517 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 405.3963 691.5711)\\\" x=\\\"0 3.33 8.89 14.45 20.01 25.01 30.01 35.57 40.57 45.57 51.13 56.69\\\">repossessed,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 464.8738 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 468.3184 691.5711)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.4414 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 487.886 691.5711)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 506.7776 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 510.2222 691.5711)\\\" x=\\\"0 3.33 8.89 11.17 16.73 21.73 24.51 30.07 32.85\\\">reinstate</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 548.6353 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 552.0798 691.5711)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 680.2527)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 89.616 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 92.7055 680.2527)\\\" x=\\\"0 7.22 9.5 12.28 17.84 23.4 28.96\\\">without</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 124.4487 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 127.5382 680.2527)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68\\\">losing</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 153.7833 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 156.8728 680.2527)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 172.9958 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 176.0853 680.2527)\\\" x=\\\"0 3.33 5.61 11.17 16.73 19.51\\\">rights</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 200.597 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 203.6865 680.2527)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 212.5781 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 215.6676 680.2527)\\\" x=\\\"0 5.56 11.12 13.9 16.18 21.74 27.3\\\">options</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.9723 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 251.0618 680.2527)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 261.6234 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 264.7129 680.2527)\\\" x=\\\"0 5.56 11.12 16.12 18.4 23.96 29.52\\\">paying:</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 297.0175 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 300.1071 680.2527)\\\" x=\\\"0 3.33 5.61\\\">(i)</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 309.0475 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 312.137 680.2527)\\\" x=\\\"0 5.56 7.84\\\">all</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 322.2591 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 325.3485 680.2527)\\\" x=\\\"0 5.56 11.12 16.12\\\">past</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 344.2499 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 347.3394 680.2527)\\\" x=\\\"0 5.56 11.12\\\">due</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 364.024 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 367.1135 680.2527)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01 30.57 35.57\\\">charges;</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 405.468 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 408.5575 680.2527)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 425.242 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 428.3315 680.2527)\\\" x=\\\"0 3.33 5.61 7.89\\\">(ii)</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 439.5523 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 442.6418 680.2527)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.7003 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 450.7898 680.2527)\\\" x=\\\"0 5.56 7.84 10.12 15.68 22.9 28.46\\\">allowed</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.8182 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 487.9077 680.2527)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 498.4692 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 501.5587 680.2527)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64\\\">applicable</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 546.7686 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 549.8581 680.2527)\\\" x=\\\"0 2.28 7.84 15.06\\\">law,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 668.9344)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 54.6014 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 59.0196 668.9344)\\\" x=\\\"0 3.33 8.89 14.45 19.45 25.01 30.57 36.13 41.69 43.97\\\">reasonable</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 108.5606 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 112.9789 668.9344)\\\" x=\\\"0 5 10.56 15.56 18.34\\\">costs</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.3187 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 140.737 668.9344)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 149.0768 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 153.4951 668.9344)\\\" x=\\\"0 5.56 7.84 12.84 17.84 23.4\\\">pickup</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 182.4599 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 186.8782 668.9344)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 203.5627 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 207.981 668.9344)\\\" x=\\\"0 3.33 8.89 14.45 20.01 22.29 24.57 29.57 35.13 38.46 43.46\\\">redelivery.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 254.2261 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 258.6444 668.9344)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.4373 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 280.8556 668.9344)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.7472 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 304.1654 668.9344)\\\" x=\\\"0 5.56 10.56 16.12 19.45 24.45 26.73 31.73\\\">exercise</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 341.4604 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 345.8786 668.9344)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 365.3317 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 369.75 668.9344)\\\" x=\\\"0 3.33 8.89 11.17 16.73 21.73 24.51 30.07 32.85 38.41 46.74 52.3 57.86\\\">reinstatement</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.3945 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 434.8128 668.9344)\\\" x=\\\"0 3.33 5.61 11.17 16.73\\\">right</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.3245 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 458.7428 668.9344)\\\" x=\\\"0 7.22 9.5 12.28 17.84 20.12\\\">within</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.4263 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 488.8446 668.9344)\\\" x=\\\"0 5.56 11.12\\\">180</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 505.5292 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 509.9474 668.9344)\\\" x=\\\"0 5.56 11.12 16.12\\\">days</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 531.0705 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 535.4887 668.9344)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 543.8286 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 548.2468 668.9344)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 657.616)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 27.3 30.08 32.74 38.3 41.63 44.29 49.29 54.85 58.18 61.51 67.07 72.63 78.19 83.75 87.08 89.86 93.19 98.75 104.31 109.87 114.87 119.87 125.43 130.43 135.43 137.71 143.27 148.83 151.49 157.05 159.83 162.49 165.27 170.83 176.39 179.05 185.72 189.05 194.61 200.17 205.73 209.06 211.84 216.84 219.5 225.06 228.39 231.05 236.05 241.61 246.61 252.17 254.83 257.11 262.67 268.23 273.79 279.35 282.68 285.34 290.9 296.46 299.79 302.07 307.63 313.19 315.85 321.41 324.74 330.3 335.3 337.58 343.14 348.7 354.26 356.92 359.7 365.26 367.92 372.92 378.48 384.04 386.7 392.26 397.82 403.38 408.94 412.27 414.93 420.49 426.05 431.61 433.89 436.17 441.17 446.73 452.29 454.57 460.13 462.79 465.07 470.63 477.85\\\">default or surrender/repossession of the Property or such longer period provided to you under applicable law.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 646.2977)\\\" x=\\\"0 7.22 9.5 15.06 20.62\\\">Right</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 64.1033 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 66.9139 646.2977)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 75.2537 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 78.0643 646.2977)\\\" x=\\\"0 6.11 11.67 15 23.33 25.61 31.17 36.73 39.51 45.07\\\">Terminate.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 125.9158 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 128.7263 646.2977)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.5193 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 149.3299 646.2977)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 168.2215 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 171.032 646.2977)\\\" x=\\\"0 2.78 8.34 11.67 20 22.28 27.84 33.4 36.18\\\">terminate</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 212.7752 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 215.5857 646.2977)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 235.0388 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 237.8494 646.2977)\\\" x=\\\"0 2.28 7.84 13.4 18.4\\\">lease</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 261.8142 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 264.6248 646.2977)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.9793 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 305.7898 646.2977)\\\" x=\\\"0 5.56 11.12 13.4 15.68 21.24 26.8 29.58 31.86 37.42 42.98\\\">obligations</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 353.7781 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 356.5886 646.2977)\\\" x=\\\"0 5.56 11.12 16.68 22.24\\\">under</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 382.1648 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 384.9753 646.2977)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 400.5955 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 403.406 646.2977)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 452.322 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 455.1326 646.2977)\\\" x=\\\"0 7.22 9.5 12.28 17.84 23.4 28.96\\\">without</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.8757 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 489.6863 646.2977)\\\" x=\\\"0 5.56 11.12 16.68 22.24 24.52 27.3\\\">penalty</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.991 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 524.8015 646.2977)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 535.363 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 538.1736 646.2977)\\\" x=\\\"0 5.56 11.12 16.12 18.4 23.96\\\">paying</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 634.9793)\\\" x=\\\"0 5.56 7.84\\\">all</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 50.8221 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 53.7614 634.9793)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 88.8395 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 91.7789 634.9793)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46 44.46\\\">Payments,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 139.0201 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 141.9594 634.9793)\\\" x=\\\"0 2.78 8.34 13.9\\\">fees</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.8608 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 163.8001 634.9793)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 180.4847 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 183.424 634.9793)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01 30.57\\\">charges</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 219.0002 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 221.9396 634.9793)\\\" x=\\\"0 2.78 8.34 13.9\\\">that</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.6192 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 241.5586 634.9793)\\\" x=\\\"0 5.56 8.89\\\">are</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.0117 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 258.951 634.9793)\\\" x=\\\"0 5.56 11.12\\\">due</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.6356 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 278.575 634.9793)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 287.4666 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 290.4059 634.9793)\\\" x=\\\"0 5.56 11.12 16.12\\\">past</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 309.3073 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 312.2466 634.9793)\\\" x=\\\"0 5.56 11.12\\\">due</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 328.9312 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 331.8705 634.9793)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.5551 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 351.4944 634.9793)\\\" x=\\\"0 5 10.56 12.84 18.4 23.96 26.74 32.3 35.63 37.91 40.19\\\">voluntarily</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 396.6898 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 399.6291 634.9793)\\\" x=\\\"0 5 10.56 13.89 17.22 22.78 28.34 33.9 39.46 42.79 45.07 50.63\\\">surrendering</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 455.8303 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 458.7696 634.9793)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.6612 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 470.6005 634.9793)\\\" x=\\\"0 3.33 8.89 11.67 17.23 20.56 26.12 28.4 33.96\\\">returning</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 510.1269 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 513.0663 634.9793)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.9676 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 529.907 634.9793)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 623.6609)\\\" x=\\\"0 2.28 7.84 10.5 12.78 15.56 20.56 23.22 28.78 32.11 34.39 39.95 42.23 47.79 53.35 55.63 58.29 63.29 68.85 74.41 79.97 82.25 85.03 87.31 92.87 98.43 101.21 103.87 106.15 111.71 116.71 121.71 124.37 127.7 133.26 138.82 143.82 149.38 154.94 160.5 166.06 168.34 173.9 176.56 183.78 189.34 194.9 198.23 200.89 206.45 212.01 217.57 220.23 223.01 228.57 234.13 237.46 240.12 245.68 248.46 251.12 253.9 259.46 265.02 267.68 273.24 278.24 283.8 286.08 289.41 294.97 297.75 300.03 305.59 311.15 313.81 319.37 322.15 324.81 330.37 335.93 340.93 343.59 345.87 351.43 356.99 361.99 367.55 370.21 372.99 378.55 381.88 390.21\\\">in its original condition, less reasonable wear and tear at the expiration of any lease term.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 612.3426)\\\" x=\\\"0 5.56 11.12 13.9\\\">Late</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.1629 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 63.3819 612.3426)\\\" x=\\\"0 6.11 11.67 17.23 22.23\\\">Fees.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 88.3917 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 91.6107 612.3426)\\\" x=\\\"0 9.44\\\">We</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 106.6107 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 109.8297 612.3426)\\\" x=\\\"0 3.33 8.89 13.89 19.45 22.78 27.78\\\">reserve</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 143.1744 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 146.3934 612.3426)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.2948 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 163.5138 612.3426)\\\" x=\\\"0 3.33 5.61 11.17 16.73\\\">right</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 183.0255 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 186.2445 612.3426)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 194.5844 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 197.8034 612.3426)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01\\\">charge</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 228.3796 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 231.5986 612.3426)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 237.1601 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 240.3791 612.3426)\\\" x=\\\"0 2.28 7.84 10.62\\\">late</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.5608 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 259.7798 612.3426)\\\" x=\\\"0 2.78 8.34\\\">fee</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 273.6811 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 276.9002 612.3426)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 288.5701 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 291.7891 612.3426)\\\" x=\\\"0 5.56 11.12 16.12\\\">past</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 310.6905 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 313.9095 612.3426)\\\" x=\\\"0 5.56 11.12\\\">due</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 330.594 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 333.8131 612.3426)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57 38.35 43.35\\\">payments,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 379.9459 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 383.1649 612.3426)\\\" x=\\\"0 5.56 8.34 11.12 16.68\\\">after</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.1747 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 406.3937 612.3426)\\\" x=\\\"0 5.56 7.84 10.12 15.68 22.9 25.18 30.74\\\">allowing</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 442.7023 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 445.9213 612.3426)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 457.5912 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 460.8102 612.3426)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 476.9333 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 480.1523 612.3426)\\\" x=\\\"0 5.56 8.89 14.45 19.45\\\">grace</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 505.1669 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 508.3859 612.3426)\\\" x=\\\"0 5.56 11.12 14.45 16.73 22.29 27.85\\\">period,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 539.0207 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 542.2397 612.3426)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 550.5796 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.7986 612.3426)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 601.0242)\\\" x=\\\"0 2.28 7.84 12.84 17.84 23.4\\\">lesser</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 67.4334 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 70.2009 601.0242)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 78.5407 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.3082 601.0242)\\\" x=\\\"0 3.33 5.61\\\">(i)</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 90.2486 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 93.0161 601.0242)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 106.9175 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 109.6849 601.0242)\\\" x=\\\"0 3.33 8.89 11.67\\\">rate</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 126.9164 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 129.6839 601.0242)\\\" x=\\\"0 5.56 7.84 10.12 15.68 22.9 28.46\\\">allowed</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 163.7122 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 166.4797 601.0242)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 177.0412 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 179.8087 601.0242)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64\\\">applicable</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.0186 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 227.7861 601.0242)\\\" x=\\\"0 2.28 7.84\\\">law</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 242.8496 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 245.6171 601.0242)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 254.5087 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 257.2761 601.0242)\\\" x=\\\"0 3.33 5.61 7.89\\\">(ii)</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 268.4968 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 271.2643 601.0242)\\\" x=\\\"0 5.56 11.12 13.9 19.46\\\">$2.00</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 296.2887 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 299.0562 601.0242)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 310.7261 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 313.4936 601.0242)\\\" x=\\\"0 7.22 12.78 18.34 23.34 25.62 30.62\\\">weekly,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 346.8969 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 349.6644 601.0242)\\\" x=\\\"0 5.56 7.84 15.06 20.62 26.18 31.18 33.46 38.46\\\">biweekly,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 390.9095 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 393.677 601.0242)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.5686 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 405.3361 601.0242)\\\" x=\\\"0 5 10.56 18.89 21.17 24.5 32.83 38.39 43.95 46.73 52.29 54.57\\\">semi-monthly</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 464.9113 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 467.6787 601.0242)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57 38.35 43.35\\\">payments,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 513.8116 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 516.579 601.0242)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 525.4706 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 528.2381 601.0242)\\\" x=\\\"0 5.56 11.12 13.9 19.46\\\">$5.00</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.2625 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 556.03 601.0242)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 589.7059)\\\" x=\\\"0 8.33 13.89 19.45 22.23 27.79 30.07 35.07 37.73 43.29 48.85 53.85 62.18 67.74 73.3 76.08 81.08\\\">monthly payments.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 578.3875)\\\" x=\\\"0 7.7783 10.5566 16.1182 21.6797\\\">Other</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 65.7098 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 68.366 578.3875)\\\" x=\\\"0 2.7783 11.1084 16.6699 22.2315 25.5615 28.3398 33.9014 39.4629\\\">Important</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 110.6072 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 113.2635 578.3875)\\\" x=\\\"0 6.1084 11.6699 15 23.3301 28.3301\\\">Terms.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 144.3719 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 147.0281 578.3875)\\\" x=\\\"0 6.6699 12.2314\\\">See</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 164.8211 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 167.4773 578.3875)\\\" x=\\\"0 2.7783 8.3398\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 181.3787 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 184.035 578.3875)\\\" x=\\\"0 5.5615 8.3398 13.9014 19.4629\\\">other</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 206.8279 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 209.4842 578.3875)\\\" x=\\\"0 5.5615 11.123 14.4531 17.2314\\\">parts</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.7156 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 234.3719 578.3875)\\\" x=\\\"0 5.5615\\\">of</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 242.7117 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 245.368 578.3875)\\\" x=\\\"0 2.7783 8.3398 10.6201\\\">this</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 260.9881 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 263.6443 578.3875)\\\" x=\\\"0 6.6699 12.2314 15.5615 21.123 26.6846 35.0147 40.5762 46.1377\\\">Agreement</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.5603 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 315.2166 578.3875)\\\" x=\\\"0 2.7783 8.3398\\\">for</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 326.8865 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 329.5428 578.3875)\\\" x=\\\"0 5.5615 11.1231 16.6846 18.9648 21.7432 24.0234 29.585 35.1465 40.708\\\">additional</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 372.531 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 375.1873 578.3875)\\\" x=\\\"0 2.2803 10.6103 16.1719 21.7334 25.0635 27.8418 33.4033 38.9648\\\">important</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 416.9305 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 419.5867 578.3875)\\\" x=\\\"0 2.2803 7.8418 10.6201 16.1816 19.5117 27.8418 33.4033 36.1816 38.4619 44.0234\\\">information</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 469.1717 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 471.8279 578.3875)\\\" x=\\\"0 5.5615\\\">on</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 482.951 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 485.6072 578.3875)\\\" x=\\\"0 2.7783 8.3398 11.6699 20 22.2803 27.8418 33.4033 36.1816 38.4619 44.0234\\\">termination</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 567.0691)\\\" x=\\\"0 5.5615 8.8916 14.4531 19.4531 25.0146 30.5762 36.1377 39.4678 45.0293 50.0293\\\">procedures,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 93.5076 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 96.1639 567.0691)\\\" x=\\\"0 5.5615 11.1231 14.4531 19.4531 25.0146 30.5762 35.5762\\\">purchase</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 137.3016 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 139.9578 567.0691)\\\" x=\\\"0 5.5615 11.123 13.9014 16.1816 21.7432\\\">option</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 167.2625 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 169.9187 567.0691)\\\" x=\\\"0 3.4301 5.8103 11.4719 17.1334 20.0117 25.1117\\\">rights,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 197.9088 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 200.665 567.0691)\\\" x=\\\"0 3.3801 8.9916 14.0416 19.6531 25.2646 30.8762 35.9262 38.2565 43.868 46.1983 48.5285 50.8588 53.6871 56.0174 61.6289\\\">responsibilities</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 267.3439 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 270.0502 567.0691)\\\" x=\\\"0 3.0283 8.8399\\\">for</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 282.4701 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 285.3764 567.0691)\\\" x=\\\"0 2.4303 8.1418 13.2918 18.4418\\\">loss,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 306.7465 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 309.5527 567.0691)\\\" x=\\\"0 5.6615 11.3231 19.7531 25.4146 31.0762\\\">damage</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 346.2904 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 349.0467 567.0691)\\\" x=\\\"0 5.8615\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 358.5383 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 361.4945 567.0691)\\\" x=\\\"0 5.6115 11.2231 16.2731 19.1014 22.4814 28.093 33.143 35.9713 38.3016 43.9131\\\">destruction</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 411.0191 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 413.7254 567.0691)\\\" x=\\\"0 5.8615\\\">of</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 422.6652 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 425.6215 567.0691)\\\" x=\\\"0 3.0283 8.8398\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 440.2729 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 443.1791 567.0691)\\\" x=\\\"0 6.7699 10.2 15.8615 21.523 27.1846 30.6146 33.493 38.593\\\">Property,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.6504 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 487.4066 567.0691)\\\" x=\\\"0 5.6615 10.7615 13.6398 19.3014 24.9629\\\">actual</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 514.7498 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 517.506 567.0691)\\\" x=\\\"0 5.6615\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.5976 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 529.3539 567.0691)\\\" x=\\\"0 2.3803 10.8103 16.4719 18.8522 21.2324 26.894\\\">implied</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 555.7508)\\\" x=\\\"0 7.2717 12.8832 16.2633 19.6434 25.2549 30.8664 33.6947 36.025 41.6365 46.6865\\\">warranties,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 90.2148 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 92.9211 555.7508)\\\" x=\\\"0 2.8283 8.4398 13.4898 19.1014 24.1514\\\">taxes,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 119.9008 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 122.607 555.7508)\\\" x=\\\"0 5.7115 8.6398 14.3514 20.0629\\\">other</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.15 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.9563 555.7508)\\\" x=\\\"0 5.1 10.7615 16.423 19.8531 25.5146 31.1762\\\">charges</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 185.2324 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 187.9887 555.7508)\\\" x=\\\"0 5.6115 11.223\\\">and</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 204.8232 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 207.5295 555.7508)\\\" x=\\\"0 5.5615 11.1231 16.6846 22.2461 24.5264 27.3047 29.585 35.1465\\\">penalties</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.676 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 250.3322 555.7508)\\\" x=\\\"0 5 10.5615\\\">you</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 266.4553 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 269.1115 555.7508)\\\" x=\\\"0 8.3301 13.8916\\\">may</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 288.0031 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 290.6594 555.7508)\\\" x=\\\"0 2.2803 7.8418 12.8418 18.4033 21.7334\\\">incur,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 315.1711 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 317.8273 555.7508)\\\" x=\\\"0 5.5615 11.123\\\">and</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 334.5119 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 337.1682 555.7508)\\\" x=\\\"0 5.5615 8.3398 13.9014 19.4629\\\">other</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.9611 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 362.6174 555.7508)\\\" x=\\\"0 2.2803 10.6103 16.1719 21.7334 25.0635 27.8418 33.4033 38.9648\\\">important</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 404.3605 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.0168 555.7508)\\\" x=\\\"0 2.2803 7.8418 10.6201 16.1816 19.5117 27.8418 33.4033 36.1816 38.4619 44.0234 49.585\\\">information.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 459.3801 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 462.0363 555.7508)\\\" x=\\\"0 6.6699 12.2314\\\">You</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 479.8293 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 482.4855 555.7508)\\\" x=\\\"0 5.5615 10.5615 15.5615 21.1231 26.6846 33.9063 36.1865 41.7481 47.3096 52.8711\\\">acknowledge</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 540.9182 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 543.5744 555.7508)\\\" x=\\\"0 2.7783 8.3398 13.9014\\\">that</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 544.4324)\\\" x=\\\"0 7.2717\\\">we</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 53.5832 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 56.2895 544.4324)\\\" x=\\\"0 5.5615 8.8916 14.4531 19.4531 21.7334 27.2949 32.8564\\\">provided</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 94.7074 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 97.3637 544.4324)\\\" x=\\\"0 5 10.5615\\\">you</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 113.4867 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 116.143 544.4324)\\\" x=\\\"0 7.2217 9.502 12.2803\\\">with</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 133.9848 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 136.641 544.4324)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 142.4525 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 145.3588 544.4324)\\\" x=\\\"0 5 10.5615 18.8916 24.4531 26.7334 32.2949 35.0733 40.6348\\\">completed</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 191.5551 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 194.2113 544.4324)\\\" x=\\\"0 5 10.5615 16.1231\\\">copy</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 215.3344 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 217.9906 544.4324)\\\" x=\\\"0 5.6115\\\">of</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 226.4305 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 229.1367 544.4324)\\\" x=\\\"0 2.7783 8.3398 10.6201\\\">this</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 244.7568 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 247.4131 544.4324)\\\" x=\\\"0 6.6699 12.2315 15.5615 21.123 26.6846 35.0146 40.5762 46.1377 48.916\\\">Agreement.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.1074 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 301.7637 544.4324)\\\" x=\\\"0 6.6699 12.2314\\\">You</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.5566 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 322.2129 544.4324)\\\" x=\\\"0 5.5615 10.5615 15.5615 21.123 26.6846 33.9062 36.1865 41.748 47.3096 52.8711\\\">acknowledge</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.6455 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 383.3017 544.4324)\\\" x=\\\"0 2.7783 8.3399 13.9014\\\">that</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 399.9814 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 402.6377 544.4324)\\\" x=\\\"0 7.2717\\\">we</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 415.5209 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 418.2271 544.4324)\\\" x=\\\"0 8.3301 13.8916 19.4531\\\">made</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 443.2418 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 445.898 544.4324)\\\" x=\\\"0 2.7783 8.3399\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 459.7994 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 462.8557 544.4324)\\\" x=\\\"0 5.5615 7.8418 12.8418 17.8418 20.1221 25.6836 30.6836 36.2451 39.5752 45.1367\\\">disclosures</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.9924 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 516.0486 544.4324)\\\" x=\\\"0 5.6115\\\">at</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 524.4885 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 527.5447 544.4324)\\\" x=\\\"0 5.6115\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 533.1141)\\\" x=\\\"0 5.5615 11.123 13.9014 19.4629 22.793\\\">before</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 69.0545 533.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 72.1107 533.1141)\\\" x=\\\"0 2.7783 8.3398\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 86.0121 533.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 89.0684 533.1141)\\\" x=\\\"0 5 10.5615 16.123 21.123 26.6846 35.0146 43.3447 48.9062 51.6846 53.9648 59.5264\\\">consummation</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 154.1562 533.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 157.2125 533.1141)\\\" x=\\\"0 5.6115\\\">of</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 165.6523 533.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 168.7086 533.1141)\\\" x=\\\"0 2.7783 8.3398\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 182.61 533.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 185.6662 533.1141)\\\" x=\\\"0 6.6699 12.2314 15.5615 21.123 26.6846 35.0146 40.5762 46.1377 48.916\\\">Agreement.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 519.7957)\\\" x=\\\"0 6.67 8.95 11.23 13.89 19.45 22.23 27.79 33.35 36.68 39.34 42.12 47.68 53.24 58.24 60.9 68.12 73.68 75.96 80.96 86.52 89.18 97.51 103.07 108.07 110.73 116.29 121.85 124.51 129.51 135.07 140.63 143.96 149.52 155.08 160.64 163.42 166.08 168.36 173.92 178.92 181.2 186.76 192.32 197.88 200.54 203.32 208.88 214.44 219.44 222.1 224.88 230.44 233.77\\\">All other fees which may be charged, include fees for:</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 22.7 506.4773)\\\" x=\\\"0 3.33 8.89\\\">(1)</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 506.4773)\\\" x=\\\"0 3.33 8.89 12.22 14.88 22.1 27.66 30.44 36 39.33 44.89 50.45 56.01 58.67 65.34 70.9 75.9 84.23 89.79 95.35 98.13 103.13 105.79 111.35 114.68 117.34 124.56 130.12 135.68 140.68 146.24 149.02 151.8 154.08 159.08 161.36 166.92 172.48 175.26 177.92 184.03 189.59 195.15 200.71 205.71 208.37 214.48 220.04 225.6 228.38 231.04 236.6 239.26 244.82 250.38 253.16 258.72\\\">(1) Returned Payments or Nonsufficient Funds Fee: $ 20.00</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:8.25pt\\\" transform=\\\"matrix(1 0 0 -1 22.7 495.159)\\\" x=\\\"0 3.663 9.779\\\">(2)</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 495.159)\\\" x=\\\"0 3.33 8.89 12.22 14.88 22.1 27.66 29.94 35.5 40.5 43.28 48.84 51.62 57.18 65.51 71.07 76.63 79.41 82.07 88.18 93.74 99.3 104.3 107.08 109.74 116.96 122.52 128.08 133.64 136.3 139.63 145.19 147.97 153.53 159.09 162.42 165.08 167.86 173.42 178.98 184.54 187.2 192.76 195.04 200.04 205.04 210.6 216.16 218.82 224.38 229.94 235.5 238.16 241.49 247.05 252.61 258.17 260.45 262.73 267.73 273.29 276.62 281.62 284.28 289.28 294.84 300.4 303.73 309.29 314.85 319.85 322.51 328.07 330.35 332.63 338.19 345.41 350.97 356.53 359.19 364.75 369.75 372.41 374.69 380.25 387.47\\\">(2) Reinstatement Fees: None (other than pickup and redelivery charges allowed by law)</text></g><clipPath id=\\\"clip1-2\\\"><path d=\\\"M 35 448 L 574 448 L 574 488 L 35 488 L 35 448 z \\\"/></clipPath><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 35.3 487.0594 L 573.1 487.0594 L 573.1 448.1043 L 35.3 448.1043 L 35.3 487.0594 z \\\"/><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 40.7 484.0594 L 567.7 484.0594 L 567.7 450.1043 L 40.7 450.1043 L 40.7 484.0594 z \\\"/><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 40.7 484.0594 L 52.7 484.0594 L 52.7 472.0594 L 40.7 472.0594 L 40.7 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 474.8406)\\\" x=\\\"0 6.67\\\">By</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 52.3699 484.0594 L 55.3699 484.0594 L 55.3699 472.0594 L 52.3699 472.0594 L 52.3699 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 52.3699 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 55.339 484.0594 L 90.339 484.0594 L 90.339 472.0594 L 55.339 472.0594 L 55.339 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 55.339 474.8406)\\\" x=\\\"0 5 7.28 12.84 18.4 20.68 26.24 31.8\\\">signing,</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 89.924 484.0594 L 92.924 484.0594 L 92.924 472.0594 L 89.924 472.0594 L 89.924 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 89.924 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 92.8931 484.0594 L 109.8931 484.0594 L 109.8931 472.0594 L 92.8931 472.0594 L 92.8931 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 92.8931 474.8406)\\\" x=\\\"0 5 10.56\\\">you</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 109.0162 484.0594 L 112.0162 484.0594 L 112.0162 472.0594 L 109.0162 472.0594 L 109.0162 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 109.0162 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 111.9853 484.0594 L 137.9853 484.0594 L 137.9853 472.0594 L 111.9853 472.0594 L 111.9853 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 111.9853 474.8406)\\\" x=\\\"0 5.56 11.12 14.45 20.01\\\">agree</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 137.5614 484.0594 L 140.5614 484.0594 L 140.5614 472.0594 L 137.5614 472.0594 L 137.5614 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 137.5615 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 140.5306 484.0594 L 157.5306 484.0594 L 157.5306 472.0594 L 140.5306 472.0594 L 140.5306 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 140.5306 474.8406)\\\" x=\\\"0 2.78 8.34 13.9\\\">that</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 157.2103 484.0594 L 160.2103 484.0594 L 160.2103 472.0594 L 157.2103 472.0594 L 157.2103 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 157.2103 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 160.1794 484.0594 L 177.1794 484.0594 L 177.1794 472.0594 L 160.1794 472.0594 L 160.1794 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 160.1794 474.8406)\\\" x=\\\"0 5 10.56\\\">you</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 176.3024 484.0594 L 179.3024 484.0594 L 179.3024 472.0594 L 176.3024 472.0594 L 176.3024 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 176.3024 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 179.2715 484.0594 L 217.2715 484.0594 L 217.2715 472.0594 L 179.2715 472.0594 L 179.2715 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 179.2715 474.8406)\\\" x=\\\"0 3.33 8.89 13.89 19.45 21.73 26.73 32.29\\\">received</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 217.128 484.0594 L 220.128 484.0594 L 220.128 472.0594 L 217.128 472.0594 L 217.128 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 217.128 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 220.0971 484.0594 L 226.0971 484.0594 L 226.0971 472.0594 L 220.0971 472.0594 L 220.0971 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 220.0971 474.8406)\\\" x=\\\"0\\\">a</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 225.6586 484.0594 L 228.6586 484.0594 L 228.6586 472.0594 L 225.6586 472.0594 L 225.6586 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.6586 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 228.6277 484.0594 L 258.6277 484.0594 L 258.6277 472.0594 L 228.6277 472.0594 L 228.6277 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 228.6277 474.8406)\\\" x=\\\"0 2.28 7.84 13.4 15.68 21.24 23.52\\\">legible</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 257.7147 484.0594 L 260.7147 484.0594 L 260.7147 472.0594 L 257.7147 472.0594 L 257.7147 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.7147 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 260.6838 484.0594 L 282.6838 484.0594 L 282.6838 472.0594 L 260.6838 472.0594 L 260.6838 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 260.6838 474.8406)\\\" x=\\\"0 5 10.56 16.12\\\">copy</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 281.8068 484.0594 L 284.8068 484.0594 L 284.8068 472.0594 L 281.8068 472.0594 L 281.8068 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.8068 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 284.7759 484.0594 L 293.7759 484.0594 L 293.7759 472.0594 L 284.7759 472.0594 L 284.7759 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 284.7759 474.8406)\\\" x=\\\"0 5.56\\\">of</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 293.1158 484.0594 L 296.1158 484.0594 L 296.1158 472.0594 L 293.1158 472.0594 L 293.1158 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 293.1158 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 296.0849 484.0594 L 312.0849 484.0594 L 312.0849 472.0594 L 296.0849 472.0594 L 296.0849 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 296.0849 474.8406)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 311.705 484.0594 L 314.705 484.0594 L 314.705 472.0594 L 311.705 472.0594 L 311.705 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 311.705 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 314.6742 484.0594 L 366.6742 484.0594 L 366.6742 472.0594 L 314.6742 472.0594 L 314.6742 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 314.6741 474.8406)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement.</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 366.3685 484.0594 L 369.3685 484.0594 L 369.3685 472.0594 L 366.3685 472.0594 L 366.3685 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 366.3685 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 369.3376 484.0594 L 387.3376 484.0594 L 387.3376 472.0594 L 369.3376 472.0594 L 369.3376 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 369.3376 474.8406)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 387.1306 484.0594 L 390.1306 484.0594 L 390.1306 472.0594 L 387.1306 472.0594 L 387.1306 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 387.1306 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 390.0997 484.0594 L 416.0997 484.0594 L 416.0997 472.0594 L 390.0997 472.0594 L 390.0997 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 390.0997 474.8406)\\\" x=\\\"0 5.56 11.12 14.45 20.01\\\">agree</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 415.6759 484.0594 L 418.6759 484.0594 L 418.6759 472.0594 L 415.6759 472.0594 L 415.6759 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 415.6759 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 418.645 484.0594 L 427.645 484.0594 L 427.645 472.0594 L 418.645 472.0594 L 418.645 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 418.645 474.8406)\\\" x=\\\"0 2.78\\\">to</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 426.9848 484.0594 L 429.9848 484.0594 L 429.9848 472.0594 L 426.9848 472.0594 L 426.9848 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 426.9848 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 429.9539 484.0594 L 443.9539 484.0594 L 443.9539 472.0594 L 429.9539 472.0594 L 429.9539 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 429.9539 474.8406)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 443.8553 484.0594 L 446.8553 484.0594 L 446.8553 472.0594 L 443.8553 472.0594 L 443.8553 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 443.8553 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 446.8244 484.0594 L 471.8244 484.0594 L 471.8244 472.0594 L 446.8244 472.0594 L 446.8244 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 446.8244 474.8406)\\\" x=\\\"0 2.78 8.34 11.67 20\\\">terms</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 471.8244 484.0594 L 474.8244 484.0594 L 474.8244 472.0594 L 471.8244 472.0594 L 471.8244 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 471.8244 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 474.7935 484.0594 L 483.7935 484.0594 L 483.7935 472.0594 L 474.7935 472.0594 L 474.7935 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 474.7935 474.8406)\\\" x=\\\"0 5.56\\\">of</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 483.1334 484.0594 L 486.1334 484.0594 L 486.1334 472.0594 L 483.1334 472.0594 L 483.1334 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 483.1334 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 486.1025 484.0594 L 502.1025 484.0594 L 502.1025 472.0594 L 486.1025 472.0594 L 486.1025 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 486.1025 474.8406)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 501.7226 484.0594 L 504.7226 484.0594 L 504.7226 472.0594 L 501.7226 472.0594 L 501.7226 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.7226 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 504.6917 484.0594 L 553.6918 484.0594 L 553.6918 472.0594 L 504.6917 472.0594 L 504.6917 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 504.6917 474.8406)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 553.6078 484.0594 L 556.6078 484.0594 L 556.6078 472.0594 L 553.6078 472.0594 L 553.6078 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.6078 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 556.5769 484.0594 L 568.5769 484.0594 L 568.5769 472.0594 L 556.5769 472.0594 L 556.5769 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 556.5769 474.8406)\\\" x=\\\"0 5.56\\\">on</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 567.7 484.0594 L 570.7 484.0594 L 570.7 472.0594 L 567.7 472.0594 L 567.7 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 40.7 472.741 L 51.7 472.741 L 51.7 460.741 L 40.7 460.741 L 40.7 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 463.5223)\\\" x=\\\"0 5.56 7.84\\\">all</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 50.8221 472.741 L 54.8221 472.741 L 54.8221 460.741 L 50.8221 460.741 L 50.8221 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 50.8221 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 54.1471 472.741 L 60.1471 472.741 L 60.1471 460.741 L 54.1471 460.741 L 54.1471 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 54.1471 463.5223)\\\" x=\\\"0\\\">6</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 59.7087 472.741 L 63.7087 472.741 L 63.7087 460.741 L 59.7087 460.741 L 59.7087 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 59.7087 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 63.0337 472.741 L 94.0337 472.741 L 94.0337 460.741 L 63.0337 460.741 L 63.0337 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 63.0337 463.5223)\\\" x=\\\"0 5.56 11.12 16.68 22.24 27.24\\\">pages,</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 93.0582 472.741 L 97.0582 472.741 L 97.0582 460.741 L 93.0582 460.741 L 93.0582 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 93.0582 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 96.3832 472.741 L 136.3832 472.741 L 136.3832 460.741 L 96.3832 460.741 L 96.3832 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 96.3832 463.5223)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24 28.52 34.08\\\">including</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 136.0317 472.741 L 140.0317 472.741 L 140.0317 460.741 L 136.0317 460.741 L 136.0317 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.0317 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 139.3568 472.741 L 153.3568 472.741 L 153.3568 460.741 L 139.3568 460.741 L 139.3568 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 139.3568 463.5223)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 153.2581 472.741 L 157.2581 472.741 L 157.2581 460.741 L 153.2581 460.741 L 153.2581 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 153.2581 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 156.5832 472.741 L 203.5832 472.741 L 203.5832 460.741 L 156.5832 460.741 L 156.5832 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 156.5832 463.5223)\\\" x=\\\"0 3.55 10.77 16.33 21.33 24.11 29.67 38 43.56\\\">&quot;Customer</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 203.4777 472.741 L 207.4777 472.741 L 207.4777 460.741 L 203.4777 460.741 L 203.4777 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 203.4777 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 206.8028 472.741 L 265.8028 472.741 L 265.8028 460.741 L 206.8028 460.741 L 206.8028 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 206.8028 463.5223)\\\" x=\\\"0 6.67 12.23 15.01 20.57 26.13 29.46 31.74 36.74 42.3 45.08 47.36 52.92\\\">Authorization</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 265.2891 472.741 L 269.2891 472.741 L 269.2891 460.741 L 265.2891 460.741 L 265.2891 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 265.2891 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 268.6142 472.741 L 280.6142 472.741 L 280.6142 460.741 L 268.6142 460.741 L 268.6142 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 268.6142 463.5223)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 280.2841 472.741 L 284.2841 472.741 L 284.2841 460.741 L 280.2841 460.741 L 280.2841 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.2841 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 283.6092 472.741 L 328.6092 472.741 L 328.6092 460.741 L 283.6092 460.741 L 283.6092 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 283.6092 463.5223)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46\\\">Payments</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 328.0721 472.741 L 332.0721 472.741 L 332.0721 460.741 L 328.0721 460.741 L 328.0721 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 328.0721 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 331.3972 472.741 L 344.3972 472.741 L 344.3972 460.741 L 331.3972 460.741 L 331.3972 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 331.3972 463.5223)\\\" x=\\\"0 5 7.28\\\">via</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 344.239 472.741 L 348.239 472.741 L 348.239 460.741 L 344.239 460.741 L 344.239 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 344.239 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 347.564 472.741 L 375.564 472.741 L 375.564 460.741 L 347.564 460.741 L 347.564 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 347.564 463.5223)\\\" x=\\\"0 6.67 13.89 21.11 23.89\\\">ACH,&quot;</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 375.0055 472.741 L 379.0055 472.741 L 379.0055 460.741 L 375.0055 460.741 L 375.0055 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.0054 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 378.3305 472.741 L 392.3305 472.741 L 392.3305 460.741 L 378.3305 460.741 L 378.3305 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 378.3305 463.5223)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 392.2319 472.741 L 396.2319 472.741 L 396.2319 460.741 L 392.2319 460.741 L 392.2319 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 392.2319 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 395.557 472.741 L 445.557 472.741 L 445.557 460.741 L 395.557 460.741 L 395.557 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 395.557 463.5223)\\\" x=\\\"0 3.55 10.22 13.55 19.11 21.39 24.17 27.5 33.06 35.84 38.12 43.68\\\">&quot;Arbitration</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 444.8001 472.741 L 448.8001 472.741 L 448.8001 460.741 L 444.8001 460.741 L 444.8001 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 444.8001 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 448.1252 472.741 L 480.1252 472.741 L 480.1252 460.741 L 448.1252 460.741 L 448.1252 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 448.1252 463.5223)\\\" x=\\\"0 7.22 9.5 15.06 20.62 25.62\\\">Clause</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 479.3117 472.741 L 483.3117 472.741 L 483.3117 460.741 L 479.3117 460.741 L 479.3117 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 479.3117 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 482.6368 472.741 L 499.6368 472.741 L 499.6368 460.741 L 482.6368 460.741 L 482.6368 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 482.6368 463.5223)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 499.3214 472.741 L 503.3214 472.741 L 503.3214 460.741 L 499.3214 460.741 L 499.3214 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.3214 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 502.6465 472.741 L 534.6465 472.741 L 534.6465 460.741 L 502.6465 460.741 L 502.6465 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 502.6465 463.5223)\\\" x=\\\"0 9.44 15 17.28 22.28 27.84\\\">Waiver</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 533.8184 472.741 L 537.8184 472.741 L 537.8184 460.741 L 533.8184 460.741 L 533.8184 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 533.8183 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 537.1434 472.741 L 546.1434 472.741 L 546.1434 460.741 L 537.1434 460.741 L 537.1434 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 537.1434 463.5223)\\\" x=\\\"0 5.56\\\">of</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 545.4833 472.741 L 549.4833 472.741 L 549.4833 460.741 L 545.4833 460.741 L 545.4833 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 545.4833 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 548.8083 472.741 L 567.8083 472.741 L 567.8083 460.741 L 548.8083 460.741 L 548.8083 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 548.8083 463.5223)\\\" x=\\\"0 5 10.56 13.89\\\">Jury</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 567.7 472.741 L 570.7 472.741 L 570.7 460.741 L 567.7 460.741 L 567.7 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 40.7 461.4227 L 187.7 461.4227 L 187.7 449.4227 L 40.7 449.4227 L 40.7 461.4227 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 452.2039)\\\" x=\\\"0 6.11 9.44 11.72 17.28 19.56 22.34 25.89 28.55 34.11 39.67 45.23 47.89 50.67 56.23 61.79 64.45 70.01 72.79 78.35 83.91 87.24 89.9 92.68 98.24 101.57 109.9 114.9 117.56 123.12 128.68 130.96 136.52 143.74\\\">Trial,&quot; and the other terms below.</text></g><clipPath id=\\\"clip1-3\\\"><path d=\\\"M 35 404 L 574 404 L 574 449 L 35 449 L 35 404 z \\\"/></clipPath><g clip-path=\\\"url(#clip1-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 435.7132)\\\" x=\\\"0 7.22 12.78 17.78 20.56 26.12 34.45 40.01 43.34 46 52.67 54.95 60.51 66.07 71.63 74.41 79.97 83.3 88.86\\\">Customer Signature:</text></g><clipPath id=\\\"clip1-4\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip1-4)\\\" fill=\\\"#fff\\\" stroke=\\\"none\\\" d=\\\"M 409.8 425.0359 L 439.8433 425.0359 L 439.8433 417.0244 L 409.8 417.0244 L 409.8 425.0359 z \\\"/><clipPath id=\\\"clip1-5\\\"><path d=\\\"M 409 417 L 440 417 L 440 426 L 409 426 L 409 417 z \\\"/></clipPath><path clip-path=\\\"url(#clip1-5)\\\" fill=\\\"#fff\\\" stroke=\\\"none\\\" d=\\\"M 409.8 425.0359 L 439.55 425.0359 L 439.55 423.9041 L 409.8 423.9041 L 409.8 425.0359 z \\\"/><path clip-path=\\\"url(#clip1-5)\\\" fill=\\\"#fff\\\" stroke=\\\"none\\\" d=\\\"M 409.8 425.0359 L 416.8 425.0359 L 416.8 423.0359 L 409.8 423.0359 L 409.8 425.0359 z \\\"/><g clip-path=\\\"url(#clip1-5)\\\"><text stroke=\\\"none\\\" fill=\\\"#fff\\\" style=\\\"font-family:f1-2; font-size:0.75pt\\\" transform=\\\"matrix(1 0 0 -1 409.8 424.1141)\\\" x=\\\"0 0.722 1.5 2.222 2.944 3.496 4.163 4.996 5.663 5.941\\\">DOCU_EMAIL</text></g><clipPath id=\\\"clip1-6\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip1-6)\\\" fill=\\\"#fff\\\" stroke=\\\"none\\\" d=\\\"M 164.15 417.4676 L 192.2025 417.4676 L 192.2025 406.447 L 164.15 406.447 L 164.15 417.4676 z \\\"/><clipPath id=\\\"clip1-7\\\"><path d=\\\"M 164 407 L 192 407 L 192 418 L 164 418 L 164 407 z \\\"/></clipPath><g clip-path=\\\"url(#clip1-7)\\\"><text stroke=\\\"none\\\" fill=\\\"#fff\\\" style=\\\"font-family:f1-2; font-size:0.75pt\\\" transform=\\\"matrix(1 0 0 -1 164.15 416.5457)\\\" x=\\\"0 0.722 1.5 2.222 2.944 3.496 4.163 4.441 5.219\\\">DOCU_SIGN</text></g><clipPath id=\\\"clip1-8\\\"><path d=\\\"M 35 343 L 389 343 L 389 405 L 35 405 L 35 343 z \\\"/></clipPath><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 392.5858)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 57.9314 392.5858)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 62.5791 392.5858)\\\" x=\\\"0 5.56 11.12 16.68 21.68\\\">Lease</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 89.8252 392.5858)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 94.4728 392.5858)\\\" x=\\\"0 7.22 12.78 21.11 26.67 32.23 37.79 42.79 44.7\\\">Company&apos;s</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 144.1798 392.5858)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.8275 392.5858)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 28.35 30.63 35.63 41.19\\\">authorized</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 195.5853 392.5858)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 200.2329 392.5858)\\\" x=\\\"0 5 7.28 12.84 18.4 23.96 26.74 32.3 35.63\\\">signature</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 241.4292 392.5858)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 246.0768 392.5858)\\\" x=\\\"0 2.28 7.84 13.4 15.68 20.68 26.24 29.02 34.58\\\">indicates</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 285.6618 392.5858)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 290.3094 392.5858)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 304.2108 392.5858)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 308.8584 392.5858)\\\" x=\\\"0 5.56 11.12 16.68 21.68\\\">Lease</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 336.1045 392.5858)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 340.7521 392.5858)\\\" x=\\\"0 7.22 12.78 21.11 26.67 32.23 37.79\\\">Company</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.55 392.5858)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 381.2675)\\\" x=\\\"0 5.56 11.12\\\">has</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 56.823 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 59.5613 381.2675)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.68 29.46 35.02\\\">accepted</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 100.1472 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 102.8854 381.2675)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 116.7868 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 119.525 381.2675)\\\" x=\\\"0 2.78 8.34 11.67 20 25\\\">terms,</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 147.3033 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 150.0416 381.2675)\\\" x=\\\"0 5 10.56 16.12 21.68 23.96 26.74 29.02 34.58 40.14\\\">conditions</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 195.1881 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 197.9263 381.2675)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 214.6109 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 217.3491 381.2675)\\\" x=\\\"0 5.56 11.12 13.4 15.68 21.24 26.8 29.58 31.86 37.42 42.98\\\">obligations</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 265.3374 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 268.0756 381.2675)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.4154 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 279.1537 381.2675)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 293.055 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 295.7933 381.2675)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 344.7093 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 347.4475 381.2675)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 364.1321 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 366.8703 381.2675)\\\" x=\\\"0 2.78 8.34 13.9\\\">that</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.55 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 369.9491)\\\" x=\\\"0 2.78 8.34 13.9 16.56 22.12 27.68 33.24 38.24 43.8 46.46 53.68 59.24 67.57 73.13 78.69 84.25 89.25 91.91 97.47 103.03 106.36 111.92 117.48 122.48 125.14 127.92 133.48 136.14 138.92 144.48 146.76 151.76 154.42 161.09 166.65 169.98 175.54 181.1 189.43 194.99 200.55 203.33\\\">the Lease Company agrees to this Agreement.</text></g><clipPath id=\\\"clip1-10\\\"><path d=\\\"M 388 343 L 574 343 L 574 405 L 388 405 L 388 343 z \\\"/></clipPath><g clip-path=\\\"url(#clip1-10)\\\"><g transform=\\\"matrix(0.75 0 0 -0.7619 416.525 401.8046)\\\"><image xlink:href=\\\"data:image/png;base64,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\\\" width=\\\"172\\\" height=\\\"42\\\" id=\\\"img43-0-9\\\"/></g></g><g clip-path=\\\"url(#clip1-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 394.35 359.0858)\\\" x=\\\"0 6.67 12.23 17.79 23.35 26.01 33.23 39.34 47.12 49.78 55.34 60.9 68.12 70.78 77.45 82.45 85.23 87.89 96.22 101.78 104.56 107.34 110 116.67 120 125.56 132.78 138.34 140.62 146.18\\\">Snap RTO LLC By: Matt Browning</text></g><g clip-path=\\\"url(#clip1-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 394.35 347.7675)\\\" x=\\\"0 6.11 8.39 11.17 13.45 19.01 21.79 24.45 31.67 39.45\\\">Title: COO</text></g><clipPath id=\\\"clip1-11\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 770.2 L 573.6 770.2 L 573.6 769.2 L 34.8 769.2 L 34.8 770.2 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.6 769.2 L 573.6 769.2 L 573.6 487.5594 L 572.6 487.5594 L 572.6 769.2 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 769.2 L 35.8 769.2 L 35.8 487.5594 L 34.8 487.5594 L 34.8 769.2 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 487.5594 L 573.6 487.5594 L 573.6 486.5594 L 34.8 486.5594 L 34.8 487.5594 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.6 486.5594 L 573.6 486.5594 L 573.6 448.6043 L 572.6 448.6043 L 572.6 486.5594 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 486.5594 L 35.8 486.5594 L 35.8 448.6043 L 34.8 448.6043 L 34.8 486.5594 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 448.6043 L 573.6 448.6043 L 573.6 447.6043 L 34.8 447.6043 L 34.8 448.6043 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.6 447.6043 L 573.6 447.6043 L 573.6 405.3046 L 572.6 405.3046 L 572.6 447.6043 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 447.6043 L 35.8 447.6043 L 35.8 405.3046 L 34.8 405.3046 L 34.8 447.6043 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 405.3046 L 389.45 405.3046 L 389.45 404.3046 L 34.8 404.3046 L 34.8 405.3046 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 344.1679 L 389.45 344.1679 L 389.45 343.1679 L 34.8 343.1679 L 34.8 344.1679 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 404.3046 L 35.8 404.3046 L 35.8 344.1679 L 34.8 344.1679 L 34.8 404.3046 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 389.45 405.3046 L 573.6 405.3046 L 573.6 404.3046 L 389.45 404.3046 L 389.45 405.3046 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 389.45 344.1679 L 573.6 344.1679 L 573.6 343.1679 L 389.45 343.1679 L 389.45 344.1679 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.6 404.3046 L 573.6 404.3046 L 573.6 344.1679 L 572.6 344.1679 L 572.6 404.3046 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 388.45 404.3046 L 389.45 404.3046 L 389.45 344.1679 L 388.45 344.1679 L 388.45 404.3046 z \\\"/><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 331.4491)\\\" x=\\\"0 7.22 15 21.11 23.89 31.11\\\">NOTICE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 70.8783 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 73.8798 331.4491)\\\" x=\\\"0 6.11\\\">TO</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 87.7666 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 90.7681 331.4491)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 110.7681 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 113.7696 331.4491)\\\" x=\\\"0 7.22 15 22.22 28.89 36.11 44.44 51.11 58.33\\\">CONSUMER:</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 174.8829 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 177.8844 331.4491)\\\" x=\\\"0 6.67 14.45\\\">YOU</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 199.5543 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 202.5558 331.4491)\\\" x=\\\"0 7.22 13.89 20.56\\\">HAVE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 229.7873 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 232.7888 331.4491)\\\" x=\\\"0 7.22\\\">NO</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.7888 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 250.7903 331.4491)\\\" x=\\\"0 7.78 17.22 24.44 31.11 38.33 45 52.22 55\\\">OWNERSHIP</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.4603 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 315.4618 331.4491)\\\" x=\\\"0 7.22 10 17.78 25 31.11\\\">RIGHTS</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 353.2401 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 356.2416 331.4491)\\\" x=\\\"0 2.78\\\">IN</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 366.2416 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 369.2431 331.4491)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 389.2431 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 392.2447 331.4491)\\\" x=\\\"0 6.67 13.89 21.67 28.34 35.01 42.23 48.34\\\">PROPERTY</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.2544 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 450.256 331.4491)\\\" x=\\\"0 7.22 14.44 20 26.67 33.34\\\">UNLESS</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 490.2706 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 493.2721 331.4491)\\\" x=\\\"0 6.67 13.89\\\">AND</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 514.3854 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 517.3869 331.4491)\\\" x=\\\"0 7.22 14.44 20.55 23.33\\\">UNTIL</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 546.2785 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 549.2801 331.4491)\\\" x=\\\"0 6.67 14.45\\\">YOU</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 320.1308)\\\" x=\\\"0 6.67 12.23 18.9 26.12\\\">ELECT</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 65.3315 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 71.359 320.1308)\\\" x=\\\"0 6.11\\\">TO</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 85.2457 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 91.2732 320.1308)\\\" x=\\\"0 6.67 13.34 20.56 28.34 36.67\\\">BECOME</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 134.613 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 140.6406 320.1308)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.6406 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 166.6681 320.1308)\\\" x=\\\"0 7.78 17.22 24.44 31.11\\\">OWNER</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 204.9982 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 211.0257 320.1308)\\\" x=\\\"0 7.78\\\">OF</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 224.9124 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 230.9399 320.1308)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 250.9399 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 256.9675 320.1308)\\\" x=\\\"0 6.67 13.89 21.67 28.34 35.01 42.23 48.34\\\">PROPERTY</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 311.9772 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 318.0048 320.1308)\\\" x=\\\"0 6.67 12.78 18.89 25.56\\\">AFTER</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 350.7831 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 356.8106 320.1308)\\\" x=\\\"0 8.33 15 21.67 24.45 31.67\\\">MAKING</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 396.2588 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 402.2864 320.1308)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 422.2864 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 428.3139 320.1308)\\\" x=\\\"0 7.22 13.89 21.11 27.78 34.45 41.12 47.79 55.01\\\">NECESSARY</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.9984 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 496.026 320.1308)\\\" x=\\\"0 6.67 13.34 20.01 28.34 35.01 42.23 48.34\\\">PAYMENTS</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.0357 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0633 320.1308)\\\" x=\\\"0 6.11\\\">TO</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 308.8124)\\\" x=\\\"0 6.67 13.89 21.67 28.89 31.67 38.89\\\">ACQUIRE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 78.6615 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 82.9084 308.8124)\\\" x=\\\"0 7.78 17.22 24.44 31.11 38.33 45 52.22 55 61.67\\\">OWNERSHIP,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 147.3567 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 151.6035 308.8124)\\\" x=\\\"0 6.67 13.89\\\">AND</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 172.7168 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 176.9637 308.8124)\\\" x=\\\"0 6.67 14.45\\\">YOU</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 198.6336 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 202.8805 308.8124)\\\" x=\\\"0 7.22 13.89 20.56\\\">HAVE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 230.112 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 234.3589 308.8124)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 254.3589 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 258.6057 308.8124)\\\" x=\\\"0 5.56 12.23 20.01 26.68\\\">LEGAL</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.8469 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 295.0938 308.8124)\\\" x=\\\"0 6.67 13.89 20 27.22 35 42.22 45 51.11\\\">AUTHORITY</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 352.8722 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 357.119 308.8124)\\\" x=\\\"0 6.11\\\">TO</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.0058 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 375.2527 308.8124)\\\" x=\\\"0 6.67 13.89 21.11 27.78 34.45\\\">ACCEPT</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 415.8142 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 420.0611 308.8124)\\\" x=\\\"0 6.11 8.89 15 20.56\\\">TITLE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.2876 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 451.5345 308.8124)\\\" x=\\\"0 6.11\\\">TO</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 465.4212 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 469.6681 308.8124)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.6681 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 493.915 308.8124)\\\" x=\\\"0 6.67 13.89 21.67 28.34 35.01 42.23 48.34 55.01\\\">PROPERTY.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.7031 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 555.95 308.8124)\\\" x=\\\"0 7.22\\\">DO</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 297.494)\\\" x=\\\"0 7.22 15\\\">NOT</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 54.2084 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 57.2636 297.494)\\\" x=\\\"0 6.67 9.45 17.23\\\">SIGN</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 81.7118 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 84.767 297.494)\\\" x=\\\"0 6.11 13.33 16.11\\\">THIS</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 107.5453 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 110.6005 297.494)\\\" x=\\\"0 6.67 14.45 21.67 28.34 35.01 43.34 50.01 57.23\\\">AGREEMENT</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 173.9404 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 176.9956 297.494)\\\" x=\\\"0 6.67 13.34 19.45 27.23 34.45\\\">BEFORE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 218.1137 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 221.1689 297.494)\\\" x=\\\"0 6.67 14.45\\\">YOU</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 242.8389 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 245.8941 297.494)\\\" x=\\\"0 7.22 13.89 20.56\\\">READ</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 273.6773 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 276.7325 297.494)\\\" x=\\\"0 6.67 12.23\\\">ALL</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 294.5254 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 297.5806 297.494)\\\" x=\\\"0 6.67 13.34 21.12 27.79\\\">PAGES</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 332.0386 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 335.0938 297.494)\\\" x=\\\"0 7.78\\\">OF</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.9805 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 352.0357 297.494)\\\" x=\\\"0 2.78\\\">IT</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 360.9225 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 363.9777 297.494)\\\" x=\\\"0 7.78\\\">OR</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 378.9777 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 382.0329 297.494)\\\" x=\\\"0 2.78\\\">IF</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 390.9196 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 393.9748 297.494)\\\" x=\\\"0 2.78\\\">IT</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.8615 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 405.9167 297.494)\\\" x=\\\"0 7.22 15 22.22 28.33 35 37.78 45\\\">CONTAINS</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 457.5866 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 460.6418 297.494)\\\" x=\\\"0 6.67 13.89\\\">ANY</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 481.2033 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 484.2585 297.494)\\\" x=\\\"0 6.67 12.23 18.9 26.12\\\">BLANK</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 517.0515 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 520.1067 297.494)\\\" x=\\\"0 6.67 13.34 20.01 27.23\\\">SPACE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 554.0081 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0633 297.494)\\\" x=\\\"0 6.11\\\">TO</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 286.1757)\\\" x=\\\"0 6.67\\\">BE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 46.4398 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 49.3908 286.1757)\\\" x=\\\"0 6.11 8.89 14.45 20.01 26.68\\\">FILLED</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 83.2922 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 86.2431 286.1757)\\\" x=\\\"0 2.78 10\\\">IN.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 99.0214 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 101.9724 286.1757)\\\" x=\\\"0 6.67 14.45\\\">YOU</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 123.6423 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 126.5933 286.1757)\\\" x=\\\"0 6.67 13.89\\\">ARE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 147.1548 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 150.1057 286.1757)\\\" x=\\\"0 6.67 13.89 20 22.78 28.89 34.45 41.12\\\">ENTITLED</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 198.4456 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 201.3965 286.1757)\\\" x=\\\"0 6.11\\\">TO</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 215.2832 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 218.2342 286.1757)\\\" x=\\\"0\\\">A</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 224.9041 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 227.8551 286.1757)\\\" x=\\\"0 7.22 15 23.33 30 35.56 42.23 48.34 55.01 60.57\\\">COMPLETELY</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 295.0963 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 298.0472 286.1757)\\\" x=\\\"0 6.11 8.89 14.45 20.01 26.68 33.9 37.23 40.01\\\">FILLED-IN</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 345.2787 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 348.2296 286.1757)\\\" x=\\\"0 7.22 15 21.67\\\">COPY</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 376.5695 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 379.5204 286.1757)\\\" x=\\\"0 7.78\\\">OF</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.4071 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 396.3581 286.1757)\\\" x=\\\"0 6.11 13.33 16.11\\\">THIS</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.1364 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 422.0874 286.1757)\\\" x=\\\"0 6.67 14.45 21.67 28.34 35.01 43.34 50.01 57.23\\\">AGREEMENT</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 485.4272 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 488.3781 286.1757)\\\" x=\\\"0 9.44 16.66 23.33\\\">WHEN</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 518.9299 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 521.8809 286.1757)\\\" x=\\\"0 6.67 14.45\\\">YOU</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 543.5508 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 546.5017 286.1757)\\\" x=\\\"0 6.67 9.45 17.23\\\">SIGN</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 274.8573)\\\" x=\\\"0 2.78 8.89\\\">IT.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 261.539)\\\" x=\\\"0 6.11 12.78 20 28.33 31.11 38.33 45 51.11 53.89 61.67 68.89\\\">TERMINATION.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 104.765 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 108.0706 261.539)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 125.8636 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 129.1692 261.539)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 148.0608 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 151.3663 261.539)\\\" x=\\\"0 2.78 8.34 11.67 20 22.28 27.84 33.4 36.18\\\">terminate</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 193.1095 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 196.4151 261.539)\\\" x=\\\"0 3.33 8.89 14.45 20.01\\\">(end)</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 219.7598 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 223.0654 261.539)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.6855 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 241.9911 261.539)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.9071 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 294.2127 261.539)\\\" x=\\\"0 5.56\\\">at</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.5525 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 305.8581 261.539)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.7595 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 323.065 261.539)\\\" x=\\\"0 5.56 11.12\\\">end</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 339.7496 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 343.0552 261.539)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.395 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 354.7006 261.539)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 370.8236 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 374.1292 261.539)\\\" x=\\\"0 2.28 7.84 13.4 18.4\\\">lease</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 398.0941 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 401.3996 261.539)\\\" x=\\\"0 2.78 8.34 11.67\\\">term</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 421.3996 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 424.7052 261.539)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 435.2667 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 438.5723 261.539)\\\" x=\\\"0 5 10.56 13.34 15.62 20.62 23.4 28.4 30.68 36.24\\\">satisfying</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 480.3741 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 483.6796 261.539)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 497.581 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 500.8866 261.539)\\\" x=\\\"0 3.33 8.89 14.45 20.01 22.29 25.62 31.18 39.51 45.07 50.63 53.41\\\">requirements</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.3046 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 562.6101 261.539)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 250.2206)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 48.7201 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 51.7761 250.2206)\\\" x=\\\"0 5.56 11.12 14.45 20.01 25.57 28.9 34.46 40.02 45.58\\\">paragraph.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 100.1453 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 103.2013 250.2206)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 120.9943 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 124.0503 250.2206)\\\" x=\\\"0 8.33 13.89 18.89\\\">must</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 145.7202 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.7762 250.2206)\\\" x=\\\"0 5.56 8.89 14.45 22.78 28.34 31.12 33.4\\\">promptly</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 187.1795 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 190.2355 250.2206)\\\" x=\\\"0 3.33 8.89 11.67 17.23 20.56\\\">return</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 216.3586 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 219.4146 250.2206)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.3159 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 236.3719 250.2206)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 274.1649 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 277.2209 250.2206)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 285.5608 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 288.6168 250.2206)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.1783 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 302.2343 250.2206)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 310.0761 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 313.1321 250.2206)\\\" x=\\\"0 5.56 10.56 15.56 21.12 24.45 30.01 35.57 41.13 46.13\\\">accordance</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 364.8313 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 367.8874 250.2206)\\\" x=\\\"0 7.22 9.5 12.28\\\">with</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 385.7291 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 388.7852 250.2206)\\\" x=\\\"0 5.56 11.12\\\">our</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.2383 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 406.2943 250.2206)\\\" x=\\\"0 5.56 7.84 11.17 16.73 21.73 24.51 26.79 32.35 37.91\\\">directions</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 449.2093 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 452.2653 250.2206)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.9499 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 472.0059 250.2206)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 488.129 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 491.185 250.2206)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57 33.35\\\">amounts</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.5395 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 532.5955 250.2206)\\\" x=\\\"0 5.56 10.56 15.56 18.89 24.45 30.01 35.57\\\">accrued.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 238.9022)\\\" x=\\\"0 9.44\\\">We</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 48.1 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 51.2677 238.9022)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 70.1593 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 73.327 238.9022)\\\" x=\\\"0 2.78 8.34 11.67 20 22.28 27.84 33.4 36.18\\\">terminate</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 115.0702 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 118.2379 238.9022)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 133.858 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 137.0257 238.9022)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 185.9417 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 189.1094 238.9022)\\\" x=\\\"0 5.56\\\">at</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 197.4493 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 200.617 238.9022)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 216.74 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 219.9077 238.9022)\\\" x=\\\"0 2.78 5.06 13.39\\\">time</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.8579 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 242.0256 238.9022)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.0842 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 250.2519 238.9022)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 266.375 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 269.5427 238.9022)\\\" x=\\\"0 5.56 8.89\\\">are</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 283.9958 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 287.1635 238.9022)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 295.0053 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 298.173 238.9022)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 27.3\\\">default</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 328.256 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 331.4237 238.9022)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 339.7636 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 342.9313 238.9022)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 362.3844 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 365.5521 238.9022)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.9066 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.0743 238.9022)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 415.9659 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 419.1336 238.9022)\\\" x=\\\"0 5.56 8.34 13.9 19.46\\\">other</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 441.9266 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 445.0943 238.9022)\\\" x=\\\"0 5.56 11.12 13.4 15.68 21.24 26.8 29.58 31.86 37.42 42.98 47.98\\\">obligations.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 495.8609 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 499.0286 238.9022)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 516.8216 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 519.9893 238.9022)\\\" x=\\\"0 8.33 13.89 18.89\\\">must</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 541.6592 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 544.8269 238.9022)\\\" x=\\\"0 3.33 8.89 11.67 17.23 20.56\\\">return</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 227.5839)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.0014 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 50.6007 227.5839)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 88.3937 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 91.9931 227.5839)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 100.3329 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 103.9323 227.5839)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 117.8336 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 121.433 227.5839)\\\" x=\\\"0 5.56 7.84 13.4 18.4\\\">place</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 145.3978 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.9972 227.5839)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 161.7804 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 165.3797 227.5839)\\\" x=\\\"0 5.56 11.12 16.12 18.4 23.96 29.52 35.08 37.86 43.42\\\">designate.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 211.5858 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 215.1852 227.5839)\\\" x=\\\"0 7.22 12.78 18.34\\\">Upon</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 239.0914 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 242.6908 227.5839)\\\" x=\\\"0 2.78 8.34 11.67 20 22.28 27.84 33.4 36.18 38.46 44.02 49.58\\\">termination,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 295.0541 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 298.6534 227.5839)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 314.7765 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 318.3758 227.5839)\\\" x=\\\"0 5.56 11.12 14.45 20.01\\\">agree</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 343.952 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 347.5513 227.5839)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.8912 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 359.4905 227.5839)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.6136 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 379.2129 227.5839)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.1143 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 396.7137 227.5839)\\\" x=\\\"0 2.78 8.34 10.62 12.9 18.46 25.68 27.96 33.52\\\">following</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 435.8006 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 439.3999 227.5839)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01 30.57 35.57\\\">charges:</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 477.7544 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 481.3538 227.5839)\\\" x=\\\"0 6.67 12.23\\\">Any</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 498.5852 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 502.1846 227.5839)\\\" x=\\\"0 5.56 11.12 16.68 22.24 24.52\\\">unpaid</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 532.2725 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 535.8718 227.5839)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 216.2655)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46 44.46\\\">Payments,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 80.3412 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 83.8455 216.2655)\\\" x=\\\"0 2.78 8.34 13.9\\\">fees</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 102.7469 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 106.2512 216.2655)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 122.9358 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 126.4401 216.2655)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01 30.57 35.57\\\">charges,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 164.7946 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 168.299 216.2655)\\\" x=\\\"0 5.56 7.84 13.4\\\">plus</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 186.7023 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 190.2066 216.2655)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 206.3297 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 209.834 216.2655)\\\" x=\\\"0 5.56 8.34 11.12 13.4 18.4 20.68 26.24\\\">official</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.3545 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 241.8588 216.2655)\\\" x=\\\"0 2.78 8.34 13.9\\\">fees</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 260.7602 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 264.2645 216.2655)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.9491 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 284.4534 216.2655)\\\" x=\\\"0 2.78 8.34 13.34 18.9\\\">taxes</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.3548 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 311.8591 216.2655)\\\" x=\\\"0 2.28 10.61 16.17 21.73 26.73 32.29\\\">imposed</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 349.7156 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 353.2199 216.2655)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 361.0617 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 364.566 216.2655)\\\" x=\\\"0 5 10.56 16.12 21.68 27.24 32.24 35.02 37.3 42.86\\\">connection</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 412.9938 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 416.4981 216.2655)\\\" x=\\\"0 7.22 9.5 12.28\\\">with</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.3399 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 437.8442 216.2655)\\\" x=\\\"0 2.78 8.34 11.67 20 22.28 27.84 33.4 36.18 38.46 44.02 49.58\\\">termination,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 490.2075 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 493.7118 216.2655)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24 28.52 34.08 39.64\\\">including,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 536.1386 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 539.6429 216.2655)\\\" x=\\\"0 5.56 11.12\\\">but</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.5443 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0486 216.2655)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 204.9472)\\\" x=\\\"0 2.28 4.56 12.89 15.17 17.95 23.51\\\">limited</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 62.1723 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 64.9349 204.9472)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 73.2747 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 76.0373 204.9472)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 92.1604 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 94.923 204.9472)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64\\\">applicable</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 140.133 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 142.8956 204.9472)\\\" x=\\\"0 2.78 5.06 10.62 16.18 21.18\\\">fines,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 166.8555 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 169.6182 204.9472)\\\" x=\\\"0 5 10.56 13.89 18.89 24.45 30.01 33.34 38.9 44.46 49.46\\\">surcharges,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 221.8642 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 224.6269 204.9472)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 241.3114 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 244.0741 204.9472)\\\" x=\\\"0 2.78 8.34 13.34 18.9 23.9\\\">taxes.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 270.7537 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 273.5164 204.9472)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.3093 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 294.0719 204.9472)\\\" x=\\\"0 8.33 13.89 18.89\\\">must</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 315.7419 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 318.5045 204.9472)\\\" x=\\\"0 5.56 7.84 12.84\\\">also</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 336.9078 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 339.6704 204.9472)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.7935 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 358.5561 204.9472)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 374.6791 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 377.4417 204.9472)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.12 31.12 33.4 38.4\\\">excessive</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 421.4066 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 424.1692 204.9472)\\\" x=\\\"0 7.22 12.78 18.34\\\">wear</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 445.844 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 448.6066 204.9472)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 465.2912 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 468.0538 204.9472)\\\" x=\\\"0 5.56 10.56\\\">use</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.1769 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 486.9395 204.9472)\\\" x=\\\"0 2.78 8.34 13.9\\\">fees</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 505.8408 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 508.6035 204.9472)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 519.165 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 521.9276 204.9472)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29 32.85\\\">provided</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 560.3456 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 563.1082 204.9472)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 193.6288)\\\" x=\\\"0 2.78 8.34 10.62 15.62 18.28 24.95 30.51 33.84 39.4 44.96 53.29 58.85 64.41 67.19 69.97 72.63 77.63 83.19 88.75 91.03 96.59 101.59 104.37 107.03 109.81 115.37 118.03 120.31 122.59 130.92 133.2 135.98 141.54 144.32 146.6 152.16 157.72 162.72 165.38 170.94 173.72 176.38 181.94 187.5 193.06 195.34 197.62 202.62 208.18 213.74 216.02 221.58 224.24 226.52 232.08 239.3\\\">this Agreement, subject to limitations of applicable law.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 180.3105)\\\" x=\\\"0 8.33 15 17.78 25 31.11 37.78 45 51.67 58.89 66.11 72.78\\\">MAINTENANCE.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 108.6615 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 111.6829 180.3105)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 129.4758 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 132.4972 180.3105)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.5597 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 149.581 180.3105)\\\" x=\\\"0 5 10.56 16.12\\\">keep</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 171.2656 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 174.287 180.3105)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 188.1883 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 191.2097 180.3105)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 229.0026 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 232.024 180.3105)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 239.8658 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 242.8871 180.3105)\\\" x=\\\"0 5.56 11.12 16.68\\\">good</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 265.1332 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 268.1546 180.3105)\\\" x=\\\"0 7.22 12.78 16.11 21.11 23.39 28.95\\\">working</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.6712 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 305.6925 180.3105)\\\" x=\\\"0 5.56 8.89 14.45 20.01\\\">order</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.0373 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 332.0586 180.3105)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.7432 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 351.7645 180.3105)\\\" x=\\\"0 3.33 8.89 14.45 20.01 22.29 25.62\\\">repair.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.1679 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 383.1892 180.3105)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 400.9822 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 404.0035 180.3105)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 418.066 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 421.0874 180.3105)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 437.2104 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 440.2318 180.3105)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.3548 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 459.3762 180.3105)\\\" x=\\\"0 5.56 11.12 16.68 20.01 25.57 28.35 30.63 36.19\\\">operating</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.134 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 504.1553 180.3105)\\\" x=\\\"0 5 10.56 15.56 18.34 23.34\\\">costs.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 530.2735 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 533.2948 180.3105)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.0878 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 554.1092 180.3105)\\\" x=\\\"0 7.22 9.5 11.78 14.06\\\">will,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 168.9921)\\\" x=\\\"0 5.56\\\">at</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 41.4398 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 44.1473 168.9921)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 63.6004 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 66.3078 168.9921)\\\" x=\\\"0 5.56 10.56 16.12 21.68 27.24 32.24 37.8\\\">expense,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 106.8938 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 109.6012 168.9921)\\\" x=\\\"0 5 10.56 13.89 18.89 21.17 26.17\\\">service</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 141.3346 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 144.042 168.9921)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 157.9434 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 160.6508 168.9921)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 198.4438 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 201.1512 168.9921)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 208.993 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 211.7005 168.9921)\\\" x=\\\"0 5.56 10.56 15.56 21.12 24.45 30.01 35.57 41.13 46.13\\\">accordance</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 263.3997 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 266.1071 168.9921)\\\" x=\\\"0 7.22 9.5 12.28\\\">with</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 283.9489 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 286.6563 168.9921)\\\" x=\\\"0 8.33 13.89 19.45 25.01 27.79 33.35 38.35 41.13 46.69 50.02 55.58\\\">manufacturer</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 345.5723 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 348.2798 168.9921)\\\" x=\\\"0 5 7.78 13.34 18.9 24.46 30.02 33.35 38.91 43.91\\\">standards.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 394.9741 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 397.6815 168.9921)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.2382 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 405.9456 168.9921)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.847 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 422.5544 168.9921)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 460.3474 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 463.0548 168.9921)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 470.3351 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 473.0425 168.9921)\\\" x=\\\"0 3.33 8.89 13.89 19.45 21.73 24.01 29.57 35.13\\\">recalled,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 510.9576 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 513.665 168.9921)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.788 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 532.4955 168.9921)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 546.558 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 549.2654 168.9921)\\\" x=\\\"0 5.56 11.12 16.12\\\">have</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 157.6738)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.0014 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 51.506 157.6738)\\\" x=\\\"0 3.33 8.89 13.89 19.45 21.73\\\">recall</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 75.5196 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 80.0242 157.6738)\\\" x=\\\"0 3.33 8.89 14.45 20.01 22.29 25.62\\\">repairs</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 110.6492 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 115.1538 157.6738)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 124.0454 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 128.5499 157.6738)\\\" x=\\\"0 5 10.56 13.89 18.89 21.17 26.17\\\">service</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.2833 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 164.7879 157.6738)\\\" x=\\\"0 5.56 11.12 14.45 17.23 22.79 26.12 34.45 40.01 45.57\\\">performed.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 213.1424 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 217.647 157.6738)\\\" x=\\\"0 2.78\\\">In</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.9868 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 230.4914 157.6738)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 244.3928 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 248.8974 157.6738)\\\" x=\\\"0 5.56 10.56 16.12 21.68\\\">event</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 273.3603 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 277.8648 157.6738)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.7662 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 296.2708 157.6738)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 334.0637 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.5683 157.6738)\\\" x=\\\"0 5.56 11.12\\\">has</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 354.6914 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 359.1959 157.6738)\\\" x=\\\"0 8.33 13.89 18.89 24.45 30.01 35.57 37.85 42.85 48.41\\\">mechanical</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 409.8942 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 414.3988 157.6738)\\\" x=\\\"0 5.56 8.89 14.45 20.01 22.29 27.85 36.18 41.18\\\">problems,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 458.3636 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 462.8682 157.6738)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 478.9912 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 483.4958 157.6738)\\\" x=\\\"0 5.56 11.12 14.45 20.01\\\">agree</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.072 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 513.5766 157.6738)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.9164 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 526.421 157.6738)\\\" x=\\\"0 3.33 8.89 11.67 17.23 20.56\\\">return</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.544 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0486 157.6738)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 146.3554)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79 40.45 43.23 48.79 51.45 57.01 62.01 64.67 67.45 73.01 76.34 79 84.56 89.56 95.12 97.4 102.96 108.52 111.3 113.58 119.14 124.7 127.48 130.14 135.7 141.26 146.82 149.6 152.26 154.54 157.32 159.98 165.54 171.1 176.1 181.66 186.66 191.66 197.22 200.55 205.55 208.33 210.99 214.32 219.88 225.44 231 233.28 236.61\\\">Property to us for evaluation, and, if necessary, repair.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 133.037)\\\" x=\\\"0 6.67 12.78 19.45 26.67 33.89 40.56 47.78 55\\\">STANDARDS</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 94.7748 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 97.7681 133.037)\\\" x=\\\"0 6.11 13.89\\\">FOR</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 118.8765 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 121.8699 133.037)\\\" x=\\\"0 9.44 16.11 22.78\\\">WEAR</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 151.8699 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 154.8632 133.037)\\\" x=\\\"0 6.67 13.89\\\">AND</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 175.9765 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 178.9698 133.037)\\\" x=\\\"0 7.22 13.89 20.56\\\">USE.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 202.3096 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 205.303 133.037)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 223.0959 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 226.0893 133.037)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 244.9809 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 247.9742 133.037)\\\" x=\\\"0 5.56\\\">be</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.0972 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 262.0906 133.037)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01 30.57\\\">charged</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 298.2283 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 301.2216 133.037)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.8915 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 315.8849 133.037)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.12\\\">excess</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 347.0079 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 350.0012 133.037)\\\" x=\\\"0 7.22 12.78 18.34\\\">wear</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.676 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 374.6694 133.037)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 391.3539 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 394.3473 133.037)\\\" x=\\\"0 5.56 10.56\\\">use</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 410.4703 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 413.4636 133.037)\\\" x=\\\"0 7.22 12.78 18.34\\\">when</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 437.3699 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 440.3632 133.037)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.4863 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 459.4796 133.037)\\\" x=\\\"0 3.33 8.89 11.67 17.23 20.56\\\">return</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 485.6026 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 488.596 133.037)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 502.4973 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 505.4907 133.037)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 543.2836 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 546.277 133.037)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 554.6168 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.6101 133.037)\\\" x=\\\"0 5.56 10.56\\\">us.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 121.7187)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 50.3314 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 54.7254 121.7187)\\\" x=\\\"0 2.78 8.34 10.62 12.9 18.46 25.68 27.96 33.52\\\">following</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 93.8123 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 98.2062 121.7187)\\\" x=\\\"0 5 7.78 13.34 18.9 24.46 30.02 33.35 38.91\\\">standards</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 142.1222 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 146.5161 121.7187)\\\" x=\\\"0 5.56 11.12 16.68 18.96\\\">apply</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 170.4809 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 174.8748 121.7187)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 186.5447 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 190.9386 121.7187)\\\" x=\\\"0 5.56 11.12 13.9 19.46 22.79 31.12 33.4 38.96 41.24 46.8\\\">determining</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 243.3068 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 247.7007 121.7187)\\\" x=\\\"0 5.56 11.12 14.45 20.01 25.57 30.57 36.13 41.69 47.25 52.81 55.09\\\">unreasonable</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.3648 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 312.7587 121.7187)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 321.6503 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 326.0442 121.7187)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.12\\\">excess</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 357.1672 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 361.5611 121.7187)\\\" x=\\\"0 7.22 12.78 18.34\\\">wear</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.2359 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 387.6298 121.7187)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 404.3144 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 408.7083 121.7187)\\\" x=\\\"0 5.56 10.56 16.12\\\">use:</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 427.6097 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 432.0036 121.7187)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 449.7965 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 454.1904 121.7187)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.2529 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 472.6468 121.7187)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.5482 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 490.9421 121.7187)\\\" x=\\\"0 5.56 11.12 13.4 18.96\\\">paint</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.6853 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 517.0792 121.7187)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 525.9708 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 530.3647 121.7187)\\\" x=\\\"0 2.28 7.84 10.62 13.4 18.96\\\">letter</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.6547 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0486 121.7187)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 110.4003)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 70.893 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 75.8495 110.4003)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 84.7411 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 89.6976 110.4003)\\\" x=\\\"0 8.33 13.89 19.45 21.73 24.51\\\">modify</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 119.2094 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 124.1659 110.4003)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 140.2889 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 145.2455 110.4003)\\\" x=\\\"0 2.28 7.84 13.4 18.96 21.74 24.02 26.8 29.08 34.08 39.64 42.42 44.7 50.26\\\">identification</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 201.0707 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 206.0272 110.4003)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57\\\">number</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 239.9335 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 244.89 110.4003)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 253.2298 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 258.1864 110.4003)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 272.0877 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 277.0443 110.4003)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 317.6156 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 322.5721 110.4003)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 340.3651 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 345.3216 110.4003)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.3841 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 364.3407 110.4003)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 378.242 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 383.1985 110.4003)\\\" x=\\\"0 5.56 11.12 16.68\\\">add,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.6614 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.618 110.4003)\\\" x=\\\"0 3.33 8.89 17.22 22.78 27.78\\\">remove</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 440.9627 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 445.9192 110.4003)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.8108 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 459.7674 110.4003)\\\" x=\\\"0 8.33 13.89 19.45 21.73 24.51\\\">modify</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.2791 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 494.2356 110.4003)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 510.3587 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 515.3152 110.4003)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.12 31.12 36.68 40.01 42.29 47.85 52.85\\\">accessories,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 99.082)\\\" x=\\\"0 5.56 11.12 16.68 18.96 24.52 32.85 38.41 43.97\\\">equipment</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 79.8578 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 83.9642 99.082)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 92.8558 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 96.9621 99.082)\\\" x=\\\"0 5.56 11.12 14.45 17.23\\\">parts</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 119.1936 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 123.2999 99.082)\\\" x=\\\"0 7.22 9.5 12.28 17.84 23.4 28.96\\\">without</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 155.0431 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 159.1494 99.082)\\\" x=\\\"0 5.56 11.12\\\">our</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 173.6025 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 177.7089 99.082)\\\" x=\\\"0 5.56 8.89 11.17 16.73\\\">prior</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 197.7724 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 201.8787 99.082)\\\" x=\\\"0 7.22 10.55 12.83 15.61 18.39 23.95\\\">written</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.3904 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 235.4968 99.082)\\\" x=\\\"0 5.56 11.12 14.45 22.78 25.06 30.06 35.06 37.34 42.9 48.46\\\">permission.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 286.7419 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 290.8482 99.082)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.0797 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 312.186 99.082)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 349.979 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 354.0853 99.082)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 368.1478 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 372.2542 99.082)\\\" x=\\\"0 5.56 11.12 13.9\\\">not:</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.9339 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 393.0402 99.082)\\\" x=\\\"0 7.22 12.78 17.78\\\">Have</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 416.3849 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 420.4913 99.082)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57 36.13\\\">damage,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 459.4073 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 463.5136 99.082)\\\" x=\\\"0 8.33 13.89 18.89 24.45 30.01 35.57 37.85 42.85 48.41\\\">mechanical</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 514.2119 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 518.3182 99.082)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 527.2098 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 531.3162 99.082)\\\" x=\\\"0 5.56 7.84 13.4 18.4 21.18 24.51 26.79 31.79 37.35\\\">electrical</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 87.7636)\\\" x=\\\"0 8.33 13.89 16.17 18.95 24.51 30.07 35.07 37.85 40.13 45.69\\\">malfunction</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 84.3549 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 87.8075 87.7636)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 98.369 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 101.8216 87.7636)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64 45.2\\\">applicable;</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 149.8099 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 153.2625 87.7636)\\\" x=\\\"0 5.56\\\">be</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 164.3855 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 167.8382 87.7636)\\\" x=\\\"0 2.78 8.34 11.67 17.23\\\">torn,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 187.8479 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 191.3005 87.7636)\\\" x=\\\"0 5.56 11.12 14.45 20.01 25.57 31.13\\\">burned,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.2165 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 228.6691 87.7636)\\\" x=\\\"0 5 7.78 13.34 15.62 21.18 26.74\\\">stained</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 260.9738 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 264.4264 87.7636)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 273.318 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 276.7706 87.7636)\\\" x=\\\"0 5 10.56 13.89 19.45 25.01 30.57 36.13 41.69\\\">shredded;</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 321.2482 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 324.7008 87.7636)\\\" x=\\\"0 5.56 11.12 16.12\\\">have</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 346.3853 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 349.8379 87.7636)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 365.961 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 369.4136 87.7636)\\\" x=\\\"0 5.56 11.12 16.68 19.46 24.46\\\">dents,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 396.6548 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 400.1074 87.7636)\\\" x=\\\"0 8.33 13.89 16.17 21.73\\\">mold,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 424.6191 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 428.0717 87.7636)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 436.9633 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 440.4159 87.7636)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57\\\">damage</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 476.5536 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 480.0062 87.7636)\\\" x=\\\"0 2.78 6.11 11.67\\\">from</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 500.0062 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 503.4588 87.7636)\\\" x=\\\"0 7.22 12.78 15.56 21.12 24.45\\\">water,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 530.6903 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 534.1429 87.7636)\\\" x=\\\"0 5 10.56 16.12 21.68\\\">sand,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 558.6058 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 562.0584 87.7636)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 76.4452)\\\" x=\\\"0 2.78 6.11 11.67 17.23 22.23 24.51 30.07 35.63 38.41 41.07 46.63 49.96 52.62 58.18 63.74 68.74 74.3 76.96 79.24 84.8 90.36 95.92 101.48 104.81 110.37 115.93 118.21 123.77 126.43 131.99 137.55 140.88 143.66 148.66 151.44 154.1 160.77 166.33 171.89 174.55 182.88 188.44 193.44 196.22 198.88 202.21 207.77 210.55 216.11 219.44 225 227.66 230.44 236 241.56 244.22 250.89 254.22 259.78 265.34 270.9 274.23 277.01 282.01 284.67 291.89 294.17 296.95 302.51 305.17 310.73 313.01 315.29 317.95 323.51 326.29 328.95 331.23 334.01 339.01 341.67 347.23 350.56 352.84 358.4 360.68 366.24 371.8 374.08 376.74 382.3 387.86 391.19 393.97 398.97\\\">freezing; or have inoperable parts. You must return the Property with all of its original parts.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 36.5264)\\\" x=\\\"0 6.498 11.997 14.391 16.785 21.789 26.793 29.295 34.299 39.303 44.307 504 506.3906 508.7812 511.1719 513.5625 515.9531 518.3438 520.7344 523.125 525.5156\\\">UT  07/2019          </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 26.3398)\\\" x=\\\"0 6.003 11.007 16.011 21.015\\\">Page </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 55.8097 26.3398)\\\" x=\\\"0\\\">2</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.815 26.3398)\\\" x=\\\"0 2.394 7.398 9.9\\\"> of </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 73.1021 26.3398)\\\" x=\\\"0\\\">7</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#d9d9d9\\\" style=\\\"font-family:f1-0; font-size:54pt; white-space:pre\\\" transform=\\\"matrix(0.707 0.707 0.707 -0.707 135.6027 198.5094)\\\" x=\\\"0 56.016 96.048 136.08 176.112 216.144 236.16 284.184 324.216 344.232 364.248 416.232 456.264 480.24\\\">Qoppa Software</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#002ba6\\\" style=\\\"font-family:f1-0; font-size:9pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.932 772)\\\" x=\\\"0 9.336 16.008 22.68 29.352 36.024 39.36 47.364 54.036 57.372 60.708 69.372 76.044 80.04 86.712 90.048 94.044 97.38 104.712 111.384 115.38 118.716 126.72 132.72 139.392 142.056 148.728 155.4 158.736 161.4 168.072 174.744 178.08 187.416 194.088 196.752 202.752 206.088 210.084 213.42 220.092 223.428 226.764 233.436 239.436 242.772 246.108 249.444 258.108 266.772 275.436 278.772 285.444 292.116 298.788 305.46 312.132 315.468 321.468 328.14\\\">Qoppa Software - For Evaluation Only - https://www.qoppa.com</text></g></g></svg></svg></g></svg><br>\\n<?xml version='1.0' encoding='UTF-8'?><svg id=\\\"qoppa_document\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" version=\\\"1.1\\\" xmlns=\\\"http://www.w3.org/2000/svg\\\" xmlns:xlink=\\\"http://www.w3.org/1999/xlink\\\"><!-- jPDFWeb v2019R1.03 - Demo Version --><style>title p { display: block; }</style><g id=\\\"qoppa_viewxform\\\" transform=\\\"matrix(1 0 0 1 0 0)\\\"><style type=\\\"text/css\\\">@font-face {font-family:f2-0;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f2-1;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f2-2;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}</style><svg id=\\\"qoppa_page_p2\\\" class=\\\"qoppa_page\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\"><rect class=\\\"qoppa_pageborder\\\" x=\\\"0.5pt\\\" y=\\\"0.5pt\\\" width=\\\"611pt\\\" height=\\\"791pt\\\" fill=\\\"none\\\" /><svg class=\\\"qoppa_pagecontents\\\" x=\\\"0pt\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" viewBox=\\\"0 0 612 792\\\" ><g class=\\\"qoppa_contentstream\\\" transform=\\\"matrix(1 0 0 -1 0 792)\\\" fill=\\\"black\\\" stroke=\\\"black\\\" stroke-width=\\\"1\\\" stroke-linecap=\\\"butt\\\" stroke-linejoin=\\\"miter\\\" stroke-miterlimit=\\\"10\\\"><clipPath id=\\\"clip2-1\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 758.4812)\\\" x=\\\"0 9.44 16.11 23.33 30.55 37.22 44.44 50.55 53.33 60 66.67\\\">WARRANTIES.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 102.5482 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 106.2624 758.4812)\\\" x=\\\"0 9.44\\\">We</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 121.2624 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 124.9766 758.4812)\\\" x=\\\"0 8.33 13.89 18.89\\\">make</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 149.4298 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 153.1439 758.4812)\\\" x=\\\"0 5.56\\\">no</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 164.267 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 167.9812 758.4812)\\\" x=\\\"0 5.56 10.56 16.12 19.45 25.01 30.01\\\">express</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 202.9958 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 206.71 758.4812)\\\" x=\\\"0 7.22 12.78 16.11 19.44 25 30.56 33.34\\\">warranty</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.0548 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 248.769 758.4812)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.892 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 263.6062 758.4812)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 277.5076 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 281.2218 758.4812)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 321.7931 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 325.5072 758.4812)\\\" x=\\\"0 5.56 11.12 16.68\\\">and,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 344.9701 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 348.6843 758.4812)\\\" x=\\\"0 5.56 11.12 13.4 18.96 23.96\\\">unless</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 377.6492 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 381.3634 758.4812)\\\" x=\\\"0 5.56 8.89 14.45 20.01 22.29 27.85 30.13 32.91 38.47\\\">prohibited</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 425.4015 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 429.1157 758.4812)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 439.6772 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 443.3914 758.4812)\\\" x=\\\"0 2.28 7.84 15.06\\\">law,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 461.2332 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 464.9474 758.4812)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 478.8487 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 482.5629 758.4812)\\\" x=\\\"0 2.78 8.34 10.62 12.9 18.46 25.68 27.96 33.52\\\">following</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.6498 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 525.364 758.4812)\\\" x=\\\"0 5 10.56 16.12 18.9 24.46 30.02 35.02 40.58\\\">sentences</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 747.1629)\\\" x=\\\"0 5.56 11.12 16.68 18.96 23.96\\\">apply.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 59.8432 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 63.102 747.1629)\\\" x=\\\"0 6.67 14.45\\\">YOU</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 84.772 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 88.0308 747.1629)\\\" x=\\\"0 6.67 13.89\\\">ARE</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 108.5924 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 111.8512 747.1629)\\\" x=\\\"0 5.56 12.23 18.9 25.57 28.35 35.57\\\">LEASING</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 155.2008 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 158.4597 747.1629)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 178.4597 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 181.7186 747.1629)\\\" x=\\\"0 6.67 13.89 21.67 28.34 35.01 42.23 48.34\\\">PROPERTY</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 236.7284 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 239.9872 747.1629)\\\" x=\\\"0 3.33 10\\\">“AS</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.6572 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 259.916 747.1629)\\\" x=\\\"0 2.78 9.45 12.78\\\">IS”.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.4727 747.1629)\\\" x=\\\"0 3.2589\\\">  </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 281.9904 747.1629)\\\" x=\\\"0 9.44\\\">WE</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 298.0988 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 301.3577 747.1629)\\\" x=\\\"0 8.33 15 21.67\\\">MAKE</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.6975 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 332.9564 747.1629)\\\" x=\\\"0 7.22\\\">NO</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 347.9564 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 351.2153 747.1629)\\\" x=\\\"0 6.67 13.34 20.01 27.23 33.9 40.57\\\">EXPRESS</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 398.4565 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 401.7153 747.1629)\\\" x=\\\"0 9.44 16.11 23.33 30.55 37.22 44.44 50.55 53.33 60\\\">WARRANTIES</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.3853 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 471.6442 747.1629)\\\" x=\\\"0 7.78\\\">ON</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.6442 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 489.903 747.1629)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.903 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 513.1619 747.1629)\\\" x=\\\"0 6.67 13.89 21.67 28.34 35.01 42.23 48.34 55.01\\\">PROPERTY.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 735.8445)\\\" x=\\\"0 9.44\\\">WE</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 49.2084 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 59.5638 735.8445)\\\" x=\\\"0 7.22 10 16.67 23.89 29.45 36.12 38.9\\\">DISCLAIM</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 106.7953 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 117.1507 735.8445)\\\" x=\\\"0 6.67 13.89\\\">ANY</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 137.7122 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.0676 735.8445)\\\" x=\\\"0 9.44 16.11 23.33 30.55 37.22 44.44 50.55 53.33 60\\\">WARRANTIES</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 214.7375 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 225.0929 735.8445)\\\" x=\\\"0 2.78 11.11 17.78 23.34 26.12 32.79\\\">IMPLIED</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 265.1027 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 275.4581 735.8445)\\\" x=\\\"0 6.67\\\">BY</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 288.798 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 299.1534 735.8445)\\\" x=\\\"0 5.56 12.23 21.67\\\">LAW,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 323.6016 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 333.957 735.8445)\\\" x=\\\"0 2.78 10 17.22 22.78 30 37.22 40 47.22\\\">INCLUDING</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.9619 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 399.3173 735.8445)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.3173 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 429.6728 735.8445)\\\" x=\\\"0 2.78 11.11 17.78 23.34 26.12 32.79\\\">IMPLIED</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 469.6825 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 480.0379 735.8445)\\\" x=\\\"0 9.44 16.11 23.33 30.55 37.22 44.44 50.55 53.33 60\\\">WARRANTIES</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 546.7079 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0633 735.8445)\\\" x=\\\"0 7.78\\\">OF</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 724.5262)\\\" x=\\\"0 8.33 15 22.22 29.44 36.66 43.33 50.55 56.66 63.33 70 72.78 78.34 81.12 87.23 93.9 96.56 103.23 110.45 117.67 120.33 126.44 129.22 135.33 142.55 149.22 155.89 162.56 165.22 171.33 179.11 186.33 188.99 195.66 202.88 209.55 212.21 218.88 225.55 232.77 238.88 241.66 248.88 256.1 261.66 268.33 275.55 278.21 284.88 292.1 299.32 305.99 313.77 320.44 327.11\\\">MERCHANTABILITY AND FITNESS FOR ANY PARTICULAR PURPOSE.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 711.2078)\\\" x=\\\"0 7.22 13.89 20 26.67 33.89 39.45 45.56 48.34 51 58.22 64.89 71.56 79.34 86.01 92.68 99.35 106.02 112.69 115.47 123.25 130.47 133.25 135.91 142.58 149.8 157.02 159.68 167.46 173.57 180.79 187.46 194.68 197.34 204.56 211.23 219.56 226.23 233.45 236.23 242.9 249.57 252.35 255.01 261.68 267.24 272.8 275.46 282.68 284.96 287.24 289.52 292.18 297.74 303.3 305.96 308.24 313.8 316.46 322.02 327.58 330.36 335.92 341.48 343.76 346.54 349.2 354.76 357.54 360.2 362.98 368.54 370.82 375.82 378.48 385.15 390.71 394.04 399.6 405.16 413.49 419.05 424.61 427.39 430.05 432.33 435.11\\\">DEFAULT, REPOSSESSION, AND OTHER REMEDIES. You will be in default of this Agreement if:</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 697.8895)\\\" x=\\\"0 3.33 5.99 12.66 18.22 23.78 26.44 32 37.56 40.22 45.78 51.34 54.12 56.78 62.34 67.9 72.9 75.56 81.12 86.68 91.68 94.34 99.9 105.46 110.46 118.79 124.35 129.91 132.69 135.35 140.91 144.24 146.9 152.46 155.24 160.8 166.36 169.69 172.35 177.91 186.24 191.8 197.36 202.92 205.7 208.36 213.92 219.48 225.04 230.6 233.93 236.59 239.37 244.93 250.49 253.15 259.82 265.38 268.71 274.27 279.83 288.16 293.72 299.28 302.06 304.72 310.28 315.28 317.94 323.5 326.83 332.39 337.39 339.67 345.23 350.79 356.35 359.01 364.57 367.9 370.56 377.78 383.34 388.9 394.46 397.12 404.34 409.9 412.56 420.89 426.45 431.45 437.01 439.67 445.23 450.79 459.12 464.68 470.24 475.8\\\">- You do not pay any payment or other amount under the Agreement as provided or when we make demand.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 684.5711)\\\" x=\\\"0 3.33 5.99 12.66 18.22 23.78 26.44 32 34.28 39.28 44.84 47.5 53.06 58.06 60.72 66.28 71.84 76.84 79.5 82.28 87.84 90.12 95.12 100.68 103.34 108.9 112.23 114.89 123.22 125.5 130.5 132.78 138.34 143.9 149.46 151.74 157.3 162.86 165.52 167.8 173.36 176.14 181.7 185.03 193.36 198.92 201.7 203.98 209.54 215.1\\\">- You give us any false or misleading information.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 671.2527)\\\" x=\\\"0\\\">-</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 36.4301 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.1823 671.2527)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 57.9753 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 61.7275 671.2527)\\\" x=\\\"0 2.28 7.84 12.84\\\">lose</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 80.1308 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 83.883 671.2527)\\\" x=\\\"0 5.56 11.12 16.12 21.12 26.68 31.68 36.68 38.96 44.52\\\">possession</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 133.9709 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 137.7231 671.2527)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.0629 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 149.8151 671.2527)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 163.7165 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 167.4687 671.2527)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 205.2617 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 209.0139 671.2527)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 219.5754 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 223.3276 671.2527)\\\" x=\\\"0 5 10.56 16.12 18.9 21.18 26.18 31.18 36.74 39.52 41.8 47.36 52.92\\\">confiscation,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 279.0307 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 282.7829 671.2527)\\\" x=\\\"0 2.78 8.34 11.67 14.45 20.01 22.29 25.07 30.63 33.96\\\">forfeiture</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 322.3044 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 326.0566 671.2527)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 334.9482 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.7004 671.2527)\\\" x=\\\"0 5.56 8.34 13.9 19.46\\\">other</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 361.4934 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 365.2456 671.2527)\\\" x=\\\"0 2.28 7.84 12.84 18.4 20.68 26.24 31.8 34.58 40.14 43.47\\\">involuntary</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 413.7222 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 417.4744 671.2527)\\\" x=\\\"0 2.78 6.11 11.67 17.23 22.23 25.01 30.57\\\">transfer</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 451.3757 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 455.1279 671.2527)\\\" x=\\\"0 3.33 8.89 14.45 20.01 23.34 28.9 31.18 36.74 41.74\\\">regardless</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.876 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 505.6282 671.2527)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 513.968 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 517.7202 671.2527)\\\" x=\\\"0 7.22 12.78 18.34 21.12 26.68 32.24\\\">whether</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.2964 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0486 671.2527)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 659.9344)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79 40.45 42.73 47.73 50.39 53.17 58.73 64.29 66.95 71.95 77.51 83.07 85.35 90.91 95.91 98.69 101.35 106.91 109.69 112.35 114.63 120.19 125.75 128.03 133.03 135.31 140.87 143.15 145.81 151.37 154.7 157.36 162.92 168.48 176.81 179.09 184.65 186.93 191.93 194.71 198.04 203.6 206.38 208.66 213.66 219.22 221.88 227.44 230.77 236.33 241.33 246.89 252.45 258.01 260.29 265.85 271.41 276.41\\\">Property is the subject of judicial or administrative proceedings.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 646.616)\\\" x=\\\"0 3.33 5.99 12.66 18.22 23.78 26.44 32 34.28 39.84 42.5 48.06 53.62 59.18 61.84 64.62 70.18 75.74 79.07 84.63 87.29 89.57 94.57 97.23 102.79 108.35 111.01 116.01 121.57 124.9 129.9 132.18 137.18 139.46 145.02 150.58 153.24 158.24 163.8 168.8 171.58 177.14 185.47 191.03 194.36\\\">- You die and there is no surviving customer.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 633.2977)\\\" x=\\\"0 3.33 5.99 12.1 17.66 23.22 25.88 32.55 35.88 41.44 47 52.56 55.89 58.67 63.67 66.33 68.61 73.61 76.27 78.55 84.11 89.11 91.89 94.67 97.33 102.33 105.11 110.67 112.95 118.51 124.07 126.73 132.29 135.62 138.28 143.84 149.4 157.73 163.29 168.85 174.41 179.97 182.63 188.19 193.75 198.75 204.31 209.87 215.43 218.09 221.42 226.98 232.54 238.1 240.38 243.71\\\">- The Property is lost, stolen or damaged beyond repair.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 619.9793)\\\" x=\\\"0 3.33 5.99 12.66 18.22 23.78 26.44 32 37 42 44.28 49.84 55.4 58.06 60.84 66.4 71.96 74.62 81.29 86.85 90.18 95.74 101.3 109.63 115.19 120.75 123.53 126.19 131.75 135.08 137.74 140.52 143.85 149.41 154.97 159.97 162.75 168.31 171.64 174.3 177.08 182.64 188.2 190.86 197.53 200.86 206.42 211.98 217.54 220.87 223.65 228.65\\\">- You assign the Agreement or transfer the Property.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 606.6609)\\\" x=\\\"0 3.33 5.99 13.21 18.77 21.05 26.61 31.61 36.61 39.27 44.83 48.16 53.72 59.28 61.56 67.12 69.4 72.18 77.74 83.3 85.96 91.52 96.52 99.18 101.46 107.02 114.24 117.02 119.68 124.68 130.24 135.8 138.46 143.46 145.74 151.3 153.58 159.14 161.92 167.48 170.14 175.7 181.26 186.26 188.92 195.59 201.15 204.48 210.04 215.6 223.93 229.49 235.05 237.83 240.49 243.27 248.83 252.16 260.49\\\">- Unless prohibited by law, you violate any Agreement term.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 593.3426)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 38.6566 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 41.5168 593.3426)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 57.1369 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 59.9971 593.3426)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 108.9131 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 111.7732 593.3426)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 119.0535 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 121.9136 593.3426)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 129.7554 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 132.6156 593.3426)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 27.3 30.08\\\">default,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 165.4769 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 168.3371 593.3426)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 181.1202 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 183.9804 593.3426)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 202.872 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 205.7321 593.3426)\\\" x=\\\"0 5.56\\\">at</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 214.072 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 216.9321 593.3426)\\\" x=\\\"0 5.56 11.12\\\">our</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.3853 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 234.2454 593.3426)\\\" x=\\\"0 5.56 7.84 13.4 18.4 21.18 23.46 29.02 34.58\\\">election,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 271.6087 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 274.4688 593.3426)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.1534 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 294.0135 593.3426)\\\" x=\\\"0 5 10.56 16.12 18.4 23.96 28.96\\\">subject</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 325.7567 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 328.6169 593.3426)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 336.9567 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 339.8168 593.3426)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.9399 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 358.8 593.3426)\\\" x=\\\"0 7.22 12.78 15.06 17.84 20.12 25.68\\\">waiting</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 390.0452 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 392.9053 593.3426)\\\" x=\\\"0 5.56 11.12 14.45 16.73 22.29\\\">period</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 420.7618 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 423.6219 593.3426)\\\" x=\\\"0 2.28 10.61 16.17 21.73 26.73 32.29\\\">imposed</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 461.4783 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 464.3385 593.3426)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.9 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 477.7602 593.3426)\\\" x=\\\"0 2.28 7.84 15.06\\\">law,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 495.602 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 498.4621 593.3426)\\\" x=\\\"0 2.78 8.34 13.34\\\">take</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 517.3635 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 520.2236 593.3426)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 536.3467 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 539.2068 593.3426)\\\" x=\\\"0 5.56 10.56 13.34 15.62 21.18 26.74\\\">actions</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 582.0242)\\\" x=\\\"0 5.56 11.12 14.45 22.78 25.06 27.84 30.62 36.18 41.74 44.4 49.96 54.96 57.62 59.9 65.46 72.68 75.46 78.12 80.4 85.96 90.96 93.24 98.8 104.36 106.64 112.2 117.76 120.42 127.64 129.92 132.7 138.26 143.82 149.38 152.16 154.82 157.1 159.38 167.71 169.99 172.77 178.33 181.11 183.39 188.95 194.51 197.17 202.73 208.29 213.85 216.51 222.07 224.85 227.51 230.29 235.85 241.41 244.07 246.85 252.41 254.69 256.97 262.53 269.75 272.03 277.59 283.15 285.81 291.37 296.37 299.15 301.43 306.99 312.55 317.55 320.33 322.99 328.55 334.11 339.67 345.23 347.89 353.45 356.23 358.89 366.11 371.67 373.95 378.95 384.51 387.17 394.39 396.67 398.95 401.23 403.89 408.89 414.45 417.78 423.34 426 431 436.56 442.12 445.45 448.11 453.67 459.23 462.01 467.57 473.13 475.41 478.19\\\">permitted by law, including without limitation one of the following actions, none of which will cure your default:</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 568.7059)\\\" x=\\\"0 3.33 10.55 16.11 18.89 21.17\\\">-Until</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 56.5522 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 59.9757 568.7059)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 76.0988 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 79.5223 568.7059)\\\" x=\\\"0 5.56 11.12 14.45 19.45 25.01 30.57 35.57\\\">purchase</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 120.66 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 124.0836 568.7059)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 137.985 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 141.4086 568.7059)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 179.2015 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 182.6251 568.7059)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 193.1866 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 196.6102 568.7059)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29 32.85\\\">provided</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 235.0282 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 238.4518 568.7059)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 246.2936 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 249.7171 568.7059)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 265.3372 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 268.7608 568.7059)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 320.4552 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 323.8787 568.7059)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 332.7703 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 336.1939 568.7059)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 350.0953 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 353.5189 568.7059)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 391.3118 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 394.7354 568.7059)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.0157 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 405.4393 568.7059)\\\" x=\\\"0 3.33 8.89 14.45 20.01 25.01 30.01 35.57 40.57 45.57 51.13\\\">repossessed</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 462.1385 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 465.5621 568.7059)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.4537 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 477.8772 568.7059)\\\" x=\\\"0 5 10.56 13.89 17.22 22.78 28.34 33.9 39.46 42.79 48.35 53.91\\\">surrendered,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 534.5765 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 538 568.7059)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 545.8418 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 549.2654 568.7059)\\\" x=\\\"0 5.56 11.12 16.12\\\">each</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 557.3875)\\\" x=\\\"0 5 10.56 15.56\\\">case</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 54.2231 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 56.9386 557.3875)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 67.5001 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 70.2156 557.3875)\\\" x=\\\"0 5.56 11.12 14.45 22.78 25.06 27.84 30.62 36.18\\\">permitted</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 111.9588 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 114.6743 557.3875)\\\" x=\\\"0 5.56 11.12 16.68 22.24\\\">under</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 140.2505 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 142.966 557.3875)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 158.5862 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 161.3017 557.3875)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 212.996 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 215.7115 557.3875)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.3317 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 234.0472 557.3875)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 282.9632 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 285.6787 557.3875)\\\" x=\\\"0 5 10.56 16.12 18.4\\\">shall</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 306.3623 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 309.0779 557.3875)\\\" x=\\\"0 5 10.56 16.12 18.9 21.18 26.74 32.3\\\">continue</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 346.9441 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 349.6596 557.3875)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 357.9994 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 360.715 557.3875)\\\" x=\\\"0 3.33 8.89 14.45 20.01 27.23\\\">renew,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 390.7296 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 393.4452 557.3875)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 410.1297 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 412.8453 557.3875)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 425.6285 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 428.344 557.3875)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.2356 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 449.9511 557.3875)\\\" x=\\\"0 5 10.56 16.12 18.9 21.18 26.74 32.3\\\">continue</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 487.8173 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 490.5329 557.3875)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 498.8727 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 501.5882 557.3875)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01\\\">charge</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 532.1644 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 534.88 557.3875)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.003 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.7185 557.3875)\\\" x=\\\"0 3.33 8.89 14.45\\\">rent</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 546.0691)\\\" x=\\\"0 5.56 11.12 16.68 22.24 25.57 28.23 31.01 36.57 42.13 44.79 47.57 53.13 56.46 64.79 69.79 72.45 78.01 80.79 83.45 86.23 91.79 94.07 99.07 101.73 108.4 113.96 117.29 122.85 128.41 136.74 142.3 147.86 150.64\\\">under the terms of this Agreement.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 532.7508)\\\" x=\\\"0 3.33 12.77 18.33 20.99 29.32 34.88 39.88 42.54 45.32 50.88 55.88 61.44 64.1 69.66 75.22 80.22 82.88 88.44 93.44 96.22 98.5 104.06 109.62 112.28 119.5 125.06 127.72 133.28 138.84 141.12 143.4 148.96 153.96 159.52 162.18 164.96 170.52 173.18 178.74 184.3 186.96 192.52 198.08 203.08 208.64 213.64 218.64 224.2 227.53 232.53 235.19 240.75 244.08 246.74 252.3 257.86 262.86 265.14 270.14 275.7 281.26 283.54 289.1 291.76 294.54 300.1 302.76 308.32 311.65 317.21 319.99 325.55 330.55 333.33 335.99 341.55 347.11 350.44 353.1 355.38 360.94 363.72 369.28 372.61 378.17 383.17 385.95 388.61 390.89 396.45 399.11 401.89 407.45 413.01 415.67 422.34 425.67 431.23 436.79 442.35 445.68 448.46 453.46\\\">-We may take any action we believe to be necessary or advisable to protect our interest in the Property.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 519.4324)\\\" x=\\\"0 3.33 12.77\\\">-We</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 51.4301 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 54.7506 519.4324)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 73.6422 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 76.9627 519.4324)\\\" x=\\\"0 5.56 11.12 16.68 21.68 27.24 30.02 35.58 37.86 40.14\\\">peacefully</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 122.1092 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 125.4297 519.4324)\\\" x=\\\"0 3.33 8.89 14.45 20.01 25.01 30.01 35.57 40.57\\\">repossess</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 171.0058 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 174.3263 519.4324)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 188.2277 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 191.5482 519.4324)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 229.3411 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 232.6616 519.4324)\\\" x=\\\"0 7.22 12.78 18.34 21.67 27.23 32.23 37.79\\\">wherever</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 273.7896 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 277.1101 519.4324)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 289.8933 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 293.2138 519.4324)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.1054 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 315.4259 519.4324)\\\" x=\\\"0 2.78 5.06 10.62\\\">find</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 331.6075 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 334.928 519.4324)\\\" x=\\\"0 2.28 5.06\\\">it.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 342.7649 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 346.0854 519.4324)\\\" x=\\\"0 9.44\\\">We</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 361.0854 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 364.4059 519.4324)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 378.4684 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 381.7889 519.4324)\\\" x=\\\"0 5.56 7.84 12.84\\\">give</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 400.1922 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 403.5127 519.4324)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.6358 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 422.9563 519.4324)\\\" x=\\\"0 3.33 8.89 14.45 20.01 25.01 30.01 35.57 40.57 45.57 47.85 53.41\\\">repossession</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 481.9358 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 485.2562 519.4324)\\\" x=\\\"0 5.56 11.12 13.9 16.18 21.18 26.74\\\">notices</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 516.9994 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 520.3199 519.4324)\\\" x=\\\"0 3.33 8.89 14.45 20.01 22.29 25.62 31.18\\\">required</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 557.068 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 560.3885 519.4324)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 508.1141)\\\" x=\\\"0 2.28 7.84 15.06\\\">law.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 50.9418 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 53.8695 508.1141)\\\" x=\\\"0 6.67 9.45 12.23 17.79\\\">After</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 74.9876 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 77.9153 508.1141)\\\" x=\\\"0 3.33 8.89 14.45 20.01 25.01 30.01 35.57 40.57 45.57 47.85 53.41\\\">repossession</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.8948 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 139.8224 508.1141)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 148.714 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 151.6417 508.1141)\\\" x=\\\"0 5 10.56 13.89 17.22 22.78 28.34 33.9 39.46 42.79\\\">surrender,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 197.2178 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 200.1455 508.1141)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 212.9287 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 215.8564 508.1141)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 229.9189 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 232.8465 508.1141)\\\" x=\\\"0 5.56 11.12 13.4\\\">hold</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 251.8114 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 254.739 508.1141)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 268.6404 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 271.568 508.1141)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.1393 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 315.067 508.1141)\\\" x=\\\"0 5 10.56 16.12 18.4 23.96 28.96\\\">subject</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 346.8101 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 349.7378 508.1141)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 358.0776 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 361.0053 508.1141)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 377.1283 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 380.056 508.1141)\\\" x=\\\"0 3.33 5.61 11.17 16.73\\\">right</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 399.5677 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 402.4954 508.1141)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 418.6184 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 421.5461 508.1141)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 440.4377 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 443.3653 508.1141)\\\" x=\\\"0 5.56 11.12 16.12\\\">have</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 465.0499 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 467.9776 508.1141)\\\" x=\\\"0 5.56 11.12 16.68 22.24\\\">under</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 493.5537 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 496.4814 508.1141)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64\\\">applicable</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 541.6914 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 544.619 508.1141)\\\" x=\\\"0 2.28 7.84\\\">law</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.6825 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 562.6101 508.1141)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 496.7957)\\\" x=\\\"0 5 10.56 13.89 19.45 22.11 24.89 30.45 36.01 38.67 44.23 49.79 52.57 58.13 63.69 65.97 68.75 71.41 76.97 80.3 82.96 86.29 91.85 96.85 102.41 107.41 112.97 116.3 118.96 121.74 127.3 132.86 135.52 142.19 145.52 151.08 156.64 162.2 165.53 168.31 173.31\\\">cure the default or recover the Property.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 483.4773)\\\" x=\\\"0 3.33 10 15.56 23.89 28.89 31.55 38.77 44.33 46.99 51.99 57.55 63.11 68.67 74.23 76.89 79.67 85.23 90.23 92.51 98.07 103.63 106.29 111.85 117.41 122.41 125.07 130.63 136.19 139.52 147.85 150.13 152.91 155.69 161.25 166.81 169.47 175.03 180.03 182.81 185.09 190.65 196.21 198.87 206.09 208.37 210.65 212.93 215.59 221.15 226.71 229.37 234.93 240.49 246.05 251.61 257.17 259.83 262.61 268.17 270.83 273.61 279.17 284.73 287.39 292.95 301.28 306.84 312.4 317.96 320.74 323.4 328.96 333.96 338.96 342.29 347.85 353.41 358.97 361.75 364.41 369.97 375.53 377.81 383.37 388.37 393.37 396.03 401.59 404.92 410.48 416.04 418.32 423.88 426.16 428.94 434.5 440.06 442.72 448.28 453.28 455.94 458.22 463.78 471\\\">-Sums we spend taking any permitted action will be added to the amount accrued, unless prohibited by law.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 456.8406)\\\" x=\\\"0 6.11 12.78 19.45 26.12 32.79\\\">TAXES.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 68.6664 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 72.5196 456.8406)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 90.3126 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 94.1658 456.8406)\\\" x=\\\"0 8.33 13.89 18.89\\\">must</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 115.8357 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 119.689 456.8406)\\\" x=\\\"0 2.28 10.61 18.94 24.5 30.06 32.34 37.9 40.68 46.24 48.52\\\">immediately</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 173.2144 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 177.0676 456.8406)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 193.1906 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 197.0439 456.8406)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 205.9355 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 209.7887 456.8406)\\\" x=\\\"0 3.33 8.89 11.17 19.5 25.06 30.62 33.95 38.95\\\">reimburse</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 254.3053 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 258.1585 456.8406)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 268.72 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 272.5733 456.8406)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 277.6319 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 281.4851 456.8406)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 294.2683 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 298.1215 456.8406)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 314.2446 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 318.0978 456.8406)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.7677 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 333.6209 456.8406)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 349.744 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 353.5972 456.8406)\\\" x=\\\"0 5.56 7.84\\\">all</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 363.7193 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 367.5725 456.8406)\\\" x=\\\"0 5.56 11.12 16.12 21.68 25.01 30.57 38.9 44.46 50.02\\\">government</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 420.3801 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 424.2334 456.8406)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01 30.57\\\">charges</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 459.8095 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 463.6628 456.8406)\\\" x=\\\"0 3.33 8.89 11.17 16.73 19.51 21.79 27.35\\\">relating</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 496.5778 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 500.431 456.8406)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 508.7709 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 512.6241 456.8406)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.5255 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 530.3787 456.8406)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 445.5223)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24 28.52 34.08 39.64\\\">including,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 75.5268 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 78.3573 445.5223)\\\" x=\\\"0 5.56 11.12\\\">but</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 92.2586 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 95.0891 445.5223)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 108.9905 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 111.8209 445.5223)\\\" x=\\\"0 2.28 4.56 12.89 15.17 17.95 23.51\\\">limited</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 140.8932 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 143.7237 445.5223)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 152.0635 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 154.894 445.5223)\\\" x=\\\"0 2.78 8.34 13.9 18.9\\\">fees,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 176.5737 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 179.4042 445.5223)\\\" x=\\\"0 2.78 8.34 13.34 18.9 23.9\\\">taxes,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 206.0839 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 208.9144 445.5223)\\\" x=\\\"0 2.78 5.06 10.62 16.18\\\">fines</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 230.096 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 232.9265 445.5223)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 249.6111 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 252.4416 445.5223)\\\" x=\\\"0 5 10.56 13.89 18.89 24.45 30.01 33.34 38.9 44.46 49.46\\\">surcharges,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 304.6877 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 307.5181 445.5223)\\\" x=\\\"0 7.22 12.78 18.34 21.12 26.68 32.24\\\">whether</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 343.0943 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 345.9248 445.5223)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.12 31.12 36.68\\\">assessed</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.1709 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 391.0014 445.5223)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.1244 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 404.9549 445.5223)\\\" x=\\\"0 5 10.56 16.12\\\">you,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 423.8563 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 426.6868 445.5223)\\\" x=\\\"0 5.56 10.56\\\">us,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 440.0266 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 442.8571 445.5223)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 451.7487 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 454.5792 445.5223)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.4806 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 471.311 445.5223)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 511.8823 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 514.7128 445.5223)\\\" x=\\\"0 9.44\\\">We</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.7128 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 532.5433 445.5223)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.4349 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 554.2654 445.5223)\\\" x=\\\"0 5.56 11.12\\\">add</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 434.2039)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.0014 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 50.123 434.2039)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 83.4775 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 86.5991 434.2039)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 94.9389 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 98.0606 434.2039)\\\" x=\\\"0 7.22 12.78 18.34\\\">what</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 119.1836 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 122.3052 434.2039)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 138.4283 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 141.5499 434.2039)\\\" x=\\\"0 5.56 12.78\\\">owe</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 159.8946 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 163.0162 434.2039)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 173.5777 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 176.6994 434.2039)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 181.758 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 184.8796 434.2039)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 201.0026 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 204.1242 434.2039)\\\" x=\\\"0 5.56\\\">do</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 215.2473 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 218.3689 434.2039)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 232.2703 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 235.3919 434.2039)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 251.5149 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 254.6365 434.2039)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 265.1981 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 268.3197 434.2039)\\\" x=\\\"0 7.22 12.78 18.34\\\">when</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 292.2259 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 295.3476 434.2039)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.1307 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 311.2524 434.2039)\\\" x=\\\"0 8.33 13.89 18.89\\\">make</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.7055 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.8271 434.2039)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57 36.13\\\">demand.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 377.7431 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 380.8647 434.2039)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 386.4214 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 389.543 434.2039)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 405.666 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 408.7877 434.2039)\\\" x=\\\"0 5.56\\\">do</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.9107 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 423.0323 434.2039)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 436.9337 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 440.0553 434.2039)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.1783 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 459.3 434.2039)\\\" x=\\\"0 5 10.56 15.56\\\">such</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 480.423 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 483.5446 434.2039)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57 33.35\\\">amounts</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.8991 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 525.0207 434.2039)\\\" x=\\\"0 7.22 12.78 18.34\\\">when</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 548.927 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 552.0486 434.2039)\\\" x=\\\"0 2.78 8.34 13.9\\\">they</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 422.8855)\\\" x=\\\"0 5.56 8.89\\\">are</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.5531 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 50.576 422.8855)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.12 31.12 36.68\\\">assessed</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 92.8221 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 95.845 422.8855)\\\" x=\\\"0 3.33 8.89 14.45 16.73 22.29 27.29\\\">(unless</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 128.1399 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 131.1627 422.8855)\\\" x=\\\"0 5 10.56 15.56\\\">such</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 152.2858 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 155.3087 422.8855)\\\" x=\\\"0 3.33 8.89 13.89 19.45 21.73 24.51\\\">results</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 184.8204 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 187.8433 422.8855)\\\" x=\\\"0 2.78 6.11 11.67\\\">from</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 207.8433 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.8661 422.8855)\\\" x=\\\"0 5.56 11.12\\\">our</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.3192 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 228.3421 422.8855)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.8 32.36 37.92 42.92 48.48 51.81\\\">negligence),</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 282.9417 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 285.9646 422.8855)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.0876 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 305.1105 422.8855)\\\" x=\\\"0 8.33 13.89 18.89\\\">must</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 326.7804 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 329.8033 422.8855)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 345.9264 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 348.9492 422.8855)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 365.0723 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 368.0951 422.8855)\\\" x=\\\"0 5.56 11.12 16.68 22.24 24.52 27.3 29.58 35.14\\\">penalties</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 408.2416 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 411.2645 422.8855)\\\" x=\\\"0 7.22 12.78 18.34\\\">when</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 435.1707 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 438.1936 422.8855)\\\" x=\\\"0 5.56 11.12\\\">due</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.8782 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 457.9011 422.8855)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.7927 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 469.8155 422.8855)\\\" x=\\\"0 3.33 8.89 11.17 19.5 25.06 30.62 33.95 38.95\\\">reimburse</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 514.3321 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 517.355 422.8855)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 527.9165 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 530.9394 422.8855)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 535.998 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 539.0209 422.8855)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.8041 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 554.8269 422.8855)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 411.5672)\\\" x=\\\"0 2.78 8.34 13.9 22.23\\\">them.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 58.1098 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 61.0597 411.5672)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 78.8527 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.8026 411.5672)\\\" x=\\\"0 8.33 13.89 18.89\\\">must</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 103.4725 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 106.4225 411.5672)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 122.5455 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 125.4955 411.5672)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 139.3968 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 142.3467 411.5672)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01 30.57\\\">charges</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 177.9229 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 180.8729 411.5672)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 188.7147 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 191.6646 411.5672)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 207.2847 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.2346 411.5672)\\\" x=\\\"0 5.56 11.12 14.45 20.01 25.57 28.9 34.46 40.02\\\">paragraph</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 255.8255 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 258.7754 411.5672)\\\" x=\\\"0 5.56 10.56 16.12\\\">even</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.46 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 283.4099 411.5672)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 288.4685 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 291.4184 411.5672)\\\" x=\\\"0 5 10.56 15.56\\\">such</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.5415 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 315.4914 411.5672)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01 30.57\\\">charges</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.0676 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 354.0175 411.5672)\\\" x=\\\"0 5.56 8.89\\\">are</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 368.4707 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 371.4206 411.5672)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 385.322 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 388.2719 411.5672)\\\" x=\\\"0 5.56 7.84 10.12 12.4 17.96\\\">billed</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 411.7973 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 414.7472 411.5672)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 423.0871 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 426.037 411.5672)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 436.5985 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 439.5485 411.5672)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 448.4401 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 451.39 411.5672)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 459.7298 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 462.6798 411.5672)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 478.8028 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 481.7528 411.5672)\\\" x=\\\"0 5.56 11.12 13.9 16.18\\\">until</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 500.2147 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 503.1646 411.5672)\\\" x=\\\"0 5.56 8.34 11.12 16.68\\\">after</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 523.1744 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 526.1243 411.5672)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 540.0257 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 542.9756 411.5672)\\\" x=\\\"0 5.56 11.12\\\">end</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.6602 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 562.6101 411.5672)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 400.2488)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.0014 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 49.7259 400.2488)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 98.6419 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 101.3665 400.2488)\\\" x=\\\"0 2.78 8.34 11.67 20\\\">term,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 124.1448 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 126.8693 400.2488)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 137.4308 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 140.1554 400.2488)\\\" x=\\\"0 2.28 7.84 13.4\\\">long</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 159.1202 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 161.8448 400.2488)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 172.4063 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 175.1308 400.2488)\\\" x=\\\"0 5 10.56 15.56\\\">such</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 196.2539 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 198.9784 400.2488)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01 30.57\\\">charges</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 234.5546 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 237.2791 400.2488)\\\" x=\\\"0 5.56 8.89\\\">are</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 251.7322 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 254.4568 400.2488)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64\\\">applicable</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.6667 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 302.3913 400.2488)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 310.7311 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 313.4556 400.2488)\\\" x=\\\"0 5 10.56 18.89\\\">some</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 337.9088 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 340.6333 400.2488)\\\" x=\\\"0 5.56 11.12 14.45\\\">part</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 357.8648 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 360.5893 400.2488)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 368.9291 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 371.6537 400.2488)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 385.555 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 388.2796 400.2488)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 437.1956 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 439.9201 400.2488)\\\" x=\\\"0 2.78 8.34 11.67 20\\\">term.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 462.6985 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 465.423 400.2488)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 483.216 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 485.9405 400.2488)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 500.003 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 502.7275 400.2488)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 516.6289 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 519.3534 400.2488)\\\" x=\\\"0 5.56 11.12 16.12\\\">have</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 541.038 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 543.7625 400.2488)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.1024 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 554.8269 400.2488)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 388.9305)\\\" x=\\\"0 5.56 11.12 14.45 17.11 19.39 24.95 29.95 35.51 43.84 49.4 52.06 54.84 60.4 65.4 70.96 75.96\\\">our income taxes.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 375.6121)\\\" x=\\\"0 6.11 8.89 15 20.56 27.23 30.01 32.67 42.11 47.67 50.33 53.66 59.22 62 67.56 69.84 75.4 78.06 80.84 83.12 85.9 88.18 93.74 96.4 99.18 104.74 107.4 110.18 115.74 121.3 123.96 130.63 133.96 139.52 145.08 150.64 153.97 156.75 161.75 164.41 167.19 172.75 176.08 178.74 181.52 187.08 192.64 195.3 198.08 203.64 206.97 215.3 217.96 223.52 226.3 228.96 231.74 237.3 242.86 245.52 247.8 253.36 258.92 263.92 269.48 272.14 277.7 283.26 288.82 291.48 297.04 302.6 305.38 307.66 309.94 312.6 317.6 323.16 328.72 331.38 336.94 341.94 347.5 353.06 355.34 358.67 364.23 366.89 372.45 379.67 385.23 390.79 394.12 399.12 404.68 406.96 412.52\\\">TITLE. We retain title to the Property for the term of the lease and until you acquire ownership.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 362.2937)\\\" x=\\\"0 6.67 13.34 20.01 28.34 35.01 42.23 48.34 55.01 57.79 60.45 69.89 75.45 78.11 83.67 89.23 94.23 99.79 102.45 107.45 112.45 118.01 123.57 129.13 134.69 136.97 142.53 148.09 150.75 156.31 161.87 167.43 169.71 172.49 177.49 180.15 182.93 186.26 191.82 200.15 202.81 207.81 213.37 218.93 222.26 224.92 229.92 235.48 241.04 246.04 251.04 253.32 258.88 264.44 267.1 272.66 277.66 282.66 288.22 293.78 299.34 302.12 304.9 307.56 313.12 318.12 320.78 326.34 329.67 335.23 340.23 342.51 348.07 353.63 359.19 361.85 367.41 372.97 375.25 380.81 388.03\\\">PAYMENTS. We have scheduled debits from your checking account, as provided below:</text></g><clipPath id=\\\"clip2-2\\\"><path d=\\\"M 35 328 L 574 328 L 574 345 L 35 345 L 35 328 z \\\"/></clipPath><g clip-path=\\\"url(#clip2-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.2825 332.657)\\\" x=\\\"0 7.22 15 22.22 28.89 36.11 44.44 51.11 58.33 60.99 67.66 74.88 80.99 88.21 95.99 103.21 105.99 112.1 118.77 124.88 127.66 135.44 142.66 145.32 151.43 159.21 166.43 169.09 175.76 182.43 189.1 197.43 204.1 211.32 217.43 224.1 226.76 233.43 236.21 242.88 245.54 252.21 259.43 266.65 269.31 272.64 279.31 286.53 293.75 296.41 303.63 310.3 316.97 319.75 325.86 332.53\\\">CONSUMER AUTHORIZATION FOR PAYMENTS VIA ACH (ACH DEBITS)</text></g><clipPath id=\\\"clip2-3\\\"><path d=\\\"M 35 79 L 574 79 L 574 329 L 35 329 L 35 79 z \\\"/></clipPath><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 316.3387)\\\" x=\\\"0 6.67 13.89\\\">ACH</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 61.7883 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 66.1692 316.3387)\\\" x=\\\"0 7.22 12.78 18.34 20.62 23.4\\\">Debits</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 94.5725 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 98.9533 316.3387)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 110.6233 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 115.0041 316.3387)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46 42.79 47.79\\\">Payment(s)</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 166.1272 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 170.508 316.3387)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 187.1926 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 191.5735 316.3387)\\\" x=\\\"0 7.22 12.78 18.34 23.9\\\">Range</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 221.0412 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 225.4221 316.3387)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.762 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 238.1428 316.3387)\\\" x=\\\"0 7.22 12.78 18.34 20.62 23.4 28.4\\\">Debits.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 269.3245 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 273.7053 316.3387)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.4983 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 295.8792 316.3387)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 28.35 30.63 35.63\\\">authorize</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 337.0754 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 341.4563 316.3387)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 352.0178 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 356.3987 316.3387)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 364.7385 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 369.1194 316.3387)\\\" x=\\\"0 5.56 11.12 16.68 18.96\\\">debit</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 390.8626 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 395.2434 316.3387)\\\" x=\\\"0 2.78 8.34 13.9 19.46\\\">funds</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.7063 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 424.0872 316.3387)\\\" x=\\\"0 2.78 6.11 11.67\\\">from</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 444.0872 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 448.4681 316.3387)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.9212 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 472.3021 316.3387)\\\" x=\\\"0 5.56 11.12 16.68\\\">bank</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 493.9866 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 498.3675 316.3387)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.68 32.24\\\">account</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 533.3919 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 537.7728 316.3387)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.4427 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.8236 316.3387)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.7249 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 305.0203)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 74.0295 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 77.2781 305.0203)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 85.6179 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 88.8665 305.0203)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 102.7678 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 106.0164 305.0203)\\\" x=\\\"0 2.28 7.84 13.4 18.4\\\">lease</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 129.9813 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 133.2298 305.0203)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57 38.35\\\">payments</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 176.5843 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 179.8329 305.0203)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 196.5174 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 199.766 305.0203)\\\" x=\\\"0 5.56 7.84\\\">all</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.8881 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 213.1366 305.0203)\\\" x=\\\"0 5.56 8.34 13.9 19.46\\\">other</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 235.9296 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 239.1782 305.0203)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57 33.35\\\">amounts</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 277.5327 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 280.7812 305.0203)\\\" x=\\\"0 5.56 10.56 15.56 18.89 24.45 30.01\\\">accrued</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 316.3574 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 319.606 305.0203)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 330.1675 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 333.4161 305.0203)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29 32.85\\\">provided</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.834 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 375.0826 305.0203)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 382.9244 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 386.173 305.0203)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 401.7931 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 405.0417 305.0203)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement,</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.736 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 459.9846 305.0203)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.8264 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 471.0749 305.0203)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.9763 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 488.2249 305.0203)\\\" x=\\\"0 2.78 8.34 10.62 12.9 18.46 25.68 27.96 33.52\\\">following</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 527.3118 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 530.5603 305.0203)\\\" x=\\\"0 3.33 8.89 14.45 20.01\\\">range</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 556.1365 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 559.3851 305.0203)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.7249 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 293.7019)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57 33.35\\\">amounts</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 79.0295 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.706 293.7019)\\\" x=\\\"0 5.56 11.12 13.9 19.46\\\">$1.00</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 106.7305 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 109.407 293.7019)\\\" x=\\\"0\\\">-</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 112.7371 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 115.4136 293.7019)\\\" x=\\\"0 5.56 11.12 16.68 22.24 25.02 30.58 36.14\\\">$500.00.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 154.3394 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 157.016 293.7019)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 174.8089 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 177.4855 293.7019)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 28.35 30.63 35.63\\\">authorize</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 218.6818 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 221.3583 293.7019)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.9198 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 234.5964 293.7019)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 242.9362 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 245.6128 293.7019)\\\" x=\\\"0 5.56 11.12 16.68 18.96\\\">debit</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 267.3559 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 270.0325 293.7019)\\\" x=\\\"0 2.28 7.84 12.84 17.84 23.4\\\">lesser</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 296.7659 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 299.4424 293.7019)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57 33.35\\\">amounts</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 337.7969 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 340.4735 293.7019)\\\" x=\\\"0 2.78 8.34 13.9\\\">than</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.9364 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 362.6129 293.7019)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 382.066 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 384.7426 293.7019)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57 38.35\\\">payment,</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 425.8754 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 428.5519 293.7019)\\\" x=\\\"0 5.56 11.12 16.12 21.68\\\">based</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 455.798 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 458.4746 293.7019)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 469.5976 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 472.2742 293.7019)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 491.7273 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 494.4038 293.7019)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 532.7583 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 535.4349 293.7019)\\\" x=\\\"0 5.56 7.84 12.84 15.62 21.18 24.51 29.51\\\">history.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.7249 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 282.3836)\\\" x=\\\"0 7.78 13.34 16.67 19.33 24.89 30.45 36.01 38.29 41.07 46.07 48.73 55.95 58.23 60.51 62.79 65.45 71.01 76.57 79.23 81.51 87.07 89.73 94.73 100.29 105.29 110.85 113.51 116.84 122.4 127.96 133.52 139.08 141.86 144.52 150.08 155.64 157.92 163.48 168.48 173.48 176.14 183.36 188.92 191.58 197.14 202.7 205.48 207.76 210.54 215.54 218.2 223.2 228.76 234.32\\\">Our debits will be in such range, unless we notify you.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 269.0652)\\\" x=\\\"0 6.67 13.89 21.11 23.77 30.99 36.55 42.11 44.39 47.17 52.17 54.83 57.61 63.17 66.5 69.16 76.38 81.94 84.72 90.28 93.61 99.17 104.73 110.29 112.95 119.62 125.18 130.18 138.51 144.07 149.63 152.41 155.07 161.18 166.74 172.3 175.08 177.74 184.41 189.97 195.53 198.19 203.75 209.31 212.09 217.65 223.21 226.54 228.82 233.82 239.38 242.04 247.6 252.6 255.26 258.04 263.6 266.26 271.82 277.38 282.94 285.22 288 290.66 296.22 298.88 304.44 310 312.78 318.34 323.9 326.56 329.34 334.9 338.23 340.89 346.45 352.01 357.01 359.67 363 368.56 371.34 376.9 380.23 385.79 391.35 396.91 399.57 405.13 410.69 415.69 424.02 429.58 435.14 437.92 440.58 443.36 448.92 454.48\\\">ACH Debits for Returned Payment Fee. You authorize us to debit $ 20.00 for an* D E M O *payment fee.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 255.7469)\\\" x=\\\"0 7.22 12.78 15.56 17.84 22.84\\\">Notice</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 69.0783 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 72.6034 255.7469)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 80.9433 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 84.4684 255.7469)\\\" x=\\\"0 6.67 12.23 15.56 17.84 23.4 26.18 28.46 34.02 39.58\\\">Variation.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 126.8317 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 130.3568 255.7469)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 135.9135 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 139.4386 255.7469)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 145.0001 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.5253 255.7469)\\\" x=\\\"0 5.56 11.12 16.68 18.96\\\">debit</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 170.2684 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 173.7935 255.7469)\\\" x=\\\"0 2.78 8.34 10.62 12.9\\\">falls</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 191.6939 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 195.2191 255.7469)\\\" x=\\\"0 5.56 11.12 13.9 18.9 21.18 26.74\\\">outside</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 227.5238 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 231.0489 255.7469)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 244.9503 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 248.4754 255.7469)\\\" x=\\\"0 5 10.56 16.12 21.12 23.4 26.18 28.46 34.02\\\">specified</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 288.0603 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 291.5855 255.7469)\\\" x=\\\"0 3.33 8.89 14.45 20.01 25.57\\\">range,</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.94 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 323.4651 255.7469)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 336.2483 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 339.7734 255.7469)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 353.8359 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 357.3611 255.7469)\\\" x=\\\"0 5.56 13.89 19.45 21.73\\\">email</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 381.3747 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 384.8999 255.7469)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 401.0229 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 404.548 255.7469)\\\" x=\\\"0 5.56 11.12 13.9 16.18 21.18\\\">notice</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 431.2912 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 434.8163 255.7469)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 443.1562 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 446.6813 255.7469)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 460.5827 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 464.1078 255.7469)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 497.4623 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 500.9874 255.7469)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 517.672 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 521.1971 255.7469)\\\" x=\\\"0 5.56 11.12 13.9\\\">date</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 540.66 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 544.1852 255.7469)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 555.3082 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 558.8333 255.7469)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.7249 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 244.4285)\\\" x=\\\"0 5.56 8.34 11.12 16.68 20.01 22.67 29.89 35.45 37.73 42.73 48.29 50.95 58.17 63.73 66.39 73.61 75.89 78.17 80.45 83.11 88.67 94.23 99.79 102.07 104.85 107.51 112.51 118.07 123.07 128.63 131.29 136.85 145.18 150.74 156.3 161.86 164.64 167.42 170.08 176.75 182.31 187.87 190.53 197.75 200.03 202.31 204.59 207.25 212.81 218.37 221.15 223.81 229.37 232.15 234.81 237.09 242.65 248.21 253.21 255.99 258.65 264.21 269.77 272.43 277.43 282.99 285.27 290.83 296.39 301.95 307.51 310.84 313.5 319.06 324.62 329.62 334.62 336.53 339.19 344.75 350.31 353.09 355.37 360.37 365.93\\\">after which we will debit such amount. You will get at least 10 calendar days&apos; notice.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 231.1102)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68\\\">Payment</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 80.1379 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 85.2907 231.1102)\\\" x=\\\"0 7.22 12.78 15.56 21.12 26.12\\\">Dates.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 114.192 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 119.3448 231.1102)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 137.1377 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 142.2905 231.1102)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 28.35 30.63 35.63\\\">authorize</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 183.4868 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 188.6395 231.1102)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.74\\\">debits</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 215.3827 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 220.5354 231.1102)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.6585 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 236.8113 231.1102)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.7028 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 250.8556 231.1102)\\\" x=\\\"0 5.56 8.34 11.12 16.68\\\">after</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 270.8654 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 276.0181 231.1102)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 289.9195 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 295.0722 231.1102)\\\" x=\\\"0 5.56 11.12 13.9 19.46\\\">dates</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.5351 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 324.6879 231.1102)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 336.3578 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 341.5106 231.1102)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 379.865 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 385.0178 231.1102)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29 32.85\\\">provided</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 423.4358 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 428.5885 231.1102)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 436.4303 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 441.5831 231.1102)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 455.4844 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 460.6372 231.1102)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement,</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.3315 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 517.4843 231.1102)\\\" x=\\\"0 5.56 11.12 13.4 18.96 23.96\\\">unless</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 546.4491 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 551.6019 231.1102)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.7249 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 219.7918)\\\" x=\\\"0 5.56 8.34 13.9 19.46 22.79 30.01 32.29 37.29\\\">otherwise</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 83.5315 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 86.8927 219.7918)\\\" x=\\\"0 5.56 7.84 11.17 16.73 21.73\\\">direct</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 111.4044 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 114.7656 219.7918)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 125.3271 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 128.6884 219.7918)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.5302 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 139.8914 219.7918)\\\" x=\\\"0 7.22 10.55 12.83 15.61 17.89 23.45 29.01\\\">writing.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 171.6834 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 175.0446 219.7918)\\\" x=\\\"0 9.44\\\">We</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 190.0446 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 193.4058 219.7918)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 207.4683 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.8296 219.7918)\\\" x=\\\"0 5.56 11.12 16.68 18.96\\\">debit</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 232.5727 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 235.9339 219.7918)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.057 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 250.4182 219.7918)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.3098 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 262.671 219.7918)\\\" x=\\\"0 5.56 8.34 11.12 16.68\\\">after</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 282.6808 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 286.0421 219.7918)\\\" x=\\\"0 5.56 10.56 16.12 19.45\\\">every</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 310.4952 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 313.8564 219.7918)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 352.2109 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 355.5721 219.7918)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29 32.85\\\">provided</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.9901 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 397.3513 219.7918)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 405.1931 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 408.5543 219.7918)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 424.1745 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 427.5357 219.7918)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement;</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 479.23 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 482.5912 219.7918)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29 32.85 38.41\\\">provided,</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 523.7875 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 527.1488 219.7918)\\\" x=\\\"0 5.56 11.12 18.34 23.9 28.9 34.46 37.79\\\">however,</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.7249 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 208.4734)\\\" x=\\\"0 2.78 8.34 13.9\\\">that</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 57.3547 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 60.5776 208.4734)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 73.3608 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 76.5836 208.4734)\\\" x=\\\"0 3.33 8.89 13.89 19.45 22.78 27.78\\\">reserve</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 109.9284 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 113.1512 208.4734)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 127.0526 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 130.2755 208.4734)\\\" x=\\\"0 3.33 5.61 11.17 16.73\\\">right</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 149.7872 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 153.01 208.4734)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 161.3499 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 164.5728 208.4734)\\\" x=\\\"0 5.56 11.12 16.68 18.96\\\">debit</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 186.3159 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 189.5388 208.4734)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 200.6618 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 203.8847 208.4734)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 217.7861 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 221.0089 208.4734)\\\" x=\\\"0 5.56 11.12 16.68 21.68 23.96 29.52\\\">banking</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.0968 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 259.3197 208.4734)\\\" x=\\\"0 5.56 11.12\\\">day</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.4427 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 278.6656 208.4734)\\\" x=\\\"0 2.28 10.61 18.94 24.5 30.06 32.34 37.9 40.68 46.24 48.52\\\">immediately</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 332.191 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 335.4139 208.4734)\\\" x=\\\"0 5.56 8.89 14.45 19.45 25.01 30.57 32.85 38.41\\\">preceding</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 379.3934 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 382.6162 208.4734)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.0694 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 405.2922 208.4734)\\\" x=\\\"0 3.33 8.89 14.45 20.01 22.29 27.85\\\">regular</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 436.4787 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 439.7016 208.4734)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 478.0561 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 481.279 208.4734)\\\" x=\\\"0 5.56 11.12 13.9\\\">date</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 500.7419 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 503.9647 208.4734)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.0233 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 512.2462 208.4734)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.1476 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 529.3704 208.4734)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.7249 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 197.1551)\\\" x=\\\"0 5.56 11.12 13.9 19.46 22.12 24.9 30.46 32.74 35.02 40.02 42.68 48.24 53.8 56.46 62.02 64.68 70.24 75.8 81.36 84.69 90.25 95.81 101.37 106.37 108.65 114.21 119.77 122.43 127.99 133.55 138.55 141.21 144.54 146.82 149.6 155.16 157.94 160.72 163.38 168.94 171.6 177.16 182.72 185 187.28 192.84 198.4 203.4 206.06 211.62 214.95 217.61 224.83 230.39 235.95 240.95 246.51 252.07 257.63 260.29 265.85 271.41 276.41 279.74\\\">date falls on a non-banking day (i.e., a holiday or weekend day).</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 183.8367)\\\" x=\\\"0 7.22 12.78 16.11 19.44 25 30 32.78 35.06 40.62 46.18 51.18 53.96 56.62 63.29 68.85 74.41 77.07 82.63 88.19 90.97 96.53 102.09 105.42 107.7 112.7 118.26 120.92 126.48 131.48 134.14 136.92 142.48 145.14 150.7 156.26 161.82 164.1 166.88 169.54 175.1 180.66 186.22 188.88 193.88 197.21 202.77 208.33 210.61 213.39 216.05 221.05 226.61 232.17 235.5 238.16 243.72 248.72 253.72 259.28 264.84 270.4 273.18 275.84 278.62 284.18 286.84 291.84 297.4 300.73 304.06 309.62 314.62 317.4 320.06 325.62 328.95 332.28 337.84 341.17 346.17\\\">Corrections. You authorize us to debit and credit your* D E M O * correct errors.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 170.5184)\\\" x=\\\"0 6.67 9.45 12.23 17.79 22.79 25.57 27.85 32.85 38.41 41.07 48.29 53.85 56.63 62.19 64.97 67.63 73.74 79.3 84.86 87.52 90.3 93.63 99.19 104.75 109.75 115.31 120.31 123.09 125.37 130.93 136.49 138.4 143.4 146.06 151.62 154.4 157.18 162.74 167.74 170.52 172.8 177.8 183.36 186.02 191.58 197.14 199.92 205.48 208.14 210.42 215.42 218.08 220.86 226.42 231.98 234.64 241.31 246.87 250.2 255.76 261.32 269.65 275.21 280.77 283.55 286.21 293.43 298.99 301.77 307.33 309.99 315.55 318.88 324.44 329.44 331.72 337.28 342.84 348.4 351.06 356.62 362.18 367.74 372.74 378.3\\\">Effective Date. The transaction&apos;s effective date is the Agreement Date provided above.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 157.2)\\\" x=\\\"0 6.67 11.67 16.67 22.23 27.79 33.35 36.13 38.79 44.35 49.91 55.47 58.13 65.35 70.91 76.47 79.25 81.53 87.09 92.65 95.43 98.09 104.76 110.32 115.88 118.54 124.1 129.66 132.44 138 143.56 146.89 149.17 154.17 159.73 162.39 165.17 170.73 176.29 178.95 184.51 190.07 195.63 197.91 200.69 205.69 208.35 211.13 216.69 219.35 222.13 227.69 229.97 234.97 237.63 243.19 248.19 253.19 258.75 264.31 269.87 272.65 275.43 278.09 285.31 290.87 299.2 304.76 310.32 313.65 316.31 320.2 324.09 327.98 331.87 335.76 341.32 346.88 352.44 358 360.66 367.88 373.44 379 381.78 384.06 389.62 395.18 397.84 405.06 410.62 418.95 424.51 430.07 433.4 436.06 439.95 443.84 447.73 451.62 455.51 461.07 466.63 472.19 477.75\\\">Account and Routing. You authorize the debits to this account: Number *****3968 Routing Number *****1451.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 143.8816)\\\" x=\\\"0 7.22 12.78 18.34 23.9 29.46\\\">Change</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 75.7043 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 78.8745 143.8816)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 86.7163 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 89.8865 143.8816)\\\" x=\\\"0 6.67 11.67 16.67 22.23 27.79 33.35\\\">Account</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 126.0193 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 129.1895 143.8816)\\\" x=\\\"0 2.78 8.34 11.12 16.68 20.01 28.34 33.9 36.68 38.96 44.52 50.08\\\">Information:</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 182.0508 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 185.221 143.8816)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 203.0139 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 206.1841 143.8816)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 28.35 30.63 35.63\\\">authorize</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.3804 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 250.5506 143.8816)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 261.1121 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 264.2823 143.8816)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 272.6222 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 275.7923 143.8816)\\\" x=\\\"0 5.56 11.12 16.68 18.96\\\">debit</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 297.5355 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 300.7057 143.8816)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 316.8287 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 319.9989 143.8816)\\\" x=\\\"0 5.56 11.12\\\">new</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.3437 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 341.5138 143.8816)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.68 32.24\\\">account</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 376.5382 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 379.7084 143.8816)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 395.8315 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 399.0017 143.8816)\\\" x=\\\"0 5.56 7.84 12.84\\\">give</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 417.405 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 420.5752 143.8816)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 431.1367 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 434.3069 143.8816)\\\" x=\\\"0 2.28 7.84 10.62 16.18 19.51 27.84 33.4 36.18 38.46 44.02\\\">information</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 483.8918 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 487.062 143.8816)\\\" x=\\\"0 2.78 8.34 11.67\\\">for.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.5103 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 504.6805 143.8816)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 510.2371 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 513.4073 143.8816)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.5303 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 532.7005 143.8816)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.68 32.24\\\">account</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.7249 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 132.5633)\\\" x=\\\"0 2.28 7.28 9.94 13.27 18.83 21.11 26.67 31.67 34.45 40.01 45.57 48.23 55.45 61.01 63.67 70.89 73.17 75.45 77.73 80.39 85.95 91.51 97.07 99.35 102.13 104.79 110.35 115.91 120.91 123.57 129.13 134.13 139.13 144.69 150.25 155.81 158.59 161.25 168.47 174.03 176.69 182.25 187.81 192.81 198.37 201.03 206.59 212.15 214.81 217.59 219.87 222.15 227.71\\\">is re* D E M O *ill debit any account we have on file.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 119.2449)\\\" x=\\\"0 6.67 9.45 15.01 20.57 23.23 29.9 35.46 40.46 48.79 54.35 59.91 62.69 67.69 70.47 73.13 79.8 85.36 90.92 93.58 101.91 107.47 112.47 115.13 120.13 122.91 128.47 134.03 136.69 142.25 147.81 152.81 161.14 166.7 172.26 175.04 177.7 183.26 186.04 188.7 190.98 196.54 202.1 207.1 209.88 212.54 215.32 220.88 224.21 229.77 235.33 237.99 243.55 249.11 254.67 259.67 261.95 267.51 273.07 275.73 281.29 286.85 291.85 296.85 299.51 305.07 310.63 313.41 318.97 322.3 327.86 330.52 336.08 338.74 344.3 349.86 354.86 363.19 368.75 374.31 377.09\\\">Stop Payments. You may stop payment at least three banking days before a payment.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 105.9266)\\\" x=\\\"0 7.22 12.78 17.78 23.34 28.34 33.9 36.68 38.96 44.52 50.08\\\">Revocation,</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 93.5412 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 97.2277 105.9266)\\\" x=\\\"0 7.22 12.78 18.34 23.34 28.9 31.18 33.46 39.02 41.8 44.08 49.64 55.2\\\">Cancellation,</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 155.216 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 158.9024 105.9266)\\\" x=\\\"0 6.11 11.67 15 23.33 25.61 31.17 36.73 39.51 41.79 47.35 52.91\\\">Termination.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 214.5958 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 218.2823 105.9266)\\\" x=\\\"0 6.11 11.67 13.95\\\">This</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 237.2325 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 240.9189 105.9266)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 28.35 30.63 35.63 41.19 43.97 46.25 51.81\\\">authorization</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 298.2968 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 301.9833 105.9266)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.8\\\">applies</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 333.7899 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 337.4764 105.9266)\\\" x=\\\"0 5.56 11.12 13.9 16.18\\\">until</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.9383 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 359.6248 105.9266)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.7478 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 379.4343 105.9266)\\\" x=\\\"0 3.33 8.89 13.89 19.45 24.45\\\">revoke</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 409.449 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 413.1354 105.9266)\\\" x=\\\"0 2.28 5.06\\\">it.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 420.9723 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 424.6588 105.9266)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 442.4518 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 446.1382 105.9266)\\\" x=\\\"0 8.33 13.89 18.89\\\">must</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.8082 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 471.4946 105.9266)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29\\\">provide</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 504.3511 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 508.0375 105.9266)\\\" x=\\\"0 5.56\\\">at</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 516.3774 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 520.0639 105.9266)\\\" x=\\\"0 2.28 7.84 13.4 18.4\\\">least</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 541.2455 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 544.932 105.9266)\\\" x=\\\"0 2.78 8.34 11.67 17.23\\\">three</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.7249 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 94.6082)\\\" x=\\\"0 5.56 11.12 16.12 21.12 23.03 25.69 31.25 36.81 39.59 41.87 46.87 52.43 55.09 57.87 63.43 66.09 71.09 76.65 82.21 87.21 92.77 95.05 97.83 100.49 107.71 113.27 115.55 117.83 120.49 126.05 128.83 131.49 134.82 140.38 145.94 151.5 154.83 157.49 163.05 168.61 174.17 177.5 183.06 188.62 194.18 199.74 202.4 207.96 210.74 213.4 215.68 221.24 226.8 231.8 234.58 237.24 240.02 245.58 248.91 254.47 260.03 262.69 268.25 273.81 278.81 283.81 286.47 292.03 297.59 300.37 305.93 309.26 314.82 317.48 320.26 325.82 331.38 334.04 339.6 342.93 348.49 354.05 359.61 364.61 370.17 375.73 378.39 383.95 386.73 389.51 395.07 400.07 402.85 405.13 410.13 415.69 418.35 423.91 429.47 432.25 437.81 440.47 446.03 448.81 451.47 454.25 459.81 465.37 468.03 470.81 476.37 479.7 488.03 490.31 495.87 501.43 504.21 506.49 512.05 517.61\\\">days&apos; notice to cancel. Call at (100) 000-0006 at least three days before the proposed effective date of the termination.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 81.2898)\\\" x=\\\"0 7.78 10.56 16.12 21.68 25.01 27.67 34.89 40.45 46.01 51.57 57.13 62.69 67.69 70.47 73.13 80.35 85.91 88.69 90.97 93.75 98.75 101.41 106.97 111.97 114.63 120.19 122.97 125.63 127.91 133.47 139.03 144.03 146.81 149.47 152.25 154.53 159.53 165.09 167.75 173.31 178.87 183.87 186.15 191.71 197.27 202.27 207.27 209.93 215.49 221.05 226.05 231.05 233.71 239.27 244.83 247.61 253.17 256.5 262.06 264.72 267.5 273.06 278.62 281.28 286.84 292.4 297.4 300.18 302.84 308.4 310.68 312.96 315.24 317.52 323.08 328.64 331.3 336.86 342.42 345.2 350.76 353.42 355.7 358.48 361.14 366.14 371.7 377.26 380.59 383.25 388.81 393.81 398.81 404.37 409.93 415.49 418.27 420.93 423.21 428.77 431.55 437.11 440.44 448.77 454.33 457.11 459.39 464.95 470.51 473.17 478.17 483.73 489.29 494.85 500.41 505.97 510.97\\\">Other Changes. Notify us at least five business days before the next billing date if your account information changes.</text></g><clipPath id=\\\"clip2-4\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip2-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.775 345.3758 L 573.625 345.3758 L 573.625 344.3758 L 34.775 344.3758 L 34.775 345.3758 z \\\"/><path clip-path=\\\"url(#clip2-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.625 344.3758 L 573.625 344.3758 L 573.625 329.0574 L 572.625 329.0574 L 572.625 344.3758 z \\\"/><path clip-path=\\\"url(#clip2-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.775 344.3758 L 35.775 344.3758 L 35.775 329.0574 L 34.775 329.0574 L 34.775 344.3758 z \\\"/><path clip-path=\\\"url(#clip2-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.775 329.0574 L 573.625 329.0574 L 573.625 328.0574 L 34.775 328.0574 L 34.775 329.0574 z \\\"/><path clip-path=\\\"url(#clip2-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.775 79.6902 L 573.625 79.6902 L 573.625 78.6902 L 34.775 78.6902 L 34.775 79.6902 z \\\"/><path clip-path=\\\"url(#clip2-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.625 328.0574 L 573.625 328.0574 L 573.625 79.6902 L 572.625 79.6902 L 572.625 328.0574 z \\\"/><path clip-path=\\\"url(#clip2-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.775 328.0574 L 35.775 328.0574 L 35.775 79.6902 L 34.775 79.6902 L 34.775 328.0574 z \\\"/><g clip-path=\\\"url(#clip2-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 36.5264)\\\" x=\\\"0 6.498 11.997 14.391 16.785 21.789 26.793 29.295 34.299 39.303 44.307 504 506.3906 508.7812 511.1719 513.5625 515.9531 518.3438 520.7344 523.125 525.5156\\\">UT  07/2019          </text></g><g clip-path=\\\"url(#clip2-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 26.3398)\\\" x=\\\"0 6.003 11.007 16.011 21.015\\\">Page </text></g><g clip-path=\\\"url(#clip2-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 55.8097 26.3398)\\\" x=\\\"0\\\">3</text></g><g clip-path=\\\"url(#clip2-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.815 26.3398)\\\" x=\\\"0 2.394 7.398 9.9\\\"> of </text></g><g clip-path=\\\"url(#clip2-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 73.1021 26.3398)\\\" x=\\\"0\\\">7</text></g><g clip-path=\\\"url(#clip2-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#d9d9d9\\\" style=\\\"font-family:f2-0; font-size:54pt; white-space:pre\\\" transform=\\\"matrix(0.707 0.707 0.707 -0.707 135.6027 198.5094)\\\" x=\\\"0 56.016 96.048 136.08 176.112 216.144 236.16 284.184 324.216 344.232 364.248 416.232 456.264 480.24\\\">Qoppa Software</text></g><g clip-path=\\\"url(#clip2-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#002ba6\\\" style=\\\"font-family:f2-0; font-size:9pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.932 772)\\\" x=\\\"0 9.336 16.008 22.68 29.352 36.024 39.36 47.364 54.036 57.372 60.708 69.372 76.044 80.04 86.712 90.048 94.044 97.38 104.712 111.384 115.38 118.716 126.72 132.72 139.392 142.056 148.728 155.4 158.736 161.4 168.072 174.744 178.08 187.416 194.088 196.752 202.752 206.088 210.084 213.42 220.092 223.428 226.764 233.436 239.436 242.772 246.108 249.444 258.108 266.772 275.436 278.772 285.444 292.116 298.788 305.46 312.132 315.468 321.468 328.14\\\">Qoppa Software - For Evaluation Only - https://www.qoppa.com</text></g></g></svg></svg></g></svg><br>\\n<?xml version='1.0' encoding='UTF-8'?><svg id=\\\"qoppa_document\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" version=\\\"1.1\\\" xmlns=\\\"http://www.w3.org/2000/svg\\\" xmlns:xlink=\\\"http://www.w3.org/1999/xlink\\\"><!-- jPDFWeb v2019R1.03 - Demo Version --><style>title p { display: block; }</style><g id=\\\"qoppa_viewxform\\\" transform=\\\"matrix(1 0 0 1 0 0)\\\"><style type=\\\"text/css\\\">@font-face {font-family:f3-0;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f3-1;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f3-2;src:url(\\\"data:application/font-woff;charset=utf-8;base64,d09GRgABAAAAAAp4AAoAAAAADawAAQABAAAAAAAAAAAAAAAAAAAAAAAAAABPUy8yAAAA9AAAADcAAABWWd9ZMmNtYXAAAAEsAAAAbAAAAIwCiwM0Z2x5ZgAAAZgAAAdLAAAJ6ArdyapoZWFkAAAI5AAAADEAAAA2GI9khmhoZWEAAAkYAAAAIAAAACQGNwJvaG10eAAACTgAAABeAAAAgDkXBShsb2NhAAAJmAAAAEIAAABCI1gg9G1heHAAAAncAAAAGAAAACAAIwA9bmFtZQAACfQAAAB3AAAA1A1JKK1wb3N0AAAKbAAAAAwAAAAgAAMAAHicY2Bk8mKcwMDKwMDUxbSbARlwMeogc/8DATI/MCDAkUEBCG8y3fyvxxDFdJPhEkwOAMlSDLoAeJxjYGBgZGAGYgYGHgYWhgYgLcMgABThYVBg0GewYnBj8GcIZAhmSGRIZkhjyGQoZ6j8/x+oSoFBFyjriiSbypDBkAOS/f/4//X/Z/8f/r/7/67/O/+v+b/6/6r/K/8v/78MbA9OAAAj1iOqeJxtVktsG9cVnXuHpChTEr/DjyRSHI44/IlUpeGQkvgTbepPkZJlUTQlWVLNWq2h2rHrohsv4iJo4P6SOqmRxIukDYqiWRTtJmgBN0CCBu1CRhZd1E5bdFOgdtuVG7SAAY16Z0gmClAOMPPmzX33nnfueUdigPEzf4QEjDIswwDHy5BQnsJovc7QK9Og+3tMU/2W5gT5vSb91Hnm+DE48VCd5+wS+9HcR27829EgRWNrDRroWxfD2GWJs9LKRrMJP242lQ9a66sUeInWm7SancuK68p5+K5yA3519AQP1/+0/nSdgih+heIlGnZ/Gm8VrCgpN2FF+cUOHtb+sq7cV0OpfuL4E/wzPmTMzBBFO11Ol6HL0CWG6EqntDHNSal0Kk0z8P07W9usbnfv7t3tbYT6xtuXTxcRSzPPXcvnAUslfIjN5i/f2bmA7MUv/fT1y5fLUC7f+db8Aq6svvjCwgKj1Rw9/j0+wUfMIDN5oqb61ArTi6A+qahLpA8G+jDeAhBKq1EqmpSK5m5jk0WfL+Hz+Ya80aAoJKKR9A8IIjQ2X9uanWMxm7k96HSa3S63yxUIBPiwkwPIZvCRbn//JxdmZkdcVktP0eLiBtzdp/Bi890fXrq0DDMzr3/93DnWoDeaTaf0M91Wa38glz17ZW1N63P8+N+4T5yN0QuBEsQ2+vZOQoE20LSzjbq9m/Q4BcB/DInEcm58nGUnJ4vNtbN6Q21j58ZGravRVSisnU4m2e7trYWyLCMuLlz9yuKCEZ7N8Ty43cW009nriMZuXB/7AkxMPW/cCooIPt9M2eOxcpHIxs7YGMjyV1WOReqrHh1MjMmQrlQqCVAXp3IpnCBZ1rikS1YnA7QRvdoL9XK0+i5zxenaQSIBaDDYt7r1OhhNJKbOjcQwl6vFQyEv+PlMjueNoIv4+WhUFNE7OLoXDML1XZ5HiEaXngwT82arxRK22TASmykHg106o7FbjLuc4HInL/ZRPb3VIosODrNZjePg8SfwT7QxfItjFa8GXsV6UqKaIOB7vT6fND88jEP+hsz7DRuWqUztQNXk1OTzSxNpC+xJA/2AqfTGcjbLQnB4wrRNJMLs3IsHy2UdRCKrLW2Kx0+JNydjZAKfVTarIpXG26UFQ7u0yim8g+HwdCESBoMhFpsfDQSs5/vzhfWtuXkdCe3WfLWCIBcjEcRYLDdfH4l7vWOmRljEfOHefqWi1+VzP6f9GqlamjQ1cEJTnMQJdHIFWZLFjnqiRrPZ1s85oNmsVyokigtWj9uGt1hA6O2LT5WUPHxQWuXjCT2yekbj8gzd/kHn3UVKsKbanFHiTstpeM8nhqS1xCjUYdA7nhdFqOOhcszbbQAj8fPKj2Az7vPRVteVv1ImVHMy9zRPU32LgKoJz9Tph4fNLx49I0vr1G7HMZJVogg8PErSfJFhCLKNiWrzXAfVCXSpdtdpmGwNXdZidUAU87IgWAbEYHExHCK8dkc6z/vrDk6a9fpIpQthpxPA7YlEPG7A+Mhp5TtQj/F+xFAorbwPF8PeQWRHR/PKI8JR0rixadxwn+dGaHPzylAonKvSCagD9S4fVLkxLERUJ4kn1pU3YSXj84rBivIHbdPI8HT2uinn5zxVOOGpXOdsqZ7qvZHNqN555WqhAJjJ3FwUxXB4aWVYgHAIbexS+ca3z5yBublvXl1eLmEqtbGblNlsZrmRkluaLR1PooHqOZjhzi7GTxg5iUgduxwtfmUi9lUuGJzYzuVZmMo8N8LzzvrH84EAHYvZJf8Q+P1oKAVIbKXS7YNqRQc2u1fBB5O6YrFSkyRgC/nyYjbTPi+T8LhTWy/I7aKqr0jqzmVJc/DO0aVOwuO6i+dj1zJTmM9dSAeDzpWPV6gkDPnLM8FhCAR+p3hJd7pK9eB2qQQuZ6A0qctkF8v5AguSVKsUiy1tTdOtQbW5k73r/AlRdfMyN9Af8zg4u89iMXMJj4caV4263QBGo2lV9TI2FksrD7W+ATNEnvOA8pGv25NtErs6Qjhh8F3/z+DjSWmvkkxa6jreH40KAqLb4/za3CySo+3WJib6NrqDQXlEGEb9VGY6GwrDC9lwGHm+2pOwO/r6Iv6eXt2gb6i2Go1AKFzvzbvdCA7HWNRitph5P+GzHv8XevG+6hF2zRscbQgaKNWVNK/4Wb1u7uNOdRtNPY4+s308IMD0NN5/t6S8HzxlQgBgqyw90OOpwmLpVotL2vvfiQfNI9RuqXnpwH7a0bT1DXS6StZ0yliv9ofDU3uRKKJB+XWSrN4w0H8TBo6eVUIeD7CSVIFNytlLiR9TTmJ3ACVWYC+//Grjt2c/pFW78NZnHqEjIT2glx4tbgAo1AQCu3P9SmP/G7W3N/e/vPUWrbkEbyjX4KWjZ/CScq2z1nKcgH+1cNO6NtZRaP/TUiAwdnjl/CNOGC5ZTD193b09Jotot5u4D3fuoOHoN7lYDIFl2TUdIthtQxNUaOt/bprEGQB4nGNgZGBgAOKDhy+vj+e3+crAzfwCKMJw21zgLIL+r8fMyHQTqI6DgQkkCgBlUwuTAAAAeJxjYGRgYLr5X48hitmRgeH/fWZGBqAIClAAAHbABKt4nGNggABGXyAWA9MKQDoKzAbSTLMZ/JmSGQKYuRj0QRjI12XSYVBj/MKgDqTVgWo4gLQzwz0IZnZkcATyXYBYGUqrAc10AKqXB6oVBPKdgGxepksMLEBaAABlFhBuAAAAAAAAAAAAAAAAAA4AGgAoADoAUgBoAKIBAgFUAbQB8AIsAloChAKYAqQC6AMSA0oDiAPGA+4EPgRsBJYEqgTIBPQAAHicY2BkYGBQYLBhYGIAAUYGNAAACboAYXicbco9C4IAEMbxv6/Z6tTo4BhRX8ChFkcnB7ewMEE0VIK+vQ94m3Lc8bvnDjhQ4eH4RyBWr3bk2OwSkZo9pWezL2fmgBOFOVT+4cHAlz8jLY32mZw3HT/NWVnNk7t+Ol47l21SyiOTtoGehBsXrqrN5wJrcRoTAHicY2BmwAsAAH0ABA==\\\");}</style><svg id=\\\"qoppa_page_p3\\\" class=\\\"qoppa_page\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\"><rect class=\\\"qoppa_pageborder\\\" x=\\\"0.5pt\\\" y=\\\"0.5pt\\\" width=\\\"611pt\\\" height=\\\"791pt\\\" fill=\\\"none\\\" /><svg class=\\\"qoppa_pagecontents\\\" x=\\\"0pt\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" viewBox=\\\"0 0 612 792\\\" ><g class=\\\"qoppa_contentstream\\\" transform=\\\"matrix(1 0 0 -1 0 792)\\\" fill=\\\"black\\\" stroke=\\\"black\\\" stroke-width=\\\"1\\\" stroke-linecap=\\\"butt\\\" stroke-linejoin=\\\"miter\\\" stroke-miterlimit=\\\"10\\\"><clipPath id=\\\"clip3-1\\\"><path d=\\\"M 35 730 L 574 730 L 574 770 L 35 770 L 35 730 z \\\"/></clipPath><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 757.4812)\\\" x=\\\"0 6.6699 11.6699 16.6699 22.2314 27.793 35.0146 37.2949 42.8565 48.418 53.9795 62.3096 67.8711 73.4326 76.2109 81.2109\\\">Acknowledgments.</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 124.6643 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 127.3205 757.4812)\\\" x=\\\"0 6.6699 12.2314\\\">You</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 145.1135 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 147.7697 757.4812)\\\" x=\\\"0 3.3301 8.8916 14.4531\\\">read</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 167.7844 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 170.4406 757.4812)\\\" x=\\\"0 2.7783 8.3398 10.6201\\\">this</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 186.0607 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 188.717 757.4812)\\\" x=\\\"0 5.5615 11.1231 13.9014 19.4629 25.0244 28.3545 30.6348 35.6348 41.1963 43.9746 46.2549 51.8164\\\">authorization</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 246.0949 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 248.7512 757.4812)\\\" x=\\\"0 2.2803\\\">in</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.593 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 259.2492 757.4812)\\\" x=\\\"0 5.5615 8.8916 11.1719 16.7334 19.5117\\\">print,</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.5393 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 284.1955 757.4812)\\\" x=\\\"0 5.5615\\\">on</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 295.3186 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 297.9748 757.4812)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 303.5363 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 306.1926 757.4812)\\\" x=\\\"0 5 10.5615 18.8916 24.4531 30.0146 32.793 38.3545\\\">computer</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 347.8771 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 350.5334 757.4812)\\\" x=\\\"0 5 10 13.3301 18.8916 24.4531 30.0147\\\">screen,</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.3264 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 385.9826 757.4812)\\\" x=\\\"0 5.5615\\\">or</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 394.8742 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 397.5305 757.4812)\\\" x=\\\"0 5.5615 8.3398 13.9014 19.4629\\\">other</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 420.3234 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 422.9797 757.4812)\\\" x=\\\"0 5 7.2803 12.2803 17.8418 23.4033\\\">visual</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 448.6633 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 451.3195 757.4812)\\\" x=\\\"0 5.5615 7.8418 12.8418 18.4033 20.6836 26.2451 31.2451\\\">display.</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 485.343 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 487.9992 757.4812)\\\" x=\\\"0 6.6699 12.2314\\\">You</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 505.7922 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 508.4484 757.4812)\\\" x=\\\"0 5.5615 10.5615 15.5615 21.1231 26.6846 33.9062 36.1865 41.7481 47.3096 52.8711\\\">acknowledge</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 566.8811 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 746.1629)\\\" x=\\\"0 5.5615 11.1231\\\">and</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 57.3596 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 60.0158 746.1629)\\\" x=\\\"0 5.5615 11.123 14.4531 20.0146\\\">agree</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 85.592 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 88.2482 746.1629)\\\" x=\\\"0 2.7783\\\">to</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 96.5881 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 99.2443 746.1629)\\\" x=\\\"0 2.7783 8.3398\\\">the</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 113.1457 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 115.802 746.1629)\\\" x=\\\"0 2.7783 8.3398 10.6201 12.9004 18.4619 25.6836 27.9639 33.5254 39.0869\\\">following:</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 157.6672 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 160.3234 746.1629)\\\" x=\\\"0 2.7783 8.3398 10.6201\\\">this</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 175.9436 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 178.5998 746.1629)\\\" x=\\\"0 6.6699 13.8916\\\">ACH</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 199.7131 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 202.0693 746.1629)\\\" x=\\\"0 7.2217 12.7832 18.3447 20.625\\\">Debit</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.4727 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 227.8289 746.1629)\\\" x=\\\"0 6.6699 12.2314 15.0098 20.5713 26.1328 29.4629 31.7432 36.7432 42.3047 45.083 47.3633 52.9248\\\">Authorization</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 286.3152 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 288.6715 746.1629)\\\" x=\\\"0 2.2803\\\">is</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 295.9518 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 298.308 746.1629)\\\" x=\\\"0 5.5615 11.123\\\">not</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.2094 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 314.5656 746.1629)\\\" x=\\\"0 5.5615\\\">an</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 325.6887 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 328.0449 746.1629)\\\" x=\\\"0 2.2803 7.8418 12.8418 15.6201 18.9502 24.5117 32.8418 38.4033 43.9648\\\">instrument</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 374.7881 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 377.1443 746.1629)\\\" x=\\\"0 5.5615 11.123 16.123 21.6846 25.0146 30.5762 36.1377\\\">governed</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 418.8436 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 421.1998 746.1629)\\\" x=\\\"0 5.5615\\\">by</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 431.7613 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 434.1176 746.1629)\\\" x=\\\"0 6.6699 10 12.7783 15.0586 20.0586 22.3389\\\">Article</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 462.018 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 464.3742 746.1629)\\\" x=\\\"0\\\">3</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 469.9357 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 472.292 746.1629)\\\" x=\\\"0 5.5615\\\">of</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 480.6318 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 482.9881 746.1629)\\\" x=\\\"0 2.7783 8.3398\\\">the</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 496.8895 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 499.2457 746.1629)\\\" x=\\\"0 7.2217 12.7832 15.0635 17.8418 23.4033 26.7334\\\">Uniform</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 734.8445)\\\" x=\\\"0 7.2217 12.7832 21.1133 29.4434 35.0049 38.335 43.335 45.6152 51.1768\\\">Commercial</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 94.132 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 96.4883 734.8445)\\\" x=\\\"0 7.2217 12.7832 18.3447 23.9062\\\">Code.</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 123.1728 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 125.5291 734.8445)\\\" x=\\\"0 6.6699 10 12.2803 17.8418\\\">Print</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.1492 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.5055 734.8445)\\\" x=\\\"0 5.5615 11.1231\\\">and</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 165.19 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 167.5463 734.8445)\\\" x=\\\"0 3.3301 8.8916 11.6699 17.2314 19.5117\\\">retain</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 192.6195 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 194.9758 734.8445)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 200.5373 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 202.8936 734.8445)\\\" x=\\\"0 5.5615 11.123 14.4531\\\">hard</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 222.9082 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 225.2645 734.8445)\\\" x=\\\"0 5 10.5615 16.123\\\">copy</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 246.3875 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 248.7437 734.8445)\\\" x=\\\"0 5.5615\\\">or</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.6353 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 259.9916 734.8445)\\\" x=\\\"0 5.5615 7.8418 13.4033 18.4033 21.1816 24.5117 30.0733 35.6348 37.915\\\">electronic</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.9066 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 305.5629 734.8445)\\\" x=\\\"0 5 10.5615 16.123\\\">copy</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 326.6859 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 329.3422 734.8445)\\\" x=\\\"0 5.5615\\\">of</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 337.682 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 340.3383 734.8445)\\\" x=\\\"0 2.7783 8.3398 10.6201\\\">this</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.9584 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 358.6147 734.8445)\\\" x=\\\"0 6.6699 13.8916\\\">ACH</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 379.7279 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 382.0842 734.8445)\\\" x=\\\"0 7.2217 12.7832 18.3447 20.625\\\">Debit</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 405.4875 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.8438 734.8445)\\\" x=\\\"0 6.6699 12.2314 15.0098 20.5713 26.1328 29.4629 31.7432 36.7432 42.3047 45.083 47.3633 52.9248 58.4863\\\">Authorization.</text></g><clipPath id=\\\"clip3-2\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip3-2)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.775 770.2 L 573.625 770.2 L 573.625 769.2 L 34.775 769.2 L 34.775 770.2 z \\\"/><path clip-path=\\\"url(#clip3-2)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.775 731.2449 L 573.625 731.2449 L 573.625 730.2449 L 34.775 730.2449 L 34.775 731.2449 z \\\"/><path clip-path=\\\"url(#clip3-2)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.625 769.2 L 573.625 769.2 L 573.625 731.2449 L 572.625 731.2449 L 572.625 769.2 z \\\"/><path clip-path=\\\"url(#clip3-2)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.775 769.2 L 35.775 769.2 L 35.775 731.2449 L 34.775 731.2449 L 34.775 769.2 z \\\"/><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 718.5262)\\\" x=\\\"0 7.22 15 22.22 25.55 34.99 41.66 44.44 51.11 57.78 65 67.78 70.44 79.88 85.44 88.1 93.66 99.22 101.88 107.44 113 115.78 118.44 125.66 131.22 133.5 138.5 144.06 146.72 152.28 157.84 161.17 163.83 167.16 169.44 175 180.56 183.34 188.34 191 196.56 199.89 202.55 205.88 211.44 219.77 225.33 230.89 233.17 238.73 243.73 246.39 251.95 257.51 263.07 268.63 271.96 274.62 277.4 282.96 285.24 290.24 292.9 299.57 305.13 308.46 314.02 319.58 327.91 333.47 339.03 341.81 344.47 350.03 355.03 357.69 360.47 366.03 368.31 370.59 372.87 378.43 383.99 386.65 389.43 394.99 397.65 403.21 408.21 413.77 417.1 422.1 424.38 429.38 434.94 437.6 440.38 445.94 451.5 459.83 462.49 468.05 470.83 473.49 479.05 484.61 489.61 492.27 495.05 497.33 505.66 511.22\\\">NON-WAIVER. We do not waive our rights or remedies under this Agreement by failing to exercise them at any time.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 705.2078)\\\" x=\\\"0 7.22 15 23.33 31.66 38.88 46.1 48.88 56.1 62.77 68.88 71.66 78.88 86.66 89.32 98.76 101.54 107.65 114.87 117.53 124.2 131.98 139.2 141.98 144.64 151.86 158.53 164.09 169.65 172.31 179.53 186.2 193.42 201.2 208.42 215.64 218.42 225.64 233.42 236.2 238.86 242.19 247.75 253.31 258.87 262.2 264.86 270.42 275.98 281.54 284.87 290.43 295.99 301.55\\\">COMMUNICATING WITH YOU; CALL RECORDING: (100) 000-0006</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 691.8895)\\\" x=\\\"0 6.67 13.89 20 22.78 30\\\">ENTIRE</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 69.7699 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 74.2589 691.8895)\\\" x=\\\"0 6.67 14.45 21.67 28.34 35.01 43.34 50.01 57.23 63.34\\\">AGREEMENT,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 140.377 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 144.866 691.8895)\\\" x=\\\"0 7.22\\\">NO</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 159.866 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 164.3549 691.8895)\\\" x=\\\"0 6.67 13.89 21.11 23.89 30 32.78 40.56 47.78 54.45\\\">ADDITIONAL</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 224.3647 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 228.8536 691.8895)\\\" x=\\\"0 6.67 13.89 21.67 30 32.78 39.45 46.12 52.79\\\">PROMISES,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 284.42 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 288.9089 691.8895)\\\" x=\\\"0 9.44 16.66 19.44 25.55 31.66 38.33\\\">WRITTEN</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 334.4558 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.9447 691.8895)\\\" x=\\\"0 6.67 13.89\\\">AND</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 360.058 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 364.547 691.8895)\\\" x=\\\"0 6.67 9.45 17.23 24.45 31.12\\\">SIGNED</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.8868 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.3757 691.8895)\\\" x=\\\"0 7.22 14.44 21.11 28.33 36.11 42.78\\\">CHANGES</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.8289 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 461.3178 691.8895)\\\" x=\\\"0 7.78 15 20.56 27.23\\\">ONLY.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 491.3276 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 495.8165 691.8895)\\\" x=\\\"0 6.11 11.67 13.95\\\">This</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 514.7667 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 519.2556 691.8895)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 680.5711)\\\" x=\\\"0 2.78 8.34 13.9 19.46 22.24 27.8 33.36\\\">together</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 69.7943 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 72.8324 680.5711)\\\" x=\\\"0 7.22 9.5 12.28\\\">with</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 90.6742 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 93.7124 680.5711)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 107.6137 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 110.6518 680.5711)\\\" x=\\\"0 5.56 8.34 13.9 19.46\\\">other</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 133.4448 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 136.4829 680.5711)\\\" x=\\\"0 5.56 11.12 16.12 21.68 30.01 35.57 41.13 43.91\\\">documents</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 185.3989 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 188.437 680.5711)\\\" x=\\\"0 3.33 8.89 11.67 17.23 20.56 23.89 29.45\\\">referred</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 223.4517 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 226.4898 680.5711)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 234.8296 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 237.8677 680.5711)\\\" x=\\\"0 5.56 11.12 14.45 20.01 22.29 27.85\\\">herein,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 268.5025 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 271.5406 680.5711)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24 28.52 34.08\\\">including</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 311.189 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 314.2271 680.5711)\\\" x=\\\"0 5.56 11.12\\\">but</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 328.1285 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 331.1666 680.5711)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 345.068 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 348.1061 680.5711)\\\" x=\\\"0 2.28 4.56 12.89 15.17 17.95 23.51\\\">limited</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 377.1783 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 380.2165 680.5711)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.5563 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 391.5944 680.5711)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 411.0475 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 414.0856 680.5711)\\\" x=\\\"0 5.56 11.12 14.45 19.45 25.01 30.57 35.57\\\">purchase</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 455.2233 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 458.2614 680.5711)\\\" x=\\\"0 3.33 8.89 13.89 19.45 21.73 27.29\\\">receipt</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 488.3347 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 491.3728 680.5711)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 508.0574 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 511.0955 680.5711)\\\" x=\\\"0 2.78 5.06 10.62 16.18\\\">final</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.5574 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 532.5955 680.5711)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 669.2527)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 66.4545 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 69.6146 669.2527)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 86.2991 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 89.4592 669.2527)\\\" x=\\\"0 5 10 15.56 21.12 26.68 32.24 34.52 40.08\\\">schedule,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 132.3254 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 135.4855 669.2527)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 142.7658 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 145.9259 669.2527)\\\" x=\\\"0 5.56 11.12\\\">our</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.379 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 163.5391 669.2527)\\\" x=\\\"0 5.56 11.12 13.9 16.18 19.51\\\">entire</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 188.6123 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 191.7724 669.2527)\\\" x=\\\"0 5.56 11.12 14.45 20.01 25.57 33.9 39.46 45.02 47.8\\\">agreement.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 242.3583 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 245.5184 669.2527)\\\" x=\\\"0 9.44\\\">We</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 260.5184 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 263.6785 669.2527)\\\" x=\\\"0 5.56 11.12 16.12\\\">have</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 285.363 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 288.5231 669.2527)\\\" x=\\\"0 8.33 13.89 19.45\\\">made</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 313.5378 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 316.6978 669.2527)\\\" x=\\\"0 5.56\\\">no</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 327.8209 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 330.981 669.2527)\\\" x=\\\"0 5.56 8.89 14.45 22.78 25.06 30.06 35.62\\\">promises</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.606 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 374.766 669.2527)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.1059 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 386.266 669.2527)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.389 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 405.5491 669.2527)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.4504 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 422.6105 669.2527)\\\" x=\\\"0 5 10.56 16.12 18.9 24.46 26.74 32.3 37.86\\\">contained</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.0383 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 469.1983 669.2527)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 477.0401 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 480.2002 669.2527)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 495.8203 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 498.9804 669.2527)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 547.8964 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 551.0565 669.2527)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.9481 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 563.1082 669.2527)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 657.9344)\\\" x=\\\"0 5 10.56 15.56 21.12 23.78 29.34 32.12 37.68 43.24 46.57 49.23 54.79 60.35 65.35 70.91 79.24 84.8 90.36 93.14 98.14 100.92 103.58 110.25 115.81 120.81 123.47 128.47 134.03 139.59 145.15 150.71 156.27 158.93 161.71 167.27 169.93 172.71 178.27 180.55 185.55 188.21 194.88 200.44 203.77 209.33 214.89 223.22 228.78 234.34 237.12 239.78 248.11 253.67 258.67 261.45 264.11 269.67 275.23 277.89 285.11 288.44 290.72 293.5 296.28 301.84 307.4 310.06 315.62 321.18 326.74 329.4 334.4 336.68 342.24 347.8 353.36 358.92 361.58 367.14 372.14 374.8 379.8 385.36 390.92 393.58 399.14 404.7 410.26 412.92 418.48 423.48\\\">such other documents. Any change to this Agreement must be written and signed by you and us.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 644.616)\\\" x=\\\"0 7.22 14.44 21.11 27.22 35 43.33 50\\\">CUSTOMER</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 90.3217 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 93.5458 644.616)\\\" x=\\\"0 8.33 16.11 23.33 26.11 32.22 35 41.67\\\">MODIFIED</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 142.4325 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 145.6566 644.616)\\\" x=\\\"0 6.67 13.34 20.01 28.34 35.01 42.23\\\">PAYMENT</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 193.9964 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 197.2205 644.616)\\\" x=\\\"0 7.22 13.89 20 26.67\\\">DATES</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 230.5603 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 233.7844 644.616)\\\" x=\\\"0 6.67 13.89\\\">AND</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 254.8977 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 258.1218 644.616)\\\" x=\\\"0 6.11 13.33 20 27.78 35 41.67 48.89 56.11 62.78\\\">FREQUENCY.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 323.6833 644.616)\\\" x=\\\"0 3.2241\\\">  </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 330.1315 644.616)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 347.3629 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 350.587 644.616)\\\" x=\\\"0 5.56 11.12 13.9 19.46\\\">dates</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.0499 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 378.274 644.616)\\\" x=\\\"0 2.78 8.34 11.67\\\">for,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 392.7222 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 395.9463 644.616)\\\" x=\\\"0 2.78 6.11 11.67 17.23 22.79 28.35 33.91 38.91\\\">frequency</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 439.8623 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 443.0864 644.616)\\\" x=\\\"0 5.56 8.34\\\">of,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.2046 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 457.4286 644.616)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57\\\">number</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 491.3349 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 494.559 644.616)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 502.8988 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 506.1229 644.616)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 522.8075 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 526.0316 644.616)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.386 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 562.6101 644.616)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 633.2977)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 68.1781 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 72.0521 633.2977)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46\\\">Payments</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 116.515 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 120.389 633.2977)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 128.2308 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 132.1048 633.2977)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 147.7249 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 151.5989 633.2977)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 200.5149 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 204.3889 633.2977)\\\" x=\\\"0 5.56 8.89\\\">are</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 218.842 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 222.716 633.2977)\\\" x=\\\"0 5.56 11.12 16.12 21.68\\\">based</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 249.9621 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 253.8361 633.2977)\\\" x=\\\"0 5.56 11.12 16.68\\\">upon</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.0822 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 279.9562 633.2977)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 293.8575 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 297.7315 633.2977)\\\" x=\\\"0 5.56 11.12 16.12 21.68 27.24\\\">payday</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.9776 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 333.8516 633.2977)\\\" x=\\\"0 2.28 7.84 10.62 16.18 19.51 27.84 33.4 36.18 38.46 44.02\\\">information</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.4366 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 387.3105 633.2977)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.4336 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.3076 633.2977)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29 32.85\\\">provided</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 445.7255 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 449.5995 633.2977)\\\" x=\\\"0 7.22 9.5 12.28\\\">with</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.4413 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 471.3153 633.2977)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 490.7684 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 494.6424 633.2977)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 34.58 36.86 42.42 47.98\\\">application.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 545.409 633.2977)\\\" x=\\\"0 3.874\\\">  </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.157 633.2977)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 621.9793)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 51.9916 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 55.3463 621.9793)\\\" x=\\\"0 5 10.56 16.12 18.9 24.46 29.46\\\">contact</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 87.5875 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 90.9422 621.9793)\\\" x=\\\"0 5.56 11.12\\\">our</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 105.3953 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 108.75 621.9793)\\\" x=\\\"0 5 10.56 15.56 18.34 23.9 32.23 37.79\\\">customer</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 149.873 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 153.2277 621.9793)\\\" x=\\\"0 5 10.56 13.89 18.89 21.17 26.17\\\">service</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 184.9611 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 188.3158 621.9793)\\\" x=\\\"0 5.56 11.12 16.68 22.24 25.57 28.35 36.68 42.24 47.8\\\">department</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.9017 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 242.2564 621.9793)\\\" x=\\\"0 5.56 8.89\\\">or,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 253.9263 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 257.281 621.9793)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.3396 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 265.6942 621.9793)\\\" x=\\\"0 5.56 10.56 16.12 18.4 20.68 26.24 31.8 34.08\\\">available</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 305.3427 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 308.6973 621.9793)\\\" x=\\\"0 5.56 10.56\\\">use</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 324.8204 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 328.1751 621.9793)\\\" x=\\\"0 5.56 11.12 13.9 19.46 27.79 33.35 36.13 41.69\\\">automated</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.4309 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 378.7856 621.9793)\\\" x=\\\"0 8.33 13.89 19.45 25.01 30.01\\\">means,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 411.5786 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 414.9332 621.9793)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.9918 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 423.3465 621.9793)\\\" x=\\\"0 5.56 10.56 16.12 18.4 20.68 26.24 31.8 34.08 39.64\\\">available,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 465.7733 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 469.128 621.9793)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 477.4678 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 480.8225 621.9793)\\\" x=\\\"0 3.33 8.89 14.45 20.01 25.57 30.57\\\">request</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 514.177 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 517.5316 621.9793)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 523.0932 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 526.4478 621.9793)\\\" x=\\\"0 5 10.56 16.12 21.68 27.24\\\">change</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.2555 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 562.6101 621.9793)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 610.6609)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.0014 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 51.6173 610.6609)\\\" x=\\\"0 5 10 15.56 21.12 26.68 32.24 34.52 40.08\\\">scheduled</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 97.2667 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 101.8826 610.6609)\\\" x=\\\"0 5.56 11.12 13.9 19.46\\\">dates</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 126.3454 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 130.9613 610.6609)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 142.6313 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 147.2471 610.6609)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 163.9317 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 168.5476 610.6609)\\\" x=\\\"0 2.78 6.11 11.67 17.23 22.79 28.35 33.91 38.91\\\">frequency</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 212.4636 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 217.0795 610.6609)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.4193 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 230.0352 610.6609)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 265.1134 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 269.7292 610.6609)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46 44.46\\\">Payments.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 316.9705 610.6609)\\\" x=\\\"0 4.6159\\\">  </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 326.2022 610.6609)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 331.7589 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 336.3748 610.6609)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 349.158 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 353.7739 610.6609)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.68\\\">accept</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.2367 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 387.8526 610.6609)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.4142 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 398.03 610.6609)\\\" x=\\\"0 5 10.56 16.12 21.68 27.24\\\">change</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.8377 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 435.4535 610.6609)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 443.2953 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 447.9112 610.6609)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 461.8126 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 466.4285 610.6609)\\\" x=\\\"0 5 10 15.56 21.12 26.68 32.24 34.52 40.08\\\">scheduled</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.0779 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 516.6938 610.6609)\\\" x=\\\"0 5.56 11.12 13.9 19.46\\\">dates</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 541.1567 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 545.7726 610.6609)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 557.4425 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 562.0584 610.6609)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 599.3426)\\\" x=\\\"0 2.78 6.11 11.67 17.23 22.79 28.35 33.91 38.91\\\">frequency</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 77.016 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 80.7576 599.3426)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 89.0974 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 92.839 599.3426)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 127.9171 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 131.6587 599.3426)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46 44.46\\\">Payments,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 178.8999 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 182.6415 599.3426)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 196.5429 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 200.2844 599.3426)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.6389 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 237.3805 599.3426)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.7204 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 249.4619 599.3426)\\\" x=\\\"0 5.56 11.12 16.12\\\">each</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 271.1465 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 274.8881 599.3426)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 309.9662 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 313.7078 599.3426)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68\\\">Payment</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 353.1707 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 356.9123 599.3426)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 370.9748 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 374.7163 599.3426)\\\" x=\\\"0 5.56 11.12 13.9 19.46 27.79 33.35 36.13 38.41 43.41 48.97 51.25 53.53\\\">automatically</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 433.2515 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 436.9931 599.3426)\\\" x=\\\"0 5.56\\\">be</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 448.1161 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 451.8577 599.3426)\\\" x=\\\"0 8.33 13.89 19.45 21.73 24.51 26.79 32.35\\\">modified</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.7727 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 493.5143 599.3426)\\\" x=\\\"0 5\\\">so</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 504.0758 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 507.8174 599.3426)\\\" x=\\\"0 2.78 8.34 13.9\\\">that</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 524.4971 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 528.2387 599.3426)\\\" x=\\\"0 2.78 8.34 13.9\\\">that</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 544.9184 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 548.6599 599.3426)\\\" x=\\\"0 6.11 11.67 14.45 20.01\\\">Total</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 588.0242)\\\" x=\\\"0 7.22 12.78 17.78 20.56\\\">Cost,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 56.4398 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 60.6221 588.0242)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 77.3067 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.489 588.0242)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 95.3903 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 99.5726 588.0242)\\\" x=\\\"0 5.56 11.12 14.45 16.73 22.29\\\">period</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 127.4291 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 131.6113 588.0242)\\\" x=\\\"0 5.56 10.56 16.12\\\">over</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 151.0645 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 155.2467 588.0242)\\\" x=\\\"0 7.22 12.78 15.06 20.06\\\">which</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 180.8717 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 185.054 588.0242)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 198.9554 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 203.1377 588.0242)\\\" x=\\\"0 6.11 11.67 14.45 20.01\\\">Total</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.4277 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 229.61 588.0242)\\\" x=\\\"0 7.22 12.78 17.78\\\">Cost</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 250.1715 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 254.3538 588.0242)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 261.6341 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 265.8163 588.0242)\\\" x=\\\"0 5.56 11.12 13.4 18.96\\\">paid,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 287.5595 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 291.7418 588.0242)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 305.8043 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 309.9866 588.0242)\\\" x=\\\"0 3.33 8.89 17.22 22.78 25.06\\\">remain</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 340.6116 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 344.7938 588.0242)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 358.6952 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 362.8775 588.0242)\\\" x=\\\"0 5 10.56 18.89\\\">same</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 387.3306 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 391.5129 588.0242)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.0744 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 406.2567 588.0242)\\\" x=\\\"0 5.56 8.89 11.17 16.73\\\">prior</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 426.3202 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 430.5025 588.0242)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 438.8423 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 443.0246 588.0242)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.9259 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 461.1082 588.0242)\\\" x=\\\"0 3.33 8.89 14.45 20.01 25.57 30.57 33.35 38.91\\\">requested</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 505.5858 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 509.768 588.0242)\\\" x=\\\"0 5 10.56 16.12 21.68 27.24 32.8\\\">change.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 545.354 588.0242)\\\" x=\\\"0 4.1823\\\">  </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.7185 588.0242)\\\" x=\\\"0 6.67 12.23\\\">Any</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 576.7059)\\\" x=\\\"0 3.33 8.89 11.67 17.23 22.79 27.79 33.35\\\">refences</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 71.4545 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 75.2825 576.7059)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 83.1243 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 86.9523 576.7059)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 102.5725 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 106.4005 576.7059)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 155.3165 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 159.1445 576.7059)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 167.4844 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 171.3124 576.7059)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 185.2138 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 189.0418 576.7059)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57 33.9\\\">number,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.7264 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 229.5544 576.7059)\\\" x=\\\"0 2.78 6.11 11.67 17.23 22.79 28.35 33.91 38.91 43.91\\\">frequency,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.2488 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 280.0768 576.7059)\\\" x=\\\"0 2.78 5.06 13.39 15.67 21.23\\\">timing</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 306.8688 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 310.6968 576.7059)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 327.3814 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 331.2094 576.7059)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 364.5639 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 368.3919 576.7059)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 376.7318 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 380.5598 576.7059)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 415.6379 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 419.466 576.7059)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46\\\">Payments</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 463.9289 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 467.7569 576.7059)\\\" x=\\\"0 3.33 8.89 11.67 17.23 20.56\\\">refers</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 493.3184 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 497.1465 576.7059)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 505.4863 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 509.3143 576.7059)\\\" x=\\\"0 5 10.56 15.56\\\">such</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 530.4374 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 534.2654 576.7059)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57 33.9\\\">number,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 565.3875)\\\" x=\\\"0 2.78 6.11 11.67 17.23 22.79 28.35 33.91 38.91 43.91 46.69 49.35 52.13 54.41 62.74 68.3 70.96 76.52 82.08 87.64 90.3 95.86 104.19 109.75 115.31 120.87 123.65 126.31 131.87 136.87 139.53 147.86 153.42 158.42 161.08 166.64 172.2 174.86 183.19 188.75 194.31 196.59 199.37 201.65 207.21 212.77 215.43 220.99 225.99 228.65 235.32 240.88 246.44 252 254.66 260.22 263 265.66 270.66 276.22 281.78 285.11 287.77 291.1 296.66 302.22 307.78 313.34 318.34 321.12\\\">frequency, time and amount as may be modified by Snap at your request.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 552.0691)\\\" x=\\\"0 6.67 13.34 20.01 26.68 33.9 40.57 47.24 50.02 55.58 58.36 64.47 71.14\\\">SEVERABILITY.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 107.016 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 110.2288 552.0691)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 115.7855 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 118.9983 552.0691)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 124.5598 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 127.7726 552.0691)\\\" x=\\\"0 5 10.56 16.12 19.45\\\">court</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 150.004 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 153.2169 552.0691)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 162.1085 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 165.3213 552.0691)\\\" x=\\\"0 5.56 8.34 13.9 19.46\\\">other</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 188.1142 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 191.327 552.0691)\\\" x=\\\"0 5.56 7.84 12.84 18.4 23.96 26.74\\\">dispute</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 223.6317 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 226.8445 552.0691)\\\" x=\\\"0 3.33 8.89 13.89 19.45 21.73 27.29 30.07 32.35 37.91\\\">resolution</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 270.3211 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 273.5339 552.0691)\\\" x=\\\"0 5.56 11.12 16.68\\\">body</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 295.2185 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 298.4313 552.0691)\\\" x=\\\"0 2.78 5.06 10.62 16.18\\\">finds</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.6129 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 322.8257 552.0691)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.9488 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 342.1616 552.0691)\\\" x=\\\"0 5.56 11.12 14.45\\\">part</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.393 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 362.6058 552.0691)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 370.9457 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 374.1585 552.0691)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 389.7786 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 392.9914 552.0691)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 441.9074 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 445.1202 552.0691)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 453.4601 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 456.6729 552.0691)\\\" x=\\\"0 5.56\\\">be</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.7959 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 471.0087 552.0691)\\\" x=\\\"0 5 10.56 12.84\\\">void</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.4121 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 492.6249 552.0691)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.5165 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 504.7293 552.0691)\\\" x=\\\"0 5.56 11.12 16.68 22.24 25.02 30.58 33.91 38.91 44.47 50.03 55.59 57.87 63.43\\\">u* D E M O *e,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 540.7508)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 48.7201 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 53.1394 540.7508)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 102.0554 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 106.4747 540.7508)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 113.755 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 118.1743 540.7508)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 126.5142 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 130.9335 540.7508)\\\" x=\\\"0 5.56\\\">be</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 142.0565 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 146.4758 540.7508)\\\" x=\\\"0 3.33 8.89 14.45\\\">read</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 166.4905 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 170.9097 540.7508)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 181.4713 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 185.8906 540.7508)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 190.9492 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 195.3685 540.7508)\\\" x=\\\"0 2.78 8.34 13.9\\\">that</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 212.0482 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 216.4675 540.7508)\\\" x=\\\"0 5.56 11.12 14.45\\\">part</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.6989 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 238.1182 540.7508)\\\" x=\\\"0 7.22 12.78 16.11\\\">were</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.793 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 264.2123 540.7508)\\\" x=\\\"0 5.56 11.12 16.12 21.68\\\">never</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 289.227 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 293.6463 540.7508)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.2078 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 303.6271 540.7508)\\\" x=\\\"0 5.56 11.12 14.45\\\">part</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 320.8585 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 325.2778 540.7508)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 333.6177 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.037 540.7508)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 353.6571 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 358.0764 540.7508)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 409.7707 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 414.19 540.7508)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 431.4215 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 435.8408 540.7508)\\\" x=\\\"0 3.33 8.89 13.89\\\">rest</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 452.5107 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 456.93 540.7508)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 465.2699 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 469.6891 540.7508)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 483.5905 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 488.0098 540.7508)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 536.9258 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 541.3451 540.7508)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 555.4076 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 559.8269 540.7508)\\\" x=\\\"0 5.56\\\">be</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 529.4324)\\\" x=\\\"0 5.56 11.12 13.9 19.46 22.79 27.79 33.35 38.91 44.47 46.75 52.31\\\">enforceable.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 516.1141)\\\" x=\\\"0 6.67 13.89 21.67 28.89 31.67 38.34 41.12 47.23 53.9\\\">PROHIBITED</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 94.2182 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 97.4569 516.1141)\\\" x=\\\"0 6.67 13.89 20 26.67\\\">ACTS.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 126.9051 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 130.1438 516.1141)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 147.9368 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 151.1754 516.1141)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 165.2379 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 168.4766 516.1141)\\\" x=\\\"0 5 10.56 16.12\\\">keep</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 190.1612 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 193.3999 516.1141)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 207.3013 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.5399 516.1141)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 248.3329 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 251.5716 516.1141)\\\" x=\\\"0 2.78 6.11 11.67\\\">free</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 268.8031 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 272.0417 516.1141)\\\" x=\\\"0 2.78 6.11 11.67\\\">from</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 292.0417 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 295.2804 516.1141)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 311.4035 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 314.6422 516.1141)\\\" x=\\\"0 2.28 4.56 10.12 15.68\\\">liens</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.3258 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.5645 516.1141)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 347.4561 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 350.6947 516.1141)\\\" x=\\\"0 5 7.28 12.84 15.12 23.45 28.45\\\">claims.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 381.9252 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 385.1639 516.1141)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.9569 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 406.1956 516.1141)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 420.2581 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 423.4968 516.1141)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 437.3981 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 440.6368 516.1141)\\\" x=\\\"0 5.56 11.12 18.34\\\">pawn</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 464.5431 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 467.7818 516.1141)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 476.6734 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 479.912 516.1141)\\\" x=\\\"0 5.56 7.84 13.4 18.96 24.52\\\">pledge</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.9999 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 513.2386 516.1141)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 527.14 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 530.3787 516.1141)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 504.7957)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 50.893 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 55.1549 504.7957)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 69.2174 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 73.4794 504.7957)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 87.3807 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 91.6427 504.7957)\\\" x=\\\"0 8.33 13.89 18.89\\\">move</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 116.0958 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 120.3578 504.7957)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 134.2592 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 138.5211 504.7957)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 176.3141 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 180.576 504.7957)\\\" x=\\\"0 5.56 11.12 13.9 18.9 21.18 26.74\\\">outside</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 212.8807 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 217.1427 504.7957)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.4825 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 229.7445 504.7957)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 243.6458 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 247.9078 504.7957)\\\" x=\\\"0 5.56 11.12 16.68 20.01 25.57 30.57\\\">address</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 283.484 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 287.7459 504.7957)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 303.869 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 308.1309 504.7957)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29 32.85\\\">provided</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 346.5489 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 350.8109 504.7957)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.1507 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 363.4127 504.7957)\\\" x=\\\"0 5.56 10.56\\\">us,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 376.7525 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 381.0145 504.7957)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 397.699 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 401.961 504.7957)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 412.5225 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 416.7845 504.7957)\\\" x=\\\"0 5.56 11.12 16.68 22.24 25.02 30.58 36.14\\\">updated,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 455.7103 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 459.9722 504.7957)\\\" x=\\\"0 5.56 11.12 13.4 18.96 23.96\\\">unless</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 488.9371 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 493.199 504.7957)\\\" x=\\\"0 2.28\\\">it</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 498.2576 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 502.5196 504.7957)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.7998 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 514.0618 504.7957)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 522.4016 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 526.6636 504.7957)\\\" x=\\\"0 3.33 8.89 11.67 17.23 20.56\\\">return</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.7867 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0486 504.7957)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 493.4773)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 70.893 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 74.775 493.4773)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 83.1148 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 86.9968 493.4773)\\\" x=\\\"0 5.56 10.56\\\">us,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 100.3367 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 104.2187 493.4773)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 113.1103 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 116.9923 493.4773)\\\" x=\\\"0 5.56 11.12\\\">our</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 131.4454 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 135.3274 493.4773)\\\" x=\\\"0 5.56 11.12 16.12 18.4 23.96 29.52 35.08 40.64\\\">designee.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 178.7551 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 182.6371 493.4773)\\\" x=\\\"0 6.11\\\">To</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 194.307 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 198.189 493.4773)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 212.0904 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 215.9724 493.4773)\\\" x=\\\"0 5.56 10.56 13.34 18.9 24.46\\\">extent</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 243.2136 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 247.0956 493.4773)\\\" x=\\\"0 5.56 10.56\\\">use</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 263.2187 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 267.1007 493.4773)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.4405 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 279.3225 493.4773)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 293.2239 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 297.1059 493.4773)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 334.8988 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.7808 493.4773)\\\" x=\\\"0 3.33 8.89 14.45 20.01 22.29 25.62 31.18\\\">requires</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 374.9674 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 378.8494 493.4773)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 394.9724 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 398.8544 493.4773)\\\" x=\\\"0 8.33 10.61 16.17 18.45 26.78 32.34\\\">minimum</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 439.5282 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 443.4102 493.4773)\\\" x=\\\"0 5 8.33 10.61 13.39 18.95 22.28 24.56\\\">criteria</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 473.5323 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 477.4143 493.4773)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.0842 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 492.9662 493.4773)\\\" x=\\\"0 5.56 10.56 16.12\\\">use,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 511.8676 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 515.7496 493.4773)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24 28.52 34.08\\\">including</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 555.3981 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 559.2801 493.4773)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 482.159)\\\" x=\\\"0 5.56 10.56 16.12 24.45 30.01 32.29\\\">example</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 70.9565 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 74.5435 482.159)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 80.105 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 83.6921 482.159)\\\" x=\\\"0 5.56 11.12 14.45 22.78 25.06 27.84\\\">permit,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 114.3123 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 117.8993 482.159)\\\" x=\\\"0 2.28 4.56 9.56 15.12 20.68 25.68 31.24\\\">license,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 151.9228 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 155.5098 482.159)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 164.4014 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 167.9885 482.159)\\\" x=\\\"0 8.33 10.61 16.17 18.45 26.78 32.34\\\">minimum</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 208.6624 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 212.2494 482.159)\\\" x=\\\"0 5.56 11.12 16.68\\\">age,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.7123 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 235.2994 482.159)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 251.4224 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 255.0095 482.159)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 269.072 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 272.6591 482.159)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 286.5605 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 290.1476 482.159)\\\" x=\\\"0 5.56 7.84 10.12 15.68\\\">allow</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 313.0528 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 316.6399 482.159)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 332.7629 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 336.35 482.159)\\\" x=\\\"0 2.28 10.61 16.17 19.5 25.06 30.62 36.18\\\">improper</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.8666 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 379.4537 482.159)\\\" x=\\\"0 5.56 10.56\\\">use</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 395.5767 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 399.1638 482.159)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 407.5037 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 411.0907 482.159)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 424.9921 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 428.5792 482.159)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 469.1505 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 472.7376 482.159)\\\" x=\\\"0 6.67\\\">As</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.4075 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 487.9946 482.159)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64 45.2\\\">applicable,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 535.9828 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 539.5699 482.159)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.2399 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 554.8269 482.159)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 470.8406)\\\" x=\\\"0 5.56 11.12 16.68 19.46\\\">boat,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 55.3412 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 60.5175 470.8406)\\\" x=\\\"0 8.33 13.89 16.67 22.23 25.56 27.84 32.84 38.4\\\">motorized</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 104.4823 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 109.6586 470.8406)\\\" x=\\\"0 5 10.56 16.12 18.4 23.4 25.68 31.24\\\">vehicle,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 143.6821 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.8584 470.8406)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 157.75 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 162.9263 470.8406)\\\" x=\\\"0 5.56 8.34 13.9 19.46 22.79 30.01 32.29 37.29\\\">otherwise</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 205.7827 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.959 470.8406)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64 45.2\\\">applicable,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 258.9473 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 264.1236 470.8406)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.2466 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 285.4229 470.8406)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.4854 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 304.6617 470.8406)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 318.5631 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 323.7394 470.8406)\\\" x=\\\"0 5.56 11.12 14.45 22.78 25.06\\\">permit</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.5812 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 356.7575 470.8406)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 372.8805 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 378.0568 470.8406)\\\" x=\\\"0 5.56 11.12 14.45 19.45 25.01 30.57\\\">person,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 411.4113 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 416.5876 470.8406)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24 28.52 34.08\\\">including</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.236 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 461.4123 470.8406)\\\" x=\\\"0 5 10.56 16.12 19.45 24.45 30.01 32.29 35.07\\\">yourself,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.2639 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 504.4402 470.8406)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.78 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 517.9563 470.8406)\\\" x=\\\"0 5.56 11.12 16.68 20.01 25.57 28.35\\\">operate</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.8723 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0486 470.8406)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 459.5223)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 70.893 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 75.2445 459.5223)\\\" x=\\\"0 7.22 12.78 15.06 17.34\\\">while</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 98.1497 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 102.5012 459.5223)\\\" x=\\\"0 5 10.56 15.56\\\">such</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 123.6243 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 127.9757 459.5223)\\\" x=\\\"0 5.56 11.12 14.45 19.45 25.01\\\">person</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 158.5519 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 162.9034 459.5223)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 170.1837 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 174.5351 459.5223)\\\" x=\\\"0 2.28 10.61 16.17 21.73 24.01 27.34 32.9\\\">impaired</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 213.0019 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 217.3534 459.5223)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 227.915 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 232.2664 459.5223)\\\" x=\\\"0 5.56 8.89 14.45 20.01 25.01\\\">drugs,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 260.0594 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 264.4109 459.5223)\\\" x=\\\"0 5.56 7.84 12.84 18.4 23.96 29.52\\\">alcohol</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 296.2175 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 300.569 459.5223)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 309.4606 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 313.8121 459.5223)\\\" x=\\\"0 2.78 6.11 11.67\\\">from</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 333.8121 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.1636 459.5223)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 354.2866 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 358.6381 459.5223)\\\" x=\\\"0 5.56 8.34 13.9 19.46\\\">other</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 381.4311 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 385.7826 459.5223)\\\" x=\\\"0 5 10.56 16.12 21.12 26.68\\\">cause.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 415.2455 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 419.5969 459.5223)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 437.3899 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 441.7414 459.5223)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 455.8039 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 460.1554 459.5223)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.0567 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 478.4082 459.5223)\\\" x=\\\"0 5.56 10.56\\\">use</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 494.5313 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 498.8828 459.5223)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.7841 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 517.1356 459.5223)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 554.9286 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 559.2801 459.5223)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 448.2039)\\\" x=\\\"0 5 10.56 18.89 27.22 32.78 36.11 41.11 43.39 48.95 51.23 53.89 59.45 65.01 68.34 73.9 79.46 84.46 90.02 95.02\\\">commercial purposes.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 434.8855)\\\" x=\\\"0 9.44 16.11 23.33 30.55 33.33 40.55 48.33\\\">WARNING:</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 84.2084 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 87.8242 434.8855)\\\" x=\\\"0 7.22 12.78 15.06 20.62 25.62\\\">Unless</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 118.4492 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 122.065 434.8855)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 138.188 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 141.8038 434.8855)\\\" x=\\\"0 5.56 11.12 16.12\\\">have</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 163.4883 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 167.1041 434.8855)\\\" x=\\\"0 5.56 10.56 16.12 21.68 23.96 27.29 32.85\\\">acquired</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 205.5221 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 209.1378 434.8855)\\\" x=\\\"0 5.56 12.78 18.34 23.9 27.23 32.23 37.79 40.07\\\">ownership</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 254.7775 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 258.3933 434.8855)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 266.7331 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 270.3489 434.8855)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 284.2503 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 287.866 434.8855)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 328.4373 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 332.0531 434.8855)\\\" x=\\\"0 5.56 8.34 11.12 16.68 25.01 30.57 33.35 35.63 41.19\\\">attempting</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 378.806 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 382.4218 434.8855)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 390.7616 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 394.3774 434.8855)\\\" x=\\\"0 5 10.56 12.84 15.12\\\">sell,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 412.2778 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 415.8936 434.8855)\\\" x=\\\"0 5.56 11.12 18.34 23.9\\\">pawn,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 442.5781 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 446.1939 434.8855)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 455.0855 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 458.7013 434.8855)\\\" x=\\\"0 2.28 4.56 10.12\\\">lien</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.3849 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 478.0007 434.8855)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 491.902 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 495.5178 434.8855)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 533.3108 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 536.9265 434.8855)\\\" x=\\\"0 5 7.28 12.84 15.12 20.68 23.46 29.02\\\">violates</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 423.5672)\\\" x=\\\"0 5 7.78 13.34 16.12 21.68 24.34 26.62 32.18 39.4\\\">state law.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 410.2488)\\\" x=\\\"0 6.67 13.34 20.01 22.79 30.57 37.79 46.12 52.79 60.01 66.12\\\">ASSIGNMENT.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 101.9965 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 104.9066 410.2488)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 122.6995 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 125.6096 410.2488)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 144.5012 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 147.4112 410.2488)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 161.3126 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 164.2227 410.2488)\\\" x=\\\"0 5.56 10.56 15.56 17.84 23.4\\\">assign</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 193.1875 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 196.0976 410.2488)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 211.7177 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 214.6278 410.2488)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 263.5438 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 266.4538 410.2488)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.3454 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 278.2555 410.2488)\\\" x=\\\"0 2.78 6.11 11.67 17.23 22.23 25.01 30.57\\\">transfer</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.1569 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 315.0669 410.2488)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 328.9683 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 331.8784 410.2488)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 369.6713 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 372.5814 410.2488)\\\" x=\\\"0 7.22 9.5 12.28 17.84 23.4 28.96\\\">without</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 404.3246 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.2346 410.2488)\\\" x=\\\"0 5.56 11.12\\\">our</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 421.6877 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 424.5978 410.2488)\\\" x=\\\"0 5.56 8.89 11.17 16.73\\\">prior</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 444.6613 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 447.5713 410.2488)\\\" x=\\\"0 7.22 10.55 12.83 15.61 18.39 23.95\\\">written</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 477.0831 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 479.9931 410.2488)\\\" x=\\\"0 5.56 11.12 14.45 22.78 25.06 30.06 35.06 37.34 42.9 48.46\\\">permission.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 531.2382 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 534.1483 410.2488)\\\" x=\\\"0 9.44\\\">We</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.1483 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 552.0584 410.2488)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 398.9305)\\\" x=\\\"0 5.56 10.56 15.56 17.84 23.4 28.96 31.62 37.18 39.46 41.74 44.4 49.96 52.74 55.4 60.96 66.52 69.85 72.51 75.84 78.12 83.68 89.24 92.02 97.02 99.68 105.24 110.8 116.36 121.92 125.25 127.91 130.69 136.25 138.53 143.53 146.19 152.86 158.42 161.75 167.31 172.87 181.2 186.76 192.32 195.1 197.88 200.54 207.21 212.77 217.77 220.43 225.99 231.55 234.88 239.88 245.44 251 253.66 260.88 266.44 269.1 274.66 279.66 284.66 286.94 292.5 298.06 300.72 303 305.78 308.44 311.22 316.78 319.44 327.77 333.33 338.33 340.99 344.32 349.88 355.44 360.44 365.44 367.72 373.28 378.84 381.5 383.78 386.56\\\">assign all of our ri* D E M O *this Agreement. Any person we assign it to may reassign it.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 385.6121)\\\" x=\\\"0 6.67 13.89 21.11 28.89 36.11\\\">ACCORD</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 76.435 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 79.3433 385.6121)\\\" x=\\\"0 6.67 13.89\\\">AND</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 100.4566 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 103.3649 385.6121)\\\" x=\\\"0 6.67 13.34 19.45 22.23 28.9 35.01 41.68 48.9 55.01 57.79 65.57 72.79\\\">SATISFACTION.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 178.9265 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 181.8348 385.6121)\\\" x=\\\"0 6.67 12.23\\\">Any</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 199.0662 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 201.9746 385.6121)\\\" x=\\\"0 5 7.78 13.34 16.12 21.68 30.01 35.57 41.13\\\">statement</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.8857 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 248.794 385.6121)\\\" x=\\\"0 5.56 10.56 15.56 21.12 29.45 35.01 40.57 46.13 51.13 53.41 58.97\\\">accompanying</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 313.3351 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 316.2434 385.6121)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.6965 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.6049 385.6121)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 376.9593 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 379.8677 385.6121)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.2075 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 391.1159 385.6121)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 405.0172 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.9256 385.6121)\\\" x=\\\"0 5.56 8.34 11.12 16.68 21.68\\\">effect</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 432.3836 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 435.2919 385.6121)\\\" x=\\\"0 2.78 8.34 13.9\\\">that</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 451.9716 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 454.88 385.6121)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.3331 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 477.2414 385.6121)\\\" x=\\\"0 5.56 11.12 13.4 18.96 24.52 29.52\\\">balance</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.3293 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 515.2376 385.6121)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 522.5179 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 525.4263 385.6121)\\\" x=\\\"0 5.56 11.12 13.4\\\">paid</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 544.3911 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 547.2995 385.6121)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 555.1412 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 558.0496 385.6121)\\\" x=\\\"0 2.78 8.34 10.62\\\">full</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 374.2937)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.1625 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 50.8231 374.2937)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 64.7245 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 68.3851 374.2937)\\\" x=\\\"0 5.56 7.84 13.4\\\">bind</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 87.35 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 91.0106 374.2937)\\\" x=\\\"0 5.56 10.56\\\">us.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 104.3505 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 108.0111 374.2937)\\\" x=\\\"0 7.78 13.34\\\">Our</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 124.681 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 128.3417 374.2937)\\\" x=\\\"0 5.56 11.12 16.68 22.24 27.24 29.52\\\">deposit</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.6464 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 164.307 374.2937)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 172.6468 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 176.3075 374.2937)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 192.4305 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 196.0912 374.2937)\\\" x=\\\"0 5 10.56 15.56\\\">such</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 217.2142 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 220.8748 374.2937)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.2293 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 262.89 374.2937)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.9525 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 280.6131 374.2937)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 294.5145 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 298.1751 374.2937)\\\" x=\\\"0 5 10.56 16.12 21.12 23.9 26.18 28.96 34.52 37.3\\\">constitute</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 341.0365 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 344.6971 374.2937)\\\" x=\\\"0 5.56\\\">an</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.8201 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 359.4808 374.2937)\\\" x=\\\"0 5.56 10.56 15.56 21.12 24.45\\\">accord</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 389.4954 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 393.1561 374.2937)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 409.8406 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 413.5013 374.2937)\\\" x=\\\"0 5 10.56 13.34 15.62 20.62 23.4 28.96 33.96 36.74 39.02 44.58 50.14\\\">satisfaction,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.4212 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 470.0818 374.2937)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.7664 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 490.427 374.2937)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 503.2102 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 506.8709 374.2937)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 525.7625 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 529.4231 374.2937)\\\" x=\\\"0 5.56 11.12 16.68 18.96\\\">apply</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.388 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0486 374.2937)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 362.9754)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57 38.35 41.01 43.79 49.35 52.01 57.01 62.57 68.13 71.46 74.12 79.68 84.68 89.68 95.24 100.8 106.36 109.14\\\">payment to your account.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 349.657)\\\" x=\\\"0 2.78 10 16.67 23.89 31.11 37.78 45 52.22 58.89 61.67 64.33 73.77 79.33 81.99 87.55 93.11 95.77 101.33 106.89 109.67 112.33 115.66 121.22 126.78 132.34 134.62 137.95 143.51 146.17 151.17 156.73 162.29 164.95 167.73 173.29 175.95 181.51 187.07 190.4 195.4 200.96 206.52 211.52 217.08 219.74 222.02 227.58 232.58 238.14 241.47 247.03 252.59 257.59 263.15 265.81 268.59 271.92 277.48 285.81 288.47 294.03 299.03 301.69 307.25 312.81 318.37 321.03 328.25 333.81 336.47 342.03 347.59 352.59 358.15 360.81 366.37 371.93 374.71 377.37 382.93 386.26 391.82 396.82 399.1 404.66 410.22 415.78 418.44 424 429.56 434.56 437.22 439.5 445.06 450.06 455.62 458.95 464.51 470.07 475.07 480.63 483.29 486.07 491.63 494.29 499.29 504.85 510.41\\\">INSURANCE. We do not require you to purchase insurance from us and we have not provided any insurance to you.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 336.3387)\\\" x=\\\"0 7.22 13.89 21.11 27.78 30.56 37.23 43.34 46.12 48.78 56 61.56 67.12 72.68 75.34 80.34 85.9 91.46 94.79 97.45 100.78 106.34 111.9 117.46 123.02 128.02 130.8 133.58 136.24 143.46 149.02 151.68 157.24 160.57 166.13 168.79 172.12 177.68 183.24 188.8 191.08 194.41 199.97 205.53 208.19 210.97 216.53 219.19 224.75 228.08 233.64 238.64 240.92 246.48 252.04 254.7 259.7 265.26 270.82 273.48 280.7 282.98 285.76 291.32 293.98 299.54 302.2 309.42 312.75 315.03 317.81 320.59 326.15 331.71 334.37 337.7 343.26 348.26 353.82 356.1 361.66 364.44 367.1 369.88 375.44 378.77 381.43 386.99 392.55 397.55 403.11 405.77 411.33 416.89 421.89 430.22 435.78 441.34 444.12 446.78 455.11 460.67 466.23 471.79\\\">RECEIPT. Upon your request, we are required to provide you with a written receipt for each payment made.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 323.0203)\\\" x=\\\"0 7.78 15.56 22.23 28.9 36.12 43.34 46.12 53.34\\\">GOVERNING</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 94.2182 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 97.2444 323.0203)\\\" x=\\\"0 5.56 12.23 21.67\\\">LAW.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 121.6926 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 124.7189 323.0203)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 141.9503 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 144.9765 323.0203)\\\" x=\\\"0 2.28 7.84\\\">law</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.04 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 163.0663 323.0203)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 171.4061 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 174.4323 323.0203)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 188.3337 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 191.3599 323.0203)\\\" x=\\\"0 5 7.78 13.34 16.12\\\">state</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 213.0396 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 216.0658 323.0203)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 223.9076 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 226.9339 323.0203)\\\" x=\\\"0 7.22 12.78 15.06 20.06\\\">which</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 252.5589 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 255.5851 323.0203)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 271.7082 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 274.7344 323.0203)\\\" x=\\\"0 3.33 8.89 13.89 16.17 21.73\\\">reside</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.0293 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 305.0555 323.0203)\\\" x=\\\"0 7.22 12.78 18.34\\\">when</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 328.9618 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 331.988 323.0203)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.1111 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 351.1373 323.0203)\\\" x=\\\"0 5 7.28 12.84 18.4 23.96\\\">signed</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.6637 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 383.6899 323.0203)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 399.31 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 402.3363 323.0203)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 451.2523 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 454.2785 323.0203)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 470.9631 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 473.9893 323.0203)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64\\\">applicable</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 519.1993 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 522.2255 323.0203)\\\" x=\\\"0 2.78 8.34 13.9 19.46 22.79 28.35\\\">federal</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.8603 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 555.8865 323.0203)\\\" x=\\\"0 2.28 7.84\\\">law</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 311.7019)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.1625 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 50.5142 311.7019)\\\" x=\\\"0 5.56 11.12 16.12 21.68 25.01\\\">govern</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 81.0904 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 84.4421 311.7019)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 98.3434 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 101.6951 311.7019)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 150.6111 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 153.9628 311.7019)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 170.6474 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 173.9991 311.7019)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 187.9005 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 191.2521 311.7019)\\\" x=\\\"0 2.28 7.84 10.62 16.18 19.51 25.07 28.4 33.96 36.74 42.3 45.08 47.36 52.92\\\">interpretation</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 249.7385 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 253.0902 311.7019)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 261.43 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 264.7817 311.7019)\\\" x=\\\"0 2.28 5.06\\\">it,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 272.6186 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 275.9703 311.7019)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.68\\\">except</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 305.4332 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 308.7849 311.7019)\\\" x=\\\"0 2.78 8.34 13.9\\\">that</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 325.4646 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 328.8163 311.7019)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 342.7176 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 346.0693 311.7019)\\\" x=\\\"0 6.11 11.67 17.23 22.79 26.12 31.68\\\">Federal</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.0342 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 383.3859 311.7019)\\\" x=\\\"0 6.67 10 15.56 17.84 20.62 23.95 29.51 32.29 34.57 40.13\\\">Arbitration</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 429.0792 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 432.4309 311.7019)\\\" x=\\\"0 6.67 11.67\\\">Act</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 446.8791 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 450.2308 311.7019)\\\" x=\\\"0 5.56 10.56 16.12 19.45 25.01 30.01 35.01 37.29\\\">expressly</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 492.5258 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 495.8775 311.7019)\\\" x=\\\"0 5.56 11.12 16.12 21.68 25.01 30.57\\\">governs</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 531.4536 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 534.8053 311.7019)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 548.7067 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 552.0584 311.7019)\\\" x=\\\"0 5 10.56 13.89\\\">Jury</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 300.3836)\\\" x=\\\"0 6.11 9.44 11.72 17.28 19.56 22.22 31.66 37.22 39.5 44.5 50.06 53.39 56.05 61.61 67.17 72.73 75.39 82.06 85.39 90.95 93.23 96.01 99.34 104.9 107.68 109.96 115.52 121.08 123.74 130.96 133.24 138.8 144.36 149.36 154.92 157.7 160.36 167.03 172.59 178.15 180.81 186.37 191.37 196.37 201.93 207.49 214.71 216.99 222.55 228.11 233.67 239.23 241.89 244.67 250.23 255.79 258.57 261.23 266.23 271.79 277.35 280.01 283.34 288.9 293.9 296.18 301.74 307.3 309.96 315.52 318.3 320.96 323.74 329.3 334.86 337.52 343.08 348.64 354.2 357.53 363.09 368.09 373.09 375.75 378.03 380.31 385.31 388.09 393.65 399.21 401.87 407.43 412.99 418.55 423.55 429.11 431.77 437.33 442.89 445.55 448.33 453.89 459.45 462.11 468.78 474.34 477.67 483.23 488.79 497.12 502.68 508.24 511.02 513.68 520.9 526.46 529.24 534.8\\\">Trial Waiver and Arbitration Clause. You acknowledge that you reside at the address listed above on the Agreement Date.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 287.0652)\\\" x=\\\"0 7.22 15 22.22 28.89 36.11 44.44 51.11\\\">CONSUMER</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 91.435 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 94.8938 287.0652)\\\" x=\\\"0 7.22 13.89 20.56 28.34 35.56 41.67\\\">REPORT.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 139.3421 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 142.8009 287.0652)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.5939 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 164.0527 287.0652)\\\" x=\\\"0 5.56 11.12 16.12\\\">have</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 185.7373 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 189.1961 287.0652)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 28.35 30.63 35.63 41.19\\\">authorized</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 235.9539 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 239.4128 287.0652)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 249.9743 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 253.4331 287.0652)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 261.773 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 265.2318 287.0652)\\\" x=\\\"0 5.56 11.12 13.9 19.46 21.74\\\">obtain</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 292.5365 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 295.9953 287.0652)\\\" x=\\\"0 5.56 11.12\\\">one</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.6799 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 316.1388 287.0652)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 325.0304 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 328.4892 287.0652)\\\" x=\\\"0 8.33 13.89 17.22\\\">more</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.2724 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 354.7312 287.0652)\\\" x=\\\"0 5 10.56 16.12 21.12 26.68 35.01 40.57\\\">consumer</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 398.6375 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 402.0963 287.0652)\\\" x=\\\"0 3.33 8.89 14.45 20.01 23.34 26.12\\\">reports</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 433.2194 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 436.6782 287.0652)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.8013 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 451.2601 287.0652)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.3832 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 470.842 287.0652)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 478.6838 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 482.1427 287.0652)\\\" x=\\\"0 5 10.56 16.12 21.68 27.24 32.24 35.02 37.3 42.86\\\">connection</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 530.5704 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 534.0292 287.0652)\\\" x=\\\"0 7.22 9.5 12.28\\\">with</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.871 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 555.3299 287.0652)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 275.7469)\\\" x=\\\"0 2.78 6.11 11.67 17.23 22.23 27.79 32.79 35.57 37.85 43.41 48.97\\\">transaction.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 262.4285)\\\" x=\\\"0 7.22 14.44 21.11 28.33 31.11\\\">CREDIT</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 70.3217 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 73.874 262.4285)\\\" x=\\\"0 7.22 13.89 20.56 28.34 35.56 41.67 44.45 51.67 59.45\\\">REPORTING.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.1005 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 139.6529 262.4285)\\\" x=\\\"0 9.44\\\">We</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 154.6529 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 158.2051 262.4285)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 177.0967 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 180.6491 262.4285)\\\" x=\\\"0 3.33 8.89 14.45 20.01 23.34\\\">report</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 206.7721 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.3244 262.4285)\\\" x=\\\"0 2.28 7.84 10.62 16.18 19.51 27.84 33.4 36.18 38.46 44.02\\\">information</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.9094 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 263.4617 262.4285)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 271.8015 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 275.3538 262.4285)\\\" x=\\\"0 5 8.33 13.89 19.45 21.73\\\">credit</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.8655 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 303.4178 262.4285)\\\" x=\\\"0 5.56 11.12 14.45 20.01 25.57 31.13\\\">bureaus</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 339.5555 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 343.1078 262.4285)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.9994 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 355.5517 262.4285)\\\" x=\\\"0 5.56 8.34 13.9 19.46\\\">other</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 378.3447 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 381.897 262.4285)\\\" x=\\\"0 2.78 8.34 10.62 13.95 19.51 22.84 28.4 33.96 37.29 40.07 42.35 47.91\\\">third-parties</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.812 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 438.3644 262.4285)\\\" x=\\\"0 5.56 11.12 16.68 22.24\\\">about</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 463.3888 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 466.9411 262.4285)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.3942 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 489.9465 262.4285)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.68 32.24 35.02\\\">account,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 527.7492 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 531.3015 262.4285)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24 28.52 34.08\\\">including</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 251.1102)\\\" x=\\\"0 2.28 7.84 10.62 16.18 18.84 24.4 27.73 30.39 38.72 41 46 51 56.56 62.12 64.78 70.34 75.9 80.9 89.23 94.79 100.35 103.13 108.13 110.91 113.57 119.13 124.69 130.25 132.91 138.47 144.03 149.03 151.69 157.25 162.81 167.81 170.09 172.87 175.15 180.15 185.71 188.37 193.93 197.26 199.92 205.48 211.04 216.6 222.16 224.94 227.22 232.22 237.78 240.44 246 251 256 261.56 267.12 272.68 275.46 278.12 280.4 285.96 288.74 294.3 297.63 305.96 311.52 314.3 316.58 322.14 327.7 330.36 338.69 344.25 349.25 351.91 357.47 363.03 365.69 369.02 374.58 377.36 379.64 385.2 390.2 392.98 398.54 404.1 406.76 409.04 414.6 417.26 422.26 427.82 433.38 436.71 439.37 444.37 447.7 453.26 458.82 461.1 463.88 466.54 469.87 475.43 480.99 486.55 489.88 492.66\\\">late or missed payments, and any positive or negative account information may be reflected in your credit report.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 237.7918)\\\" x=\\\"0 2.78 10 17.22 23.89 32.22 39.44 42.22 48.33 51.11 58.33 65 71.11 73.89 81.67 88.89\\\">INDEMNIFICATION.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 124.765 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 128.29 237.7918)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.083 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 149.608 237.7918)\\\" x=\\\"0 5.56 11.12 14.45 20.01\\\">agree</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 175.1842 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 178.7092 237.7918)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 187.0491 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 190.5741 237.7918)\\\" x=\\\"0 2.28 7.84 13.4 18.96 27.29 32.85 35.13 37.91\\\">indemnify</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.4891 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 237.0141 237.7918)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.5756 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 251.1006 237.7918)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 267.7852 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 271.3102 237.7918)\\\" x=\\\"0 5.56 11.12 13.4\\\">hold</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.2751 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 293.8001 237.7918)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 304.3616 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 307.8866 237.7918)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 324.5712 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 328.0962 237.7918)\\\" x=\\\"0 5.56 11.12\\\">our</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 342.5493 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 346.0743 237.7918)\\\" x=\\\"0 5.56 10.56 15.56 17.84 23.4 28.96 34.52 40.08 45.08\\\">assignees,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.9405 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 397.4655 237.7918)\\\" x=\\\"0 5.56 11.12 16.68 22.24 25.02 30.02\\\">agents,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.2683 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 433.7933 237.7918)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 450.4779 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 454.0029 237.7918)\\\" x=\\\"0 2.28 7.84 12.84 18.4 21.73 27.29 30.62\\\">insurers</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.6279 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 493.1529 237.7918)\\\" x=\\\"0 5.56 11.12 14.45 22.78 25.06 30.62 35.62\\\">harmless</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 533.7779 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 537.3029 237.7918)\\\" x=\\\"0 2.78 6.11 11.67\\\">from</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 557.3029 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 560.8279 237.7918)\\\" x=\\\"0 5.56 7.84\\\">all</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 226.4734)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57 36.13 41.13\\\">damages,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 77.016 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 80.4241 226.4734)\\\" x=\\\"0 2.28 7.84 10.12 15.68 19.01 21.29 26.85 31.85\\\">injuries,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 115.0579 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 118.466 226.4734)\\\" x=\\\"0 5 7.28 12.84 15.12 23.45 28.45\\\">claims,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 149.6965 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 153.1046 226.4734)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57 36.13 41.13\\\">demands,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 197.0206 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 200.4287 226.4734)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 217.1132 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 220.5214 226.4734)\\\" x=\\\"0 5.56 10.56 16.12 21.68 27.24 32.24 37.8 42.8\\\">expenses,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 266.1073 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 269.5154 226.4734)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24 28.52 34.08\\\">including</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 309.1638 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 312.5719 226.4734)\\\" x=\\\"0 3.33 8.89 14.45 19.45 25.01 30.57 36.13 41.69 43.97\\\">reasonable</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 362.1129 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 365.521 226.4734)\\\" x=\\\"0 5.56 8.34 11.12 16.68 20.01 25.57 31.13 36.13 38.04\\\">attorney&apos;s</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 408.563 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 411.9711 226.4734)\\\" x=\\\"0 2.78 8.34 13.9\\\">fees</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.8725 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 434.2806 226.4734)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 442.6204 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 446.0285 226.4734)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 459.9299 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 463.338 226.4734)\\\" x=\\\"0 5.56 10.56 13.34 18.9 24.46\\\">extent</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 490.5792 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 493.9873 226.4734)\\\" x=\\\"0 5.56 11.12 14.45 22.78 25.06 27.84 30.62 36.18\\\">permitted</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 535.7305 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 539.1386 226.4734)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.7001 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.1082 226.4734)\\\" x=\\\"0 2.28 7.84 15.06\\\">law,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 215.1551)\\\" x=\\\"0 5.56 8.89 11.17 16.17 18.45 24.01\\\">arising</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 62.6752 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 67.1149 215.1551)\\\" x=\\\"0 5.56 11.12\\\">out</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 81.0163 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 85.4561 215.1551)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 93.7959 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 98.2356 215.1551)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 112.137 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 116.5767 215.1551)\\\" x=\\\"0 5 10.56 16.12 21.68 23.96 26.74 29.02 34.58 40.14\\\">condition,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 159.5016 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 163.9413 215.1551)\\\" x=\\\"0 8.33 13.89 16.17 21.73 24.51 30.07 35.63 41.19 46.75 51.75 57.31\\\">maintenance,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 224.039 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 228.4787 215.1551)\\\" x=\\\"0 5.56 10.56\\\">use</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 244.6017 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 249.0415 215.1551)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.9331 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 262.3728 215.1551)\\\" x=\\\"0 5.56 11.12 16.68 20.01 25.57 28.35 30.63 36.19\\\">operation</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 304.1307 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 308.5704 215.1551)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 316.9102 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 321.35 215.1551)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.2514 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 339.6911 215.1551)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.2624 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 384.7021 215.1551)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24 28.52 34.08\\\">including</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 424.3506 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 428.7903 215.1551)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.3518 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 438.7916 215.1551)\\\" x=\\\"0 5 7.28 12.84 15.12\\\">claim</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 462.2437 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 466.6835 215.1551)\\\" x=\\\"0 5.56 11.12 16.68 22.24\\\">under</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 492.2597 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 496.6994 215.1551)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 510.6008 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 515.0405 215.1551)\\\" x=\\\"0 5 7.78 11.11 13.39 18.39\\\">strict</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 536.2075 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 540.6472 215.1551)\\\" x=\\\"0 2.28 4.56 10.12 15.68 17.96 20.24 22.52 25.3\\\">liability</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 203.8367)\\\" x=\\\"0 5.56 11.12 16.12 18.9 22.23 24.51 30.07 35.63\\\">doctrine.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 190.5184)\\\" x=\\\"0 7.2217 15 21.1084 23.8867 31.1084 37.7783 44.4482\\\">NOTICES.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 80.3266 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 82.9828 190.5184)\\\" x=\\\"0 7.2217 12.7832 15.5615 17.8418 22.8418 28.4033\\\">Notices</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 116.3861 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 119.0424 190.5184)\\\" x=\\\"0 8.3301 13.8916\\\">may</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 137.934 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 140.5902 190.5184)\\\" x=\\\"0 5.5615\\\">be</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 151.7133 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 154.3695 190.5184)\\\" x=\\\"0 5.5615 7.8418 12.8418 18.4033\\\">given</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 178.3344 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 180.9906 190.5184)\\\" x=\\\"0 5.5615 11.123 14.4531 19.4531 25.0146 30.5762 36.1377 38.418 40.6982\\\">personally</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 226.6889 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 229.3451 190.5184)\\\" x=\\\"0 5.5615\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.2367 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 240.893 190.5184)\\\" x=\\\"0 5 10.5615 16.123\\\">sent</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.7943 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 262.4506 190.5184)\\\" x=\\\"0 5.5615\\\">by</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 273.0121 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 275.6684 190.5184)\\\" x=\\\"0 2.7783 5.0586 8.3887 13.3887\\\">first</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.8353 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 294.4916 190.5184)\\\" x=\\\"0 5 7.2803 12.8418 17.8418\\\">class</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 317.3334 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 319.9896 190.5184)\\\" x=\\\"0 8.3301 13.8916 16.1719 18.4522\\\">mail.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 341.2201 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 343.8764 190.5184)\\\" x=\\\"0 7.2217 12.7832 15.5615 17.8418 22.8418\\\">Notice</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 372.2797 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 374.9359 190.5184)\\\" x=\\\"0 8.3301 13.8916 16.1719 18.4522 24.0137\\\">mailed</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 404.5111 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.1674 190.5184)\\\" x=\\\"0 2.7783\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 415.5072 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 418.1635 190.5184)\\\" x=\\\"0 5.5615\\\">us</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 428.725 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 431.3812 190.5184)\\\" x=\\\"0 8.3301 13.8916 18.8916\\\">must</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 453.0512 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 455.7074 190.5184)\\\" x=\\\"0 5.5615\\\">be</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.8305 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 469.4867 190.5184)\\\" x=\\\"0 5 10.5615 16.1231\\\">sent</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 488.3881 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 491.0443 190.5184)\\\" x=\\\"0 2.7783\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.3842 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 502.0404 190.5184)\\\" x=\\\"0 2.7783 8.3398\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 515.9418 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 518.5981 190.5184)\\\" x=\\\"0 5.5615 11.123 16.6846 20.0146 25.5762 30.5762\\\">address</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 179.2)\\\" x=\\\"0 5 10.5615 16.1231 23.3447\\\">shown</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 62.0063 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 64.6625 179.2)\\\" x=\\\"0 2.2803\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 72.5043 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 75.1606 179.2)\\\" x=\\\"0 2.7783 8.3398 10.6201\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 90.7807 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 93.4369 179.2)\\\" x=\\\"0 6.6699 12.2314 15.5615 21.123 26.6846 35.0146 40.5762 46.1377 48.916\\\">Agreement,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 145.1312 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 147.7875 179.2)\\\" x=\\\"0 5.6115\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 156.7791 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 159.4854 179.2)\\\" x=\\\"0 5.6115\\\">as</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 170.1469 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 172.8531 179.2)\\\" x=\\\"0 7.2717\\\">we</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 185.7363 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 188.4426 179.2)\\\" x=\\\"0 5.5615 8.3398 13.9014 19.4629 22.793 30.0147 32.2949 37.2949\\\">otherwise</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.299 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 233.9553 179.2)\\\" x=\\\"0 5.5615 7.8418 11.1719 16.7334 21.7334\\\">direct</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 258.467 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 261.1232 179.2)\\\" x=\\\"0 2.7783 6.1084 11.6699\\\">from</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.1232 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 283.7795 179.2)\\\" x=\\\"0 2.7783 5.0586 13.3887\\\">time</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.7297 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 305.3859 179.2)\\\" x=\\\"0 2.8283\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 313.8258 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 316.532 179.2)\\\" x=\\\"0 2.7783 5.0586 13.3887 18.9502\\\">time.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.2605 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 340.9168 179.2)\\\" x=\\\"0 7.2217 12.7832 15.5615 17.8418 22.8418 28.4033\\\">Notices</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 374.3201 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 376.9764 179.2)\\\" x=\\\"0 2.8283\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 385.4162 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 388.1225 179.2)\\\" x=\\\"0 5.6115\\\">us</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 398.784 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 401.4902 179.2)\\\" x=\\\"0 5.5615 8.8916\\\">are</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 415.9434 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 418.5996 179.2)\\\" x=\\\"0 5.5615 11.1231 16.6846 25.0147 30.5762\\\">deemed</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.7373 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 457.3936 179.2)\\\" x=\\\"0 5.5615 7.8418 12.8418 18.4033\\\">given</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 481.3584 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 484.0147 179.2)\\\" x=\\\"0 7.2217 12.7832 18.3447\\\">when</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 507.9209 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 510.5771 179.2)\\\" x=\\\"0 2.7783 8.3398 13.9014\\\">they</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.4785 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 532.1348 179.2)\\\" x=\\\"0 5.5615 8.8916\\\">are</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 167.8816)\\\" x=\\\"0 5.5615 11.1231 14.4531 19.4531 25.0146 30.5762 36.1377 38.418 40.6982\\\">personally</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 78.7982 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.4545 167.8816)\\\" x=\\\"0 5.5615 7.8418 12.8418 18.4033\\\">given</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 105.4193 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 108.0756 167.8816)\\\" x=\\\"0 5.5615\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 116.9672 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 119.6234 167.8816)\\\" x=\\\"0 5.5615 10.5615 13.3398 18.9014 24.4629 26.7432 29.0234\\\">actually</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 153.6469 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 156.3031 167.8816)\\\" x=\\\"0 3.3301 8.8916 13.8916 19.4531 21.7334 26.7334 32.2949\\\">received</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 194.1596 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 196.8158 167.8816)\\\" x=\\\"0 5.6615\\\">at</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 205.3557 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 208.1119 167.8816)\\\" x=\\\"0 5.6115 11.223\\\">our</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 222.715 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 225.4213 167.8816)\\\" x=\\\"0 5.5615 11.123 16.6846 20.0146 25.5762 30.5762 35.5762\\\">address.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 263.7758 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 266.432 167.8816)\\\" x=\\\"0 7.2217 12.7832 15.5615 17.8418 22.8418 28.4033\\\">Notices</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.8353 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 302.4916 167.8816)\\\" x=\\\"0 5.6115 8.9916\\\">are</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 317.0947 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 319.801 167.8816)\\\" x=\\\"0 5.5615 11.123 16.6846 25.0146 30.5762\\\">deemed</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.9387 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 358.5949 167.8816)\\\" x=\\\"0 5.5615 7.8418 12.8418 18.4033\\\">given</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 382.5598 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 385.216 167.8816)\\\" x=\\\"0 2.8783\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.7559 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 396.5121 167.8816)\\\" x=\\\"0 5.05 10.6615\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 412.7852 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 415.4914 167.8816)\\\" x=\\\"0 7.2717 12.8832 18.4947\\\">when</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 439.5977 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 442.3039 167.8816)\\\" x=\\\"0 2.8283 8.4398 14.0514\\\">they</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 461.4053 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 464.1115 167.8816)\\\" x=\\\"0 5.6115 8.9916\\\">are</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 478.7147 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 481.4209 167.8816)\\\" x=\\\"0 5.5615 11.1231 14.4531 19.4531 25.0146 30.5762 36.1377 38.418 40.6982\\\">personally</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 527.1191 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 529.7754 167.8816)\\\" x=\\\"0 5.5615 7.8418 12.8418 18.4033\\\">given</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.7402 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 556.3965 167.8816)\\\" x=\\\"0 5.6615\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 156.5633)\\\" x=\\\"0 7.2717 12.8832 18.4947\\\">when</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 57.2063 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 59.9125 156.5633)\\\" x=\\\"0 5.5615 7.8418 13.4033 18.4033 23.9648\\\">placed</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 89.4389 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 92.0951 156.5633)\\\" x=\\\"0 2.3803\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 100.1369 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 102.8932 156.5633)\\\" x=\\\"0 2.8283 8.4398\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 116.9445 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 119.6508 156.5633)\\\" x=\\\"0 8.3301 13.8916 16.1719 18.4522\\\">mail,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 140.8813 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 143.5375 156.5633)\\\" x=\\\"0 5.5615 11.123 16.6846 20.0147 25.5762 30.5762 35.5762 41.1377\\\">addressed</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 190.2367 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 192.893 156.5633)\\\" x=\\\"0 2.7783\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 201.2328 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 203.8891 156.5633)\\\" x=\\\"0 5 10.5615\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 220.0121 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 222.6684 156.5633)\\\" x=\\\"0 5.5615\\\">at</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.0082 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 233.6645 156.5633)\\\" x=\\\"0 5 10.5615 16.123\\\">your</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 253.1176 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 255.7738 156.5633)\\\" x=\\\"0 5.5615 11.1231 16.6846 20.0147 25.5762 30.5762\\\">address</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.35 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 294.0062 156.5633)\\\" x=\\\"0 2.7783 8.3399 13.9014\\\">then</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 313.4691 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 316.1254 156.5633)\\\" x=\\\"0 5 10.5615 16.1231 23.3447\\\">shown</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 345.0316 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 347.6879 156.5633)\\\" x=\\\"0 5.5615\\\">on</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 358.8109 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 361.4672 156.5633)\\\" x=\\\"0 5.5615 11.1231\\\">our</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.9203 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 378.5766 156.5633)\\\" x=\\\"0 3.3301 8.8916 13.8916 19.4531 22.7832 28.3447 33.3447\\\">records,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 414.6996 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 417.3559 156.5633)\\\" x=\\\"0 5.5615 10.5615 16.123\\\">even</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 439.0404 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 441.6967 156.5633)\\\" x=\\\"0 2.7783 8.3398 13.9014 19.4629 25.0244\\\">though</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 472.2826 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 474.9389 156.5633)\\\" x=\\\"0 5 10.5615\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 491.0619 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 493.7182 156.5633)\\\" x=\\\"0 8.3301 10.6104 16.1719 21.7334\\\">might</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 518.2299 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 520.8861 156.5633)\\\" x=\\\"0 5.5615 11.123\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 145.2449)\\\" x=\\\"0 5.5615 10.5615 13.3398 18.9014 24.4629 26.7432 29.0234\\\">actually</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 67.1234 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 69.7797 145.2449)\\\" x=\\\"0 3.3301 8.8916 13.8916 19.4531 21.7334 26.7334\\\">receive</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 102.0746 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 104.7309 145.2449)\\\" x=\\\"0 5.5615 11.123\\\">our</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 119.184 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 121.8402 145.2449)\\\" x=\\\"0 8.3301 13.8916 16.1719 18.4521 24.0137\\\">mailed</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 151.4154 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 154.0717 145.2449)\\\" x=\\\"0 5.5615 11.1231 13.9014 16.1816 21.1816 26.7432\\\">notice.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 183.5932 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 186.2494 145.2449)\\\" x=\\\"0 6.6699 12.2314\\\">You</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 204.0424 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 206.6986 145.2449)\\\" x=\\\"0 5.8115 11.6231 15.2031 21.0146\\\">agree</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.5248 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 236.4311 145.2449)\\\" x=\\\"0 2.9283 8.6398 14.3514\\\">that</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 253.7107 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 256.517 145.2449)\\\" x=\\\"0 5.8615\\\">30</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 268.24 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 271.1963 145.2449)\\\" x=\\\"0 5.7115 11.4231 16.5731 21.7231\\\">days&apos;</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 294.9785 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 297.7848 145.2449)\\\" x=\\\"0 5.6615 11.3231 14.2014 16.5816 21.6816\\\">notice</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 325.1279 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 327.8842 145.2449)\\\" x=\\\"0 2.5803\\\">is</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.7645 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.7207 145.2449)\\\" x=\\\"0 3.4301 9.0916 14.7531 19.8531 25.5146 31.1762 36.8377 42.4992 44.8795 50.541\\\">reasonable,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 392.14 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 394.8963 145.2449)\\\" x=\\\"0 5.6615 11.3231 13.7033 19.3648 24.4648\\\">unless</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 424.4611 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 427.2174 145.2449)\\\" x=\\\"0 5.15 8.0783 13.7899 16.7182\\\">state</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 449.6471 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 452.4533 145.2449)\\\" x=\\\"0 2.5303 8.3418\\\">law</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.2668 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 471.173 145.2449)\\\" x=\\\"0 3.4301 9.0916 14.7531 20.4146 22.7949 26.225 31.8865\\\">requires</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 508.1596 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 510.9158 145.2449)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 517.0773 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 520.3336 145.2449)\\\" x=\\\"0 2.3803 8.0418 13.7033 19.3649 25.0264\\\">longer</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 133.9266)\\\" x=\\\"0 5.6615 11.3231 14.7531 17.1334 22.7949 28.4564\\\">period,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 64.4348 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 67.191 133.9266)\\\" x=\\\"0 2.5803\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 75.6328 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 78.5891 133.9266)\\\" x=\\\"0 7.3717 13.0832 15.5135 20.6635\\\">which</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 104.9641 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 107.7703 133.9266)\\\" x=\\\"0 5.15 10.8615 16.0115\\\">case</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 129.4934 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 132.2996 133.9266)\\\" x=\\\"0 5.25 11.0615\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 149.1727 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 152.0789 133.9266)\\\" x=\\\"0 5.7115 11.423 14.9031 20.6146\\\">agree</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 178.4051 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 181.2113 133.9266)\\\" x=\\\"0 2.9283 8.6398 14.3514\\\">that</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 198.491 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 201.2973 133.9266)\\\" x=\\\"0 3.0283 8.8398\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 215.9486 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 218.8549 133.9266)\\\" x=\\\"0 5.05 7.8783 13.4898 16.3182 21.9297 25.3098 28.7898 34.5014 40.2129 45.9244 48.3547 51.8348 57.5463\\\">state-required</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 282.1127 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 284.9189 133.9266)\\\" x=\\\"0 5.6615 11.3231 14.7531 17.1334 22.7949\\\">period</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 313.3754 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 316.1316 133.9266)\\\" x=\\\"0 2.5803\\\">is</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 324.0119 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 329.5182 133.9266)\\\" x=\\\"0 3.3301 8.8916 14.4531 19.4531 25.0147 30.5762 36.1377 41.6992 43.9795 49.541\\\">reasonable.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 381.8375 133.9266)\\\" x=\\\"0 2.6562\\\">  </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 387.15 133.9266)\\\" x=\\\"0 6.6699 12.2314\\\">You</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 404.943 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.5992 133.9266)\\\" x=\\\"0 5.5615 11.123 13.9014 19.4629 25.0244 28.3545 30.6348 35.6348\\\">authorize</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 448.7955 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 451.4518 133.9266)\\\" x=\\\"0 5.5615\\\">us</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 462.0133 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 464.6695 133.9266)\\\" x=\\\"0 2.7783\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 473.0094 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 475.6656 133.9266)\\\" x=\\\"0 5 10.5615 16.123\\\">send</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 497.3502 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 500.0064 133.9266)\\\" x=\\\"0 5.5615 11.1231 13.9014 16.1816 21.1816 26.7432\\\">notices</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 531.7496 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 534.4059 133.9266)\\\" x=\\\"0 2.7783\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 542.7457 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 545.402 133.9266)\\\" x=\\\"0 5 10.5615 16.123\\\">your</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 122.6082)\\\" x=\\\"0 5.56 13.89 19.45 21.73 24.01 26.67 32.23 37.79 43.35 46.68 52.24 57.24 62.24 64.9 70.46 76.02 78.3 83.86 88.86 93.86 96.52 102.08 105.41 110.97 116.53 118.81 124.37 126.65 129.43 134.99 140.55 143.21 148.77 153.77 156.43 158.71 164.27 171.49\\\">email address unless prohibited by law.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 109.2898)\\\" x=\\\"0 5 12.22 19.44\\\">JURY</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 59.2133 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 63.5195 109.2898)\\\" x=\\\"0 6.11 13.33 16.11 22.78\\\">TRIAL</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 91.8594 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 96.1656 109.2898)\\\" x=\\\"0 9.44 16.11 18.89 25.56 32.23\\\">WAIVER</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 135.6138 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 139.9201 109.2898)\\\" x=\\\"0 6.67 13.89\\\">AND</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 161.0334 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 165.3396 109.2898)\\\" x=\\\"0 6.67 13.89 20.56 23.34 29.45 36.67 43.34 49.45 52.23 60.01\\\">ARBITRATION</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 232.5662 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 236.8724 109.2898)\\\" x=\\\"0 7.22 12.78 19.45 26.67 33.34 40.01\\\">CLAUSE.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 279.6654 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 283.9716 109.2898)\\\" x=\\\"0 6.67\\\">By</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 295.6415 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 299.9478 109.2898)\\\" x=\\\"0 5 7.28 12.84 18.4 20.68 26.24 31.8\\\">signing,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 334.5327 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.8389 109.2898)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 354.962 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 359.2682 109.2898)\\\" x=\\\"0 5.56 11.12 14.45 20.01\\\">agree</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 384.8444 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 389.1507 109.2898)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 397.4905 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 401.7967 109.2898)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 417.4168 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 421.7231 109.2898)\\\" x=\\\"0 5 10.56 13.89\\\">Jury</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 440.6147 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 444.9209 109.2898)\\\" x=\\\"0 6.11 9.44 11.72 17.28\\\">Trial</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 464.4815 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 468.7877 109.2898)\\\" x=\\\"0 9.44 15 17.28 22.28 27.84\\\">Waiver</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.9596 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 504.2658 109.2898)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 520.9504 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 525.2566 109.2898)\\\" x=\\\"0 6.67 10 15.56 17.84 20.62 23.95 29.51 32.29 34.57 40.13\\\">Arbitration</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 97.9715)\\\" x=\\\"0 7.22 9.5 15.06 20.62 25.62 31.18 33.84 37.17 40.5 47.72 50 55.56 61.12 66.12 71.68 75.01 78.34\\\">Clause (“Clause”).</text></g><clipPath id=\\\"clip3-3\\\"><path d=\\\"M 35 76 L 573 76 L 573 94 L 35 94 L 35 76 z \\\"/></clipPath><path clip-path=\\\"url(#clip3-3)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 93.8719 L 572.95 93.8719 L 572.95 76.8719 L 35.45 76.8719 L 35.45 93.8719 z \\\"/><path clip-path=\\\"url(#clip3-3)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.15 91.8719 L 572.45 91.8719 L 572.45 80.5535 L 39.15 80.5535 L 39.15 91.8719 z \\\"/><path clip-path=\\\"url(#clip3-3)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 253.9396 91.8719 L 357.9396 91.8719 L 357.9396 79.8719 L 253.9396 79.8719 L 253.9396 91.8719 z \\\"/><g clip-path=\\\"url(#clip3-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 253.9396 82.6531)\\\" x=\\\"0 6.67 12.23 17.23 22.23 27.79 31.12 36.68 42.24 47.8 53.36 56.02 61.58 67.14 72.7 75.36 82.03 87.03 92.59 98.15\\\">Background and Scope</text></g><clipPath id=\\\"clip3-4\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip3-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 94.3719 L 573.45 94.3719 L 573.45 93.3719 L 34.95 93.3719 L 34.95 94.3719 z \\\"/><path clip-path=\\\"url(#clip3-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 77.3719 L 573.45 77.3719 L 573.45 76.3719 L 34.95 76.3719 L 34.95 77.3719 z \\\"/><path clip-path=\\\"url(#clip3-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 93.3719 L 573.45 93.3719 L 573.45 77.3719 L 572.45 77.3719 L 572.45 93.3719 z \\\"/><path clip-path=\\\"url(#clip3-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 93.3719 L 35.95 93.3719 L 35.95 77.3719 L 34.95 77.3719 L 34.95 93.3719 z \\\"/><g clip-path=\\\"url(#clip3-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 36.5264)\\\" x=\\\"0 6.498 11.997 14.391 16.785 21.789 26.793 29.295 34.299 39.303 44.307 504 506.3906 508.7812 511.1719 513.5625 515.9531 518.3438 520.7344 523.125 525.5156\\\">UT  07/2019          </text></g><g clip-path=\\\"url(#clip3-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 26.3398)\\\" x=\\\"0 6.003 11.007 16.011 21.015\\\">Page </text></g><g clip-path=\\\"url(#clip3-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 55.8097 26.3398)\\\" x=\\\"0\\\">4</text></g><g clip-path=\\\"url(#clip3-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.815 26.3398)\\\" x=\\\"0 2.394 7.398 9.9\\\"> of </text></g><g clip-path=\\\"url(#clip3-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 73.1021 26.3398)\\\" x=\\\"0\\\">7</text></g><g clip-path=\\\"url(#clip3-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#d9d9d9\\\" style=\\\"font-family:f3-0; font-size:54pt; white-space:pre\\\" transform=\\\"matrix(0.707 0.707 0.707 -0.707 135.6027 198.5094)\\\" x=\\\"0 56.016 96.048 136.08 176.112 216.144 236.16 284.184 324.216 344.232 364.248 416.232 456.264 480.24\\\">* D E M O *are</text></g><g clip-path=\\\"url(#clip3-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#002ba6\\\" style=\\\"font-family:f3-0; font-size:9pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.932 772)\\\" x=\\\"0 9.336 16.008 22.68 29.352 36.024 39.36 47.364 54.036 57.372 60.708 69.372 76.044 80.04 86.712 90.048 94.044 97.38 104.712 111.384 115.38 118.716 126.72 132.72 139.392 142.056 148.728 155.4 158.736 161.4 168.072 174.744 178.08 187.416 194.088 196.752 202.752 206.088 210.084 213.42 220.092 223.428 226.764 233.436 239.436 242.772 246.108 249.444 258.108 266.772 275.436 278.772 285.444 292.116 298.788 305.46 312.132 315.468 321.468 328.14\\\">Qoppa Software - For Evaluation Only - https://www.qoppa.com</text></g></g></svg></svg></g></svg><br>\\n<?xml version='1.0' encoding='UTF-8'?><svg id=\\\"qoppa_document\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" version=\\\"1.1\\\" xmlns=\\\"http://www.w3.org/2000/svg\\\" xmlns:xlink=\\\"http://www.w3.org/1999/xlink\\\"><!-- jPDFWeb v2019R1.03 - Demo Version --><style>title p { display: block; }</style><g id=\\\"qoppa_viewxform\\\" transform=\\\"matrix(1 0 0 1 0 0)\\\"><style type=\\\"text/css\\\">@font-face {font-family:f4-0;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f4-1;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f4-2;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}</style><svg id=\\\"qoppa_page_p4\\\" class=\\\"qoppa_page\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\"><rect class=\\\"qoppa_pageborder\\\" x=\\\"0.5pt\\\" y=\\\"0.5pt\\\" width=\\\"611pt\\\" height=\\\"791pt\\\" fill=\\\"none\\\" /><svg class=\\\"qoppa_pagecontents\\\" x=\\\"0pt\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" viewBox=\\\"0 0 612 792\\\" ><g class=\\\"qoppa_contentstream\\\" transform=\\\"matrix(1 0 0 -1 0 792)\\\" fill=\\\"black\\\" stroke=\\\"black\\\" stroke-width=\\\"1\\\" stroke-linecap=\\\"butt\\\" stroke-linejoin=\\\"miter\\\" stroke-miterlimit=\\\"10\\\"><clipPath id=\\\"clip4-1\\\"><path d=\\\"M 35 748 L 130 748 L 130 770 L 35 770 L 35 748 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-1)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 769.7 L 129.35 769.7 L 129.35 748.5906 L 35.45 748.5906 L 35.45 769.7 z \\\"/><path clip-path=\\\"url(#clip4-1)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 767.7 L 125.25 767.7 L 125.25 758.6453 L 39.55 758.6453 L 39.55 767.7 z \\\"/><path clip-path=\\\"url(#clip4-1)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 47.9683 767.7 L 116.9684 767.7 L 116.9684 757.7 L 47.9683 757.7 L 47.9683 767.7 z \\\"/><g clip-path=\\\"url(#clip4-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.9684 760.325)\\\" x=\\\"0 7.552 12 16.448 18.672 20.8 22.624 26.624 28.752 33.2 35.864 40.312 42.136 44.36 47.024 51.472 53.696 55.52 59.968 64.416\\\">What is arbitration?</text></g><clipPath id=\\\"clip4-2\\\"><path d=\\\"M 129 748 L 206 748 L 206 770 L 129 770 L 129 748 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 138.6945 760.325)\\\" x=\\\"0 5.336 9.784 11.912 16.36 18.184 20.408 24.856 27.52 31.968 36.416 38.64 40.464 44.464 48.912 51.04 53.264\\\">An alternative to</text></g><g clip-path=\\\"url(#clip4-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 157.5461 751.2703)\\\" x=\\\"0 4 8.448 12.896 15.56 17.784\\\">court.</text></g><clipPath id=\\\"clip4-3\\\"><path d=\\\"M 205 748 L 573 748 L 573 770 L 205 770 L 205 748 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 760.325)\\\" x=\\\"0 2.224\\\">In</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 216.5219 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 220.3852 760.325)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 26.768 31.216 35.664\\\">arbitration,</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 258.2758 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 262.139 760.325)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 266.5883 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 270.4515 760.325)\\\" x=\\\"0 2.224 6.672 8.496 11.16\\\">third</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 286.0609 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 289.9242 760.325)\\\" x=\\\"0 4.448 8.896 11.56 13.784\\\">party</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 307.7094 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 311.5727 760.325)\\\" x=\\\"0 2.664 5.504 10.84 13.504 17.952 19.776 22 26.448 29.112 31.952\\\">(&quot;Arbiter&quot;)</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 346.1898 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 350.0531 760.325)\\\" x=\\\"0 4 8.448 10.272 14.272 18.72\\\">solves</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 372.7758 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 376.639 760.325)\\\" x=\\\"0 5.776 7.6 11.6 16.048 20.496 22.72 27.168\\\">Disputes</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 407.8109 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 411.6742 760.325)\\\" x=\\\"0 1.824\\\">in</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 417.9477 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 421.8109 760.325)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 426.2601 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 430.1234 760.325)\\\" x=\\\"0 4.448 8.896 13.344 16.008 17.832 22.28\\\">hearing</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.8578 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 460.7211 760.325)\\\" x=\\\"0 2.664 5.504 9.952 14.4 18.848 21.512 23.336 27.784 32.232 35.072 37.736\\\">(&quot;hearing&quot;).</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 500.6859 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 504.5492 760.325)\\\" x=\\\"0 5.336 9.784 14.232\\\">You,</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.0062 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 524.8695 760.325)\\\" x=\\\"0 2.664 7.112 8.936 13.384 15.608 20.056\\\">related</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.3773 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 553.2406 760.325)\\\" x=\\\"0 2.224 6.672 8.496 11.16\\\">third</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 751.2703)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056 24.056 26.28 28.408 32.856 37.304 41.752 43.88 49.656 54.104 56.328 58.456 64.232 68.68 70.504 74.504 78.952 81.08 83.304 87.752 92.2 94.328 96.992 98.816 103.264 107.712 109.936 112.064 114.288 118.736 120.864 125.312 129.76 131.888 134.112 138.56 140.688 144.688 149.136 153.584 156.248 158.472 160.696 162.824 168.16 172.608 176.608 181.056 183.184 186.024 190.472 194.92 197.584 199.808 201.632 206.08 210.08 212.92 215.048 217.272 221.72 224.384 228.832 233.28 235.408 237.232 241.68 244.344 248.344 250.472 252.696 255.36 257.184 261.632 263.456 267.456\\\">parties, and we, waive the right to go to court. Such &quot;parties&quot; forgo jury trials.</text></g><clipPath id=\\\"clip4-4\\\"><path d=\\\"M 35 727 L 130 727 L 130 749 L 35 749 L 35 727 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-4)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 748.5906 L 129.35 748.5906 L 129.35 727.4813 L 35.45 727.4813 L 35.45 748.5906 z \\\"/><path clip-path=\\\"url(#clip4-4)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 746.5906 L 125.25 746.5906 L 125.25 728.4813 L 39.55 728.4813 L 39.55 746.5906 z \\\"/><path clip-path=\\\"url(#clip4-4)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 41.6461 746.5906 L 123.6461 746.5906 L 123.6461 736.5906 L 41.6461 736.5906 L 41.6461 746.5906 z \\\"/><g clip-path=\\\"url(#clip4-4)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 41.6461 739.2156)\\\" x=\\\"0 2.224 6.224 8.352 10.176 12.4 14.528 18.976 20.8 23.024 25.248 29.696 32.36 36.808 41.256 43.48 45.608 47.832 50.496 54.944 61.608 63.736 67.736 72.184 76.632 79.296\\\">Is it different from court</text></g><path clip-path=\\\"url(#clip4-4)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 56.4156 737.5359 L 108.4156 737.5359 L 108.4156 727.5359 L 56.4156 727.5359 L 56.4156 737.5359 z \\\"/><g clip-path=\\\"url(#clip4-4)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 56.4156 730.1609)\\\" x=\\\"0 4.448 8.896 13.344 15.472 17.296 21.744 24.408 28.408 30.536 32.76 35.424 37.248 41.696 43.52 47.52\\\">and jury trials?</text></g><clipPath id=\\\"clip4-5\\\"><path d=\\\"M 129 727 L 206 727 L 206 749 L 129 749 L 129 727 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-5)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 159.5461 739.2156)\\\" x=\\\"0 5.336 9.784 13.784\\\">Yes.</text></g><clipPath id=\\\"clip4-6\\\"><path d=\\\"M 205 727 L 573 727 L 573 749 L 205 749 L 205 727 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 739.2156)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 223.6351 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 226.6552 739.2156)\\\" x=\\\"0 4.448 8.896 13.344 16.008 17.832 22.28\\\">hearing</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 253.3896 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 256.4096 739.2156)\\\" x=\\\"0 1.824\\\">is</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.2338 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 265.2539 739.2156)\\\" x=\\\"0 4.448 7.112 8.936 12.936 17.384 19.608\\\">private</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 289.3125 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 292.3325 739.2156)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 305.6802 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 308.7002 739.2156)\\\" x=\\\"0 1.824 6.272 10.272\\\">less</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 322.9737 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 325.9937 739.2156)\\\" x=\\\"0 2.224 6.672 9.336 16 20.448\\\">formal</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.2672 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 351.2872 739.2156)\\\" x=\\\"0 2.224 6.672 11.12\\\">than</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 366.8575 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 369.8776 739.2156)\\\" x=\\\"0 4 8.448 12.896 15.56 17.784\\\">court.</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 389.8854 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 392.9055 739.2156)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608\\\">Arbiters</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 420.5148 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 423.5349 739.2156)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 438.6482 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 441.6682 739.2156)\\\" x=\\\"0 1.824 3.648 10.312 12.136\\\">limit</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.0276 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 459.0477 739.2156)\\\" x=\\\"0 4.448 7.112 11.56 14.224 18.672 23.12 27.568 30.232 32.056 36.504\\\">pre-hearing</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 500.0086 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 503.0286 739.2156)\\\" x=\\\"0 2.224 6.672 10.672\\\">fact</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 515.9232 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 518.9432 739.2156)\\\" x=\\\"0 2.224 4.048 8.496 12.944 14.768 19.216 23.664\\\">finding,</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 544.8338 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 547.8539 739.2156)\\\" x=\\\"0 4 8.448 10.272 12.096 16.544\\\">called</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 730.1609)\\\" x=\\\"0 2.84 7.288 9.112 13.112 17.112 21.56 25.56 30.008 32.672 36.672 38.896 41.736 43.864 48.752 53.2 57.648 59.776 64.224 68.672 72.672 74.496 78.496 80.32 84.768 89.216 91.344 93.168 97.168 99.296 101.52 103.344 107.792 112.24 114.064 116.288 118.416 124.192 128.64 133.088 135.752 137.976 141.976 144.104 146.768 151.216 153.88 158.328 160.152 164.152 166.28 170.728 174.728 179.176 181.84 184.064 188.512 191.176 195.624 197.752 203.088 205.752 210.2 212.024 214.248 218.696 221.36 225.36\\\">&quot;discovery.&quot; The decision is final. Courts rarely overturn Arbiters.</text></g><clipPath id=\\\"clip4-7\\\"><path d=\\\"M 35 706 L 130 706 L 130 728 L 35 728 L 35 706 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-7)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 727.4813 L 129.35 727.4813 L 129.35 706.3719 L 35.45 706.3719 L 35.45 727.4813 z \\\"/><path clip-path=\\\"url(#clip4-7)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 725.4813 L 125.25 725.4813 L 125.25 707.3719 L 39.55 707.3719 L 39.55 725.4813 z \\\"/><path clip-path=\\\"url(#clip4-7)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 44.2789 725.4813 L 121.2789 725.4813 L 121.2789 715.4813 L 44.2789 715.4813 L 44.2789 725.4813 z \\\"/><g clip-path=\\\"url(#clip4-7)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 44.2789 718.1062)\\\" x=\\\"0 7.552 12 16.448 18.576 23.024 27.472 31.92 35.92 38.048 40.272 44.72 49.168 51.296 57.072 58.896 63.344 67.792 71.792\\\">Who does the Clause</text></g><path clip-path=\\\"url(#clip4-7)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 70.3941 716.4266 L 95.3941 716.4266 L 95.3941 706.4266 L 70.3941 706.4266 L 70.3941 716.4266 z \\\"/><g clip-path=\\\"url(#clip4-7)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 70.3941 709.0516)\\\" x=\\\"0 4 8.448 12.448 16.896 19.56\\\">cover?</text></g><clipPath id=\\\"clip4-8\\\"><path d=\\\"M 129 706 L 206 706 L 206 728 L 129 728 L 129 706 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 144.5226 718.1062)\\\" x=\\\"0 5.336 9.784 14.232 16.456 18.584 24.36 28.36 30.584 32.712 37.16 41.608\\\">You, Us, and</text></g><g clip-path=\\\"url(#clip4-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 154.4348 709.0516)\\\" x=\\\"0 6.224 8.448 12.896 17.344 20.008 24.008\\\">Others.</text></g><clipPath id=\\\"clip4-9\\\"><path d=\\\"M 205 706 L 573 706 L 573 728 L 205 728 L 205 706 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 718.1062)\\\" x=\\\"0 4.888 9.336 11.16\\\">This</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.0101 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 228.5163 718.1062)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496\\\">Clause</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 253.4655 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 256.9716 718.1062)\\\" x=\\\"0 4.448 8.896 12.896 17.344 20.008 24.456\\\">governs</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 285.4326 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 288.9387 718.1062)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 300.0598 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 303.5659 718.1062)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056 24.056\\\">parties,</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.8472 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 333.3533 718.1062)\\\" x=\\\"0 2.224 6.672 11.12 12.944\\\">their</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.9627 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 352.4688 718.1062)\\\" x=\\\"0 4.448 8.896 10.72 13.384 17.384\\\">heirs,</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 372.0782 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 375.5844 718.1062)\\\" x=\\\"0 4 8.448 12.448 16.448 20.896 24.896 28.896 33.344 36.008 40.008\\\">successors,</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 417.8187 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 421.3249 718.1062)\\\" x=\\\"0 4.448 8.448 12.448 14.272 18.72 23.168 27.168\\\">assigns,</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 450.7194 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 454.2255 718.1062)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.5732 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 471.0793 718.1062)\\\" x=\\\"0 2.224 6.672 8.496 11.16\\\">third</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.6887 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 490.1949 718.1062)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056\\\">parties</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 514.2535 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 517.7596 718.1062)\\\" x=\\\"0 2.664 7.112 8.936 13.384 15.608 20.056\\\">related</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 542.2674 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 545.7735 718.1062)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.4454 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 555.9515 718.1062)\\\" x=\\\"0 4.448 8.896\\\">any</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 709.0516)\\\" x=\\\"0 5.776 7.6 11.6 16.048 20.496 22.72 27.168\\\">Dispute.</text></g><clipPath id=\\\"clip4-10\\\"><path d=\\\"M 35 630 L 130 630 L 130 707 L 35 707 L 35 630 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-10)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 706.3719 L 129.35 706.3719 L 129.35 630.9344 L 35.45 630.9344 L 35.45 706.3719 z \\\"/><path clip-path=\\\"url(#clip4-10)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 704.3719 L 125.25 704.3719 L 125.25 686.2625 L 39.55 686.2625 L 39.55 704.3719 z \\\"/><path clip-path=\\\"url(#clip4-10)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 47.7711 704.3719 L 117.7711 704.3719 L 117.7711 694.3719 L 47.7711 694.3719 L 47.7711 704.3719 z \\\"/><g clip-path=\\\"url(#clip4-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.7711 696.9969)\\\" x=\\\"0 7.552 12 13.824 17.824 22.272 24.4 30.176 32 36 40.448 44.896 47.12 51.568 55.568 57.696 62.144 64.808\\\">Which Disputes are</text></g><path clip-path=\\\"url(#clip4-10)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 65.9449 695.3172 L 98.9449 695.3172 L 98.9449 685.3172 L 65.9449 685.3172 L 65.9449 695.3172 z \\\"/><g clip-path=\\\"url(#clip4-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 65.9449 687.9422)\\\" x=\\\"0 4 8.448 12.448 16.896 19.56 24.008 28.456\\\">covered?</text></g><clipPath id=\\\"clip4-11\\\"><path d=\\\"M 129 630 L 206 630 L 206 707 L 129 707 L 129 630 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 145.298 696.9969)\\\" x=\\\"0 5.336 7.16 8.984 11.112 16.888 18.712 22.712 27.16 31.608 33.832 38.28 42.28\\\">All Disputes.</text></g><clipPath id=\\\"clip4-12\\\"><path d=\\\"M 205 630 L 573 630 L 573 707 L 205 707 L 205 630 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 696.9969)\\\" x=\\\"0 2.224\\\">In</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 216.5219 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 220.3165 696.9969)\\\" x=\\\"0 2.224 6.672 8.496\\\">this</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 232.8126 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 236.6072 696.9969)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496 24.944\\\">Clause,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 263.7791 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 267.5738 696.9969)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 278.6949 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 282.4895 696.9969)\\\" x=\\\"0 5.776 10.224 12.888\\\">word</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.8293 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 303.624 696.9969)\\\" x=\\\"0 2.84 8.616 10.44 14.44 18.888 23.336 25.56 30.008 34.008\\\">&quot;Disputes&quot;</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 340.4755 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 344.2702 696.9969)\\\" x=\\\"0 4.448 8.896\\\">has</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 357.1686 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 360.9633 696.9969)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 372.0844 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 375.879 696.9969)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456 24.904 28.904\\\">broadest</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 407.0118 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 410.8065 696.9969)\\\" x=\\\"0 4.448 8.896 12.896 16.896 18.72 23.168 24.992\\\">possible</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 440.2518 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 444.0464 696.9969)\\\" x=\\\"0 6.664 11.112 15.56 20.008 21.832 26.28 30.728\\\">meaning.</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 477.0034 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 480.7981 696.9969)\\\" x=\\\"0 4.888 9.336 11.16\\\">This</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 495.9582 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 499.7529 696.9969)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496\\\">Clause</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 524.7021 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 528.4968 696.9969)\\\" x=\\\"0 4.448 8.896 12.896 17.344 20.008 24.456\\\">governs</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 556.9577 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 560.7523 696.9969)\\\" x=\\\"0 4.448 6.272\\\">all</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 687.9422)\\\" x=\\\"0 2.84 8.616 10.44 14.44 18.888 23.336 25.56 30.008 34.008\\\">&quot;Disputes&quot;</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 246.7015 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 248.8785 687.9422)\\\" x=\\\"0 1.824 6.272 10.272 14.72 16.544 20.544 22.368 26.816\\\">involving</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.148 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 282.3249 687.9422)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 293.446 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 295.6229 687.9422)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056 24.056\\\">parties.</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 321.9041 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 324.081 687.9422)\\\" x=\\\"0 4.888 9.336 11.16\\\">This</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 339.2412 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 341.4181 687.9422)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44\\\">includes</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 370.8634 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 373.0403 687.9422)\\\" x=\\\"0 4.448 6.272\\\">all</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 381.1379 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 383.3148 687.9422)\\\" x=\\\"0 4 5.824 10.272 12.096 18.76\\\">claims</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 406.0765 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 408.2534 687.9422)\\\" x=\\\"0 4.448 8.448 12.896\\\">even</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 425.6011 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 427.778 687.9422)\\\" x=\\\"0 1.824 6.272 10.72 12.544 15.208 19.656 23.656 25.88 27.704\\\">indirectly</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 459.485 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 461.6619 687.9422)\\\" x=\\\"0 2.664 7.112 8.936 13.384 15.608 20.056\\\">related</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.1698 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 488.3466 687.9422)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 495.0185 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 497.1954 687.9422)\\\" x=\\\"0 4 8.448 12.896\\\">your</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.7579 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 514.9348 687.9422)\\\" x=\\\"0 4.448 8.896 13.344 15.168 16.992 20.992 25.44 27.664 29.488 33.936\\\">application</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.3254 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 555.5023 687.9422)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 678.8875)\\\" x=\\\"0 4.448 8.896 11.56 16.008 20.456 27.12 31.568 36.016 38.24\\\">agreements</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 252.0961 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 254.4013 678.8875)\\\" x=\\\"0 5.776 7.6 9.824\\\">with</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 268.6747 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 270.9799 678.8875)\\\" x=\\\"0 4.448 8.448\\\">us.</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.6518 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 283.957 678.8875)\\\" x=\\\"0 4.888 9.336 11.16\\\">This</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.1172 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 301.4224 678.8875)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44\\\">includes</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 330.8677 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 333.1729 678.8875)\\\" x=\\\"0 4 5.824 10.272 12.096 18.76\\\">claims</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.9346 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 358.2398 678.8875)\\\" x=\\\"0 2.664 7.112 8.936 13.384 15.608 20.056\\\">related</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 382.7477 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 385.0529 678.8875)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 391.7247 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 394.0299 678.8875)\\\" x=\\\"0 1.824 6.272 8.496 12.944 15.608 22.272 26.72 28.944 30.768 35.216\\\">information</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 433.6979 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 436.0031 678.8875)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 448.9016 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 451.2068 678.8875)\\\" x=\\\"0 4.448 7.112 11.56 15.56 17.384 21.832 26.28 30.28 32.104\\\">previously</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 487.3161 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 489.6213 678.8875)\\\" x=\\\"0 4.448 8.896 12.896\\\">gave</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 506.969 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 509.2742 678.8875)\\\" x=\\\"0 4.448 8.448\\\">us.</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 519.9461 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 522.2513 678.8875)\\\" x=\\\"0 2.224\\\">It</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.6966 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 529.0018 678.8875)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44\\\">includes</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 558.4471 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 560.7523 678.8875)\\\" x=\\\"0 4.448 6.272\\\">all</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 669.8328)\\\" x=\\\"0 4.448 8.896 12.896\\\">past</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 224.9711 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 227.1634 669.8328)\\\" x=\\\"0 4.448 8.896 11.56 16.008 20.456 27.12 31.568 36.016 38.24 42.24\\\">agreements.</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 271.6321 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 273.8245 669.8328)\\\" x=\\\"0 2.224\\\">It</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 278.2698 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 280.4621 669.8328)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44 29.44\\\">includes,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.13 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 314.3223 669.8328)\\\" x=\\\"0 4.448\\\">as</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 322.7716 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 324.9639 669.8328)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 340.0772 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 342.2695 669.8328)\\\" x=\\\"0 4.448\\\">be</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.1679 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 353.3602 669.8328)\\\" x=\\\"0 4.448 8.896 13.344 15.168 16.992 20.992 25.44 29.888 31.712 36.16\\\">applicable,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 391.7508 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 393.9431 669.8328)\\\" x=\\\"0 4.448 8.896\\\">any</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 406.8416 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 409.0339 669.8328)\\\" x=\\\"0 4.448 8.896 13.344 15.168 17.392 19.216 23.664 28.112 32.56\\\">additional</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 443.4245 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 445.6168 669.8328)\\\" x=\\\"0 4.448 8.896 11.56 13.384 17.832 22.28 26.28\\\">periods,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.1246 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 476.3169 669.8328)\\\" x=\\\"0 4.448 8.448 10.672 15.12 19.568 23.568 25.392 29.84 34.288 38.288\\\">extensions,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 516.8326 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 519.0249 669.8328)\\\" x=\\\"0 2.664 7.112 11.56 16.008 21.784 26.232 28.056 32.056\\\">renewals,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.31 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 555.5023 669.8328)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 660.7781)\\\" x=\\\"0 4.448 6.272 10.72 15.168 19.168\\\">plans.</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.2445 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 233.5225 660.7781)\\\" x=\\\"0 2.224\\\">It</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 237.9678 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 240.2458 660.7781)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44\\\">includes</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 269.6911 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 271.9691 660.7781)\\\" x=\\\"0 4 5.824 10.272 12.096 18.76\\\">claims</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 294.7308 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 297.0088 660.7781)\\\" x=\\\"0 2.664 7.112 8.936 13.384 15.608 20.056\\\">related</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 321.5167 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 323.7946 660.7781)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 330.4665 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 332.7445 660.7781)\\\" x=\\\"0 4.448 8.896 15.56 20.008 24.456 28.904\\\">damaged</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 366.1039 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 368.3819 660.7781)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456 23.12 25.344 29.344\\\">property,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 399.9522 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 402.2302 660.7781)\\\" x=\\\"0 4.448 8.896 12.896 17.344 21.792 24.016\\\">buyout,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 428.4724 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 430.7504 660.7781)\\\" x=\\\"0 2.664 7.112 8.936 13.384 17.384 19.608 24.056 26.28 30.728 37.392 41.84 46.288 48.512\\\">r* D E M O *t,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 481.4887 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 483.7667 660.7781)\\\" x=\\\"0 1.824 6.272 10.272 14.272\\\">loss,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 500.2627 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 502.5408 660.7781)\\\" x=\\\"0 4.448 8.896 15.56 20.008 24.456 28.904\\\">damage,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 533.6736 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 535.9516 660.7781)\\\" x=\\\"0 5.776 10.224 12.888 15.552 20 24.448 26.672 30.672\\\">warranty,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 651.7234)\\\" x=\\\"0 6.664 11.112 12.936 17.384 19.608 24.056 28.504 32.952 37.4 41.4 45.848\\\">maintenance,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.9281 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 260.595 651.7234)\\\" x=\\\"0 4 8.448 10.272 12.096 16.544 20.544 22.768 24.592 29.04 33.488\\\">collection,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 296.3099 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 298.9768 651.7234)\\\" x=\\\"0 4.448 8.896 12.896 16.896 21.344 25.344 29.344 31.168 35.616 40.064\\\">possession,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 341.2697 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 343.9366 651.7234)\\\" x=\\\"0 4.448 7.112 8.936 12.936 17.384 21.384 25.384\\\">privacy,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.546 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 374.2129 651.7234)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 387.5606 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 390.2275 651.7234)\\\" x=\\\"0 4 8.448 12.448 14.672 19.12 25.784 30.232\\\">customer</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 423.1259 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 425.7928 651.7234)\\\" x=\\\"0 1.824 6.272 8.496 12.944 15.608 22.272 26.72 28.944 30.768 35.216 39.664\\\">information.</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.6834 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 470.3503 651.7234)\\\" x=\\\"0 2.224\\\">It</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.7957 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 477.4626 651.7234)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44\\\">includes</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 506.9079 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 509.5748 651.7234)\\\" x=\\\"0 4 5.824 10.272 12.096 18.76\\\">claims</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 532.3365 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 535.0034 651.7234)\\\" x=\\\"0 2.664 7.112 8.936 13.384 15.608 20.056\\\">related</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.5112 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 562.1781 651.7234)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 642.6688)\\\" x=\\\"0 4 8.448 10.672 12.896 14.72 19.168\\\">setting</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.4672 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 236.1411 642.6688)\\\" x=\\\"0 4.448 8.448 10.272 14.72\\\">aside</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 255.313 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 257.987 642.6688)\\\" x=\\\"0 2.224 6.672 8.496\\\">this</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 270.4831 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 273.157 642.6688)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496 24.944\\\">Clause.</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 300.3289 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 303.0029 642.6688)\\\" x=\\\"0 2.224\\\">It</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 307.4482 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 310.1221 642.6688)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44\\\">includes</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 339.5674 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 342.2414 642.6688)\\\" x=\\\"0 4 5.824 10.272 12.096 18.76\\\">claims</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 365.0031 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 367.6771 642.6688)\\\" x=\\\"0 4.448 8.896 13.344 17.792\\\">about</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 387.6966 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 390.3706 642.6688)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 401.4917 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 404.1656 642.6688)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496 24.944 26.472\\\">Clause&apos;s</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.6422 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 437.3161 642.6688)\\\" x=\\\"0 4 8.448 10.272 12.096 16.544 18.368 20.592\\\">validity</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 461.9099 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 464.5838 642.6688)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 477.9315 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 480.6055 642.6688)\\\" x=\\\"0 4 8 12.448 16.896 21.344\\\">scope.</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 504.1758 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 506.8497 642.6688)\\\" x=\\\"0 2.224\\\">It</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 511.295 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 513.969 642.6688)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44\\\">includes</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 543.4143 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 546.0883 642.6688)\\\" x=\\\"0 4 5.824 10.272 12.096 18.76\\\">claims</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 633.6141)\\\" x=\\\"0 4.448 8.896 13.344 17.792 20.016 22.144 27.92 32.368 36.816 39.04 43.488 47.936 50.6 52.728 54.952 59.4 61.528 65.976 68.64 73.088 74.912 77.136 79.8 84.248 86.472 90.92\\\">about whether to arbitrate.</text></g><clipPath id=\\\"clip4-13\\\"><path d=\\\"M 35 578 L 130 578 L 130 631 L 35 631 L 35 578 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-13)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 630.9344 L 129.35 630.9344 L 129.35 578.6609 L 35.45 578.6609 L 35.45 630.9344 z \\\"/><path clip-path=\\\"url(#clip4-13)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 628.9344 L 125.25 628.9344 L 125.25 619.8797 L 39.55 619.8797 L 39.55 628.9344 z \\\"/><path clip-path=\\\"url(#clip4-13)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 41.1227 628.9344 L 124.1227 628.9344 L 124.1227 618.9344 L 41.1227 618.9344 L 41.1227 628.9344 z \\\"/><g clip-path=\\\"url(#clip4-13)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 41.1227 621.5594)\\\" x=\\\"0 5.336 8 12.448 14.576 18.576 23.024 27.472 29.6 35.376 39.824 41.648 45.648 47.472 51.92 56.368 58.496 61.16 62.984 67.432 71.88 74.104 78.104\\\">Are you waiving rights?</text></g><clipPath id=\\\"clip4-14\\\"><path d=\\\"M 129 578 L 206 578 L 206 631 L 129 631 L 129 578 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-14)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 159.5461 621.5594)\\\" x=\\\"0 5.336 9.784 13.784\\\">Yes.</text></g><clipPath id=\\\"clip4-15\\\"><path d=\\\"M 205 578 L 573 578 L 573 631 L 205 631 L 205 578 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-15)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 621.5594)\\\" x=\\\"0 5.336 9.784 14.232\\\">You </text></g><g clip-path=\\\"url(#clip4-15)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 225.85 621.5594)\\\" x=\\\"0 5.776 10.224 12.048 16.048\\\">waive</text></g><path clip-path=\\\"url(#clip4-15)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 225.85 620.213 L 225.85 620.213 L 245.85 620.213 L 246.1833 620.213 L 246.1833 619.5464 L 245.85 619.5464 L 225.85 619.5464 L 225.5167 619.5464 L 225.5167 620.213 z \\\"/><g clip-path=\\\"url(#clip4-15)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.85 621.5594)\\\" x=\\\"0 2.128 6.128 10.576 15.024 17.688 19.816 22.48 24.304 28.752 33.2 35.424 39.424 41.552 43.776 48.224\\\"> your rights to:</text></g><g clip-path=\\\"url(#clip4-15)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 611.5047)\\\" x=\\\"0 4.448 6.672 8.8 14.576 19.024 23.024 27.472 29.6 31.424 35.872 38.536 40.36 44.808 48.808 50.936 54.936 59.384 61.208 65.208 69.656 71.784 77.56 79.384 83.384 87.832 92.28 94.504 98.952 102.952\\\">1. Have juries solve Disputes.</text></g><g clip-path=\\\"url(#clip4-15)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 601.45)\\\" x=\\\"0 4.448 6.672 8.8 14.576 19.024 23.024 27.472 29.6 33.6 38.048 42.496 45.16 47.384 51.384 53.608 55.736 60.184 62.408 66.856 71.304 73.968 76.096 78.32 82.768 87.216 91.664 93.792 97.792 104.456 108.904 110.728 112.552 115.216 119.216 121.04 125.488 127.312 133.976 137.976 140.104 144.104 148.552 153 155.664 157.888 161.888 164.112 166.24 170.24 174.688 176.512 180.512 184.96 187.088 192.864 194.688 198.688 203.136 207.584 209.808 214.256 218.256\\\">2. Have courts, other than small-claims courts, solve Disputes.</text></g><g clip-path=\\\"url(#clip4-15)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 591.3953)\\\" x=\\\"0 4.448 6.672 8.8 14.136 18.584 21.248 25.248 29.696 31.824 36.272 40.272 42.4 46.848 48.976 53.424 56.088 57.912 61.912 66.36 68.584 73.032 75.16 79.608 81.832 84.056 88.504 91.168 95.616 100.064 104.064 106.192 110.64 115.088 119.536 123.984 126.648 131.096 132.92 135.048 139.496 142.16 144.288 146.112 150.56 152.688 157.136 159.264 161.928 166.376 170.824 173.488 177.936 181.936 186.384 190.832 193.056 197.504 199.728 201.552 205.552 210 212.128 216.128 220.576 225.024 229.472 233.472 235.296 237.52 241.52\\\">3. Serve as a private attorney general or in a* D E M O *tive capacity.</text></g><g clip-path=\\\"url(#clip4-15)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 581.3406)\\\" x=\\\"0 4.448 6.672 8.8 14.136 18.584 20.712 22.536 26.984 29.112 33.56 35.688 39.688 41.512 45.96 49.96 53.96 56.088 60.536 64.536 66.76 68.584 73.032 77.48\\\">4. Be in a class action.</text></g><clipPath id=\\\"clip4-16\\\"><path d=\\\"M 35 530 L 130 530 L 130 579 L 35 579 L 35 530 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-16)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 578.6609 L 129.35 578.6609 L 129.35 530.3875 L 35.45 530.3875 L 35.45 578.6609 z \\\"/><path clip-path=\\\"url(#clip4-16)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 576.6609 L 125.25 576.6609 L 125.25 558.5516 L 39.55 558.5516 L 39.55 576.6609 z \\\"/><path clip-path=\\\"url(#clip4-16)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 44.0152 576.6609 L 121.0152 576.6609 L 121.0152 566.6609 L 44.0152 566.6609 L 44.0152 576.6609 z \\\"/><g clip-path=\\\"url(#clip4-16)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 44.0152 569.2859)\\\" x=\\\"0 5.336 8 12.448 14.576 18.576 23.024 27.472 29.6 35.376 39.824 41.648 45.648 47.472 51.92 56.368 58.496 62.496 64.32 68.768 72.768\\\">Are you waiving class</text></g><path clip-path=\\\"url(#clip4-16)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 58.6109 567.6063 L 106.6109 567.6063 L 106.6109 557.6063 L 58.6109 557.6063 L 58.6109 567.6063 z \\\"/><g clip-path=\\\"url(#clip4-16)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 58.6109 560.2312)\\\" x=\\\"0 4.448 8.448 10.672 12.496 16.944 21.392 23.52 26.184 28.008 32.456 36.904 39.128 43.128\\\">action rights?</text></g><clipPath id=\\\"clip4-17\\\"><path d=\\\"M 129 530 L 206 530 L 206 579 L 129 579 L 129 530 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-17)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 159.5461 569.2859)\\\" x=\\\"0 5.336 9.784 13.784\\\">Yes.</text></g><clipPath id=\\\"clip4-18\\\"><path d=\\\"M 205 530 L 573 530 L 573 579 L 205 579 L 205 530 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 569.2859)\\\" x=\\\"0 5.7774 12 17.7774 23.5547 28.4414\\\">COURTS</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 243.6273 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 245.7523 569.2859)\\\" x=\\\"0 5.3359 11.1133\\\">AND</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.643 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 264.768 569.2859)\\\" x=\\\"0 5.3359 11.1133 16.4492 18.6719 23.5586 28.8945 34.6719\\\">ARBITERS</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 304.7758 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 306.9008 569.2859)\\\" x=\\\"0\\\">W</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 306.9008 567.9396 L 306.9008 567.9396 L 314.9008 567.9396 L 315.2341 567.9396 L 315.2341 567.2729 L 314.9008 567.2729 L 306.9008 567.2729 L 306.5674 567.2729 L 306.5674 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 314.4515 569.2859)\\\" x=\\\"0\\\">O</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 314.4515 567.9396 L 314.4515 567.9396 L 320.4515 567.9396 L 320.7849 567.9396 L 320.7849 567.2729 L 320.4515 567.2729 L 314.4515 567.2729 L 314.1182 567.2729 L 314.1182 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 320.6742 569.2859)\\\" x=\\\"0\\\">N</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 320.6742 567.9396 L 320.6742 567.9396 L 326.6742 567.9396 L 327.0075 567.9396 L 327.0075 567.2729 L 326.6742 567.2729 L 320.6742 567.2729 L 320.3409 567.2729 L 320.3409 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 326.4515 569.2859)\\\" x=\\\"0\\\">&apos;</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 326.4515 567.9396 L 326.4515 567.9396 L 328.4515 567.9396 L 328.7849 567.9396 L 328.7849 567.2729 L 328.4515 567.2729 L 326.4515 567.2729 L 326.1182 567.2729 L 326.1182 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 327.9789 569.2859)\\\" x=\\\"0\\\">T</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 327.9789 567.9396 L 327.9789 567.9396 L 332.9789 567.9396 L 333.3122 567.9396 L 333.3122 567.2729 L 332.9789 567.2729 L 327.9789 567.2729 L 327.6456 567.2729 L 327.6456 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 332.8656 569.2859)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 332.8656 567.9396 L 332.8656 567.9396 L 334.8656 567.9396 L 335.1989 567.9396 L 335.1989 567.2729 L 334.8656 567.2729 L 332.8656 567.2729 L 332.5323 567.2729 L 332.5323 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 334.9906 569.2859)\\\" x=\\\"0\\\">A</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 334.9906 567.9396 L 334.9906 567.9396 L 339.9906 567.9396 L 340.3239 567.9396 L 340.3239 567.2729 L 339.9906 567.2729 L 334.9906 567.2729 L 334.6573 567.2729 L 334.6573 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 340.3265 569.2859)\\\" x=\\\"0\\\">L</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 340.3265 567.9396 L 340.3265 567.9396 L 344.3265 567.9396 L 344.6599 567.9396 L 344.6599 567.2729 L 344.3265 567.2729 L 340.3265 567.2729 L 339.9932 567.2729 L 339.9932 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 344.7758 569.2859)\\\" x=\\\"0\\\">L</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 344.7758 567.9396 L 344.7758 567.9396 L 348.7758 567.9396 L 349.1091 567.9396 L 349.1091 567.2729 L 348.7758 567.2729 L 344.7758 567.2729 L 344.4424 567.2729 L 344.4424 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 349.225 569.2859)\\\" x=\\\"0\\\">O</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 349.225 567.9396 L 349.225 567.9396 L 355.225 567.9396 L 355.5583 567.9396 L 355.5583 567.2729 L 355.225 567.2729 L 349.225 567.2729 L 348.8917 567.2729 L 348.8917 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 355.4477 569.2859)\\\" x=\\\"0\\\">W</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 355.4477 567.9396 L 355.4477 567.9396 L 363.4477 567.9396 L 363.781 567.9396 L 363.781 567.2729 L 363.4477 567.2729 L 355.4477 567.2729 L 355.1143 567.2729 L 355.1143 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 362.9984 569.2859)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 362.9984 567.9396 L 362.9984 567.9396 L 364.9984 567.9396 L 365.3318 567.9396 L 365.3318 567.2729 L 364.9984 567.2729 L 362.9984 567.2729 L 362.6651 567.2729 L 362.6651 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 365.1234 569.2859)\\\" x=\\\"0\\\">C</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 365.1234 567.9396 L 365.1234 567.9396 L 371.1234 567.9396 L 371.4568 567.9396 L 371.4568 567.2729 L 371.1234 567.2729 L 365.1234 567.2729 L 364.7901 567.2729 L 364.7901 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 370.9008 569.2859)\\\" x=\\\"0\\\">L</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 370.9008 567.9396 L 370.9008 567.9396 L 374.9008 567.9396 L 375.2341 567.9396 L 375.2341 567.2729 L 374.9008 567.2729 L 370.9008 567.2729 L 370.5674 567.2729 L 370.5674 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 375.35 569.2859)\\\" x=\\\"0\\\">A</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 375.35 567.9396 L 375.35 567.9396 L 380.35 567.9396 L 380.6833 567.9396 L 380.6833 567.2729 L 380.35 567.2729 L 375.35 567.2729 L 375.0167 567.2729 L 375.0167 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 380.6859 569.2859)\\\" x=\\\"0\\\">S</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 380.6859 567.9396 L 380.6859 567.9396 L 385.6859 567.9396 L 386.0193 567.9396 L 386.0193 567.2729 L 385.6859 567.2729 L 380.6859 567.2729 L 380.3526 567.2729 L 380.3526 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 386.0219 569.2859)\\\" x=\\\"0\\\">S</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 386.0219 567.9396 L 386.0219 567.9396 L 391.0219 567.9396 L 391.3552 567.9396 L 391.3552 567.2729 L 391.0219 567.2729 L 386.0219 567.2729 L 385.6885 567.2729 L 385.6885 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 391.3578 569.2859)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 391.3578 567.9396 L 391.3578 567.9396 L 393.3578 567.9396 L 393.6911 567.9396 L 393.6911 567.2729 L 393.3578 567.2729 L 391.3578 567.2729 L 391.0245 567.2729 L 391.0245 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 393.4828 569.2859)\\\" x=\\\"0\\\">A</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 393.4828 567.9396 L 393.4828 567.9396 L 398.4828 567.9396 L 398.8161 567.9396 L 398.8161 567.2729 L 398.4828 567.2729 L 393.4828 567.2729 L 393.1495 567.2729 L 393.1495 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 398.8187 569.2859)\\\" x=\\\"0\\\">C</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 398.8187 567.9396 L 398.8187 567.9396 L 404.8187 567.9396 L 405.1521 567.9396 L 405.1521 567.2729 L 404.8187 567.2729 L 398.8187 567.2729 L 398.4854 567.2729 L 398.4854 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 404.5961 569.2859)\\\" x=\\\"0\\\">T</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 404.5961 567.9396 L 404.5961 567.9396 L 409.5961 567.9396 L 409.9294 567.9396 L 409.9294 567.2729 L 409.5961 567.2729 L 404.5961 567.2729 L 404.2628 567.2729 L 404.2628 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 409.4828 569.2859)\\\" x=\\\"0\\\">I</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 409.4828 567.9396 L 409.4828 567.9396 L 411.4828 567.9396 L 411.8161 567.9396 L 411.8161 567.2729 L 411.4828 567.2729 L 409.4828 567.2729 L 409.1495 567.2729 L 409.1495 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 411.7055 569.2859)\\\" x=\\\"0\\\">O</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 411.7055 567.9396 L 411.7055 567.9396 L 417.7055 567.9396 L 418.0388 567.9396 L 418.0388 567.2729 L 417.7055 567.2729 L 411.7055 567.2729 L 411.3721 567.2729 L 411.3721 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 417.9281 569.2859)\\\" x=\\\"0\\\">N</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 417.9281 567.9396 L 417.9281 567.9396 L 423.9281 567.9396 L 424.2614 567.9396 L 424.2614 567.2729 L 423.9281 567.2729 L 417.9281 567.2729 L 417.5948 567.2729 L 417.5948 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 423.7055 569.2859)\\\" x=\\\"0\\\">S</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 423.7055 567.9396 L 423.7055 567.9396 L 428.7055 567.9396 L 429.0388 567.9396 L 429.0388 567.2729 L 428.7055 567.2729 L 423.7055 567.2729 L 423.3721 567.2729 L 423.3721 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 429.0414 569.2859)\\\" x=\\\"0\\\">.</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 429.0414 567.9396 L 429.0414 567.9396 L 431.0414 567.9396 L 431.3747 567.9396 L 431.3747 567.2729 L 431.0414 567.2729 L 429.0414 567.2729 L 428.7081 567.2729 L 428.7081 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 431.264 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 433.389 569.2859)\\\" x=\\\"0 5.3359 9.7852\\\">You</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.6234 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 449.7484 569.2859)\\\" x=\\\"0\\\">w</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 449.7484 567.9396 L 449.7484 567.9396 L 455.7484 567.9396 L 456.0818 567.9396 L 456.0818 567.2729 L 455.7484 567.2729 L 449.7484 567.2729 L 449.4151 567.2729 L 449.4151 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 455.5258 569.2859)\\\" x=\\\"0\\\">a</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 455.5258 567.9396 L 455.5258 567.9396 L 459.5258 567.9396 L 459.8591 567.9396 L 459.8591 567.2729 L 459.5258 567.2729 L 455.5258 567.2729 L 455.1924 567.2729 L 455.1924 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 459.975 569.2859)\\\" x=\\\"0\\\">i</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 459.975 567.9396 L 459.975 567.9396 L 461.975 567.9396 L 462.3083 567.9396 L 462.3083 567.2729 L 461.975 567.2729 L 459.975 567.2729 L 459.6417 567.2729 L 459.6417 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 461.7992 569.2859)\\\" x=\\\"0\\\">v</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 461.7992 567.9396 L 461.7992 567.9396 L 465.7992 567.9396 L 466.1325 567.9396 L 466.1325 567.2729 L 465.7992 567.2729 L 461.7992 567.2729 L 461.4659 567.2729 L 461.4659 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 465.7992 569.2859)\\\" x=\\\"0\\\">e</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 465.7992 567.9396 L 465.7992 567.9396 L 469.7992 567.9396 L 470.1325 567.9396 L 470.1325 567.2729 L 469.7992 567.2729 L 465.7992 567.2729 L 465.4659 567.2729 L 465.4659 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 470.2484 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 472.3734 569.2859)\\\" x=\\\"0 4 8.4492 12.8984\\\">your</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 487.9359 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 490.0609 569.2859)\\\" x=\\\"0 2.6641 4.4883 8.9375 13.3867 15.6094\\\">rights</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.6703 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 511.7953 569.2859)\\\" x=\\\"0 2.2227\\\">to</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 518.4672 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 520.5922 569.2859)\\\" x=\\\"0 4.4492\\\">be</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.4906 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 531.6156 569.2859)\\\" x=\\\"0 1.8242\\\">in</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 537.889 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 540.014 569.2859)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 544.4633 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 546.5883 569.2859)\\\" x=\\\"0\\\">c</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 546.5883 567.9396 L 546.5883 567.9396 L 550.5883 567.9396 L 550.9216 567.9396 L 550.9216 567.2729 L 550.5883 567.2729 L 546.5883 567.2729 L 546.2549 567.2729 L 546.2549 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 550.5883 569.2859)\\\" x=\\\"0\\\">l</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 550.5883 567.9396 L 550.5883 567.9396 L 552.5883 567.9396 L 552.9216 567.9396 L 552.9216 567.2729 L 552.5883 567.2729 L 550.5883 567.2729 L 550.2549 567.2729 L 550.2549 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 552.4125 569.2859)\\\" x=\\\"0\\\">a</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 552.4125 567.9396 L 552.4125 567.9396 L 556.4125 567.9396 L 556.7458 567.9396 L 556.7458 567.2729 L 556.4125 567.2729 L 552.4125 567.2729 L 552.0792 567.2729 L 552.0792 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 556.8617 569.2859)\\\" x=\\\"0\\\">s</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 556.8617 567.9396 L 556.8617 567.9396 L 560.8617 567.9396 L 561.1951 567.9396 L 561.1951 567.2729 L 560.8617 567.2729 L 556.8617 567.2729 L 556.5284 567.2729 L 556.5284 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 560.8617 569.2859)\\\" x=\\\"0\\\">s</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 560.8617 567.9396 L 560.8617 567.9396 L 564.8617 567.9396 L 565.1951 567.9396 L 565.1951 567.2729 L 564.8617 567.2729 L 560.8617 567.2729 L 560.5284 567.2729 L 560.5284 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 560.2312)\\\" x=\\\"0\\\">a</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 209.85 558.8849 L 209.85 558.8849 L 213.85 558.8849 L 214.1833 558.8849 L 214.1833 558.2182 L 213.85 558.2182 L 209.85 558.2182 L 209.5167 558.2182 L 209.5167 558.8849 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 214.2992 560.2312)\\\" x=\\\"0\\\">c</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 214.2992 558.8849 L 214.2992 558.8849 L 218.2992 558.8849 L 218.6325 558.8849 L 218.6325 558.2182 L 218.2992 558.2182 L 214.2992 558.2182 L 213.9659 558.2182 L 213.9659 558.8849 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 218.2992 560.2312)\\\" x=\\\"0\\\">t</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 218.2992 558.8849 L 218.2992 558.8849 L 220.2992 558.8849 L 220.6325 558.8849 L 220.6325 558.2182 L 220.2992 558.2182 L 218.2992 558.2182 L 217.9659 558.2182 L 217.9659 558.8849 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 220.5219 560.2312)\\\" x=\\\"0\\\">i</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 220.5219 558.8849 L 220.5219 558.8849 L 222.5219 558.8849 L 222.8552 558.8849 L 222.8552 558.2182 L 222.5219 558.2182 L 220.5219 558.2182 L 220.1885 558.2182 L 220.1885 558.8849 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 222.3461 560.2312)\\\" x=\\\"0\\\">o</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 222.3461 558.8849 L 222.3461 558.8849 L 226.3461 558.8849 L 226.6794 558.8849 L 226.6794 558.2182 L 226.3461 558.2182 L 222.3461 558.2182 L 222.0128 558.2182 L 222.0128 558.8849 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 226.7953 560.2312)\\\" x=\\\"0\\\">n</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 226.7953 558.8849 L 226.7953 558.8849 L 230.7953 558.8849 L 231.1286 558.8849 L 231.1286 558.2182 L 230.7953 558.2182 L 226.7953 558.2182 L 226.462 558.2182 L 226.462 558.8849 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 231.2445 560.2312)\\\" x=\\\"0\\\">,</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.4672 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 235.5922 560.2312)\\\" x=\\\"0 4.4492\\\">as</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 244.0414 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 246.1664 560.2312)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 250.6156 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 252.7406 560.2312)\\\" x=\\\"0 2.6641 7.1133 11.5625 14.2266 18.6758 22.6758 27.125 31.5742 33.7969 38.2461 40.4688 42.293 46.293\\\">representative</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 303.4828 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 305.6078 560.2312)\\\" x=\\\"0 4.4492 8.8984\\\">and</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 318.9555 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 321.0805 560.2312)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 325.5297 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 327.6547 560.2312)\\\" x=\\\"0 6.6641 11.1133 17.7773 22.2266 26.6758 29.3398\\\">member.</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.2172 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 361.3422 560.2312)\\\" x=\\\"0 6.2227 10.6719 12.4961\\\">Only</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 377.8383 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 379.9633 560.2312)\\\" x=\\\"0 1.8242 6.2734 10.7227 12.5469 16.5469 18.3711 22.8203 27.2695 31.7188\\\">individual</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 413.5062 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 415.6312 560.2312)\\\" x=\\\"0 4.4492 7.1133 11.5625 13.3867 15.6094 18.2734 22.7227 24.9453 26.7695 31.2188 35.668\\\">arbitration,</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 453.5219 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 455.6469 560.2312)\\\" x=\\\"0 4.4492\\\">or</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 462.7601 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 464.8851 560.2312)\\\" x=\\\"0 4 10.6641 15.1133 16.9375 18.7617 21.4258 25.4258 27.25 31.6992 33.5234 40.1875\\\">small-claims</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.0727 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 511.1977 560.2312)\\\" x=\\\"0 4 8.4492 12.8984 15.5625 17.7851 21.7851\\\">courts,</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 535.2055 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 537.3305 560.2312)\\\" x=\\\"0 5.7773 7.6016 9.4258\\\">will</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 551.1766)\\\" x=\\\"0 4 8.4492 10.2734 14.2734\\\">solve</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 228.5726 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 230.6976 551.1766)\\\" x=\\\"0 5.7773 7.6016 11.6016 16.0508 20.5 22.7227 27.1719 31.1719\\\">Disputes.</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 264.0922 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 266.2172 551.1766)\\\" x=\\\"0 5.3359 9.7852\\\">You</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.4515 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 282.5765 551.1766)\\\" x=\\\"0 5.7774 10.2266 12.0508 16.0508\\\">waive</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 303.0765 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 304.9015 551.1766)\\\" x=\\\"0 4 8.4492 12.8984\\\">your</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 320.464 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 322.289 551.1766)\\\" x=\\\"0 2.6641 4.4883 8.9375 13.3867\\\">right</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 337.8984 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 339.7234 551.1766)\\\" x=\\\"0 2.2227\\\">to</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 346.3953 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 348.2203 551.1766)\\\" x=\\\"0 4.4492 8.8984 12.8984\\\">have</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 365.568 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 367.393 551.1766)\\\" x=\\\"0 2.6641 7.1133 11.5625 14.2266 18.6758 22.6758 27.125 31.5742 33.7969 38.2461 40.4687 42.293 46.293\\\">representative</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 418.1351 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 419.9601 551.1766)\\\" x=\\\"0 4 5.8242 10.2734 12.0977 18.7617 22.7617\\\">claims.</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 444.9445 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 446.7695 551.1766)\\\" x=\\\"0 5.7774 10.2266 12.0508 16.5 20.5\\\">Unless</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 471.2695 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 473.0945 551.1766)\\\" x=\\\"0 2.6641 7.1133 11.1133 15.5625 18.2266 22.2266 26.6758\\\">reversed</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 504.2195 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 506.0445 551.1766)\\\" x=\\\"0 4.4492\\\">on</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 514.943 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 516.768 551.1766)\\\" x=\\\"0 4.4492 8.8984 13.3477 17.7969 22.2461 24.0703\\\">appeal,</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 543.0609 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 544.8859 551.1766)\\\" x=\\\"0 1.8242\\\">if</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 548.9328 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 550.7578 551.1766)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 542.1219)\\\" x=\\\"0 4 8.4492 12.8984 15.5625\\\">court</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 227.6351 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 229.4601 542.1219)\\\" x=\\\"0 1.8242 6.2734 10.2734 14.7227 16.5469 18.3711 22.8203 27.2695 29.4922 33.9414\\\">invalidates</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 267.4015 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 269.2265 542.1219)\\\" x=\\\"0 2.2227 6.6719 8.4961\\\">this</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.7226 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 283.5477 542.1219)\\\" x=\\\"0 5.7773 10.2266 12.0508 16.0508 20.5 23.1641\\\">waiver,</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.9344 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 310.7594 542.1219)\\\" x=\\\"0 2.2226 6.6719 11.1211\\\">then</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 326.3297 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 328.4547 542.1219)\\\" x=\\\"0 2.2227 6.6719\\\">the</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 339.5758 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 341.4008 542.1219)\\\" x=\\\"0 4.4492 8.8984 11.5625 16.0117 20.4609 27.125 31.5742 36.0234\\\">agreement</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 379.6469 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 381.4719 542.1219)\\\" x=\\\"0 2.2227\\\">to</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.1437 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 389.9687 542.1219)\\\" x=\\\"0 4.4492 7.1133 11.5625 13.3867 15.6094 18.2734 22.7227 24.9453\\\">arbitrate</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.3633 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 421.1883 542.1219)\\\" x=\\\"0 5.7774 7.6016 9.4258\\\">will</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 432.4383 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 434.2633 542.1219)\\\" x=\\\"0 4.4492\\\">be</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 443.1617 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 444.9867 542.1219)\\\" x=\\\"0 4 8.4492 10.2734 14.7227\\\">void,</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 461.932 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 463.757 542.1219)\\\" x=\\\"0 4.4492 8.8984\\\">and</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 477.1047 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 478.9297 542.1219)\\\" x=\\\"0 5.7773 7.6016 11.6016 16.0508 20.5 22.7227 27.1719\\\">Disputes</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 510.1016 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 511.9266 542.1219)\\\" x=\\\"0 5.7773 7.6016 9.4258\\\">will</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 523.1766 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 525.0016 542.1219)\\\" x=\\\"0 4.4492\\\">be</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 533.9 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 535.725 542.1219)\\\" x=\\\"0 2.6641 7.1133 11.1133 15.5625 17.3867 21.3867 25.8359\\\">resolved</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 533.0672)\\\" x=\\\"0 4.4492\\\">by</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 218.2992 533.0672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 220.1242 533.0672)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 224.5734 533.0672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 226.3984 533.0672)\\\" x=\\\"0 1.8242 6.2734 10.7227 15.1719 19.6211\\\">judge,</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 248.2422 533.0672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 250.0672 533.0672)\\\" x=\\\"0 4.4492 8.8984\\\">but</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 261.1883 533.0672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 263.0133 533.0672)\\\" x=\\\"0 4.4492 8.8984\\\">not</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 274.1344 533.0672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 275.9594 533.0672)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.4086 533.0672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 282.2336 533.0672)\\\" x=\\\"0 1.8242 6.2734 8.9375 12.9375\\\">jury.</text></g><clipPath id=\\\"clip4-19\\\"><path d=\\\"M 35 491 L 130 491 L 130 531 L 35 531 L 35 491 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-19)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 530.3875 L 129.35 530.3875 L 129.35 491.1688 L 35.45 491.1688 L 35.45 530.3875 z \\\"/><path clip-path=\\\"url(#clip4-19)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 528.3875 L 125.25 528.3875 L 125.25 519.3328 L 39.55 519.3328 L 39.55 528.3875 z \\\"/><path clip-path=\\\"url(#clip4-19)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 49.9664 528.3875 L 114.9664 528.3875 L 114.9664 518.3875 L 49.9664 518.3875 L 49.9664 528.3875 z \\\"/><g clip-path=\\\"url(#clip4-19)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 49.9664 521.0125)\\\" x=\\\"0 7.552 12 16.448 18.672 20.8 22.624 27.072 32.848 34.976 39.424 43.872 48.32 50.144 51.968 56.416 60.416\\\">What law applies?</text></g><clipPath id=\\\"clip4-20\\\"><path d=\\\"M 129 491 L 206 491 L 206 531 L 129 531 L 129 491 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-20)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.009 521.0125)\\\" x=\\\"0 4.888 9.336 13.784 15.912 20.8 25.248 29.696 34.144 36.808 41.256\\\">The Federal</text></g><g clip-path=\\\"url(#clip4-20)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 142.4308 511.9578)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 19.16 23.608 25.832 27.656 32.104 36.552 38.68 44.016 48.016\\\">Arbitration Act</text></g><g clip-path=\\\"url(#clip4-20)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 153.1555 502.9031)\\\" x=\\\"0 2.664 5.504 10.392 15.728 21.064 23.904 26.568\\\">(&quot;FAA&quot;).</text></g><clipPath id=\\\"clip4-21\\\"><path d=\\\"M 205 491 L 573 491 L 573 531 L 205 531 L 205 491 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 521.0125)\\\" x=\\\"0 4.888 9.336 11.16\\\">This</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.0101 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 228.9725 521.0125)\\\" x=\\\"0 2.224 4.888 9.336 13.784 17.784 22.232 26.232 28.456 30.28 34.728\\\">transaction</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 268.1522 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 272.1145 521.0125)\\\" x=\\\"0 1.824 6.272 10.272 14.72 16.544 20.544 24.992\\\">involves</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 301.1106 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 305.0729 521.0125)\\\" x=\\\"0 1.824 6.272 8.496 12.944 15.608 19.608 21.832 26.28 28.504\\\">interstate</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.026 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 341.9884 521.0125)\\\" x=\\\"0 4 8.448 15.112 21.776 26.224 28.888 32.888 37.336\\\">commerce.</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 381.5509 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 385.5132 521.0125)\\\" x=\\\"0 4.888 9.336 13.784 17.784\\\">Thus,</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 405.521 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 409.4834 521.0125)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 420.6045 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 424.5668 521.0125)\\\" x=\\\"0 4.888 10.224\\\">FAA</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 440.1254 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 444.0877 521.0125)\\\" x=\\\"0 4.448 8.896 12.896 17.344 20.008 24.456 28.456\\\">governs.</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.7713 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 478.7336 521.0125)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 483.179 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 487.1413 521.0125)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 491.5905 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 495.5528 521.0125)\\\" x=\\\"0 4 8.448 12.896 15.56\\\">court</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 513.338 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 517.3003 521.0125)\\\" x=\\\"0 2.224 4.048 8.496 12.944\\\">finds</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 534.2456 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 538.208 521.0125)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.3291 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 553.2914 521.0125)\\\" x=\\\"0 4.888 10.224\\\">FAA</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 511.9578)\\\" x=\\\"0 4.448 8.896 13.344 17.344 21.792 23.32\\\">doesn&apos;t</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 235.3969 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 237.5853 511.9578)\\\" x=\\\"0 4.448 8.896 13.344 15.168 19.168\\\">apply,</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 258.9798 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 261.1682 511.9578)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 274.5159 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 276.7043 511.9578)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 287.8254 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 290.0138 511.9578)\\\" x=\\\"0 2.224 4.048 8.496 12.944 14.768 19.216\\\">finding</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 313.6818 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 315.8702 511.9578)\\\" x=\\\"0 4 8.448 12.896 14.424\\\">can&apos;t</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 332.5186 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 334.7071 511.9578)\\\" x=\\\"0 4.448\\\">be</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 343.6055 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 345.7939 511.9578)\\\" x=\\\"0 4.448 8.896 13.344 17.792 22.24 24.064 28.512 32.96\\\">appealed,</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.9853 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 383.1737 511.9578)\\\" x=\\\"0 2.224 6.672 11.12\\\">then</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 398.7441 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 400.9325 511.9578)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 412.0536 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 414.242 511.9578)\\\" x=\\\"0 4 6.224 10.672 12.896\\\">state</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 431.5857 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 433.7742 511.9578)\\\" x=\\\"0 1.824 6.272\\\">law</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 445.825 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 448.0134 511.9578)\\\" x=\\\"0 5.776 10.224 14.672 17.336\\\">where</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 469.8024 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 471.9908 511.9578)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.8893 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 487.0777 511.9578)\\\" x=\\\"0 5.776 10.224 12.888\\\">were</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 504.4175 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 506.606 511.9578)\\\" x=\\\"0 5.776 10.224 14.672\\\">when</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 525.731 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 527.9194 511.9578)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 540.8178 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 543.0062 511.9578)\\\" x=\\\"0 4 5.824 10.272 14.72 19.168 23.616\\\">signed,</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 502.9031)\\\" x=\\\"0 4.448 8.896 12.896 17.344 20.008 24.456 28.456\\\">governs.</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 240.5336 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 243.9142 502.9031)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.6993 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 261.0799 502.9031)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 284.6893 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 288.0699 502.9031)\\\" x=\\\"0 6.664 11.112 15.112\\\">must</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 305.4058 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 308.7864 502.9031)\\\" x=\\\"0 4.448 8.896 13.344 15.168\\\">apply</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 327.9582 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 331.3388 502.9031)\\\" x=\\\"0 4 8.448 12.896 16.896 19.12 23.568 28.016 30.24 32.064 36.064\\\">substantive</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.8545 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 375.235 502.9031)\\\" x=\\\"0 1.824 6.272\\\">law</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 387.2858 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 390.6664 502.9031)\\\" x=\\\"0 4 8.448 12.896 16.896 18.72 22.72 24.944 29.392 33.84\\\">consistent</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 426.7328 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 430.1134 502.9031)\\\" x=\\\"0 5.776 7.6 9.824\\\">with</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 444.3868 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 447.7674 502.9031)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 458.8885 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 462.2691 502.9031)\\\" x=\\\"0 4.888 10.224 15.56\\\">FAA.</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 480.0503 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 483.4309 502.9031)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 497.2161 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 500.5966 502.9031)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 524.206 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 527.5866 502.9031)\\\" x=\\\"0 6.664 11.112 15.112\\\">must</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 544.9225 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 548.3031 502.9031)\\\" x=\\\"0 2.224 6.672 8.496 10.32 14.768\\\">follow</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 493.8484)\\\" x=\\\"0 4 6.224 10.672 12.896 17.344 19.568 24.016 28.016 30.144 34.592 36.816 38.944 40.768 42.592 49.256 51.08 53.304 57.752 59.976 61.8 66.248 70.696 72.824 77.272 81.72 86.168 88.296 92.744 95.408 97.232 101.232 103.056 104.88 109.328 113.776 118.224 120.352 124.352 126.176 130.624 132.448 139.112 143.112\\\">statutes of limitation and privilege claims.</text></g><clipPath id=\\\"clip4-22\\\"><path d=\\\"M 35 433 L 130 433 L 130 492 L 35 492 L 35 433 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-22)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 491.1688 L 129.35 491.1688 L 129.35 433.8406 L 35.45 433.8406 L 35.45 491.1688 z \\\"/><path clip-path=\\\"url(#clip4-22)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 489.1688 L 125.25 489.1688 L 125.25 471.0594 L 39.55 471.0594 L 39.55 489.1688 z \\\"/><path clip-path=\\\"url(#clip4-22)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 45.443 489.1688 L 119.443 489.1688 L 119.443 479.1688 L 45.443 479.1688 L 45.443 489.1688 z \\\"/><g clip-path=\\\"url(#clip4-22)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 45.443 481.7937)\\\" x=\\\"0 5.776 10.224 14.672 16.8 19.024 23.472 27.92 30.048 34.496 38.944 41.608 43.832 45.656 50.104 54.104 56.232 58.456 61.12 65.12 67.248 69.472\\\">Can the * D E M O * to</text></g><path clip-path=\\\"url(#clip4-22)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 46.6363 480.1141 L 118.6363 480.1141 L 118.6363 470.1141 L 46.6363 470.1141 L 46.6363 480.1141 z \\\"/><g clip-path=\\\"url(#clip4-22)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 46.6363 472.7391)\\\" x=\\\"0 4 8.448 10.272 14.272 18.72 20.848 26.624 28.448 32.448 36.896 41.344 43.568 48.016 52.016 54.144 56.368 58.192 60.856 64.856 67.08\\\">solve Disputes first?</text></g><clipPath id=\\\"clip4-23\\\"><path d=\\\"M 129 433 L 206 433 L 206 492 L 129 492 L 129 433 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-23)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 159.5461 481.7937)\\\" x=\\\"0 5.336 9.784 13.784\\\">Yes.</text></g><clipPath id=\\\"clip4-24\\\"><path d=\\\"M 205 433 L 573 433 L 573 492 L 205 492 L 205 433 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 481.7937)\\\" x=\\\"0 7.552\\\">We</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 221.85 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 224.092 481.7937)\\\" x=\\\"0 4 8.448\\\">can</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 236.9904 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 239.2324 481.7937)\\\" x=\\\"0 2.224 4.888\\\">try</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 248.1191 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 250.3611 481.7937)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.033 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 259.275 481.7937)\\\" x=\\\"0 4 8.448 10.272 14.272\\\">solve</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 277.9976 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 280.2396 481.7937)\\\" x=\\\"0 5.776 7.6 11.6 16.048 20.496 22.72 27.168\\\">Disputes</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 311.4115 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 313.6535 481.7937)\\\" x=\\\"0 1.824\\\">if</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 317.7004 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 319.9424 481.7937)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 332.8408 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 335.0828 481.7937)\\\" x=\\\"0 4 8.448 10.272\\\">call</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 347.1805 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 349.4224 481.7937)\\\" x=\\\"0 4.448\\\">us</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 357.8717 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 360.1137 481.7937)\\\" x=\\\"0 4.448\\\">at</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 366.7855 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 369.0275 481.7937)\\\" x=\\\"0 2.664 7.112 11.56 16.008\\\">(100)</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 387.7033 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 389.9453 481.7937)\\\" x=\\\"0 4.448 8.896 13.344 16.008 20.456 24.904 29.352 33.8\\\">000-0006.</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 425.9766 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 428.2185 481.7937)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 432.6639 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 434.9058 481.7937)\\\" x=\\\"0 2.224 6.672 8.496\\\">this</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.4019 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 449.6439 481.7937)\\\" x=\\\"0 4.448 8.896 13.344 17.344 21.792 23.32\\\">doesn&apos;t</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 475.1908 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 477.4328 481.7937)\\\" x=\\\"0 4 8.448 10.272 14.272\\\">solve</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 496.1555 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 498.3974 481.7937)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.5185 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 511.7605 481.7937)\\\" x=\\\"0 5.776 7.6 11.6 16.048 20.496 22.72 27.168\\\">Dispute,</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 541.1551 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 543.3971 481.7937)\\\" x=\\\"0 6.664 11.112 12.936\\\">mail</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 558.1588 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 560.4008 481.7937)\\\" x=\\\"0 4.448\\\">us</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 472.7391)\\\" x=\\\"0 5.776 8.44 10.264 12.488 14.712 19.16\\\">written</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.4594 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 235.6405 472.7391)\\\" x=\\\"0 4.448 8.896 11.12 12.944 16.944 21.392\\\">notice,</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.2577 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 261.4388 472.7391)\\\" x=\\\"0 5.776 7.6 9.824 14.272 16.096\\\">within</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.9857 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 284.1668 472.7391)\\\" x=\\\"0 4.448 8.896\\\">100</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 297.5145 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 299.6956 472.7391)\\\" x=\\\"0 4.448 8.896 12.896\\\">days</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 316.594 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 318.7752 472.7391)\\\" x=\\\"0 4.448\\\">of</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 325.447 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 327.6282 472.7391)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.7493 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 340.9304 472.7391)\\\" x=\\\"0 5.776 7.6 11.6 16.048 20.496 22.72\\\">Dispute</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 368.1023 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 370.2834 472.7391)\\\" x=\\\"0 4.448 8.896 11.12 15.568\\\">date.</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.0763 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 390.2575 472.7391)\\\" x=\\\"0 2.224\\\">In</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 396.9293 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 399.1105 472.7391)\\\" x=\\\"0 4 8.448 12.896\\\">your</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 414.673 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 416.8541 472.7391)\\\" x=\\\"0 4.448 8.896 11.12 12.944 16.944 21.392\\\">notice,</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 440.4713 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 442.6524 472.7391)\\\" x=\\\"0 2.224 6.672 8.496\\\">tell</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 452.9727 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 455.1539 472.7391)\\\" x=\\\"0 4.448\\\">us</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 463.6031 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 465.7842 472.7391)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 476.9053 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 479.0864 472.7391)\\\" x=\\\"0 4.448 8.896 11.12 15.568 17.392 19.216\\\">details</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 502.3052 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 504.4863 472.7391)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 517.834 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 520.0151 472.7391)\\\" x=\\\"0 4.448 8.896\\\">how</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 534.6909 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 536.872 472.7391)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.7704 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 551.9515 472.7391)\\\" x=\\\"0 5.776 10.224 14.672\\\">want</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 463.6844)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 216.5219 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 219.4635 463.6844)\\\" x=\\\"0 4 8.448 10.272 14.272\\\">solve</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.1861 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 241.1277 463.6844)\\\" x=\\\"0 1.824 4.048\\\">it.</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.3973 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 250.3389 463.6844)\\\" x=\\\"0 7.552\\\">We</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.3389 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 265.2805 463.6844)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.5305 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 279.4721 463.6844)\\\" x=\\\"0 2.224 4.888\\\">try</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 288.3588 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 291.3004 463.6844)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 297.9723 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 300.9139 463.6844)\\\" x=\\\"0 4 8.448 10.272 14.272\\\">solve</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.6366 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 322.5782 463.6844)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 333.6993 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 336.6409 463.6844)\\\" x=\\\"0 5.776 7.6 11.6 16.048 20.496 22.72 27.168\\\">Dispute.</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 366.0354 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 368.977 463.6844)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 373.4224 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 376.364 463.6844)\\\" x=\\\"0 5.776\\\">we</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 386.5905 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 389.5321 463.6844)\\\" x=\\\"0 6.664 11.112 15.112\\\">make</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 409.0947 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 412.0363 463.6844)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 416.4855 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 419.4271 463.6844)\\\" x=\\\"0 5.776 8.44 10.264 12.488 14.712 19.16\\\">written</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 443.0365 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 445.9781 463.6844)\\\" x=\\\"0 4.448 6.672 8.896 13.344\\\">offer</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 461.9859 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 464.9275 463.6844)\\\" x=\\\"0 2.664 5.504 10.84 15.288 17.512 19.736 21.56 26.008 32.672 37.12 41.568\\\">(&quot;Settlement</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 508.7205 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 511.6621 463.6844)\\\" x=\\\"0 6.224 8.448 10.672 15.12 17.784 20.624 23.288\\\">Offer&quot;),</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 537.1699 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 540.1115 463.6844)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.0099 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 555.9515 463.6844)\\\" x=\\\"0 4 8.448\\\">can</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 454.6297)\\\" x=\\\"0 2.664 7.112 8.936 13.384 17.384\\\">reject</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 229.4594 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 233.7138 454.6297)\\\" x=\\\"0 1.824\\\">it</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 237.7606 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 242.015 454.6297)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 255.3627 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 259.6171 454.6297)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 29.392\\\">arbitrate.</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.2343 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 295.4887 454.6297)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.934 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 304.1884 454.6297)\\\" x=\\\"0 5.776\\\">we</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 314.4149 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 318.6693 454.6297)\\\" x=\\\"0 4.448 8.896 13.344 14.872\\\">don&apos;t</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.767 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 340.0214 454.6297)\\\" x=\\\"0 4 8.448 10.272 14.272\\\">solve</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 358.744 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 362.9984 454.6297)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 374.1195 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 378.3739 454.6297)\\\" x=\\\"0 5.776 7.6 11.6 16.048 20.496 22.72 27.168\\\">Dispute,</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 407.7684 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 412.0228 454.6297)\\\" x=\\\"0 4.448 6.272 8.496 12.944 17.392\\\">either</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 432.0814 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 436.3358 454.6297)\\\" x=\\\"0 4.448 8.896 11.56 13.784\\\">party</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.121 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 458.3754 454.6297)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 473.4887 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 477.7431 454.6297)\\\" x=\\\"0 4 6.224 10.672 13.336\\\">start</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 493.3016 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 497.556 454.6297)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 26.768 31.216 35.664\\\">arbitration.</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 535.4467 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 539.7011 454.6297)\\\" x=\\\"0 4.888\\\">To</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.037 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 553.2914 454.6297)\\\" x=\\\"0 4 6.224 10.672 13.336\\\">start</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 445.575)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 26.768 31.216 35.664\\\">arbitration,</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.7406 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 250.0233 445.575)\\\" x=\\\"0 4 8.448 12.896 15.12 19.568 23.568\\\">contact</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.8162 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 278.0989 445.575)\\\" x=\\\"0 4.448\\\">an</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 286.9973 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 289.28 445.575)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.8893 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 315.172 445.575)\\\" x=\\\"0 4.448\\\">or</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 322.2853 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 324.5679 445.575)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 26.768 31.216\\\">arbitration</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 360.2359 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 362.5185 445.575)\\\" x=\\\"0 4.448 7.112 11.56 16.008\\\">group</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 382.9795 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 385.2621 445.575)\\\" x=\\\"0 1.824 3.648 7.648 9.872 14.32 18.768\\\">listed.</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 406.2543 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 408.5369 445.575)\\\" x=\\\"0 5.776\\\">No</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 418.7635 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 421.0461 445.575)\\\" x=\\\"0 4.448 8.896 11.56 13.784\\\">party</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 438.8313 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 441.1139 445.575)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 452.3639 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 454.6466 445.575)\\\" x=\\\"0 4.448 6.272 10.272 14.272 16.096 20.544 24.544\\\">disclose</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 483.6427 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 485.9253 445.575)\\\" x=\\\"0 4 8.448 10.672 12.896 14.72 19.168 25.832 30.28 34.728\\\">settlement</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 522.8785 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 525.1611 445.575)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456 24.456 28.904 30.728\\\">proposals</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.8955 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 562.1781 445.575)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 436.5203)\\\" x=\\\"0 2.224 6.672 11.12 13.248 18.584 21.248 25.696 27.52 29.744 34.192 36.856 38.984 43.432 47.88 50.544 52.368 56.816 61.264 63.392 67.84 70.504 74.952 76.776 79 81.664 86.112 88.336 90.16 94.608 99.056\\\">the Arbiter during arbitration.</text></g><clipPath id=\\\"clip4-25\\\"><path d=\\\"M 35 412 L 130 412 L 130 434 L 35 434 L 35 412 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-25)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 433.8406 L 129.35 433.8406 L 129.35 412.7313 L 35.45 412.7313 L 35.45 433.8406 z \\\"/><path clip-path=\\\"url(#clip4-25)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 431.8406 L 125.25 431.8406 L 125.25 413.7313 L 39.55 413.7313 L 39.55 431.8406 z \\\"/><path clip-path=\\\"url(#clip4-25)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 40.0543 431.8406 L 127.0543 431.8406 L 127.0543 421.8406 L 40.0543 421.8406 L 40.0543 431.8406 z \\\"/><g clip-path=\\\"url(#clip4-25)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.0543 424.4656)\\\" x=\\\"0 5.776 10.224 16 18.128 22.128 26.576 31.024 35.472 37.296 41.744 43.872 47.872 52.32 56.768 58.896 62.896 67.344 71.792 74.016 78.464 82.464\\\">How should you contact</text></g><path clip-path=\\\"url(#clip4-25)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 75.9508 422.7859 L 88.9508 422.7859 L 88.9508 412.7859 L 75.9508 412.7859 L 75.9508 422.7859 z \\\"/><g clip-path=\\\"url(#clip4-25)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 75.9508 415.4109)\\\" x=\\\"0 4.448 8.448\\\">us?</text></g><clipPath id=\\\"clip4-26\\\"><path d=\\\"M 129 412 L 206 412 L 206 434 L 129 434 L 129 412 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-26)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 153.3273 424.4656)\\\" x=\\\"0 5.336 9.336 11.464 18.128 22.576 24.4 26.224\\\">By mail.</text></g><clipPath id=\\\"clip4-27\\\"><path d=\\\"M 205 412 L 573 412 L 573 434 L 205 434 L 205 412 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 424.4656)\\\" x=\\\"0 5.336 9.784 14.232\\\">Send</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 228.5336 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 231.2172 424.4656)\\\" x=\\\"0 6.664 11.112 12.936\\\">mail</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.9789 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 248.6625 424.4656)\\\" x=\\\"0 2.224 6.672\\\">to:</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.557 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 260.2406 424.4656)\\\" x=\\\"0 5.336 9.784 14.232\\\">Snap</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 278.9242 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 281.6078 424.4656)\\\" x=\\\"0 5.776 10.664\\\">RTO</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 298.4945 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 301.1781 424.4656)\\\" x=\\\"0 4.448 8.896\\\">LLC</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 315.8539 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 318.5375 424.4656)\\\" x=\\\"0 5.336 7.56 9.784 14.232 18.68 20.904 22.728 27.176 31.624\\\">Attention:</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 352.3851 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 355.0687 424.4656)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 19.16 23.608 25.832 27.656 32.104 36.552\\\">Arbitration.</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.8461 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 396.5297 424.4656)\\\" x=\\\"0 5.336 7.56 13.784\\\">P.O.</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 412.5336 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 415.2172 424.4656)\\\" x=\\\"0 5.336 9.784\\\">Box</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 429.0023 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 431.6859 424.4656)\\\" x=\\\"0 4.448 8.896 13.344 17.792 22.24\\\">26561,</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.1547 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 458.8383 424.4656)\\\" x=\\\"0 5.336 9.784 11.608\\\">Salt</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 472.6703 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 475.3539 424.4656)\\\" x=\\\"0 4.448 8.896 12.896\\\">Lake</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 492.7015 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 495.3851 424.4656)\\\" x=\\\"0 5.776 7.6 9.824 13.824\\\">City,</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 511.432 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 514.1156 424.4656)\\\" x=\\\"0 5.776\\\">UT</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 524.7797 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 527.4633 424.4656)\\\" x=\\\"0 4.448 8.896 13.344 17.792 22.24\\\">84126.</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.932 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 554.6156 424.4656)\\\" x=\\\"0 5.336 9.784\\\">You</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 415.4109)\\\" x=\\\"0 4 8.448 12.896 15.024 19.024 23.472 25.296 27.12 29.248 33.696 37.696 39.824 44.272 46.936 49.064 53.512 57.512 61.96 64.088 68.088 72.536 75.2 77.424 79.248 81.472 83.296 87.744 92.192 94.32 100.984 105.432 107.256 109.08 111.208 113.432 117.88 120.008 124.008 128.456 132.904 135.128 136.952 139.616 146.28 148.408 151.072 155.52 159.52 163.968 165.792 170.24 172.464\\\">can call us or use certified mail to confirm receipt.</text></g><clipPath id=\\\"clip4-28\\\"><path d=\\\"M 35 373 L 130 373 L 130 413 L 35 413 L 35 373 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-28)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 412.7313 L 129.35 412.7313 L 129.35 373.5125 L 35.45 373.5125 L 35.45 412.7313 z \\\"/><path clip-path=\\\"url(#clip4-28)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 410.7313 L 125.25 410.7313 L 125.25 392.6219 L 39.55 392.6219 L 39.55 410.7313 z \\\"/><path clip-path=\\\"url(#clip4-28)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 41.9508 410.7313 L 122.9508 410.7313 L 122.9508 400.7313 L 41.9508 400.7313 L 41.9508 410.7313 z \\\"/><g clip-path=\\\"url(#clip4-28)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 41.9508 403.3562)\\\" x=\\\"0 5.776 10.224 14.672 16.8 20.8 27.464 31.912 33.736 35.56 38.224 42.224 44.048 48.496 50.32 56.984 60.984 63.112 67.112 71.56 76.008 78.672\\\">Can small-claims court</text></g><path clip-path=\\\"url(#clip4-28)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 43.3219 401.6766 L 122.3219 401.6766 L 122.3219 391.6766 L 43.3219 391.6766 L 43.3219 401.6766 z \\\"/><g clip-path=\\\"url(#clip4-28)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 43.3219 394.3016)\\\" x=\\\"0 4 8.448 10.272 14.272 18.72 20.848 24.848 29.296 35.96 40.408 42.536 48.312 50.136 54.136 58.584 63.032 65.256 69.704 73.704\\\">solve s* D E M O *s?</text></g><clipPath id=\\\"clip4-29\\\"><path d=\\\"M 129 373 L 206 373 L 206 413 L 129 413 L 129 373 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-29)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 159.5461 403.3562)\\\" x=\\\"0 5.336 9.784 13.784\\\">Yes.</text></g><clipPath id=\\\"clip4-30\\\"><path d=\\\"M 205 373 L 573 373 L 573 413 L 205 413 L 205 373 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 403.3562)\\\" x=\\\"0 5.3359 9.7852 13.7852\\\">Each</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 228.0844 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 229.9094 403.3562)\\\" x=\\\"0 4.4492 8.8984 11.5625 13.7851\\\">party</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.6945 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 249.5195 403.3562)\\\" x=\\\"0 4.4492 8.8984\\\">has</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.418 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 264.243 403.3562)\\\" x=\\\"0 2.2227 6.6719\\\">the</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.3641 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 277.1891 403.3562)\\\" x=\\\"0 2.6641 4.4883 8.9375 13.3867\\\">right</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 292.7984 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 294.6234 403.3562)\\\" x=\\\"0 2.2227\\\">to</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 301.2953 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 303.1203 403.3562)\\\" x=\\\"0 4.4492 7.1133 11.5625 13.3867 15.6094 18.2734 22.7227 24.9453 29.3945\\\">arbitrate,</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 334.7375 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 336.5625 403.3562)\\\" x=\\\"0 4.4492\\\">or</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 343.6758 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 345.5008 403.3562)\\\" x=\\\"0 2.2227\\\">to</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 352.1727 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 353.9976 403.3562)\\\" x=\\\"0 4.4492\\\">go</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 362.8961 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 364.7211 403.3562)\\\" x=\\\"0 2.2227\\\">to</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.393 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 373.218 403.3562)\\\" x=\\\"0 4 10.6641 15.1133 16.9375 18.7617 21.4258 25.4258 27.25 31.6992 33.5234 40.1875\\\">small-claims</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 417.4055 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 419.2305 403.3562)\\\" x=\\\"0 4 8.4492 12.8984 15.5625\\\">court</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 437.0156 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 438.8406 403.3562)\\\" x=\\\"0 1.8242\\\">if</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 442.8875 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 444.7125 403.3562)\\\" x=\\\"0 2.2227 6.6719\\\">the</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 455.8336 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 457.6586 403.3562)\\\" x=\\\"0 4 10.6641 15.1133 16.9375 18.7617 21.4258 25.4258 27.25 31.6992 33.5234 40.1875\\\">small-claims</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.8461 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 503.6711 403.3562)\\\" x=\\\"0 4 8.4492 12.8984 15.5625\\\">court</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.4562 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 523.2812 403.3562)\\\" x=\\\"0 4.4492 8.8984\\\">has</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 536.1797 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 538.0047 403.3562)\\\" x=\\\"0 2.2227 6.6719\\\">the</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 394.3016)\\\" x=\\\"0 4.4492 8.8984 14.6758 19.125\\\">power</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.639 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 233.464 394.3016)\\\" x=\\\"0 2.2227\\\">to</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 240.1359 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 241.9609 394.3016)\\\" x=\\\"0 4.4492 8.8984 13.3477\\\">hear</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.9726 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 260.0976 394.3016)\\\" x=\\\"0 2.2226 6.6719\\\">the</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 271.2187 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 273.3437 394.3016)\\\" x=\\\"0 5.7773 7.6016 11.6016 16.0508 20.5 22.7227 27.1719\\\">Dispute.</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.7383 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 304.8633 394.3016)\\\" x=\\\"0 5.3359 8 12.4492 14.2734 16.4961 19.1602 23.6094 25.832 27.6562 32.1055\\\">Arbitration</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 341.418 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 343.543 394.3016)\\\" x=\\\"0 5.7773 7.6016 9.4258\\\">will</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 354.793 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 356.918 394.3016)\\\" x=\\\"0 4 8.4492 10.2734 14.2734\\\">solve</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.6406 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 377.7656 394.3016)\\\" x=\\\"0 4.4492 6.2734\\\">all</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 385.8633 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 387.9883 394.3016)\\\" x=\\\"0 5.7774 7.6016 11.6016 16.0508 20.5 22.7227 27.1719\\\">Disputes</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.1601 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 421.2851 394.3016)\\\" x=\\\"0 2.2227 6.6719 11.1211\\\">that</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.6289 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 436.7539 394.3016)\\\" x=\\\"0 2.2226 6.6719\\\">the</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.875 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 450 394.3016)\\\" x=\\\"0 4 10.6641 15.1133 16.9375 18.7617 21.4258 25.4258 27.25 31.6992 33.5234 40.1875\\\">small-claims</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 494.1875 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 496.3125 394.3016)\\\" x=\\\"0 4 8.4492 12.8984 15.5625\\\">court</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 514.0976 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 516.2226 394.3016)\\\" x=\\\"0 4.4492 8.8984 13.3477\\\">does</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 533.5703 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 535.6953 394.3016)\\\" x=\\\"0 4.4492 8.8984\\\">not</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 546.8164 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 548.9414 394.3016)\\\" x=\\\"0 4.4492 8.8984 12.8984\\\">have</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 385.2469)\\\" x=\\\"0 2.2227 6.6719\\\">the</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 220.9711 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 223.0961 385.2469)\\\" x=\\\"0 4.4492 8.8984 14.6758 19.125\\\">power</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 244.8852 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 247.0101 385.2469)\\\" x=\\\"0 2.2227\\\">to</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 253.682 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 255.807 385.2469)\\\" x=\\\"0 4.4492 8.8984 13.3477 16.0117\\\">hear.</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 274.0414 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 276.1664 385.2469)\\\" x=\\\"0 2.2226\\\">If</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.6117 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 282.7367 385.2469)\\\" x=\\\"0 2.2227 6.6719 11.1211 13.7852\\\">there</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 300.9711 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 303.0961 385.2469)\\\" x=\\\"0 1.8242\\\">is</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.9203 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 311.0453 385.2469)\\\" x=\\\"0 4.4492\\\">an</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.9437 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 322.0687 385.2469)\\\" x=\\\"0 4.4492 8.8984 13.3477 17.7969 22.2461\\\">appeal</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 346.139 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 348.264 385.2469)\\\" x=\\\"0 2.2227 4.8867 9.3359\\\">from</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 364.264 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 366.389 385.2469)\\\" x=\\\"0 4 10.6641 15.1133 16.9375 18.7617 21.4258 25.4258 27.25 31.6992 33.5234 40.1875\\\">small-claims</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 410.5765 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 412.7015 385.2469)\\\" x=\\\"0 4 8.4492 12.8984 15.5625 17.7852\\\">court,</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 432.7094 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 434.8344 385.2469)\\\" x=\\\"0 4.4492\\\">or</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 441.9477 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 444.0727 385.2469)\\\" x=\\\"0 1.8242\\\">if</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 448.1195 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 450.2445 385.2469)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.6937 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 456.8187 385.2469)\\\" x=\\\"0 5.7773 7.6016 11.6016 16.0508 20.5 22.7227\\\">Dispute</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 483.9906 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 486.1156 385.2469)\\\" x=\\\"0 4 8.4492 12.8984 17.3476 21.7969 26.2461\\\">changes</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 516.3617 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 518.4867 385.2469)\\\" x=\\\"0 4\\\">so</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.9359 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 529.0609 385.2469)\\\" x=\\\"0 2.2227 6.6719 11.1211\\\">that</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 542.4047 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 544.5297 385.2469)\\\" x=\\\"0 2.2227 6.6719\\\">the</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 376.1922)\\\" x=\\\"0 4 10.6641 15.1133 16.9375 18.7617 21.4258 25.4258 27.25 31.6992 33.5234 40.1875\\\">small-claims</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 254.0375 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 256.1625 376.1922)\\\" x=\\\"0 4 8.4492 12.8984 15.5625\\\">court</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 273.9477 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 276.0727 376.1922)\\\" x=\\\"0 1.8242 6.2734 10.2734 14.7226\\\">loses</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 294.7953 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 296.9203 376.1922)\\\" x=\\\"0 2.2227 6.6719\\\">the</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.0414 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 310.1664 376.1922)\\\" x=\\\"0 4.4492 8.8984 14.6758 19.125\\\">power</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 331.9555 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 333.7805 376.1922)\\\" x=\\\"0 2.2227\\\">to</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 340.4523 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 342.2773 376.1922)\\\" x=\\\"0 4.4492 8.8984 13.3477\\\">hear</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 358.289 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 360.1141 376.1922)\\\" x=\\\"0 1.8242 4.0469\\\">it,</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 366.3836 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 368.2086 376.1922)\\\" x=\\\"0 2.2226 6.6719 11.1211\\\">then</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.7789 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 385.6039 376.1922)\\\" x=\\\"0 2.2227 6.6719\\\">the</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 396.725 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 398.55 376.1922)\\\" x=\\\"0 5.7773 7.6016 11.6016 16.0508 20.5 22.7227\\\">Dispute</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 425.7219 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 427.5469 376.1922)\\\" x=\\\"0 5.7773 7.6016 9.4258\\\">will</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 438.7969 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 440.6219 376.1922)\\\" x=\\\"0 4.4492 8.8984 10.7227\\\">only</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 455.3445 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 457.1695 376.1922)\\\" x=\\\"0 4.4492\\\">be</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.068 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 467.893 376.1922)\\\" x=\\\"0 4.4492 8.8984 13.3477 16.0117\\\">heard</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 488.3539 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 490.1789 376.1922)\\\" x=\\\"0 4.4492\\\">by</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 498.6281 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 500.4531 376.1922)\\\" x=\\\"0 4.4492\\\">an</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.3516 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 511.1766 376.1922)\\\" x=\\\"0 5.3359 8 12.4492 14.2734 16.4961 20.9453 23.6094\\\">Arbiter.</text></g><clipPath id=\\\"clip4-31\\\"><path d=\\\"M 35 343 L 130 343 L 130 374 L 35 374 L 35 343 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-31)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 373.5125 L 129.35 373.5125 L 129.35 343.3484 L 35.45 343.3484 L 35.45 373.5125 z \\\"/><path clip-path=\\\"url(#clip4-31)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 371.5125 L 125.25 371.5125 L 125.25 362.4578 L 39.55 362.4578 L 39.55 371.5125 z \\\"/><path clip-path=\\\"url(#clip4-31)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 41.5875 371.5125 L 123.5875 371.5125 L 123.5875 361.5125 L 41.5875 361.5125 L 41.5875 371.5125 z \\\"/><g clip-path=\\\"url(#clip4-31)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 41.5875 364.1375)\\\" x=\\\"0 5.776 10.224 12.352 16.8 19.024 23.472 27.92 30.584 32.712 37.16 41.608 43.832 45.656 50.104 54.552 58.552 60.68 65.128 69.128 70.952 74.952 77.176\\\">Do other options exist?</text></g><clipPath id=\\\"clip4-32\\\"><path d=\\\"M 129 343 L 206 343 L 206 374 L 129 374 L 129 343 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-32)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 159.5461 364.1375)\\\" x=\\\"0 5.336 9.784 13.784\\\">Yes.</text></g><clipPath id=\\\"clip4-33\\\"><path d=\\\"M 205 343 L 573 343 L 573 374 L 205 374 L 205 343 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 364.1375)\\\" x=\\\"0 5.336 9.784 12.008\\\">Both</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 226.307 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 228.8021 364.1375)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056\\\">parties</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 252.8607 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 255.3557 364.1375)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 270.469 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 272.964 364.1375)\\\" x=\\\"0 4.448 8.448\\\">use</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 285.8625 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 288.3575 364.1375)\\\" x=\\\"0 1.824 6.272 12.048 14.272 18.72\\\">lawful</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.9044 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 311.3995 364.1375)\\\" x=\\\"0 4 8.448 10.272 12.496 15.16 19.608 24.056 25.88\\\">self-help</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 341.7315 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 344.2265 364.1375)\\\" x=\\\"0 2.664 7.112 13.776 18.224 22.672 24.496 28.944 32.944\\\">remedies.</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 379.3984 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 381.8935 364.1375)\\\" x=\\\"0 4.888 9.336 11.16\\\">This</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 397.0536 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 399.5487 364.1375)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44\\\">includes</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 428.994 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 431.489 364.1375)\\\" x=\\\"0 4 8.448 10.672 13.336 17.784 20.008\\\">set-off</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 453.7195 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 456.2146 364.1375)\\\" x=\\\"0 4.448\\\">or</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 463.3279 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 465.8229 364.1375)\\\" x=\\\"0 2.664 7.112 11.56 16.008 20.008 24.008 28.456 32.456 36.456 38.28 42.728\\\">repossession</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 513.0065 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 515.5015 364.1375)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 528.8492 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 531.3443 364.1375)\\\" x=\\\"0 4 8.448 10.272\\\">sale</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 546.0669 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 548.562 364.1375)\\\" x=\\\"0 4.448\\\">of</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 555.2339 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 557.7289 364.1375)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 355.0828)\\\" x=\\\"0 5.336 8 12.448 16.896 21.344 24.008 26.232 30.232\\\">Property.</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 242.307 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 245.9017 355.0828)\\\" x=\\\"0 5.336 9.784 12.008\\\">Both</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.3587 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 265.9534 355.0828)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056\\\">parties</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.0119 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 293.6066 355.0828)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.7199 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 312.3145 355.0828)\\\" x=\\\"0 4 8.448 12.896\\\">seek</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.213 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 332.8076 355.0828)\\\" x=\\\"0 2.664 7.112 13.776 18.224 22.672 24.496 28.944\\\">remedies</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 365.7568 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 369.3515 355.0828)\\\" x=\\\"0 5.776 10.224 12.048 16.048\\\">which</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 389.8515 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 393.4461 355.0828)\\\" x=\\\"0 4.448 8.896 13.344 14.872\\\">don&apos;t</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 410.5438 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 414.1384 355.0828)\\\" x=\\\"0 4 5.824 10.272 12.096\\\">claim</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 432.9002 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 436.4948 355.0828)\\\" x=\\\"0 6.664 11.112 15.56 20.008\\\">money</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 460.5065 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 464.1012 355.0828)\\\" x=\\\"0 4.448 8.896 15.56 20.008 24.456 28.904 32.904\\\">damages.</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.234 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 502.8287 355.0828)\\\" x=\\\"0 4.888 9.336 11.16\\\">This</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 517.9888 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 521.5835 355.0828)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44\\\">includes</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.0288 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 554.6234 355.0828)\\\" x=\\\"0 4.448 7.112 11.56\\\">pre-</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 346.0281)\\\" x=\\\"0 1.824 6.272 10.72 15.168 21.832 26.28 30.728 32.952 35.08 39.08 43.528 45.352 49.352 53.8 56.464 60.912 63.136 65.264 67.088 71.536 73.36 77.808 82.256 86.256 88.48 90.304 94.752 99.2 103.2 105.424 107.552 112 114.664 116.792 121.24 125.688 130.136 131.96 134.184 138.632 143.08 144.904 149.352 151.48 154.144 158.592 160.416 162.24 166.688 168.912\\\">judgment seizure, injunctions, or equitable relief.</text></g><clipPath id=\\\"clip4-34\\\"><path d=\\\"M 35 295 L 130 295 L 130 344 L 35 344 L 35 295 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-34)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 343.3484 L 129.35 343.3484 L 129.35 295.075 L 35.45 295.075 L 35.45 343.3484 z \\\"/><path clip-path=\\\"url(#clip4-34)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 341.3484 L 125.25 341.3484 L 125.25 323.2391 L 39.55 323.2391 L 39.55 341.3484 z \\\"/><path clip-path=\\\"url(#clip4-34)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 55.0406 341.3484 L 110.0406 341.3484 L 110.0406 331.3484 L 55.0406 331.3484 L 55.0406 341.3484 z \\\"/><g clip-path=\\\"url(#clip4-34)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 55.0406 333.9734)\\\" x=\\\"0 7.552 9.376 11.2 13.024 15.152 17.376 21.824 23.648 27.648 29.776 35.552 37.376 41.824 46.272 50.272\\\">Will this Clause</text></g><path clip-path=\\\"url(#clip4-34)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 47.3375 332.2938 L 118.3375 332.2938 L 118.3375 322.2938 L 47.3375 322.2938 L 47.3375 332.2938 z \\\"/><g clip-path=\\\"url(#clip4-34)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.3375 324.9187)\\\" x=\\\"0 4 8.448 12.896 15.12 16.944 21.392 25.84 30.288 32.416 34.64 39.088 41.216 45.664 50.112 54.112 58.56 61.224 65.672\\\">continue to govern?</text></g><clipPath id=\\\"clip4-35\\\"><path d=\\\"M 129 295 L 206 295 L 206 344 L 129 344 L 129 295 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-35)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.8976 333.9734)\\\" x=\\\"0 5.336 9.784 13.784 16.008 18.136 22.584 27.032 28.856 33.304 37.304\\\">Yes, unless</text></g><g clip-path=\\\"url(#clip4-35)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 135.7785 324.9187)\\\" x=\\\"0 4.448 6.672 11.12 15.568 18.232 24.008 25.832 29.832 34.28 36.408 40.856 45.304 47.968 52.416 56.864 61.312\\\">otherwise agreed.</text></g><clipPath id=\\\"clip4-36\\\"><path d=\\\"M 205 295 L 573 295 L 573 344 L 205 344 L 205 295 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 333.9734)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 223.6351 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 227.574 333.9734)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496\\\">Clause</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 252.5233 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 256.4622 333.9734)\\\" x=\\\"0 4 6.224 10.672 14.672\\\">stays</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.134 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 279.0729 333.9734)\\\" x=\\\"0 4.448 6.672 8.896 13.344 17.344 19.568 21.392 25.392 29.84\\\">effective,</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 311.1354 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 315.0743 333.9734)\\\" x=\\\"0 4.448 8.896 10.72 15.168 19.168\\\">unless</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.2462 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 342.1851 333.9734)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 353.3062 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 357.2451 333.9734)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056\\\">parties</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 381.3037 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 385.2426 333.9734)\\\" x=\\\"0 4 5.824 10.272\\\">sign</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 399.9652 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 403.9041 333.9734)\\\" x=\\\"0 4.448\\\">an</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 412.8026 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 416.7415 333.9734)\\\" x=\\\"0 4.448 8.896 11.56 16.008 20.456 27.12 31.568 36.016\\\">agreement</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.9875 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 458.9264 333.9734)\\\" x=\\\"0 4 6.224 10.672 12.896 14.72 19.168\\\">stating</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 482.5436 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 486.4825 333.9734)\\\" x=\\\"0 1.824\\\">it</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 490.5294 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 494.4683 333.9734)\\\" x=\\\"0 4.448 8.896 13.344 17.344 21.792 23.32 25.544\\\">doesn&apos;t.</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 522.2378 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 526.1767 333.9734)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 539.9619 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 543.9008 333.9734)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496\\\">Clause</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 324.9187)\\\" x=\\\"0 4.448 8.896 12.896 17.344 20.008 24.456\\\">governs</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.3109 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 241.2057 324.9187)\\\" x=\\\"0 1.824\\\">if</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.2526 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 248.1473 324.9187)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 261.0458 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 263.9405 324.9187)\\\" x=\\\"0 2.664 7.112 11.112 15.112 16.936 21.384\\\">rescind</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 289.7765 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 292.6712 324.9187)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 303.7923 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 306.6871 324.9187)\\\" x=\\\"0 2.224 4.888 9.336 13.784 17.784 22.232 26.232 28.456 30.28 34.728 39.176\\\">transaction.</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.0894 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 350.9842 324.9187)\\\" x=\\\"0 2.224\\\">It</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.4295 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 358.3243 324.9187)\\\" x=\\\"0 4.448 8.896 12.896 17.344 20.008 24.456\\\">governs</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 386.7852 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 389.68 324.9187)\\\" x=\\\"0 1.824\\\">if</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.7268 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 396.6216 324.9187)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 409.52 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 412.4148 324.9187)\\\" x=\\\"0 4.448 8.896 11.12 15.568 20.016 21.84 24.064\\\">default,</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 438.7038 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 441.5986 324.9187)\\\" x=\\\"0 2.664 7.112 11.56 16.008 21.784\\\">renew,</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 465.6103 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 468.5051 324.9187)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456 24.456\\\">prepay,</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 495.1887 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 498.0834 324.9187)\\\" x=\\\"0 4.448\\\">or</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 505.1967 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 508.0915 324.9187)\\\" x=\\\"0 4.448 8.896 12.896\\\">pay.</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 523.2126 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 526.1073 324.9187)\\\" x=\\\"0 2.224\\\">It</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 530.5527 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 533.4474 324.9187)\\\" x=\\\"0 4.448 8.896 12.896 17.344 20.008 24.456\\\">governs</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 561.9084 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 564.8031 324.9187)\\\" x=\\\"0 1.824\\\">if</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 315.8641)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 222.7484 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 227.0199 315.8641)\\\" x=\\\"0 2.224 6.672 9.336 16 17.824 22.272 26.72 28.944 33.392\\\">terminate,</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.6371 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 266.9086 315.8641)\\\" x=\\\"0 1.824\\\">if</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 270.9555 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 275.2269 315.8641)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 288.1254 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 292.3969 315.8641)\\\" x=\\\"0 2.664 7.112 8.936 13.384 17.384 19.608 24.056 26.28 30.728\\\">reinstate,</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 325.35 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 329.6215 315.8641)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 342.9691 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 347.2406 315.8641)\\\" x=\\\"0 1.824\\\">if</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.2875 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 355.559 315.8641)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 368.4574 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 372.7289 315.8641)\\\" x=\\\"0 2.664 7.112 9.336 13.784 16.448\\\">return</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.6273 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 397.8988 315.8641)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 409.0199 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 413.2914 315.8641)\\\" x=\\\"0 5.336 8 12.448 16.896 21.344 24.008 26.232 30.232\\\">Property.</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 445.7484 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 450.0199 315.8641)\\\" x=\\\"0 2.224\\\">It</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.4652 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 458.7367 315.8641)\\\" x=\\\"0 4.448 8.896 12.896 17.344 20.008 24.456\\\">governs</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 487.1977 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 491.4691 315.8641)\\\" x=\\\"0 1.824\\\">if</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 495.516 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 499.7875 315.8641)\\\" x=\\\"0 4 8.448 12.896\\\">your</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 515.35 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 519.6215 315.8641)\\\" x=\\\"0 5.336 9.784 12.448 16.896 21.344 28.008 32.456 36.904\\\">Agreement</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 558.7543 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 563.0258 315.8641)\\\" x=\\\"0 1.824\\\">is</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 306.8094)\\\" x=\\\"0 1.824 8.488 12.936 17.384 21.384 23.608 28.056\\\">impacted</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 242.3578 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 248.4078 306.8094)\\\" x=\\\"0 4.448\\\">by</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.857 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 262.907 306.8094)\\\" x=\\\"0 4.448 8.896 13.344 17.344 20.008 24.456 28.904 31.128 35.128 39.128\\\">bankruptcy.</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 304.2625 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 310.3125 306.8094)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 324.0976 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 330.1477 306.8094)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496\\\">Clause</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.0969 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 361.1469 306.8094)\\\" x=\\\"0 2.664 7.112 13.776 18.224 20.048 24.496\\\">remains</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 389.6469 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 395.6969 306.8094)\\\" x=\\\"0 4.448 6.672 8.896 13.344 17.344 19.568 21.392 25.392 29.84\\\">effective,</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 427.7594 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 433.8094 306.8094)\\\" x=\\\"0 4.448 8.896 12.896 17.344 19.168 21.392\\\">despite</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 459.6531 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 465.7031 306.8094)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 470.1523 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 476.2023 306.8094)\\\" x=\\\"0 2.224 4.888 9.336 13.784 17.784 22.232 26.232 28.456 30.28 34.728 39.176 40.704\\\">transaction&apos;s</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 520.9094 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 526.9594 306.8094)\\\" x=\\\"0 2.224 6.672 9.336 16 17.824 22.272 26.72 28.944 30.768 35.216 39.664\\\">termination,</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 297.7547)\\\" x=\\\"0 4.448 11.112 15.56 20.008 24.456 31.12 35.568 40.016 42.24 44.464 46.592 51.04 55.04 59.488 61.312 63.976 68.424 70.648 72.472 76.92 81.368 83.592 85.72 90.168 92.832 94.96 99.408 103.856 106.52 108.744 113.192 115.856 122.52 126.968 131.416 135.416 139.864\\\">amendment, expiration, or performance.</text></g><clipPath id=\\\"clip4-37\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 770.2 L 129.85 770.2 L 129.85 769.2 L 34.95 769.2 L 34.95 770.2 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 769.2 L 35.95 769.2 L 35.95 749.0906 L 34.95 749.0906 L 34.95 769.2 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 770.2 L 206.25 770.2 L 206.25 769.2 L 129.85 769.2 L 129.85 770.2 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 769.2 L 129.85 769.2 L 129.85 749.0906 L 128.85 749.0906 L 128.85 769.2 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 770.2 L 573.45 770.2 L 573.45 769.2 L 206.25 769.2 L 206.25 770.2 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 769.2 L 573.45 769.2 L 573.45 749.0906 L 572.45 749.0906 L 572.45 769.2 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 769.2 L 206.25 769.2 L 206.25 749.0906 L 205.25 749.0906 L 205.25 769.2 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 749.0906 L 129.85 749.0906 L 129.85 748.0906 L 34.95 748.0906 L 34.95 749.0906 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 748.0906 L 35.95 748.0906 L 35.95 727.9813 L 34.95 727.9813 L 34.95 748.0906 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 749.0906 L 206.25 749.0906 L 206.25 748.0906 L 129.85 748.0906 L 129.85 749.0906 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 748.0906 L 129.85 748.0906 L 129.85 727.9813 L 128.85 727.9813 L 128.85 748.0906 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 749.0906 L 573.45 749.0906 L 573.45 748.0906 L 206.25 748.0906 L 206.25 749.0906 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 748.0906 L 573.45 748.0906 L 573.45 727.9813 L 572.45 727.9813 L 572.45 748.0906 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 748.0906 L 206.25 748.0906 L 206.25 727.9813 L 205.25 727.9813 L 205.25 748.0906 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 727.9813 L 129.85 727.9813 L 129.85 726.9813 L 34.95 726.9813 L 34.95 727.9813 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 726.9813 L 35.95 726.9813 L 35.95 706.8719 L 34.95 706.8719 L 34.95 726.9813 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 727.9813 L 206.25 727.9813 L 206.25 726.9813 L 129.85 726.9813 L 129.85 727.9813 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 726.9813 L 129.85 726.9813 L 129.85 706.8719 L 128.85 706.8719 L 128.85 726.9813 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 727.9813 L 573.45 727.9813 L 573.45 726.9813 L 206.25 726.9813 L 206.25 727.9813 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 726.9813 L 573.45 726.9813 L 573.45 706.8719 L 572.45 706.8719 L 572.45 726.9813 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 726.9813 L 206.25 726.9813 L 206.25 706.8719 L 205.25 706.8719 L 205.25 726.9813 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 706.8719 L 129.85 706.8719 L 129.85 705.8719 L 34.95 705.8719 L 34.95 706.8719 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 705.8719 L 35.95 705.8719 L 35.95 631.4344 L 34.95 631.4344 L 34.95 705.8719 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 706.8719 L 206.25 706.8719 L 206.25 705.8719 L 129.85 705.8719 L 129.85 706.8719 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 705.8719 L 129.85 705.8719 L 129.85 631.4344 L 128.85 631.4344 L 128.85 705.8719 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 706.8719 L 573.45 706.8719 L 573.45 705.8719 L 206.25 705.8719 L 206.25 706.8719 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 705.8719 L 573.45 705.8719 L 573.45 631.4344 L 572.45 631.4344 L 572.45 705.8719 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 705.8719 L 206.25 705.8719 L 206.25 631.4344 L 205.25 631.4344 L 205.25 705.8719 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 631.4344 L 129.85 631.4344 L 129.85 630.4344 L 34.95 630.4344 L 34.95 631.4344 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 630.4344 L 35.95 630.4344 L 35.95 579.1609 L 34.95 579.1609 L 34.95 630.4344 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 631.4344 L 206.25 631.4344 L 206.25 630.4344 L 129.85 630.4344 L 129.85 631.4344 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 630.4344 L 129.85 630.4344 L 129.85 579.1609 L 128.85 579.1609 L 128.85 630.4344 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 631.4344 L 573.45 631.4344 L 573.45 630.4344 L 206.25 630.4344 L 206.25 631.4344 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 630.4344 L 573.45 630.4344 L 573.45 579.1609 L 572.45 579.1609 L 572.45 630.4344 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 630.4344 L 206.25 630.4344 L 206.25 579.1609 L 205.25 579.1609 L 205.25 630.4344 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 579.1609 L 129.85 579.1609 L 129.85 578.1609 L 34.95 578.1609 L 34.95 579.1609 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 578.1609 L 35.95 578.1609 L 35.95 530.8875 L 34.95 530.8875 L 34.95 578.1609 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 579.1609 L 206.25 579.1609 L 206.25 578.1609 L 129.85 578.1609 L 129.85 579.1609 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 578.1609 L 129.85 578.1609 L 129.85 530.8875 L 128.85 530.8875 L 128.85 578.1609 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 579.1609 L 573.45 579.1609 L 573.45 578.1609 L 206.25 578.1609 L 206.25 579.1609 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 578.1609 L 573.45 578.1609 L 573.45 530.8875 L 572.45 530.8875 L 572.45 578.1609 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 578.1609 L 206.25 578.1609 L 206.25 530.8875 L 205.25 530.8875 L 205.25 578.1609 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 530.8875 L 129.85 530.8875 L 129.85 529.8875 L 34.95 529.8875 L 34.95 530.8875 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 529.8875 L 35.95 529.8875 L 35.95 491.6688 L 34.95 491.6688 L 34.95 529.8875 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 530.8875 L 206.25 530.8875 L 206.25 529.8875 L 129.85 529.8875 L 129.85 530.8875 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 529.8875 L 129.85 529.8875 L 129.85 491.6688 L 128.85 491.6688 L 128.85 529.8875 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 530.8875 L 573.45 530.8875 L 573.45 529.8875 L 206.25 529.8875 L 206.25 530.8875 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 529.8875 L 573.45 529.8875 L 573.45 491.6688 L 572.45 491.6688 L 572.45 529.8875 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 529.8875 L 206.25 529.8875 L 206.25 491.6688 L 205.25 491.6688 L 205.25 529.8875 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 491.6688 L 129.85 491.6688 L 129.85 490.6688 L 34.95 490.6688 L 34.95 491.6688 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 490.6688 L 35.95 490.6688 L 35.95 434.3406 L 34.95 434.3406 L 34.95 490.6688 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 491.6688 L 206.25 491.6688 L 206.25 490.6688 L 129.85 490.6688 L 129.85 491.6688 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 490.6688 L 129.85 490.6688 L 129.85 434.3406 L 128.85 434.3406 L 128.85 490.6688 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 491.6688 L 573.45 491.6688 L 573.45 490.6688 L 206.25 490.6688 L 206.25 491.6688 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 490.6688 L 573.45 490.6688 L 573.45 434.3406 L 572.45 434.3406 L 572.45 490.6688 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 490.6688 L 206.25 490.6688 L 206.25 434.3406 L 205.25 434.3406 L 205.25 490.6688 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 434.3406 L 129.85 434.3406 L 129.85 433.3406 L 34.95 433.3406 L 34.95 434.3406 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 433.3406 L 35.95 433.3406 L 35.95 413.2313 L 34.95 413.2313 L 34.95 433.3406 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 434.3406 L 206.25 434.3406 L 206.25 433.3406 L 129.85 433.3406 L 129.85 434.3406 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 433.3406 L 129.85 433.3406 L 129.85 413.2313 L 128.85 413.2313 L 128.85 433.3406 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 434.3406 L 573.45 434.3406 L 573.45 433.3406 L 206.25 433.3406 L 206.25 434.3406 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 433.3406 L 573.45 433.3406 L 573.45 413.2313 L 572.45 413.2313 L 572.45 433.3406 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 433.3406 L 206.25 433.3406 L 206.25 413.2313 L 205.25 413.2313 L 205.25 433.3406 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 413.2313 L 129.85 413.2313 L 129.85 412.2313 L 34.95 412.2313 L 34.95 413.2313 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 412.2313 L 35.95 412.2313 L 35.95 374.0125 L 34.95 374.0125 L 34.95 412.2313 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 413.2313 L 206.25 413.2313 L 206.25 412.2313 L 129.85 412.2313 L 129.85 413.2313 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 412.2313 L 129.85 412.2313 L 129.85 374.0125 L 128.85 374.0125 L 128.85 412.2313 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 413.2313 L 573.45 413.2313 L 573.45 412.2313 L 206.25 412.2313 L 206.25 413.2313 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 412.2313 L 573.45 412.2313 L 573.45 374.0125 L 572.45 374.0125 L 572.45 412.2313 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 412.2313 L 206.25 412.2313 L 206.25 374.0125 L 205.25 374.0125 L 205.25 412.2313 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 374.0125 L 129.85 374.0125 L 129.85 373.0125 L 34.95 373.0125 L 34.95 374.0125 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 373.0125 L 35.95 373.0125 L 35.95 343.8484 L 34.95 343.8484 L 34.95 373.0125 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 374.0125 L 206.25 374.0125 L 206.25 373.0125 L 129.85 373.0125 L 129.85 374.0125 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 373.0125 L 129.85 373.0125 L 129.85 343.8484 L 128.85 343.8484 L 128.85 373.0125 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 374.0125 L 573.45 374.0125 L 573.45 373.0125 L 206.25 373.0125 L 206.25 374.0125 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 373.0125 L 573.45 373.0125 L 573.45 343.8484 L 572.45 343.8484 L 572.45 373.0125 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 373.0125 L 206.25 373.0125 L 206.25 343.8484 L 205.25 343.8484 L 205.25 373.0125 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 343.8484 L 129.85 343.8484 L 129.85 342.8484 L 34.95 342.8484 L 34.95 343.8484 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 295.575 L 129.85 295.575 L 129.85 294.575 L 34.95 294.575 L 34.95 295.575 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 342.8484 L 35.95 342.8484 L 35.95 295.575 L 34.95 295.575 L 34.95 342.8484 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 343.8484 L 206.25 343.8484 L 206.25 342.8484 L 129.85 342.8484 L 129.85 343.8484 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 295.575 L 206.25 295.575 L 206.25 294.575 L 129.85 294.575 L 129.85 295.575 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 342.8484 L 129.85 342.8484 L 129.85 295.575 L 128.85 295.575 L 128.85 342.8484 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 343.8484 L 573.45 343.8484 L 573.45 342.8484 L 206.25 342.8484 L 206.25 343.8484 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 295.575 L 573.45 295.575 L 573.45 294.575 L 206.25 294.575 L 206.25 295.575 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 342.8484 L 573.45 342.8484 L 573.45 295.575 L 572.45 295.575 L 572.45 342.8484 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 342.8484 L 206.25 342.8484 L 206.25 295.575 L 205.25 295.575 L 205.25 342.8484 z \\\"/><g clip-path=\\\"url(#clip4-37)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 286.1385 282.8562)\\\" x=\\\"0 6.67 10 15.56 20.56 26.12 31.12\\\">Process</text></g><clipPath id=\\\"clip4-38\\\"><path d=\\\"M 35 214 L 128 214 L 128 272 L 35 272 L 35 214 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-38)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.2 271.652 L 127.6 271.652 L 127.6 214.3238 L 35.2 214.3238 L 35.2 271.652 z \\\"/><path clip-path=\\\"url(#clip4-38)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.3 269.652 L 123.5 269.652 L 123.5 251.5426 L 39.3 251.5426 L 39.3 269.652 z \\\"/><path clip-path=\\\"url(#clip4-38)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 44.7652 269.652 L 118.7652 269.652 L 118.7652 259.652 L 44.7652 259.652 L 44.7652 269.652 z \\\"/><g clip-path=\\\"url(#clip4-38)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 44.7652 262.277)\\\" x=\\\"0 5.776 10.224 16 18.128 22.576 27.024 31.472 35.472 37.6 42.048 44.712 49.16 50.984 53.208 55.872 60.32 62.544 64.368 68.816\\\">How does arbitration</text></g><path clip-path=\\\"url(#clip4-38)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 71.3961 260.5973 L 92.3961 260.5973 L 92.3961 250.5973 L 71.3961 250.5973 L 71.3961 260.5973 z \\\"/><g clip-path=\\\"url(#clip4-38)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 71.3961 253.2223)\\\" x=\\\"0 4 6.224 10.672 13.336 15.56\\\">start?</text></g><clipPath id=\\\"clip4-39\\\"><path d=\\\"M 127 214 L 206 214 L 206 272 L 127 272 L 127 214 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-39)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 137.6496 262.277)\\\" x=\\\"0 6.664 11.112 12.936 14.76 16.584 21.032 25.48 27.608 32.056 34.184 38.632 43.08 45.304 47.128 51.128 55.576\\\">Mailing a notice.</text></g><clipPath id=\\\"clip4-40\\\"><path d=\\\"M 205 214 L 574 214 L 574 272 L 205 272 L 205 214 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 262.277)\\\" x=\\\"0 5.336 7.16 9.384 13.832 18.28\\\">Either</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 230.5453 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 233.8153 262.277)\\\" x=\\\"0 4.448 8.896 11.56 13.784\\\">party</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 251.6004 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 254.8704 262.277)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 269.9837 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 273.2536 262.277)\\\" x=\\\"0 6.664 11.112 12.936\\\">mail</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 288.0154 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 291.2853 262.277)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.4064 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 305.6764 262.277)\\\" x=\\\"0 4.448 6.672 11.12 15.568\\\">other</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 323.9108 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 327.1807 262.277)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 331.6299 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 334.8999 262.277)\\\" x=\\\"0 2.664 7.112 11.56 16.008 20.456 24.456\\\">request</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 361.5835 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 364.8535 262.277)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.5253 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 374.7953 262.277)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 29.392\\\">arbitrate,</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 406.4125 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 409.6825 262.277)\\\" x=\\\"0 4.448 8.448 12.896\\\">even</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 427.0301 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 430.3001 262.277)\\\" x=\\\"0 1.824\\\">if</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.3469 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 437.6169 262.277)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 442.0661 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 445.3361 262.277)\\\" x=\\\"0 1.824 6.272 12.048 16.048 20.496 22.32\\\">lawsuit</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 469.883 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 473.1529 262.277)\\\" x=\\\"0 4.448 8.896\\\">has</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.0514 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 489.3213 262.277)\\\" x=\\\"0 4.448 8.896 13.344\\\">been</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 507.1182 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 510.3882 262.277)\\\" x=\\\"0 2.224 4.048 5.872 10.32 14.768\\\">filed.</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 527.3804 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 530.6503 262.277)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 544.4355 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 547.7055 262.277)\\\" x=\\\"0 4.448 8.896 11.12 12.944 16.944\\\">notice</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 253.2223)\\\" x=\\\"0 4 8.448 12.896 17.344 19.168\\\">should</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.2211 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 236.4008 253.2223)\\\" x=\\\"0 4.448 8.896 12.896 16.896 19.56 21.384 25.832\\\">describe</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 266.6859 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 269.8656 253.2223)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.9867 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 284.1664 253.2223)\\\" x=\\\"0 5.776 7.6 11.6 16.048 20.496 22.72\\\">Dispute</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 311.3383 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 314.518 253.2223)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 327.8656 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 331.0453 253.2223)\\\" x=\\\"0 2.664 7.112 8.936 10.76 15.208\\\">relief</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.4789 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 351.6586 253.2223)\\\" x=\\\"0 4 8.448 12.896 17.344 21.792 24.016\\\">sought.</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 377.9008 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 381.0805 253.2223)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 394.8656 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 398.0453 253.2223)\\\" x=\\\"0 2.664 7.112 11.112 15.56 17.384 21.384 23.208 27.656\\\">receiving</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.1547 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 433.3344 253.2223)\\\" x=\\\"0 4.448 8.896 11.56 13.784\\\">party</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 451.1195 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 454.2992 253.2223)\\\" x=\\\"0 6.664 11.112 15.112\\\">must</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 471.6351 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 474.8148 253.2223)\\\" x=\\\"0 6.664 11.112 12.936\\\">mail</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.5765 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 492.7562 253.2223)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 497.2055 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 500.3851 253.2223)\\\" x=\\\"0 2.664 7.112 11.112 15.56 20.008 24.456 28.456\\\">response</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 533.2953 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 536.475 253.2223)\\\" x=\\\"0 5.776 7.6 9.824 14.272 16.096\\\">within</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 557.0219 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 560.2015 253.2223)\\\" x=\\\"0 4.448\\\">20</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 244.1676)\\\" x=\\\"0 4.448 8.896 12.896 16.896\\\">days.</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 228.7211 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 231.1538 244.1676)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 235.5991 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 238.0317 244.1676)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 250.9302 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 253.3629 244.1676)\\\" x=\\\"0 6.664 11.112 12.936\\\">mail</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 268.1246 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 270.5573 244.1676)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.6783 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 284.111 244.1676)\\\" x=\\\"0 4.448 8.896 15.56 20.008 24.456 28.904\\\">demand,</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 315.2438 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 317.6765 244.1676)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 330.575 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 333.0076 244.1676)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.1209 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 350.5536 244.1676)\\\" x=\\\"0 4 8.448 12.896 17.344 21.344\\\">choose</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 376.3505 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 378.7831 244.1676)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 389.9042 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 392.3369 244.1676)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 26.768 31.216\\\">arbitration</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 428.0049 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 430.4375 244.1676)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456\\\">group.</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 453.1211 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 455.5538 244.1676)\\\" x=\\\"0 6.224 8.888\\\">Or,</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.6632 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 469.0959 244.1676)\\\" x=\\\"0 4 8.448 12.896\\\">your</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.6584 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 487.091 244.1676)\\\" x=\\\"0 4.448 8.896 15.56 20.008 24.456\\\">demand</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 516.0012 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 518.4339 244.1676)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 533.5471 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 535.9798 244.1676)\\\" x=\\\"0 4 6.224 10.672 12.896\\\">state</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.3236 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 555.7562 244.1676)\\\" x=\\\"0 2.224 6.672 11.12\\\">that</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 235.1129)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 222.4984 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 224.7098 235.1129)\\\" x=\\\"0 5.776 10.224 14.672\\\">want</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 241.6082 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 243.8196 235.1129)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 254.9407 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 257.152 235.1129)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056\\\">parties</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.2106 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 283.4219 235.1129)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.0938 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 292.3052 235.1129)\\\" x=\\\"0 4 8.448 12.896 17.344 21.344\\\">choose</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 318.1021 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 320.3134 235.1129)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 324.7626 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 326.974 235.1129)\\\" x=\\\"0 1.824 6.272 10.272 14.72\\\">local</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 343.5208 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 345.7322 235.1129)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608\\\">Arbiter.</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.5642 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 373.7756 235.1129)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 378.2209 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 380.4322 235.1129)\\\" x=\\\"0 2.664 7.112 8.936 13.384 15.608 20.056\\\">related</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 404.94 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 407.1514 235.1129)\\\" x=\\\"0 2.224 6.672 8.496 11.16\\\">third</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 422.7608 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 424.9721 235.1129)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056\\\">parties</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 449.0307 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 451.2421 235.1129)\\\" x=\\\"0 4.448\\\">or</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 458.3553 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 460.5667 235.1129)\\\" x=\\\"0 5.776\\\">we</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 470.7932 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 473.0046 235.1129)\\\" x=\\\"0 6.664 11.112 12.936\\\">mail</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 487.7663 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 489.9777 235.1129)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.0988 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 503.3101 235.1129)\\\" x=\\\"0 4.448 8.896 15.56 20.008 24.456 28.904\\\">demand,</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 534.4429 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 536.6543 235.1129)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.5527 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 551.7641 235.1129)\\\" x=\\\"0 6.664 11.112 15.112\\\">must</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 226.0582)\\\" x=\\\"0 2.664 7.112 11.112 15.56 20.008 24.456\\\">respond</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.5101 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 241.2739 226.0582)\\\" x=\\\"0 1.824\\\">in</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.5474 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 250.3112 226.0582)\\\" x=\\\"0 4.448\\\">20</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.2096 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 261.9734 226.0582)\\\" x=\\\"0 4.448 8.896 12.896 16.896\\\">days.</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.0945 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 283.8583 226.0582)\\\" x=\\\"0 5.336 9.784 14.232\\\">Your</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 300.7567 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 303.5205 226.0582)\\\" x=\\\"0 2.664 7.112 11.112 15.56 20.008 24.456 28.456\\\">response</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 336.4306 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 339.1944 226.0582)\\\" x=\\\"0 6.664 11.112 15.112\\\">must</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 356.5304 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 359.2942 226.0582)\\\" x=\\\"0 4 8.448 12.896 17.344 21.344\\\">choose</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 385.091 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 387.8548 226.0582)\\\" x=\\\"0 4.448\\\">an</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 396.7533 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 399.517 226.0582)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 26.768 31.216\\\">arbitration</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 435.185 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 437.9488 226.0582)\\\" x=\\\"0 4.448 7.112 11.56 16.008\\\">group</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 458.4097 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 461.1735 226.0582)\\\" x=\\\"0 4.448\\\">or</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.2868 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 471.0506 226.0582)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456 24.456\\\">propose</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.9607 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 502.7245 226.0582)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 507.1737 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 509.9375 226.0582)\\\" x=\\\"0 1.824 6.272 10.272 14.72\\\">local</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.4844 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 529.2482 226.0582)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608\\\">Arbiter.</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 555.0802 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 557.844 226.0582)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 562.2893 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 565.0531 226.0582)\\\" x=\\\"0 1.824\\\">it</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 217.0035)\\\" x=\\\"0 4.448 8.896 13.344 17.344 21.792 23.32 25.544 27.768 29.896 35.672 40.12 42.248 48.912 53.36 57.36 59.488 63.488 67.936 72.384 76.832 80.832 85.28 87.408 89.632 94.08 98.528 100.656 105.104 107.768 112.216 116.664 121.112\\\">doesn&apos;t, we may choose the group.</text></g><clipPath id=\\\"clip4-41\\\"><path d=\\\"M 35 137 L 128 137 L 128 215 L 35 215 L 35 137 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-41)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.2 214.3238 L 127.6 214.3238 L 127.6 137.8863 L 35.2 137.8863 L 35.2 214.3238 z \\\"/><path clip-path=\\\"url(#clip4-41)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.3 212.3238 L 123.5 212.3238 L 123.5 203.2691 L 39.3 203.2691 L 39.3 212.3238 z \\\"/><path clip-path=\\\"url(#clip4-41)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 53.191 212.3238 L 110.191 212.3238 L 110.191 202.3238 L 53.191 202.3238 L 53.191 212.3238 z \\\"/><g clip-path=\\\"url(#clip4-41)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 53.191 204.9488)\\\" x=\\\"0 7.552 12 16.448 18.576 23.024 25.688 30.136 31.96 34.184 36.848 41.296 43.52 47.968 51.968\\\">* D E M O *tes?</text></g><clipPath id=\\\"clip4-42\\\"><path d=\\\"M 127 137 L 206 137 L 206 215 L 127 215 L 127 137 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-42)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 134.4621 204.9488)\\\" x=\\\"0 5.336 10.672 16.008 18.232 20.36 24.36 29.696 36.36 41.696 43.92 46.048 50.496 53.16 55.288 59.736\\\">AAA, JAMS, or an</text></g><g clip-path=\\\"url(#clip4-42)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 140.1164 195.8941)\\\" x=\\\"0 4.448 8.896 11.56 16.008 20.456 24.904 27.032 32.368 35.032 39.48 41.304 43.528 47.976 50.64\\\">agreed Arbiter.</text></g><clipPath id=\\\"clip4-43\\\"><path d=\\\"M 205 137 L 574 137 L 574 215 L 205 215 L 205 137 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 204.9488)\\\" x=\\\"0 5.336 9.784\\\">You</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 223.8344 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 226.373 204.9488)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 241.4863 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 244.025 204.9488)\\\" x=\\\"0 4 8.448 10.272 14.72 18.72\\\">select</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 264.9703 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 267.509 204.9488)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 278.6301 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 281.1687 204.9488)\\\" x=\\\"0 5.336 12 16.448 19.112 20.936 24.936 29.384\\\">American</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 315.0047 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 317.5433 204.9488)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 19.16 23.608 25.832 27.656 32.104\\\">Arbitration</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 354.098 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 356.6367 204.9488)\\\" x=\\\"0 5.336 9.336 13.336 17.784 21.784 23.608 28.056 30.28 32.104 36.552\\\">Association</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 397.6406 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 400.1793 204.9488)\\\" x=\\\"0 2.664 5.504 10.84 16.176 21.512 24.352\\\">(&quot;AAA&quot;)</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 427.1949 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 429.7336 204.9488)\\\" x=\\\"0 2.664 7.112 9.776 14.224 18.672 23.12 25.784 30.232 34.68 39.128 41.792 46.24 50.688 55.136 59.584\\\">(1-800-778-7879)</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 491.9953 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 494.534 204.9488)\\\" x=\\\"0 4.448 6.672 8.896 13.344 15.568 17.792 20.016 25.792 31.568 37.344 39.568 44.016 48.464 51.128 53.352 57.8 60.464\\\">http://www.adr.org</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.448 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 561.9867 204.9488)\\\" x=\\\"0 4.448\\\">or</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 195.8941)\\\" x=\\\"0 4 9.336 16\\\">JAMS</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 185.8395)\\\" x=\\\"0 2.664 7.112 9.776 14.224 18.672 23.12 25.784 30.232 34.68 39.128 41.792 46.24 50.688 55.136 59.584\\\">(1-800-352-5267)</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 271.8617 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 274.6277 185.8395)\\\" x=\\\"0 4.448 6.672 8.896 13.344 15.568 17.792 20.016 25.792 31.568 37.344 39.568 41.392 45.84 52.504 56.504 60.952 65.4 68.064 70.288 74.288 78.736 85.4\\\">http://www.jamsadr.com.</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 362.2527 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 365.0186 185.8395)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 378.8038 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 381.5697 185.8395)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056\\\">parties</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 405.6283 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 408.3943 185.8395)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 423.5075 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 426.2735 185.8395)\\\" x=\\\"0 4.448 6.272 10.272\\\">also</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 440.9961 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 443.7621 185.8395)\\\" x=\\\"0 4.448 8.896 11.56 16.008\\\">agree</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 464.223 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 466.989 185.8395)\\\" x=\\\"0 1.824\\\">in</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 473.2624 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 476.0284 185.8395)\\\" x=\\\"0 5.776 8.44 10.264 12.488 14.312 18.76\\\">writing</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.2393 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 502.0053 185.8395)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 508.6771 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 511.4431 185.8395)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 515.8923 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 518.6583 185.8395)\\\" x=\\\"0 1.824 6.272 10.272 14.72\\\">local</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 535.2051 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 537.9711 185.8395)\\\" x=\\\"0 4.448 6.672 8.896 13.344 16.008 20.456 24.904 28.904\\\">attorney,</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 176.7848)\\\" x=\\\"0 2.664 7.112 9.336 11.16 13.824 18.272\\\">retired</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 232.3227 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 235.2385 176.7848)\\\" x=\\\"0 1.824 6.272 10.72 15.168 19.616\\\">judge,</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.0823 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 259.9982 176.7848)\\\" x=\\\"0 4.448\\\">or</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 267.1114 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 270.0273 176.7848)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 293.6367 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 296.5526 176.7848)\\\" x=\\\"0 1.824\\\">in</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.826 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 305.7419 176.7848)\\\" x=\\\"0 4.448 8.896 13.344\\\">good</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 323.5388 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 326.4547 176.7848)\\\" x=\\\"0 4 6.224 10.672 15.12 19.568 21.392 25.84\\\">standing</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 356.7477 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 359.6635 176.7848)\\\" x=\\\"0 5.776 7.6 9.824\\\">with</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 373.937 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 376.8529 176.7848)\\\" x=\\\"0 4.448\\\">an</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 385.7513 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 388.6672 176.7848)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 26.768 31.216\\\">arbitration</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 424.3351 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 427.251 176.7848)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456\\\">group.</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 449.9346 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 452.8505 176.7848)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.6357 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 469.5516 176.7848)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 493.1609 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 496.0768 176.7848)\\\" x=\\\"0 6.664 11.112 15.112\\\">must</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 513.4127 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 516.3286 176.7848)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944\\\">arbitrate</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 545.7232 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 548.6391 176.7848)\\\" x=\\\"0 4.448 8.896 13.344 17.792\\\">under</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 167.7301)\\\" x=\\\"0 5.336 10.672\\\">AAA</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.6078 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 228.6503 167.7301)\\\" x=\\\"0 4.448\\\">or</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 235.7636 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 238.8062 167.7301)\\\" x=\\\"0 4 9.336 16\\\">JAMS</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 260.1421 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 263.1846 167.7301)\\\" x=\\\"0 4 8.448 12.896 16.896 21.344 28.008 32.456\\\">consumer</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 298.3096 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 301.3522 167.7301)\\\" x=\\\"0 2.664 7.112 8.936 13.384 17.384\\\">rules.</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 320.9615 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 324.0041 167.7301)\\\" x=\\\"0 5.336 9.784\\\">You</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.2384 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 341.281 167.7301)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 356.3943 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 359.4368 167.7301)\\\" x=\\\"0 4.448 8.896\\\">get</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 370.5579 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 373.6004 167.7301)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 378.0497 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 381.0922 167.7301)\\\" x=\\\"0 4 8.448 12.896\\\">copy</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 397.9906 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 401.0331 167.7301)\\\" x=\\\"0 4.448\\\">of</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 407.705 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 410.7476 167.7301)\\\" x=\\\"0 2.224 6.672 11.12 15.12\\\">these</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.3179 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 433.3604 167.7301)\\\" x=\\\"0 2.664 7.112 8.936 13.384\\\">rules</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 450.7471 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 453.7897 167.7301)\\\" x=\\\"0 2.224 4.888 9.336\\\">from</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 469.7897 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 472.8322 167.7301)\\\" x=\\\"0 4 8.448 12.448\\\">such</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.7306 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 492.7732 167.7301)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456\\\">group.</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 515.4568 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 518.4993 167.7301)\\\" x=\\\"0 5.336 9.784\\\">Any</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 532.2845 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 535.327 167.7301)\\\" x=\\\"0 2.664 7.112 8.936 13.384\\\">rules</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.7137 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 555.7562 167.7301)\\\" x=\\\"0 2.224 6.672 11.12\\\">that</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 158.6754)\\\" x=\\\"0 4 8.448 12.896 15.12 16.944 18.768 22.768\\\">conflict</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 234.5922 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 237.7758 158.6754)\\\" x=\\\"0 5.776 7.6 9.824\\\">with</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 252.0492 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 255.2328 158.6754)\\\" x=\\\"0 4.448 8.896\\\">any</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 268.1312 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 271.3148 158.6754)\\\" x=\\\"0 4.448\\\">of</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 277.9867 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 281.1703 158.6754)\\\" x=\\\"0 4.448 8.896\\\">our</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 292.7328 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 295.9164 158.6754)\\\" x=\\\"0 4.448 8.896 11.56 16.008 20.456 27.12 31.568 36.016 38.24\\\">agreements</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.1625 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 341.3461 158.6754)\\\" x=\\\"0 5.776 7.6 9.824\\\">with</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.6195 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 358.8031 158.6754)\\\" x=\\\"0 4 8.448 12.896\\\">you,</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 373.9242 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 377.1078 158.6754)\\\" x=\\\"0 4.448 8.896 13.344 14.872\\\">don&apos;t</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 394.2055 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 397.389 158.6754)\\\" x=\\\"0 4.448 8.896 13.344 15.168 19.168\\\">apply.</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 418.7836 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 421.9672 158.6754)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 426.4125 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 429.5961 158.6754)\\\" x=\\\"0 2.224 6.672 11.12 15.12\\\">these</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 449.1664 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 452.35 158.6754)\\\" x=\\\"0 4.448 8.896 11.12 12.944 17.392 21.84\\\">options</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 478.1937 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 481.3773 158.6754)\\\" x=\\\"0 4.448 7.112 11.56 16.008 17.536\\\">aren&apos;t</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.139 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 504.3227 158.6754)\\\" x=\\\"0 4.448 8.448 12.896 14.72 16.544 20.992 25.44 27.264 31.712\\\">available,</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 538.264 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 541.4476 158.6754)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 554.7953 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 557.9789 158.6754)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 149.6207)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056\\\">parties</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.6586 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 236.2535 149.6207)\\\" x=\\\"0 4 8.448 12.896 14.424\\\">can&apos;t</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 252.9019 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 255.4968 149.6207)\\\" x=\\\"0 4.448 8.896 11.56 16.008\\\">agree</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.9578 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 278.5527 149.6207)\\\" x=\\\"0 4.448\\\">on</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 287.4511 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 290.046 149.6207)\\\" x=\\\"0 4.448 8.896 13.344 15.568 20.016 24.464 27.128\\\">another,</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.4015 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 321.9964 149.6207)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 326.4456 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 329.0405 149.6207)\\\" x=\\\"0 4 8.448 12.896 15.56\\\">court</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 346.8256 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 349.4205 149.6207)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 364.5338 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 367.1287 149.6207)\\\" x=\\\"0 4 8.448 12.896 17.344 21.344\\\">choose</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 392.9256 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 395.5205 149.6207)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 406.6416 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 409.2365 149.6207)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456\\\">group.</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 431.9201 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 434.515 149.6207)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 448.3001 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 450.895 149.6207)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056\\\">parties</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.9536 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 477.5485 149.6207)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 488.7985 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 491.3934 149.6207)\\\" x=\\\"0 2.224 6.672 11.12\\\">then</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 506.9637 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 509.5586 149.6207)\\\" x=\\\"0 4.448 8.896 11.12 15.568 17.392\\\">obtain</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 531.4024 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 533.9973 149.6207)\\\" x=\\\"0 4.448\\\">an</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 542.8957 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 545.4906 149.6207)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 140.566)\\\" x=\\\"0 4.448 8.896 13.344 17.792 20.456 22.584 26.584 31.032 35.032 39.48 41.608 46.056 48.72 53.168 57.616 62.064 63.592 67.592 69.72 72.384 76.832 78.656 83.104 87.104 89.328 91.456 96.792 101.24 105.24 109.688 111.816 117.152 119.816 124.264 126.088 128.312 132.76 135.424 137.552 144.216 148.664 152.664 154.888 157.016 161.464 165.912 168.136 172.584 175.248 179.248 183.696 185.824 189.824 194.272 198.72 201.384 203.512 207.96 212.408 215.072 219.52 223.968 230.632 235.08 239.528 241.752 245.752 247.88 253.656 255.48 257.704 262.152 264.28 268.728 272.728 274.952 277.08 281.528 285.528 287.656 289.88 294.328 298.776 302.776 304.904 309.352 312.016 316.464 318.592 324.368 327.032 328.856 331.08 333.304 337.752 342.2\\\">under such group&apos;s rules. Such Arbiter must enforce your agreements with us, as they are written.</text></g><clipPath id=\\\"clip4-44\\\"><path d=\\\"M 35 116 L 128 116 L 128 138 L 35 138 L 35 116 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-44)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.2 137.8863 L 127.6 137.8863 L 127.6 116.777 L 35.2 116.777 L 35.2 137.8863 z \\\"/><path clip-path=\\\"url(#clip4-44)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.3 135.8863 L 123.5 135.8863 L 123.5 117.777 L 39.3 117.777 L 39.3 135.8863 z \\\"/><path clip-path=\\\"url(#clip4-44)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.6754 135.8863 L 125.6754 135.8863 L 125.6754 125.8863 L 39.6754 125.8863 L 39.6754 135.8863 z \\\"/><g clip-path=\\\"url(#clip4-44)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 39.6754 128.5113)\\\" x=\\\"0 7.552 9.376 11.2 13.024 15.152 17.376 21.824 26.272 28.4 32.848 37.296 41.744 44.408 46.232 50.68 55.128 57.256 61.704 66.152 68.28 72.728 77.176 79\\\">Will the hearing be held</text></g><path clip-path=\\\"url(#clip4-44)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 66.9449 126.8316 L 95.9449 126.8316 L 95.9449 116.8316 L 66.9449 116.8316 L 66.9449 126.8316 z \\\"/><g clip-path=\\\"url(#clip4-44)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 66.9449 119.4567)\\\" x=\\\"0 4.448 8.896 13.344 16.008 20.456 24.456\\\">nearby?</text></g><clipPath id=\\\"clip4-45\\\"><path d=\\\"M 127 116 L 206 116 L 206 138 L 127 138 L 127 116 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-45)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 158.5461 128.5113)\\\" x=\\\"0 5.336 9.784 13.784\\\">Yes.</text></g><clipPath id=\\\"clip4-46\\\"><path d=\\\"M 205 116 L 574 116 L 574 138 L 205 138 L 205 116 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-46)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 128.5113)\\\" x=\\\"0 4.888 9.336 13.784 15.912 21.248 23.912 28.36 30.184 32.408 36.856 39.52 41.648 47.424 49.248 51.072 52.896 55.024 59.472 62.136 66.584 71.032 73.696 75.824 78.048 82.496 86.944 89.072 93.52 97.968 102.416 105.08 106.904 111.352 115.8 117.928 123.704 125.528 127.752 132.2 134.024 138.472 140.6 145.048 149.496 151.624 158.288 160.112 161.936 166.384 170.384 172.512 176.96 179.184 181.312 185.312 189.76 194.208 196.872 199 203.448 207.896 214.56 219.008 221.136 225.584 228.248 230.376 236.152 240.6 245.048 247.712 252.16 254.288 256.512 260.96 265.408 267.536 269.76 272.424 276.872 281.32 285.32 289.768 293.768 295.992 297.816 302.264 306.712 308.84 313.288 317.288 321.288 325.736 328.4 331.064 335.512 339.96\\\">The Arbiter will order the hearing within 30 miles of your home or where the transaction occurred.</text></g><clipPath id=\\\"clip4-47\\\"><path d=\\\"M 35 74 L 128 74 L 128 117 L 35 117 L 35 74 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-47)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.2 116.777 L 127.6 116.777 L 127.6 74.777 L 35.2 74.777 L 35.2 116.777 z \\\"/><path clip-path=\\\"url(#clip4-47)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.3 114.777 L 123.5 114.777 L 123.5 105.7223 L 39.3 105.7223 L 39.3 114.777 z \\\"/><path clip-path=\\\"url(#clip4-47)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 43.6695 114.777 L 119.6695 114.777 L 119.6695 104.777 L 43.6695 104.777 L 43.6695 114.777 z \\\"/><g clip-path=\\\"url(#clip4-47)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 43.6695 107.402)\\\" x=\\\"0 7.552 12 16.448 18.672 20.8 25.248 29.696 34.144 38.592 40.816 42.944 47.392 51.84 56.288 60.736 65.184 67.008 71.008\\\">What about appeals?</text></g><clipPath id=\\\"clip4-48\\\"><path d=\\\"M 127 74 L 206 74 L 206 117 L 127 117 L 127 74 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-48)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 145.2277 107.402)\\\" x=\\\"0 5.336 9.784 14.232 18.68 23.128 24.952 28.952 31.08 35.528 38.192\\\">Appeals are</text></g><g clip-path=\\\"url(#clip4-48)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 153.8098 98.3473)\\\" x=\\\"0 1.824 3.648 10.312 12.136 14.36 18.808 23.256\\\">limited.</text></g><clipPath id=\\\"clip4-49\\\"><path d=\\\"M 205 74 L 574 74 L 574 117 L 205 117 L 205 74 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 107.402)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 223.3852 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 227.8141 107.402)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608 25.136\\\">Arbiter&apos;s</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.9508 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 261.3798 107.402)\\\" x=\\\"0 4.448 8.896 12.896 14.72 18.72 20.544 24.992\\\">decision</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.8251 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 295.2541 107.402)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 306.5041 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 310.933 107.402)\\\" x=\\\"0 4.448\\\">be</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.8314 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 324.2604 107.402)\\\" x=\\\"0 2.224 4.048 8.496 12.944 14.768\\\">final.</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 341.2526 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 345.6815 107.402)\\\" x=\\\"0\\\">A</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.0175 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 355.4464 107.402)\\\" x=\\\"0 4.448 8.896 11.56 13.784\\\">party</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 373.2316 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 377.6605 107.402)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 392.7738 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 397.2028 107.402)\\\" x=\\\"0 2.224 4.048 5.872\\\">file</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 407.5231 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 411.952 107.402)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 423.0731 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 427.5021 107.402)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608 25.136\\\">Arbiter&apos;s</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.6388 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 461.0678 107.402)\\\" x=\\\"0 4.448 10.224 14.672 17.336\\\">award</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 482.8568 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 487.2858 107.402)\\\" x=\\\"0 5.776 7.6 9.824\\\">with</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.5592 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 505.9882 107.402)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 517.1093 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 521.5382 107.402)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456\\\">proper</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 544.6632 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 549.0922 107.402)\\\" x=\\\"0 4 8.448 12.896 15.56 17.784\\\">court.</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 98.3473)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 19.16 23.608 25.832 27.656 32.104\\\">Arbitration</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 246.1547 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 248.4088 98.3473)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.6588 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 261.913 98.3473)\\\" x=\\\"0 4 8.448 10.272 14.272\\\">solve</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.6356 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 282.8898 98.3473)\\\" x=\\\"0 4.448 8.896 13.344 17.792 22.24 24.064\\\">appeals</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 310.9601 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 313.2142 98.3473)\\\" x=\\\"0 4.448\\\">of</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.8861 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 322.1403 98.3473)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 326.5895 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 328.8436 98.3473)\\\" x=\\\"0 4 10.664 15.112 16.936 18.76 21.424 25.424 27.248 31.696 33.52 40.184\\\">small-claims</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 373.0311 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 375.2853 98.3473)\\\" x=\\\"0 4 8.448 12.896 15.56\\\">court</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.0704 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 395.3246 98.3473)\\\" x=\\\"0 1.824 6.272 10.72 15.168 19.616 26.28 30.728 35.176 37.4\\\">judgement.</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.9535 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 437.2077 98.3473)\\\" x=\\\"0\\\">A</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 442.5436 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 444.7977 98.3473)\\\" x=\\\"0 4.448 8.896 11.56 13.784\\\">party</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 462.5829 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 464.837 98.3473)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 479.9503 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 482.2045 98.3473)\\\" x=\\\"0 4.448 8.896 13.344 17.792 22.24\\\">appeal</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 506.2748 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 508.5289 98.3473)\\\" x=\\\"0 4.448 8.896 13.344 17.792\\\">under</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 528.9899 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 531.244 98.3473)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 542.3651 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 544.6193 98.3473)\\\" x=\\\"0 4.888 10.224 15.56\\\">FAA.</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 562.4005 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 564.6547 98.3473)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 89.2926)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 220.7211 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 223.3349 89.2926)\\\" x=\\\"0 4.448 11.112 15.56 20.008 24.456\\\">amount</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 250.0185 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 252.6324 89.2926)\\\" x=\\\"0 1.824\\\">in</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 258.9058 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 261.5196 89.2926)\\\" x=\\\"0 4 8.448 12.896 15.12 17.784 22.232 26.232 30.68 33.344 37.344\\\">controversy</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.8673 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 305.4811 89.2926)\\\" x=\\\"0 4.448 8.448 12.448 16.896 21.344 25.792\\\">exceeds</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.278 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 337.8918 89.2926)\\\" x=\\\"0 4.448 8.896 11.12 15.568 20.016 24.464 26.688 31.136 35.584\\\">$1,500.00,</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.7043 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 378.3182 89.2926)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 382.7674 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 385.3812 89.2926)\\\" x=\\\"0 4.448 8.896 11.56 13.784\\\">party</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.1664 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 405.7802 89.2926)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 420.8935 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 423.5074 89.2926)\\\" x=\\\"0 4.448 8.896 13.344 17.792 22.24\\\">appeal</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.5777 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 450.1915 89.2926)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 461.3126 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 463.9264 89.2926)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608 25.136\\\">Arbiter&apos;s</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 493.0632 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 495.677 89.2926)\\\" x=\\\"0 2.224 4.048 8.496 12.944 14.768 19.216 23.664\\\">finding.</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.5676 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 524.1815 89.2926)\\\" x=\\\"0 5.336 9.784 13.784\\\">Such</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 542.4158 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 545.0297 89.2926)\\\" x=\\\"0 4.448 8.896 13.344 17.792 22.24\\\">appeal</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 80.2379)\\\" x=\\\"0 5.776 7.6 9.424 11.248 13.376 17.824 22.272 24.4 26.624 31.072 33.2\\\">will be to a</text></g><clipPath id=\\\"clip4-50\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 272.152 L 128.1 272.152 L 128.1 271.152 L 34.7 271.152 L 34.7 272.152 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 271.152 L 35.7 271.152 L 35.7 214.8238 L 34.7 214.8238 L 34.7 271.152 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.1 272.152 L 206 272.152 L 206 271.152 L 128.1 271.152 L 128.1 272.152 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127.1 271.152 L 128.1 271.152 L 128.1 214.8238 L 127.1 214.8238 L 127.1 271.152 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 272.152 L 573.7 272.152 L 573.7 271.152 L 206 271.152 L 206 272.152 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.7 271.152 L 573.7 271.152 L 573.7 214.8238 L 572.7 214.8238 L 572.7 271.152 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 271.152 L 206 271.152 L 206 214.8238 L 205 214.8238 L 205 271.152 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 214.8238 L 128.1 214.8238 L 128.1 213.8238 L 34.7 213.8238 L 34.7 214.8238 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 213.8238 L 35.7 213.8238 L 35.7 138.3863 L 34.7 138.3863 L 34.7 213.8238 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.1 214.8238 L 206 214.8238 L 206 213.8238 L 128.1 213.8238 L 128.1 214.8238 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127.1 213.8238 L 128.1 213.8238 L 128.1 138.3863 L 127.1 138.3863 L 127.1 213.8238 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 214.8238 L 573.7 214.8238 L 573.7 213.8238 L 206 213.8238 L 206 214.8238 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.7 213.8238 L 573.7 213.8238 L 573.7 138.3863 L 572.7 138.3863 L 572.7 213.8238 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 213.8238 L 206 213.8238 L 206 138.3863 L 205 138.3863 L 205 213.8238 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 138.3863 L 128.1 138.3863 L 128.1 137.3863 L 34.7 137.3863 L 34.7 138.3863 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 137.3863 L 35.7 137.3863 L 35.7 117.277 L 34.7 117.277 L 34.7 137.3863 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.1 138.3863 L 206 138.3863 L 206 137.3863 L 128.1 137.3863 L 128.1 138.3863 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127.1 137.3863 L 128.1 137.3863 L 128.1 117.277 L 127.1 117.277 L 127.1 137.3863 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 138.3863 L 573.7 138.3863 L 573.7 137.3863 L 206 137.3863 L 206 138.3863 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.7 137.3863 L 573.7 137.3863 L 573.7 117.277 L 572.7 117.277 L 572.7 137.3863 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 137.3863 L 206 137.3863 L 206 117.277 L 205 117.277 L 205 137.3863 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 117.277 L 128.1 117.277 L 128.1 116.277 L 34.7 116.277 L 34.7 117.277 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 75.277 L 128.1 75.277 L 128.1 74.277 L 34.7 74.277 L 34.7 75.277 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 116.277 L 35.7 116.277 L 35.7 75.277 L 34.7 75.277 L 34.7 116.277 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.1 117.277 L 206 117.277 L 206 116.277 L 128.1 116.277 L 128.1 117.277 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.1 75.277 L 206 75.277 L 206 74.277 L 128.1 74.277 L 128.1 75.277 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127.1 116.277 L 128.1 116.277 L 128.1 75.277 L 127.1 75.277 L 127.1 116.277 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 117.277 L 573.7 117.277 L 573.7 116.277 L 206 116.277 L 206 117.277 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 75.277 L 573.7 75.277 L 573.7 74.277 L 206 74.277 L 206 75.277 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.7 116.277 L 573.7 116.277 L 573.7 75.277 L 572.7 75.277 L 572.7 116.277 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 116.277 L 206 116.277 L 206 75.277 L 205 75.277 L 205 116.277 z \\\"/><g clip-path=\\\"url(#clip4-50)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 36.5264)\\\" x=\\\"0 6.498 11.997 14.391 16.785 21.789 26.793 29.295 34.299 39.303 44.307 504 506.3906 508.7812 511.1719 513.5625 515.9531 518.3438 520.7344 523.125 525.5156\\\">UT  07/2019          </text></g><g clip-path=\\\"url(#clip4-50)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 26.3398)\\\" x=\\\"0 6.003 11.007 16.011 21.015\\\">Page </text></g><g clip-path=\\\"url(#clip4-50)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 55.8097 26.3398)\\\" x=\\\"0\\\">5</text></g><g clip-path=\\\"url(#clip4-50)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.815 26.3398)\\\" x=\\\"0 2.394 7.398 9.9\\\"> of </text></g><g clip-path=\\\"url(#clip4-50)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 73.1021 26.3398)\\\" x=\\\"0\\\">7</text></g><g clip-path=\\\"url(#clip4-50)\\\"><text stroke=\\\"none\\\" fill=\\\"#d9d9d9\\\" style=\\\"font-family:f4-0; font-size:54pt; white-space:pre\\\" transform=\\\"matrix(0.707 0.707 0.707 -0.707 135.6027 198.5094)\\\" x=\\\"0 56.016 96.048 136.08 176.112 216.144 236.16 284.184 324.216 344.232 364.248 416.232 456.264 480.24\\\">Qoppa Software</text></g><g clip-path=\\\"url(#clip4-50)\\\"><text stroke=\\\"none\\\" fill=\\\"#002ba6\\\" style=\\\"font-family:f4-0; font-size:9pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.932 772)\\\" x=\\\"0 9.336 16.008 22.68 29.352 36.024 39.36 47.364 54.036 57.372 60.708 69.372 76.044 80.04 86.712 90.048 94.044 97.38 104.712 111.384 115.38 118.716 126.72 132.72 139.392 142.056 148.728 155.4 158.736 161.4 168.072 174.744 178.08 187.416 194.088 196.752 202.752 206.088 210.084 213.42 220.092 223.428 226.764 233.436 239.436 242.772 246.108 249.444 258.108 266.772 275.436 278.772 285.444 292.116 298.788 305.46 312.132 315.468 321.468 328.14\\\">Qoppa Software - For Evaluation Only - https://www.qoppa.com</text></g></g></svg></svg></g></svg><br>\\n<?xml version='1.0' encoding='UTF-8'?><svg id=\\\"qoppa_document\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" version=\\\"1.1\\\" xmlns=\\\"http://www.w3.org/2000/svg\\\" xmlns:xlink=\\\"http://www.w3.org/1999/xlink\\\"><!-- jPDFWeb v2019R1.03 - Demo Version --><style>title p { display: block; }</style><g id=\\\"qoppa_viewxform\\\" transform=\\\"matrix(1 0 0 1 0 0)\\\"><style type=\\\"text/css\\\">@font-face {font-family:f5-0;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f5-1;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f5-2;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}</style><svg id=\\\"qoppa_page_p5\\\" class=\\\"qoppa_page\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\"><rect class=\\\"qoppa_pageborder\\\" x=\\\"0.5pt\\\" y=\\\"0.5pt\\\" width=\\\"611pt\\\" height=\\\"791pt\\\" fill=\\\"none\\\" /><svg class=\\\"qoppa_pagecontents\\\" x=\\\"0pt\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" viewBox=\\\"0 0 612 792\\\" ><g class=\\\"qoppa_contentstream\\\" transform=\\\"matrix(1 0 0 -1 0 792)\\\" fill=\\\"black\\\" stroke=\\\"black\\\" stroke-width=\\\"1\\\" stroke-linecap=\\\"butt\\\" stroke-linejoin=\\\"miter\\\" stroke-miterlimit=\\\"10\\\"><clipPath id=\\\"clip5-1\\\"><path d=\\\"M 35 727 L 128 727 L 128 770 L 35 770 L 35 727 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-1)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.2 769.7 L 127.6 769.7 L 127.6 727.7 L 35.2 727.7 L 35.2 769.7 z \\\"/><clipPath id=\\\"clip5-2\\\"><path d=\\\"M 205 727 L 574 727 L 574 770 L 205 770 L 205 727 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 760.325)\\\" x=\\\"0 4.448 7.112 12.448 15.112 19.56 21.384 23.608 28.056\\\">3-Arbiter</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 240.3227 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 243.109 760.325)\\\" x=\\\"0 4.448 8.896 13.344 17.792\\\">panel</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.7301 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 265.5165 760.325)\\\" x=\\\"0 2.224 4.888 9.336\\\">from</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.5165 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 284.3029 760.325)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 295.424 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 298.2103 760.325)\\\" x=\\\"0 4 8.448 15.112\\\">same</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 317.7728 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 320.5592 760.325)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 26.768 31.216\\\">arbitration</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 356.2272 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 359.0136 760.325)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456\\\">group.</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 381.6972 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 384.4835 760.325)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 398.2687 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 401.0551 760.325)\\\" x=\\\"0 4.448 8.896 13.344 17.792 22.24\\\">appeal</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 425.1254 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 427.9118 760.325)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 439.1618 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 441.9481 760.325)\\\" x=\\\"0 4.448\\\">be</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 450.8466 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 453.6329 760.325)\\\" x=\\\"0 4.448\\\">de</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 462.5314 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 465.3178 760.325)\\\" x=\\\"0 4.448 8.896 12.896 17.344\\\">novo,</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.8881 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 487.6745 760.325)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.0221 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 503.8085 760.325)\\\" x=\\\"0 4 8.448 10.272 14.272 18.72\\\">solved</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.9804 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 529.7667 760.325)\\\" x=\\\"0 4.448\\\">by</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 538.216 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 541.0023 760.325)\\\" x=\\\"0 6.664 11.112 12.936 17.384 20.048 21.872 24.096\\\">majority</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 751.2703)\\\" x=\\\"0 4 8.448 10.672 15.12\\\">vote.</text></g><clipPath id=\\\"clip5-3\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-3)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 770.2 L 128.1 770.2 L 128.1 769.2 L 34.7 769.2 L 34.7 770.2 z \\\"/><path clip-path=\\\"url(#clip5-3)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 728.2 L 128.1 728.2 L 128.1 727.2 L 34.7 727.2 L 34.7 728.2 z \\\"/><path clip-path=\\\"url(#clip5-3)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 769.2 L 35.7 769.2 L 35.7 728.2 L 34.7 728.2 L 34.7 769.2 z \\\"/><path clip-path=\\\"url(#clip5-3)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.1 770.2 L 206 770.2 L 206 769.2 L 128.1 769.2 L 128.1 770.2 z \\\"/><path clip-path=\\\"url(#clip5-3)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.1 728.2 L 206 728.2 L 206 727.2 L 128.1 727.2 L 128.1 728.2 z \\\"/><path clip-path=\\\"url(#clip5-3)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127.1 769.2 L 128.1 769.2 L 128.1 728.2 L 127.1 728.2 L 127.1 769.2 z \\\"/><path clip-path=\\\"url(#clip5-3)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 770.2 L 573.7 770.2 L 573.7 769.2 L 206 769.2 L 206 770.2 z \\\"/><path clip-path=\\\"url(#clip5-3)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 728.2 L 573.7 728.2 L 573.7 727.2 L 206 727.2 L 206 728.2 z \\\"/><path clip-path=\\\"url(#clip5-3)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.7 769.2 L 573.7 769.2 L 573.7 728.2 L 572.7 728.2 L 572.7 769.2 z \\\"/><path clip-path=\\\"url(#clip5-3)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 769.2 L 206 769.2 L 206 728.2 L 205 728.2 L 205 769.2 z \\\"/><g clip-path=\\\"url(#clip5-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 241.2386 715.4812)\\\" x=\\\"0 6.67 10 15.56 17.84 20.62 23.95 29.51 32.29 34.57 40.13 45.69 48.35 54.46 60.02 65.58 70.58 73.24 78.8 84.36 89.92 92.58 99.25 106.47 112.03 115.36 120.92\\\">Ar* D E M O *ees and Awards</text></g><clipPath id=\\\"clip5-4\\\"><path d=\\\"M 35 680 L 128 680 L 128 705 L 35 705 L 35 680 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-4)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.6 704.277 L 127.5 704.277 L 127.5 680.277 L 35.6 680.277 L 35.6 704.277 z \\\"/><path clip-path=\\\"url(#clip5-4)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.7 700.777 L 123.4 700.777 L 123.4 682.6676 L 39.7 682.6676 L 39.7 700.777 z \\\"/><path clip-path=\\\"url(#clip5-4)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 52.677 700.777 L 110.677 700.777 L 110.677 690.777 L 52.677 690.777 L 52.677 700.777 z \\\"/><g clip-path=\\\"url(#clip5-4)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 52.677 693.4019)\\\" x=\\\"0 7.552 9.376 11.2 13.024 15.152 20.928 25.376 27.504 31.952 36.4 40.4 44.848 49.296 53.296\\\">Will we advance</text></g><path clip-path=\\\"url(#clip5-4)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 51.093 691.7223 L 112.093 691.7223 L 112.093 681.7223 L 51.093 681.7223 L 51.093 691.7223 z \\\"/><g clip-path=\\\"url(#clip5-4)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 51.093 684.3473)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 19.16 23.608 25.832 27.656 32.104 36.552 38.68 43.568 48.016 52.464 56.464\\\">Arbitration Fees?</text></g><clipPath id=\\\"clip5-5\\\"><path d=\\\"M 127 680 L 206 680 L 206 705 L 127 705 L 127 680 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-5)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 135.7422 693.4019)\\\" x=\\\"0 5.336 9.784 13.784 16.008 18.136 22.584 27.032 29.256 31.384 35.384 39.832 44.28 46.408 53.072 57.52\\\">Yes, but you may</text></g><g clip-path=\\\"url(#clip5-5)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 148.541 684.3473)\\\" x=\\\"0 4.448 8.896 12.896 15.024 19.024 23.472 27.472 29.696 33.696\\\">pay costs.</text></g><clipPath id=\\\"clip5-6\\\"><path d=\\\"M 205 680 L 573 680 L 573 705 L 205 705 L 205 680 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 693.4019)\\\" x=\\\"0 7.552\\\">We</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 221.6 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 224.0728 693.4019)\\\" x=\\\"0 4.448 8.896 12.896 17.344 21.792 25.792\\\">advance</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 254.3189 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 256.7917 693.4019)\\\" x=\\\"0 4 8.448 12.896\\\">your</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 272.3542 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 274.827 693.4019)\\\" x=\\\"0 2.84 8.176 10.84 15.288 17.112 19.336 22 26.448 28.672 30.496 34.944\\\">&quot;Arbitration</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 314.2216 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 316.6944 693.4019)\\\" x=\\\"0 4.888 9.336 13.784 17.784\\\">Fees&quot;</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 337.3194 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 339.7922 693.4019)\\\" x=\\\"0 1.824\\\">if</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 343.8391 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 346.3119 693.4019)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.2103 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 361.6831 693.4019)\\\" x=\\\"0 4.448 8.448\\\">ask</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 374.1323 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 376.6051 693.4019)\\\" x=\\\"0 4.448\\\">us</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 385.0544 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 387.5272 693.4019)\\\" x=\\\"0 2.224 6.672\\\">to.</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 396.4217 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 398.8945 693.4019)\\\" x=\\\"0 4.888 9.336 11.16\\\">This</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 414.0547 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 416.5275 693.4019)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44\\\">includes</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 445.9728 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 448.4456 693.4019)\\\" x=\\\"0 2.224 4.048 5.872 7.696 12.144 16.592\\\">filing,</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.262 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 469.7348 693.4019)\\\" x=\\\"0 4.448 8.896 15.56 17.384 21.832 23.656 27.656 29.88 32.544 36.992 39.216 41.04 45.04 49.488\\\">administrative,</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.4497 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 523.9225 693.4019)\\\" x=\\\"0 4.448 8.896 13.344 16.008 17.832 22.28 26.728\\\">hearing,</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.8795 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 555.3523 693.4019)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 684.3473)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608 25.136 29.136 31.264 33.488 37.936 42.384 46.384 48.608 50.736 56.072 60.52 64.968 67.096 71.544 75.992 79.992 82.12 86.12 90.568 95.016 97.68 99.808 104.256 106.48 108.704 113.152 115.816 120.264 124.712 128.712 130.84 133.064 137.512 141.96 145.96 148.088 152.536 156.984 161.432 163.56 168.008 170.232 174.68 179.128 181.792 183.92 188.368 192.368 196.816 201.264 205.712 209.712 214.16 218.16\\\">Arbiter&apos;s fees. You pay your attorney fees and other expenses.</text></g><clipPath id=\\\"clip5-7\\\"><path d=\\\"M 35 656 L 128 656 L 128 681 L 35 681 L 35 656 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-7)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.6 680.277 L 127.5 680.277 L 127.5 656.6769 L 35.6 656.6769 L 35.6 680.277 z \\\"/><path clip-path=\\\"url(#clip5-7)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.7 676.277 L 123.4 676.277 L 123.4 658.1676 L 39.7 658.1676 L 39.7 676.277 z \\\"/><path clip-path=\\\"url(#clip5-7)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 50.0715 676.277 L 113.0715 676.277 L 113.0715 666.277 L 50.0715 666.277 L 50.0715 676.277 z \\\"/><g clip-path=\\\"url(#clip5-7)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 50.0715 668.9019)\\\" x=\\\"0 5.336 8 12.448 14.576 19.024 23.472 30.136 34.584 39.032 43.48 47.48 49.608 54.056 58.504\\\">Are damages and</text></g><path clip-path=\\\"url(#clip5-7)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 40.4641 667.2223 L 123.4641 667.2223 L 123.4641 657.2223 L 40.4641 657.2223 L 40.4641 667.2223 z \\\"/><g clip-path=\\\"url(#clip5-7)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.4641 659.8473)\\\" x=\\\"0 4.448 6.672 8.896 13.344 16.008 20.456 24.904 28.904 31.032 33.256 37.704 42.152 46.152 48.28 52.728 57.176 61.176 65.176 67 71.448 73.272 77.72\\\">attorney fees possible?</text></g><clipPath id=\\\"clip5-8\\\"><path d=\\\"M 127 656 L 206 656 L 206 681 L 127 681 L 127 656 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 139.625 668.9019)\\\" x=\\\"0 5.336 9.784 13.784 16.008 18.136 19.96 22.184 24.312 28.76 30.584 32.408 36.856 42.632 47.08 51.528\\\">Yes, if allowed.</text></g><clipPath id=\\\"clip5-9\\\"><path d=\\\"M 205 656 L 573 656 L 573 681 L 205 681 L 205 656 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 668.9019)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 223.3852 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 225.9124 668.9019)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 249.5218 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 252.049 668.9019)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 267.1623 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 269.6895 668.9019)\\\" x=\\\"0 4.448 10.224 14.672 17.336\\\">award</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.4786 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 294.0058 668.9019)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 305.1269 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 307.6542 668.9019)\\\" x=\\\"0 4 8.448 15.112\\\">same</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 327.2167 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 329.7439 668.9019)\\\" x=\\\"0 4.448 8.896 15.56 20.008 24.456 28.904\\\">damages</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 362.6541 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 365.1813 668.9019)\\\" x=\\\"0 4.448\\\">as</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 373.6305 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 376.1578 668.9019)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.607 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 383.1342 668.9019)\\\" x=\\\"0 4 8.448 12.896 15.56 17.784\\\">court.</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.142 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 405.6693 668.9019)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608\\\">Arbiters</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 433.2786 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 435.8059 668.9019)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 450.9192 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 453.4464 668.9019)\\\" x=\\\"0 4.448 10.224 14.672 17.336\\\">award</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 475.2355 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 477.7627 668.9019)\\\" x=\\\"0 2.664 7.112 11.56 15.56 20.008 24.456 28.904 33.352 35.176\\\">reasonable</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 517.3955 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 519.9227 668.9019)\\\" x=\\\"0 4.448 6.672 8.896 13.344 16.008 20.456 24.904\\\">attorney</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 548.829 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 551.3562 668.9019)\\\" x=\\\"0 2.224 6.672 11.12 15.12\\\">fees,</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 659.8473)\\\" x=\\\"0 4.448 8.896 13.344 15.472 19.92 23.92 28.368 32.816 37.264 41.264 45.712 49.712 51.936 54.064 55.888 58.112 60.24 64.688 66.512 68.336 72.784 78.56 83.008 87.456 89.584 94.032 98.032 100.16 101.984 106.432 112.208\\\">and expenses, * D E M O *by law.</text></g><clipPath id=\\\"clip5-10\\\"><path d=\\\"M 35 633 L 128 633 L 128 657 L 35 657 L 35 633 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-10)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.6 656.6769 L 127.5 656.6769 L 127.5 633.077 L 35.6 633.077 L 35.6 656.6769 z \\\"/><path clip-path=\\\"url(#clip5-10)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.7 652.6769 L 123.4 652.6769 L 123.4 634.5676 L 39.7 634.5676 L 39.7 652.6769 z \\\"/><path clip-path=\\\"url(#clip5-10)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 40.675 652.6769 L 124.675 652.6769 L 124.675 642.6769 L 40.675 642.6769 L 40.675 652.6769 z \\\"/><g clip-path=\\\"url(#clip5-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 645.3019)\\\" x=\\\"0 7.552 9.376 11.2 13.024 15.152 19.152 23.6 28.048 30.176 34.624 39.072 43.072 45.2 50.536 53.2 57.648 59.472 61.696 64.36 68.808 71.032 72.856 77.304\\\">Will you pay Arbitration</text></g><path clip-path=\\\"url(#clip5-10)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 52.7473 643.6223 L 110.7473 643.6223 L 110.7473 633.6223 L 52.7473 633.6223 L 52.7473 643.6223 z \\\"/><g clip-path=\\\"url(#clip5-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 52.7473 636.2473)\\\" x=\\\"0 4.888 9.336 13.784 17.784 19.912 21.736 23.96 26.088 30.088 34.536 38.984 41.112 46.888 48.712 53.16\\\">Fees if you win?</text></g><clipPath id=\\\"clip5-11\\\"><path d=\\\"M 127 633 L 206 633 L 206 657 L 127 657 L 127 633 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 160.2754 645.3019)\\\" x=\\\"0 5.776 10.224\\\">No.</text></g><clipPath id=\\\"clip5-12\\\"><path d=\\\"M 205 633 L 573 633 L 573 657 L 205 657 L 205 633 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 645.3019)\\\" x=\\\"0 2.224 4.448 6.576 8.8 13.248 17.696 19.824 25.16 27.824 32.272 34.096 36.32 40.768 43.432 45.56 50.008 55.784 60.232 62.896 67.344 71.344 73.472 77.472 81.92 86.368 88.496 90.72 95.168 99.616 104.064 108.064 110.288 112.416 116.416 120.864 125.312 127.44 131.888 136.336 140.784 142.312 144.536 146.664 149.328 153.776 155.6 162.264 166.712 171.16 173.824 177.824 182.272 184.4 188.848 192.848 194.976 197.2 201.648 206.096 208.224 213.56 216.224 220.672 222.496 224.72 227.384 231.832 234.056 235.88 240.328 244.776 246.904 251.792 256.24 260.688 264.688\\\">If the Arbiter awards you funds, you don&apos;t reimburse us the Arbitration Fees.</text></g><clipPath id=\\\"clip5-13\\\"><path d=\\\"M 35 601 L 128 601 L 128 634 L 35 634 L 35 601 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-13)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.6 633.077 L 127.5 633.077 L 127.5 601.9129 L 35.6 601.9129 L 35.6 633.077 z \\\"/><path clip-path=\\\"url(#clip5-13)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.7 629.077 L 123.4 629.077 L 123.4 610.9676 L 39.7 610.9676 L 39.7 629.077 z \\\"/><path clip-path=\\\"url(#clip5-13)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 51.1711 629.077 L 112.1711 629.077 L 112.1711 619.077 L 51.1711 619.077 L 51.1711 629.077 z \\\"/><g clip-path=\\\"url(#clip5-13)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 51.1711 621.702)\\\" x=\\\"0 7.552 9.376 11.2 13.024 15.152 19.152 23.6 28.048 30.176 34.624 38.624 43.072 45.736 47.864 52.312 56.76\\\">Will you ever pay</text></g><path clip-path=\\\"url(#clip5-13)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 51.093 620.0223 L 112.093 620.0223 L 112.093 610.0223 L 51.093 610.0223 L 51.093 620.0223 z \\\"/><g clip-path=\\\"url(#clip5-13)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 51.093 612.6473)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 19.16 23.608 25.832 27.656 32.104 36.552 38.68 43.568 48.016 52.464 56.464\\\">Arbitration Fees?</text></g><clipPath id=\\\"clip5-14\\\"><path d=\\\"M 127 601 L 206 601 L 206 634 L 127 634 L 127 601 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-14)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 152.2715 621.702)\\\" x=\\\"0 5.336 9.784 13.784 16.008 21.784 26.232\\\">Yes/No.</text></g><clipPath id=\\\"clip5-15\\\"><path d=\\\"M 205 601 L 573 601 L 573 634 L 205 634 L 205 601 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 621.702)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 214.0453 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 217.6688 621.702)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 228.7898 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 232.4133 621.702)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.0227 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 259.6461 621.702)\\\" x=\\\"0 4.448 8.896 13.344 17.344 21.792 23.32\\\">doesn&apos;t</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 285.193 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 288.8164 621.702)\\\" x=\\\"0 4.448 10.224 14.672 17.336\\\">award</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 310.6055 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 314.2289 621.702)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 327.1273 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 330.7508 621.702)\\\" x=\\\"0 2.224 6.672 11.12 15.568 19.568\\\">funds,</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 352.5437 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 356.1672 621.702)\\\" x=\\\"0 2.224 6.672 11.12\\\">then</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.7375 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 375.3609 621.702)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.2594 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 391.8828 621.702)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 406.9961 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 410.6195 621.702)\\\" x=\\\"0 2.664 7.112 11.56 16.008\\\">repay</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.6312 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 434.2547 621.702)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 445.3758 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 448.9992 621.702)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 19.16 23.608 25.832 27.656 32.104\\\">Arbitration</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 485.5539 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 489.1773 621.702)\\\" x=\\\"0 4.888 9.336 13.784 17.784\\\">Fees.</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.1851 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 512.8086 621.702)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.5937 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 530.2172 621.702)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.8265 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 557.45 621.702)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 612.6473)\\\" x=\\\"0 4.448 8.896 12.896 14.72 19.168\\\">decide</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.2211 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 236.7228 612.6473)\\\" x=\\\"0 5.776 10.224 14.672 16.896 21.344 25.792\\\">whether</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 265.1838 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 268.6855 612.6473)\\\" x=\\\"0 4 8.448 12.896 14.424 16.248\\\">you&apos;ll</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 286.7597 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 290.2614 612.6473)\\\" x=\\\"0 4.448 8.896 12.896\\\">pay.</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 305.3825 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 308.8842 612.6473)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 313.3295 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 316.8312 612.6473)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.7297 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 333.2314 612.6473)\\\" x=\\\"0 6.664 11.112 15.112\\\">must</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 350.5673 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 354.0691 612.6473)\\\" x=\\\"0 4.448 8.896\\\">pay</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 366.9675 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 370.4692 612.6473)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 19.16 23.608 25.832 27.656 32.104\\\">Arbitration</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 407.0239 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 410.5256 612.6473)\\\" x=\\\"0 4.888 9.336 13.784 17.784\\\">Fees,</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.5334 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 434.0351 612.6473)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 445.1562 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 448.658 612.6473)\\\" x=\\\"0 4.448 11.112 15.56 20.008 24.456\\\">amount</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 475.3415 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 478.8433 612.6473)\\\" x=\\\"0 5.776 10.224 14.672 16.2\\\">won&apos;t</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 497.269 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 500.7708 612.6473)\\\" x=\\\"0 4.448 8.448 12.448 16.896 21.344\\\">exceed</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.5676 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 530.0694 612.6473)\\\" x=\\\"0 4 6.224 10.672 12.896\\\">state</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 547.4131 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 550.9148 612.6473)\\\" x=\\\"0 4 8.448 12.896 15.56\\\">court</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 603.5926)\\\" x=\\\"0 4 8.448 12.448 14.672 18.672\\\">costs.</text></g><clipPath id=\\\"clip5-16\\\"><path d=\\\"M 35 534 L 128 534 L 128 602 L 35 602 L 35 534 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-16)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.6 601.9129 L 127.5 601.9129 L 127.5 534.5301 L 35.6 534.5301 L 35.6 601.9129 z \\\"/><path clip-path=\\\"url(#clip5-16)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.7 597.9129 L 123.4 597.9129 L 123.4 579.8035 L 39.7 579.8035 L 39.7 597.9129 z \\\"/><path clip-path=\\\"url(#clip5-16)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 45.2063 597.9129 L 118.2063 597.9129 L 118.2063 587.9129 L 45.2063 587.9129 L 45.2063 597.9129 z \\\"/><g clip-path=\\\"url(#clip5-16)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 45.2063 590.5379)\\\" x=\\\"0 7.552 12 16.448 18.672 20.8 25.248 29.696 34.144 38.592 43.04 47.488 51.488 53.616 55.44 57.664 59.792 63.792 68.24\\\">What happens if you</text></g><path clip-path=\\\"url(#clip5-16)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 73.3 588.8582 L 90.3 588.8582 L 90.3 578.8582 L 73.3 578.8582 L 73.3 588.8582 z \\\"/><g clip-path=\\\"url(#clip5-16)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 73.3 581.4832)\\\" x=\\\"0 5.776 7.6 12.048\\\">win?</text></g><clipPath id=\\\"clip5-17\\\"><path d=\\\"M 127 534 L 206 534 L 206 602 L 127 602 L 127 534 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-17)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 131.9356 590.5379)\\\" x=\\\"0 5.336 9.784 14.232 16.36 20.36 24.808 29.256 31.08 35.528 37.656 42.104 46.552 48.776 50.904 57.568 62.016 64.68\\\">You could get more</text></g><g clip-path=\\\"url(#clip5-17)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 139.2246 581.4832)\\\" x=\\\"0 2.224 6.672 11.12 15.568 17.696 19.92 24.368 28.816 30.944 36.28 38.944 43.392 45.216 47.44 51.888\\\">than the Arbiter</text></g><g clip-path=\\\"url(#clip5-17)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 150.0449 572.4285)\\\" x=\\\"0 4.448 10.224 14.672 17.336 21.784 26.232 30.68\\\">awarded.</text></g><clipPath id=\\\"clip5-18\\\"><path d=\\\"M 205 534 L 573 534 L 573 602 L 205 602 L 205 534 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 590.5379)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 214.0453 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 216.367 590.5379)\\\" x=\\\"0 4.448\\\">an</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.2654 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 227.5871 590.5379)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608 25.136\\\">Arbiter&apos;s</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.7238 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 259.0455 590.5379)\\\" x=\\\"0 4.448 10.224 14.672 17.336\\\">award</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.8345 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 283.1562 590.5379)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 289.8281 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 292.1498 590.5379)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 305.0482 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 307.3699 590.5379)\\\" x=\\\"0 4.448 8.448 12.448 16.896 21.344 25.792\\\">exceeds</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 337.1667 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 339.4884 590.5379)\\\" x=\\\"0 4.448 8.896\\\">our</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.0509 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 353.3726 590.5379)\\\" x=\\\"0 1.824 6.272 10.272\\\">last</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 365.8687 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 368.1903 590.5379)\\\" x=\\\"0 5.336 9.784 12.008 14.232 16.056 20.504 27.168 31.616 36.064\\\">Settlement</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 406.4794 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 408.8011 590.5379)\\\" x=\\\"0 6.224 8.448 10.672 15.12 17.784\\\">Offer,</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 428.805 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 431.1266 590.5379)\\\" x=\\\"0 5.776\\\">we</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 441.3532 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 443.6749 590.5379)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.9249 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 457.2465 590.5379)\\\" x=\\\"0 4.448 8.896\\\">pay</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 470.145 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 472.4666 590.5379)\\\" x=\\\"0\\\">3</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 476.9159 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 479.2375 590.5379)\\\" x=\\\"0 4.448 11.112 15.56 20.008 24.456 26.68 30.68\\\">amounts.</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.1438 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 514.4654 590.5379)\\\" x=\\\"0 7.552\\\">We</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.4654 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 528.7871 590.5379)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 540.0371 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 542.3588 590.5379)\\\" x=\\\"0 4.448 8.896\\\">pay</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 555.2572 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 557.5789 590.5379)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 581.4832)\\\" x=\\\"0 4.448 7.112 11.56 16.008 18.232 22.68\\\">greater</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 234.9477 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 238.6632 581.4832)\\\" x=\\\"0 4.448\\\">of</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.3351 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 249.0506 581.4832)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 260.1717 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 263.8872 581.4832)\\\" x=\\\"0 4.448 10.224 14.672 17.336\\\">award</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 285.6762 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 289.3918 581.4832)\\\" x=\\\"0 4.448 11.112 15.56 20.008 24.456\\\">amount</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 316.0754 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 319.7909 581.4832)\\\" x=\\\"0 4.448\\\">or</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 326.9042 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 330.6197 581.4832)\\\" x=\\\"0 4.448 8.896 13.344 17.792 20.016 24.464\\\">$500.00</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.5376 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 363.2532 581.4832)\\\" x=\\\"0 2.664 5.504 9.952 14.4 18.848 23.296\\\">(&quot;bonus</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 390.5539 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 394.2695 581.4832)\\\" x=\\\"0 4.448 8.896 12.896 19.56 24.008 28.456 30.68 33.52 36.184\\\">payment&quot;).</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 432.6796 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 436.3951 581.4832)\\\" x=\\\"0 7.552\\\">We</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 448.3951 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 452.1107 581.4832)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 463.3607 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 467.0762 581.4832)\\\" x=\\\"0 4.448 8.896\\\">pay</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 479.9746 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 483.6901 581.4832)\\\" x=\\\"0 4 8.448 12.896\\\">your</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.2526 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 502.9682 581.4832)\\\" x=\\\"0 4.448 6.672 8.896 13.344 16.008 20.456 24.904\\\">attorney</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 531.8744 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 535.5899 581.4832)\\\" x=\\\"0 2.224 8 9.824 13.824\\\">twice</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.8634 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 557.5789 581.4832)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 572.4285)\\\" x=\\\"0 4.448 6.672 8.896 13.344 16.008 20.456 24.904\\\">attorney</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.5063 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 242.1723 572.4285)\\\" x=\\\"0 2.224 6.672 11.12\\\">fees</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.2934 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 260.9594 572.4285)\\\" x=\\\"0 4 8.448 12.896 15.12 19.568 22.232 24.896 29.344\\\">conferred</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 294.7563 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 298.4224 572.4285)\\\" x=\\\"0 2.664 5.504 9.952 12.176 14.4 18.848 21.512 25.96 30.408\\\">(&quot;attorney</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 332.8325 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 336.4986 572.4285)\\\" x=\\\"0 4.448 7.112 11.56 18.224 20.048 24.496 31.16 34 36.664\\\">premium&quot;).</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.3892 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 379.0552 572.4285)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.5005 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 387.1666 572.4285)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 398.2877 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 401.9537 572.4285)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 425.5631 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 429.2291 572.4285)\\\" x=\\\"0 4.448 7.112 11.56 16.008 18.672 22.672\\\">orders,</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.1276 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 457.7936 572.4285)\\\" x=\\\"0 5.776\\\">we</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.0202 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 471.6862 572.4285)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 482.9362 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 486.6023 572.4285)\\\" x=\\\"0 4.448 8.896\\\">pay</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.5007 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 503.1667 572.4285)\\\" x=\\\"0 2.664 7.112 11.56 15.56 20.008 24.456 28.904 33.352 35.176\\\">reasonable</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 542.7996 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 546.4656 572.4285)\\\" x=\\\"0 4.448 8.448 12.896 17.344 20.008\\\">expert</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 563.3738)\\\" x=\\\"0 5.776 7.6 9.824 14.272 18.72 22.72\\\">witness</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 236.3227 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 238.5023 563.3738)\\\" x=\\\"0 4 8.448 12.448 14.672\\\">costs</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.1741 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 259.3537 563.3738)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 272.7014 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 274.881 563.3738)\\\" x=\\\"0 4.448 6.672 11.12 15.568\\\">other</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 293.1153 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 295.2949 563.3738)\\\" x=\\\"0 4 8.448 12.448 14.672\\\">costs</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 313.9668 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 316.1464 563.3738)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.0448 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 331.2244 563.3738)\\\" x=\\\"0 1.824 6.272 10.272 14.72 17.384 20.048 24.496\\\">incurred</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 360.1736 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 362.3532 563.3738)\\\" x=\\\"0 2.664 5.504 9.504 13.952 17.952\\\">(&quot;cost</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 382.529 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 384.7086 563.3738)\\\" x=\\\"0 4.448 7.112 11.56 18.224 20.048 24.496 31.16 34 36.664\\\">premium&quot;).</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 423.5992 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 425.7788 563.3738)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.2241 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 432.4037 563.3738)\\\" x=\\\"0 5.776\\\">we</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 442.6303 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 444.8099 563.3738)\\\" x=\\\"0 4.448 8.896 12.896 17.344\\\">never</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 464.8216 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 467.0012 563.3738)\\\" x=\\\"0 6.664 11.112 15.56\\\">made</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 487.0129 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 489.1925 563.3738)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 493.6417 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 495.8213 563.3738)\\\" x=\\\"0 5.336 9.784 12.008 14.232 16.056 20.504 27.168 31.616 36.064\\\">Settlement</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 534.1103 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 536.2899 563.3738)\\\" x=\\\"0 6.224 8.448 10.672 15.12 17.784\\\">Offer,</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 556.2938 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 558.4734 563.3738)\\\" x=\\\"0 5.776\\\">we</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 554.3191)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 220.85 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 224.1983 554.3191)\\\" x=\\\"0 4.448 8.896\\\">pay</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 237.0968 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 240.4451 554.3191)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 251.5662 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 254.9145 554.3191)\\\" x=\\\"0 4.448 8.896 13.344 17.792\\\">bonus</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.7114 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 280.0597 554.3191)\\\" x=\\\"0 4.448 8.896 12.896 19.56 24.008 28.456 30.68\\\">payment,</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.966 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 316.3143 554.3191)\\\" x=\\\"0 4.448 6.672 8.896 13.344 16.008 20.456 24.904\\\">attorney</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 345.2206 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 348.5689 554.3191)\\\" x=\\\"0 4.448 7.112 11.56 18.224 20.048 24.496 31.16\\\">premium,</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 381.9556 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 385.3039 554.3191)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 398.6516 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 401.9999 554.3191)\\\" x=\\\"0 4.448 8.896\\\">any</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 414.8984 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 418.2467 554.3191)\\\" x=\\\"0 4 8.448 12.448\\\">cost</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 432.9186 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 436.2669 554.3191)\\\" x=\\\"0 4.448 7.112 11.56 18.224 20.048 24.496 31.16\\\">premium.</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 469.6536 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 473.002 554.3191)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.7871 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 490.1355 554.3191)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 513.7448 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 517.0932 554.3191)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 532.2064 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 535.5548 554.3191)\\\" x=\\\"0 4.448 7.112 11.56 16.008\\\">order</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 554.2306 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 557.5789 554.3191)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 545.2645)\\\" x=\\\"0 4.448 7.112 11.56 15.56 20.008 24.008\\\">process</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 237.6117 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 240.0494 545.2645)\\\" x=\\\"0 2.224 6.672\\\">for</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 249.3853 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 251.8229 545.2645)\\\" x=\\\"0 4.448 8.896 12.896 19.56 24.008 28.456 30.68\\\">payment.</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 284.7292 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 287.1668 545.2645)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.6121 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 294.0498 545.2645)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 298.499 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 300.9366 545.2645)\\\" x=\\\"0 1.824 6.272\\\">law</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.9874 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 315.425 545.2645)\\\" x=\\\"0 4.448 6.272 8.096 12.544 18.32\\\">allows</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 337.7493 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 340.1869 545.2645)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 353.0853 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 355.523 545.2645)\\\" x=\\\"0 6.664 11.112 13.776 18.224\\\">more,</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.9722 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 378.4098 545.2645)\\\" x=\\\"0 2.224 6.672 8.496\\\">this</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 390.9059 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 393.3436 545.2645)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496\\\">Clause</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 418.2928 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 420.7304 545.2645)\\\" x=\\\"0 5.776 10.224 14.672 16.2\\\">won&apos;t</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 439.1562 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 441.5938 545.2645)\\\" x=\\\"0 4.448 7.112 11.56 15.56 20.008 24.456\\\">prevent</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.2774 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 470.7151 545.2645)\\\" x=\\\"0 4 8.448 12.448\\\">such</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 487.6135 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 490.0511 545.2645)\\\" x=\\\"0 4.448 10.224 14.672 17.336 21.784\\\">award.</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 514.0628 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 516.5005 545.2645)\\\" x=\\\"0 7.552\\\">We</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 528.5005 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 530.9381 545.2645)\\\" x=\\\"0 5.776 10.224 14.672 16.2\\\">won&apos;t</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.3639 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 551.8015 545.2645)\\\" x=\\\"0 4 8.448 12.896\\\">seek</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 536.2098)\\\" x=\\\"0 4.448 6.672 8.896 13.344 16.008 20.456 24.904 28.904 31.032 33.256 37.704 42.152 46.152 48.28 52.728 57.176 61.624 63.752 68.2 72.2 76.648 81.096 85.544 89.544 93.992 97.992\\\">attorney fees and expenses.</text></g><clipPath id=\\\"clip5-19\\\"><path d=\\\"M 35 510 L 128 510 L 128 535 L 35 535 L 35 510 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-19)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.6 534.5301 L 127.5 534.5301 L 127.5 510.5301 L 35.6 510.5301 L 35.6 534.5301 z \\\"/><path clip-path=\\\"url(#clip5-19)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.7 530.5301 L 123.4 530.5301 L 123.4 512.4207 L 39.7 512.4207 L 39.7 530.5301 z \\\"/><path clip-path=\\\"url(#clip5-19)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 51.2317 530.5301 L 112.2317 530.5301 L 112.2317 520.5301 L 51.2317 520.5301 L 51.2317 530.5301 z \\\"/><g clip-path=\\\"url(#clip5-19)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 51.2317 523.1551)\\\" x=\\\"0 5.776 10.224 14.672 16.8 21.248 25.696 27.824 32.272 38.048 42.496 45.16 49.608 51.736 56.184\\\">Can an award be</text></g><path clip-path=\\\"url(#clip5-19)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 62.1535 521.4754 L 101.1535 521.4754 L 101.1535 511.4754 L 62.1535 511.4754 L 62.1535 521.4754 z \\\"/><g clip-path=\\\"url(#clip5-19)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 62.1535 514.1004)\\\" x=\\\"0 4.448 8.448 12.896 14.72 19.168 20.992 25.44 29.888 34.336\\\">explained?</text></g><clipPath id=\\\"clip5-20\\\"><path d=\\\"M 127 510 L 206 510 L 206 535 L 127 535 L 127 510 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-20)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 158.4961 523.1551)\\\" x=\\\"0 5.336 9.784 13.784\\\">Yes.</text></g><clipPath id=\\\"clip5-21\\\"><path d=\\\"M 205 510 L 573 510 L 573 535 L 205 535 L 205 510 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 523.1551)\\\" x=\\\"0\\\">A</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 214.9359 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 218.2265 523.1551)\\\" x=\\\"0 4.448 8.896 11.56 13.784\\\">party</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 236.0117 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 239.3023 523.1551)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 254.4155 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 257.7061 523.1551)\\\" x=\\\"0 2.664 7.112 11.56 16.008 20.456 24.456\\\">request</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 284.3897 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 287.6803 523.1551)\\\" x=\\\"0 4.448 8.896 11.12 15.568 17.392 19.216\\\">details</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 310.899 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 314.1896 523.1551)\\\" x=\\\"0 2.224 4.888 9.336\\\">from</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 330.1896 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 333.4802 523.1551)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 344.6013 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 347.8919 523.1551)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608\\\">Arbiter,</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 373.7239 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 377.0145 523.1551)\\\" x=\\\"0 5.776 7.6 9.824 14.272 16.096\\\">within</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 397.5613 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 400.8519 523.1551)\\\" x=\\\"0 4.448\\\">14</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 409.7504 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 413.0409 523.1551)\\\" x=\\\"0 4.448 8.896 12.896\\\">days</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 429.9394 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 433.23 523.1551)\\\" x=\\\"0 4.448\\\">of</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 439.9018 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 443.1924 523.1551)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.3135 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 457.6041 523.1551)\\\" x=\\\"0 2.664 7.112 8.936 10.76 15.208 19.656\\\">ruling.</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 479.4869 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 482.7775 523.1551)\\\" x=\\\"0 5.776 10.224 14.672\\\">Upon</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.9025 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 505.193 523.1551)\\\" x=\\\"0 4 8.448 12.448\\\">such</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 522.0915 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 525.3821 523.1551)\\\" x=\\\"0 2.664 7.112 11.56 16.008 20.456 24.456 26.68\\\">request,</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 554.2883 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 557.5789 523.1551)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 514.1004)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608 25.736 31.512 33.336 35.16 36.984 39.112 43.56 47.56 52.008 53.832 58.28 60.104 64.552 66.68 68.904 73.352 77.8 79.928 82.592 87.04 88.864 90.688 95.136 99.584 101.712 103.536 107.984 110.112 115.888 118.552 120.376 122.6 124.424 128.872 133.32\\\">Arbiter will explain the ruling in writing.</text></g><clipPath id=\\\"clip5-22\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 704.777 L 128 704.777 L 128 703.777 L 35.1 703.777 L 35.1 704.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 703.777 L 36.1 703.777 L 36.1 680.777 L 35.1 680.777 L 35.1 703.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128 704.777 L 206 704.777 L 206 703.777 L 128 703.777 L 128 704.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127 703.777 L 128 703.777 L 128 680.777 L 127 680.777 L 127 703.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 704.777 L 573.3 704.777 L 573.3 703.777 L 206 703.777 L 206 704.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.3 703.777 L 573.3 703.777 L 573.3 680.777 L 572.3 680.777 L 572.3 703.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 703.777 L 206 703.777 L 206 680.777 L 205 680.777 L 205 703.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 680.777 L 128 680.777 L 128 679.777 L 35.1 679.777 L 35.1 680.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 679.777 L 36.1 679.777 L 36.1 657.1769 L 35.1 657.1769 L 35.1 679.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128 680.777 L 206 680.777 L 206 679.777 L 128 679.777 L 128 680.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127 679.777 L 128 679.777 L 128 657.1769 L 127 657.1769 L 127 679.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 680.777 L 573.3 680.777 L 573.3 679.777 L 206 679.777 L 206 680.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.3 679.777 L 573.3 679.777 L 573.3 657.1769 L 572.3 657.1769 L 572.3 679.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 679.777 L 206 679.777 L 206 657.1769 L 205 657.1769 L 205 679.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 657.1769 L 128 657.1769 L 128 656.1769 L 35.1 656.1769 L 35.1 657.1769 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 656.1769 L 36.1 656.1769 L 36.1 633.577 L 35.1 633.577 L 35.1 656.1769 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128 657.1769 L 206 657.1769 L 206 656.1769 L 128 656.1769 L 128 657.1769 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127 656.1769 L 128 656.1769 L 128 633.577 L 127 633.577 L 127 656.1769 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 657.1769 L 573.3 657.1769 L 573.3 656.1769 L 206 656.1769 L 206 657.1769 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.3 656.1769 L 573.3 656.1769 L 573.3 633.577 L 572.3 633.577 L 572.3 656.1769 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 656.1769 L 206 656.1769 L 206 633.577 L 205 633.577 L 205 656.1769 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 633.577 L 128 633.577 L 128 632.577 L 35.1 632.577 L 35.1 633.577 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 632.577 L 36.1 632.577 L 36.1 602.4129 L 35.1 602.4129 L 35.1 632.577 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128 633.577 L 206 633.577 L 206 632.577 L 128 632.577 L 128 633.577 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127 632.577 L 128 632.577 L 128 602.4129 L 127 602.4129 L 127 632.577 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 633.577 L 573.3 633.577 L 573.3 632.577 L 206 632.577 L 206 633.577 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.3 632.577 L 573.3 632.577 L 573.3 602.4129 L 572.3 602.4129 L 572.3 632.577 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 632.577 L 206 632.577 L 206 602.4129 L 205 602.4129 L 205 632.577 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 602.4129 L 128 602.4129 L 128 601.4129 L 35.1 601.4129 L 35.1 602.4129 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 601.4129 L 36.1 601.4129 L 36.1 535.0301 L 35.1 535.0301 L 35.1 601.4129 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128 602.4129 L 206 602.4129 L 206 601.4129 L 128 601.4129 L 128 602.4129 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127 601.4129 L 128 601.4129 L 128 535.0301 L 127 535.0301 L 127 601.4129 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 602.4129 L 573.3 602.4129 L 573.3 601.4129 L 206 601.4129 L 206 602.4129 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.3 601.4129 L 573.3 601.4129 L 573.3 535.0301 L 572.3 535.0301 L 572.3 601.4129 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 601.4129 L 206 601.4129 L 206 535.0301 L 205 535.0301 L 205 601.4129 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 535.0301 L 128 535.0301 L 128 534.0301 L 35.1 534.0301 L 35.1 535.0301 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 511.0301 L 128 511.0301 L 128 510.0301 L 35.1 510.0301 L 35.1 511.0301 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 534.0301 L 36.1 534.0301 L 36.1 511.0301 L 35.1 511.0301 L 35.1 534.0301 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128 535.0301 L 206 535.0301 L 206 534.0301 L 128 534.0301 L 128 535.0301 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128 511.0301 L 206 511.0301 L 206 510.0301 L 128 510.0301 L 128 511.0301 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127 534.0301 L 128 534.0301 L 128 511.0301 L 127 511.0301 L 127 534.0301 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 535.0301 L 573.3 535.0301 L 573.3 534.0301 L 206 534.0301 L 206 535.0301 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 511.0301 L 573.3 511.0301 L 573.3 510.0301 L 206 510.0301 L 206 511.0301 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.3 534.0301 L 573.3 534.0301 L 573.3 511.0301 L 572.3 511.0301 L 572.3 534.0301 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 534.0301 L 206 534.0301 L 206 511.0301 L 205 511.0301 L 205 534.0301 z \\\"/><g clip-path=\\\"url(#clip5-22)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 273.1062 500.3113)\\\" x=\\\"0 7.78 10.56 16.12 21.68 25.01 27.67 35.45 41.01 43.79 46.07 51.63 57.19\\\">Other Options</text></g><clipPath id=\\\"clip5-23\\\"><path d=\\\"M 35 438 L 128 438 L 128 490 L 35 490 L 35 438 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-23)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.6 489.107 L 127.5 489.107 L 127.5 438.107 L 35.6 438.107 L 35.6 489.107 z \\\"/><path clip-path=\\\"url(#clip5-23)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.7 485.607 L 123.4 485.607 L 123.4 458.443 L 39.7 458.443 L 39.7 485.607 z \\\"/><path clip-path=\\\"url(#clip5-23)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 48.2942 485.607 L 115.2942 485.607 L 115.2942 475.607 L 48.2942 475.607 L 48.2942 485.607 z \\\"/><g clip-path=\\\"url(#clip5-23)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 48.2942 478.232)\\\" x=\\\"0 2.224 4.448 6.576 10.576 15.024 19.472 21.6 26.048 30.496 34.944 36.472 38.696 40.824 46.6 51.048 55.496 57.72 59.848 62.072\\\">If you don&apos;t want to</text></g><path clip-path=\\\"url(#clip5-23)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 43.8078 476.5524 L 119.8078 476.5524 L 119.8078 466.5524 L 43.8078 466.5524 L 43.8078 476.5524 z \\\"/><g clip-path=\\\"url(#clip5-23)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 43.8078 469.1774)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 29.392 31.616 33.744 37.744 42.192 46.64 48.768 52.768 57.216 61.664 63.792 67.792 70.016 71.84 73.664\\\">arbitrate, can you still</text></g><path clip-path=\\\"url(#clip5-23)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 49.8254 467.4977 L 113.8254 467.4977 L 113.8254 457.4977 L 49.8254 457.4977 L 49.8254 467.4977 z \\\"/><g clip-path=\\\"url(#clip5-23)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 49.8254 460.1227)\\\" x=\\\"0 4.448 8.896 11.12 13.248 17.696 19.824 22.048 24.712 29.16 33.608 37.608 42.056 46.056 48.28 50.104 54.552 59\\\">get a transaction?</text></g><clipPath id=\\\"clip5-24\\\"><path d=\\\"M 127 438 L 206 438 L 206 490 L 127 490 L 127 438 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-24)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.1817 478.232)\\\" x=\\\"0 5.336 9.784 13.784 16.008 18.136 23.472 27.92 32.368 34.496 38.496 42.944 47.392 49.52 53.968 58.416\\\">Yes. You can get</text></g><g clip-path=\\\"url(#clip5-24)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 137.2266 469.1774)\\\" x=\\\"0 4.448 8.896 11.56 13.688 17.688 22.136 24.8 28.8 30.624 34.624 39.072 43.072 45.2 49.648 54.096\\\">our* D E M O *nd</text></g><g clip-path=\\\"url(#clip5-24)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 143.668 460.1227)\\\" x=\\\"0 4.448 8.896 12.896 14.72 19.168 23.616 25.744 30.192 34.64 36.864 38.992 41.216\\\">decide not to</text></g><g clip-path=\\\"url(#clip5-24)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 150.6914 451.068)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 29.392\\\">arbitrate.</text></g><clipPath id=\\\"clip5-25\\\"><path d=\\\"M 205 438 L 573 438 L 573 490 L 205 490 L 205 438 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-25)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 478.232)\\\" x=\\\"0 5.776 10.224 14.672 18.672 20.496 24.944 29.392 32.056 34.184 36.408 40.856 45.304 49.304 53.752 55.88 59.88 64.328 68.776 70.6 74.6 79.048 83.048\\\">Consider these choices:</text></g><g clip-path=\\\"url(#clip5-25)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 469.1774)\\\" x=\\\"0 4.448 6.672 8.8 11.024 15.472 17.696 22.144 24.808 31.472 35.92 37.744 39.872 45.648 47.472 51.472 55.92 60.368 62.592 67.04 69.168 74.944 79.392 83.392 87.84 89.664 94.112 96.336 98.16 102.608 107.056 109.28 111.408 117.184 121.632 126.08 128.304 132.752 136.752 138.976 141.104 145.552 149.552 151.776 153.904 158.352 162.8 167.248 169.376 173.824 176.048 178.272 182.72 189.384 193.832 196.056 198.184 200.408 204.856 206.984 210.984 215.432 217.656 219.88 221.704 226.152 228.28 232.728 237.176 241.176 243.304 249.08 250.904 254.904 259.352 263.8 266.024 270.472 274.472\\\">1. Informal Dispute Resolution. Contact us, and attempt to settle any Disputes.</text></g><g clip-path=\\\"url(#clip5-25)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 460.1227)\\\" x=\\\"0 4.448 6.672 8.8 14.136 20.8 25.248 27.072 28.896 31.56 35.56 37.384 41.832 43.656 50.32 54.32 56.448 62.224 66.672 71.12 73.784 76.008 78.232 80.36 85.696 90.144 94.592 98.592 100.72 102.944 107.392 109.52 113.52 117.968 119.792 123.792 128.24 130.368 136.144 137.968 141.968 146.416 150.864 153.088 157.536 161.536 163.664 165.488 169.936 172.064 176.064 182.728 187.176 189 190.824 193.488 197.488 199.312 203.76 205.584 212.248 216.248 218.376 222.376 226.824 231.272 233.936 236.16 238.384 240.512 246.288 248.112 250.336 254.784 256.608 261.056 263.184 267.184 269.408 273.856 276.08 280.528 282.656 284.48 288.928 294.704 296.832 298.656 300.48 307.144 308.968 311.192 315.192\\\">2. Small-claims Court. Seek to solve Disputes in small-claims court, within state law limits.</text></g><g clip-path=\\\"url(#clip5-25)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 451.068)\\\" x=\\\"0 4.448 6.672 8.8 15.024 19.472 21.696 23.824 28.272 30.4 34.848 39.296 43.744 47.744 52.192 54.32 61.872 63.696 65.92 70.368 74.816 79.264 81.488 83.616 85.84 90.288 94.736 96.864 102.64 104.464 108.912 113.36 117.36 121.808 124.032 126.16 133.712 136.376 138.2 140.424 144.872 147 149.224 153.672 155.8 160.248 164.248 166.376 170.824 175.272 179.72 181.848 186.296 190.296 194.296 196.424 198.648 203.096 205.76 207.888 212.336 216.784 218.912 224.248 228.696 231.36 235.808 240.256 246.92 251.368 255.816 258.04 260.168 265.944 267.768 269.992 274.44 278.888 283.336 285.56 287.688 289.912 294.36 298.808 300.936 306.712 308.536 312.984 317.432 321.432 325.88\\\">3. Get a Lease Without the Clause. Write to us and ask for an Agreement without the Clause.</text></g><g clip-path=\\\"url(#clip5-25)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 442.0133)\\\" x=\\\"0 4.448 6.672 8.8 15.024 19.472 21.696 24.36 30.584 35.032 37.256 39.384 43.832 46.056 48.184 53.52 56.184 60.632 62.456 64.68 67.344 71.792 74.016 75.84 80.288 84.736 86.96 89.088 94.424 96.248 100.696 105.144 107.272 111.72 116.168 120.616 122.744 124.968 129.416 133.864 138.312 140.44 142.664 144.488 151.152 155.6 157.424 161.424 163.552 168 172.448 174.672 177.336 181.784 186.232 188.456\\\">4. Opt-Out of Arbitration. Sign and then timely opt-out.</text></g><clipPath id=\\\"clip5-26\\\"><path d=\\\"M 35 405 L 128 405 L 128 439 L 35 439 L 35 405 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-26)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.6 438.107 L 127.5 438.107 L 127.5 405.107 L 35.6 405.107 L 35.6 438.107 z \\\"/><path clip-path=\\\"url(#clip5-26)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.7 434.607 L 123.4 434.607 L 123.4 416.4977 L 39.7 416.4977 L 39.7 434.607 z \\\"/><path clip-path=\\\"url(#clip5-26)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 42.1633 434.607 L 121.1633 434.607 L 121.1633 424.607 L 42.1633 424.607 L 42.1633 434.607 z \\\"/><g clip-path=\\\"url(#clip5-26)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 42.1633 427.232)\\\" x=\\\"0 5.776 10.224 14.672 16.8 20.8 25.248 29.696 31.824 36.272 40.72 42.944 45.608 50.056 54.504 56.728 58.856 63.304 65.528 67.656 69.88 74.328\\\">Can you opt-out of the</text></g><path clip-path=\\\"url(#clip5-26)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 66.8508 425.5524 L 96.8508 425.5524 L 96.8508 415.5524 L 66.8508 415.5524 L 66.8508 425.5524 z \\\"/><g clip-path=\\\"url(#clip5-26)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 66.8508 418.1774)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496 24.944\\\">Clause?</text></g><clipPath id=\\\"clip5-27\\\"><path d=\\\"M 127 405 L 206 405 L 206 439 L 127 439 L 127 405 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-27)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 140.7617 427.232)\\\" x=\\\"0 5.336 9.784 13.784 16.008 18.136 25.688 27.512 29.736 34.184 36.008 40.456 42.584 47.032\\\">Yes. Within 60</text></g><g clip-path=\\\"url(#clip5-27)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 156.9395 418.1774)\\\" x=\\\"0 4.448 8.896 12.896 16.896\\\">days.</text></g><clipPath id=\\\"clip5-28\\\"><path d=\\\"M 205 405 L 573 405 L 573 439 L 205 439 L 205 405 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 427.232)\\\" x=\\\"0 7.552 10.216 12.04 14.264\\\">Write</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 228.3109 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 232.8069 427.232)\\\" x=\\\"0 4.448\\\">us</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 241.2562 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 245.7522 427.232)\\\" x=\\\"0 5.776 7.6 9.824 14.272 16.096\\\">within</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 266.299 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 270.795 427.232)\\\" x=\\\"0 4.448\\\">60</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 279.6935 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 284.1895 427.232)\\\" x=\\\"0 4 8.448 10.272 14.72 19.168 23.616 28.064\\\">calendar</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 314.9238 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 319.4198 427.232)\\\" x=\\\"0 4.448 8.896 12.896\\\">days</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 336.3183 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 340.8143 427.232)\\\" x=\\\"0 4.448\\\">of</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 347.4861 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 351.9821 427.232)\\\" x=\\\"0 4 5.824 10.272 14.72 16.544 20.992\\\">signing</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 377.4274 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 381.9234 427.232)\\\" x=\\\"0 4 8.448 12.896\\\">your</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 397.4859 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 401.9819 427.232)\\\" x=\\\"0 4.448 8.896 11.56 16.008 20.456 27.12 31.568 36.016\\\">agreement</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 440.228 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 444.724 427.232)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 451.3959 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 455.8919 427.232)\\\" x=\\\"0 4.448 8.896 11.12 13.784 18.232 22.68\\\">opt-out</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 480.7981 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 485.2941 427.232)\\\" x=\\\"0 4.448\\\">of</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 491.966 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 496.462 427.232)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 507.5831 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 512.0791 427.232)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496\\\">Clause</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 537.0283 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 541.5243 427.232)\\\" x=\\\"0 2.224 6.672\\\">for</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 550.8602 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 555.3562 427.232)\\\" x=\\\"0 2.224 6.672 11.12\\\">that</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 418.1774)\\\" x=\\\"0 4.448 8.896 11.56 16.008 20.456 27.12 31.568 36.016 38.24\\\">agreement.</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 250.0688 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 252.4616 418.1774)\\\" x=\\\"0 4.448 6.272 10.272\\\">List</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 264.9577 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 267.3505 418.1774)\\\" x=\\\"0 4 8.448 12.896\\\">your</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 282.913 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 285.3058 418.1774)\\\" x=\\\"0 4.448 8.896 15.56 20.008\\\">name,</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 307.5402 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 309.933 418.1774)\\\" x=\\\"0 4.448 8.896 13.344 16.008 20.456 24.456 28.456\\\">address,</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 340.6166 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 343.0095 418.1774)\\\" x=\\\"0 4.448 8.448 12.448 16.896 21.344 25.792\\\">account</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.029 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 373.4218 418.1774)\\\" x=\\\"0 4.448 8.896 15.56 20.008 24.456\\\">number</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 400.5468 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 402.9397 418.1774)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 416.2873 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 418.6801 418.1774)\\\" x=\\\"0 4.448 8.896 11.12 15.568\\\">date.</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 436.4731 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 438.8659 418.1774)\\\" x=\\\"0 4.448 6.272 10.272\\\">List</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 451.362 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 453.7549 418.1774)\\\" x=\\\"0 2.224 6.672 11.12\\\">that</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.0986 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 469.4914 418.1774)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 482.3899 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 484.7827 418.1774)\\\" x=\\\"0 2.84 7.288 11.736\\\">&quot;opt</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 498.7437 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 501.1365 418.1774)\\\" x=\\\"0 4.448 8.896 11.12 13.344\\\">out.&quot;</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 517.3201 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 519.7129 418.1774)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 524.1582 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 526.551 418.1774)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 539.4495 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 541.8423 418.1774)\\\" x=\\\"0 4.448 8.896\\\">opt</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.9634 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 555.3562 418.1774)\\\" x=\\\"0 4.448 8.896 11.12\\\">out,</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 409.1227)\\\" x=\\\"0 1.824 4.048 6.176 11.952 13.776 15.6 17.424 19.552 24 28.448 30.272 34.272 36.4 40.848 45.296 49.744 51.568 55.568 57.696 59.92 64.368 66.496 68.72 73.168 77.616 79.84 81.968 86.416 90.864 93.528 97.976 102.424 109.088 113.536 117.984 120.208\\\">it will only apply to that agreement.</text></g><clipPath id=\\\"clip5-29\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 489.607 L 128 489.607 L 128 488.607 L 35.1 488.607 L 35.1 489.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 488.607 L 36.1 488.607 L 36.1 438.607 L 35.1 438.607 L 35.1 488.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128 489.607 L 206 489.607 L 206 488.607 L 128 488.607 L 128 489.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127 488.607 L 128 488.607 L 128 438.607 L 127 438.607 L 127 488.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 489.607 L 573.3 489.607 L 573.3 488.607 L 206 488.607 L 206 489.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.3 488.607 L 573.3 488.607 L 573.3 438.607 L 572.3 438.607 L 572.3 488.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 488.607 L 206 488.607 L 206 438.607 L 205 438.607 L 205 488.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 438.607 L 128 438.607 L 128 437.607 L 35.1 437.607 L 35.1 438.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 405.607 L 128 405.607 L 128 404.607 L 35.1 404.607 L 35.1 405.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 437.607 L 36.1 437.607 L 36.1 405.607 L 35.1 405.607 L 35.1 437.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128 438.607 L 206 438.607 L 206 437.607 L 128 437.607 L 128 438.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128 405.607 L 206 405.607 L 206 404.607 L 128 404.607 L 128 405.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127 437.607 L 128 437.607 L 128 405.607 L 127 405.607 L 127 437.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 438.607 L 573.3 438.607 L 573.3 437.607 L 206 437.607 L 206 438.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 405.607 L 573.3 405.607 L 573.3 404.607 L 206 404.607 L 206 405.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.3 437.607 L 573.3 437.607 L 573.3 405.607 L 572.3 405.607 L 572.3 437.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 437.607 L 206 437.607 L 206 405.607 L 205 405.607 L 205 437.607 z \\\"/><g clip-path=\\\"url(#clip5-29)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 162.1492 377.7699)\\\" x=\\\"0 6.67 10 12.28 17.84 20.62 23.28 28.84 34.4 39.96 42.62 45.95 51.51 54.29 59.85 62.13 67.69 70.35 75.91 78.57 84.13 89.69 93.02 98.58 101.24 106.24 111.8 117.36 122.36 125.02 130.58 133.91 136.57 142.13 144.41 149.97 154.97 157.75 161.08 166.64 172.2 174.48 179.48 182.14 187.14 192.7 198.26 203.26 205.92 211.48 214.26 216.92 219.7 225.26 227.54 232.54 235.2 241.87 247.43 250.76 256.32 261.88 270.21 275.77 281.33\\\">Print and retain a hard copy or electronic copy of this Agreement</text></g><g clip-path=\\\"url(#clip5-29)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 36.5264)\\\" x=\\\"0 6.498 11.997 14.391 16.785 21.789 26.793 29.295 34.299 39.303 44.307 504 506.3906 508.7812 511.1719 513.5625 515.9531 518.3438 520.7344 523.125 525.5156\\\">UT  07/2019          </text></g><g clip-path=\\\"url(#clip5-29)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 26.3398)\\\" x=\\\"0 6.003 11.007 16.011 21.015\\\">Page </text></g><g clip-path=\\\"url(#clip5-29)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 55.8097 26.3398)\\\" x=\\\"0\\\">6</text></g><g clip-path=\\\"url(#clip5-29)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.815 26.3398)\\\" x=\\\"0 2.394 7.398 9.9\\\"> of </text></g><g clip-path=\\\"url(#clip5-29)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 73.1021 26.3398)\\\" x=\\\"0\\\">7</text></g><g clip-path=\\\"url(#clip5-29)\\\"><text stroke=\\\"none\\\" fill=\\\"#d9d9d9\\\" style=\\\"font-family:f5-0; font-size:54pt; white-space:pre\\\" transform=\\\"matrix(0.707 0.707 0.707 -0.707 135.6027 198.5094)\\\" x=\\\"0 56.016 96.048 136.08 176.112 216.144 236.16 284.184 324.216 344.232 364.248 416.232 456.264 480.24\\\">Qoppa Software</text></g><g clip-path=\\\"url(#clip5-29)\\\"><text stroke=\\\"none\\\" fill=\\\"#002ba6\\\" style=\\\"font-family:f5-0; font-size:9pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.932 772)\\\" x=\\\"0 9.336 16.008 22.68 29.352 36.024 39.36 47.364 54.036 57.372 60.708 69.372 76.044 80.04 86.712 90.048 94.044 97.38 104.712 111.384 115.38 118.716 126.72 132.72 139.392 142.056 148.728 155.4 158.736 161.4 168.072 174.744 178.08 187.416 194.088 196.752 202.752 206.088 210.084 213.42 220.092 223.428 226.764 233.436 239.436 242.772 246.108 249.444 258.108 266.772 275.436 278.772 285.444 292.116 298.788 305.46 312.132 315.468 321.468 328.14\\\">Qoppa Software - For Evaluation Only - https://www.qoppa.com</text></g></g></svg></svg></g></svg><br>\\n<?xml version='1.0' encoding='UTF-8'?><svg id=\\\"qoppa_document\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" version=\\\"1.1\\\" xmlns=\\\"http://www.w3.org/2000/svg\\\" xmlns:xlink=\\\"http://www.w3.org/1999/xlink\\\"><!-- jPDFWeb v2019R1.03 - Demo Version --><style>title p { display: block; }</style><g id=\\\"qoppa_viewxform\\\" transform=\\\"matrix(1 0 0 1 0 0)\\\"><style type=\\\"text/css\\\">@font-face {font-family:f6-0;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f6-1;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f6-2;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}</style><svg id=\\\"qoppa_page_p6\\\" class=\\\"qoppa_page\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\"><rect class=\\\"qoppa_pageborder\\\" x=\\\"0.5pt\\\" y=\\\"0.5pt\\\" width=\\\"611pt\\\" height=\\\"791pt\\\" fill=\\\"none\\\" /><svg class=\\\"qoppa_pagecontents\\\" x=\\\"0pt\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" viewBox=\\\"0 0 612 792\\\" ><g class=\\\"qoppa_contentstream\\\" transform=\\\"matrix(1 0 0 -1 0 792)\\\" fill=\\\"black\\\" stroke=\\\"black\\\" stroke-width=\\\"1\\\" stroke-linecap=\\\"butt\\\" stroke-linejoin=\\\"miter\\\" stroke-miterlimit=\\\"10\\\"><clipPath id=\\\"clip6-1\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 284.4843 735.5809)\\\" x=\\\"0 6.67 11.67 17.23 19.51 25.07 27.35\\\">Exhibit</text></g><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(0.99 0 0 -1 314.4843 735.5809)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 317.4843 735.5809)\\\" x=\\\"0\\\">A</text></g><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 94.4 699.1621)\\\" x=\\\"0 3.2783 9.3398 14.8398 20.9014 23.6816 29.1816\\\">Invoice</text></g><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 129.6432 699.1621)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 132.7994 699.1621)\\\" x=\\\"0\\\">#</text></g><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 138.8609 699.1621)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 142.0172 699.1621)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 142.0172 697.4792 L 142.0172 697.4792 L 145.0172 697.4792 L 145.4339 697.4792 L 145.4339 696.6458 L 145.0172 696.6458 L 142.0172 696.6458 L 141.6005 696.6458 L 141.6005 697.4792 z \\\"/><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 145.1734 699.1621)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 145.1734 697.4792 L 145.1734 697.4792 L 148.1734 697.4792 L 148.5901 697.4792 L 148.5901 696.6458 L 148.1734 696.6458 L 145.1734 696.6458 L 144.7568 696.6458 L 144.7568 697.4792 z \\\"/><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 148.3297 699.1621)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 148.3297 697.4792 L 148.3297 697.4792 L 151.3297 697.4792 L 151.7464 697.4792 L 151.7464 696.6458 L 151.3297 696.6458 L 148.3297 696.6458 L 147.913 696.6458 L 147.913 697.4792 z \\\"/><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 151.4859 699.1621)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 151.4859 697.4792 L 151.4859 697.4792 L 154.4859 697.4792 L 154.9026 697.4792 L 154.9026 696.6458 L 154.4859 696.6458 L 151.4859 696.6458 L 151.0693 696.6458 L 151.0693 697.4792 z \\\"/><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 154.6422 699.1621)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 154.6422 697.4792 L 154.6422 697.4792 L 157.6422 697.4792 L 158.0589 697.4792 L 158.0589 696.6458 L 157.6422 696.6458 L 154.6422 696.6458 L 154.2255 696.6458 L 154.2255 697.4792 z \\\"/><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 157.7984 699.1621)\\\" x=\\\"0\\\">0</text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 157.7984 697.4792 L 157.7984 697.4792 L 163.7984 697.4792 L 164.2151 697.4792 L 164.2151 696.6458 L 163.7984 696.6458 L 157.7984 696.6458 L 157.3818 696.6458 L 157.3818 697.4792 z \\\"/><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 163.86 699.1621)\\\" x=\\\"0\\\">4</text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 163.86 697.4792 L 163.86 697.4792 L 169.86 697.4792 L 170.2766 697.4792 L 170.2766 696.6458 L 169.86 696.6458 L 163.86 696.6458 L 163.4433 696.6458 L 163.4433 697.4792 z \\\"/><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 169.9215 699.1621)\\\" x=\\\"0\\\">1</text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 169.9215 697.4792 L 169.9215 697.4792 L 175.9215 697.4792 L 176.3382 697.4792 L 176.3382 696.6458 L 175.9215 696.6458 L 169.9215 696.6458 L 169.5048 696.6458 L 169.5048 697.4792 z \\\"/><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 175.983 699.1621)\\\" x=\\\"0\\\">2</text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 175.983 697.4792 L 175.983 697.4792 L 181.983 697.4792 L 182.3997 697.4792 L 182.3997 696.6458 L 181.983 696.6458 L 175.983 696.6458 L 175.5663 696.6458 L 175.5663 697.4792 z \\\"/><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 182.0445 699.1621)\\\" x=\\\"0\\\">9</text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 182.0445 697.4792 L 182.0445 697.4792 L 188.0445 697.4792 L 188.4612 697.4792 L 188.4612 696.6458 L 188.0445 696.6458 L 182.0445 696.6458 L 181.6279 696.6458 L 181.6279 697.4792 z \\\"/><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 188.1061 699.1621)\\\" x=\\\"0\\\">9</text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 188.1061 697.4792 L 188.1061 697.4792 L 194.1061 697.4792 L 194.5227 697.4792 L 194.5227 696.6458 L 194.1061 696.6458 L 188.1061 696.6458 L 187.6894 696.6458 L 187.6894 697.4792 z \\\"/><clipPath id=\\\"clip6-2\\\"><path d=\\\"M 71 551 L 537 551 L 537 572 L 71 572 L 71 551 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 286.9417 561.1477)\\\" x=\\\"0 6.003 9 14.004 19.008 24.012 28.512 31.014\\\">Products</text></g><clipPath id=\\\"clip6-3\\\"><path d=\\\"M 71 531 L 165 531 L 165 552 L 71 552 L 71 531 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 106.4173 541.1477)\\\" x=\\\"0 7.497 12.501 17.505 22.509\\\">Model</text></g><clipPath id=\\\"clip6-4\\\"><path d=\\\"M 164 531 L 258 531 L 258 552 L 164 552 L 164 531 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-4)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 189.1385 541.1477)\\\" x=\\\"0 6.498 11.502 16.002 20.502 23.499 25.551 30.555 33.057 35.109 40.113\\\">Description</text></g><clipPath id=\\\"clip6-5\\\"><path d=\\\"M 257 531 L 351 531 L 351 552 L 257 552 L 257 531 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-5)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 297.6995 541.1477)\\\" x=\\\"0 7.002 9.504\\\">Qty</text></g><clipPath id=\\\"clip6-6\\\"><path d=\\\"M 350 531 L 444 531 L 444 552 L 350 552 L 350 531 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-6)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 387.4212 541.1477)\\\" x=\\\"0 6.003 9 11.052 15.552\\\">Price</text></g><clipPath id=\\\"clip6-7\\\"><path d=\\\"M 443 531 L 537 531 L 537 552 L 443 552 L 443 531 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-7)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 460.2107 541.1477)\\\" x=\\\"0 6.003 10.503 13.005 18.009 23.013 28.017 33.021 38.025 40.419 46.422 49.419 51.471 55.971\\\">Extended Price</text></g><clipPath id=\\\"clip6-8\\\"><path d=\\\"M 164 511 L 258 511 L 258 532 L 164 532 L 164 511 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 178.6472 522.0696)\\\" x=\\\"0 5.336 9.784 12.448 16.448 18.272 22.272 26.72 30.72 32.848 37.296 41.744 46.192 48.32 53.208 57.656 62.104\\\">Services and Fees</text></g><clipPath id=\\\"clip6-9\\\"><path d=\\\"M 257 511 L 351 511 L 351 532 L 257 532 L 257 511 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 302.4754 522.0696)\\\" x=\\\"0\\\">1</text></g><clipPath id=\\\"clip6-10\\\"><path d=\\\"M 350 511 L 444 511 L 444 532 L 350 532 L 350 511 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 378.8426 522.0696)\\\" x=\\\"0 4.448 6.576 11.024 13.248 17.696 22.144 26.592 28.816 33.264\\\">$ 3,784.97</text></g><clipPath id=\\\"clip6-11\\\"><path d=\\\"M 443 511 L 537 511 L 537 532 L 443 532 L 443 511 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 471.8426 522.0696)\\\" x=\\\"0 4.448 6.576 11.024 13.248 17.696 22.144 26.592 28.816 33.264\\\">$ 3,784.97</text></g><clipPath id=\\\"clip6-12\\\"><path d=\\\"M 164 491 L 258 491 L 258 512 L 164 512 L 164 491 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 196.364 502.0696)\\\" x=\\\"0 6.664 11.112 13.336 15.56 18.224 22.672 26.672\\\">Mattress</text></g><clipPath id=\\\"clip6-13\\\"><path d=\\\"M 257 491 L 351 491 L 351 512 L 257 512 L 257 491 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-13)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 302.4754 502.0696)\\\" x=\\\"0\\\">1</text></g><clipPath id=\\\"clip6-14\\\"><path d=\\\"M 350 491 L 444 491 L 444 512 L 350 512 L 350 491 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-14)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 386.6277 502.0696)\\\" x=\\\"0 4.448 6.576 11.024 13.248 17.696\\\">$ 1.00</text></g><clipPath id=\\\"clip6-15\\\"><path d=\\\"M 443 491 L 537 491 L 537 512 L 443 512 L 443 491 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 479.6277 502.0696)\\\" x=\\\"0 4.448 6.576 11.024 13.248 17.696\\\">$ 1.00</text></g><clipPath id=\\\"clip6-16\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 71.2 572.4446 L 537.2 572.4446 L 537.2 571.4446 L 71.2 571.4446 L 71.2 572.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 536.2 571.4446 L 537.2 571.4446 L 537.2 552.4446 L 536.2 552.4446 L 536.2 571.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 71.2 571.4446 L 72.2 571.4446 L 72.2 552.4446 L 71.2 552.4446 L 71.2 571.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 71.2 552.4446 L 165.2 552.4446 L 165.2 551.4446 L 71.2 551.4446 L 71.2 552.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 71.2 551.4446 L 72.2 551.4446 L 72.2 532.4446 L 71.2 532.4446 L 71.2 551.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 165.2 552.4446 L 258.2 552.4446 L 258.2 551.4446 L 165.2 551.4446 L 165.2 552.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 164.2 551.4446 L 165.2 551.4446 L 165.2 532.4446 L 164.2 532.4446 L 164.2 551.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 258.2 552.4446 L 351.2 552.4446 L 351.2 551.4446 L 258.2 551.4446 L 258.2 552.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 257.2 551.4446 L 258.2 551.4446 L 258.2 532.4446 L 257.2 532.4446 L 257.2 551.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 351.2 552.4446 L 444.2 552.4446 L 444.2 551.4446 L 351.2 551.4446 L 351.2 552.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 350.2 551.4446 L 351.2 551.4446 L 351.2 532.4446 L 350.2 532.4446 L 350.2 551.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 444.2 552.4446 L 537.2 552.4446 L 537.2 551.4446 L 444.2 551.4446 L 444.2 552.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 536.2 551.4446 L 537.2 551.4446 L 537.2 532.4446 L 536.2 532.4446 L 536.2 551.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 443.2 551.4446 L 444.2 551.4446 L 444.2 532.4446 L 443.2 532.4446 L 443.2 551.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 71.2 532.4446 L 165.2 532.4446 L 165.2 531.4446 L 71.2 531.4446 L 71.2 532.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 71.2 531.4446 L 72.2 531.4446 L 72.2 512.4446 L 71.2 512.4446 L 71.2 531.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 165.2 532.4446 L 258.2 532.4446 L 258.2 531.4446 L 165.2 531.4446 L 165.2 532.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 164.2 531.4446 L 165.2 531.4446 L 165.2 512.4446 L 164.2 512.4446 L 164.2 531.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 258.2 532.4446 L 351.2 532.4446 L 351.2 531.4446 L 258.2 531.4446 L 258.2 532.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 257.2 531.4446 L 258.2 531.4446 L 258.2 512.4446 L 257.2 512.4446 L 257.2 531.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 351.2 532.4446 L 444.2 532.4446 L 444.2 531.4446 L 351.2 531.4446 L 351.2 532.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 350.2 531.4446 L 351.2 531.4446 L 351.2 512.4446 L 350.2 512.4446 L 350.2 531.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 444.2 532.4446 L 537.2 532.4446 L 537.2 531.4446 L 444.2 531.4446 L 444.2 532.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 536.2 531.4446 L 537.2 531.4446 L 537.2 512.4446 L 536.2 512.4446 L 536.2 531.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 443.2 531.4446 L 444.2 531.4446 L 444.2 512.4446 L 443.2 512.4446 L 443.2 531.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 71.2 512.4446 L 165.2 512.4446 L 165.2 511.4446 L 71.2 511.4446 L 71.2 512.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 71.2 492.4446 L 165.2 492.4446 L 165.2 491.4446 L 71.2 491.4446 L 71.2 492.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 71.2 511.4446 L 72.2 511.4446 L 72.2 492.4446 L 71.2 492.4446 L 71.2 511.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 165.2 512.4446 L 258.2 512.4446 L 258.2 511.4446 L 165.2 511.4446 L 165.2 512.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 165.2 492.4446 L 258.2 492.4446 L 258.2 491.4446 L 165.2 491.4446 L 165.2 492.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 164.2 511.4446 L 165.2 511.4446 L 165.2 492.4446 L 164.2 492.4446 L 164.2 511.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 258.2 512.4446 L 351.2 512.4446 L 351.2 511.4446 L 258.2 511.4446 L 258.2 512.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 258.2 492.4446 L 351.2 492.4446 L 351.2 491.4446 L 258.2 491.4446 L 258.2 492.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 257.2 511.4446 L 258.2 511.4446 L 258.2 492.4446 L 257.2 492.4446 L 257.2 511.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 351.2 512.4446 L 444.2 512.4446 L 444.2 511.4446 L 351.2 511.4446 L 351.2 512.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 351.2 492.4446 L 444.2 492.4446 L 444.2 491.4446 L 351.2 491.4446 L 351.2 492.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 350.2 511.4446 L 351.2 511.4446 L 351.2 492.4446 L 350.2 492.4446 L 350.2 511.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 444.2 512.4446 L 537.2 512.4446 L 537.2 511.4446 L 444.2 511.4446 L 444.2 512.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 444.2 492.4446 L 537.2 492.4446 L 537.2 491.4446 L 444.2 491.4446 L 444.2 492.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 536.2 511.4446 L 537.2 511.4446 L 537.2 492.4446 L 536.2 492.4446 L 536.2 511.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 443.2 511.4446 L 444.2 511.4446 L 444.2 492.4446 L 443.2 492.4446 L 443.2 511.4446 z \\\"/><clipPath id=\\\"clip6-17\\\"><path d=\\\"M 264 464 L 404 464 L 404 478 L 264 478 L 264 464 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-17)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.9359 468.3239)\\\" x=\\\"0 5.336 9.784 14.232 16.36 21.248 25.696 27.92 32.368 34.192\\\">Sub Total:</text></g><clipPath id=\\\"clip6-18\\\"><path d=\\\"M 403 464 L 535 464 L 535 478 L 403 478 L 403 464 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.55 468.3239)\\\" x=\\\"0 4.448 6.576 11.024 13.248 17.696 22.144 26.592 28.816 33.264\\\">$ 3,785.97</text></g><clipPath id=\\\"clip6-19\\\"><path d=\\\"M 264 451 L 404 451 L 404 465 L 264 465 L 264 451 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-19)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 358.6078 454.8239)\\\" x=\\\"0 5.336 9.784 11.608 16.056 20.056 22.184 27.072 31.52 35.52\\\">Sales Tax:</text></g><clipPath id=\\\"clip6-20\\\"><path d=\\\"M 403 451 L 535 451 L 535 465 L 403 465 L 403 451 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-20)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.55 454.8239)\\\" x=\\\"0 4.448 6.576 11.024 15.472 17.696 22.144\\\">$ 86.03</text></g><clipPath id=\\\"clip6-21\\\"><path d=\\\"M 264 437 L 404 437 L 404 452 L 264 452 L 264 437 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.7758 441.3239)\\\" x=\\\"0 4.888 9.336 11.56 16.008 17.832 19.96 22.184 26.632 30.632 35.08 36.904 40.904 45.352\\\">Total Invoice:</text></g><clipPath id=\\\"clip6-22\\\"><path d=\\\"M 403 437 L 535 437 L 535 452 L 403 452 L 403 437 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-22)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.55 441.3239)\\\" x=\\\"0 4.448 6.576 11.024 13.248 17.696 22.144 26.592 28.816 33.264\\\">$ 3,872.00</text></g><clipPath id=\\\"clip6-23\\\"><path d=\\\"M 264 424 L 404 424 L 404 438 L 264 438 L 264 424 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-23)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 284.3578 427.8239)\\\" x=\\\"0 5.336 12 14.224 16.352 22.128 26.576 31.024 33.152 38.04 42.488 46.936 51.384 55.384 57.512 60.176 65.952 68.176 72.624 74.752 80.088 82.752 87.2 91.2 93.328 98.216 102.664 107.112 109.776\\\">Amt Due Today (w/o Proc Fee):</text></g><clipPath id=\\\"clip6-24\\\"><path d=\\\"M 403 424 L 535 424 L 535 438 L 403 438 L 403 424 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.55 427.8239)\\\" x=\\\"0 4.448 6.576 11.024 13.248 17.696 22.144 26.592 28.816 33.264\\\">$ 3,784.30</text></g><clipPath id=\\\"clip6-25\\\"><path d=\\\"M 264 410 L 404 410 L 404 425 L 264 425 L 264 410 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-25)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.4242 414.3239)\\\" x=\\\"0 5.336 9.784 14.232 16.056 18.184 23.96 28.408 32.408 34.632 36.76 42.536 46.984 50.984 55.432 57.56 62.896 67.344 69.472 74.36 78.808 83.256 87.704 91.704\\\">Addl Cust Cash Pd Today:</text></g><clipPath id=\\\"clip6-26\\\"><path d=\\\"M 403 410 L 535 410 L 535 425 L 403 425 L 403 410 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-26)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.55 414.3239)\\\" x=\\\"0 4.448 6.576 11.024 13.248 17.696\\\">$ 0.00</text></g><clipPath id=\\\"clip6-27\\\"><path d=\\\"M 264 397 L 404 397 L 404 411 L 264 411 L 264 397 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 333.8422 400.8239)\\\" x=\\\"0 5.336 9.784 14.232 18.68 20.808 26.584 31.032 35.032 39.48 41.608 47.384 51.384 55.832 60.28\\\">Snap Cash Used:</text></g><clipPath id=\\\"clip6-28\\\"><path d=\\\"M 403 397 L 535 397 L 535 411 L 403 411 L 403 397 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.55 400.8239)\\\" x=\\\"0 4.448 6.576 11.024 15.472 17.696 22.144\\\">$ 87.70</text></g><clipPath id=\\\"clip6-29\\\"><path d=\\\"M 264 383 L 404 383 L 404 398 L 264 398 L 264 383 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-29)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 274.8227 387.3239)\\\" x=\\\"0 5.336 8 12.448 16.448 18.576 23.464 27.912 32.36 34.488 40.264 44.712 46.536 48.36 52.808 56.808 59.032 63.48 67.928 70.056 72.72 77.168 81.168 83.296 89.96 94.408 97.072 101.072 105.52 109.968 114.416 116.64 119.304\\\">Proc Fee Collected (by Merchant):</text></g><clipPath id=\\\"clip6-30\\\"><path d=\\\"M 403 383 L 535 383 L 535 398 L 403 398 L 403 383 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.55 387.3239)\\\" x=\\\"0 4.448 6.576 11.024 13.248 17.696\\\">$ 0.00</text></g><clipPath id=\\\"clip6-31\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip6-31)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 403.55 464.9489 L 534.3 464.9489 L 534.3 464.4489 L 403.55 464.4489 L 403.55 464.9489 z \\\"/><path clip-path=\\\"url(#clip6-31)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 403.55 451.4489 L 534.3 451.4489 L 534.3 450.9489 L 403.55 450.9489 L 403.55 451.4489 z \\\"/><path clip-path=\\\"url(#clip6-31)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 403.55 437.9489 L 534.3 437.9489 L 534.3 437.4489 L 403.55 437.4489 L 403.55 437.9489 z \\\"/><path clip-path=\\\"url(#clip6-31)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 403.55 424.4489 L 534.3 424.4489 L 534.3 423.9489 L 403.55 423.9489 L 403.55 424.4489 z \\\"/><path clip-path=\\\"url(#clip6-31)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 403.55 410.9489 L 534.3 410.9489 L 534.3 410.4489 L 403.55 410.4489 L 403.55 410.9489 z \\\"/><path clip-path=\\\"url(#clip6-31)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 403.55 397.4489 L 534.3 397.4489 L 534.3 396.9489 L 403.55 396.9489 L 403.55 397.4489 z \\\"/><path clip-path=\\\"url(#clip6-31)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 403.55 383.9489 L 534.3 383.9489 L 534.3 383.4489 L 403.55 383.4489 L 403.55 383.9489 z \\\"/><g clip-path=\\\"url(#clip6-31)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 36.5264)\\\" x=\\\"0 6.498 11.997 14.391 16.785 21.789 26.793 29.295 34.299 39.303 44.307 504 506.3906 508.7812 511.1719 513.5625 515.9531 518.3438 520.7344 523.125 525.5156\\\">UT  07/2019          </text></g><g clip-path=\\\"url(#clip6-31)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 26.3398)\\\" x=\\\"0 6.003 11.007 16.011 21.015\\\">Page </text></g><g clip-path=\\\"url(#clip6-31)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 55.8097 26.3398)\\\" x=\\\"0\\\">7</text></g><g clip-path=\\\"url(#clip6-31)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.815 26.3398)\\\" x=\\\"0 2.394 7.398 9.9\\\"> of </text></g><g clip-path=\\\"url(#clip6-31)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 73.1021 26.3398)\\\" x=\\\"0\\\">7</text></g><g clip-path=\\\"url(#clip6-31)\\\"><text stroke=\\\"none\\\" fill=\\\"#d9d9d9\\\" style=\\\"font-family:f6-0; font-size:54pt; white-space:pre\\\" transform=\\\"matrix(0.707 0.707 0.707 -0.707 135.6027 198.5094)\\\" x=\\\"0 56.016 96.048 136.08 176.112 216.144 236.16 284.184 324.216 344.232 364.248 416.232 456.264 480.24\\\">Qoppa Software</text></g><g clip-path=\\\"url(#clip6-31)\\\"><text stroke=\\\"none\\\" fill=\\\"#002ba6\\\" style=\\\"font-family:f6-0; font-size:9pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.932 772)\\\" x=\\\"0 9.336 16.008 22.68 29.352 36.024 39.36 47.364 54.036 57.372 60.708 69.372 76.044 80.04 86.712 90.048 94.044 97.38 104.712 111.384 115.38 118.716 126.72 132.72 139.392 142.056 148.728 155.4 158.736 161.4 168.072 174.744 178.08 187.416 194.088 196.752 202.752 206.088 210.084 213.42 220.092 223.428 226.764 233.436 239.436 242.772 246.108 249.444 258.108 266.772 275.436 278.772 285.444 292.116 298.788 305.46 312.132 315.468 321.468 328.14\\\">Qoppa Software - For Evaluation Only - https://www.qoppa.com</text></g></g></svg></svg></g></svg><br>\\n</body> \\n </html>\\n\"\n        }\n    },\n    \"success\": true,\n    \"status\": 200\n}"}],"_postman_id":"2c15e7ee-178c-42d8-a262-1d8c0ef38b42"},{"name":"Sign agreement","event":[{"listen":"test","script":{"exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});\r","pm.test(\"Success message\", function () {\r","    pm.expect(pm.response.text()).to.include(\"success\");\r","});"],"type":"text/javascript","id":"6d870082-3c3d-42f6-8495-4ebddff1d95f"}}],"id":"cd6e9c23-37ad-4f2f-ab37-04ec3bf65cfb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"<p>(optional - ID generated by the client)</p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"agreementInformation\": {\r\n    \"signedTime\": \"2020-02-21T18:00:00Z\",\r\n    \"signedMethod\": \"acceptance\",\r\n    \"signedBy\": \"John Doe\",\r\n    \"device\": \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36\",\r\n    \"deviceIP\": \"10.1.1.10\"\r\n  }\r\n}"},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/signed?document=agreement","description":"<h1 id=\"sign-agreement\">Sign Agreement</h1>\n<p>This endpoint sets the signed date on the application, marks the agreement as signed, and changes the application status from PENDING_SIGNED_DOCS to PENDING_DEL (Pending Delivery) status and PENDING_SHIPPING sub-status.</p>\n<h1 id=\"request-object\">Request Object</h1>\n<h2 id=\"customerinformationhash\"><code>customerInformation:hash</code></h2>\n<blockquote>\n<h4 id=\"signedtimestring\"><code>signedTime:string</code></h4>\n<ul>\n<li>Required</li>\n<li>Date time at which the agreement sign date is in UTC Standard. Example 2020-02-21T18:00:00Z</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"signedmethodstring\"><code>signedMethod:string</code></h4>\n<ul>\n<li>Required</li>\n<li>Signed method. Valid value is only acceptance</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"signedbystring\"><code>signedBy:string</code></h4>\n<ul>\n<li>Optional</li>\n<li>Name of the person signing the lease</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"devicestring\"><code>device:string</code></h4>\n<ul>\n<li>Optional</li>\n<li>Device type on which the agreement is signed</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"deviceipstring\"><code>deviceIP:string</code></h4>\n<ul>\n<li>Optional</li>\n<li>Device address from where the agreement is signed</li>\n</ul>\n</blockquote>\n<h1 id=\"response-object\">Response Object</h1>\n<h2 id=\"datahash\"><code>data:hash</code></h2>\n<blockquote>\n<ul>\n<li>Empty value ( {} ) for successful responses.</li>\n</ul>\n</blockquote>\n<h2 id=\"successboolean\"><code>success:boolean</code></h2>\n<blockquote>\n<ul>\n<li>Value with the result of the request. Possible values are true or false</li>\n</ul>\n</blockquote>\n<h2 id=\"captureboolean\"><code>capture:boolean</code></h2>\n<blockquote>\n<ul>\n<li>Value indicating if the capture endpoint needs to be called to complete the application process. Possible values are true or false</li>\n</ul>\n</blockquote>\n<h2 id=\"statusinteger\"><code>status:integer</code></h2>\n<blockquote>\n<ul>\n<li>Value with status code of the request. For example: 200, 400, 404</li>\n</ul>\n</blockquote>\n","urlObject":{"path":["platform","v1","application","{{applicationId}}","signed"],"host":["{{baseUrl}}"],"query":[{"key":"document","value":"agreement"}],"variable":[]}},"response":[{"id":"50d8e2a4-38f3-410d-835c-1137d99d91ed","name":"Not Found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer pORU5GTWtNeE1UQkJPVE5DUl....JiWYvnmRQSSCozUr6Xt7RXRK","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123"}],"body":{"mode":"raw","raw":"{\r\n  \"agreementInformation\": {\r\n    \"signedTime\": \"2020-02-21T18:00:00Z\",\r\n    \"signedMethod\": \"acceptance\",\r\n    \"signedBy\": \"John Doe\",\r\n    \"device\": \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36\",\r\n    \"deviceIP\": \"10.1.1.10\"\r\n  }\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api-sandbox.snapfinance.com/platform/v1/application/{{applicationId}}/signed?document=agreement","protocol":"https","host":["api-sandbox","snapfinance","com"],"path":["platform","v1","application","{{applicationId}}","signed"],"query":[{"key":"document","value":"agreement"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"133"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 16 Jul 2020 17:03:16 GMT"},{"key":"x-amzn-RequestId","value":"d596e661-4e08-4944-a32a-e2e9d077101f"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"Pxo9DGyiPHcF25Q="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f108853-ef2b033fb25f0eb879f3d58e"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 0a72bb7be10458e1aefa37a097f21894.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"BW7lO-fv-dBAE-rM71lbkJaSyoAtnfHQkpMjtTQ6XjLCR9GCTyzCBA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"status\": 404,\n    \"error\": [\n        {\n            \"type\": \"validation_error\",\n            \"message\": \"Application not found\",\n            \"code\": \"application_not_found\"\n        }\n    ]\n}"},{"id":"dab35004-f4da-4e9c-ab54-cd5f2eb9c0db","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123"}],"body":{"mode":"raw","raw":"{\r\n  \"agreementInformation\": {\r\n    \"signedTime\": \"2020-02-21T18:00:00Z\",\r\n    \"signedMethod\": \"acceptance\",\r\n    \"signedBy\": \"John Doe\",\r\n    \"device\": \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36\",\r\n    \"deviceIP\": \"10.1.1.10\"\r\n  }\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{baseUrl}}/platform/v1/application/{{applicationId}}/signed?document=agreement","host":["{{baseUrl}}"],"path":["platform","v1","application","{{applicationId}}","signed"],"query":[{"key":"document","value":"agreement"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"39"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:25:11 GMT"},{"key":"x-amzn-RequestId","value":"1fb9d04e-d5d8-4c52-ab99-f280f30974e6"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P02TZGf6vHcFvIA="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d0e2-d14a91504ec81fad79cc0598"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"TGhuOXXJY2_ad54jcWoH4dSCFk37DVH5IoBeHg8qehauxewnMC9pxA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {},\n    \"status\": 200,\n    \"capture\": true \n}"},{"id":"0c337a33-0946-43c7-b5fe-d97d49387feb","name":"Not Found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer pORU5GTWtNeE1UQkJPVE5DUl....JiWYvnmRQSSCozUr6Xt7RXRK","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123"}],"body":{"mode":"raw","raw":"{\r\n  \"agreementInformation\": {\r\n    \"signedTime\": \"2020-02-21T18:00:00Z\",\r\n    \"signedMethod\": \"acceptance\",\r\n    \"signedBy\": \"John Doe\",\r\n    \"device\": \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36\",\r\n    \"deviceIP\": \"10.1.1.10\"\r\n  }\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api-sandbox.snapfinance.com/platform/v1/application/{{applicationId}}/signed?document=agreement","protocol":"https","host":["api-sandbox","snapfinance","com"],"path":["platform","v1","application","{{applicationId}}","signed"],"query":[{"key":"document","value":"agreement"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"133"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 16 Jul 2020 17:03:16 GMT"},{"key":"x-amzn-RequestId","value":"d596e661-4e08-4944-a32a-e2e9d077101f"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"Pxo9DGyiPHcF25Q="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f108853-ef2b033fb25f0eb879f3d58e"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 0a72bb7be10458e1aefa37a097f21894.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"BW7lO-fv-dBAE-rM71lbkJaSyoAtnfHQkpMjtTQ6XjLCR9GCTyzCBA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"status\": 404,\n    \"error\": [\n        {\n            \"type\": \"validation_error\",\n            \"message\": \"Application not found\",\n            \"code\": \"application_not_found\"\n        }\n    ]\n}"},{"id":"ddb2f336-83ee-4bfe-bfb2-bc4eb93d180b","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123"}],"body":{"mode":"raw","raw":"{\r\n  \"agreementInformation\": {\r\n    \"signedTime\": \"2020-02-21T18:00:00Z\",\r\n    \"signedMethod\": \"acceptance\",\r\n    \"signedBy\": \"John Doe\",\r\n    \"device\": \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36\",\r\n    \"deviceIP\": \"10.1.1.10\"\r\n  }\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{baseUrl}}/platform/v1/application/{{applicationId}}/signed?document=agreement","host":["{{baseUrl}}"],"path":["platform","v1","application","{{applicationId}}","signed"],"query":[{"key":"document","value":"agreement"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"39"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:25:11 GMT"},{"key":"x-amzn-RequestId","value":"1fb9d04e-d5d8-4c52-ab99-f280f30974e6"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P02TZGf6vHcFvIA="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d0e2-d14a91504ec81fad79cc0598"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"TGhuOXXJY2_ad54jcWoH4dSCFk37DVH5IoBeHg8qehauxewnMC9pxA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {},\n    \"status\": 200,\n    \"capture\": true \n}"}],"_postman_id":"cd6e9c23-37ad-4f2f-ab37-04ec3bf65cfb"},{"name":"Capture Application","event":[{"listen":"test","script":{"exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});\r","pm.test(\"Success message\", function () {\r","    pm.expect(pm.response.text()).to.include(\"success\");\r","});"],"type":"text/javascript","id":"3eb7b996-0b7d-42e7-b919-6b44fe82a2ea"}}],"id":"608bb7b7-e0ad-4c74-a1ff-a8ab9c92f296","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"<p>(optional - ID generated by the client)</p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"deliveryDate\": \"2023-12-15\"\r\n}"},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/capture","description":"<h1 id=\"capture-application\">Capture Application</h1>\n<p>This endpoint updates the application delivery date changes its status from PENDING_DEL to COMPLETE and initiates the process to fund the application.</p>\n<h1 id=\"request-object\">Request Object</h1>\n<blockquote>\n<h2 id=\"deliverydatestring-date\"><code>deliveryDate:string (Date)</code></h2>\n<ul>\n<li>Required</li>\n<li>Date should be in YYYY-MM-DD format. Delivery Date in ISO format</li>\n</ul>\n</blockquote>\n<h1 id=\"response-object\">Response Object</h1>\n<h2 id=\"datahash\"><code>data:hash</code></h2>\n<blockquote>\n<ul>\n<li>Empty value ( {} ) for successful responses.</li>\n</ul>\n</blockquote>\n<h2 id=\"successboolean\"><code>success:boolean</code></h2>\n<blockquote>\n<ul>\n<li>Value with the result of the request. Possible values are TRUE or FALSE</li>\n</ul>\n</blockquote>\n<h2 id=\"statusinteger\"><code>status:integer</code></h2>\n<blockquote>\n<ul>\n<li>Value with status code of the request. For example: 200, 400, 404</li>\n</ul>\n</blockquote>\n","urlObject":{"path":["platform","v1","application","{{applicationId}}","capture"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"c80d36ba-d41d-4013-8955-d7d9017e1e02","name":"Not Found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer pORU5GTWtNeE1UQkJPVE5DUl....JiWYvnmRQSSCozUr6Xt7RXRK","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123"}],"body":{"mode":"raw","raw":"{\r\n\t\"deliveryDate\": \"2020-07-08\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api-sandbox.snapfinance.com/platform/v1/application/{{applicationId}}/capture"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"133"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 16 Jul 2020 18:26:55 GMT"},{"key":"x-amzn-RequestId","value":"1473e786-3ec1-4200-9c73-39d1dec008cd"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"Px1NXHxcPHcFhSQ="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f109bef-9cb725502fac17205c442a40"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 6492b42e2fc3684cc00b54d685c2328c.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"ma8Z6BOstjyboUIGZiQ8QtDYb4JzTQsi-XrqvRI5Zqd1rnmd9xcfsw=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"status\": 404,\n    \"error\": [\n        {\n            \"type\": \"validation_error\",\n            \"message\": \"Application not found\",\n            \"code\": \"application_not_found\"\n        }\n    ]\n}"},{"id":"2584c0ff-81e9-4c82-8221-ffc7df4e2780","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123"}],"body":{"mode":"raw","raw":"{\r\n\t\"deliveryDate\": \"2020-07-08\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/capture"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"39"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:26:10 GMT"},{"key":"x-amzn-RequestId","value":"925cf780-dcfc-4f9b-86a5-720b308c2514"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P02dPHvfvHcF4Sw="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d121-f3cf0d83e94684f53be9c37d"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"bSFAKB6f-njXKj6ZNGK2dnkYOt15wbujC4tyWTxf6YIqdCOwiNAlJQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {},    \n    \"status\": 200\n}"},{"id":"32d62595-5eb9-4dae-a3f5-050b9a896147","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123"}],"body":{"mode":"raw","raw":"{\r\n\t\"deliveryDate\": \"2020-07-08\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/capture"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"39"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:26:10 GMT"},{"key":"x-amzn-RequestId","value":"925cf780-dcfc-4f9b-86a5-720b308c2514"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P02dPHvfvHcF4Sw="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d121-f3cf0d83e94684f53be9c37d"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"bSFAKB6f-njXKj6ZNGK2dnkYOt15wbujC4tyWTxf6YIqdCOwiNAlJQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {},    \n    \"status\": 200\n}"},{"id":"5a0ca16e-e33d-49be-876f-6c33dedc3706","name":"Not Found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer pORU5GTWtNeE1UQkJPVE5DUl....JiWYvnmRQSSCozUr6Xt7RXRK","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123"}],"body":{"mode":"raw","raw":"{\r\n\t\"deliveryDate\": \"2020-07-08\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api-sandbox.snapfinance.com/platform/v1/application/{{applicationId}}/capture"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"133"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 16 Jul 2020 18:26:55 GMT"},{"key":"x-amzn-RequestId","value":"1473e786-3ec1-4200-9c73-39d1dec008cd"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"Px1NXHxcPHcFhSQ="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f109bef-9cb725502fac17205c442a40"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 6492b42e2fc3684cc00b54d685c2328c.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"ma8Z6BOstjyboUIGZiQ8QtDYb4JzTQsi-XrqvRI5Zqd1rnmd9xcfsw=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"status\": 404,\n    \"error\": [\n        {\n            \"type\": \"validation_error\",\n            \"message\": \"Application not found\",\n            \"code\": \"application_not_found\"\n        }\n    ]\n}"}],"_postman_id":"608bb7b7-e0ad-4c74-a1ff-a8ab9c92f296"},{"name":"Refund","event":[{"listen":"test","script":{"exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});\r","pm.test(\"Success message\", function () {\r","    pm.expect(pm.response.text()).to.include(\"success\");\r","});"],"type":"text/javascript","id":"9c13ae3e-c57c-4d0d-a00d-a0ecea5c49b3"}}],"id":"0567d518-cd28-431a-a63d-91e8b3797ef8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"<p>(optional - ID generated by the client)</p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"products\": [\r\n    {\r\n      \"amount\": \"1.00\",\r\n      \"itemId\": \"ABC\",\r\n      \"quantity\": 1\r\n    }\r\n  ]\r\n}"},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/refund","description":"<h1 id=\"refund\">Refund</h1>\n<p>This endpoint refunds full or partial payment on LTO applications and changes its sub-status to either Refunded or Partially Refunded. There are two ways to do it, check the next request options.</p>\n<h1 id=\"request-object-option-1\">Request Object Option 1</h1>\n<p>Using specific information of a product(s):</p>\n<blockquote>\n<h2 id=\"productshash-array\"><code>products:hash array</code></h2>\n<ul>\n<li>Required</li>\n<li>An array with at least one product</li>\n</ul>\n<h4 id=\"productsamountstring-numeric\"><code>products.amount:string (Numeric)</code></h4>\n<blockquote>\n<ul>\n<li>Required</li>\n<li>Exact price of the product</li>\n</ul>\n</blockquote>\n<h4 id=\"productsitemidstring\"><code>products.itemId:string</code></h4>\n<blockquote>\n<ul>\n<li>Required</li>\n<li>Item ID of the product</li>\n</ul>\n</blockquote>\n<h4 id=\"productsquantityinteger\"><code>products.quantity:Integer</code></h4>\n<blockquote>\n<ul>\n<li>Required</li>\n<li>Quantity of the product</li>\n</ul>\n</blockquote>\n</blockquote>\n<h1 id=\"request-object-option-2\">Request Object Option 2</h1>\n<p>Using an specific amount:</p>\n<blockquote>\n<h2 id=\"adjustmenthash\"><code>adjustment:hash</code></h2>\n<h4 id=\"amountstring-numeric\"><code>amount:string (Numeric)</code></h4>\n<blockquote>\n<ul>\n<li>Required</li>\n<li>Negative refund amount</li>\n</ul>\n</blockquote>\n</blockquote>\n<h1 id=\"response-object\">Response Object</h1>\n<h2 id=\"datahash\"><code>data:hash</code></h2>\n<blockquote>\n<ul>\n<li>Empty value ( {} ) for successful responses.</li>\n</ul>\n</blockquote>\n<h2 id=\"successboolean\"><code>success:boolean</code></h2>\n<blockquote>\n<ul>\n<li>Value with the result of the request. Possible values are TRUE or FALSE</li>\n</ul>\n</blockquote>\n<h2 id=\"statusinteger\"><code>status:integer</code></h2>\n<blockquote>\n<ul>\n<li>Value with status code of the request. For example: 200, 400, 404</li>\n</ul>\n</blockquote>\n","urlObject":{"path":["platform","v1","application","{{applicationId}}","refund"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"cfb24abe-48c5-4e16-ba79-5320edaed746","name":"OK Option 2","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer pORU5GTWtNeE1UQkJPVE5DUl....JiWYvnmRQSSCozUr6Xt7RXRK","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"adjustment\": \r\n    {\r\n      \"amount\": \"-50.00\"\r\n    }\r\n}"},"url":"https://api-sandbox.snapfinance.com/platform/v1/application/{{applicationId}}/refund"},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{    \r\n    \"success\": true,\r\n    \"data\": {},\r\n    \"status\": 200\r\n}"},{"id":"acaae34d-f7d6-47da-8471-997da2d82ed9","name":"OK Option 1","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123"}],"body":{"mode":"raw","raw":"{\r\n  \"products\": [\r\n    {\r\n      \"amount\": \"1.00\",\r\n      \"itemId\": \"ABC\",\r\n      \"quantity\": 1\r\n    }\r\n  ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/refund"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"39"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:26:57 GMT"},{"key":"x-amzn-RequestId","value":"0cb73793-f0dd-4438-829c-415c7155efcf"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P02kwF5hPHcF8_g="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d151-db105366d62996e40114bb32"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"9BdrvPsnb7WioJYWC4JtSltOW4weJHXSdPS6hO4PeZYYukvhSSSg5A=="}],"cookie":[],"responseTime":null,"body":"{    \n    \"success\": true,\n    \"data\": {},\n    \"status\": 200\n}"},{"id":"5d181e62-cae4-408a-81a1-6f940e6a0060","name":"Not Found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123"}],"body":{"mode":"raw","raw":"{\r\n  \"products\": [\r\n    {\r\n      \"amount\": \"1.00\",\r\n      \"itemId\": \"ABC\",\r\n      \"quantity\": 1\r\n    }\r\n  ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/refund"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"133"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:21:20 GMT"},{"key":"x-amzn-RequestId","value":"88317457-385d-42c2-8a60-b6109127bbcc"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P01wCEOjvHcFZVg="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d000-bbce4d1ff03d29d0fd1a8420"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"16cCiP5eIHIHnMoJ09EmaduydYyFgSDM_PsbyiGc54g12GLNGF57MA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,    \n    \"error\": [\n        {\n            \"type\": \"validation_error\",\n            \"message\": \"Application not found\",\n            \"code\": \"application_not_found\"\n        }\n    ],\n    \"status\": 404\n}"},{"id":"e31f46b3-83eb-48bd-80f8-9354c88f738d","name":"Not Found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123"}],"body":{"mode":"raw","raw":"{\r\n  \"products\": [\r\n    {\r\n      \"amount\": \"1.00\",\r\n      \"itemId\": \"ABC\",\r\n      \"quantity\": 1\r\n    }\r\n  ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/refund"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"133"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:21:20 GMT"},{"key":"x-amzn-RequestId","value":"88317457-385d-42c2-8a60-b6109127bbcc"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P01wCEOjvHcFZVg="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d000-bbce4d1ff03d29d0fd1a8420"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"16cCiP5eIHIHnMoJ09EmaduydYyFgSDM_PsbyiGc54g12GLNGF57MA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,    \n    \"error\": [\n        {\n            \"type\": \"validation_error\",\n            \"message\": \"Application not found\",\n            \"code\": \"application_not_found\"\n        }\n    ],\n    \"status\": 404\n}"},{"id":"1f0206d4-efd8-40e3-a32f-de19ba849004","name":"OK Option 2","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer pORU5GTWtNeE1UQkJPVE5DUl....JiWYvnmRQSSCozUr6Xt7RXRK","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"adjustment\": \r\n    {\r\n      \"amount\": \"-50.00\"\r\n    }\r\n}"},"url":"https://api-sandbox.snapfinance.com/platform/v1/application/{{applicationId}}/refund"},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{    \r\n    \"success\": true,\r\n    \"data\": {},\r\n    \"status\": 200\r\n}"},{"id":"00691ce2-1b62-41db-bc9b-91380fa0bfa3","name":"OK Option 1","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123"}],"body":{"mode":"raw","raw":"{\r\n  \"products\": [\r\n    {\r\n      \"amount\": \"1.00\",\r\n      \"itemId\": \"ABC\",\r\n      \"quantity\": 1\r\n    }\r\n  ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/refund"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"39"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:26:57 GMT"},{"key":"x-amzn-RequestId","value":"0cb73793-f0dd-4438-829c-415c7155efcf"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P02kwF5hPHcF8_g="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d151-db105366d62996e40114bb32"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"9BdrvPsnb7WioJYWC4JtSltOW4weJHXSdPS6hO4PeZYYukvhSSSg5A=="}],"cookie":[],"responseTime":null,"body":"{    \n    \"success\": true,\n    \"data\": {},\n    \"status\": 200\n}"}],"_postman_id":"0567d518-cd28-431a-a63d-91e8b3797ef8"},{"name":"Cancel application","event":[{"listen":"test","script":{"exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});\r","pm.test(\"Success message\", function () {\r","    pm.expect(pm.response.text()).to.include(\"success\");\r","});"],"type":"text/javascript","id":"fcab28d0-ff60-4600-af4c-9e3ec4cc38a7"}}],"id":"e5af9655-1caa-4949-b6af-aa0afb3727a6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"<p>(optional - ID generated by the client)</p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"reason\": \"Cancellation reason\"\r\n}"},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/cancel","description":"<h1 id=\"cancel-application\">Cancel Application</h1>\n<p>This endpoint cancels the application that is not funded and changes the application status to Withdrawn.</p>\n<h2 id=\"path-params\">PATH PARAMS</h2>\n<blockquote>\n<h2 id=\"applicationidstring\"><code>applicationId:string</code></h2>\n<ul>\n<li>Required</li>\n<li>ApplicationId is returned when calling the create application endpoint</li>\n</ul>\n</blockquote>\n<p><strong>Important:</strong></p>\n<p><em>This endpoint could be called just if the application has the status: Pending Sign Documents, Pending Delivery, or Complete.</em></p>\n<h1 id=\"request-object\">Request Object</h1>\n<blockquote>\n<h2 id=\"reasonstring\"><code>reason:string</code></h2>\n<ul>\n<li>Required</li>\n<li>Cancel reason</li>\n</ul>\n</blockquote>\n<h1 id=\"response-object\">Response Object</h1>\n<h2 id=\"datahash\"><code>data:hash</code></h2>\n<blockquote>\n<ul>\n<li>Empty value ( {} ) for successful responses.</li>\n</ul>\n</blockquote>\n<h2 id=\"successboolean\"><code>success:boolean</code></h2>\n<blockquote>\n<ul>\n<li>Value with the result of the request. Possible values are TRUE or FALSE</li>\n</ul>\n</blockquote>\n<h2 id=\"statusinteger\"><code>status:integer</code></h2>\n<blockquote>\n<ul>\n<li>Value with status code of the request. For example: 200, 400, 404</li>\n</ul>\n</blockquote>\n","urlObject":{"path":["platform","v1","application","{{applicationId}}","cancel"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"759dab67-a278-4f89-b741-e483d0dfa9a4","name":"Payment Required","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer pORU5GTWtNeE1UQkJPVE5DUl....JiWYvnmRQSSCozUr6Xt7RXRK","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123"}],"body":{"mode":"raw","raw":"{\r\n  \"reason\": \"Just testing\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api-sandbox.snapfinance.com/platform/v1/application/{{applicationId}}/cancel"},"status":"Payment Required","code":402,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"151"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:29:25 GMT"},{"key":"x-amzn-RequestId","value":"77c416aa-f789-4e69-a93c-17495af51014"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P027vEpuvHcFo3A="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d1e4-e3ee5d7f37aa94e31d23df69"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"pL1yn6tOUtAkDwobO--gyPVNysomUz0yDMCvY4E05pjbg273scoTJQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"status\": 402,\n    \"error\": [\n        {\n            \"type\": \"validation_error\",\n            \"message\": \"Application already in a canceled status\",\n            \"code\": \"application_canceled\"\n        }\n    ]\n}"},{"id":"351a93f6-47a7-422b-b3ab-f47cb74d8056","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123"}],"body":{"mode":"raw","raw":"{\r\n  \"reason\": \"Just testing\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/cancel"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"39"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:29:58 GMT"},{"key":"x-amzn-RequestId","value":"199232de-ba00-41d0-a06c-e24528b078bd"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P03A7HF7vHcFxFw="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d205-2e6265be9b369c6c0d906ec8"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"f7vbn4H0wim_lwjCA-23_AoRofr_dvM5Fl3yCcUSLEfkg3eK6wtkzQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {},\n    \"status\": 200\n}"},{"id":"29d4cab1-9d88-458b-bedd-ddb676a48559","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123"}],"body":{"mode":"raw","raw":"{\r\n  \"reason\": \"Just testing\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/cancel"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"39"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:29:58 GMT"},{"key":"x-amzn-RequestId","value":"199232de-ba00-41d0-a06c-e24528b078bd"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P03A7HF7vHcFxFw="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d205-2e6265be9b369c6c0d906ec8"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"f7vbn4H0wim_lwjCA-23_AoRofr_dvM5Fl3yCcUSLEfkg3eK6wtkzQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {},\n    \"status\": 200\n}"},{"id":"d5a82887-87f5-4183-b5be-2c3c03ae5ac2","name":"Payment Required","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer pORU5GTWtNeE1UQkJPVE5DUl....JiWYvnmRQSSCozUr6Xt7RXRK","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123"}],"body":{"mode":"raw","raw":"{\r\n  \"reason\": \"Just testing\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api-sandbox.snapfinance.com/platform/v1/application/{{applicationId}}/cancel"},"status":"Payment Required","code":402,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"151"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:29:25 GMT"},{"key":"x-amzn-RequestId","value":"77c416aa-f789-4e69-a93c-17495af51014"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P027vEpuvHcFo3A="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d1e4-e3ee5d7f37aa94e31d23df69"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"pL1yn6tOUtAkDwobO--gyPVNysomUz0yDMCvY4E05pjbg273scoTJQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"status\": 402,\n    \"error\": [\n        {\n            \"type\": \"validation_error\",\n            \"message\": \"Application already in a canceled status\",\n            \"code\": \"application_canceled\"\n        }\n    ]\n}"}],"_postman_id":"e5af9655-1caa-4949-b6af-aa0afb3727a6"},{"name":"Send verification code","event":[{"listen":"test","script":{"exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);       \r","});\r","\r","pm.test(\"Check response body\", function () {\r","    var jsonData = pm.response.json();\r","    pm.expect(jsonData.success).to.eql(true);\r","    pm.expect(jsonData.status).to.eql(200);\r","    pm.expect(pm.response.text()).to.include(\"verificationResourceId\");\r","});\r","\r","pm.test(\"Set the verificationResourceId\", function () {\r","    var jsonData = pm.response.json();\r","    pm.environment.set(\"verificationResourceId\", jsonData.data.verificationResourceId);\r","});"],"type":"text/javascript","id":"5ebd98a4-6363-4192-96de-8c7866e74af3"}}],"id":"83c1c6bf-e4d9-46fd-ae71-ed5c811bb4c3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"<p>(optional - ID generated by the client)</p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"channel\": \"SMS\",\n    \"recipient\": \"8995014900\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/verification","description":"<h1 id=\"send-verification-code\">Send Verification Code</h1>\n<p>This endpoint sends the customer verification code to specified channel.</p>\n<h1 id=\"request-object\">Request Object</h1>\n<blockquote>\n<h2 id=\"channelstring\"><code>channel:string</code></h2>\n<ul>\n<li>Required</li>\n<li>Defines the channel to send the verification code. Allowed values are SMS and EMAIL</li>\n</ul>\n</blockquote>\n<blockquote>\n<h2 id=\"recipientstring\"><code>recipient:string</code></h2>\n<ul>\n<li>Required</li>\n<li>Defines the recipient. Valid phone number or valid email</li>\n</ul>\n</blockquote>\n<h1 id=\"response-object\">Response Object</h1>\n<h2 id=\"datahash\"><code>data:hash</code></h2>\n<blockquote>\n<h4 id=\"verificationresourceidstring\"><code>verificationResourceId:string</code></h4>\n<ul>\n<li>ID generated when sending the code</li>\n</ul>\n</blockquote>\n<h2 id=\"successboolean\"><code>success:boolean</code></h2>\n<blockquote>\n<ul>\n<li>Value with the result of the request. Possible values are TRUE or FALSE</li>\n</ul>\n</blockquote>\n<h2 id=\"statusinteger\"><code>status:integer</code></h2>\n<blockquote>\n<ul>\n<li>Value with status code of the request. For example: 200, 400, 404</li>\n</ul>\n</blockquote>\n","urlObject":{"path":["platform","v1","verification"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"cb08ebda-795b-49f8-a998-b901cea2df89","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer pORU5GTWtNeE1UQkJPVE5DUl....JiWYvnmRQSSCozUr6Xt7RXRK","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123","disabled":true}],"body":{"mode":"raw","raw":"{\n    \"channel\": \"SM\",\n    \"recipient\": \"8995014900\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api-sandbox.snapfinance.com/platform/v1/verification"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"145"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 14:01:47 GMT"},{"key":"x-amzn-RequestId","value":"5dd1edde-4f1b-400b-990f-e5e905c0e139"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P0hTyGIRPHcFvqg="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11af4b-2f9b161e7dcc01419ae11a30"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 9c1e51085ad77fbbab78fe2feb46cf98.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"Are2v91iZHxd0dM57t9bjElcdzRLoRw0tpJhp-JNg41y_21p4CjiEA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,    \n    \"error\": [\n        {\n            \"code\": \"channel_invalid\",\n            \"type\": \"validation_error\",\n            \"message\": \"Channel is invalid, allowed values: SMS\"\n        }\n    ],\n    \"status\": 400\n}"},{"id":"ec619d03-f48c-47ce-a93e-7c9a8b01980f","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123","disabled":true}],"body":{"mode":"raw","raw":"{\n    \"channel\": \"SMS\",\n    \"recipient\": \"8995014900\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/verification"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"130"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 14:01:26 GMT"},{"key":"x-amzn-RequestId","value":"025c2aae-41bd-4354-9cc7-b27c86b808a3"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P0hQTE49PHcF6CQ="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11af35-71eb5a455d6916a4a770b6c7"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 9c1e51085ad77fbbab78fe2feb46cf98.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"c3jkDwbniXPByQivU6SIIYTGeXf06gG8KZClzDJJfA1lnZYLTakPjw=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"verificationResourceId\": \"{{verificationResourceId}}\"\n    },\n    \"status\": 200\n}"},{"id":"2c4d01a5-c40c-4f8c-982d-120dbb8c01dd","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer pORU5GTWtNeE1UQkJPVE5DUl....JiWYvnmRQSSCozUr6Xt7RXRK","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123","disabled":true}],"body":{"mode":"raw","raw":"{\n    \"channel\": \"SM\",\n    \"recipient\": \"8995014900\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api-sandbox.snapfinance.com/platform/v1/verification"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"145"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 14:01:47 GMT"},{"key":"x-amzn-RequestId","value":"5dd1edde-4f1b-400b-990f-e5e905c0e139"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P0hTyGIRPHcFvqg="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11af4b-2f9b161e7dcc01419ae11a30"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 9c1e51085ad77fbbab78fe2feb46cf98.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"Are2v91iZHxd0dM57t9bjElcdzRLoRw0tpJhp-JNg41y_21p4CjiEA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,    \n    \"error\": [\n        {\n            \"code\": \"channel_invalid\",\n            \"type\": \"validation_error\",\n            \"message\": \"Channel is invalid, allowed values: SMS\"\n        }\n    ],\n    \"status\": 400\n}"},{"id":"51c70a9f-3ffc-40fe-b1d1-38fb19749b53","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123","disabled":true}],"body":{"mode":"raw","raw":"{\n    \"channel\": \"SMS\",\n    \"recipient\": \"8995014900\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/verification"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"130"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 14:01:26 GMT"},{"key":"x-amzn-RequestId","value":"025c2aae-41bd-4354-9cc7-b27c86b808a3"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P0hQTE49PHcF6CQ="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11af35-71eb5a455d6916a4a770b6c7"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 9c1e51085ad77fbbab78fe2feb46cf98.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"c3jkDwbniXPByQivU6SIIYTGeXf06gG8KZClzDJJfA1lnZYLTakPjw=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"verificationResourceId\": \"{{verificationResourceId}}\"\n    },\n    \"status\": 200\n}"}],"_postman_id":"83c1c6bf-e4d9-46fd-ae71-ed5c811bb4c3"},{"name":"Check verification code","event":[{"listen":"test","script":{"exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);       \r","});\r","\r","pm.test(\"Check response body\", function () {\r","    var jsonData = pm.response.json();\r","    pm.expect(jsonData.success).to.eql(true);\r","    pm.expect(jsonData.status).to.eql(200);\r","    pm.expect(jsonData.data.status).to.eql(\"VALID\");\r","});"],"type":"text/javascript","id":"f4eb2e21-e101-4c01-a490-c870d665db2a"}}],"id":"5e76bc96-1be4-47d8-a703-cbb6514f474b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"<p>(optional - ID generated by the client)</p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"verificationCode\": \"111111\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/verification/{{verificationResourceId}}/check","description":"<h1 id=\"check-verification-code\">Check Verification Code</h1>\n<p>This endpoint checks the verification code sent to a specified channel.</p>\n<h2 id=\"path-params\">PATH PARAMS</h2>\n<blockquote>\n<h2 id=\"verificationresourceidstring\"><code>verificationResourceId:string</code></h2>\n<ul>\n<li>Required</li>\n<li>verificationResourceId is returned when calling the send the verification code</li>\n</ul>\n</blockquote>\n<h1 id=\"request-object\">Request Object</h1>\n<blockquote>\n<h2 id=\"verificationcodestring\"><code>verificationCode:string</code></h2>\n<ul>\n<li>Required</li>\n<li>Verification code sent by the API. String with six characters.</li>\n</ul>\n</blockquote>\n<h1 id=\"response-object\">Response Object</h1>\n<h2 id=\"datahash\"><code>data:hash</code></h2>\n<blockquote>\n<h4 id=\"statusstring\"><code>status:string</code></h4>\n<ul>\n<li>Status of the request. Possible values are VALID or INVALID</li>\n</ul>\n</blockquote>\n<h2 id=\"successboolean\"><code>success:boolean</code></h2>\n<blockquote>\n<ul>\n<li>Value with the result of the request. Possible values are TRUE or FALSE</li>\n</ul>\n</blockquote>\n<h2 id=\"statusinteger\"><code>status:integer</code></h2>\n<blockquote>\n<ul>\n<li>Value with status code of the request. For example: 200, 400, 404</li>\n</ul>\n</blockquote>\n","urlObject":{"path":["platform","v1","verification","{{verificationResourceId}}","check"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"0a75614d-15c0-4d26-b900-8c4754bdb498","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer pORU5GTWtNeE1UQkJPVE5DUl....JiWYvnmRQSSCozUr6Xt7RXRK","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123","disabled":true}],"body":{"mode":"raw","raw":"{\n    \"verificationCode\": \"111\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api-sandbox.snapfinance.com/platform/v1/verification/6f9df6d...6526ddcdf/check"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"171"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 14:02:36 GMT"},{"key":"x-amzn-RequestId","value":"9a49906c-4bdd-4ed1-954a-add21bce905b"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P0hbcFltvHcF1rQ="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11af7c-b7fed7fa8e462109908a2cba"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 9c1e51085ad77fbbab78fe2feb46cf98.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"LjzSbNbtEPjXBwxAj9bJx24LWoFijUJMdpmvV6GzfDcRL9Tm5JvZlg=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,    \n    \"error\": [\n        {\n            \"code\": \"verificationResourceId_invalid\",\n            \"type\": \"validation_error\",\n            \"message\": \"Verification resource id is null, empty or invalid\"\n        }\n    ],\n    \"status\": 400\n}"},{"id":"52a5ff78-afb2-481f-adcc-d810d5f44e44","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123","disabled":true}],"body":{"mode":"raw","raw":"{\n    \"verificationCode\": \"111\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/verification/{{verificationResourceId}}/check"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"55"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 14:02:10 GMT"},{"key":"x-amzn-RequestId","value":"733f9c45-6751-4271-8b66-7995fcc2a0d1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P0hXTH_7PHcFl8A="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11af61-0f3ab03c826d986e7e24c7fc"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 9c1e51085ad77fbbab78fe2feb46cf98.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"IzpbGYZW-mmNs-SnGV-rT7iBzjplPcs_lt_jgwMjOxgvsD1Lq0Gq6g=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"status\": \"VALID\"\n    },\n    \"status\": 200\n}"},{"id":"c251d59f-031d-422b-af12-067747036c2c","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer pORU5GTWtNeE1UQkJPVE5DUl....JiWYvnmRQSSCozUr6Xt7RXRK","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123","disabled":true}],"body":{"mode":"raw","raw":"{\n    \"verificationCode\": \"111\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api-sandbox.snapfinance.com/platform/v1/verification/6f9df6d...6526ddcdf/check"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"171"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 14:02:36 GMT"},{"key":"x-amzn-RequestId","value":"9a49906c-4bdd-4ed1-954a-add21bce905b"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P0hbcFltvHcF1rQ="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11af7c-b7fed7fa8e462109908a2cba"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 9c1e51085ad77fbbab78fe2feb46cf98.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"LjzSbNbtEPjXBwxAj9bJx24LWoFijUJMdpmvV6GzfDcRL9Tm5JvZlg=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,    \n    \"error\": [\n        {\n            \"code\": \"verificationResourceId_invalid\",\n            \"type\": \"validation_error\",\n            \"message\": \"Verification resource id is null, empty or invalid\"\n        }\n    ],\n    \"status\": 400\n}"},{"id":"eaaa0f1e-4d1b-4816-88d4-63770ada37fd","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123","disabled":true}],"body":{"mode":"raw","raw":"{\n    \"verificationCode\": \"111\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/verification/{{verificationResourceId}}/check"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"55"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 14:02:10 GMT"},{"key":"x-amzn-RequestId","value":"733f9c45-6751-4271-8b66-7995fcc2a0d1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P0hXTH_7PHcFl8A="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11af61-0f3ab03c826d986e7e24c7fc"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 9c1e51085ad77fbbab78fe2feb46cf98.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"IzpbGYZW-mmNs-SnGV-rT7iBzjplPcs_lt_jgwMjOxgvsD1Lq0Gq6g=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"status\": \"VALID\"\n    },\n    \"status\": 200\n}"}],"_postman_id":"5e76bc96-1be4-47d8-a703-cbb6514f474b"},{"name":"Send SMS Link","event":[{"listen":"test","script":{"exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});"],"type":"text/javascript","id":"7311f076-f348-42eb-ac71-9e7deaad1893"}}],"id":"d9041261-30ea-4703-b27f-519d7f936268","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{accessToken}}","type":"text"},{"key":"x-snap-api-version","value":"v1","type":"text"},{"key":"correlation-id","value":"29825ef1-0ddc-424e-9c79-4fea888afa7a","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"phoneNumber\": \"1234567890\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/sms-link","description":"<p>Send SMS link to customer's phone number. This endpoint allows partners to send an SMS with a link to start the application process.</p>\n","urlObject":{"path":["platform","v1","sms-link"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"c9eb647e-4875-444d-b163-803edb1caabc","name":"Success Response","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"phoneNumber\": \"1234567890\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/sms-link"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"SMS sent successfully\"\n}"}],"_postman_id":"d9041261-30ea-4703-b27f-519d7f936268"}],"id":"df1a702f-76be-4890-bde1-f85c914a6a8c","_postman_id":"df1a702f-76be-4890-bde1-f85c914a6a8c","description":""},{"name":"FA","item":[{"name":"Get Token","event":[{"listen":"test","script":{"exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","    ","    var jsonData = pm.response.json();","    pm.environment.set(\"bearerToken\", jsonData.access_token);","});","","pm.environment.set(\"social_4\", _.random(1000, 9999));","pm.environment.set(\"social_9\", _.random(100000000, 999999999));","pm.environment.set(\"account_number\", _.random(1000000000, 9999999999));"],"type":"text/javascript","id":"f986c779-fa67-41a7-a4f1-10471f6fddb5"}}],"id":"d9afed65-b825-4d5a-aa50-b0901b88e336","protocolProfileBehavior":{"disabledSystemHeaders":{"accept":true,"accept-encoding":true,"connection":true,"user-agent":true},"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"client_id\": \"{{authClientId}}\",\r\n\t\"client_secret\": \"{{authClientSecret}}\",\r\n\t\"audience\": \"{{authClientAudience}}\",\r\n\t\"grant_type\": \"client_credentials\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{authHostUrl}}/oauth/token","description":"<h1 id=\"get-token\">Get Token</h1>\n<p>This endpoint gets the token to make Snap Finance API calls.</p>\n<h2 id=\"environment-information\">Environment information</h2>\n<ul>\n<li><p>Sandbox base URL: <a href=\"https://api-sandbox.snapfinance.com/platform/v1\">https://api-sandbox.snapfinance.com/platform/v1</a></p>\n</li>\n<li><p>Production base URL:  <a href=\"https://api.snapfinance.com/platform/v1\">https://api.snapfinance.com/platform/v1</a></p>\n</li>\n</ul>\n<p><strong>Note:</strong> Production credentials will be provided after the integration is ready and tested in sandbox.</p>\n<h2 id=\"request-object\">Request Object</h2>\n<blockquote>\n<h4 id=\"client_idstring\"><code>client_id:string</code></h4>\n<ul>\n<li>Required</li>\n<li>Is the client ID provided by Snap</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"client_secretstring\"><code>client_secret:string</code></h4>\n<ul>\n<li>Required</li>\n<li>Is the client secret provided by Snap</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"audiencestring\"><code>audience:string</code></h4>\n<ul>\n<li>Required</li>\n<li>Value must be <a href=\"https://api-release.snapfinance.com/platform/v1\">https://api-release.snapfinance.com/platform/v1</a> for sandbox environment</li>\n<li>Value must be <a href=\"https://api.snapfinance.com/platform/v1\">https://api.snapfinance.com/platform/v1</a> for production environment</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"grant_typestring\"><code>grant_type:string</code></h4>\n<ul>\n<li>Required</li>\n<li>Value must be <code>client_credentials</code></li>\n</ul>\n</blockquote>\n","urlObject":{"path":["oauth","token"],"host":["{{authHostUrl}}"],"query":[],"variable":[]}},"response":[{"id":"ec7fc19e-c832-4b61-80f2-f976c56a306c","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"client_id\": \"{{authClientId}}\",\r\n\t\"client_secret\": \"{{authClientSecret}}\",\r\n\t\"audience\": \"{{authClientAudience}}\",\r\n\t\"grant_type\": \"client_credentials\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{authHostUrl}}/oauth/token"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"openresty"},{"key":"Date","value":"Thu, 30 Jul 2020 14:37:07 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"ot-tracer-spanid","value":"362f5d543a9ee2b1"},{"key":"ot-tracer-traceid","value":"37f1cde43a952051"},{"key":"ot-tracer-sampled","value":"true"},{"key":"ot-baggage-auth0-request-id","value":"8822-1596119827.955-34.218.23.159-518-277619999-1-0.000"},{"key":"X-Auth0-RequestId","value":"78e01254a6018eab26a6"},{"key":"X-RateLimit-Limit","value":"1000000"},{"key":"X-RateLimit-Remaining","value":"999999"},{"key":"X-RateLimit-Reset","value":"1596119828"},{"key":"Cache-Control","value":"no-store"},{"key":"Pragma","value":"no-cache"},{"key":"X-Robots-Tag","value":"noindex, nofollow, nosnippet, noarchive"},{"key":"Content-Encoding","value":"gzip"},{"key":"Strict-Transport-Security","value":"max-age=15768000"}],"cookie":[],"responseTime":null,"body":"{\n    \"access_token\": \"{{bearerToken}}\",\n    \"scope\": \"array of scopes\",\n    \"expires_in\": 86400,\n    \"token_type\": \"Bearer\"\n}"},{"id":"1d22c4cb-355e-4cdb-8436-f10e102f2a5c","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"client_id\": \"{{authClientId}}\",\r\n\t\"client_secret\": \"{{authClientSecret}}\",\r\n\t\"audience\": \"{{authClientAudience}}\",\r\n\t\"grant_type\": \"client_credentials\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{authHostUrl}}/oauth/token"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"openresty"},{"key":"Date","value":"Thu, 30 Jul 2020 14:37:56 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"60"},{"key":"Connection","value":"keep-alive"},{"key":"ot-tracer-spanid","value":"49376030724ae640"},{"key":"ot-tracer-traceid","value":"778c6f7b38c6efa2"},{"key":"ot-tracer-sampled","value":"true"},{"key":"ot-baggage-auth0-request-id","value":"8822-1596119876.679-34.218.23.159-518-277619999-2-0.000"},{"key":"X-Auth0-RequestId","value":"b202aa024e7109101a82"},{"key":"X-RateLimit-Limit","value":"1000000"},{"key":"X-RateLimit-Remaining","value":"999999"},{"key":"X-RateLimit-Reset","value":"1596119877"},{"key":"cache-control","value":"private, no-store, no-cache, must-revalidate, post-check=0, pre-check=0, no-transform"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"access_denied\",\n    \"error_description\": \"Unauthorized\"\n}"},{"id":"a4052ea7-c921-4e18-8ef0-edb14a1c35d4","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"client_id\": \"{{authClientId}}\",\r\n\t\"client_secret\": \"{{authClientSecret}}\",\r\n\t\"audience\": \"{{authClientAudience}}\",\r\n\t\"grant_type\": \"client_credentials\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{authHostUrl}}/oauth/token"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"openresty"},{"key":"Date","value":"Thu, 30 Jul 2020 14:37:07 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"ot-tracer-spanid","value":"362f5d543a9ee2b1"},{"key":"ot-tracer-traceid","value":"37f1cde43a952051"},{"key":"ot-tracer-sampled","value":"true"},{"key":"ot-baggage-auth0-request-id","value":"8822-1596119827.955-34.218.23.159-518-277619999-1-0.000"},{"key":"X-Auth0-RequestId","value":"78e01254a6018eab26a6"},{"key":"X-RateLimit-Limit","value":"1000000"},{"key":"X-RateLimit-Remaining","value":"999999"},{"key":"X-RateLimit-Reset","value":"1596119828"},{"key":"Cache-Control","value":"no-store"},{"key":"Pragma","value":"no-cache"},{"key":"X-Robots-Tag","value":"noindex, nofollow, nosnippet, noarchive"},{"key":"Content-Encoding","value":"gzip"},{"key":"Strict-Transport-Security","value":"max-age=15768000"}],"cookie":[],"responseTime":null,"body":"{\n    \"access_token\": \"{{bearerToken}}\",\n    \"scope\": \"array of scopes\",\n    \"expires_in\": 86400,\n    \"token_type\": \"Bearer\"\n}"},{"id":"fade9670-ec33-4c34-ab75-e35dcdb1a33e","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"client_id\": \"{{authClientId}}\",\r\n\t\"client_secret\": \"{{authClientSecret}}\",\r\n\t\"audience\": \"{{authClientAudience}}\",\r\n\t\"grant_type\": \"client_credentials\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{authHostUrl}}/oauth/token"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"openresty"},{"key":"Date","value":"Thu, 30 Jul 2020 14:37:56 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"60"},{"key":"Connection","value":"keep-alive"},{"key":"ot-tracer-spanid","value":"49376030724ae640"},{"key":"ot-tracer-traceid","value":"778c6f7b38c6efa2"},{"key":"ot-tracer-sampled","value":"true"},{"key":"ot-baggage-auth0-request-id","value":"8822-1596119876.679-34.218.23.159-518-277619999-2-0.000"},{"key":"X-Auth0-RequestId","value":"b202aa024e7109101a82"},{"key":"X-RateLimit-Limit","value":"1000000"},{"key":"X-RateLimit-Remaining","value":"999999"},{"key":"X-RateLimit-Reset","value":"1596119877"},{"key":"cache-control","value":"private, no-store, no-cache, must-revalidate, post-check=0, pre-check=0, no-transform"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"access_denied\",\n    \"error_description\": \"Unauthorized\"\n}"}],"_postman_id":"d9afed65-b825-4d5a-aa50-b0901b88e336"},{"name":"Create Application","event":[{"listen":"test","script":{"exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","pm.test(\"Success message\", function () {","    pm.expect(pm.response.text()).to.include(\"success\");","});","","pm.test(\"Set the application ID\", function () {","    var jsonData = pm.response.json();","    pm.environment.set(\"applicationId\", jsonData.data.applicationId);","});"],"type":"text/javascript","packages":{},"id":"f0ff5e04-880e-4a99-9716-bbed4ce9f021"}}],"id":"eaace84d-dcfc-4efe-ae30-19a71ef0bd3c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"<p>(optional - ID generated by the client)</p>\n","type":"text"},{"key":"Idempotency-Key","value":"","description":"<p>(optional - Idempotency key generated by the client)</p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"customerInformation\": {\r\n\t\t\"dobDate\": \"1977-07-07\",\r\n\t\t\"customerId\": \"{{social_4}}\",\r\n\t\t\"customerIdType\": \"SSN4\",\r\n\t\t\"mobilePhone\": \"1000000019\",\r\n\t\t\"mobilePhoneCountry\": \"US\",\r\n\t\t\"email\": \"test@test.com\",\r\n\t\t\"firstName\": \"John\",\r\n\t\t\"lastName\": \"Smith\",\r\n\t\t\"salutation\": \"MR\",\r\n\t\t\"billingAddress\": {\r\n\t\t\t\"streetAddress\": \"123MainSt\",\r\n\t\t\t\"city\": \"SaltLakeCity\",\r\n\t\t\t\"state\": \"UT\",\r\n\t\t\t\"country\": \"US\",\r\n\t\t\t\"postalCode\": \"84001\"\r\n\t\t},\r\n\t\t\"driversLicenseNumber\": \"123456879\",\r\n\t\t\"driversLicenseState\": \"FL\",\r\n\t\t\"language\": \"EN\",\r\n\t\t\"rentOwn\": \"OWN\",\r\n\t\t\"timeAddressYears\": 0,\r\n\t\t\"timeAddressMonths\": 2,\r\n\t\t\"phoneOptIn\": true\r\n\t},\r\n\t\"supplementalDataInformation\": {\r\n\t\t\"customerPastApps\": \"2\",\r\n\t\t\"customerIP\": \"127.X.0.1\"\r\n\t},\r\n\t\"cartInformation\": {\r\n\t\t\"currencyCode\": \"USD\",\r\n\t\t\"taxAmount\": \"35.00\",\r\n\t\t\"shippingAmount\": \"15.00\",\r\n\t\t\"totalAmount\": \"320.00\",\r\n\t\t\"discountAmount\": \"0.00\",\r\n\t\t\"orderId\": \"041299\",\r\n\t\t\"items\": [\r\n\t\t\t{\r\n\t\t\t\t\"price\": \"150.00\",\r\n\t\t\t\t\"itemId\": \"ABC\",\r\n\t\t\t\t\"description\": \"Mattress\",\r\n\t\t\t\t\"sku\": \"D1234\",\r\n\t\t\t\t\"quantity\": 1,\r\n\t\t\t\t\"leasable\":true\r\n\t\t\t},\r\n            \t\t\t{\r\n\t\t\t\t\"price\": \"100.00\",\r\n\t\t\t\t\"itemId\": \"DEF\",\r\n\t\t\t\t\"description\": \"TV\",\r\n\t\t\t\t\"sku\": \"D1235\",\r\n\t\t\t\t\"quantity\": 1,\r\n\t\t\t\t\"leasable\":true,\r\n                \"itemType\": \"PRODUCT\"\r\n\t\t\t},\r\n            \t\t\t{\r\n\t\t\t\t\"price\": \"20.00\",\r\n\t\t\t\t\"itemId\": \"LMN\",\r\n\t\t\t\t\"description\": \"Misc Fee\",\r\n\t\t\t\t\"sku\": \"A0001\",\r\n\t\t\t\t\"quantity\": 1,\r\n\t\t\t\t\"leasable\":true,\r\n                \"itemType\": \"SERVICE\"\r\n\t\t\t}\r\n\t\t],\r\n\t\t\"shippingAddress\": {\r\n\t\t\t\"streetAddress\": \"456BroadwaySt\",\r\n\t\t\t\"city\": \"SaltLakeCity\",\r\n\t\t\t\"state\": \"UT\",\r\n\t\t\t\"country\": \"US\",\r\n\t\t\t\"postalCode\": \"84001\"\r\n\t\t}\r\n\t},\r\n\t\"bankInformation\": {\r\n\t\t\"bankName\": \"superBank\",\r\n\t\t\"bankCity\": \"miami\",\r\n\t\t\"bankState\": \"FL\",\r\n\t\t\"routingNumber\": \"051501451\",\r\n\t\t\"accountNumber\": \"{{account_number}}\",\r\n\t\t\"directDeposit\": true\r\n\t},\r\n\t\"incomeInformation\": [{\r\n\t\t\"employerName\": \"AcmeCorporation\",\r\n\t\t\"frequency\": \"BI_WEEKLY\",\r\n\t\t\"incomeAmount\": \"5000.00\",\r\n\t\t\"phone\": \"1234567890\",\r\n\t\t\"phoneCountryCode\": \"US\",\r\n\t\t\"positionHeld\": \"Associate\",\r\n\t\t\"type\": \"FULL_TIME\",\r\n\t\t\"lastPayDate\": \"2020-02-07\",\r\n\t\t\"nextPayDate\": \"2020-02-21\"\r\n\t}],\r\n    \"complianceDisclosures\": {\r\n        \"termsConditions\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"electronicTransaction\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"prequalifiedTermsConditions\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"eConsent\": {\r\n            \"timestamp\": \"10/23/2022\"\r\n        }\r\n    }\r\n}"},"url":"{{baseUrl}}/platform/v1/application","description":"<h1 id=\"create-application\">Create Application</h1>\n<p>This endpoint creates an application and returns the decision on the application. It returns an applicationId if the application is approved and marks the application status as PREQUALIFIED/APPROVED/DENIED. Check the example requests to get one for each scenario.</p>\n<p><strong>Note</strong>: incomeInformation, cartInformation, and bankInformation objects are <strong>MANDATORY</strong> for a final approval (You can send those using the PATCH endpoint). If you are enrolled for a prequalification experience the customer can get PREQUALIFIED with customerInformation only. Check with your integrator for the experience selected.</p>\n<h1 id=\"request-object\">Request Object</h1>\n<h2 id=\"customerinformationhash\"><code>customerInformation:hash</code></h2>\n<blockquote>\n</blockquote>\n<h4 id=\"dobdatestring\"><code>dobDate:string</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Date should be in YYYY-MM-DD format. The customer should be older than 18 years to apply. Date of birth in ISO format</p>\n</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"customeridstring\"><code>customerId:string</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>SSN number of the customer, four digits for SSN4 or 9 digits for SSN</p>\n</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"customeridtypestring\"><code>customerIdType:string</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Customer identification type in the country. Supported types are SSN or SSN4</p>\n</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"mobilephonestring\"><code>mobilePhone:string</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Verified customer phone number 10 digits</p>\n</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"mobilephonecountrystring\"><code>mobilePhoneCountry:string</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Country code in ISO 3166-1 alpha-2. Only US carriers are supported for now</p>\n</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"emailstring\"><code>email:string</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Properly formatted valid email address</p>\n</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"firstnamestring\"><code>firstName:string</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Can not be null or blank. It needs to be more than two characters</p>\n</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"lastnamestring\"><code>lastName:string</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Can not be null or blank. It needs to be more than two characters</p>\n</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"salutationstring\"><code>salutation:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Customer salutation. Supported values are MR, MRS, MISS or NONE</p>\n</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"driverslicensenumberstring\"><code>driversLicenseNumber:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Customer drivers license number. Valid driver license number</p>\n</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"driverslicensestatestring\"><code>driversLicenseState:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Customer drivers license state. Valid US state in two characters</p>\n</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"languagestring\"><code>language:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Language code preference of the customer. Supported values are EN or ES</p>\n</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"rentownstring\"><code>rentOwn:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Customers current residential type whether it is rental or owned. Supported values are RENT or OWN</p>\n</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"timeaddressyearsstring\"><code>timeAddressYears:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Positive number | Number of years the customer has lived at his or her current residential address</p>\n</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"timeaddressmonthsstring\"><code>timeAddressMonths:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Positive number. Number of months the customer has lived at his or her current address</p>\n</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"phoneoptinboolean\"><code>phoneOptIn:boolean</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Phone communication opt in for the customer. The customer must explicitly agree or disagree with phone communication</p>\n</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"billingaddresshash\"><code>billingAddress:hash</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Billing address of customer. Mostly will be his or her current residential address. Billing address used for lease agreement</p>\n<h4 id=\"billingaddressstreetaddressstring\"><code>billingAddress.streetAddress:string</code></h4>\n<blockquote>\n<p>&lt;ul &gt;&lt;li &gt;&lt;div&gt;Required&lt;/div&gt;&lt;/li&gt;&lt;li &gt;&lt;div&gt;Street address of customer&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; </p>\n</blockquote>\n<h4 id=\"billingaddresscitystring\"><code>billingAddress.city:string</code></h4>\n<blockquote>\n<p>&lt;ul &gt;&lt;li &gt;&lt;div&gt;Required&lt;/div&gt;&lt;/li&gt;&lt;li &gt;&lt;div&gt;Any valid US city within LTO/SLN supported state&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; </p>\n</blockquote>\n<h4 id=\"billingaddressstatestring\"><code>billingAddress.state:string</code></h4>\n<blockquote>\n<p>&lt;ul &gt;&lt;li &gt;&lt;div&gt;Required&lt;/div&gt;&lt;/li&gt;&lt;li &gt;&lt;div&gt;State or province of the customer. LTO/SLN supported states (NJ, MN and WI are non LTO states) &lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; </p>\n</blockquote>\n<h4 id=\"billingaddresscountrystring\"><code>billingAddress.country:string</code></h4>\n<blockquote>\n<p>&lt;ul &gt;&lt;li &gt;&lt;div&gt;Required&lt;/div&gt;&lt;/li&gt;&lt;li &gt;&lt;div&gt;Residence country of the customer. Only US is supported &lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; </p>\n</blockquote>\n<h4 id=\"billingaddresspostalcodestring\"><code>billingAddress.postalCode:string</code></h4>\n<blockquote>\n<p>&lt;ul &gt;&lt;li &gt;&lt;div&gt;Required&lt;/div&gt;&lt;/li&gt;&lt;li &gt;&lt;div&gt;Valid US zip code five digits &lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; </p>\n</blockquote>\n<h4 id=\"billingaddressunit-string\"><code>billingAddress.unit :string</code></h4>\n<blockquote>\n<p>&lt;ul &gt;&lt;li &gt;&lt;div&gt;Optional&lt;/div&gt;&lt;/li&gt;&lt;li &gt;&lt;div&gt;Unit number of the customer address &lt;/div&gt;&lt;/li&gt;&lt;/ul&gt;</p>\n</blockquote>\n</li>\n</ul>\n<h2 id=\"cartinformationhash--conditional\"><code>cartInformation:hash</code> * Conditional</h2>\n<blockquote>\n</blockquote>\n<h4 id=\"currencycodestring\"><code>currencyCode:string</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Currency code of the cart only USD is allowed. Allowed value is USD only</p>\n</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"taxamountstring-numeric\"><code>taxAmount:string (Numeric)</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Valid amount. Sales tax as per the customer and merchant state. Funding will be done accordingly for states where snap must collect sales tax</p>\n</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"shippingamountstring-numeric\"><code>shippingAmount:string (Numeric)</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Valid shipping amount can be zero for free shipping product. Shipping amount for all the items within the cart</p>\n</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"totalamountstring-numeric\"><code>totalAmount:string (Numeric)</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Total amount of the cart Information. (ItemPrice * Qty) + taxAmount + shippingAmount - discount</p>\n</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"discountamountstring-numeric\"><code>discountAmount:string (Numeric)</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Discount amount of the cart information. Valid positive amount</p>\n</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"orderidstring\"><code>orderId:string</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Order ID within merchant's order management system. Any alpha numeric value</p>\n</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"itemshash-array\"><code>items:hash array</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>An array with at least one item. Leasable (for LTO) items within the cart</p>\n<h4 id=\"itemspricestring-numeric\"><code>items.price:string (Numeric)</code></h4>\n<blockquote>\n<p>&lt;ul &gt;&lt;li &gt;&lt;div&gt;Required&lt;/div&gt;&lt;/li&gt;&lt;li &gt;&lt;div&gt;Positive value. Unit price of an Item&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; </p>\n</blockquote>\n<h4 id=\"itemsitemidstring\"><code>items.itemId:string</code></h4>\n<blockquote>\n<p>&lt;ul &gt;&lt;li &gt;&lt;div&gt;Required&lt;/div&gt;&lt;/li&gt;&lt;li &gt;&lt;div&gt;Within the same Order can not have two items with the same item ID. Unique item ID within customer order management system&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; </p>\n</blockquote>\n<h4 id=\"itemsdescriptionstring\"><code>items.description:string</code></h4>\n<blockquote>\n<p>&lt;ul &gt;&lt;li &gt;&lt;div&gt;Required&lt;/div&gt;&lt;/li&gt;&lt;li &gt;&lt;div&gt;Title of the item&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; </p>\n</blockquote>\n<h4 id=\"itemsskustring\"><code>items.sku:string</code></h4>\n<blockquote>\n<p>&lt;ul &gt;&lt;li &gt;&lt;div&gt;Optional&lt;/div&gt;&lt;/li&gt;&lt;li &gt;&lt;div&gt;SKU number associated with the item &lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; </p>\n</blockquote>\n<h4 id=\"itemsquantityinteger\"><code>items.quantity:Integer</code></h4>\n<blockquote>\n<p>&lt;ul &gt;&lt;li &gt;&lt;div&gt;Required&lt;/div&gt;&lt;/li&gt;&lt;li &gt;&lt;div&gt;Quantity of each item&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; </p>\n</blockquote>\n<h4 id=\"itemsleasableboolean\"><code>items.leasable:boolean</code></h4>\n<blockquote>\n<p>&lt;ul &gt;&lt;li &gt;&lt;div&gt;Required for LTO and optional for SLN&lt;/div&gt;&lt;/li&gt;&lt;li &gt;&lt;div&gt;All the items within the cart should be leasable for LTO. Indicator flag provided by the merchant as agreed with Snap Finance&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; </p>\n</blockquote>\n<h4 id=\"itemsitemtypestring\"><code>items.itemType:string</code></h4>\n<blockquote>\n<p>&lt;ul &gt;&lt;li &gt;&lt;div&gt;Optional&lt;/div&gt;&lt;/li&gt;&lt;li &gt;&lt;div&gt;Item type indicates whether the item is a physical product or not. Accepted values PRODUCT | SERVICE. Default value: PRODUCT&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt;</p>\n</blockquote>\n</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"shippingaddresshash\"><code>shippingAddress:hash</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Shipping address object</p>\n<h4 id=\"shippingaddressstreetaddressstring\"><code>shippingAddress.streetAddress:string</code></h4>\n<blockquote>\n<p>&lt;ul &gt;&lt;li &gt;&lt;div&gt;Required&lt;/div&gt;&lt;/li&gt;&lt;li &gt;&lt;div&gt;P.O boxes are not allowed. Street address where the item will be shipped&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; </p>\n</blockquote>\n<h4 id=\"shippingaddresscitystring\"><code>shippingAddress.city:string</code></h4>\n<blockquote>\n<p>&lt;ul &gt;&lt;li &gt;&lt;div&gt;Required&lt;/div&gt;&lt;/li&gt;&lt;li &gt;&lt;div&gt;P.O boxes are not allowed. City where the items will be shipped&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; </p>\n</blockquote>\n<h4 id=\"shippingaddressstatestring\"><code>shippingAddress.state:string</code></h4>\n<blockquote>\n<p>&lt;ul &gt;&lt;li &gt;&lt;div&gt;Required&lt;/div&gt;&lt;/li&gt;&lt;li &gt;&lt;div&gt;Valid US state. US state where the item will be shipped &lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; </p>\n</blockquote>\n<h4 id=\"shippingaddresscountrystring\"><code>shippingAddress.country:string</code></h4>\n<blockquote>\n<p>&lt;ul &gt;&lt;li &gt;&lt;div&gt;Required&lt;/div&gt;&lt;/li&gt;&lt;li &gt;&lt;div&gt;Only US is supported &lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; </p>\n</blockquote>\n<h4 id=\"shippingaddresspostalcodestring\"><code>shippingAddress.postalCode:string</code></h4>\n<blockquote>\n<p>&lt;ul &gt;&lt;li &gt;&lt;div&gt;Required&lt;/div&gt;&lt;/li&gt;&lt;li &gt;&lt;div&gt;Valid US zip code. Postal code of the shipping address&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; </p>\n</blockquote>\n<h4 id=\"shippingaddressunit-string\"><code>shippingAddress.unit :string</code></h4>\n<blockquote>\n<p>&lt;ul &gt;&lt;li &gt;&lt;div&gt;Optional&lt;/div&gt;&lt;/li&gt;&lt;li &gt;&lt;div&gt;Unit number of the customer address &lt;/div&gt;&lt;/li&gt;&lt;/ul&gt;</p>\n</blockquote>\n</li>\n</ul>\n<h2 id=\"bankinformationhash--conditional\"><code>bankInformation:hash</code> * Conditional</h2>\n<blockquote>\n</blockquote>\n<h4 id=\"routingnumberstring\"><code>routingNumber:string</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Nine digits routing number | Customers bank routing number</p>\n</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"accountnumberstring\"><code>accountNumber:string</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Four to fifteen digits account number | Customers bank account number</p>\n</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"banknamestring\"><code>bankName:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Customers bank name</p>\n</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"bankcitystring\"><code>bankCity:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>City of the customers banking branch</p>\n</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"bankstatestring\"><code>bankState:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>State of the customers banking branch</p>\n</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"directdepositboolean\"><code>directDeposit:boolean</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Whether the account has a direct deposit of the customer's salary</p>\n</li>\n</ul>\n<h2 id=\"incomeinformationhash-array--conditional\"><code>incomeInformation:hash array</code> * Conditional</h2>\n<blockquote>\n</blockquote>\n<h4 id=\"frequencystring\"><code>frequency:string</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Frequency of the customer's earnings. Allowed values are WEEKLY, BI_WEEKLY, SEMI_MONTHLY or MONTHLY</p>\n</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"incomeamountstring\"><code>incomeAmount:string</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Income per frequency specified. Positive amount</p>\n</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"lastpaydatestring-date\"><code>lastPayDate:string (Date)</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Last pay date of the customer. Format YYYY-MM-DD</p>\n</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"nextpaydatestring-date\"><code>nextPayDate:string (Date)</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Next pay date of the customer. Format YYYY-MM-DD</p>\n</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"typestring\"><code>type:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Type of customer income. Allowed values are FULL_TIME, PART_TIME, SELF_EMPLOYMENT, BENEFITS or OTHER</p>\n</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"positionheldstring\"><code>positionHeld:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Position held of the income information</p>\n</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"phonestring\"><code>phone:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Customers employer phone number. Ten digits string number</p>\n</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"phonecountrycodestring\"><code>phoneCountryCode:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Employers' phone country code. Only US phone numbers are supported</p>\n</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"employernamestring\"><code>employerName:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Employer name of the income information</p>\n</li>\n</ul>\n<h2 id=\"supplementaldatainformationhash\"><code>supplementalDataInformation:hash</code></h2>\n<blockquote>\n</blockquote>\n<h4 id=\"annualincomestring\"><code>annualIncome:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Annual income amount. Positive amount</p>\n</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"customeripstring\"><code>customerIP:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Customer IP Address</p>\n</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"customerpastappsstring\"><code>customerPastApps:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Customer number of past applications</p>\n</li>\n</ul>\n<h2 id=\"partnerinformationhash\"><code>partnerInformation:hash</code></h2>\n<blockquote>\n</blockquote>\n<h4 id=\"uniqueidentifierstring\"><code>uniqueIdentifier:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Partner Store Id</p>\n</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"uniqueapplicationidstring\"><code>uniqueApplicationId:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Partner Application Id</p>\n</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"uniquetransactionidstring\"><code>uniqueTransactionId:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Partner Transaction Id / API unique Request Id</p>\n</li>\n</ul>\n<h2 id=\"compliancedisclosureshash\"><code>complianceDisclosures:hash</code></h2>\n<h4 id=\"termsconditionshash\"><code>termsConditions:hash</code></h4>\n<h5 id=\"version--string\"><code>version : string</code></h5>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Disclosure version</p>\n</li>\n</ul>\n<h5 id=\"timestamp--string\"><code>timestamp : string</code></h5>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Date of acceptance of the terms and conditions</p>\n</li>\n</ul>\n<h4 id=\"electronictransactionhash\"><code>electronicTransaction:hash</code></h4>\n<h5 id=\"version--string-1\"><code>version : string</code></h5>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Disclosure version</p>\n</li>\n</ul>\n<h5 id=\"timestamp--string-1\"><code>timestamp : string</code></h5>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Date of electronic transaction</p>\n</li>\n</ul>\n<h4 id=\"prequalifiedtermsconditionshash\"><code>prequalifiedTermsConditions:hash</code></h4>\n<h5 id=\"version--string-2\"><code>version : string</code></h5>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Disclosure version</p>\n</li>\n</ul>\n<h5 id=\"timestamp--string-2\"><code>timestamp : string</code></h5>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Date of acceptance of the terms and conditions for prequal apps</p>\n</li>\n</ul>\n<h4 id=\"econsenthash\"><code>eConsent:hash</code></h4>\n<h5 id=\"version--string-3\"><code>version : string</code></h5>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Disclosure version</p>\n</li>\n</ul>\n<h5 id=\"timestamp--string-3\"><code>timestamp : string</code></h5>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>E-consent date signed</p>\n</li>\n</ul>\n<h1 id=\"response-object\">Response Object</h1>\n<h2 id=\"datahash\"><code>data:hash</code></h2>\n<blockquote>\n</blockquote>\n<h4 id=\"applicationstatusstring\"><code>applicationStatus:string</code></h4>\n<ul>\n<li>Status of the application</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"applicationsubstatusstring\"><code>applicationSubStatus:string</code></h4>\n<ul>\n<li>Sub-status of the application</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"applicationidstring\"><code>applicationId:string</code></h4>\n<ul>\n<li>Application ID</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"messagestring\"><code>message:string</code></h4>\n<ul>\n<li>Application information</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"applicationtypestring\"><code>applicationType:string</code></h4>\n<ul>\n<li>Application type. Posibble values are LTO for lease merchants and SLN for loan merchants</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"processingfeestring\"><code>processingFee:string</code></h4>\n<ul>\n<li>Processing fee amount</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"currencycodestring-1\"><code>currencyCode:string</code></h4>\n<ul>\n<li>Currency code</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"approvedamountstring\"><code>approvedAmount:string</code></h4>\n<ul>\n<li>Approved amount</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"applicationcreatetimestring\"><code>applicationCreateTime:string</code></h4>\n<ul>\n<li>Application creation time in UTC Standard. Example 2020-02-21T18:00:00Z</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"applicationupdatetimestring\"><code>applicationUpdateTime:string</code></h4>\n<ul>\n<li>Application update time in UTC Standard. Example 2020-02-21T18:00:00Z</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"stbsboolean\"><code>stbs:boolean</code></h4>\n<ul>\n<li>Sales tax by snap flag</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"additionalinformationhash\"><code>additionalInformation:hash</code></h4>\n<ul>\n<li><p>Information of the application</p>\n<h4 id=\"additionalinformationcustomerinformationstring\"><code>additionalInformation.customerInformation:string</code></h4>\n<blockquote>\n<p>&lt;ul &gt;&lt;li &gt;&lt;div&gt;Status of the customer information. Possible values are VERIFIED or PENDING&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; </p>\n</blockquote>\n<h4 id=\"additionalinformationbankinformationstring\"><code>additionalInformation.bankInformation:string</code></h4>\n<blockquote>\n<p>&lt;ul &gt;&lt;li &gt;&lt;div&gt;Status of the bank information. Possible values are VERIFIED or PENDING&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; </p>\n</blockquote>\n<h4 id=\"additionalinformationincomeinformationstring\"><code>additionalInformation.incomeInformation:string</code></h4>\n<blockquote>\n<p>&lt;ul &gt;&lt;li &gt;&lt;div&gt;Status of the income information. Possible values are VERIFIED or PENDING&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; </p>\n</blockquote>\n<h4 id=\"additionalinformationcartinformationstring\"><code>additionalInformation.cartInformation:string</code></h4>\n<blockquote>\n<p>&lt;ul &gt;&lt;li &gt;&lt;div&gt;Status of the cart information. Possible values are VERIFIED or PENDING&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt;</p>\n</blockquote>\n</li>\n</ul>\n<h2 id=\"successboolean\"><code>success:boolean</code></h2>\n<blockquote>\n<p>&lt;ul &gt;&lt;li &gt;&lt;div&gt;Value with the result of the request. Possible values are TRUE or FALSE&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; </p>\n</blockquote>\n<h2 id=\"statusinteger\"><code>status:integer</code></h2>\n<blockquote>\n<p>&lt;ul &gt;&lt;li &gt;&lt;div&gt;Value with status code of the request. For example: 200, 400, 404&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt;</p>\n</blockquote>\n","urlObject":{"path":["platform","v1","application"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"fffcff5c-9c9f-4cad-9ffe-bec83e0f06cf","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-Id","value":"123","type":"text"},{"key":"Idempotency-Key","value":"f18fc09a-450d-4ad8-a429-4b1d632fbb64","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"customerInformation\": {\r\n\t\t\"dobDate\": \"1977-07-07\",\r\n\t\t\"customerId\": \"{{social_4}}\",\r\n\t\t\"customerIdType\": \"SSN4\",\r\n\t\t\"mobilePhone\": \"1000000019\",\r\n\t\t\"mobilePhoneCountry\": \"US\",\r\n\t\t\"email\": \"test@test.com\",\r\n\t\t\"firstName\": \"John\",\r\n\t\t\"lastName\": \"Smith\",\r\n\t\t\"salutation\": \"MR\",\r\n\t\t\"billingAddress\": {\r\n\t\t\t\"streetAddress\": \"123MainSt\",\r\n\t\t\t\"city\": \"SaltLakeCity\",\r\n\t\t\t\"state\": \"UT\",\r\n\t\t\t\"country\": \"US\",\r\n\t\t\t\"postalCode\": \"84001\"\r\n\t\t},\r\n\t\t\"driversLicenseNumber\": \"123456879\",\r\n\t\t\"driversLicenseState\": \"FL\",\r\n\t\t\"language\": \"EN\",\r\n\t\t\"rentOwn\": \"OWN\",\r\n\t\t\"timeAddressYears\": 0,\r\n\t\t\"timeAddressMonths\": 2,\r\n\t\t\"phoneOptIn\": true\r\n\t},\r\n\t\"supplementalDataInformation\": {\r\n\t\t\"customerPastApps\": \"2\",\r\n\t\t\"customerIP\": \"127.X.0.1\",\r\n        \"annualIncome\": \"50000.00\"\r\n\t},\r\n\t\"cartInformation\": {\r\n\t\t\"currencyCode\": \"USD\",\r\n\t\t\"taxAmount\": \"35.00\",\r\n\t\t\"shippingAmount\": \"15.00\",\r\n\t\t\"totalAmount\": \"320.00\",\r\n\t\t\"discountAmount\": \"0.00\",\r\n\t\t\"orderId\": \"041299\",\r\n\t\t\"items\": [\r\n\t\t\t{\r\n\t\t\t\t\"price\": \"150.00\",\r\n\t\t\t\t\"itemId\": \"ABC\",\r\n\t\t\t\t\"description\": \"Mattress\",\r\n\t\t\t\t\"sku\": \"D1234\",\r\n\t\t\t\t\"quantity\": 1,\r\n\t\t\t\t\"leasable\":true\r\n\t\t\t},\r\n            \t\t\t{\r\n\t\t\t\t\"price\": \"100.00\",\r\n\t\t\t\t\"itemId\": \"DEF\",\r\n\t\t\t\t\"description\": \"TV\",\r\n\t\t\t\t\"sku\": \"D1235\",\r\n\t\t\t\t\"quantity\": 1,\r\n\t\t\t\t\"leasable\":true,\r\n                \"itemType\": \"PRODUCT\"\r\n\t\t\t},\r\n            \t\t\t{\r\n\t\t\t\t\"price\": \"20.00\",\r\n\t\t\t\t\"itemId\": \"LMN\",\r\n\t\t\t\t\"description\": \"Misc Fee\",\r\n\t\t\t\t\"sku\": \"A0001\",\r\n\t\t\t\t\"quantity\": 1,\r\n\t\t\t\t\"leasable\":true,\r\n                \"itemType\": \"SERVICE\"\r\n\t\t\t}\r\n\t\t],\r\n\t\t\"shippingAddress\": {\r\n\t\t\t\"streetAddress\": \"456BroadwaySt\",\r\n\t\t\t\"city\": \"SaltLakeCity\",\r\n\t\t\t\"state\": \"UT\",\r\n\t\t\t\"country\": \"US\",\r\n\t\t\t\"postalCode\": \"84001\"\r\n\t\t}\r\n\t},\r\n\t\"bankInformation\": {\r\n\t\t\"bankName\": \"superBank\",\r\n\t\t\"bankCity\": \"miami\",\r\n\t\t\"bankState\": \"FL\",\r\n\t\t\"routingNumber\": \"051501451\",\r\n\t\t\"accountNumber\": \"{{account_number}}\",\r\n\t\t\"directDeposit\": true\r\n\t},\r\n\t\"incomeInformation\": [{\r\n\t\t\"employerName\": \"AcmeCorporation\",\r\n\t\t\"frequency\": \"BI_WEEKLY\",\r\n\t\t\"incomeAmount\": \"5000.00\",\r\n\t\t\"phone\": \"1234567890\",\r\n\t\t\"phoneCountryCode\": \"US\",\r\n\t\t\"positionHeld\": \"Associate\",\r\n\t\t\"type\": \"FULL_TIME\",\r\n\t\t\"lastPayDate\": \"2020-02-07\",\r\n\t\t\"nextPayDate\": \"2020-02-21\"\r\n\t}],\r\n    \"complianceDisclosures\": {\r\n        \"termsConditions\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"electronicTransaction\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"prequalifiedTermsConditions\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"eConsent\": {\r\n            \"timestamp\": \"10/23/2022\"\r\n        }\r\n    }\r\n}"},"url":"{{baseUrl}}/platform/v1/application"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"501"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:22:59 GMT"},{"key":"x-amzn-RequestId","value":"e23d261c-bd07-4f18-a450-563b74cffb98"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P01-cF-yvHcFqOA="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d05c-8ca7863001e6343c261bb0c4"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"oIqDWJQfKIdYPDwb0_5KbpoIfWv8EZUOWffcIB1Ac026PPjmaSAwWQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"applicationId\": \"{{applicationId}}\",\n        \"applicationStatus\": \"APPROVED\",\n        \"applicationSubStatus\": \"\",\n        \"message\": \"Application Approved\",\n        \"approvedAmount\": \"1810.00\",\n        \"applicationType\": \"LTO\",\n        \"currencyCode\": \"USD\",\n        \"applicationCreateTime\": \"2021-01-04T14:48:43.364Z\",\n        \"applicationUpdateTime\": \"2021-01-04T14:48:43.366Z\",\n  \"stbs\": false,\n       \"additionalInformation\": {\n            \"customerInformation\": \"Verified\",\n            \"cartInformation\": \"Verified\",\n            \"bankInformation\": \"Verified\",\n            \"incomeInformation\": \"Verified\"\n        }\n            },\n    \"status\": 200\n}"},{"id":"25297358-34fe-46f7-a292-f2d08e968905","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-Id","value":"123","type":"text"},{"key":"Idempotency-Key","value":"f18fc09a-450d-4ad8-a429-4b1d632fbb64","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"customerInformation\": {\r\n\t\t\"dobDate\": \"1977-07-07\",\r\n\t\t\"customerId\": \"{{social_4}}\",\r\n\t\t\"customerIdType\": \"SSN4\",\r\n\t\t\"mobilePhone\": \"1000000019\",\r\n\t\t\"firstName\": \"John\",\r\n\t\t\"lastName\": \"Smith\",\r\n\t\t\"salutation\": \"MR\",\r\n\t\t\"billingAddress\": {\r\n\t\t\t\"streetAddress\": \"123MainSt\",\r\n\t\t\t\"city\": \"SaltLakeCity\",\r\n\t\t\t\"state\": \"UT\",\r\n\t\t\t\"country\": \"US\",\r\n\t\t\t\"postalCode\": \"84001\",\r\n\t\t\t\"unit\": \"12\"\r\n\t\t},\r\n\t\t\"driversLicenseNumber\": \"123456879\",\r\n\t\t\"driversLicenseState\": \"FL\",\r\n\t\t\"language\": \"EN\",\r\n\t\t\"rentOwn\": \"OWN\",\r\n\t\t\"timeAddressYears\": 0,\r\n\t\t\"timeAddressMonths\": 2,\r\n\t\t\"phoneOptIn\": true\r\n\t},\r\n\t\"supplementalDataInformation\": {\r\n\t\t\"customerPastApps\": \"2\",\r\n\t\t\"customerIP\": \"127.X.0.1\"\r\n\t},\r\n\t\"cartInformation\": {\r\n\t\t\"currencyCode\": \"USD\",\r\n\t\t\"taxAmount\": \"86.03\",\r\n\t\t\"shippingAmount\": \"15.00\",\r\n\t\t\"totalAmount\": \"3872.00\",\r\n\t\t\"discountAmount\": \"0.00\",\r\n\t\t\"orderId\": \"041299\",\r\n\t\t\"items\": [\r\n\t\t\t{\r\n\t\t\t\t\"price\": \"1.00\",\r\n\t\t\t\t\"itemId\": \"ABC\",\r\n\t\t\t\t\"description\": \"Mattress\",\r\n\t\t\t\t\"sku\": \"D1234\",\r\n\t\t\t\t\"quantity\": 1,\r\n\t\t\t\t\"leasable\":true\r\n\t\t\t}\r\n\t\t],\r\n\t\t\"shippingAddress\": {\r\n\t\t\t\"streetAddress\": \"456BroadwaySt\",\r\n\t\t\t\"city\": \"SaltLakeCity\",\r\n\t\t\t\"state\": \"UT\",\r\n\t\t\t\"country\": \"US\",\r\n\t\t\t\"postalCode\": \"84001\",\r\n\t\t\t\"unit\": \"12\"\r\n\t\t}\r\n\t},\r\n\t\"bankInformation\": {\r\n\t\t\"bankName\": \"superBank\",\r\n\t\t\"bankCity\": \"miami\",\r\n\t\t\"bankState\": \"FL\",\r\n\t\t\"routingNumber\": \"051501451\",\r\n\t\t\"accountNumber\": \"{{account_number}}\",\r\n\t\t\"directDeposit\": true\r\n\t},\r\n\t\"incomeInformation\": [{\r\n\t\t\"employerName\": \"AcmeCorporation\",\r\n\t\t\"frequency\": \"BI_WEEKLY\",\r\n\t\t\"incomeAmount\": \"5000.00\",\r\n\t\t\"phone\": \"1234567890\",\r\n\t\t\"phoneCountryCode\": \"US\",\r\n\t\t\"positionHeld\": \"Associate\",\r\n\t\t\"type\": \"FULL_TIME\",\r\n\t\t\"lastPayDate\": \"2020-02-07\",\r\n\t\t\"nextPayDate\": \"2020-02-21\"\r\n\t}],\r\n    \"complianceDisclosures\": {\r\n        \"termsConditions\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"electronicTransaction\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"prequalifiedTermsConditions\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"eConsent\": {\r\n            \"timestamp\": \"10/23/2022\"\r\n        }\r\n    }\r\n}"},"url":"{{baseUrl}}/platform/v1/application"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"309"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 21:55:44 GMT"},{"key":"x-amzn-RequestId","value":"851d86b2-205d-459f-ab0a-0ae317f87cb7"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P1mvCFRMPHcFV3Q="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f121e60-2d34f3d0a424dff4c50cfdbc"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 880eb84cefca849ee159a7c4d89c31ea.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"_llfqhKZaTjGHP6IrWAtmfcMgvxflPD5-FleE3Gjzn2GzoII_mblWA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"status\": 400,\n    \"error\": [\n        {\n            \"code\": \"customerInformation_mobilePhoneCountry_missing\",\n            \"type\": \"invalid_request_error\",\n            \"message\": \"Customer mobile phone country code is missing\"\n        },\n        {\n            \"code\": \"customerInformation_email_missing\",\n            \"type\": \"invalid_request_error\",\n            \"message\": \"Customer email address is missing\"\n        }\n    ]\n}"},{"id":"31e40ead-1589-4490-878e-6f0137e14bb3","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-Id","value":"123","type":"text"},{"key":"Idempotency-Key","value":"f18fc09a-450d-4ad8-a429-4b1d632fbb64","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"customerInformation\": {\r\n\t\t\"dobDate\": \"1977-07-07\",\r\n\t\t\"customerId\": \"{{social_4}}\",\r\n\t\t\"customerIdType\": \"SSN4\",\r\n\t\t\"mobilePhone\": \"1000000019\",\r\n\t\t\"mobilePhoneCountry\": \"US\",\r\n\t\t\"email\": \"test@test.com\",\r\n\t\t\"firstName\": \"John\",\r\n\t\t\"lastName\": \"Smith\",\r\n\t\t\"salutation\": \"MR\",\r\n\t\t\"billingAddress\": {\r\n\t\t\t\"streetAddress\": \"123MainSt\",\r\n\t\t\t\"city\": \"SaltLakeCity\",\r\n\t\t\t\"state\": \"UT\",\r\n\t\t\t\"country\": \"US\",\r\n\t\t\t\"postalCode\": \"84001\"\r\n\t\t},\r\n\t\t\"driversLicenseNumber\": \"123456879\",\r\n\t\t\"driversLicenseState\": \"FL\",\r\n\t\t\"language\": \"EN\",\r\n\t\t\"rentOwn\": \"OWN\",\r\n\t\t\"timeAddressYears\": 0,\r\n\t\t\"timeAddressMonths\": 2,\r\n\t\t\"phoneOptIn\": true\r\n\t},\r\n\t\"supplementalDataInformation\": {\r\n\t\t\"customerPastApps\": \"2\",\r\n\t\t\"customerIP\": \"127.X.0.1\",\r\n        \"annualIncome\": \"50000.00\"\r\n\t},\r\n\t\"cartInformation\": {\r\n\t\t\"currencyCode\": \"USD\",\r\n\t\t\"taxAmount\": \"35.00\",\r\n\t\t\"shippingAmount\": \"15.00\",\r\n\t\t\"totalAmount\": \"320.00\",\r\n\t\t\"discountAmount\": \"0.00\",\r\n\t\t\"orderId\": \"041299\",\r\n\t\t\"items\": [\r\n\t\t\t{\r\n\t\t\t\t\"price\": \"150.00\",\r\n\t\t\t\t\"itemId\": \"ABC\",\r\n\t\t\t\t\"description\": \"Mattress\",\r\n\t\t\t\t\"sku\": \"D1234\",\r\n\t\t\t\t\"quantity\": 1,\r\n\t\t\t\t\"leasable\":true\r\n\t\t\t},\r\n            \t\t\t{\r\n\t\t\t\t\"price\": \"100.00\",\r\n\t\t\t\t\"itemId\": \"DEF\",\r\n\t\t\t\t\"description\": \"TV\",\r\n\t\t\t\t\"sku\": \"D1235\",\r\n\t\t\t\t\"quantity\": 1,\r\n\t\t\t\t\"leasable\":true,\r\n                \"itemType\": \"PRODUCT\"\r\n\t\t\t},\r\n            \t\t\t{\r\n\t\t\t\t\"price\": \"20.00\",\r\n\t\t\t\t\"itemId\": \"LMN\",\r\n\t\t\t\t\"description\": \"Misc Fee\",\r\n\t\t\t\t\"sku\": \"A0001\",\r\n\t\t\t\t\"quantity\": 1,\r\n\t\t\t\t\"leasable\":true,\r\n                \"itemType\": \"SERVICE\"\r\n\t\t\t}\r\n\t\t],\r\n\t\t\"shippingAddress\": {\r\n\t\t\t\"streetAddress\": \"456BroadwaySt\",\r\n\t\t\t\"city\": \"SaltLakeCity\",\r\n\t\t\t\"state\": \"UT\",\r\n\t\t\t\"country\": \"US\",\r\n\t\t\t\"postalCode\": \"84001\"\r\n\t\t}\r\n\t},\r\n\t\"bankInformation\": {\r\n\t\t\"bankName\": \"superBank\",\r\n\t\t\"bankCity\": \"miami\",\r\n\t\t\"bankState\": \"FL\",\r\n\t\t\"routingNumber\": \"051501451\",\r\n\t\t\"accountNumber\": \"{{account_number}}\",\r\n\t\t\"directDeposit\": true\r\n\t},\r\n\t\"incomeInformation\": [{\r\n\t\t\"employerName\": \"AcmeCorporation\",\r\n\t\t\"frequency\": \"BI_WEEKLY\",\r\n\t\t\"incomeAmount\": \"5000.00\",\r\n\t\t\"phone\": \"1234567890\",\r\n\t\t\"phoneCountryCode\": \"US\",\r\n\t\t\"positionHeld\": \"Associate\",\r\n\t\t\"type\": \"FULL_TIME\",\r\n\t\t\"lastPayDate\": \"2020-02-07\",\r\n\t\t\"nextPayDate\": \"2020-02-21\"\r\n\t}],\r\n    \"complianceDisclosures\": {\r\n        \"termsConditions\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"electronicTransaction\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"prequalifiedTermsConditions\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"eConsent\": {\r\n            \"timestamp\": \"10/23/2022\"\r\n        }\r\n    }\r\n}"},"url":"{{baseUrl}}/platform/v1/application"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"501"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:22:59 GMT"},{"key":"x-amzn-RequestId","value":"e23d261c-bd07-4f18-a450-563b74cffb98"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P01-cF-yvHcFqOA="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d05c-8ca7863001e6343c261bb0c4"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"oIqDWJQfKIdYPDwb0_5KbpoIfWv8EZUOWffcIB1Ac026PPjmaSAwWQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"applicationId\": \"{{applicationId}}\",\n        \"applicationStatus\": \"APPROVED\",\n        \"applicationSubStatus\": \"\",\n        \"message\": \"Application Approved\",\n        \"approvedAmount\": \"1810.00\",\n        \"applicationType\": \"LTO\",\n        \"currencyCode\": \"USD\",\n        \"applicationCreateTime\": \"2021-01-04T14:48:43.364Z\",\n        \"applicationUpdateTime\": \"2021-01-04T14:48:43.366Z\",\n  \"stbs\": false,\n       \"additionalInformation\": {\n            \"customerInformation\": \"Verified\",\n            \"cartInformation\": \"Verified\",\n            \"bankInformation\": \"Verified\",\n            \"incomeInformation\": \"Verified\"\n        }\n            },\n    \"status\": 200\n}"},{"id":"0e9c729f-6a9e-4143-b305-5821a6848a2c","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-Id","value":"123","type":"text"},{"key":"Idempotency-Key","value":"f18fc09a-450d-4ad8-a429-4b1d632fbb64","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"customerInformation\": {\r\n\t\t\"dobDate\": \"1977-07-07\",\r\n\t\t\"customerId\": \"{{social_4}}\",\r\n\t\t\"customerIdType\": \"SSN4\",\r\n\t\t\"mobilePhone\": \"1000000019\",\r\n\t\t\"firstName\": \"John\",\r\n\t\t\"lastName\": \"Smith\",\r\n\t\t\"salutation\": \"MR\",\r\n\t\t\"billingAddress\": {\r\n\t\t\t\"streetAddress\": \"123MainSt\",\r\n\t\t\t\"city\": \"SaltLakeCity\",\r\n\t\t\t\"state\": \"UT\",\r\n\t\t\t\"country\": \"US\",\r\n\t\t\t\"postalCode\": \"84001\",\r\n\t\t\t\"unit\": \"12\"\r\n\t\t},\r\n\t\t\"driversLicenseNumber\": \"123456879\",\r\n\t\t\"driversLicenseState\": \"FL\",\r\n\t\t\"language\": \"EN\",\r\n\t\t\"rentOwn\": \"OWN\",\r\n\t\t\"timeAddressYears\": 0,\r\n\t\t\"timeAddressMonths\": 2,\r\n\t\t\"phoneOptIn\": true\r\n\t},\r\n\t\"supplementalDataInformation\": {\r\n\t\t\"customerPastApps\": \"2\",\r\n\t\t\"customerIP\": \"127.X.0.1\"\r\n\t},\r\n\t\"cartInformation\": {\r\n\t\t\"currencyCode\": \"USD\",\r\n\t\t\"taxAmount\": \"86.03\",\r\n\t\t\"shippingAmount\": \"15.00\",\r\n\t\t\"totalAmount\": \"3872.00\",\r\n\t\t\"discountAmount\": \"0.00\",\r\n\t\t\"orderId\": \"041299\",\r\n\t\t\"items\": [\r\n\t\t\t{\r\n\t\t\t\t\"price\": \"1.00\",\r\n\t\t\t\t\"itemId\": \"ABC\",\r\n\t\t\t\t\"description\": \"Mattress\",\r\n\t\t\t\t\"sku\": \"D1234\",\r\n\t\t\t\t\"quantity\": 1,\r\n\t\t\t\t\"leasable\":true\r\n\t\t\t}\r\n\t\t],\r\n\t\t\"shippingAddress\": {\r\n\t\t\t\"streetAddress\": \"456BroadwaySt\",\r\n\t\t\t\"city\": \"SaltLakeCity\",\r\n\t\t\t\"state\": \"UT\",\r\n\t\t\t\"country\": \"US\",\r\n\t\t\t\"postalCode\": \"84001\",\r\n\t\t\t\"unit\": \"12\"\r\n\t\t}\r\n\t},\r\n\t\"bankInformation\": {\r\n\t\t\"bankName\": \"superBank\",\r\n\t\t\"bankCity\": \"miami\",\r\n\t\t\"bankState\": \"FL\",\r\n\t\t\"routingNumber\": \"051501451\",\r\n\t\t\"accountNumber\": \"{{account_number}}\",\r\n\t\t\"directDeposit\": true\r\n\t},\r\n\t\"incomeInformation\": [{\r\n\t\t\"employerName\": \"AcmeCorporation\",\r\n\t\t\"frequency\": \"BI_WEEKLY\",\r\n\t\t\"incomeAmount\": \"5000.00\",\r\n\t\t\"phone\": \"1234567890\",\r\n\t\t\"phoneCountryCode\": \"US\",\r\n\t\t\"positionHeld\": \"Associate\",\r\n\t\t\"type\": \"FULL_TIME\",\r\n\t\t\"lastPayDate\": \"2020-02-07\",\r\n\t\t\"nextPayDate\": \"2020-02-21\"\r\n\t}],\r\n    \"complianceDisclosures\": {\r\n        \"termsConditions\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"electronicTransaction\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"prequalifiedTermsConditions\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"eConsent\": {\r\n            \"timestamp\": \"10/23/2022\"\r\n        }\r\n    }\r\n}"},"url":"{{baseUrl}}/platform/v1/application"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"309"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 21:55:44 GMT"},{"key":"x-amzn-RequestId","value":"851d86b2-205d-459f-ab0a-0ae317f87cb7"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P1mvCFRMPHcFV3Q="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f121e60-2d34f3d0a424dff4c50cfdbc"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 880eb84cefca849ee159a7c4d89c31ea.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"_llfqhKZaTjGHP6IrWAtmfcMgvxflPD5-FleE3Gjzn2GzoII_mblWA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"status\": 400,\n    \"error\": [\n        {\n            \"code\": \"customerInformation_mobilePhoneCountry_missing\",\n            \"type\": \"invalid_request_error\",\n            \"message\": \"Customer mobile phone country code is missing\"\n        },\n        {\n            \"code\": \"customerInformation_email_missing\",\n            \"type\": \"invalid_request_error\",\n            \"message\": \"Customer email address is missing\"\n        }\n    ]\n}"}],"_postman_id":"eaace84d-dcfc-4efe-ae30-19a71ef0bd3c"},{"name":"Application","id":"c1e4b341-7028-47fe-b1cd-58d7636b8ec9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"}],"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}","description":"<p>This endpoint retrieves the applications for the given application Id.</p>\n<h2 id=\"path-params\">PATH PARAMS</h2>\n<h2 id=\"applicationidinteger\"><code>applicationId:Integer</code></h2>\n<ul>\n<li>Required</li>\n</ul>\n<h1 id=\"response-object\">Response Object</h1>\n<h2 id=\"datahash\"><code>data:hash</code></h2>\n<h4 id=\"customerinformationhash\"><code>customerInformation:hash</code></h4>\n<h2 id=\"dobdatedate\"><code>dobDate:date</code></h2>\n<p>value with result of request : date of birth</p>\n<h2 id=\"customeridstring\"><code>customerId:string</code></h2>\n<p>value with result of request : customer Id</p>\n<h2 id=\"customeridtypestring\"><code>customerIdType:string</code></h2>\n<p>value with result of request : customer type</p>\n<h2 id=\"mobilephonestring\"><code>mobilePhone:string</code></h2>\n<p>value with result of request : phone number</p>\n<h2 id=\"mobilephonecountrystring\"><code>mobilePhoneCountry:string</code></h2>\n<p>value with result of request : country code of phone number</p>\n<h2 id=\"emailstring\"><code>email:string</code></h2>\n<p>value with result of request : Email id</p>\n<h2 id=\"firstnamestring\"><code>firstname:string</code></h2>\n<p>value with result of request : first name</p>\n<h2 id=\"lastnamestring\"><code>lastname:string</code></h2>\n<p>value with result of request : last name</p>\n<h2 id=\"billingaddresshash\"><code>billingAddress:hash</code></h2>\n<p><strong><code>streetAddress:string</code></strong></p>\n<p>value with result of request : street address</p>\n<p><strong><code>city:string</code></strong></p>\n<p>value with result of request : city</p>\n<p><strong><code>state:string</code></strong></p>\n<p>value with result of request : state</p>\n<p><strong><code>country:string</code></strong></p>\n<p>value with result of request : country</p>\n<p><strong><code>postalCode:string</code></strong></p>\n<p>value with result of request : postal code</p>\n<p><strong><code>unit:string</code></strong></p>\n<p>value with result of request : unit</p>\n<h2 id=\"cartinformationhash\"><code>cartInformation:hash</code></h2>\n<p><strong><code>currencyCode:string</code></strong></p>\n<p>value with result of request : currency code</p>\n<p><strong><code>taxAmount:string</code></strong></p>\n<p>value with result of request : tax amount</p>\n<p><strong><code>totalAmount:string</code></strong></p>\n<p>value with result of request : total amount</p>\n<p><strong><code>discountAmount:string</code></strong></p>\n<p>value with result of request : discount amount</p>\n<p><strong><code>items:hash</code></strong></p>\n<p><strong><code>price:string</code></strong></p>\n<p>value with result of request : price</p>\n<p><strong><code>itemId:string</code></strong></p>\n<p>value with result of request : item id</p>\n<p><strong><code>description:string</code></strong></p>\n<p>value with result of request : description</p>\n<p><strong><code>sku:string</code></strong></p>\n<p>value with result of request : sku code</p>\n<p><strong><code>quantity:integer</code></strong></p>\n<p>value with result of request : quantity</p>\n<h2 id=\"bankinformationhash\"><code>bankInformation:hash</code></h2>\n<p><strong><code>bankState:string</code></strong></p>\n<p>value with result of request : bank state</p>\n<p><strong><code>routingNumber:string</code></strong></p>\n<p>value with result of request : routing number</p>\n<p><strong><code>accountNumber:string</code></strong></p>\n<p>value with result of request : account number</p>\n<p><strong><code>directDeposit:boolean</code></strong></p>\n<p>value with result of request : direct deposit</p>\n<h2 id=\"incomeinformationhash\"><code>incomeInformation:hash</code></h2>\n<p><strong><code>employerName:string</code></strong></p>\n<p>value with result of request : employer name</p>\n<p><strong><code>frequency:string</code></strong></p>\n<p>value with result of request : frequency</p>\n<p><strong><code>incomeAmount:string</code></strong></p>\n<p>value with result of request : income amount</p>\n<p><strong><code>phone:string</code></strong></p>\n<p>value with result of request : phone</p>\n<p><strong><code>phoneCountryCode:string</code></strong></p>\n<p>value with result of request : phone country code</p>\n<p><strong><code>positionHeld:string</code></strong></p>\n<p>value with result of request : position held</p>\n<p><strong><code>type:string</code></strong></p>\n<p>value with result of request : type</p>\n<p><strong><code>payDateMeta:hash</code></strong></p>\n<p><strong><code>dayOfWeek:string</code></strong></p>\n<p>value with result of request : day of week</p>\n<p><strong><code>payDate:integer</code></strong></p>\n<p>value with result of request : pay date</p>\n<p><strong><code>secondPayDate:integer</code></strong></p>\n<p>value with result of request : second pay date</p>\n<h2 id=\"agreementinformationhash\"><code>agreementInformation:hash</code></h2>\n<p><strong><code>signedTime:string</code></strong></p>\n<p>value with result of request : signed time</p>\n<p><strong><code>signedMethod:string</code></strong></p>\n<p>value with result of request : signed method</p>\n<h2 id=\"applicationinformationhash\"><code>applicationInformation:hash</code></h2>\n<p><strong><code>applicationId:string</code></strong></p>\n<p>value with result of request : application Id</p>\n<p><strong><code>merchantId:string</code></strong></p>\n<p>value with result of request : merchant Id</p>\n<p><strong><code>applicationSubStatus:string</code></strong></p>\n<p>value with result of request : application sub status</p>\n<p><strong><code>applicationStatus:string</code></strong></p>\n<p>value with result of request : application status</p>\n<p><strong><code>approvedAmount:string</code></strong></p>\n<p>value with result of request : approved amount</p>\n<p><strong><code>applicationType:string</code></strong></p>\n<p>value with result of request : application type</p>\n<p><strong><code>applicationCreateTime:string</code></strong></p>\n<p>value with result of request : application creation time</p>\n<p><strong><code>applicationUpdateTime:string</code></strong></p>\n<p>value with result of request : application updation time</p>\n<p><strong><code>deliveryDate:string</code></strong></p>\n<p>value with result of request : delivery date</p>\n<p><strong><code>kona:boolean</code></strong></p>\n<p>value with result of request : kona</p>\n<p><strong><code>merchant:string</code></strong></p>\n<p>value with result of request : merchant</p>\n<p><strong><code>stbs:boolean</code></strong></p>\n<p>value with result of request : stbs</p>\n<h2 id=\"additionalinformationhash\"><code>additionalInformation:hash</code></h2>\n<p><strong><code>customerInformation:string</code></strong></p>\n<p>value with result of request : customer information</p>\n<p><strong><code>bankInformation:string</code></strong></p>\n<p>value with result of request : bank information</p>\n<p><strong><code>incomeInformation:string</code></strong></p>\n<p>value with result of request : income information</p>\n<p><strong><code>cartInformation:string</code></strong></p>\n<p>value with result of request : cart information</p>\n<p><strong><code>cardInformation:string</code></strong></p>\n<p>value with result of request : card information</p>\n<h2 id=\"compiliancedisclosureshash\"><code>compilianceDisclosures:hash</code></h2>\n<p><strong><code>eConsent:hash</code></strong></p>\n<p><strong><code>timestamp:string</code></strong></p>\n<p>value with result of request : timestamp</p>\n<h2 id=\"successboolean\"><code>success:boolean</code></h2>\n<blockquote>\n<p>&lt;ul &gt;&lt;li &gt;&lt;p &gt;Value with the result of the request. Possible values are TRUE or False&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt; </p>\n</blockquote>\n<h2 id=\"statusinteger\"><code>status:integer</code></h2>\n<blockquote>\n<p>&lt;ul &gt;&lt;li &gt;&lt;p &gt;Value with status code of the request. For example: 200, 400, 404&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;</p>\n</blockquote>\n","urlObject":{"path":["platform","v1","application","{{applicationId}}"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"2ea11707-8a04-4ed1-812f-f6779f73b5f4","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer pORU5GTWtNeE1UQkJPVE5DUl....JiWYvnmRQSSCozUr6Xt7RXRK","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Content-Type","value":"application/json"},{"key":"Request-Id","value":"123"}],"url":"https://api-sandbox.snapfinance.com/platform/v1/application/123"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"136"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 15:58:33 GMT"},{"key":"x-amzn-RequestId","value":"e686de7a-4a8b-472a-99bb-c3810ca266ad"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P0yadGxZPHcFgJQ="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11caa9-a9e85c6759f66b046f148f15"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 4c6f3dc807d213a0da966381e4886b08.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"YxjE8a_vRBiTtIchTjpRj97HIPvHhb2UFEne1JzTFnB4twNJS3u6QA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"status\": 400,\n    \"error\": [\n        {\n            \"type\": \"invalid_request_error\",\n            \"code\": \"application_invalid\",\n            \"message\": \"Application not found\"\n        }\n    ]\n}"},{"id":"111569e0-933f-42f2-a1d9-bcfae9f44de5","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer pORU5GTWtNeE1UQkJPVE5DUl....JiWYvnmRQSSCozUr6Xt7RXRK","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Content-Type","value":"application/json"},{"key":"Request-Id","value":"123"}],"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"244"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:24:19 GMT"},{"key":"x-amzn-RequestId","value":"f42aea7e-5211-4753-a26a-e8db4014d312"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P02LeGszvHcFsxg="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d0af-3504dad84d30e4d08259a3b0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"jen45MDpH8DQoOEaPFvDVJdGipmCzTuiyeN1iMqlvOUBQG5Kixtyow=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"customerInformation\": {\n            \"dobDate\": \"1977-07-07\",\n            \"customerId\": \"****\",\n            \"customerIdType\": \"SSN4\",\n            \"mobilePhone\": \"1000000019\",\n            \"mobilePhoneCountry\": \"US\",\n            \"email\": \"test@test.com\",\n            \"firstName\": \"John\",\n            \"lastName\": \"Smith\",\n            \"billingAddress\": {\n                \"streetAddress\": \"123mainst\",\n                \"city\": \"Saltlakecity\",\n                \"state\": \"UT\",\n                \"country\": \"US\",\n                \"postalCode\": \"84001\"\n            }\n        },\n        \"cartInformation\": {\n            \"currencyCode\": \"USD\",\n            \"taxAmount\": \"35.00\",\n            \"shippingAmount\": \"15.00\",\n            \"totalAmount\": \"320.00\",\n            \"discountAmount\": \"0.00\",\n            \"items\": [\n                {\n                    \"price\": \"150.00\",\n                    \"itemId\": \"ABC\",\n                    \"description\": \"Mattress\",\n                    \"sku\": \"D1234\",\n                    \"quantity\": 1\n                },\n                {\n                    \"price\": \"100.00\",\n                    \"itemId\": \"DEF\",\n                    \"description\": \"TV\",\n                    \"sku\": \"D1235\",\n                    \"quantity\": 1\n                },\n                {\n                    \"price\": \"20.00\",\n                    \"itemId\": \"LMN\",\n                    \"description\": \"Misc Fee\",\n                    \"sku\": \"A0001\",\n                    \"quantity\": 1\n                }\n            ]\n        },\n        \"bankInformation\": {\n            \"bankName\": \"Superbank\",\n            \"bankCity\": \"Miami\",\n            \"bankState\": \"FL\",\n            \"routingNumber\": \"051501451\",\n            \"accountNumber\": \"**********\",\n            \"directDeposit\": true\n        },\n        \"incomeInformation\": [\n            {\n                \"employerName\": \"AcmeCorporation\",\n                \"frequency\": \"BI_WEEKLY\",\n                \"incomeAmount\": \"5000.00\",\n                \"phone\": \"1234567890\",\n                \"phoneCountryCode\": \"US\",\n                \"positionHeld\": \"Associate\",\n                \"type\": \"FULL_TIME\",\n                \"payDateMeta\": {\n                    \"dayOfWeek\": \"FRIDAY\",\n                    \"payDate\": 0,\n                    \"secondPayDate\": 0\n                }\n            }\n        ],\n        \"agreementInformation\": {\n            \"signedTime\": \"null\",\n            \"signedMethod\": \"Acceptance\"\n        },\n        \"applicationInformation\": {\n            \"applicationId\": \"240521000XUT\",\n            \"merchantId\": \"490246194\",\n            \"applicationSubStatus\": \"\",\n            \"applicationStatus\": \"APPROVED\",\n            \"approvedAmount\": \"5000.00\",\n            \"applicationType\": \"LTO\",\n            \"applicationCreateTime\": \"2024-05-22T05:26:00.145Z\",\n            \"applicationUpdateTime\": \"2024-05-22T05:26:03.956Z\",\n            \"deliveryDate\": \"2024-05-28\",\n            \"kona\": true,\n            \"snapExpress\": true,\n            \"merchant\": \"Randall Sandbox Store\",\n            \"snapCardToken\": \"qkS0vf5dwA/7SWvD0Z8hTKLqbegc8hrIjDjetm9cEQQHatdDO5nmzn+sBHo8UrD9ABUbOj2HPBqYtE/3UqAtGjxbnCpKWnDVOgS0t391b4JtmD3mXqDZwhd6IwfZ6YJRNreD0uvgaO/em9fDar8BB4IH6l0+GaX9\",\n            \"encodedId\": \"967857307\",\n            \"expirationDate\": \"2024-06-19\",\n            \"stbs\": false,\n            \"cohortL\": 6\n        },\n        \"additionalInformation\": {\n            \"customerInformation\": \"Verified\",\n            \"bankInformation\": \"Verified\",\n            \"incomeInformation\": \"Verified\",\n            \"cartInformation\": \"Verified\",\n            \"cardInformation\": \"Pending\"\n        }\n    },\n    \"success\": true,\n    \"status\": 200\n}"},{"id":"2021b234-32de-4e54-b863-e65db477b420","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer pORU5GTWtNeE1UQkJPVE5DUl....JiWYvnmRQSSCozUr6Xt7RXRK","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Content-Type","value":"application/json"},{"key":"Request-Id","value":"123"}],"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"244"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:24:19 GMT"},{"key":"x-amzn-RequestId","value":"f42aea7e-5211-4753-a26a-e8db4014d312"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P02LeGszvHcFsxg="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d0af-3504dad84d30e4d08259a3b0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"jen45MDpH8DQoOEaPFvDVJdGipmCzTuiyeN1iMqlvOUBQG5Kixtyow=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"customerInformation\": {\n            \"dobDate\": \"1977-07-07\",\n            \"customerId\": \"****\",\n            \"customerIdType\": \"SSN4\",\n            \"mobilePhone\": \"1000000019\",\n            \"mobilePhoneCountry\": \"US\",\n            \"email\": \"test@test.com\",\n            \"firstName\": \"John\",\n            \"lastName\": \"Smith\",\n            \"billingAddress\": {\n                \"streetAddress\": \"123mainst\",\n                \"city\": \"Saltlakecity\",\n                \"state\": \"UT\",\n                \"country\": \"US\",\n                \"postalCode\": \"84001\"\n            }\n        },\n        \"cartInformation\": {\n            \"currencyCode\": \"USD\",\n            \"taxAmount\": \"35.00\",\n            \"shippingAmount\": \"15.00\",\n            \"totalAmount\": \"320.00\",\n            \"discountAmount\": \"0.00\",\n            \"items\": [\n                {\n                    \"price\": \"150.00\",\n                    \"itemId\": \"ABC\",\n                    \"description\": \"Mattress\",\n                    \"sku\": \"D1234\",\n                    \"quantity\": 1\n                },\n                {\n                    \"price\": \"100.00\",\n                    \"itemId\": \"DEF\",\n                    \"description\": \"TV\",\n                    \"sku\": \"D1235\",\n                    \"quantity\": 1\n                },\n                {\n                    \"price\": \"20.00\",\n                    \"itemId\": \"LMN\",\n                    \"description\": \"Misc Fee\",\n                    \"sku\": \"A0001\",\n                    \"quantity\": 1\n                }\n            ]\n        },\n        \"bankInformation\": {\n            \"bankName\": \"Superbank\",\n            \"bankCity\": \"Miami\",\n            \"bankState\": \"FL\",\n            \"routingNumber\": \"051501451\",\n            \"accountNumber\": \"**********\",\n            \"directDeposit\": true\n        },\n        \"incomeInformation\": [\n            {\n                \"employerName\": \"AcmeCorporation\",\n                \"frequency\": \"BI_WEEKLY\",\n                \"incomeAmount\": \"5000.00\",\n                \"phone\": \"1234567890\",\n                \"phoneCountryCode\": \"US\",\n                \"positionHeld\": \"Associate\",\n                \"type\": \"FULL_TIME\",\n                \"payDateMeta\": {\n                    \"dayOfWeek\": \"FRIDAY\",\n                    \"payDate\": 0,\n                    \"secondPayDate\": 0\n                }\n            }\n        ],\n        \"agreementInformation\": {\n            \"signedTime\": \"null\",\n            \"signedMethod\": \"Acceptance\"\n        },\n        \"applicationInformation\": {\n            \"applicationId\": \"240521000XUT\",\n            \"merchantId\": \"490246194\",\n            \"applicationSubStatus\": \"\",\n            \"applicationStatus\": \"APPROVED\",\n            \"approvedAmount\": \"5000.00\",\n            \"applicationType\": \"LTO\",\n            \"applicationCreateTime\": \"2024-05-22T05:26:00.145Z\",\n            \"applicationUpdateTime\": \"2024-05-22T05:26:03.956Z\",\n            \"deliveryDate\": \"2024-05-28\",\n            \"kona\": true,\n            \"snapExpress\": true,\n            \"merchant\": \"Randall Sandbox Store\",\n            \"snapCardToken\": \"qkS0vf5dwA/7SWvD0Z8hTKLqbegc8hrIjDjetm9cEQQHatdDO5nmzn+sBHo8UrD9ABUbOj2HPBqYtE/3UqAtGjxbnCpKWnDVOgS0t391b4JtmD3mXqDZwhd6IwfZ6YJRNreD0uvgaO/em9fDar8BB4IH6l0+GaX9\",\n            \"encodedId\": \"967857307\",\n            \"expirationDate\": \"2024-06-19\",\n            \"stbs\": false,\n            \"cohortL\": 6\n        },\n        \"additionalInformation\": {\n            \"customerInformation\": \"Verified\",\n            \"bankInformation\": \"Verified\",\n            \"incomeInformation\": \"Verified\",\n            \"cartInformation\": \"Verified\",\n            \"cardInformation\": \"Pending\"\n        }\n    },\n    \"success\": true,\n    \"status\": 200\n}"},{"id":"a2527142-7c3c-4da0-a5d3-82069be4ccbd","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer pORU5GTWtNeE1UQkJPVE5DUl....JiWYvnmRQSSCozUr6Xt7RXRK","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Content-Type","value":"application/json"},{"key":"Request-Id","value":"123"}],"url":"https://api-sandbox.snapfinance.com/platform/v1/application/123"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"136"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 15:58:33 GMT"},{"key":"x-amzn-RequestId","value":"e686de7a-4a8b-472a-99bb-c3810ca266ad"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P0yadGxZPHcFgJQ="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11caa9-a9e85c6759f66b046f148f15"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 4c6f3dc807d213a0da966381e4886b08.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"YxjE8a_vRBiTtIchTjpRj97HIPvHhb2UFEne1JzTFnB4twNJS3u6QA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"status\": 400,\n    \"error\": [\n        {\n            \"type\": \"invalid_request_error\",\n            \"code\": \"application_invalid\",\n            \"message\": \"Application not found\"\n        }\n    ]\n}"}],"_postman_id":"c1e4b341-7028-47fe-b1cd-58d7636b8ec9"},{"name":"Application Status","event":[{"listen":"test","script":{"exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});\r","pm.test(\"Success message\", function () {\r","    pm.expect(pm.response.text()).to.include(\"success\");\r","});"],"type":"text/javascript","id":"533d42c5-865f-4696-b748-d5994000e4f6"}}],"id":"9a4dbfe2-65dc-4233-9103-0907b4fd71fe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"<p>(optional - ID generated by the client)</p>\n","type":"text"}],"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/status","description":"<h1 id=\"application-status\">Application Status</h1>\n<p>This endpoint gets the current status of the application.</p>\n<h2 id=\"path-params\">PATH PARAMS</h2>\n<blockquote>\n<h2 id=\"applicationidstring\"><code>applicationId:string</code></h2>\n<ul>\n<li>Required</li>\n<li>ApplicationId is returned when calling the create application endpoint</li>\n</ul>\n</blockquote>\n<h2 id=\"possible-status-values\">Possible Status Values</h2>\n<ul>\n<li>PREQUALIFIED : Application was prequalified</li>\n<li>PENDING : Application is being created </li>\n<li>APPROVED : Application approved</li>\n<li>PENDING_SIGNED_DOCS : Customer needs to sign the agreement </li>\n<li>PENDING_DEL : Agreement was signed, pending product delivery</li>\n<li>COMPLETE : Product delivered. Application ready</li>\n<li>DENIED : Application denied</li>\n<li>WITHDRAWN : Application withdrawn</li>\n</ul>\n<h2 id=\"possible-sub-status-values\">Possible Sub-status Values</h2>\n<ul>\n<li>PENDING_SHIPPING : Pending product shipping</li>\n<li>SHIPPED : Product(s) shipped</li>\n<li>PARTIALLY_REFUNDED : Canceled item within an originated order</li>\n<li>REFUNDED : Products totally refunded</li>\n<li>PENDING_CART_ADJUSTMENT : Cart amount higher than the approved amount</li>\n</ul>\n<h1 id=\"response-object\">Response Object</h1>\n<h2 id=\"datahash\"><code>data:hash</code></h2>\n<blockquote>\n<h4 id=\"applicationstatusstring\"><code>applicationStatus:string</code></h4>\n<ul>\n<li>Status of the application</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"applicationsubstatusstring\"><code>applicationSubStatus:string</code></h4>\n<ul>\n<li>Sub-status of the application</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"applicationidstring-1\"><code>applicationId:string</code></h4>\n<ul>\n<li>Application ID</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"applicationtypestring\"><code>applicationType:string</code></h4>\n<ul>\n<li>Application type. Possible values are LTO for lease merchants and SLN for loan merchants</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"approvedamountstring\"><code>approvedAmount:string</code></h4>\n<ul>\n<li>Approved amount</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"applicationcreatetimestring\"><code>applicationCreateTime:string</code></h4>\n<ul>\n<li>Application creation time in UTC Standard. Example 2020-02-21T18:00:00Z</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"applicationupdatetimestring\"><code>applicationUpdateTime:string</code></h4>\n<ul>\n<li>Application update time in UTC Standard. Example 2020-02-21T18:00:00Z</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"additionalinformationhash\"><code>additionalInformation:hash</code></h4>\n<ul>\n<li>Information of the application</li>\n</ul>\n<h4 id=\"additionalinformationcustomerinformationstring\"><code>additionalInformation.customerInformation:string</code></h4>\n<blockquote>\n<ul>\n<li>Status of the customer information. Possible values are  VERIFIED or PENDING</li>\n</ul>\n</blockquote>\n<h4 id=\"additionalinformationbankinformationstring\"><code>additionalInformation.bankInformation:string</code></h4>\n<blockquote>\n<ul>\n<li>Status of the bank information. Possible values are  VERIFIED or PENDING</li>\n</ul>\n</blockquote>\n<h4 id=\"additionalinformationincomeinformationstring\"><code>additionalInformation.incomeInformation:string</code></h4>\n<blockquote>\n<ul>\n<li>Status of the income information. Possible values are  VERIFIED or PENDING</li>\n</ul>\n</blockquote>\n<h4 id=\"additionalinformationcartinformationstring\"><code>additionalInformation.cartInformation:string</code></h4>\n<blockquote>\n<ul>\n<li>Status of the cart information. Possible values are  VERIFIED or PENDING</li>\n</ul>\n</blockquote>\n</blockquote>\n<blockquote>\n<h4 id=\"reapplydatestring\"><code>reApplyDate:string</code></h4>\n<ul>\n<li>Only with DENIED status, it indicates the date when the customer can reapply. Example 2020-02-21</li>\n</ul>\n</blockquote>\n<h2 id=\"successboolean\"><code>success:boolean</code></h2>\n<blockquote>\n<ul>\n<li>Value with the result of the request. Possible values are TRUE or FALSE</li>\n</ul>\n</blockquote>\n<h2 id=\"statusinteger\"><code>status:integer</code></h2>\n<blockquote>\n<ul>\n<li>Value with status code of the request. For example: 200, 400, 404</li>\n</ul>\n</blockquote>\n","urlObject":{"path":["platform","v1","application","{{applicationId}}","status"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"041570bd-ddb0-493f-8aff-1be5576d8dac","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-Id","value":"","description":"(optional)","type":"text"},{"key":"Content-Type","value":"application/json"}],"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/status"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"403"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:24:00 GMT"},{"key":"x-amzn-RequestId","value":"930f2434-ec1e-4ebf-8b33-b06582917abb"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P02InFzZPHcFSJg="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d09d-a8df3630a441a87823d4b3c0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"KpjwnZUscUgG94UQBRc9j34v_i47NHzBaMUa6weVzDo_UA3YrLRLlQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"status\": 200,\n    \"data\": {\n        \"applicationStatus\": \"APPROVED\",\n        \"applicationSubStatus\": \"\",\n        \"applicationId\": \"{{applicationId}}\",\n        \"approvedAmount\": \"3520.00\",\n        \"applicationCreateTime\": \"2020-07-17T10:22:55.105Z\",\n        \"applicationUpdateTime\": \"2020-07-17T10:23:28.493Z\",\n        \"additionalInformation\": {\n            \"customerInformation\": \"Verified\",\n            \"bankInformation\": \"Verified\",\n            \"incomeInformation\": \"Verified\",\n            \"cartInformation\": \"Verified\"\n        }\n    }\n}"},{"id":"520bae7c-9c73-402c-b6ca-e4a558b48824","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-Id","value":"","description":"(optional)","type":"text"},{"key":"Content-Type","value":"application/json"}],"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/status"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"133"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 16 Jul 2020 15:49:56 GMT"},{"key":"x-amzn-RequestId","value":"10aaa6ec-e54a-4307-a5a7-1f23473556db"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"PxeNfEZcvHcFaYw="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f107723-680f497015e9048e20a08d84"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 f9c5e5b9a4e739792ecd46afc5cf785d.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"Sj04b1p_EZavyRj0_bQt4EyExO4i4UGB5zNIhMnksgqCstwp1UptFw=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"error\": [\n        {\n            \"code\": \"application_not_found\",\n            \"type\": \"validation_error\",\n            \"message\": \"Application not found\"\n        }\n    ],\n    \"status\": 404\n}"},{"id":"2d7c6770-925b-4057-8aea-8d423f8a7986","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-Id","value":"","description":"(optional)","type":"text"},{"key":"Content-Type","value":"application/json"}],"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/status"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"403"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:24:00 GMT"},{"key":"x-amzn-RequestId","value":"930f2434-ec1e-4ebf-8b33-b06582917abb"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P02InFzZPHcFSJg="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d09d-a8df3630a441a87823d4b3c0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"KpjwnZUscUgG94UQBRc9j34v_i47NHzBaMUa6weVzDo_UA3YrLRLlQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"status\": 200,\n    \"data\": {\n        \"applicationStatus\": \"APPROVED\",\n        \"applicationSubStatus\": \"\",\n        \"applicationId\": \"{{applicationId}}\",\n        \"approvedAmount\": \"3520.00\",\n        \"applicationCreateTime\": \"2020-07-17T10:22:55.105Z\",\n        \"applicationUpdateTime\": \"2020-07-17T10:23:28.493Z\",\n        \"additionalInformation\": {\n            \"customerInformation\": \"Verified\",\n            \"bankInformation\": \"Verified\",\n            \"incomeInformation\": \"Verified\",\n            \"cartInformation\": \"Verified\"\n        }\n    }\n}"},{"id":"bc20f906-d12b-4e2f-8314-3f2713d26648","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-Id","value":"","description":"(optional)","type":"text"},{"key":"Content-Type","value":"application/json"}],"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/status"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"133"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 16 Jul 2020 15:49:56 GMT"},{"key":"x-amzn-RequestId","value":"10aaa6ec-e54a-4307-a5a7-1f23473556db"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"PxeNfEZcvHcFaYw="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f107723-680f497015e9048e20a08d84"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 f9c5e5b9a4e739792ecd46afc5cf785d.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"Sj04b1p_EZavyRj0_bQt4EyExO4i4UGB5zNIhMnksgqCstwp1UptFw=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"error\": [\n        {\n            \"code\": \"application_not_found\",\n            \"type\": \"validation_error\",\n            \"message\": \"Application not found\"\n        }\n    ],\n    \"status\": 404\n}"}],"_postman_id":"9a4dbfe2-65dc-4233-9103-0907b4fd71fe"},{"name":"Payment Plan","event":[{"listen":"test","script":{"exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});\r","pm.test(\"Success message\", function () {\r","    pm.expect(pm.response.text()).to.include(\"success\");\r","});"],"type":"text/javascript","id":"b6ae2d29-c64f-4fb4-8308-fb9637641cdb"}}],"id":"19dd6f37-1f37-442e-a33b-4d58650e2679","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"<p>(optional - ID generated by the client)</p>\n","type":"text"}],"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/paymentPlan","description":"<h1 id=\"payment-plan\">Payment Plan</h1>\n<p>This endpoint gets the payment schedule. Read the fields as leaseField or loanField depending on the merchant type</p>\n<h2 id=\"path-params\">PATH PARAMS</h2>\n<blockquote>\n<h2 id=\"applicationidstring\"><code>applicationId:string</code></h2>\n<ul>\n<li>Required</li>\n<li>ApplicationId is returned when calling the create application endpoint</li>\n</ul>\n</blockquote>\n<h1 id=\"response-object\">Response Object</h1>\n<h2 id=\"datahash\"><code>data:hash</code></h2>\n<blockquote>\n<h3 id=\"documentshash\"><code>documents:hash</code></h3>\n<ul>\n<li>Documents details<blockquote>\n<h4 id=\"documentsdocumentstring\"><code>documents.document:string</code></h4>\n</blockquote>\n</li>\n</ul>\n<blockquote>\n<ul>\n<li>Document type agreement/addendum</li>\n</ul>\n<h4 id=\"documentssignstring\"><code>documents.sign:string</code></h4>\n<ul>\n<li>Sign document url</li>\n</ul>\n<h4 id=\"documentsprioritystring\"><code>documents.priority:string</code></h4>\n<ul>\n<li>priority</li>\n</ul>\n<h4 id=\"documentsrenderstring\"><code>documents.render:string</code></h4>\n<ul>\n<li>Get agreement url</li>\n</ul>\n</blockquote>\n</blockquote>\n<blockquote>\n<h3 id=\"paymentplansummaryhash\"><code>paymentPlanSummary:hash</code></h3>\n<ul>\n<li>Payment plan details<blockquote>\n<h4 id=\"paymentplansummarylastpaymentamountstring\"><code>paymentPlanSummary.lastPaymentAmount:string</code></h4>\n</blockquote>\n</li>\n</ul>\n<blockquote>\n<ul>\n<li>Last payment amount</li>\n</ul>\n<h4 id=\"paymentplansummarypaymentamountstring\"><code>paymentPlanSummary.paymentAmount:string</code></h4>\n<ul>\n<li>Regular payment amount</li>\n</ul>\n<h4 id=\"paymentplansummaryleaseterminmonthsstring\"><code>paymentPlanSummary.leaseTermInMonths:string</code></h4>\n<ul>\n<li>Lease/Loan term</li>\n</ul>\n<h4 id=\"paymentplansummaryprocessingfeestring\"><code>paymentPlanSummary.processingFee:string</code></h4>\n<ul>\n<li>Processing fee amount</li>\n</ul>\n<h4 id=\"paymentplansummaryleaseamountstring\"><code>paymentPlanSummary.leaseAmount:string</code></h4>\n<ul>\n<li>Lease/Loan amount</li>\n</ul>\n<h4 id=\"paymentplansummaryleasecoststring\"><code>paymentPlanSummary.leaseCost:string</code></h4>\n<ul>\n<li>Lease/Loan cost</li>\n</ul>\n<h4 id=\"paymentplansummaryleasetotalamountstring\"><code>paymentPlanSummary.leaseTotalAmount:string</code></h4>\n<ul>\n<li>Lease/Loan total amount</li>\n</ul>\n<h4 id=\"paymentplansummarypaymentfrequencystring\"><code>paymentPlanSummary.paymentFrequency:string</code></h4>\n<ul>\n<li>Payment frequency</li>\n</ul>\n<h4 id=\"paymentplansummarycurrencycodestring\"><code>paymentPlanSummary.currencyCode:string</code></h4>\n<ul>\n<li>Currency code</li>\n</ul>\n<h4 id=\"paymentplansummarystbsboolean\"><code>paymentPlanSummary.stbs:boolean</code></h4>\n<ul>\n<li>Sales tax by snap flag</li>\n</ul>\n<h4 id=\"paymentplansummarystbssalestaxpercentstring\"><code>paymentPlanSummary.stbsSalesTaxPercent:string</code></h4>\n<ul>\n<li>Sales tax percent</li>\n</ul>\n<h4 id=\"paymentplansummarycpodatestring\"><code>paymentPlanSummary.cpoDate:string</code></h4>\n<ul>\n<li>Cash payoff date</li>\n</ul>\n<h4 id=\"paymentplansummarycpoamountstring\"><code>paymentPlanSummary.cpoAmount:string</code></h4>\n<ul>\n<li>Cash payoff amount</li>\n</ul>\n<h4 id=\"paymentplansummarycponumberofpaymentsstring\"><code>paymentPlanSummary.cpoNumberOfPayments:string</code></h4>\n<ul>\n<li>Cash payoff number of payments</li>\n</ul>\n<h4 id=\"paymentplansummarycpopaymentsamountstring\"><code>paymentPlanSummary.cpoPaymentsAmount:string</code></h4>\n<ul>\n<li>Cash payoff payment amount</li>\n</ul>\n<h4 id=\"paymentplansummarycpolastpaymentamountstring\"><code>paymentPlanSummary.cpoLastPaymentAmount:string</code></h4>\n<ul>\n<li>Cash payoff last payment amount</li>\n</ul>\n<h4 id=\"paymentplansummarycpoleasecoststring\"><code>paymentPlanSummary.cpoLeaseCost:string</code></h4>\n<ul>\n<li>Cash payoff least cost</li>\n</ul>\n<h4 id=\"paymentplansummaryinitialpaymentstring\"><code>paymentPlanSummary.initialPayment:string</code></h4>\n<ul>\n<li>Initial payment amount</li>\n</ul>\n<h4 id=\"paymentplansummarynumberofpaymentswithsameamountstring\"><code>paymentPlanSummary.numberOfPaymentsWithSameAmount:string</code></h4>\n<ul>\n<li>Number of payments with same amount</li>\n<li>Initial payment amount</li>\n</ul>\n<h4 id=\"paymentplansummarytotalnumberofpaymentsstring\"><code>paymentPlanSummary.totalNumberOfPayments:string</code></h4>\n<ul>\n<li>Total number of payments</li>\n</ul>\n<h4 id=\"paymentplansummarylastpaymentdatestring\"><code>paymentPlanSummary.lastPaymentDate:string</code></h4>\n<ul>\n<li>Last payment date</li>\n</ul>\n</blockquote>\n</blockquote>\n<h2 id=\"successboolean\"><code>success:boolean</code></h2>\n<blockquote>\n<ul>\n<li>Value with the result of the request. Possible values are TRUE or False</li>\n</ul>\n</blockquote>\n<h2 id=\"statusinteger\"><code>status:integer</code></h2>\n<blockquote>\n<ul>\n<li>Value with status code of the request. For example: 200, 400, 404</li>\n</ul>\n</blockquote>\n","urlObject":{"path":["platform","v1","application","{{applicationId}}","paymentPlan"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"fbb3ffe2-c021-4ec1-8fd9-22b7f0aa4b19","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Content-Type","value":"application/json"},{"key":"Request-Id","value":"123"}],"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/paymentPlan"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"244"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:24:19 GMT"},{"key":"x-amzn-RequestId","value":"f42aea7e-5211-4753-a26a-e8db4014d312"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P02LeGszvHcFsxg="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d0af-3504dad84d30e4d08259a3b0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"jen45MDpH8DQoOEaPFvDVJdGipmCzTuiyeN1iMqlvOUBQG5Kixtyow=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"cpoDays\": 100,\n        \"documents\": [\n            {\n                \"document\": \"agreement\",\n                \"priority\": 1,\n                \"render\": \"https://api-qa.snapfinance.com/platform/v1/application/2410280079UT/agreement?renderType=html&document=agreement\",\n                \"sign\": \"https://api-qa.snapfinance.com/platform/v1/application/2410280079UT/signed?document=agreement\"\n            }\n        ],\n        \"paymentPlanSummary\": {\n            \"cpoAmount\": \"330.00\",\n            \"cpoDate\": \"2025-05-05\",\n            \"cpoLastPaymentAmount\": \"47.16\",\n            \"cpoLeaseCost\": \"0.00\",\n            \"cpoNumberOfPayments\": \"6\",\n            \"cpoPaymentsAmount\": \"47.14\",\n            \"currencyCode\": \"USD\",\n            \"finalNumberOfPayments\": \"39\",\n            \"firstPaymentDate\": \"2025-02-14\",\n            \"hangtagState\": false,\n            \"initialPayment\": \"0.00\",\n            \"lastPaymentAmount\": \"19.48\",\n            \"lastPaymentDate\": \"2026-07-31\",\n            \"leaseAmount\": \"320.00\",\n            \"leaseCost\": \"442.00\",\n            \"leaseTermInMonths\": \"18\",\n            \"leaseTotalAmount\": \"762.00\",\n            \"numberOfPaymentsWithSameAmount\": \"38\",\n            \"paymentAmount\": \"19.54\",\n            \"paymentFrequency\": \"BI_WEEKLY\",\n            \"processingFee\": \"10.00\",\n            \"propertyCondition\": \"New\",\n            \"stbs\": false,\n            \"stbsSalesTaxPercent\": \"0.00\",\n            \"summaryAcceptanceRequired\": false,\n            \"totalNumberOfPayments\": \"39\"\n        }\n    },\n    \"status\": 200,\n    \"success\": true\n}"},{"id":"4af957c7-4eda-4a23-a43f-923d7ae1ba66","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Content-Type","value":"application/json"},{"key":"Request-Id","value":"123"}],"url":{"raw":"{{baseUrl}}/platform/v1/application/{{applicationId}}/paymentPlan?frequency=BW","host":["{{baseUrl}}"],"path":["platform","v1","application","{{applicationId}}","paymentPlan"],"query":[{"key":"frequency","value":"BW"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"136"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 15:58:33 GMT"},{"key":"x-amzn-RequestId","value":"e686de7a-4a8b-472a-99bb-c3810ca266ad"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P0yadGxZPHcFgJQ="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11caa9-a9e85c6759f66b046f148f15"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 4c6f3dc807d213a0da966381e4886b08.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"YxjE8a_vRBiTtIchTjpRj97HIPvHhb2UFEne1JzTFnB4twNJS3u6QA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"status\": 404,\n    \"error\": [\n        {\n            \"code\": \"application_invalid\",\n            \"type\": \"invalid_request_error\",\n            \"message\": \"Application not found\"\n        }\n    ]\n}"},{"id":"62df8f4f-a32a-469a-a901-951a3e00fee3","name":"Oklahoma","originalRequest":{"method":"GET","header":[{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"}],"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/paymentPlan"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1298"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Mon, 28 Oct 2024 05:49:08 GMT"},{"key":"X-Amzn-Trace-Id","value":"Root=1-671f25d3-71b827a74d0ce4ea2c443859"},{"key":"x-amzn-RequestId","value":"a495ab78-002c-4fa2-879c-193e421f9a10"},{"key":"X-XSS-Protection","value":"0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"AWLZIGy1vHcEv5Q="},{"key":"Cache-Control","value":"no-store"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 09a1a54fdbf13d19927a903f4a7d5186.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"SEA900-P2"},{"key":"X-Amz-Cf-Id","value":"jKBBVOPfk0QQWLHUEXf79MNyBoYph7MLZLGoRj7xY5c80hxih3gAPA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"documents\": [\n            {\n                \"document\": \"addendum\",\n                \"sign\": \"https://api-qa.snapfinance.com/platform/v1/application/241027000MOK/signed?document=addendum\",\n                \"priority\": 1,\n                \"render\": \"https://api-qa.snapfinance.com/platform/v1/application/241027000MOK/agreement?renderType=html&document=addendum\"\n            },\n            {\n                \"document\": \"agreement\",\n                \"sign\": \"https://api-qa.snapfinance.com/platform/v1/application/241027000MOK/signed?document=agreement\",\n                \"priority\": 2,\n                \"render\": \"https://api-qa.snapfinance.com/platform/v1/application/241027000MOK/agreement?renderType=html&document=agreement\"\n            }\n        ],\n        \"paymentPlanSummary\": {\n            \"lastPaymentAmount\": \"19.48\",\n            \"paymentAmount\": \"19.54\",\n            \"leaseTermInMonths\": \"18\",\n            \"processingFee\": \"10.00\",\n            \"leaseAmount\": \"320.00\",\n            \"leaseCost\": \"442.00\",\n            \"leaseTotalAmount\": \"762.00\",\n            \"paymentFrequency\": \"BI_WEEKLY\",\n            \"currencyCode\": \"USD\",\n            \"stbs\": false,\n            \"summaryAcceptanceRequired\": false,\n            \"hangtagState\": false,\n            \"stbsSalesTaxPercent\": \"0.00\",\n            \"cpoDate\": \"2025-05-05\",\n            \"cpoAmount\": \"330.00\",\n            \"cpoNumberOfPayments\": \"6\",\n            \"cpoPaymentsAmount\": \"47.14\",\n            \"cpoLastPaymentAmount\": \"47.16\",\n            \"cpoLeaseCost\": \"0.00\",\n            \"initialPayment\": \"0.00\",\n            \"totalNumberOfPayments\": \"39\",\n            \"lastPaymentDate\": \"2026-07-31\",\n            \"firstPaymentDate\": \"2025-02-14\",\n            \"propertyCondition\": \"New\",\n            \"finalNumberOfPayments\": \"39\",\n            \"numberOfPaymentsWithSameAmount\": \"38\"\n        },\n        \"cpoDays\": 100\n    },\n    \"success\": true,\n    \"status\": 200\n}"},{"id":"33d3310c-a3be-4753-8b66-e7d53d2ca8b3","name":"Oklahoma","originalRequest":{"method":"GET","header":[{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"}],"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/paymentPlan"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1298"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Mon, 28 Oct 2024 05:49:08 GMT"},{"key":"X-Amzn-Trace-Id","value":"Root=1-671f25d3-71b827a74d0ce4ea2c443859"},{"key":"x-amzn-RequestId","value":"a495ab78-002c-4fa2-879c-193e421f9a10"},{"key":"X-XSS-Protection","value":"0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"AWLZIGy1vHcEv5Q="},{"key":"Cache-Control","value":"no-store"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 09a1a54fdbf13d19927a903f4a7d5186.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"SEA900-P2"},{"key":"X-Amz-Cf-Id","value":"jKBBVOPfk0QQWLHUEXf79MNyBoYph7MLZLGoRj7xY5c80hxih3gAPA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"documents\": [\n            {\n                \"document\": \"addendum\",\n                \"sign\": \"https://api-qa.snapfinance.com/platform/v1/application/241027000MOK/signed?document=addendum\",\n                \"priority\": 1,\n                \"render\": \"https://api-qa.snapfinance.com/platform/v1/application/241027000MOK/agreement?renderType=html&document=addendum\"\n            },\n            {\n                \"document\": \"agreement\",\n                \"sign\": \"https://api-qa.snapfinance.com/platform/v1/application/241027000MOK/signed?document=agreement\",\n                \"priority\": 2,\n                \"render\": \"https://api-qa.snapfinance.com/platform/v1/application/241027000MOK/agreement?renderType=html&document=agreement\"\n            }\n        ],\n        \"paymentPlanSummary\": {\n            \"lastPaymentAmount\": \"19.48\",\n            \"paymentAmount\": \"19.54\",\n            \"leaseTermInMonths\": \"18\",\n            \"processingFee\": \"10.00\",\n            \"leaseAmount\": \"320.00\",\n            \"leaseCost\": \"442.00\",\n            \"leaseTotalAmount\": \"762.00\",\n            \"paymentFrequency\": \"BI_WEEKLY\",\n            \"currencyCode\": \"USD\",\n            \"stbs\": false,\n            \"summaryAcceptanceRequired\": false,\n            \"hangtagState\": false,\n            \"stbsSalesTaxPercent\": \"0.00\",\n            \"cpoDate\": \"2025-05-05\",\n            \"cpoAmount\": \"330.00\",\n            \"cpoNumberOfPayments\": \"6\",\n            \"cpoPaymentsAmount\": \"47.14\",\n            \"cpoLastPaymentAmount\": \"47.16\",\n            \"cpoLeaseCost\": \"0.00\",\n            \"initialPayment\": \"0.00\",\n            \"totalNumberOfPayments\": \"39\",\n            \"lastPaymentDate\": \"2026-07-31\",\n            \"firstPaymentDate\": \"2025-02-14\",\n            \"propertyCondition\": \"New\",\n            \"finalNumberOfPayments\": \"39\",\n            \"numberOfPaymentsWithSameAmount\": \"38\"\n        },\n        \"cpoDays\": 100\n    },\n    \"success\": true,\n    \"status\": 200\n}"},{"id":"aaf79140-450a-458a-8f98-2575d3106407","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Content-Type","value":"application/json"},{"key":"Request-Id","value":"123"}],"url":{"raw":"{{baseUrl}}/platform/v1/application/{{applicationId}}/paymentPlan?frequency=BW","host":["{{baseUrl}}"],"path":["platform","v1","application","{{applicationId}}","paymentPlan"],"query":[{"key":"frequency","value":"BW"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"136"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 15:58:33 GMT"},{"key":"x-amzn-RequestId","value":"e686de7a-4a8b-472a-99bb-c3810ca266ad"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P0yadGxZPHcFgJQ="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11caa9-a9e85c6759f66b046f148f15"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 4c6f3dc807d213a0da966381e4886b08.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"YxjE8a_vRBiTtIchTjpRj97HIPvHhb2UFEne1JzTFnB4twNJS3u6QA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"status\": 404,\n    \"error\": [\n        {\n            \"code\": \"application_invalid\",\n            \"type\": \"invalid_request_error\",\n            \"message\": \"Application not found\"\n        }\n    ]\n}"},{"id":"13f40b82-aa38-4cfd-b880-c5b1b81b7872","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Content-Type","value":"application/json"},{"key":"Request-Id","value":"123"}],"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/paymentPlan"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"244"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:24:19 GMT"},{"key":"x-amzn-RequestId","value":"f42aea7e-5211-4753-a26a-e8db4014d312"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P02LeGszvHcFsxg="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d0af-3504dad84d30e4d08259a3b0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"jen45MDpH8DQoOEaPFvDVJdGipmCzTuiyeN1iMqlvOUBQG5Kixtyow=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"cpoDays\": 100,\n        \"documents\": [\n            {\n                \"document\": \"agreement\",\n                \"priority\": 1,\n                \"render\": \"https://api-qa.snapfinance.com/platform/v1/application/2410280079UT/agreement?renderType=html&document=agreement\",\n                \"sign\": \"https://api-qa.snapfinance.com/platform/v1/application/2410280079UT/signed?document=agreement\"\n            }\n        ],\n        \"paymentPlanSummary\": {\n            \"cpoAmount\": \"330.00\",\n            \"cpoDate\": \"2025-05-05\",\n            \"cpoLastPaymentAmount\": \"47.16\",\n            \"cpoLeaseCost\": \"0.00\",\n            \"cpoNumberOfPayments\": \"6\",\n            \"cpoPaymentsAmount\": \"47.14\",\n            \"currencyCode\": \"USD\",\n            \"finalNumberOfPayments\": \"39\",\n            \"firstPaymentDate\": \"2025-02-14\",\n            \"hangtagState\": false,\n            \"initialPayment\": \"0.00\",\n            \"lastPaymentAmount\": \"19.48\",\n            \"lastPaymentDate\": \"2026-07-31\",\n            \"leaseAmount\": \"320.00\",\n            \"leaseCost\": \"442.00\",\n            \"leaseTermInMonths\": \"18\",\n            \"leaseTotalAmount\": \"762.00\",\n            \"numberOfPaymentsWithSameAmount\": \"38\",\n            \"paymentAmount\": \"19.54\",\n            \"paymentFrequency\": \"BI_WEEKLY\",\n            \"processingFee\": \"10.00\",\n            \"propertyCondition\": \"New\",\n            \"stbs\": false,\n            \"stbsSalesTaxPercent\": \"0.00\",\n            \"summaryAcceptanceRequired\": false,\n            \"totalNumberOfPayments\": \"39\"\n        }\n    },\n    \"status\": 200,\n    \"success\": true\n}"}],"_postman_id":"19dd6f37-1f37-442e-a33b-4d58650e2679"},{"name":"Payment Estimate","id":"0d235b36-8f32-45c7-9688-f34ebc05bbf0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"items\": [\n    {\n      \"price\": 1250,\n      \"itemId\": \"ABC\"\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/hangtag/paymentestimate?frequency=W","description":"<h1 id=\"payment-estimate\">Payment Estimate</h1>\n<p>Returns a payment estimate for hangtag items.</p>\n<h2 id=\"query-parameters\">Query parameters</h2>\n<h3 id=\"frequency-string-required\">frequency (string, required)</h3>\n<p>Payment schedule frequency for the estimate. Allowed values:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>BW</td>\n<td>Bi-Weekly</td>\n</tr>\n<tr>\n<td>W</td>\n<td>Weekly</td>\n</tr>\n<tr>\n<td>M</td>\n<td>Monthly</td>\n</tr>\n<tr>\n<td>MW</td>\n<td>Monthly Weekly</td>\n</tr>\n<tr>\n<td>SM</td>\n<td>Semi-Monthly</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"request-body\">Request body</h2>\n<p>Send a JSON body with an <code>items</code> array. Each element includes <code>price</code> and <code>itemId</code> (see example).</p>\n","urlObject":{"path":["platform","v1","hangtag","paymentestimate"],"host":["{{baseUrl}}"],"query":[{"disabled":true,"description":{"content":"<p>Bi-Weekly</p>\n","type":"text/plain"},"key":"frequency","value":"BW"},{"description":{"content":"<p>Weekly</p>\n","type":"text/plain"},"key":"frequency","value":"W"},{"disabled":true,"description":{"content":"<p>Monthly</p>\n","type":"text/plain"},"key":"frequency","value":"M"},{"disabled":true,"description":{"content":"<p>Monthly Weekly</p>\n","type":"text/plain"},"key":"frequency","value":"MW"},{"disabled":true,"description":{"content":"<p>Semi-Monthly</p>\n","type":"text/plain"},"key":"frequency","value":"SM"}],"variable":[]}},"response":[{"id":"3e8973be-2981-45f6-9c72-99a030dae746","name":"OK","originalRequest":{"method":"POST","header":[],"url":{"raw":"{{baseUrl}}/platform/v1/hangtag/paymentestimate?frequency=W","host":["{{baseUrl}}"],"path":["platform","v1","hangtag","paymentestimate"],"query":[{"key":"frequency","value":"BW","description":"Bi-Weekly","disabled":true},{"key":"frequency","value":"W","description":"Weekly"},{"key":"frequency","value":"M","description":"Monthly","disabled":true},{"key":"frequency","value":"MW","description":"Monthly Weekly","disabled":true},{"key":"frequency","value":"SM","description":"Semi-Monthly","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"price\": 1250,\n        \"itemId\": \"ABC\",\n        \"paymentScheduleAmount\": 51.48,\n        \"lastPaymentAmount\": 51.02,\n        \"frequency\": \"W\",\n        \"totalCost\": 2487.5,\n        \"costOfLease\": 1237.5,\n        \"salesTaxAmount\": 199,\n        \"totalPayments\": 2686.5,\n        \"hundredDayPaymentDueDate\": \"2025-04-17\",\n        \"hundredDayPaymentAmount\": 1431\n    },\n    \"status\": 200\n}"},{"id":"d41da644-3e3e-4598-b595-9c3307950514","name":"Bad Request","originalRequest":{"method":"POST","header":[],"url":{"raw":"{{baseUrl}}/platform/v1/hangtag/paymentestimate?frequency=W","host":["{{baseUrl}}"],"path":["platform","v1","hangtag","paymentestimate"],"query":[{"key":"frequency","value":"BW","description":"Bi-Weekly","disabled":true},{"key":"frequency","value":"W","description":"Weekly"},{"key":"frequency","value":"M","description":"Monthly","disabled":true},{"key":"frequency","value":"MW","description":"Monthly Weekly","disabled":true},{"key":"frequency","value":"SM","description":"Semi-Monthly","disabled":true}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n  \"success\": false,\n  \"status\": 400,\n  \"error\": [\n    {\n      \"type\": \"validation_error\",\n      \"code\": \"payment_estimate_price_missing\",\n      \"message\": \"Price in product item is missing\"\n    }\n  ]\n}"}],"_postman_id":"0d235b36-8f32-45c7-9688-f34ebc05bbf0"},{"name":"Customer Communication Preferences","id":"b1608108-7582-4dc9-b7ff-0531516103e8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"app-origin-id","value":"originations","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"customerId\": \"1234567890\",\n  \"communicationChannel\": \"EMAIL\",\n  \"consentType\": \"SDLR_ECONSENT\",\n  \"consentStatus\": true\n}"},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/comm-preferences","description":"<h1 id=\"create-customer-communication-preferences\">Create Customer Communication Preferences</h1>\n<p>This endpoint creates or updates a customer's communication preferences for regulatory and marketing consents.</p>\n<h2 id=\"request-body\">Request Body</h2>\n<ul>\n<li><code>customerId</code> (string, required if applicationId not in header): Unique id of the Customer.</li>\n<li><code>communicationChannel</code> (string, required for most consent types): One of <code>EMAIL</code>, <code>SMS</code>, <code>PUSH_NOTIFICATION</code>, <code>CALL</code>, <code>NOT_APPLICABLE</code>.</li>\n<li><code>consentType</code> (string, required): Consent type, e.g. <code>SDLR_ECONSENT</code>, <code>NO_EMAIL</code>, <code>DO_NOT_SHARE_GLBA</code>, etc.</li>\n<li><code>consentStatus</code> (boolean, required): Consent status, true or false.</li>\n</ul>\n<h2 id=\"example-request\">Example Request</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"customerId\": \"1234567890\",\n  \"communicationChannel\": \"EMAIL\",\n  \"consentType\": \"SDLR_ECONSENT\",\n  \"consentStatus\": true\n}\n</code></pre>\n<h2 id=\"success-response\">Success Response</h2>\n<ul>\n<li><code>200 OK</code></li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"success\": true,\n  \"message\": \"Preferences updated successfully\"\n}\n</code></pre>\n<h2 id=\"error-response\">Error Response</h2>\n<ul>\n<li><code>400 Bad Request</code></li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"errors\": [\n    { \"code\": \"4105\", \"message\": \"customerId is mandatory in case applicationId is not provided in the header\" },\n    { \"code\": \"4106\", \"message\": \"communicationChannel can't be null and value should be any one these : [CALL, EMAIL, PUSH_NOTIFICATION, SMS]\" },\n    { \"code\": \"4107\", \"message\": \"consentType can't be null and value should be any one these : [SDLR_ECONSENT, NO_EMAIL, NO_SMS, NO_CALL, NEGATIVE_OPTIONRULE_ECONSENT]\" },\n    { \"code\": \"4108\", \"message\": \"app-origin-id header shouldn't be null or empty and value should be any one these : [originations]\" },\n    { \"code\": \"4178\", \"message\": \"application-id header is missing\" }\n  ]\n}\n</code></pre>\n","urlObject":{"path":["platform","v1","application","{{applicationId}}","comm-preferences"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"bd54ec4c-6556-4f9b-8883-19850ae24ba9","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{bearerToken}}"},{"key":"app-origin-id","value":"originations"}],"body":{"mode":"raw","raw":"{\n  \"customerId\": \"1234567890\",\n  \"communicationChannel\": \"EMAIL\",\n  \"consentType\": \"SDLR_ECONSENT\",\n  \"consentStatus\": true\n}"},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/comm-preferences"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"success\": true,\n  \"message\": \"Preferences updated successfully\"\n}"},{"id":"fd20230b-f8d2-4ac3-822d-b56ccd3a513d","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{bearerToken}}"},{"key":"app-origin-id","value":"originations"}],"body":{"mode":"raw","raw":"{\n  \"customerId\": \"\",\n  \"communicationChannel\": \"\",\n  \"consentType\": \"\",\n  \"consentStatus\": false\n}"},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/comm-preferences"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"errors\": [\n    { \"code\": \"4105\", \"message\": \"customerId is mandatory in case applicationId is not provided in the header\" },\n    { \"code\": \"4106\", \"message\": \"communicationChannel can't be null and value should be any one these : [CALL, EMAIL, PUSH_NOTIFICATION, SMS]\" },\n    { \"code\": \"4107\", \"message\": \"consentType can't be null and value should be any one these : [SDLR_ECONSENT, NO_EMAIL, NO_SMS, NO_CALL, NEGATIVE_OPTIONRULE_ECONSENT]\" },\n    { \"code\": \"4108\", \"message\": \"app-origin-id header shouldn't be null or empty and value should be any one these : [originations]\" },\n    { \"code\": \"4178\", \"message\": \"application-id header is missing\" }\n  ]\n}"},{"id":"7d98dbe8-d978-4c33-a475-b3c2a739725d","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{bearerToken}}"},{"key":"app-origin-id","value":"originations"}],"body":{"mode":"raw","raw":"{\n  \"customerId\": \"\",\n  \"communicationChannel\": \"\",\n  \"consentType\": \"\",\n  \"consentStatus\": false\n}"},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/comm-preferences"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"errors\": [\n    { \"code\": \"4105\", \"message\": \"customerId is mandatory in case applicationId is not provided in the header\" },\n    { \"code\": \"4106\", \"message\": \"communicationChannel can't be null and value should be any one these : [CALL, EMAIL, PUSH_NOTIFICATION, SMS]\" },\n    { \"code\": \"4107\", \"message\": \"consentType can't be null and value should be any one these : [SDLR_ECONSENT, NO_EMAIL, NO_SMS, NO_CALL, NEGATIVE_OPTIONRULE_ECONSENT]\" },\n    { \"code\": \"4108\", \"message\": \"app-origin-id header shouldn't be null or empty and value should be any one these : [originations]\" },\n    { \"code\": \"4178\", \"message\": \"application-id header is missing\" }\n  ]\n}"},{"id":"6b3999fc-f28b-41ec-a944-546cefc764a5","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{bearerToken}}"},{"key":"app-origin-id","value":"originations"}],"body":{"mode":"raw","raw":"{\n  \"customerId\": \"1234567890\",\n  \"communicationChannel\": \"EMAIL\",\n  \"consentType\": \"SDLR_ECONSENT\",\n  \"consentStatus\": true\n}"},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/comm-preferences"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"success\": true,\n  \"message\": \"Preferences updated successfully\"\n}"}],"_postman_id":"b1608108-7582-4dc9-b7ff-0531516103e8"},{"name":"Agreement Details","event":[{"listen":"test","script":{"exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});\r","pm.test(\"Success message\", function () {\r","    pm.expect(pm.response.text()).to.include(\"success\");\r","});"],"type":"text/javascript","id":"2ebe064a-a937-435a-84e6-4a5fc53f363e"}}],"id":"30102122-bf2c-49ae-acb7-4ed3f8203d9d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"<p>(optional - ID generated by the client)</p>\n","type":"text"}],"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/agreement?renderType=html&document=agreement","description":"<h1 id=\"agreement-details\">Agreement Details</h1>\n<p>This endpoint fetches the agreement details which the consumer needs to accept and sign.</p>\n<h2 id=\"path-params\">PATH PARAMS</h2>\n<blockquote>\n<h2 id=\"applicationidstring\"><code>applicationId:string</code></h2>\n<ul>\n<li>Required</li>\n<li>ApplicationId is returned when calling the create application endpoint</li>\n</ul>\n</blockquote>\n<h2 id=\"query-parameters\">QUERY PARAMETERS</h2>\n<blockquote>\n<h2 id=\"rendertype\"><code>renderType</code></h2>\n<ul>\n<li>Optional</li>\n<li>Render type</li>\n</ul>\n</blockquote>\n<blockquote>\n<h2 id=\"document\"><code>document</code></h2>\n<ul>\n<li>Optional</li>\n<li>agreement/addendum</li>\n</ul>\n</blockquote>\n<blockquote>\n<h2 id=\"svgonly\"><code>svgonly</code></h2>\n<ul>\n<li>Optional</li>\n<li>Generate HTML agreement version</li>\n</ul>\n</blockquote>\n<blockquote>\n<h2 id=\"language\"><code>language</code></h2>\n<ul>\n<li>Optional</li>\n<li>Agreement language EN(English) / ES(Spanish)</li>\n</ul>\n</blockquote>\n<blockquote>\n<h2 id=\"summaryacceptance\"><code>summaryAcceptance</code></h2>\n<ul>\n<li>Mandatory, send true value</li>\n<li>Acceptance viewed and acknowledge agreement terms</li>\n</ul>\n</blockquote>\n<h1 id=\"response-object\">Response Object</h1>\n<h2 id=\"datahash\"><code>data:hash</code></h2>\n<blockquote>\n<h4 id=\"agreementinformationhash\"><code>agreementInformation:hash</code></h4>\n<ul>\n<li>Payment plan details</li>\n</ul>\n<h4 id=\"agreementinformationapplicationidstring\"><code>agreementInformation.applicationId:string</code></h4>\n<blockquote>\n<ul>\n<li>Application ID</li>\n</ul>\n</blockquote>\n<h4 id=\"agreementinformationcustomerinformationhash\"><code>agreementInformation.customerInformation:hash</code></h4>\n<blockquote>\n<ul>\n<li>Customer information details</li>\n</ul>\n<h4 id=\"customerinformationdobdatestring\"><code>customerInformation.dobDate:string</code></h4>\n<blockquote>\n<ul>\n<li>Date of birth</li>\n</ul>\n</blockquote>\n<h4 id=\"customerinformationcustomeridstring\"><code>customerInformation.customerId:string</code></h4>\n<blockquote>\n<ul>\n<li>Customer ID</li>\n</ul>\n</blockquote>\n<h4 id=\"customerinformationcustomeridtypestring\"><code>customerInformation.customerIdType:string</code></h4>\n<blockquote>\n<ul>\n<li>Customer ID type</li>\n</ul>\n</blockquote>\n<h4 id=\"customerinformationmobilephonestring\"><code>customerInformation.mobilePhone:string</code></h4>\n<blockquote>\n<ul>\n<li>Mobile phone</li>\n</ul>\n</blockquote>\n<h4 id=\"customerinformationmobilephonecountrystring\"><code>customerInformation.mobilePhoneCountry:string</code></h4>\n<blockquote>\n<ul>\n<li>Mobile phone country</li>\n</ul>\n</blockquote>\n<h4 id=\"customerinformationemailstring\"><code>customerInformation.email:string</code></h4>\n<blockquote>\n<ul>\n<li>Email</li>\n</ul>\n</blockquote>\n<h4 id=\"customerinformationfirstnamestring\"><code>customerInformation.firstName:string</code></h4>\n<blockquote>\n<ul>\n<li>First name</li>\n</ul>\n</blockquote>\n<h4 id=\"customerinformationlastnamestring\"><code>customerInformation.lastName:string</code></h4>\n<blockquote>\n<ul>\n<li>Last name</li>\n</ul>\n</blockquote>\n<h4 id=\"customerinformationbillingaddresshash\"><code>customerInformation.billingAddress:hash</code></h4>\n<blockquote>\n<ul>\n<li>Snap address</li>\n</ul>\n<h4 id=\"billingaddressstreetaddressstring\"><code>billingAddress.streetAddress:string</code></h4>\n<blockquote>\n<ul>\n<li>Street address</li>\n</ul>\n</blockquote>\n<h4 id=\"billingaddresscitystring\"><code>billingAddress.city:string</code></h4>\n<blockquote>\n<ul>\n<li>City</li>\n</ul>\n</blockquote>\n<h4 id=\"billingaddressstatestring\"><code>billingAddress.state:string</code></h4>\n<blockquote>\n<ul>\n<li>State</li>\n</ul>\n</blockquote>\n<h4 id=\"billingaddresscountrystring\"><code>billingAddress.country:string</code></h4>\n<blockquote>\n<ul>\n<li>Country</li>\n</ul>\n</blockquote>\n<h4 id=\"billingaddresspostalcodestring\"><code>billingAddress.postalCode:string</code></h4>\n<blockquote>\n<ul>\n<li>Postal code</li>\n</ul>\n</blockquote>\n</blockquote>\n</blockquote>\n<h4 id=\"agreementinformationsnapfinanceinformationhash\"><code>agreementInformation.snapFinanceInformation:hash</code></h4>\n<blockquote>\n<ul>\n<li>Snap information details</li>\n</ul>\n<h4 id=\"agreementinformationsnapfinanceinformationbusinessnamestring\"><code>agreementInformation.snapFinanceInformation.businessName:string</code></h4>\n<blockquote>\n<ul>\n<li>Business name</li>\n</ul>\n</blockquote>\n<h4 id=\"snapfinanceinformationemailstring\"><code>snapFinanceInformation.email:string</code></h4>\n<blockquote>\n<ul>\n<li>Email</li>\n</ul>\n</blockquote>\n<h4 id=\"snapfinanceinformationphonenumberstring\"><code>snapFinanceInformation.phoneNumber:string</code></h4>\n<blockquote>\n<ul>\n<li>Phone number</li>\n</ul>\n</blockquote>\n<h4 id=\"snapfinanceinformationphonenumbercodestring\"><code>snapFinanceInformation.phoneNumberCode:string</code></h4>\n<blockquote>\n<ul>\n<li>Phone number code</li>\n</ul>\n</blockquote>\n<h4 id=\"snapfinanceinformationsnapaddresshash\"><code>snapFinanceInformation.snapAddress:hash</code></h4>\n<blockquote>\n<ul>\n<li>Snap address</li>\n</ul>\n<h4 id=\"snapaddressstreetaddressstring\"><code>snapAddress.streetAddress:string</code></h4>\n<blockquote>\n<ul>\n<li>Street address</li>\n</ul>\n</blockquote>\n<h4 id=\"snapaddresscitystring\"><code>snapAddress.city:string</code></h4>\n<blockquote>\n<ul>\n<li>City</li>\n</ul>\n</blockquote>\n<h4 id=\"snapaddressstatestring\"><code>snapAddress.state:string</code></h4>\n<blockquote>\n<ul>\n<li>State</li>\n</ul>\n</blockquote>\n<h4 id=\"snapaddresscountrystring\"><code>snapAddress.country:string</code></h4>\n<blockquote>\n<ul>\n<li>Country</li>\n</ul>\n</blockquote>\n<h4 id=\"snapaddresspostalcodestring\"><code>snapAddress.postalCode:string</code></h4>\n<blockquote>\n<ul>\n<li>Postal code</li>\n</ul>\n</blockquote>\n</blockquote>\n</blockquote>\n<h4 id=\"agreementinformationagreementdetailsstring\"><code>agreementInformation.agreementDetails:string</code></h4>\n<blockquote>\n<ul>\n<li>Agreement information using HTML format</li>\n</ul>\n</blockquote>\n</blockquote>\n","urlObject":{"path":["platform","v1","application","{{applicationId}}","agreement"],"host":["{{baseUrl}}"],"query":[{"key":"renderType","value":"html"},{"key":"document","value":"agreement"}],"variable":[]}},"response":[{"id":"b36d857e-4237-40d1-8c84-9c1a01f374a0","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Content-Type","value":"application/json"},{"key":"Request-Id","value":"123"}],"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/agreement"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"136"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 16 Jul 2020 17:02:21 GMT"},{"key":"x-amzn-RequestId","value":"7bdbe015-ee4e-47a5-a8c5-70f56a2cde04"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"Pxo0aFo-PHcFy6A="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f10881c-f4d45cc21e4bc05a15184b31"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 0a72bb7be10458e1aefa37a097f21894.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"Zcwg0uNr6gJ8ilLNW9-r5krSpR6T7Z-LLnNpLYvub6tAYp-Dx30msw=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"status\": 404,\n    \"error\": [\n        {\n            \"code\": \"application_invalid\",\n            \"type\": \"invalid_request_error\",\n            \"message\": \"Application not found\"\n        }\n    ]\n}"},{"id":"dd3fa3da-9ba2-4188-a555-00e0f26d36ac","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Content-Type","value":"application/json"},{"key":"Request-Id","value":"123"}],"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/agreement"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1825083"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:24:43 GMT"},{"key":"x-amzn-RequestId","value":"40b52282-2a30-4df6-8cdf-82aa447ca6b3"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P02OxEfnPHcF9yw="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d0c4-8b923ff4b1bf11f48fb3b3b8"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"OcTSGzIIqa3esIfeYqbdx2iywfRfpBgLnbSAPl3aJcuDg_Vl84kX2A=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"agreementInformation\": {\n            \"applicationId\": \"{{applicationId}}\",\n            \"customerInformation\": {\n                \"dobDate\": \"1977-07-07\",\n                \"customerId\": \"000007777\",\n                \"customerIdType\": \"SSN4\",\n                \"mobilePhone\": \"1000000019\",\n                \"mobilePhoneCountry\": \"US\",\n                \"email\": \"test@test.com\",\n                \"firstName\": \"John\",\n                \"lastName\": \"Smith\",\n                \"billingAddress\": {\n                    \"streetAddress\": \"123mainst\",\n                    \"city\": \"Saltlakecity\",\n                    \"state\": \"UT\",\n                    \"country\": \"US\",\n                    \"postalCode\": \"84001\"\n                }\n            },\n            \"snapFinanceInformation\": {\n                \"businessName\": \"Snap RTO LLC\",\n                \"snapAddress\": {\n                    \"streetAddress\": \"Any street in town\",\n                    \"city\": \"Salt Lake City\",\n                    \"state\": \"UT\",\n                    \"country\": \"US\",\n                    \"postalCode\": \"84126\"\n                },\n                \"email\": \"test@test.com\",\n                \"phoneNumber\": \"1000000007\",\n                \"phoneNumberCode\": \"US\"\n            },\n            \"agreementDetails\": \"<!DOCTYPE html>\\n<html>\\n\\t<head>\\n\\t\\t<meta charset=\\\"utf-8\\\">\\n\\t\\t<style type=\\\"text/css\\\">\\n\\t\\t\\tbody {background-color:lightgray; text-align:center;}\\n\\t\\t\\t.qoppa_pageborder {fill:white;}\\n\\t\\t\\t#qoppa_document {padding:5px; margin:auto;}\\n\\t\\t</style>\\n\\t</head>\\n\\t<body>\\n<?xml version='1.0' encoding='UTF-8'?><svg id=\\\"qoppa_document\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" version=\\\"1.1\\\" xmlns=\\\"http://www.w3.org/2000/svg\\\" xmlns:xlink=\\\"http://www.w3.org/1999/xlink\\\"><!-- jPDFWeb v2019R1.03 - Demo Version --><style>title p { display: block; }</style><g id=\\\"qoppa_viewxform\\\" transform=\\\"matrix(1 0 0 1 0 0)\\\"><style type=\\\"text/css\\\">@font-face {font-family:f0-0;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f0-1;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f0-2;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}</style><svg id=\\\"qoppa_page_p0\\\" class=\\\"qoppa_page\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\"><rect class=\\\"qoppa_pageborder\\\" x=\\\"0.5pt\\\" y=\\\"0.5pt\\\" width=\\\"611pt\\\" height=\\\"791pt\\\" fill=\\\"none\\\" /><svg class=\\\"qoppa_pagecontents\\\" x=\\\"0pt\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" viewBox=\\\"0 0 612 792\\\" ><g class=\\\"qoppa_contentstream\\\" transform=\\\"matrix(1 0 0 -1 0 792)\\\" fill=\\\"black\\\" stroke=\\\"black\\\" stroke-width=\\\"1\\\" stroke-linecap=\\\"butt\\\" stroke-linejoin=\\\"miter\\\" stroke-miterlimit=\\\"10\\\"><clipPath id=\\\"clip0-1\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><g clip-path=\\\"url(#clip0-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:8.25pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 213.8098 759.5594)\\\" x=\\\"0 7.942 15.279 23.221 29.942 37.279 43.395 47.058 54.395 62.337 70.279 78.221 86.163 93.5 100.837 108.174 111.1 118.437 126.995 134.937 142.274 149.611 158.774 166.111 174.053\\\">RENTAL-PURCHASE AGREEMENT</text></g><clipPath id=\\\"clip0-2\\\"><path d=\\\"M 35 701 L 285 701 L 285 758 L 35 758 L 35 701 z \\\"/></clipPath><g clip-path=\\\"url(#clip0-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 745.5311)\\\" x=\\\"0 5.56 11.12 16.68 21.68 27.24 29.9 37.12 42.68 51.01 56.57 62.13 67.69 72.69 75.35 78.68 84.24 89.8 94.8 99.8 105.36 108.69 112.02 114.8 117.46 124.13 131.35 138.02 144.69 147.35 154.57 160.68 168.46 171.12 176.68 182.24\\\">Lease Company (Lessor): SNAP RTO LLC</text></g><g clip-path=\\\"url(#clip0-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 732.2127)\\\" x=\\\"0 6.67 9.45 17.23 20.01 22.67 29.34 34.9 39.9 42.56 48.12 53.68 59.24 64.8\\\">P.O. Box 26561</text></g><g clip-path=\\\"url(#clip0-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 718.8943)\\\" x=\\\"0 6.67 12.23 14.51 17.29 19.95 25.51 31.07 36.07 41.63 44.29 51.51 53.79 56.57 61.57 64.35 67.01 74.23 80.34 83 88.56 94.12 99.68 105.24\\\">Salt Lake City, UT 84126</text></g><g clip-path=\\\"url(#clip0-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 705.576)\\\" x=\\\"0 6.67 12.23 17.79 23.35 28.91 31.69 34.35 37.68 43.24 48.8 54.36 57.69 60.35 65.91 71.47 77.03 80.36 85.92 91.48 97.04\\\">Phone: (877) 557-3769</text></g><clipPath id=\\\"clip0-3\\\"><path d=\\\"M 284 701 L 574 701 L 574 758 L 284 758 L 284 701 z \\\"/></clipPath><g clip-path=\\\"url(#clip0-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.225 745.5311)\\\" x=\\\"0 5.56 11.12 16.12 21.12 26.68 32.24 35.02 37.68 42.68 48.24 53.8 59.36 62.02 64.68 71.35 79.68 81.96 84.74\\\">Lessee: John  Smith</text></g><g clip-path=\\\"url(#clip0-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 290.225 732.2127)\\\" x=\\\"0 5.56 11.12 16.68 25.01 30.57 32.85 38.41 43.41\\\">123mainst</text></g><g clip-path=\\\"url(#clip0-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.225 718.8943)\\\" x=\\\"0 6.67 12.23 14.51 17.29 19.57 25.13 30.13 35.69 40.69 42.97 45.75 50.75 53.53 56.19 63.41 69.52 72.18 77.74 83.3 88.86 94.42\\\">Saltlakecity, UT 84001</text></g><g clip-path=\\\"url(#clip0-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 290.225 705.576)\\\" x=\\\"0 2.28 7.84 13.4 15.68 21.24 26.8 32.36 37.36 47.51 53.07 58.07 66.4 71.96 74.74 79.74 85.3\\\">jbolanos@acme.com</text></g><clipPath id=\\\"clip0-4\\\"><path d=\\\"M 35 674 L 285 674 L 285 702 L 35 702 L 35 674 z \\\"/></clipPath><g clip-path=\\\"url(#clip0-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 689.7576)\\\" x=\\\"0 6.67 12.23 17.79 20.07 22.35 27.35 32.91 35.69 37.97 43.53 49.09 51.75 54.53 61.75 64.53 67.19 72.75 78.31 83.87 89.43 94.99 100.55 106.11 111.67 117.23 126.67 133.89\\\">Application ID: 200717000WUT</text></g><clipPath id=\\\"clip0-5\\\"><path d=\\\"M 284 674 L 428 674 L 428 702 L 284 702 L 284 674 z \\\"/></clipPath><g clip-path=\\\"url(#clip0-5)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.225 689.7576)\\\" x=\\\"0 5.56 11.12 16.68 21.68 27.24 29.9 37.12 42.68 45.46 51.02 53.8 56.46 62.02 67.58 70.36 75.92 81.48 84.26 89.82 95.38 100.94\\\">Lease Date: 07/17/2020</text></g><g clip-path=\\\"url(#clip0-5)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.225 678.4393)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 27.68 34.35\\\">10:22 AM</text></g><clipPath id=\\\"clip0-6\\\"><path d=\\\"M 427 674 L 574 674 L 574 702 L 427 702 L 427 674 z \\\"/></clipPath><g clip-path=\\\"url(#clip0-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 433.375 689.7576)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79 40.45 47.67 53.23 58.79 64.35 66.63 69.41 71.69 77.25 82.81 85.59 88.25 95.47 101.03\\\">Property Condition: New</text></g><clipPath id=\\\"clip0-7\\\"><path d=\\\"M 35 631 L 574 631 L 574 675 L 35 675 L 35 631 z \\\"/></clipPath><g clip-path=\\\"url(#clip0-7)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 662.6209)\\\" x=\\\"0 7.22 12.78 17.78 22.78 26.11 28.39 33.95 36.73 39.01 44.57 50.13 52.79 58.35 61.13 63.79 69.35 74.91 80.47 86.03 91.03 93.69 99.25 104.81 107.09 112.65 118.21 120.87 126.43 131.99 135.32 140.32 145.88 151.44 156.44 162 167.56 170.22 173 176.33 181.89 190.22 192.88 195.66 201.22 206.78 209.44 216.66 222.22 225 230.56 232.84 235.12 240.68 244.01 246.67 250 252.78 258.34 263.9 266.56 269.89 276.56 279.89 285.45 291.01 296.57 299.9 302.68 307.68 311.01 314.34 317 319.78 325.34 328.67 331.45 337.01 342.57 345.9 348.56 354.12 359.12 364.68 366.96 372.52 374.8 380.36 385.92 391.48 394.14 396.42 401.98 404.64 411.31 416.31 421.87 424.15 429.71 431.99 434.77 437.43 444.1\\\">Description of goods being purchased from th* D E M O *(the “Property”) further explained in Exhibit A:</text></g><g clip-path=\\\"url(#clip0-7)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 649.3025)\\\" x=\\\"0 6.67 12.23 15.56 20.56 22.84 27.84 33.4 38.4 41.06 46.62 52.18 57.74 60.4 66.51 72.07 77.63 82.63 85.41 88.07 96.4 101.96 104.74 107.52 110.85 116.41 121.41\\\">Services and Fees, Mattress</text></g><clipPath id=\\\"clip0-8\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.025 757.4998 L 285.075 757.4998 L 285.075 756.9998 L 35.025 756.9998 L 35.025 757.4998 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.025 756.9998 L 35.525 756.9998 L 35.525 701.7264 L 35.025 701.7264 L 35.025 756.9998 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 285.075 757.4998 L 573.375 757.4998 L 573.375 756.9998 L 285.075 756.9998 L 285.075 757.4998 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.875 756.9998 L 573.375 756.9998 L 573.375 701.7264 L 572.875 701.7264 L 572.875 756.9998 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 284.575 756.9998 L 285.075 756.9998 L 285.075 701.7264 L 284.575 701.7264 L 284.575 756.9998 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.025 701.7264 L 285.075 701.7264 L 285.075 701.2264 L 35.025 701.2264 L 35.025 701.7264 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.025 701.2264 L 35.525 701.2264 L 35.525 674.5897 L 35.025 674.5897 L 35.025 701.2264 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 285.075 701.7264 L 428.225 701.7264 L 428.225 701.2264 L 285.075 701.2264 L 285.075 701.7264 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 284.575 701.2264 L 285.075 701.2264 L 285.075 674.5897 L 284.575 674.5897 L 284.575 701.2264 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 428.225 701.7264 L 573.375 701.7264 L 573.375 701.2264 L 428.225 701.2264 L 428.225 701.7264 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.875 701.2264 L 573.375 701.2264 L 573.375 674.5897 L 572.875 674.5897 L 572.875 701.2264 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 427.725 701.2264 L 428.225 701.2264 L 428.225 674.5897 L 427.725 674.5897 L 427.725 701.2264 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.025 674.5897 L 573.375 674.5897 L 573.375 674.0897 L 35.025 674.0897 L 35.025 674.5897 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.025 632.1346 L 573.375 632.1346 L 573.375 631.6346 L 35.025 631.6346 L 35.025 632.1346 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.875 674.0897 L 573.375 674.0897 L 573.375 632.1346 L 572.875 632.1346 L 572.875 674.0897 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.025 674.0897 L 35.525 674.0897 L 35.525 632.1346 L 35.025 632.1346 L 35.025 674.0897 z \\\"/><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 620.1658)\\\" x=\\\"0 6.11 13.89 21.11 29.44 36.11 42.22 45 52.78\\\">FORMATION</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 93.0951 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 97.0295 620.1658)\\\" x=\\\"0 7.78\\\">OF</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 110.9162 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 114.8506 620.1658)\\\" x=\\\"0 6.67 14.45 21.67 28.34 35.01 43.34 50.01 57.23 63.34\\\">AGREEMENT.</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 180.9688 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 184.9032 620.1658)\\\" x=\\\"0 6.67\\\">By</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 196.5731 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 200.5075 620.1658)\\\" x=\\\"0 5 7.28 12.84 18.4 20.68 26.24\\\">signing</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 232.3141 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 236.2485 620.1658)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 251.8686 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 255.803 620.1658)\\\" x=\\\"0 7.22 12.78 18.34 21.12 26.68 28.96 32.29 38.96 44.52 47.85 52.85 58.41 63.97 68.97\\\">Rental-Purchase</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 330.344 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 334.2784 620.1658)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement,</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 385.9727 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 389.9071 620.1658)\\\" x=\\\"0 5.56 7.84 12.84\\\">also</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 408.3105 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 412.2448 620.1658)\\\" x=\\\"0 5 10.56 16.12 23.34\\\">known</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 441.1511 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 445.0855 620.1658)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 455.647 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 459.5814 620.1658)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 465.1429 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 469.0773 620.1658)\\\" x=\\\"0 5.56 11.12 16.68 21.68\\\">Lease</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 496.3234 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 500.2578 620.1658)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.1738 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.1082 620.1658)\\\" x=\\\"0 7.22 9.5 12.28\\\">with</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 608.8475)\\\" x=\\\"0 7.78 13.34 16.12 18.4 23.96\\\">Option</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 62.6215 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 66.5575 608.8475)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 74.8974 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 78.8334 608.8475)\\\" x=\\\"0 6.67 12.23 15.56 20.56 26.12 31.68 36.68\\\">Purchase</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 121.0795 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 125.0155 608.8475)\\\" x=\\\"0 3.33 6.11 11.67 13.95\\\">(this</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 143.9657 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 147.9017 608.8475)\\\" x=\\\"0 3.33 10 15.56 18.89 24.45 30.01 38.34 43.9 49.46 52.24 55.57 58.9\\\">“Agreement”),</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.5863 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 213.5223 608.8475)\\\" x=\\\"0 5 10.56 16.12\\\">you,</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 232.4237 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 236.3597 608.8475)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 250.2611 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 254.1971 608.8475)\\\" x=\\\"0 7.22 12.78 17.78 20.56 26.12 34.45 40.01 43.34 46.67 51.67\\\">Customer(s)</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 309.202 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 313.138 608.8475)\\\" x=\\\"0 3.33 6.66 11.66 17.22 22.78\\\">(“you”</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 339.2513 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 343.1873 608.8475)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.8719 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 363.8079 608.8475)\\\" x=\\\"0 3.33 8.33 13.89 19.45 22.78 26.11\\\">“your”)</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.2513 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 397.1873 608.8475)\\\" x=\\\"0 5 10.56 16.12 21.68 26.68\\\">choose</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 429.4334 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 433.3695 608.8475)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 441.7093 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 445.6453 608.8475)\\\" x=\\\"0 2.28 7.84 13.4 18.4\\\">lease</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 469.6102 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 473.5462 608.8475)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 487.4476 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 491.3836 608.8475)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.1766 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 533.1126 608.8475)\\\" x=\\\"0 2.78 6.11 11.67\\\">from</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.1126 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0486 608.8475)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 597.5291)\\\" x=\\\"0 5.56 11.12 16.68 21.68\\\">Lease</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.3461 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 63.7235 597.5291)\\\" x=\\\"0 7.22 12.78 21.11 26.67 32.23 37.79\\\">Company</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 106.5213 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 109.8987 597.5291)\\\" x=\\\"0 3.33 6.66 13.88 19.44 22.22\\\">(“we,”</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 135.4505 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 138.8278 597.5291)\\\" x=\\\"0 3.33 8.89 13.89 16.67\\\">“us,”</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 158.8278 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 162.2052 597.5291)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 178.8898 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 182.2672 597.5291)\\\" x=\\\"0 3.33 8.89 14.45 17.78 21.11\\\">“our”)</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 206.7105 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.0879 597.5291)\\\" x=\\\"0 5.56 10.56 15.56 21.12 24.45 30.01 32.29 37.85\\\">according</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 253.5059 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 256.8832 597.5291)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 265.2231 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 268.6005 597.5291)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 282.5018 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 285.8792 597.5291)\\\" x=\\\"0 2.78 8.34 11.67 20\\\">terms</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 310.8792 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 314.2566 597.5291)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 322.5964 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 325.9738 597.5291)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 341.5939 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 344.9713 597.5291)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement.</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 396.6656 597.5291)\\\" x=\\\"0 3.3774\\\">  </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 403.4204 597.5291)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 420.6518 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 424.0292 597.5291)\\\" x=\\\"0 2.78 8.34 11.67\\\">term</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 444.0292 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 447.4066 597.5291)\\\" x=\\\"0 3.33 10.55 16.11 18.89 24.45 26.73 29.01 34.57 37.9\\\">“Retailer”</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 488.6419 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 492.0193 597.5291)\\\" x=\\\"0 8.33 13.89 19.45 25.01 30.01 36.68 42.24 47.8 52.8 57.8 61.13 67.8 73.36\\\">meansEbaycrYou</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 586.2107)\\\" x=\\\"0 5.56 11.12 16.12 21.68 24.34 27.12 32.68 38.24 40.9 44.23 46.51 52.07 57.63 60.41 63.19 65.85 71.41 76.97 79.75 82.41 87.97 93.53 96.31 98.97 101.75 107.31 112.87 115.53 121.09 126.65 128.93 131.21 136.77 142.33 145.11 147.39 152.95 158.51 161.29 163.95 166.73 172.29 174.95 180.51 185.51 191.07 196.63 198.91 202.24 207.8 210.46 216.02 223.24 228.8 234.36 237.69 242.69 248.25 250.53 256.09 258.75 264.31 267.09 269.75 272.53 278.09 283.65 286.31 292.98 296.31 301.87 307.43 312.99 316.32 319.1 324.1 326.76 332.32 337.32 339.98 345.54 351.1 356.1 361.1 364.43 366.71 372.27 377.83 383.39 386.05 391.61 397.17 400.5 406.06 408.34 413.9\\\">have the right, but not the obligation, to acquire ownership of the Property as described herein.</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 572.8924)\\\" x=\\\"0 6.67 13.89 21.67 28.89 31.67 38.34 41.12 47.23 50.01 57.79\\\">ACQUISITION</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 98.1049 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 101.7037 572.8924)\\\" x=\\\"0 7.78\\\">OF</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 115.5905 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 119.1893 572.8924)\\\" x=\\\"0 6.67 13.89 21.67 28.34 35.01 42.23 48.34\\\">PROPERTY</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 174.1991 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 177.798 572.8924)\\\" x=\\\"0 6.67\\\">AS</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 191.1378 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 194.7367 572.8924)\\\" x=\\\"0 6.67 14.45 21.12 28.34 34.45\\\">AGENT;</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.9632 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 235.5621 572.8924)\\\" x=\\\"0 7.22 13.89\\\">NEW</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 258.8922 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 262.4911 572.8924)\\\" x=\\\"0 7.22 15 22.22 29.44 32.22 38.33 41.11 48.89 56.11\\\">CONDITION;</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 321.3778 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 324.9766 572.8924)\\\" x=\\\"0 7.22 13.89 20.56 27.78 35 37.78 44.45 50.56 53.34 61.12 68.34\\\">DESCRIPTION.</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 396.0948 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 399.6937 572.8924)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 417.4866 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 421.0855 572.8924)\\\" x=\\\"0 5.56 8.89\\\">are</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 435.5386 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 439.1375 572.8924)\\\" x=\\\"0 5.56 11.12 13.9 19.46 21.74 27.3 29.58 35.14\\\">obtaining</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 479.8455 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 483.4444 572.8924)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 497.3458 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 500.9446 572.8924)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 538.7376 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 542.3365 572.8924)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.898 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 556.4968 572.8924)\\\" x=\\\"0 5.56 11.12\\\">our</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 561.574)\\\" x=\\\"0 5.56 11.12 16.68 22.24 25.02\\\">agent.</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.9027 561.574)\\\" x=\\\"0 4.0087\\\">  </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 68.9202 561.574)\\\" x=\\\"0 9.44\\\">We</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 83.9202 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 87.9288 561.574)\\\" x=\\\"0 5.56 12.78\\\">own</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 106.2736 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 110.2823 561.574)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 124.1837 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 128.1924 561.574)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 165.9853 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 169.994 561.574)\\\" x=\\\"0 5.56 11.12 13.4 18.96 23.96\\\">unless</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 198.9589 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 202.9676 561.574)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 219.6522 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 223.6609 561.574)\\\" x=\\\"0 5.56 11.12 13.9 16.18\\\">until</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 242.1228 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 246.1315 561.574)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.2545 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 266.2632 561.574)\\\" x=\\\"0 8.33 13.89 18.89\\\">make</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.7163 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 294.7251 561.574)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.6264 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 312.6351 561.574)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57 38.35\\\">payments</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.9896 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 359.9983 561.574)\\\" x=\\\"0 5.56 11.12 16.12 21.68 26.68 31.68 37.24 40.57\\\">necessary</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 405.5745 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 409.5832 561.574)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 417.923 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 421.9318 561.574)\\\" x=\\\"0 5.56 10.56 16.12 21.68 23.96 27.29\\\">acquire</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.7882 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 458.7969 561.574)\\\" x=\\\"0 5.56 12.78 18.34 23.9 27.23 32.23 37.79 40.07 45.63\\\">ownership.</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 507.2149 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 511.2236 561.574)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.0165 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 533.0253 561.574)\\\" x=\\\"0 5.56 11.12 14.45 20.01\\\">agree</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 558.6014 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 562.6101 561.574)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 550.2557)\\\" x=\\\"0 5.56 11.12 13.9 19.46 21.74 27.3 29.96 32.74 36.07 41.63 49.96 52.62 55.4 60.96 66.52 69.18 76.4 81.96 84.74 90.3 92.58 94.86 100.42 103.75 106.41 111.97 117.53 119.81 124.81 127.47 133.03 138.59 145.81 148.47 154.03 159.59 165.15 170.71 175.71 178.37 181.15 186.71 190.04 192.7 198.26 203.82 207.15 212.15 217.71 223.27 228.83 231.11 233.89 236.55 239.33 244.89 253.22 255.5 257.78 262.78 265.44 271 274.33 276.99 282.55 288.11 293.67 298.67 304.23 309.79 315.35 317.63 323.19 325.85 331.41 336.97 340.3 345.86 351.42 356.42 361.98 366.98\\\">obtain from the Retailer only new goods for personal, family or household purposes.</text></g><clipPath id=\\\"clip0-9\\\"><path d=\\\"M 35 529 L 574 529 L 574 547 L 35 547 L 35 529 z \\\"/></clipPath><path clip-path=\\\"url(#clip0-9)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 35.3 546.1561 L 573.1 546.1561 L 573.1 529.8377 L 35.3 529.8377 L 35.3 546.1561 z \\\"/><path clip-path=\\\"url(#clip0-9)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 40.7 543.1561 L 555.4 543.1561 L 555.4 531.8377 L 40.7 531.8377 L 40.7 543.1561 z \\\"/><path clip-path=\\\"url(#clip0-9)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 96.7096 543.1561 L 499.7096 543.1561 L 499.7096 531.1561 L 96.7096 531.1561 L 96.7096 543.1561 z \\\"/><g clip-path=\\\"url(#clip0-9)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 96.7096 533.9373)\\\" x=\\\"0 2.78 11.11 17.78 25.56 32.78 38.89 45.56 52.78 58.89 61.55 68.77 75.44 82.66 88.77 95.44 101 104.33 111 118.22 125.44 132.66 139.88 146.55 153.22 159.89 162.55 169.77 172.55 179.22 186.44 192 199.78 206.45 213.67 220.89 227.56 234.23 236.89 239.82 242.48 245.26 252.48 259.7 265.26 272.48 279.7 282.48 289.7 297.48 300.14 307.36 315.14 321.81 327.92 330.58 337.25 344.47 351.69 354.35 361.02 367.69 374.36 382.69 389.36 396.58\\\">IMPORTANT RENTAL-PURCHASE DISCLOSURES – INCLUDING COST AND PAYMENT</text></g><clipPath id=\\\"clip0-10\\\"><path d=\\\"M 35 81 L 574 81 L 574 530 L 35 530 L 35 81 z \\\"/></clipPath><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 517.619)\\\" x=\\\"0 6.11 13.33 16.11\\\">THIS</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 63.4783 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 68.7771 517.619)\\\" x=\\\"0 6.11 13.33 20 27.22 33.89 40.56 47.78 53.89 56.67 64.45\\\">TRANSACTION</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 140.447 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 145.7457 517.619)\\\" x=\\\"0 2.78\\\">IS</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 155.194 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 160.4927 517.619)\\\" x=\\\"0\\\">A</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 167.1627 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 172.4614 517.619)\\\" x=\\\"0 5.56 12.23 18.9 25.57\\\">LEASE</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 204.7026 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.0014 517.619)\\\" x=\\\"0 6.67 14.45 21.67 28.34 35.01 43.34 50.01 57.23\\\">AGREEMENT</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 273.3412 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 278.64 517.619)\\\" x=\\\"0 9.44 12.22 18.33\\\">WITH</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 304.1868 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 309.4856 517.619)\\\" x=\\\"0 7.78 14.45 20.56 23.34 31.12\\\">OPTION</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 347.8206 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 353.1193 517.619)\\\" x=\\\"0 6.11\\\">TO</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 367.006 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 372.3048 517.619)\\\" x=\\\"0 6.67 13.89 21.11 28.33 35.55 42.22 48.89 55.56\\\">PURCHASE.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.6495 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 435.9483 517.619)\\\" x=\\\"0 6.67 14.45\\\">YOU</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 457.6182 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 462.9169 517.619)\\\" x=\\\"0 9.44 12.22 17.78\\\">WILL</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.2568 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 491.5555 517.619)\\\" x=\\\"0 7.22 15\\\">NOT</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.6639 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 517.9627 517.619)\\\" x=\\\"0 7.78 17.22\\\">OWN</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 542.4012 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 547.6999 517.619)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 506.3006)\\\" x=\\\"0 6.67 13.89 21.67 28.34 35.01 42.23 48.34\\\">PROPERTY</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 95.7098 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 100.6852 506.3006)\\\" x=\\\"0 7.22 14.44 20.55 23.33\\\">UNTIL</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 129.5768 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 134.5522 506.3006)\\\" x=\\\"0 6.67 14.45\\\">YOU</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 156.2221 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 161.1975 506.3006)\\\" x=\\\"0 7.22 13.89 20.56\\\">HAVE</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 188.429 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 193.4044 506.3006)\\\" x=\\\"0 6.67 13.34 16.12\\\">PAID</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 216.7442 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 221.7197 506.3006)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 241.7197 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 246.6951 506.3006)\\\" x=\\\"0 6.11 13.89 20 26.67\\\">TOTAL</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 278.9216 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 283.8971 506.3006)\\\" x=\\\"0 6.67 13.34 20.01 28.34 35.01 42.23 48.34\\\">PAYMENTS</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.9068 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 343.8822 506.3006)\\\" x=\\\"0 7.22 13.89 21.11 27.78 34.45 41.12 47.79 55.01\\\">NECESSARY</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 405.5668 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 410.5422 506.3006)\\\" x=\\\"0 6.11\\\">TO</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 424.4289 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 429.4044 506.3006)\\\" x=\\\"0 6.67 13.89 21.67 28.89 31.67 38.89\\\">ACQUIRE</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.9659 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 479.9413 506.3006)\\\" x=\\\"0 7.78 17.22 24.44 31.11 38.33 45 52.22 55\\\">OWNERSHIP</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 541.6112 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 546.5866 506.3006)\\\" x=\\\"0 6.67 13.89\\\">AND</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 494.9822)\\\" x=\\\"0 7.22 15 23.33 30 35.56\\\">COMPLY</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 82.9314 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 86.988 494.9822)\\\" x=\\\"0 9.44 12.22 18.33\\\">WITH</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 112.5348 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 116.5913 494.9822)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.5913 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 140.6478 494.9822)\\\" x=\\\"0 7.78 17.22 24.44 31.11 38.33 45 52.22 55\\\">OWNERSHIP</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 202.3178 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 206.3743 494.9822)\\\" x=\\\"0 6.11 12.78 20 28.33 35\\\">TERMS.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 244.1526 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 248.2091 494.9822)\\\" x=\\\"0 6.67 14.45\\\">YOU</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 269.879 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 273.9355 494.9822)\\\" x=\\\"0 6.67 13.89\\\">ARE</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 294.497 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 298.5535 494.9822)\\\" x=\\\"0 7.22 15\\\">NOT</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.6619 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 323.7184 494.9822)\\\" x=\\\"0 7.78 14.45 20.01 22.79 30.57 37.24 43.35 50.02\\\">OBLIGATED</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.9548 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 385.0113 494.9822)\\\" x=\\\"0 6.11\\\">TO</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 398.898 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 402.9545 494.9822)\\\" x=\\\"0 6.67 13.34\\\">PAY</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 422.9643 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 427.0208 494.9822)\\\" x=\\\"0\\\">A</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 433.6907 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 437.7472 494.9822)\\\" x=\\\"0 6.67 13.89\\\">SUM</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 459.9689 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 464.0254 494.9822)\\\" x=\\\"0 7.78 15 21.67 28.34 34.45 41.12\\\">GREATER</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.3652 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 516.4217 494.9822)\\\" x=\\\"0 6.11 13.33 20\\\">THAN</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 543.6434 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 547.6999 494.9822)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 483.6639)\\\" x=\\\"0 6.11 13.89 20 26.67 32.23 34.89 41.56 48.23 54.9 63.23 69.9 77.12 83.23 89.9 92.56 98.67 106.45 113.67 116.33 123 125.66 132.33 135.11 142.33 150.11 155.67 162.34 165 170.56 177.23 183.9 190.57 197.24 199.9 206.01 212.68 219.9 228.23\\\">TOTAL PAYMENTS FOR A SINGLE LEASE TERM.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 470.3455)\\\" x=\\\"0 7.22 12.78 17.78\\\">Cash</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 64.0447 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 67.2085 470.3455)\\\" x=\\\"0 6.67 10 12.28 17.28\\\">Price</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 90.0503 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 93.214 470.3455)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 101.5539 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 104.7176 470.3455)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 145.2889 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.4527 470.3455)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 165.6841 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 168.8478 470.3455)\\\" x=\\\"0 7.22 12.78 17.78\\\">Cash</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 192.1926 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 195.3563 470.3455)\\\" x=\\\"0 6.67 10 12.28 17.28\\\">Price</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 218.1981 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 221.3619 470.3455)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 229.7017 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 232.8655 470.3455)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 246.7668 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 249.9306 470.3455)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 287.7235 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 290.8873 470.3455)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 298.1676 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 301.3313 470.3455)\\\" x=\\\"0\\\">$</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 306.8928 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 310.0566 470.3455)\\\" x=\\\"0 5.56 8.34 13.9 19.46 25.02 27.8 33.36 38.92\\\">3,872.00,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.7607 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 354.9244 470.3455)\\\" x=\\\"0 7.22 12.78 15.06 20.06\\\">which</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.5494 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 383.7132 470.3455)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 390.9935 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 394.1572 470.3455)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 408.0586 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 411.2223 470.3455)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 444.5768 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 447.7406 470.3455)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 463.8636 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 467.0274 470.3455)\\\" x=\\\"0 7.22 12.78 18.34 20.62\\\">would</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 493.2139 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 496.3776 470.3455)\\\" x=\\\"0 5.56 11.12 16.12\\\">have</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 518.0622 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 521.226 470.3455)\\\" x=\\\"0 5.56 11.12 13.4\\\">paid</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 540.1908 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 543.3545 470.3455)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 548.4131 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 551.5769 470.3455)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 459.0271)\\\" x=\\\"0 5.56 11.12\\\">had</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 57.3846 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 60.336 459.0271)\\\" x=\\\"0 5.56 11.12 14.45 19.45 25.01 30.57 35.57 41.13\\\">purchased</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 107.0352 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 109.9866 459.0271)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 123.888 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 126.8394 459.0271)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 164.6324 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 167.5838 459.0271)\\\" x=\\\"0 2.78 6.11 11.67\\\">from</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 187.5838 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 190.5352 459.0271)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 204.4366 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 207.388 459.0271)\\\" x=\\\"0 7.22 12.78 15.56 21.12 23.4 25.68 31.24\\\">Retailer</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 241.9632 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 244.9147 459.0271)\\\" x=\\\"0 7.22 9.5 12.28\\\">with</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.7565 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 265.7079 459.0271)\\\" x=\\\"0 5 10.56 15.56\\\">cash</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 286.8309 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 289.7824 459.0271)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 300.9054 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 303.8568 459.0271)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 317.7582 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 320.7096 459.0271)\\\" x=\\\"0 5.56 11.12\\\">day</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 336.8327 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 339.7841 459.0271)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.1239 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 351.0754 459.0271)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 366.6955 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 369.6469 459.0271)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 421.3412 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 424.2927 459.0271)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 25.68 27.96 32.96\\\">inclusive</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 462.8181 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 465.7695 459.0271)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.1093 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 477.0607 459.0271)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 493.1838 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 496.1352 459.0271)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64\\\">applicable</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 541.3452 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 544.2966 459.0271)\\\" x=\\\"0 5 10.56 12.84 18.4\\\">sales</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 447.7088)\\\" x=\\\"0 5.56 8.89 11.55 17.11 22.11 27.67 30.33 33.11 38.67 43.67\\\">or use tax.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 434.3904)\\\" x=\\\"0 6.11 11.67 14.45 20.01\\\">Total</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 62.99 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 66.9187 434.3904)\\\" x=\\\"0 7.22 12.78 17.78\\\">Cost</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 87.4803 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 91.409 434.3904)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 99.7488 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 103.6775 434.3904)\\\" x=\\\"0 5.56 11.12 16.68 21.68 27.24\\\">Lease;</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 133.7019 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 137.6306 434.3904)\\\" x=\\\"0 6.67 12.23 15.56 17.84 23.4 28.96 31.24\\\">Periodic</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 173.8758 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 177.8045 434.3904)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46 44.46\\\">Payments;</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.0457 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 228.9744 434.3904)\\\" x=\\\"0 6.67 10 15.56 20.56 26.12 31.12 36.12 38.4 43.96\\\">Processing</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 278.5007 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 282.4295 434.3904)\\\" x=\\\"0 6.11 11.67 17.23\\\">Fee;</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.4392 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 306.3679 434.3904)\\\" x=\\\"0 2.78 8.34 10.62 13.4 15.68 21.24\\\">Initial</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.8884 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 333.8171 434.3904)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46\\\">Payment;</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 376.0584 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 379.9871 434.3904)\\\" x=\\\"0 7.22 12.78 17.78\\\">Cost</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 400.5486 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 404.4773 434.3904)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 412.8171 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 416.7459 434.3904)\\\" x=\\\"0 7.22 12.78 18.34 21.12 26.68 28.96\\\">Rental.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 448.489 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 452.4177 434.3904)\\\" x=\\\"0 7.22 12.78 15.06 20.62 25.62\\\">Unless</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 483.0427 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 486.9714 434.3904)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 503.0945 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 507.0232 434.3904)\\\" x=\\\"0 5.56 10.56 16.12 19.45 24.45 26.73 31.73\\\">exercise</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 544.3181 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 548.2468 434.3904)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 423.0721)\\\" x=\\\"0 5.56 11.12 16.68 20.01 27.23 32.79\\\">100-Day</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 78.4979 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.2541 423.0721)\\\" x=\\\"0 7.78 13.34 16.12 18.4 23.96\\\">Option</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 110.7756 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 113.5318 423.0721)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 122.4234 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 125.1797 423.0721)\\\" x=\\\"0 6.67 12.23 15.56 17.84\\\">Early</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 148.0215 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 150.7777 423.0721)\\\" x=\\\"0 6.67 12.23 17.23 20.56 28.34 33.9\\\">Buy-Out</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 187.4574 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 190.2136 423.0721)\\\" x=\\\"0 7.78 13.34 16.12 18.4 23.96\\\">Option</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 219.7351 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 222.4914 423.0721)\\\" x=\\\"0 5 10.56\\\">set</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 235.8312 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 238.5875 423.0721)\\\" x=\\\"0 2.78 8.34 11.67 14.45\\\">forth</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 258.5972 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 261.3535 423.0721)\\\" x=\\\"0 5.56 11.12 13.4 18.96 26.18\\\">below,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.3183 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 293.0746 423.0721)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 306.9759 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 309.7322 423.0721)\\\" x=\\\"0 3.33 9.44 15 17.78 23.34\\\">“Total</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.3523 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.1086 423.0721)\\\" x=\\\"0 7.22 12.78 17.78 20.56\\\">Cost”</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 362.0002 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 364.7564 423.0721)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 373.0962 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 375.8525 423.0721)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 389.7539 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 392.5101 423.0721)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.3031 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 433.0593 423.0721)\\\" x=\\\"0 5.56 11.12 16.68 22.24\\\">under</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 458.6355 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 461.3917 423.0721)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 477.0119 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 479.7681 423.0721)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 528.6841 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 531.4404 423.0721)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 545.5029 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 548.2591 423.0721)\\\" x=\\\"0 5.56\\\">be</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.3822 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 562.1384 423.0721)\\\" x=\\\"0\\\">$</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 411.7537)\\\" x=\\\"0 5.56 8.34 13.9 19.46 25.02 27.8 33.36 38.92\\\">3,965.32.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 82.4041 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 85.187 411.7537)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 102.4184 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 105.2013 411.7537)\\\" x=\\\"0 6.11 11.67 14.45 20.01\\\">Total</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 127.4913 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 130.2742 411.7537)\\\" x=\\\"0 7.22 12.78 17.78\\\">Cost</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 150.8357 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 153.6186 411.7537)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.8989 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 163.6817 411.7537)\\\" x=\\\"0 5.56 11.12 16.12 21.68\\\">based</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 190.9279 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 193.7107 411.7537)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 204.8338 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 207.6166 411.7537)\\\" x=\\\"0 5.56\\\">an</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 218.7397 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 221.5226 411.7537)\\\" x=\\\"0 2.78 8.34 10.62 13.4 15.68 21.24\\\">Initial</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.0431 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 247.8259 411.7537)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68\\\">Payment</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 287.2888 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 290.0717 411.7537)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 298.4115 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 301.1944 411.7537)\\\" x=\\\"0\\\">$</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 306.7559 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 309.5388 411.7537)\\\" x=\\\"0 5.56 8.34 13.9\\\">0.00</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.0017 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 331.7846 411.7537)\\\" x=\\\"0 5.56 11.12 16.12 21.68 27.24 29.52\\\">payable</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 366.8725 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 369.6554 411.7537)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.7784 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 383.5613 411.7537)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 397.4626 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 400.2455 411.7537)\\\" x=\\\"0 5.56 11.12 13.9\\\">date</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.7084 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 422.4913 411.7537)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.8311 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 433.614 411.7537)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 449.2341 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 452.017 411.7537)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 500.933 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 503.7159 411.7537)\\\" x=\\\"0 3.33 6.11 11.67\\\">(the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 520.9473 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 523.7302 411.7537)\\\" x=\\\"0 3.33 10.55 16.11 21.67 27.23 29.51 32.84 38.4\\\">“Required</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 400.4353)\\\" x=\\\"0 2.78 8.34 10.62 13.4 15.68 21.24\\\">Initial</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 64.2205 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 68.4622 400.4353)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46 42.79 46.12\\\">Payment”),</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 117.3635 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 121.6052 400.4353)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 126.6638 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 130.9055 400.4353)\\\" x=\\\"0 5.56 11.12 16.12\\\">any,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 149.8068 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 154.0485 400.4353)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 159.61 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 163.8517 400.4353)\\\" x=\\\"0 5.56 8.89 14.45 19.45 25.01 30.01 35.01 37.29 42.85\\\">processing</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 212.2697 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 216.5114 400.4353)\\\" x=\\\"0 2.78 8.34\\\">fee</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 230.4127 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 234.6544 400.4353)\\\" x=\\\"0 3.33 10.55 16.11 18.39 23.39\\\">(which</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 263.6095 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 267.8511 400.4353)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.1314 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 279.3731 400.4353)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 293.2745 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 297.5161 400.4353)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 303.0777 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 307.3193 400.4353)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 345.6738 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 349.9155 400.4353)\\\" x=\\\"0 2.78 8.34 15.56 21.12 24.45 30.01\\\">towards</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 384.9301 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 389.1718 400.4353)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.0732 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.3149 400.4353)\\\" x=\\\"0 5 10.56 15.56\\\">cost</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 425.6547 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 429.8964 400.4353)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 438.2362 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 442.4779 400.4353)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 461.931 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 466.1727 400.4353)\\\" x=\\\"0 3.33 8.89 14.45 17.23 22.79 25.07\\\">rental)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 494.576 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 498.8177 400.4353)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 507.1575 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 511.3992 400.4353)\\\" x=\\\"0\\\">$</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 516.9607 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 521.2024 400.4353)\\\" x=\\\"0 5.56 11.12 13.9 19.46\\\">10.00</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 546.2268 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 550.4685 400.4353)\\\" x=\\\"0 3.33 6.11 11.67\\\">(the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 389.117)\\\" x=\\\"0 3.33 10 13.33 18.89 23.89 29.45 34.45 39.45 41.73 47.29\\\">“Processing</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 93.5564 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 97.3241 389.117)\\\" x=\\\"0 6.11 11.67 17.23 20.56 23.89\\\">Fee”),</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 123.9941 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 127.7617 389.117)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 132.8203 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 136.588 389.117)\\\" x=\\\"0 5.56 11.12 16.12\\\">any,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 155.4894 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 159.2571 389.117)\\\" x=\\\"0 5.56\\\">26</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 170.3801 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 174.1478 389.117)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.74 24.02 29.58 35.14 40.7\\\">additional</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 217.1361 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 220.9038 389.117)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57 38.35\\\">payments</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 264.2583 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 268.026 389.117)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.3658 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 280.1335 389.117)\\\" x=\\\"0\\\">$</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 285.695 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 289.4627 389.117)\\\" x=\\\"0 5.56 8.34 13.9\\\">6.97</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.9256 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 312.6933 389.117)\\\" x=\\\"0 3.33 8.89\\\">(as</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 326.5849 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 330.3526 389.117)\\\" x=\\\"0 5.56 11.12 13.4 18.96 23.96 26.74 32.3 37.86\\\">adjusted,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 370.9971 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 374.7648 389.117)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.3263 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 384.094 389.117)\\\" x=\\\"0 3.33 10.55 16.11 21.67 27.23 29.51 35.07\\\">“Regular</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 422.5022 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 426.2699 389.117)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46 42.79\\\">Payment”)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 472.393 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 476.1607 389.117)\\\" x=\\\"0 5.56 11.12 16.12 21.68\\\">each,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 500.6235 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 504.3912 389.117)\\\" x=\\\"0 5.56 11.12 16.12 21.68 27.24 29.52\\\">payable</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 539.4791 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 543.2468 389.117)\\\" x=\\\"0 5.56 10.56 16.12 19.45\\\">every</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 377.7986)\\\" x=\\\"0 5.56 8.34 13.9 19.46\\\">other</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 63.493 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 66.4195 377.7986)\\\" x=\\\"0 7.22 12.78 18.34 23.34\\\">week.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 92.5426 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 95.4692 377.7986)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 112.7006 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 115.6272 377.7986)\\\" x=\\\"0 6.11 11.67 14.45 20.01\\\">Total</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 137.9172 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 140.8438 377.7986)\\\" x=\\\"0 7.22 12.78 17.78\\\">Cost</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 161.4053 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 164.3319 377.7986)\\\" x=\\\"0 5.56 7.84 12.84\\\">also</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 182.7352 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 185.6617 377.7986)\\\" x=\\\"0 3.33 8.89 11.67 13.95 19.51 24.51 27.29\\\">reflects</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 217.9518 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 220.8784 377.7986)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 237.0014 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 239.928 377.7986)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.74 24.02 29.58 35.14 40.7\\\">additional</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 282.9163 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 285.8428 377.7986)\\\" x=\\\"0 5 10.56 15.56\\\">cash</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 306.9659 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 309.8924 377.7986)\\\" x=\\\"0 5.56 11.12 13.4\\\">paid</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 328.8573 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 331.7839 377.7986)\\\" x=\\\"0 2.78 8.34 13.9 19.46 24.46\\\">today,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.0251 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 361.9516 377.7986)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 367.0102 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 369.9368 377.7986)\\\" x=\\\"0 5.56 11.12 16.12\\\">any.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.8382 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 391.7647 377.7986)\\\" x=\\\"0 6.67 12.23 17.79\\\">Your</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 412.8878 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 415.8143 377.7986)\\\" x=\\\"0 2.78 8.34 11.12 16.68\\\">total</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.7743 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 437.7009 377.7986)\\\" x=\\\"0 2.28 7.84 10.12 12.9 15.18 20.74\\\">initial</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 460.7233 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 463.6499 377.7986)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 502.0044 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 504.931 377.7986)\\\" x=\\\"0 5.56 11.12\\\">due</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.6155 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 524.5421 377.7986)\\\" x=\\\"0 2.78 8.34 13.9 19.46\\\">today</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.005 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 551.9316 377.7986)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.2118 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 562.1384 377.7986)\\\" x=\\\"0\\\">$</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 366.4803)\\\" x=\\\"0 5.56 8.34 13.9 19.46\\\">0.00,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 62.9412 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 66.7951 366.4803)\\\" x=\\\"0 7.22 12.78 15.06 20.06\\\">which</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 92.4201 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 96.274 366.4803)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 103.5543 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 107.4082 366.4803)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 121.3096 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 125.1635 366.4803)\\\" x=\\\"0 5 10.56\\\">sum</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 144.0551 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 147.909 366.4803)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 156.2488 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 160.1027 366.4803)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 174.0041 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 177.858 366.4803)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 29.51 35.07\\\">Required</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 218.4976 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 222.3515 366.4803)\\\" x=\\\"0 2.78 8.34 10.62 13.4 15.68 21.24\\\">Initial</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.872 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 249.7259 366.4803)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46\\\">Payment,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.9672 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 295.8211 366.4803)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 300.8797 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 304.7336 366.4803)\\\" x=\\\"0 5.56 11.12 16.12\\\">any,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 323.6349 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 327.4888 366.4803)\\\" x=\\\"0 6.67 10 15.56 20.56 26.12 31.12 36.12 38.4 43.96\\\">Processing</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 377.0152 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 380.8691 366.4803)\\\" x=\\\"0 6.11 11.67 17.23\\\">Fee,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 400.8789 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 404.7328 366.4803)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 409.7914 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 413.6453 366.4803)\\\" x=\\\"0 5.56 11.12 16.12\\\">any,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 432.5466 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 436.4005 366.4803)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 453.0851 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 456.939 366.4803)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 473.062 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 476.916 366.4803)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.74 24.02 29.58 35.14 40.7\\\">additional</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 519.9042 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 523.7581 366.4803)\\\" x=\\\"0 5 10.56 15.56\\\">cash</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 544.8812 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 548.7351 366.4803)\\\" x=\\\"0 5.56 11.12 13.4\\\">paid</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 355.1619)\\\" x=\\\"0 2.78 8.34 13.9 19.46 24.46\\\">today.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 67.9412 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 70.9372 355.1619)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 76.4938 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 79.4898 355.1619)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 95.6128 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 98.6088 355.1619)\\\" x=\\\"0 5.56\\\">do</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 109.7318 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 112.7278 355.1619)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 126.6291 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 129.6251 355.1619)\\\" x=\\\"0 3.33 8.89 17.22 19.5\\\">remit</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 151.9054 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 154.9013 355.1619)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 171.0244 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 174.0203 355.1619)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64\\\">applicable</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 219.2303 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 222.2262 355.1619)\\\" x=\\\"0 6.67 10 15.56 20.56 26.12 31.12 36.12 38.4 43.96\\\">Processing</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 271.7526 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 274.7486 355.1619)\\\" x=\\\"0 6.11 11.67\\\">Fee</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.98 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 294.976 355.1619)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 303.8676 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 306.8635 355.1619)\\\" x=\\\"0 2.78 8.34 10.62 13.4 15.68 21.24\\\">Initial</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 330.3841 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 333.38 355.1619)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68\\\">Payment</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 372.8429 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 375.8388 355.1619)\\\" x=\\\"0 5.56\\\">at</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 384.1787 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 387.1747 355.1619)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 401.076 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 404.072 355.1619)\\\" x=\\\"0 2.78 5.06 13.39\\\">time</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 423.0222 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 426.0181 355.1619)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.358 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 437.3539 355.1619)\\\" x=\\\"0 5.56 11.12 14.45 19.45 25.01 30.57 35.57 41.13\\\">purchase,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 481.2699 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 484.2659 355.1619)\\\" x=\\\"0 2.28\\\">it</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.3245 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 492.3205 355.1619)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.6007 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 502.5967 355.1619)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24 31.8\\\">included</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 539.9649 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 542.9608 355.1619)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 550.8026 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.7986 355.1619)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 343.8436)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 75.7781 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 78.9772 343.8436)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46\\\">Payments</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 123.44 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 126.6391 343.8436)\\\" x=\\\"0 5 10.56\\\">set</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 139.9789 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 143.1779 343.8436)\\\" x=\\\"0 2.78 8.34 11.67 14.45\\\">forth</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 163.1877 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 166.3868 343.8436)\\\" x=\\\"0 5.56 11.12 16.68 21.68 27.24\\\">above.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 196.4112 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 199.6102 343.8436)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 216.8416 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 220.0407 343.8436)\\\" x=\\\"0 6.11 11.67 14.45 20.01\\\">Total</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 242.3307 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 245.5297 343.8436)\\\" x=\\\"0 7.22 12.78 17.78\\\">Cost</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 266.0913 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 269.2903 343.8436)\\\" x=\\\"0 5.56 11.12 16.68\\\">does</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.9749 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 294.1739 343.8436)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.0753 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 311.2743 343.8436)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24\\\">include</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 343.0809 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 346.28 343.8436)\\\" x=\\\"0 2.28 7.84 10.62\\\">late</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 362.4616 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 365.6606 343.8436)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57 38.35\\\">payment,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 406.7935 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 409.9925 343.8436)\\\" x=\\\"0 5.56 11.12 16.68 21.68 27.24 30.02 32.8 35.08 40.08 42.36 47.92 53.48\\\">nonsufficient</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.2571 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 469.4562 343.8436)\\\" x=\\\"0 2.78 8.34 13.9 19.46 24.46\\\">funds,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 496.6974 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 499.8964 343.8436)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 27.3 30.08\\\">default,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 532.7577 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 535.9568 343.8436)\\\" x=\\\"0 5.56 7.84 12.84 17.84 23.4 28.96\\\">pickup,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 332.5252)\\\" x=\\\"0 3.33 8.89 11.17 16.73 21.73 24.51 30.07 32.85 38.41 46.74 52.3 57.86 60.64\\\">reinstatement,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 104.1228 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 108.8966 332.5252)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 117.7882 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 122.5619 332.5252)\\\" x=\\\"0 5.56 8.34 13.9 19.46\\\">other</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 145.3549 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 150.1286 332.5252)\\\" x=\\\"0 2.78 8.34 13.9 18.9\\\">fees,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 171.8083 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 176.5821 332.5252)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 181.6407 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 186.4144 332.5252)\\\" x=\\\"0 5.56 11.12 16.12\\\">any,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 205.3158 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.0895 332.5252)\\\" x=\\\"0 5.56 7.84 12.84 17.84 20.12 25.68 30.68 36.24\\\">disclosed</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 251.8962 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 256.6699 332.5252)\\\" x=\\\"0 5.56 11.12 13.4 18.96 26.18\\\">below.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 285.6347 332.5252)\\\" x=\\\"0 4.7737\\\">  </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 295.1822 332.5252)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.4137 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 317.1874 332.5252)\\\" x=\\\"0 5 10.56 15.56\\\">cost</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.5273 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 340.301 332.5252)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.6409 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 353.4146 332.5252)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 372.8677 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 377.6415 332.5252)\\\" x=\\\"0 3.33 8.89 14.45 17.23 22.79\\\">rental</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.7147 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.4884 332.5252)\\\" x=\\\"0 3.33 6.66 13.88 19.44 24.44\\\">(“Cost</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.7101 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 439.4839 332.5252)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.8237 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 452.5975 332.5252)\\\" x=\\\"0 7.22 12.78 18.34 21.12 26.68 28.96 32.29\\\">Rental”)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 488.2225 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 492.9962 332.5252)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 500.2765 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 505.0502 332.5252)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 518.9516 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 523.7253 332.5252)\\\" x=\\\"0 5.56 7.84 10.62 13.4 18.96 22.29 27.85 33.41 38.41\\\">difference</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 321.2068)\\\" x=\\\"0 5.56 11.12 13.9 21.12 26.68 32.24 37.8 40.46 43.24 48.8 54.36 57.02 63.13 68.69 71.47 77.03 79.31 81.97 89.19 94.75 99.75 102.53 105.19 110.75 116.31 121.87 124.53 131.75 137.31 142.31 147.87 150.53 157.2 160.53 162.81 167.81 173.37 176.15 178.81 184.37 189.93 195.49 198.15 205.37 207.65 209.93 212.21 214.87 220.43 225.99 228.65 234.21 236.87 242.43 247.99 250.77 256.33 261.89\\\">between the Total Cost and Cash Price, and will be $ 93.32.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 309.8885)\\\" x=\\\"0 6.67 11.67 17.23 22.79 27.79 30.57 36.13\\\">Expected</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 82.3943 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 86.3823 309.8885)\\\" x=\\\"0 7.22 12.78 15.06 17.34 22.34 27.9 31.23\\\">Delivery</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 122.6177 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 126.6057 309.8885)\\\" x=\\\"0 7.22 12.78 15.56 21.12\\\">Date;</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 150.507 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 154.495 309.8885)\\\" x=\\\"0 6.11 8.39 11.72 16.72\\\">First</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 173.9921 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 177.9801 309.8885)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 213.0582 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 217.0462 309.8885)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46\\\">Payment.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.2874 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 263.2754 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 267.2634 309.8885)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 284.4948 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 288.4828 309.8885)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 29.51 35.07\\\">Required</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.1225 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 333.1105 309.8885)\\\" x=\\\"0 2.78 8.34 10.62 13.4 15.68 21.24\\\">Initial</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 356.631 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 360.619 309.8885)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46\\\">Payment,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.8602 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 406.8482 309.8885)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 411.9068 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 415.8947 309.8885)\\\" x=\\\"0 5.56 11.12 16.12\\\">any,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.7961 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 438.7841 309.8885)\\\" x=\\\"0 5 10.56 15.56 21.12 24.45\\\">covers</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.2372 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 472.2252 309.8885)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.1266 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 490.1146 309.8885)\\\" x=\\\"0 3.33 8.89 14.45 17.23 22.79\\\">rental</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 515.1878 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 519.1758 309.8885)\\\" x=\\\"0 5.56 11.12 14.45 16.73 22.29\\\">period</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 547.0323 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 551.0202 309.8885)\\\" x=\\\"0 2.78 8.34 13.9\\\">that</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 298.5701)\\\" x=\\\"0 5.56 11.12 16.68 18.96 24.52\\\">begins</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 70.2264 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 73.3394 298.5701)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 84.4625 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 87.5755 298.5701)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 101.4769 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 104.59 298.5701)\\\" x=\\\"0 5.56 11.12 13.9\\\">date</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 124.0529 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 127.166 298.5701)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 143.289 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 146.4021 298.5701)\\\" x=\\\"0 3.33 8.89 13.89 19.45 21.73 26.73\\\">receive</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 178.697 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 181.8101 298.5701)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 195.7114 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 198.8245 298.5701)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 236.6175 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 239.7305 298.5701)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.4151 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 259.5282 298.5701)\\\" x=\\\"0 5.56 11.12 16.68\\\">ends</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.2128 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 284.3258 298.5701)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 295.4489 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 298.562 298.5701)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 318.0151 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 321.1281 298.5701)\\\" x=\\\"0 2.78 5.06 8.39 13.39\\\">first</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 337.2951 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 340.4082 298.5701)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.4863 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 378.5994 298.5701)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68\\\">Payment</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 418.0623 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 421.1754 298.5701)\\\" x=\\\"0 5.56 11.12 13.9 19.46\\\">date.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 443.4166 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 446.5297 298.5701)\\\" x=\\\"0 6.67 12.23 17.79\\\">Your</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.6527 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 470.7658 298.5701)\\\" x=\\\"0 2.78 5.06 8.39 13.39\\\">first</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.9328 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 490.0459 298.5701)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 525.124 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 528.237 298.5701)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68\\\">Payment</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 287.2518)\\\" x=\\\"0 5.56 11.12 13.9\\\">date</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.1629 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 63.9277 287.2518)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 77.9902 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.7549 287.2518)\\\" x=\\\"0 5.56\\\">be</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 92.878 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 96.6428 287.2518)\\\" x=\\\"0 5.56\\\">at</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 104.9826 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 108.7474 287.2518)\\\" x=\\\"0 2.28 7.84 13.4 18.4\\\">least</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 129.929 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 133.6938 287.2518)\\\" x=\\\"0 5 10.56 15.56 21.12\\\">seven</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.3784 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 164.1432 287.2518)\\\" x=\\\"0 5.56 11.12 16.12\\\">days</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 185.2662 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 189.031 287.2518)\\\" x=\\\"0 5.56 8.34 11.12 16.68\\\">after</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.0407 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 212.8055 287.2518)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 226.7069 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 230.4717 287.2518)\\\" x=\\\"0 2.28 7.84 10.62 16.18\\\">later</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 249.9834 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 253.7482 287.2518)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.088 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 265.8528 287.2518)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 27.8 33.36 38.92 44.48\\\">07/24/2020</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 315.9016 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 319.6664 287.2518)\\\" x=\\\"0 3.33 5.61\\\">(i)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 328.6068 287.2518)\\\" x=\\\"0 3.7648\\\">  </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 336.1364 287.2518)\\\" x=\\\"0 3.33 6.11 11.67\\\">(the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 353.3678 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 357.1326 287.2518)\\\" x=\\\"0 3.33 10 15 20.56 26.12 31.12 33.9 39.46\\\">“Expected</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.157 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 405.9218 287.2518)\\\" x=\\\"0 7.22 12.78 15.06 17.34 22.34 27.9 31.23\\\">Delivery</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 442.1572 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 445.9219 287.2518)\\\" x=\\\"0 7.22 12.78 15.56 21.12 24.45 27.78\\\">Date”),</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 476.4835 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 480.2482 287.2518)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 496.9328 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 500.6976 287.2518)\\\" x=\\\"0 3.33 5.61 7.89\\\">(ii)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 511.9183 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 515.6831 287.2518)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.5844 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 533.3492 287.2518)\\\" x=\\\"0 5.56 11.12 13.9\\\">date</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.8121 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 556.5769 287.2518)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 275.9334)\\\" x=\\\"0 7.22 12.78 15.06 20.06 25.62 28.28 31.06 36.62 42.18 44.84 51.51 54.84 60.4 65.96 71.52 74.85 77.63 82.63 85.29 87.57 92.57 95.23 100.79 104.12 109.68 114.68 116.96 122.52 128.08 133.64 136.3 141.86 145.19 147.85 153.41 158.97 161.25 163.53 168.53 174.09 177.42 182.98 188.54 191.2 193.98 199.54 202.2 207.2 212.76 218.32\\\">which the Property is provided or delivered to you.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 264.615)\\\" x=\\\"0 5.56 11.12 16.68 20.01 27.23 32.79\\\">100-Day</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 78.4979 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.9917 264.615)\\\" x=\\\"0 7.78 13.34 16.12 18.4 23.96 29.52\\\">Option.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 114.2915 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 117.7853 264.615)\\\" x=\\\"0 6.67\\\">At</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 127.2335 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 130.7273 264.615)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.8504 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 150.3442 264.615)\\\" x=\\\"0 2.78 5.06 13.39\\\">time</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 169.2944 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 172.7882 264.615)\\\" x=\\\"0 5.56 11.12 14.45 16.73 22.29\\\">during</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 200.6446 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 204.1385 264.615)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 218.0398 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 221.5336 264.615)\\\" x=\\\"0 2.78 5.06 8.39 13.39\\\">first</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 237.7006 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 241.1944 264.615)\\\" x=\\\"0 5.56 11.12\\\">100</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.879 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 261.3728 264.615)\\\" x=\\\"0 2.78 6.11 11.67\\\">from</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.3728 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 284.8666 264.615)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 298.768 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 302.2618 264.615)\\\" x=\\\"0 6.67 11.67 17.23 22.79 27.79 30.57 36.13\\\">Expected</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 343.9561 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 347.45 264.615)\\\" x=\\\"0 7.22 12.78 15.06 17.34 22.34 27.9 31.23\\\">Delivery</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.6853 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 387.1791 264.615)\\\" x=\\\"0 7.22 12.78 15.56 21.12\\\">Date,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 411.0805 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 414.5743 264.615)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 428.4757 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 431.9695 264.615)\\\" x=\\\"0 3.33 8.89 14.45 20.01 23.34 30.56 36.12\\\">“100-Day</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 473.0974 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 476.5912 264.615)\\\" x=\\\"0 7.78 13.34 16.12 18.4 23.96 29.52\\\">Option”</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.4428 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 512.9366 264.615)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.8 31.8\\\">applies,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 547.5215 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 551.0154 264.615)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 253.2967)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 56.823 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 59.7295 253.2967)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 78.6211 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.5276 253.2967)\\\" x=\\\"0 5.56 10.56 16.12 21.68 23.96 27.29\\\">acquire</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 114.384 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 117.2905 253.2967)\\\" x=\\\"0 5.56 12.78 18.34 23.9 27.23 32.23 37.79 40.07\\\">ownership</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 162.9301 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 165.8366 253.2967)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 174.1764 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 177.0829 253.2967)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 190.9843 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 193.8907 253.2967)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.6837 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 234.5901 253.2967)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.1517 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 248.0581 253.2967)\\\" x=\\\"0 5.56 11.12 16.12 18.4 23.96\\\">paying</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 277.5845 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 280.4909 253.2967)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.0525 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 293.9589 253.2967)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 307.8603 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 310.7667 253.2967)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 344.1212 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 347.0277 253.2967)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 357.5892 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 360.4957 253.2967)\\\" x=\\\"0 7.22 12.78 15.06 20.06\\\">which</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 386.1207 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 389.0271 253.2967)\\\" x=\\\"0 3.33 5.61\\\">(i)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 397.9676 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 400.874 253.2967)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 414.7754 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 417.6819 253.2967)\\\" x=\\\"0 5 10.56\\\">sum</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 436.5735 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 439.4799 253.2967)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.8198 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 450.7262 253.2967)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 464.6276 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 467.5341 253.2967)\\\" x=\\\"0 5.56 11.12\\\">100</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.2186 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 487.1251 253.2967)\\\" x=\\\"0\\\">–</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 490.0548 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 492.9612 253.2967)\\\" x=\\\"0 7.22 12.78\\\">Day</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 510.7444 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 513.6509 253.2967)\\\" x=\\\"0 6.67 15 20.56 26.12 31.68 34.46\\\">Amount,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 550.8921 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.7986 253.2967)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 241.9783)\\\" x=\\\"0 6.67 10 15.56 20.56 26.12 31.12 36.12 38.4 43.96\\\">Processing</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 90.2264 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 92.924 241.9783)\\\" x=\\\"0 6.11 11.67 17.23\\\">Fee,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 112.9338 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 115.6314 241.9783)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 120.69 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 123.3877 241.9783)\\\" x=\\\"0 5.56 11.12 16.12\\\">any,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 142.289 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 144.9867 241.9783)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64\\\">applicable</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 190.1967 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 192.8943 241.9783)\\\" x=\\\"0 5 10.56 12.84 18.4\\\">sales</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 216.2976 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 218.9953 241.9783)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 227.8869 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 230.5845 241.9783)\\\" x=\\\"0 5.56 10.56\\\">use</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 246.7076 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 249.4052 241.9783)\\\" x=\\\"0 2.78 8.34 13.34 18.9 23.9\\\">taxes,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.0849 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 278.7826 241.9783)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 295.4672 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 298.1648 241.9783)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 314.2879 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 316.9855 241.9783)\\\" x=\\\"0 5.56 11.12 16.68 22.24 24.52\\\">unpaid</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 347.0734 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 349.771 241.9783)\\\" x=\\\"0 2.78 8.34 13.9\\\">fees</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 368.6724 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 371.3701 241.9783)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 384.1533 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 386.8509 241.9783)\\\" x=\\\"0 5.56 11.12 16.12\\\">have</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 408.5355 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 411.2331 241.9783)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01 30.57 36.13\\\">charged,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 450.1492 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 452.8468 241.9783)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.68 32.24\\\">exceeds</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 490.0929 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 492.7906 241.9783)\\\" x=\\\"0 3.33 5.61 7.89\\\">(ii)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 504.0113 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 506.7089 241.9783)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 520.6103 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 523.3079 241.9783)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 556.6624 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 559.3601 241.9783)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 230.66)\\\" x=\\\"0 5.56 11.12 16.12 18.78 21.56 27.12 29.4 32.18 34.46 40.02 42.3 44.96 51.63 57.19 62.19 70.52 76.08 81.64 84.42 87.08 92.64 98.2 103.76 106.42 113.64 119.2 124.76 130.32 132.6 138.16 141.49 144.15 150.82 156.38 161.38 169.71 175.27 180.83 183.61 188.61 191.27 196.27 201.83 207.39 210.05 215.61 221.17 226.17 231.73 234.39 242.72 248.28 253.84 259.4 262.18 264.84 270.95 276.51 282.07 284.73 290.29 295.85 301.41 304.07 311.29 316.85 321.85 324.51 331.18 339.51 345.07 350.63 356.19 358.97 361.63 363.91 368.91 371.57 377.13 379.79 385.35 390.91 393.69 399.25 404.81\\\">any Initial Payment and Regular Payments you have made. The 100 Day Amount is $ 97.70.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 219.3416)\\\" x=\\\"0 6.67 12.23 15.56 17.84\\\">Early</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 63.5418 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 66.4605 219.3416)\\\" x=\\\"0 6.67 12.23 17.23 20.56 28.34 33.9\\\">Buy-Out</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 103.1401 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 106.0588 219.3416)\\\" x=\\\"0 7.78 13.34 16.12 18.4 23.96 29.52\\\">Option.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 138.3586 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 141.2772 219.3416)\\\" x=\\\"0 6.67 9.45 12.23 17.79\\\">After</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 162.3954 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 165.3141 219.3416)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 184.7672 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 187.6858 219.3416)\\\" x=\\\"0 5.56 11.12 16.68 20.01 27.23 32.79\\\">100-Day</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.4837 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 228.4024 219.3416)\\\" x=\\\"0 7.22 12.78 17.78\\\">Cash</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 251.7471 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 254.6657 219.3416)\\\" x=\\\"0 6.67 12.23 17.23 22.79 25.57\\\">Payoff</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 283.0153 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 285.934 219.3416)\\\" x=\\\"0 7.78 13.34 16.12 18.4 23.96\\\">Option</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 315.4555 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 318.3741 219.3416)\\\" x=\\\"0 5.56 11.12\\\">has</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 334.4972 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 337.4158 219.3416)\\\" x=\\\"0 5.56 10.56 16.12 18.4 21.73 27.29 32.85\\\">expired,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 373.0506 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 375.9693 219.3416)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 389.8706 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 392.7893 219.3416)\\\" x=\\\"0 3.33 10 15.56 18.89 21.17\\\">“Early</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 418.9611 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 421.8798 219.3416)\\\" x=\\\"0 6.67 12.23 17.23 20.56 28.34 33.9\\\">Buy-Out</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 458.5595 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 461.4781 219.3416)\\\" x=\\\"0 7.78 13.34 16.12 18.4 23.96 29.52\\\">Option”</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 494.3297 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 497.2484 219.3416)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.8\\\">applies</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.055 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 531.9737 219.3416)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 548.6582 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 551.5769 219.3416)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 208.0232)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 59.5916 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 63.2372 208.0232)\\\" x=\\\"0 5.56 11.12 14.45 19.45 25.01 30.57 35.57\\\">purchase</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 104.3748 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 108.0204 208.0232)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 121.9218 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 125.5673 208.0232)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 163.3603 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 167.0058 208.0232)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 177.5674 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 181.2129 208.0232)\\\" x=\\\"0 5.56 11.12 16.12 18.4 23.96\\\">paying</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 210.7393 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 214.3849 208.0232)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 224.9464 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 228.5919 208.0232)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 242.4933 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 246.1389 208.0232)\\\" x=\\\"0 5 10.56\\\">sum</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 265.0305 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 268.676 208.0232)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 277.0159 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 280.6614 208.0232)\\\" x=\\\"0 3.33 8.89\\\">(1)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 292.8831 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 296.5286 208.0232)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.6517 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 316.2972 208.0232)\\\" x=\\\"0 5.56 11.12 16.12\\\">past</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.1986 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.8442 208.0232)\\\" x=\\\"0 5.56 11.12\\\">due</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.5287 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 359.1743 208.0232)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 394.2524 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 397.898 208.0232)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46 44.46\\\">Payments,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 445.1392 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 448.7847 208.0232)\\\" x=\\\"0 5.56 11.12 16.68 22.24 24.52\\\">unpaid</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 478.8726 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 482.5182 208.0232)\\\" x=\\\"0 2.78 8.34 13.9\\\">fees</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.4196 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 505.0651 208.0232)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.7497 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 525.3952 208.0232)\\\" x=\\\"0 5 10.56 12.84 18.4 23.4 26.18 31.74 36.74\\\">sales/use</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 196.7049)\\\" x=\\\"0 2.78 8.34 13.34 18.9 23.9\\\">taxes,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 67.3797 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 70.748 196.7049)\\\" x=\\\"0 3.33 8.89\\\">(2)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 82.9697 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 86.338 196.7049)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02\\\">70.00%</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 120.254 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 123.6223 196.7049)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 131.9621 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 135.3305 196.7049)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 149.2318 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 152.6001 196.7049)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 185.9546 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 189.3229 196.7049)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 199.8845 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 203.2528 196.7049)\\\" x=\\\"0 7.22 12.78 15.06 20.06\\\">which</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 228.8778 196.7049)\\\" x=\\\"0 3.3683\\\">  </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 235.6144 196.7049)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 249.5157 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 252.8841 196.7049)\\\" x=\\\"0 6.11 11.67 14.45 20.01\\\">Total</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.1741 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 278.5424 196.7049)\\\" x=\\\"0 7.22 12.78 17.78\\\">Cost</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.1039 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 302.4722 196.7049)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.68 32.24\\\">exceeds</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 339.7183 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 343.0866 196.7049)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 356.988 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 360.3563 196.7049)\\\" x=\\\"0 2.78 8.34 10.62 13.4 15.68 21.24\\\">Initial</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.8768 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 387.2451 196.7049)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46\\\">Payment,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 429.4863 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 432.8546 196.7049)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 437.9132 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 441.2815 196.7049)\\\" x=\\\"0 5.56 11.12 16.12\\\">any,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 460.1829 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 463.5512 196.7049)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 480.2358 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 483.6041 196.7049)\\\" x=\\\"0 5 10 15.56 21.12 26.68 32.24 34.52 40.08\\\">scheduled</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.2535 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 532.6218 196.7049)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 185.3865)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46 44.46 47.12 49.9 55.46 58.79 64.35 69.91 75.47 81.03 83.69 86.47 92.03 97.59 100.25 105.81 111.37 114.15 119.71 122.37 127.37 132.93 138.49 141.15 146.71 151.71 157.27 160.6 165.6 167.88 172.88 178.44 181.1 186.1 191.66 197.22 200.55 203.21 208.77 214.33 217.11 219.39 224.95 230.51 233.17 238.73 244.29 249.85 252.51 255.84 261.4 264.73 267.39 272.95 278.51 284.07 286.35 288.63 293.63 299.19 304.75 307.03 312.59 315.25 320.25 325.81 328.09 333.65 338.65 341.31 346.87 350.2 352.86 358.42 363.42 368.98 371.64 374.42 379.98 384.98 390.54 395.54\\\">Payments through the date you exercise your option and (3) applicable sales or use taxes.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 174.0682)\\\" x=\\\"0 7.22 12.78 15.44 22.11 27.67 32.67 38.23 41.56 43.84 46.62 51.62 54.28 61.5 67.06 72.62 78.18 83.18 85.46 88.24 90.9 98.12 103.68 109.24 114.8 117.08 120.41 125.97 131.53 134.31 136.97 144.19 149.75 152.41 157.41 162.97 167.97 173.53 176.86 179.14 181.92 186.92 189.58 195.14 200.7 206.26 211.82 216.82 219.1 221.88 224.54 226.82 231.82 234.48 237.81 243.37 248.93 254.49 256.77 260.1 265.66 271.22 273.88 279.44 285 290.56 296.12 299.45 302.11 304.89 310.45 312.73 317.73 320.39 327.06 332.62 335.95 341.51 347.07 355.4 360.96 366.52 369.3\\\">No Security Deposit Required. No security deposit is required under this Agreement.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 162.7498)\\\" x=\\\"0 5.56 11.12 16.68 21.68\\\">Lease</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 67.9461 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 72.4996 162.7498)\\\" x=\\\"0 6.11 11.67 15 23.33\\\">Term,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 98.608 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 103.1616 162.7498)\\\" x=\\\"0 6.67 12.23 17.79 22.79 28.35 33.91 39.47 45.03 50.59\\\">Subsequent</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 156.5405 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 161.094 162.7498)\\\" x=\\\"0 6.11 11.67 15 23.33 28.33\\\">Terms;</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 192.2024 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 196.7559 162.7498)\\\" x=\\\"0 7.22 12.78 18.34 23.9 31.12 36.68 38.96\\\">Renewal.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.504 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 243.0575 162.7498)\\\" x=\\\"0 6.67 12.23 17.79\\\">Your</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 264.1806 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 268.7341 162.7498)\\\" x=\\\"0 2.28 7.84 10.12 12.9 15.18 20.74\\\">initial</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.7566 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 296.3101 162.7498)\\\" x=\\\"0 2.28 7.84 13.4 18.4\\\">lease</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 320.2749 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 324.8285 162.7498)\\\" x=\\\"0 2.78 8.34 11.67\\\">term</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 344.8285 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 349.382 162.7498)\\\" x=\\\"0 5.56 10.56 16.12 18.4 21.73 27.29\\\">expires</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 381.6769 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 386.2305 162.7498)\\\" x=\\\"0 5.56\\\">60</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 397.3535 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 401.907 162.7498)\\\" x=\\\"0 5.56 11.12 16.12\\\">days</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 423.0301 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 427.5836 162.7498)\\\" x=\\\"0 2.78 6.11 11.67\\\">from</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.5836 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 452.1372 162.7498)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.0385 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 470.5921 162.7498)\\\" x=\\\"0 2.28 7.84 10.62 16.18\\\">later</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 490.1038 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 494.6573 162.7498)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 502.9972 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 507.5507 162.7498)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.4521 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 526.0056 162.7498)\\\" x=\\\"0 6.67 11.67 17.23 22.79 27.79 30.57 36.13\\\">Expected</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 151.4315)\\\" x=\\\"0 7.22 12.78 15.06 17.34 22.34 27.9 31.23\\\">Delivery</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 76.9353 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.1545 151.4315)\\\" x=\\\"0 7.22 12.78 15.56\\\">Date</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 102.2775 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 106.4967 151.4315)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 115.3883 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 119.6074 151.4315)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 133.5088 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 137.7279 151.4315)\\\" x=\\\"0 5.56 11.12 13.9\\\">date</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 157.1908 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 161.4099 151.4315)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 172.533 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 176.7521 151.4315)\\\" x=\\\"0 7.22 12.78 15.06 20.06\\\">which</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 202.3771 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 206.5963 151.4315)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 220.4976 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 224.7168 151.4315)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.5097 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 266.7289 151.4315)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 274.0091 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 278.2283 151.4315)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29 32.85\\\">provided</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 316.6463 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 320.8654 151.4315)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.757 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 333.9761 151.4315)\\\" x=\\\"0 5.56 11.12 13.4 15.68 20.68 26.24 29.57 35.13\\\">delivered</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 374.6744 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 378.8935 151.4315)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 387.2334 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 391.4525 151.4315)\\\" x=\\\"0 5 10.56 16.12\\\">you.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 410.3539 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 414.573 151.4315)\\\" x=\\\"0 7.22 12.78 15.56 17.84\\\">Until</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.6951 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 438.9142 151.4315)\\\" x=\\\"0 3.33 5.61\\\">(i)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.8546 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 452.0738 151.4315)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.1968 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 472.416 151.4315)\\\" x=\\\"0 5.56 11.12 13.9 19.46 21.74\\\">obtain</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.7206 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 503.9398 151.4315)\\\" x=\\\"0 5.56 12.78 18.34 23.9 27.23 32.23 37.79 40.07\\\">ownership</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.5794 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.7986 151.4315)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 140.1131)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 78.493 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 82.2535 140.1131)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 92.815 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 96.5756 140.1131)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29 32.85\\\">provided</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 134.9936 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 138.7541 140.1131)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.5959 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 150.3565 140.1131)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 165.9766 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 169.7371 140.1131)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 221.4315 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 225.192 140.1131)\\\" x=\\\"0 3.33 5.61 7.89\\\">(ii)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 236.4127 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 240.1733 140.1131)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.2963 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 260.0569 140.1131)\\\" x=\\\"0 2.78 8.34 11.67 20 22.28 27.84 33.4 36.18\\\">terminate</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 301.8001 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 305.5606 140.1131)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 321.1807 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 324.9413 140.1131)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 373.8573 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 377.6179 140.1131)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.1794 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 391.9399 140.1131)\\\" x=\\\"0 5.56 11.12 14.45 22.78 25.06 27.84 30.62 36.18\\\">permitted</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 433.6831 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 437.4437 140.1131)\\\" x=\\\"0 5.56 11.12 14.45 20.01 25.57 31.13 36.69 42.25\\\">hereunder</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 483.0345 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 486.795 140.1131)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 503.4796 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 507.2402 140.1131)\\\" x=\\\"0 5 10.56 13.89 17.22 22.78 28.34 33.9 39.46\\\">surrender</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 550.038 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.7986 140.1131)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 128.7947)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 78.493 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.5631 128.7947)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 89.4049 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 92.4749 128.7947)\\\" x=\\\"0 2.28 5.06\\\">its</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 102.5335 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 105.6036 128.7947)\\\" x=\\\"0 5.56 8.89 11.17 16.73 19.01 24.57 30.13\\\">original</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 138.0206 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 141.0907 128.7947)\\\" x=\\\"0 5 10.56 16.12 21.68 23.96 26.74 29.02 34.58 40.14\\\">condition,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 184.0155 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 187.0856 128.7947)\\\" x=\\\"0 2.28 7.84 12.84\\\">less</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 204.9274 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 207.9975 128.7947)\\\" x=\\\"0 3.33 8.89 14.45 19.45 25.01 30.57 36.13 41.69 43.97\\\">reasonable</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.5385 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 260.6086 128.7947)\\\" x=\\\"0 7.22 12.78 18.34\\\">wear</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 282.2834 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 285.3535 128.7947)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.038 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 305.1081 128.7947)\\\" x=\\\"0 2.78 8.34 13.9 17.23\\\">tear,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 325.1179 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 328.188 128.7947)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.7495 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 341.8196 128.7947)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 350.1594 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 353.2295 128.7947)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 367.1309 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 370.201 128.7947)\\\" x=\\\"0 5.56 11.12\\\">end</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 386.8855 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 389.9556 128.7947)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 398.2955 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 401.3656 128.7947)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 406.9271 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 409.9972 128.7947)\\\" x=\\\"0 2.28 7.84 13.4 18.4\\\">lease</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 433.962 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 437.0321 128.7947)\\\" x=\\\"0 2.78 8.34 11.67 20\\\">term,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 459.8104 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 462.8805 128.7947)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 471.7721 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 474.8422 128.7947)\\\" x=\\\"0 3.33 5.61 7.89 10.17\\\">(iii)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 488.3432 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 491.4133 128.7947)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 504.1965 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 507.2666 128.7947)\\\" x=\\\"0 2.78 8.34 11.67 20 22.28 27.84 33.4 36.18\\\">terminate</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.0097 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 552.0798 128.7947)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 117.4764)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 89.616 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 93.7725 117.4764)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 101.6143 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 105.7709 117.4764)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 111.3324 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 115.4889 117.4764)\\\" x=\\\"0 8.33 13.89 19.45 25.01 30.57\\\">manner</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 149.3952 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 153.5517 117.4764)\\\" x=\\\"0 5.56 11.12 14.45 22.78 25.06 27.84 30.62 36.18\\\">permitted</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 195.2948 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 199.4514 117.4764)\\\" x=\\\"0 5.56 11.12 14.45 20.01 25.57 31.13 36.69 42.25 45.58\\\">hereunder,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.8205 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 251.977 117.4764)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 267.5971 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 271.7537 117.4764)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 320.6697 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 324.8262 117.4764)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.8887 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 343.0452 117.4764)\\\" x=\\\"0 5.56 11.12 13.9 19.46 27.79 33.35 36.13 38.41 43.41 48.97 51.25 53.53\\\">automatically</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 401.5804 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 405.7369 117.4764)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 422.4215 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 426.578 117.4764)\\\" x=\\\"0 3.33 8.89 14.45 20.01 25.57 28.35 33.91 39.47 41.75\\\">repeatedly</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 473.3358 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 477.4923 117.4764)\\\" x=\\\"0 3.33 8.89 14.45 20.01\\\">renew</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 504.7287 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 508.8852 117.4764)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 520.5551 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 524.7116 117.4764)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.74 24.02 29.58 35.14 40.7\\\">additional</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 106.158)\\\" x=\\\"0 2.28 7.84 13.4 18.4 23.96 26.62 29.4 34.96 38.29 46.62 51.62 54.4 57.06 62.62 68.18 73.18 78.74 81.4 86.96 92.52 95.18 100.74 106.3 111.3 116.3 118.96 121.24 126.8 129.46 131.74 137.3 142.86 148.42 151.2 156.76\\\">lease terms, each 60 days in length.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 94.8397)\\\" x=\\\"0 8.33 13.89 16.17 21.73 24.51 30.07 35.63 41.19 46.75 51.75\\\">Maintenance</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 98.0193 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 101.2487 94.8397)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 109.5885 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 112.8178 94.8397)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 126.7192 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 129.9485 94.8397)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 170.5198 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 173.7491 94.8397)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 191.5421 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 194.7714 94.8397)\\\" x=\\\"0 5.56 8.89\\\">are</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.2246 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 212.4539 94.8397)\\\" x=\\\"0 3.33 8.89 13.89 19.45 25.01 30.57 35.57 37.85 43.41 45.69\\\">responsible</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 263.7136 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 266.943 94.8397)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 278.6129 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 281.8422 94.8397)\\\" x=\\\"0 8.33 13.89 16.17 21.73 24.51 30.07 32.35 37.91 40.19 45.75\\\">maintaining</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 333.1606 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 336.3899 94.8397)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 345.2815 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 348.5108 94.8397)\\\" x=\\\"0 5 10.56 13.89 18.89 21.17 26.17 28.45 34.01\\\">servicing</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.086 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 391.3154 94.8397)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 405.2167 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 408.446 94.8397)\\\" x=\\\"0 5.56 8.89 14.45 20.01 25.57 28.9 31.68\\\">property</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 445.1306 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 448.3599 94.8397)\\\" x=\\\"0 7.22 12.78 15.06 17.34\\\">while</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 471.2652 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 474.4945 94.8397)\\\" x=\\\"0 2.28\\\">it</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 479.5531 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 482.7825 94.8397)\\\" x=\\\"0 2.28 5.06\\\">its</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 492.8411 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 496.0704 94.8397)\\\" x=\\\"0 5.56 11.12 13.4 18.96\\\">being</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 520.5968 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 523.8261 94.8397)\\\" x=\\\"0 2.28 7.84 13.4 18.4 23.96 29.52\\\">leased.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 556.1308 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 559.3601 94.8397)\\\" x=\\\"0 2.78\\\">In</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 83.5213)\\\" x=\\\"0 5.56 10.56 15.56 21.12 24.45 30.01 35.57 41.13 46.13\\\">accordance</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 92.3992 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 95.7041 83.5213)\\\" x=\\\"0 7.22 9.5 12.28\\\">with</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 113.5459 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 116.8509 83.5213)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 132.471 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 135.7759 83.5213)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 187.4702 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 190.7752 83.5213)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 206.8982 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.2031 83.5213)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 224.2656 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 227.5706 83.5213)\\\" x=\\\"0 5 10.56 16.12 21.68 27.24 32.24\\\">conduct</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.595 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 265.8999 83.5213)\\\" x=\\\"0 5.56 7.84\\\">all</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.022 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 279.3269 83.5213)\\\" x=\\\"0 8.33 13.89 16.17 21.73 24.51 30.07 35.63 41.19 46.75 51.75 57.31\\\">maintenance,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 339.4246 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 342.7295 83.5213)\\\" x=\\\"0 3.33 8.89 14.45 20.01 22.29 25.62 30.62\\\">repairs,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 376.1328 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 379.4377 83.5213)\\\" x=\\\"0 5.56 11.12 16.12 21.68 27.24\\\">upkeep</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 412.2454 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 415.5503 83.5213)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 432.2349 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 435.5398 83.5213)\\\" x=\\\"0 5 10.56 13.89 19.45\\\">care.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 457.7712 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 461.0762 83.5213)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.6328 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 469.9377 83.5213)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.0608 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 489.3657 83.5213)\\\" x=\\\"0 8.33 13.89 19.45 25.01 27.79 33.35 38.35 41.13 46.69 50.02 55.58 58.91 61.13\\\">manufacturer’s</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 555.5034 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 558.8083 83.5213)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 83.5213)\\\" x=\\\"0\\\"> </text></g><clipPath id=\\\"clip0-11\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip0-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 546.6561 L 573.6 546.6561 L 573.6 545.6561 L 34.8 545.6561 L 34.8 546.6561 z \\\"/><path clip-path=\\\"url(#clip0-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.6 545.6561 L 573.6 545.6561 L 573.6 530.3377 L 572.6 530.3377 L 572.6 545.6561 z \\\"/><path clip-path=\\\"url(#clip0-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 545.6561 L 35.8 545.6561 L 35.8 530.3377 L 34.8 530.3377 L 34.8 545.6561 z \\\"/><path clip-path=\\\"url(#clip0-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 530.3377 L 573.6 530.3377 L 573.6 529.3377 L 34.8 529.3377 L 34.8 530.3377 z \\\"/><path clip-path=\\\"url(#clip0-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 81.9217 L 573.6 81.9217 L 573.6 80.9217 L 34.8 80.9217 L 34.8 81.9217 z \\\"/><path clip-path=\\\"url(#clip0-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.6 529.3377 L 573.6 529.3377 L 573.6 81.9217 L 572.6 81.9217 L 572.6 529.3377 z \\\"/><path clip-path=\\\"url(#clip0-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 529.3377 L 35.8 529.3377 L 35.8 81.9217 L 34.8 81.9217 L 34.8 529.3377 z \\\"/><g clip-path=\\\"url(#clip0-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 36.5264)\\\" x=\\\"0 6.498 11.997 14.391 16.785 21.789 26.793 29.295 34.299 39.303 44.307 504 506.3906 508.7812 511.1719 513.5625 515.9531 518.3438 520.7344 523.125 525.5156\\\">UT  07/2019          </text></g><g clip-path=\\\"url(#clip0-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 26.3398)\\\" x=\\\"0 6.003 11.007 16.011 21.015\\\">Page </text></g><g clip-path=\\\"url(#clip0-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 55.8097 26.3398)\\\" x=\\\"0\\\">1</text></g><g clip-path=\\\"url(#clip0-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.815 26.3398)\\\" x=\\\"0 2.394 7.398 9.9\\\"> of </text></g><g clip-path=\\\"url(#clip0-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 73.1021 26.3398)\\\" x=\\\"0\\\">7</text></g><g clip-path=\\\"url(#clip0-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#d9d9d9\\\" style=\\\"font-family:f0-0; font-size:54pt; white-space:pre\\\" transform=\\\"matrix(0.707 0.707 0.707 -0.707 135.6027 198.5094)\\\" x=\\\"0 56.016 96.048 136.08 176.112 216.144 236.16 284.184 324.216 344.232 364.248 416.232 456.264 480.24\\\">Qoppa Software</text></g><g clip-path=\\\"url(#clip0-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#002ba6\\\" style=\\\"font-family:f0-0; font-size:9pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.932 772)\\\" x=\\\"0 9.336 16.008 22.68 29.352 36.024 39.36 47.364 54.036 57.372 60.708 69.372 76.044 80.04 86.712 90.048 94.044 97.38 104.712 111.384 115.38 118.716 126.72 132.72 139.392 142.056 148.728 155.4 158.736 161.4 168.072 174.744 178.08 187.416 194.088 196.752 202.752 206.088 210.084 213.42 220.092 223.428 226.764 233.436 239.436 242.772 246.108 249.444 258.108 266.772 275.436 278.772 285.444 292.116 298.788 305.46 312.132 315.468 321.468 328.14\\\">Qoppa Software - For Evaluation Only - https://www.qoppa.com</text></g></g></svg></svg></g></svg><br>\\n<?xml version='1.0' encoding='UTF-8'?><svg id=\\\"qoppa_document\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" version=\\\"1.1\\\" xmlns=\\\"http://www.w3.org/2000/svg\\\" xmlns:xlink=\\\"http://www.w3.org/1999/xlink\\\"><!-- jPDFWeb v2019R1.03 - Demo Version --><style>title p { display: block; }</style><g id=\\\"qoppa_viewxform\\\" transform=\\\"matrix(1 0 0 1 0 0)\\\"><style type=\\\"text/css\\\">@font-face {font-family:f1-0;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f1-1;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f1-2;src:url(\\\"data:application/font-woff;charset=utf-8;base64,d09GRgABAAAAAAW8AAoAAAAABzQAAQABAAAAAAAAAAAAAAAAAAAAAAAAAABPUy8yAAAA9AAAADcAAABWWalZZmNtYXAAAAEsAAAAUwAAAGwBegIKZ2x5ZgAAAYAAAALfAAADgId/tkZoZWFkAAAEYAAAADMAAAA2GHlkumhoZWEAAASUAAAAIAAAACQGIAKxaG10eAAABLQAAAA0AAAARCRzAuxsb2NhAAAE6AAAACQAAAAkBYYGdm1heHAAAAUMAAAAGAAAACAAFAAzbmFtZQAABSQAAACMAAABPhepMhlwb3N0AAAFsAAAAAwAAAAgAAMAAHicY2Bk8mKcwMDKwMDUxbSbARlwMeogc/8DATI/MCDAkUEBCG8y3fifzBDFdINhLkwOAMp0DLgAeJxjYGBgZGAGYgYGHgYWhgQgLcIgABRhYVBgcGRwZXBn8GTwZwhmCGWI//8fKAsSdQaL+sBE/z/+f/j/of8H/x/4v+//7v+7/m8Em4cBADR/GXUAeJx9kk1ME0EYhmcGu42lUTZQQEgKy5oWQktLt0vbAG20WwJ0m1YskKalbKG7EH7CQYkajAnFGIrCRaUGEE1MxL+bBw/ECzdT0YsHUG8cvZDozXTrbFuMJ2eyySQz7/e+37MfQAAvtImyAAENALAcQtpIqWnIwL1b1+Hnqcvyl+A4JCV4Hgbkt/L3w0P8Fj8EbflfaBsdAAoAVZPRwNodHYytprqGNhgNdJOa0FXVVDM2R4eDIdQEXMhE8crMDwxoEgTLXpr14DUdttvVCU0wpB1PvnqdTHo8E97m5n7/vRU/39ISuOJ241QhnO8J9iQACUAl00hWULRDKczajYZWGDqCM/KDo/jSpsvlcm4toay8LWfCfb23F3t6lJyKXsT6cgBaIEnpShuJuR9IJUfgXXkevkPZwa+DP//29QH3Rf+/L5ZmKZI2EjC9KQijoxuLQ4PlY4TLFZvjvBw3t8G/h7Xe2j5tUnzxUhQ97kmf0ejnV9I8L80Oyff9w4pXFDvu4mxlADA0yewKggK3mFmDj6pCZoakkEbuicMYyubSJ/fH+F4LAEWTZXQZidX1kEHHkf3wfmRtb28NCbmnhS+be4PCJU0Ka04rGqgIcGWUGpPTEQFeiyJ77iN+m0UsZq4w+IYZnAUN2A53r6tSE3SJRmWJ/QkMeGcdAxDWM0IiIaxP+ziOm5rx+TgfOpCknR1RFKXnO5KUmwnwy7h9nk8v8wFQYG3CPhPYp73I2shUF2dGKa/sf+CfuBW3kgfGH/n9p2Lqzq5wsN1qsy0ssB09vqs3+vtVI2eeBU2tdJMw6nLigerTermpkMHQSDk76+vr6ixtgWGn0+WUUnp9uxlX0+mqWk29I91dCiecSeF0rpTJwOIfUJrlwlGtzPPkTbe7oiJutURjFovQ0OBxa63WCxeH4LacXDWbTOZVuCWPpbrdej2A+d/5cWTOP1T+s4piKWTOfUK2xzYA/gBtBuJcAHicY2BkYGAA4rxdv17H89t8ZeBmfgEUYbhtLnAWRv///T+Z6QPTDaA6DgYmkCgAl1oOtgB4nGNgZGBguvE/mSGK2fH/7/+/mT4wAEVQgCAAvv0H1HicY2CAAEZfCGaaDcSXGPSAOADIDmDmYtBjFGOIZtIBsh2BYpcgYkA5HbAajf+/AR7DC3wAAAAAAAAAAAAAABwAUABwAIgAvgDKANoA9AEKAT4BiAGyAcB4nGNgZGBgEGQwYmBiAAFGBjQAAAcrAEh4nJWOMQ6CUBBEH4KKrZUlpRURQkUptZWJhZ1RURPiJ0BD41E8BudzhH8AyGaTN7OTyQJLzrg43gpYawd22EoNPMMntewSsrfsiUvLczZ8LS/kd2QYXVsqXjx40nAQXaUNtTaXE3Dkwlv6T/c+m6vfUHAbnf+QEE9Mn3pdyzFKBET6eaeZ1PIDR/8t33icY2BmwAsAAH0ABA==\\\");}@font-face {font-family:f1-3;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}</style><svg id=\\\"qoppa_page_p1\\\" class=\\\"qoppa_page\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\"><rect class=\\\"qoppa_pageborder\\\" x=\\\"0.5pt\\\" y=\\\"0.5pt\\\" width=\\\"611pt\\\" height=\\\"791pt\\\" fill=\\\"none\\\" /><svg class=\\\"qoppa_pagecontents\\\" x=\\\"0pt\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" viewBox=\\\"0 0 612 792\\\" ><g class=\\\"qoppa_contentstream\\\" transform=\\\"matrix(1 0 0 -1 0 792)\\\" fill=\\\"black\\\" stroke=\\\"black\\\" stroke-width=\\\"1\\\" stroke-linecap=\\\"butt\\\" stroke-linejoin=\\\"miter\\\" stroke-miterlimit=\\\"10\\\"><clipPath id=\\\"clip1-1\\\"><path d=\\\"M 35 487 L 574 487 L 574 770 L 35 770 L 35 487 z \\\"/></clipPath><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 759.4812)\\\" x=\\\"0 5 10.56 12.84 15.12 20.68 24.01 26.23\\\">seller’s</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 71.9353 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 75.2187 759.4812)\\\" x=\\\"0 7.22 12.78 16.11 19.44 25 30.56 33.34\\\">warranty</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 113.5635 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 116.8468 759.4812)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 124.1271 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 127.4105 759.4812)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 135.2523 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 138.5357 759.4812)\\\" x=\\\"0 2.78 8.34 11.67 16.67\\\">force</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.7671 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 164.0505 759.4812)\\\" x=\\\"0 7.22 12.78 18.34\\\">when</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 187.9567 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 191.2401 759.4812)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 207.3631 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.6465 759.4812)\\\" x=\\\"0 5.56 10.56 16.12 21.68 23.96 27.29\\\">acquire</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 243.503 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 246.7863 759.4812)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 260.6877 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 263.9711 759.4812)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 304.5424 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 307.8258 759.4812)\\\" x=\\\"0 2.28\\\">it</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.8844 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 316.1677 759.4812)\\\" x=\\\"0 5 10.56 16.12 18.4\\\">shall</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 336.8513 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 340.1347 759.4812)\\\" x=\\\"0 5.56\\\">be</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.2578 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 354.5411 759.4812)\\\" x=\\\"0 2.78 6.11 11.67 17.23 22.23 25.01 30.57 33.9 37.23 42.79\\\">transferred</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.8956 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 406.179 759.4812)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 414.5188 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 417.8022 759.4812)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 433.9253 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 437.2086 759.4812)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 442.2672 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 445.5506 759.4812)\\\" x=\\\"0 5.56 7.84 10.12 15.68 22.9 28.46\\\">allowed</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 479.5789 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 482.8623 759.4812)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 493.4238 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 496.7072 759.4812)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 510.6086 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 513.892 759.4812)\\\" x=\\\"0 2.78 8.34 11.67 20\\\">terms</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 538.892 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 542.1754 759.4812)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 550.5152 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.7986 759.4812)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 748.1629)\\\" x=\\\"0 7.22 12.78 16.11 19.44 25 30.56 33.34 38.34\\\">warranty.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 736.8445)\\\" x=\\\"0 5.56 11.12 16.12 18.9\\\">Lost,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 62.3797 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 65.5493 736.8445)\\\" x=\\\"0 6.67 9.45 15.01 17.29 22.85 28.41\\\">Stolen,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 96.7407 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 99.9104 736.8445)\\\" x=\\\"0 7.22 12.78 21.11 26.67 32.23 37.79 43.35\\\">Damaged,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.0481 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 149.2177 736.8445)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 158.1093 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 161.279 736.8445)\\\" x=\\\"0 7.22 12.78 17.78 20.56 23.89 29.45 34.45 40.01\\\">Destroyed</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 206.8552 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.0248 736.8445)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 250.5961 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 253.7657 736.8445)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.3224 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 262.492 736.8445)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.3934 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 279.563 736.8445)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 317.356 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 320.5256 736.8445)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 327.8059 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 330.9756 736.8445)\\\" x=\\\"0 2.28 7.84 12.84 15.62\\\">lost,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 349.374 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 352.5437 736.8445)\\\" x=\\\"0 5 7.78 13.34 15.62 21.18 26.74\\\">stolen,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 382.0651 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 385.2348 736.8445)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57 36.13\\\">damaged</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 426.934 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 430.1037 736.8445)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 438.9952 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 442.1649 736.8445)\\\" x=\\\"0 5.56 11.12 16.12 18.9 22.23 27.79 32.79 38.35 43.91\\\">destroyed,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 488.8592 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 492.0289 736.8445)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 508.1519 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 511.3216 736.8445)\\\" x=\\\"0 5.56 11.12 14.45 20.01\\\">agree</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 536.8977 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 540.0674 736.8445)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 548.4072 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 551.5769 736.8445)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 725.5262)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 51.2615 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 55.736 725.5262)\\\" x=\\\"0 5.56\\\">at</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 64.0758 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 68.5503 725.5262)\\\" x=\\\"0 5.56 11.12 16.12\\\">once</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 90.2349 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 94.7094 725.5262)\\\" x=\\\"0 5.56\\\">an</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 105.8324 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 110.3069 725.5262)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 143.6614 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.1359 725.5262)\\\" x=\\\"0 5.56 11.12 16.68 22.24\\\">equal</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 172.6622 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 177.1367 725.5262)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 185.4766 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 189.951 725.5262)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 203.8524 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 208.3269 725.5262)\\\" x=\\\"0 2.28 7.84 12.84 17.84 23.4\\\">lesser</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 235.0603 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 239.5348 725.5262)\\\" x=\\\"0 5.56 8.34\\\">of:</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 250.6529 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 255.1274 725.5262)\\\" x=\\\"0 3.33 8.89\\\">(1)</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 267.3491 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 271.8236 725.5262)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 285.7249 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 290.1994 725.5262)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79 40.01\\\">Property’s</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.2141 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 339.6885 725.5262)\\\" x=\\\"0 2.78 8.34 10.62\\\">fair</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 353.6387 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 358.1132 725.5262)\\\" x=\\\"0 8.33 13.89 17.22 22.22 27.78\\\">market</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.6747 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 393.1492 725.5262)\\\" x=\\\"0 5 10.56 12.84 18.4 23.96\\\">value,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.8924 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 424.3669 725.5262)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.9284 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 439.4029 725.5262)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.7427 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 452.2172 725.5262)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.1185 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 470.593 725.5262)\\\" x=\\\"0 2.78 5.06 13.39\\\">time</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.5432 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 494.0177 725.5262)\\\" x=\\\"0 2.28\\\">it</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.0763 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 503.5508 725.5262)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 510.831 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 515.3055 725.5262)\\\" x=\\\"0 2.28 7.84 12.84 15.62\\\">lost,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 533.704 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 538.1785 725.5262)\\\" x=\\\"0 5 7.78 13.34 15.62 21.18 26.74\\\">stolen,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 714.2078)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57 36.13\\\">damaged</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 82.3992 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 86.9016 714.2078)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 95.7932 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 100.2955 714.2078)\\\" x=\\\"0 5.56 11.12 16.12 18.9 22.23 27.79 32.79 38.35\\\">destroyed</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 144.2115 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.7139 714.2078)\\\" x=\\\"0 3.33 8.89 14.45 17.23 22.79 26.12 34.45 36.73 42.29 47.85\\\">(determined</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 202.1319 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 206.6342 714.2078)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 217.1958 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 221.6981 714.2078)\\\" x=\\\"0 5.56 10.56\\\">us,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 235.038 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 239.5403 714.2078)\\\" x=\\\"0 5.56 10.56 12.84 18.4\\\">using</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 263.5052 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 268.0075 714.2078)\\\" x=\\\"0 5.56\\\">an</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 279.1306 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 283.6329 714.2078)\\\" x=\\\"0 2.28 7.84 13.4 18.96 23.96 26.74 30.07\\\">industry</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 318.7062 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 323.2085 714.2078)\\\" x=\\\"0 5 10.56 12.84 18.4\\\">value</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 347.1734 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 351.6758 714.2078)\\\" x=\\\"0 5.56 11.12 13.4 18.96\\\">guide</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 376.2021 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 380.7045 714.2078)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.4877 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 397.99 714.2078)\\\" x=\\\"0 5 10.56 12.84 18.4 23.4 26.18\\\">select,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 426.95 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 431.4524 714.2078)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 436.511 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 441.0133 714.2078)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 457.1364 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 461.6387 714.2078)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.919 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 473.4214 714.2078)\\\" x=\\\"0 5.56 10.56 16.12 18.4 20.68 26.24 31.8 34.08 39.64 42.97\\\">available);</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 519.1782 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 523.6806 714.2078)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 532.5722 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 537.0745 714.2078)\\\" x=\\\"0 3.33 8.89\\\">(2)</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.2962 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.7986 714.2078)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 702.8895)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57 33.35 36.01 41.01 46.57 52.13 54.79 62.01 67.57 73.13 75.41 80.97 83.63 89.19 94.75 100.31 105.87 108.53 111.31 116.87 119.53 125.09 130.65 135.65 138.31 143.87 146.65 149.31 154.31 159.87 164.87 170.43 173.09 175.87 178.15 186.48 192.04 194.7 197.48 203.04 205.7 211.26 216.26 221.82 225.15 230.15 232.43 237.43 242.99 245.65 248.43 253.99 259.55 262.21 267.77 273.33 278.89 282.22 289.44 295 300 302.66 310.44 316 318.78 321.06 326.62 332.18 334.84 340.4 343.73 346.39 353.06 358.62 361.95 364.23 369.23 371.89 378.56 384.12 389.12 392.45 400.23 405.79 408.57 411.23 419.01 424.57 427.35 429.63 435.19 440.75 443.53 446.19 451.75 456.75 459.41 464.97 470.53 476.09 478.37 480.65 485.65 491.21 496.77 499.05 504.61\\\">amount you would need to pay at such time to exercise the 100-Day Option or Early Buy-Out Option, as applicable.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 691.5711)\\\" x=\\\"0 7.22 12.78 15.06 20.62 25.62 28.4 33.96 36.74 42.3 50.63 56.19 61.75\\\">Reinstatement</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 105.2361 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 108.6807 691.5711)\\\" x=\\\"0 7.22 9.5 15.06 20.62 23.4 28.4\\\">Rights.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 139.8623 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 143.3069 691.5711)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 148.8635 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 152.3081 691.5711)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 168.4311 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 171.8757 691.5711)\\\" x=\\\"0 5.56 8.89\\\">are</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 186.3288 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 189.7734 691.5711)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 197.6152 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 201.0597 691.5711)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 27.3\\\">default</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.1428 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 234.5873 691.5711)\\\" x=\\\"0 5.56 11.12 16.68 19.46 25.02\\\">and/or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.9418 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 266.3864 691.5711)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.2877 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 283.7323 691.5711)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 321.5253 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 324.9698 691.5711)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 332.2501 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 335.6947 691.5711)\\\" x=\\\"0 5 10.56 13.89 17.22 22.78 28.34 33.9 39.46 42.79 48.35\\\">surrendered</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 389.6156 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 393.0601 691.5711)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 401.9517 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 405.3963 691.5711)\\\" x=\\\"0 3.33 8.89 14.45 20.01 25.01 30.01 35.57 40.57 45.57 51.13 56.69\\\">repossessed,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 464.8738 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 468.3184 691.5711)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.4414 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 487.886 691.5711)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 506.7776 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 510.2222 691.5711)\\\" x=\\\"0 3.33 8.89 11.17 16.73 21.73 24.51 30.07 32.85\\\">reinstate</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 548.6353 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 552.0798 691.5711)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 680.2527)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 89.616 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 92.7055 680.2527)\\\" x=\\\"0 7.22 9.5 12.28 17.84 23.4 28.96\\\">without</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 124.4487 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 127.5382 680.2527)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68\\\">losing</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 153.7833 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 156.8728 680.2527)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 172.9958 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 176.0853 680.2527)\\\" x=\\\"0 3.33 5.61 11.17 16.73 19.51\\\">rights</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 200.597 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 203.6865 680.2527)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 212.5781 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 215.6676 680.2527)\\\" x=\\\"0 5.56 11.12 13.9 16.18 21.74 27.3\\\">options</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.9723 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 251.0618 680.2527)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 261.6234 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 264.7129 680.2527)\\\" x=\\\"0 5.56 11.12 16.12 18.4 23.96 29.52\\\">paying:</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 297.0175 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 300.1071 680.2527)\\\" x=\\\"0 3.33 5.61\\\">(i)</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 309.0475 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 312.137 680.2527)\\\" x=\\\"0 5.56 7.84\\\">all</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 322.2591 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 325.3485 680.2527)\\\" x=\\\"0 5.56 11.12 16.12\\\">past</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 344.2499 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 347.3394 680.2527)\\\" x=\\\"0 5.56 11.12\\\">due</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 364.024 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 367.1135 680.2527)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01 30.57 35.57\\\">charges;</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 405.468 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 408.5575 680.2527)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 425.242 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 428.3315 680.2527)\\\" x=\\\"0 3.33 5.61 7.89\\\">(ii)</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 439.5523 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 442.6418 680.2527)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.7003 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 450.7898 680.2527)\\\" x=\\\"0 5.56 7.84 10.12 15.68 22.9 28.46\\\">allowed</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.8182 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 487.9077 680.2527)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 498.4692 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 501.5587 680.2527)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64\\\">applicable</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 546.7686 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 549.8581 680.2527)\\\" x=\\\"0 2.28 7.84 15.06\\\">law,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 668.9344)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 54.6014 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 59.0196 668.9344)\\\" x=\\\"0 3.33 8.89 14.45 19.45 25.01 30.57 36.13 41.69 43.97\\\">reasonable</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 108.5606 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 112.9789 668.9344)\\\" x=\\\"0 5 10.56 15.56 18.34\\\">costs</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.3187 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 140.737 668.9344)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 149.0768 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 153.4951 668.9344)\\\" x=\\\"0 5.56 7.84 12.84 17.84 23.4\\\">pickup</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 182.4599 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 186.8782 668.9344)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 203.5627 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 207.981 668.9344)\\\" x=\\\"0 3.33 8.89 14.45 20.01 22.29 24.57 29.57 35.13 38.46 43.46\\\">redelivery.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 254.2261 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 258.6444 668.9344)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.4373 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 280.8556 668.9344)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.7472 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 304.1654 668.9344)\\\" x=\\\"0 5.56 10.56 16.12 19.45 24.45 26.73 31.73\\\">exercise</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 341.4604 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 345.8786 668.9344)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 365.3317 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 369.75 668.9344)\\\" x=\\\"0 3.33 8.89 11.17 16.73 21.73 24.51 30.07 32.85 38.41 46.74 52.3 57.86\\\">reinstatement</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.3945 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 434.8128 668.9344)\\\" x=\\\"0 3.33 5.61 11.17 16.73\\\">right</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.3245 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 458.7428 668.9344)\\\" x=\\\"0 7.22 9.5 12.28 17.84 20.12\\\">within</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.4263 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 488.8446 668.9344)\\\" x=\\\"0 5.56 11.12\\\">180</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 505.5292 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 509.9474 668.9344)\\\" x=\\\"0 5.56 11.12 16.12\\\">days</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 531.0705 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 535.4887 668.9344)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 543.8286 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 548.2468 668.9344)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 657.616)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 27.3 30.08 32.74 38.3 41.63 44.29 49.29 54.85 58.18 61.51 67.07 72.63 78.19 83.75 87.08 89.86 93.19 98.75 104.31 109.87 114.87 119.87 125.43 130.43 135.43 137.71 143.27 148.83 151.49 157.05 159.83 162.49 165.27 170.83 176.39 179.05 185.72 189.05 194.61 200.17 205.73 209.06 211.84 216.84 219.5 225.06 228.39 231.05 236.05 241.61 246.61 252.17 254.83 257.11 262.67 268.23 273.79 279.35 282.68 285.34 290.9 296.46 299.79 302.07 307.63 313.19 315.85 321.41 324.74 330.3 335.3 337.58 343.14 348.7 354.26 356.92 359.7 365.26 367.92 372.92 378.48 384.04 386.7 392.26 397.82 403.38 408.94 412.27 414.93 420.49 426.05 431.61 433.89 436.17 441.17 446.73 452.29 454.57 460.13 462.79 465.07 470.63 477.85\\\">default or surrender/repossession of the Property or such longer period provided to you under applicable law.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 646.2977)\\\" x=\\\"0 7.22 9.5 15.06 20.62\\\">Right</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 64.1033 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 66.9139 646.2977)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 75.2537 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 78.0643 646.2977)\\\" x=\\\"0 6.11 11.67 15 23.33 25.61 31.17 36.73 39.51 45.07\\\">Terminate.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 125.9158 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 128.7263 646.2977)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.5193 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 149.3299 646.2977)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 168.2215 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 171.032 646.2977)\\\" x=\\\"0 2.78 8.34 11.67 20 22.28 27.84 33.4 36.18\\\">terminate</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 212.7752 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 215.5857 646.2977)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 235.0388 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 237.8494 646.2977)\\\" x=\\\"0 2.28 7.84 13.4 18.4\\\">lease</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 261.8142 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 264.6248 646.2977)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.9793 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 305.7898 646.2977)\\\" x=\\\"0 5.56 11.12 13.4 15.68 21.24 26.8 29.58 31.86 37.42 42.98\\\">obligations</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 353.7781 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 356.5886 646.2977)\\\" x=\\\"0 5.56 11.12 16.68 22.24\\\">under</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 382.1648 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 384.9753 646.2977)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 400.5955 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 403.406 646.2977)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 452.322 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 455.1326 646.2977)\\\" x=\\\"0 7.22 9.5 12.28 17.84 23.4 28.96\\\">without</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.8757 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 489.6863 646.2977)\\\" x=\\\"0 5.56 11.12 16.68 22.24 24.52 27.3\\\">penalty</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.991 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 524.8015 646.2977)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 535.363 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 538.1736 646.2977)\\\" x=\\\"0 5.56 11.12 16.12 18.4 23.96\\\">paying</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 634.9793)\\\" x=\\\"0 5.56 7.84\\\">all</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 50.8221 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 53.7614 634.9793)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 88.8395 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 91.7789 634.9793)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46 44.46\\\">Payments,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 139.0201 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 141.9594 634.9793)\\\" x=\\\"0 2.78 8.34 13.9\\\">fees</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.8608 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 163.8001 634.9793)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 180.4847 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 183.424 634.9793)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01 30.57\\\">charges</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 219.0002 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 221.9396 634.9793)\\\" x=\\\"0 2.78 8.34 13.9\\\">that</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.6192 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 241.5586 634.9793)\\\" x=\\\"0 5.56 8.89\\\">are</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.0117 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 258.951 634.9793)\\\" x=\\\"0 5.56 11.12\\\">due</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.6356 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 278.575 634.9793)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 287.4666 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 290.4059 634.9793)\\\" x=\\\"0 5.56 11.12 16.12\\\">past</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 309.3073 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 312.2466 634.9793)\\\" x=\\\"0 5.56 11.12\\\">due</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 328.9312 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 331.8705 634.9793)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.5551 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 351.4944 634.9793)\\\" x=\\\"0 5 10.56 12.84 18.4 23.96 26.74 32.3 35.63 37.91 40.19\\\">voluntarily</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 396.6898 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 399.6291 634.9793)\\\" x=\\\"0 5 10.56 13.89 17.22 22.78 28.34 33.9 39.46 42.79 45.07 50.63\\\">surrendering</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 455.8303 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 458.7696 634.9793)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.6612 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 470.6005 634.9793)\\\" x=\\\"0 3.33 8.89 11.67 17.23 20.56 26.12 28.4 33.96\\\">returning</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 510.1269 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 513.0663 634.9793)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.9676 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 529.907 634.9793)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 623.6609)\\\" x=\\\"0 2.28 7.84 10.5 12.78 15.56 20.56 23.22 28.78 32.11 34.39 39.95 42.23 47.79 53.35 55.63 58.29 63.29 68.85 74.41 79.97 82.25 85.03 87.31 92.87 98.43 101.21 103.87 106.15 111.71 116.71 121.71 124.37 127.7 133.26 138.82 143.82 149.38 154.94 160.5 166.06 168.34 173.9 176.56 183.78 189.34 194.9 198.23 200.89 206.45 212.01 217.57 220.23 223.01 228.57 234.13 237.46 240.12 245.68 248.46 251.12 253.9 259.46 265.02 267.68 273.24 278.24 283.8 286.08 289.41 294.97 297.75 300.03 305.59 311.15 313.81 319.37 322.15 324.81 330.37 335.93 340.93 343.59 345.87 351.43 356.99 361.99 367.55 370.21 372.99 378.55 381.88 390.21\\\">in its original condition, less reasonable wear and tear at the expiration of any lease term.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 612.3426)\\\" x=\\\"0 5.56 11.12 13.9\\\">Late</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.1629 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 63.3819 612.3426)\\\" x=\\\"0 6.11 11.67 17.23 22.23\\\">Fees.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 88.3917 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 91.6107 612.3426)\\\" x=\\\"0 9.44\\\">We</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 106.6107 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 109.8297 612.3426)\\\" x=\\\"0 3.33 8.89 13.89 19.45 22.78 27.78\\\">reserve</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 143.1744 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 146.3934 612.3426)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.2948 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 163.5138 612.3426)\\\" x=\\\"0 3.33 5.61 11.17 16.73\\\">right</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 183.0255 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 186.2445 612.3426)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 194.5844 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 197.8034 612.3426)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01\\\">charge</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 228.3796 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 231.5986 612.3426)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 237.1601 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 240.3791 612.3426)\\\" x=\\\"0 2.28 7.84 10.62\\\">late</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.5608 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 259.7798 612.3426)\\\" x=\\\"0 2.78 8.34\\\">fee</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 273.6811 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 276.9002 612.3426)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 288.5701 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 291.7891 612.3426)\\\" x=\\\"0 5.56 11.12 16.12\\\">past</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 310.6905 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 313.9095 612.3426)\\\" x=\\\"0 5.56 11.12\\\">due</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 330.594 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 333.8131 612.3426)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57 38.35 43.35\\\">payments,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 379.9459 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 383.1649 612.3426)\\\" x=\\\"0 5.56 8.34 11.12 16.68\\\">after</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.1747 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 406.3937 612.3426)\\\" x=\\\"0 5.56 7.84 10.12 15.68 22.9 25.18 30.74\\\">allowing</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 442.7023 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 445.9213 612.3426)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 457.5912 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 460.8102 612.3426)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 476.9333 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 480.1523 612.3426)\\\" x=\\\"0 5.56 8.89 14.45 19.45\\\">grace</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 505.1669 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 508.3859 612.3426)\\\" x=\\\"0 5.56 11.12 14.45 16.73 22.29 27.85\\\">period,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 539.0207 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 542.2397 612.3426)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 550.5796 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.7986 612.3426)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 601.0242)\\\" x=\\\"0 2.28 7.84 12.84 17.84 23.4\\\">lesser</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 67.4334 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 70.2009 601.0242)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 78.5407 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.3082 601.0242)\\\" x=\\\"0 3.33 5.61\\\">(i)</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 90.2486 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 93.0161 601.0242)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 106.9175 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 109.6849 601.0242)\\\" x=\\\"0 3.33 8.89 11.67\\\">rate</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 126.9164 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 129.6839 601.0242)\\\" x=\\\"0 5.56 7.84 10.12 15.68 22.9 28.46\\\">allowed</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 163.7122 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 166.4797 601.0242)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 177.0412 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 179.8087 601.0242)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64\\\">applicable</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.0186 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 227.7861 601.0242)\\\" x=\\\"0 2.28 7.84\\\">law</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 242.8496 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 245.6171 601.0242)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 254.5087 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 257.2761 601.0242)\\\" x=\\\"0 3.33 5.61 7.89\\\">(ii)</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 268.4968 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 271.2643 601.0242)\\\" x=\\\"0 5.56 11.12 13.9 19.46\\\">$2.00</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 296.2887 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 299.0562 601.0242)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 310.7261 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 313.4936 601.0242)\\\" x=\\\"0 7.22 12.78 18.34 23.34 25.62 30.62\\\">weekly,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 346.8969 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 349.6644 601.0242)\\\" x=\\\"0 5.56 7.84 15.06 20.62 26.18 31.18 33.46 38.46\\\">biweekly,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 390.9095 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 393.677 601.0242)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.5686 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 405.3361 601.0242)\\\" x=\\\"0 5 10.56 18.89 21.17 24.5 32.83 38.39 43.95 46.73 52.29 54.57\\\">semi-monthly</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 464.9113 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 467.6787 601.0242)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57 38.35 43.35\\\">payments,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 513.8116 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 516.579 601.0242)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 525.4706 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 528.2381 601.0242)\\\" x=\\\"0 5.56 11.12 13.9 19.46\\\">$5.00</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.2625 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 556.03 601.0242)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 589.7059)\\\" x=\\\"0 8.33 13.89 19.45 22.23 27.79 30.07 35.07 37.73 43.29 48.85 53.85 62.18 67.74 73.3 76.08 81.08\\\">monthly payments.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 578.3875)\\\" x=\\\"0 7.7783 10.5566 16.1182 21.6797\\\">Other</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 65.7098 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 68.366 578.3875)\\\" x=\\\"0 2.7783 11.1084 16.6699 22.2315 25.5615 28.3398 33.9014 39.4629\\\">Important</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 110.6072 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 113.2635 578.3875)\\\" x=\\\"0 6.1084 11.6699 15 23.3301 28.3301\\\">Terms.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 144.3719 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 147.0281 578.3875)\\\" x=\\\"0 6.6699 12.2314\\\">See</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 164.8211 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 167.4773 578.3875)\\\" x=\\\"0 2.7783 8.3398\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 181.3787 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 184.035 578.3875)\\\" x=\\\"0 5.5615 8.3398 13.9014 19.4629\\\">other</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 206.8279 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 209.4842 578.3875)\\\" x=\\\"0 5.5615 11.123 14.4531 17.2314\\\">parts</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.7156 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 234.3719 578.3875)\\\" x=\\\"0 5.5615\\\">of</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 242.7117 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 245.368 578.3875)\\\" x=\\\"0 2.7783 8.3398 10.6201\\\">this</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 260.9881 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 263.6443 578.3875)\\\" x=\\\"0 6.6699 12.2314 15.5615 21.123 26.6846 35.0147 40.5762 46.1377\\\">Agreement</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.5603 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 315.2166 578.3875)\\\" x=\\\"0 2.7783 8.3398\\\">for</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 326.8865 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 329.5428 578.3875)\\\" x=\\\"0 5.5615 11.1231 16.6846 18.9648 21.7432 24.0234 29.585 35.1465 40.708\\\">additional</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 372.531 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 375.1873 578.3875)\\\" x=\\\"0 2.2803 10.6103 16.1719 21.7334 25.0635 27.8418 33.4033 38.9648\\\">important</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 416.9305 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 419.5867 578.3875)\\\" x=\\\"0 2.2803 7.8418 10.6201 16.1816 19.5117 27.8418 33.4033 36.1816 38.4619 44.0234\\\">information</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 469.1717 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 471.8279 578.3875)\\\" x=\\\"0 5.5615\\\">on</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 482.951 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 485.6072 578.3875)\\\" x=\\\"0 2.7783 8.3398 11.6699 20 22.2803 27.8418 33.4033 36.1816 38.4619 44.0234\\\">termination</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 567.0691)\\\" x=\\\"0 5.5615 8.8916 14.4531 19.4531 25.0146 30.5762 36.1377 39.4678 45.0293 50.0293\\\">procedures,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 93.5076 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 96.1639 567.0691)\\\" x=\\\"0 5.5615 11.1231 14.4531 19.4531 25.0146 30.5762 35.5762\\\">purchase</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 137.3016 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 139.9578 567.0691)\\\" x=\\\"0 5.5615 11.123 13.9014 16.1816 21.7432\\\">option</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 167.2625 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 169.9187 567.0691)\\\" x=\\\"0 3.4301 5.8103 11.4719 17.1334 20.0117 25.1117\\\">rights,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 197.9088 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 200.665 567.0691)\\\" x=\\\"0 3.3801 8.9916 14.0416 19.6531 25.2646 30.8762 35.9262 38.2565 43.868 46.1983 48.5285 50.8588 53.6871 56.0174 61.6289\\\">responsibilities</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 267.3439 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 270.0502 567.0691)\\\" x=\\\"0 3.0283 8.8399\\\">for</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 282.4701 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 285.3764 567.0691)\\\" x=\\\"0 2.4303 8.1418 13.2918 18.4418\\\">loss,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 306.7465 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 309.5527 567.0691)\\\" x=\\\"0 5.6615 11.3231 19.7531 25.4146 31.0762\\\">damage</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 346.2904 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 349.0467 567.0691)\\\" x=\\\"0 5.8615\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 358.5383 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 361.4945 567.0691)\\\" x=\\\"0 5.6115 11.2231 16.2731 19.1014 22.4814 28.093 33.143 35.9713 38.3016 43.9131\\\">destruction</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 411.0191 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 413.7254 567.0691)\\\" x=\\\"0 5.8615\\\">of</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 422.6652 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 425.6215 567.0691)\\\" x=\\\"0 3.0283 8.8398\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 440.2729 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 443.1791 567.0691)\\\" x=\\\"0 6.7699 10.2 15.8615 21.523 27.1846 30.6146 33.493 38.593\\\">Property,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.6504 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 487.4066 567.0691)\\\" x=\\\"0 5.6615 10.7615 13.6398 19.3014 24.9629\\\">actual</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 514.7498 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 517.506 567.0691)\\\" x=\\\"0 5.6615\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.5976 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 529.3539 567.0691)\\\" x=\\\"0 2.3803 10.8103 16.4719 18.8522 21.2324 26.894\\\">implied</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 555.7508)\\\" x=\\\"0 7.2717 12.8832 16.2633 19.6434 25.2549 30.8664 33.6947 36.025 41.6365 46.6865\\\">warranties,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 90.2148 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 92.9211 555.7508)\\\" x=\\\"0 2.8283 8.4398 13.4898 19.1014 24.1514\\\">taxes,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 119.9008 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 122.607 555.7508)\\\" x=\\\"0 5.7115 8.6398 14.3514 20.0629\\\">other</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.15 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.9563 555.7508)\\\" x=\\\"0 5.1 10.7615 16.423 19.8531 25.5146 31.1762\\\">charges</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 185.2324 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 187.9887 555.7508)\\\" x=\\\"0 5.6115 11.223\\\">and</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 204.8232 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 207.5295 555.7508)\\\" x=\\\"0 5.5615 11.1231 16.6846 22.2461 24.5264 27.3047 29.585 35.1465\\\">penalties</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.676 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 250.3322 555.7508)\\\" x=\\\"0 5 10.5615\\\">you</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 266.4553 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 269.1115 555.7508)\\\" x=\\\"0 8.3301 13.8916\\\">may</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 288.0031 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 290.6594 555.7508)\\\" x=\\\"0 2.2803 7.8418 12.8418 18.4033 21.7334\\\">incur,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 315.1711 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 317.8273 555.7508)\\\" x=\\\"0 5.5615 11.123\\\">and</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 334.5119 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 337.1682 555.7508)\\\" x=\\\"0 5.5615 8.3398 13.9014 19.4629\\\">other</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.9611 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 362.6174 555.7508)\\\" x=\\\"0 2.2803 10.6103 16.1719 21.7334 25.0635 27.8418 33.4033 38.9648\\\">important</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 404.3605 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.0168 555.7508)\\\" x=\\\"0 2.2803 7.8418 10.6201 16.1816 19.5117 27.8418 33.4033 36.1816 38.4619 44.0234 49.585\\\">information.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 459.3801 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 462.0363 555.7508)\\\" x=\\\"0 6.6699 12.2314\\\">You</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 479.8293 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 482.4855 555.7508)\\\" x=\\\"0 5.5615 10.5615 15.5615 21.1231 26.6846 33.9063 36.1865 41.7481 47.3096 52.8711\\\">acknowledge</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 540.9182 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 543.5744 555.7508)\\\" x=\\\"0 2.7783 8.3398 13.9014\\\">that</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 544.4324)\\\" x=\\\"0 7.2717\\\">we</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 53.5832 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 56.2895 544.4324)\\\" x=\\\"0 5.5615 8.8916 14.4531 19.4531 21.7334 27.2949 32.8564\\\">provided</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 94.7074 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 97.3637 544.4324)\\\" x=\\\"0 5 10.5615\\\">you</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 113.4867 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 116.143 544.4324)\\\" x=\\\"0 7.2217 9.502 12.2803\\\">with</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 133.9848 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 136.641 544.4324)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 142.4525 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 145.3588 544.4324)\\\" x=\\\"0 5 10.5615 18.8916 24.4531 26.7334 32.2949 35.0733 40.6348\\\">completed</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 191.5551 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 194.2113 544.4324)\\\" x=\\\"0 5 10.5615 16.1231\\\">copy</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 215.3344 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 217.9906 544.4324)\\\" x=\\\"0 5.6115\\\">of</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 226.4305 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 229.1367 544.4324)\\\" x=\\\"0 2.7783 8.3398 10.6201\\\">this</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 244.7568 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 247.4131 544.4324)\\\" x=\\\"0 6.6699 12.2315 15.5615 21.123 26.6846 35.0146 40.5762 46.1377 48.916\\\">Agreement.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.1074 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 301.7637 544.4324)\\\" x=\\\"0 6.6699 12.2314\\\">You</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.5566 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 322.2129 544.4324)\\\" x=\\\"0 5.5615 10.5615 15.5615 21.123 26.6846 33.9062 36.1865 41.748 47.3096 52.8711\\\">acknowledge</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.6455 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 383.3017 544.4324)\\\" x=\\\"0 2.7783 8.3399 13.9014\\\">that</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 399.9814 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 402.6377 544.4324)\\\" x=\\\"0 7.2717\\\">we</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 415.5209 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 418.2271 544.4324)\\\" x=\\\"0 8.3301 13.8916 19.4531\\\">made</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 443.2418 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 445.898 544.4324)\\\" x=\\\"0 2.7783 8.3399\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 459.7994 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 462.8557 544.4324)\\\" x=\\\"0 5.5615 7.8418 12.8418 17.8418 20.1221 25.6836 30.6836 36.2451 39.5752 45.1367\\\">disclosures</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.9924 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 516.0486 544.4324)\\\" x=\\\"0 5.6115\\\">at</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 524.4885 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 527.5447 544.4324)\\\" x=\\\"0 5.6115\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 533.1141)\\\" x=\\\"0 5.5615 11.123 13.9014 19.4629 22.793\\\">before</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 69.0545 533.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 72.1107 533.1141)\\\" x=\\\"0 2.7783 8.3398\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 86.0121 533.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 89.0684 533.1141)\\\" x=\\\"0 5 10.5615 16.123 21.123 26.6846 35.0146 43.3447 48.9062 51.6846 53.9648 59.5264\\\">consummation</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 154.1562 533.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 157.2125 533.1141)\\\" x=\\\"0 5.6115\\\">of</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 165.6523 533.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 168.7086 533.1141)\\\" x=\\\"0 2.7783 8.3398\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 182.61 533.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 185.6662 533.1141)\\\" x=\\\"0 6.6699 12.2314 15.5615 21.123 26.6846 35.0146 40.5762 46.1377 48.916\\\">Agreement.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 519.7957)\\\" x=\\\"0 6.67 8.95 11.23 13.89 19.45 22.23 27.79 33.35 36.68 39.34 42.12 47.68 53.24 58.24 60.9 68.12 73.68 75.96 80.96 86.52 89.18 97.51 103.07 108.07 110.73 116.29 121.85 124.51 129.51 135.07 140.63 143.96 149.52 155.08 160.64 163.42 166.08 168.36 173.92 178.92 181.2 186.76 192.32 197.88 200.54 203.32 208.88 214.44 219.44 222.1 224.88 230.44 233.77\\\">All other fees which may be charged, include fees for:</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 22.7 506.4773)\\\" x=\\\"0 3.33 8.89\\\">(1)</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 506.4773)\\\" x=\\\"0 3.33 8.89 12.22 14.88 22.1 27.66 30.44 36 39.33 44.89 50.45 56.01 58.67 65.34 70.9 75.9 84.23 89.79 95.35 98.13 103.13 105.79 111.35 114.68 117.34 124.56 130.12 135.68 140.68 146.24 149.02 151.8 154.08 159.08 161.36 166.92 172.48 175.26 177.92 184.03 189.59 195.15 200.71 205.71 208.37 214.48 220.04 225.6 228.38 231.04 236.6 239.26 244.82 250.38 253.16 258.72\\\">(1) Returned Payments or Nonsufficient Funds Fee: $ 20.00</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:8.25pt\\\" transform=\\\"matrix(1 0 0 -1 22.7 495.159)\\\" x=\\\"0 3.663 9.779\\\">(2)</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 495.159)\\\" x=\\\"0 3.33 8.89 12.22 14.88 22.1 27.66 29.94 35.5 40.5 43.28 48.84 51.62 57.18 65.51 71.07 76.63 79.41 82.07 88.18 93.74 99.3 104.3 107.08 109.74 116.96 122.52 128.08 133.64 136.3 139.63 145.19 147.97 153.53 159.09 162.42 165.08 167.86 173.42 178.98 184.54 187.2 192.76 195.04 200.04 205.04 210.6 216.16 218.82 224.38 229.94 235.5 238.16 241.49 247.05 252.61 258.17 260.45 262.73 267.73 273.29 276.62 281.62 284.28 289.28 294.84 300.4 303.73 309.29 314.85 319.85 322.51 328.07 330.35 332.63 338.19 345.41 350.97 356.53 359.19 364.75 369.75 372.41 374.69 380.25 387.47\\\">(2) Reinstatement Fees: None (other than pickup and redelivery charges allowed by law)</text></g><clipPath id=\\\"clip1-2\\\"><path d=\\\"M 35 448 L 574 448 L 574 488 L 35 488 L 35 448 z \\\"/></clipPath><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 35.3 487.0594 L 573.1 487.0594 L 573.1 448.1043 L 35.3 448.1043 L 35.3 487.0594 z \\\"/><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 40.7 484.0594 L 567.7 484.0594 L 567.7 450.1043 L 40.7 450.1043 L 40.7 484.0594 z \\\"/><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 40.7 484.0594 L 52.7 484.0594 L 52.7 472.0594 L 40.7 472.0594 L 40.7 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 474.8406)\\\" x=\\\"0 6.67\\\">By</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 52.3699 484.0594 L 55.3699 484.0594 L 55.3699 472.0594 L 52.3699 472.0594 L 52.3699 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 52.3699 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 55.339 484.0594 L 90.339 484.0594 L 90.339 472.0594 L 55.339 472.0594 L 55.339 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 55.339 474.8406)\\\" x=\\\"0 5 7.28 12.84 18.4 20.68 26.24 31.8\\\">signing,</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 89.924 484.0594 L 92.924 484.0594 L 92.924 472.0594 L 89.924 472.0594 L 89.924 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 89.924 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 92.8931 484.0594 L 109.8931 484.0594 L 109.8931 472.0594 L 92.8931 472.0594 L 92.8931 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 92.8931 474.8406)\\\" x=\\\"0 5 10.56\\\">you</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 109.0162 484.0594 L 112.0162 484.0594 L 112.0162 472.0594 L 109.0162 472.0594 L 109.0162 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 109.0162 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 111.9853 484.0594 L 137.9853 484.0594 L 137.9853 472.0594 L 111.9853 472.0594 L 111.9853 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 111.9853 474.8406)\\\" x=\\\"0 5.56 11.12 14.45 20.01\\\">agree</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 137.5614 484.0594 L 140.5614 484.0594 L 140.5614 472.0594 L 137.5614 472.0594 L 137.5614 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 137.5615 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 140.5306 484.0594 L 157.5306 484.0594 L 157.5306 472.0594 L 140.5306 472.0594 L 140.5306 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 140.5306 474.8406)\\\" x=\\\"0 2.78 8.34 13.9\\\">that</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 157.2103 484.0594 L 160.2103 484.0594 L 160.2103 472.0594 L 157.2103 472.0594 L 157.2103 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 157.2103 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 160.1794 484.0594 L 177.1794 484.0594 L 177.1794 472.0594 L 160.1794 472.0594 L 160.1794 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 160.1794 474.8406)\\\" x=\\\"0 5 10.56\\\">you</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 176.3024 484.0594 L 179.3024 484.0594 L 179.3024 472.0594 L 176.3024 472.0594 L 176.3024 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 176.3024 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 179.2715 484.0594 L 217.2715 484.0594 L 217.2715 472.0594 L 179.2715 472.0594 L 179.2715 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 179.2715 474.8406)\\\" x=\\\"0 3.33 8.89 13.89 19.45 21.73 26.73 32.29\\\">received</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 217.128 484.0594 L 220.128 484.0594 L 220.128 472.0594 L 217.128 472.0594 L 217.128 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 217.128 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 220.0971 484.0594 L 226.0971 484.0594 L 226.0971 472.0594 L 220.0971 472.0594 L 220.0971 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 220.0971 474.8406)\\\" x=\\\"0\\\">a</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 225.6586 484.0594 L 228.6586 484.0594 L 228.6586 472.0594 L 225.6586 472.0594 L 225.6586 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.6586 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 228.6277 484.0594 L 258.6277 484.0594 L 258.6277 472.0594 L 228.6277 472.0594 L 228.6277 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 228.6277 474.8406)\\\" x=\\\"0 2.28 7.84 13.4 15.68 21.24 23.52\\\">legible</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 257.7147 484.0594 L 260.7147 484.0594 L 260.7147 472.0594 L 257.7147 472.0594 L 257.7147 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.7147 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 260.6838 484.0594 L 282.6838 484.0594 L 282.6838 472.0594 L 260.6838 472.0594 L 260.6838 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 260.6838 474.8406)\\\" x=\\\"0 5 10.56 16.12\\\">copy</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 281.8068 484.0594 L 284.8068 484.0594 L 284.8068 472.0594 L 281.8068 472.0594 L 281.8068 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.8068 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 284.7759 484.0594 L 293.7759 484.0594 L 293.7759 472.0594 L 284.7759 472.0594 L 284.7759 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 284.7759 474.8406)\\\" x=\\\"0 5.56\\\">of</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 293.1158 484.0594 L 296.1158 484.0594 L 296.1158 472.0594 L 293.1158 472.0594 L 293.1158 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 293.1158 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 296.0849 484.0594 L 312.0849 484.0594 L 312.0849 472.0594 L 296.0849 472.0594 L 296.0849 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 296.0849 474.8406)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 311.705 484.0594 L 314.705 484.0594 L 314.705 472.0594 L 311.705 472.0594 L 311.705 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 311.705 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 314.6742 484.0594 L 366.6742 484.0594 L 366.6742 472.0594 L 314.6742 472.0594 L 314.6742 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 314.6741 474.8406)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement.</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 366.3685 484.0594 L 369.3685 484.0594 L 369.3685 472.0594 L 366.3685 472.0594 L 366.3685 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 366.3685 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 369.3376 484.0594 L 387.3376 484.0594 L 387.3376 472.0594 L 369.3376 472.0594 L 369.3376 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 369.3376 474.8406)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 387.1306 484.0594 L 390.1306 484.0594 L 390.1306 472.0594 L 387.1306 472.0594 L 387.1306 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 387.1306 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 390.0997 484.0594 L 416.0997 484.0594 L 416.0997 472.0594 L 390.0997 472.0594 L 390.0997 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 390.0997 474.8406)\\\" x=\\\"0 5.56 11.12 14.45 20.01\\\">agree</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 415.6759 484.0594 L 418.6759 484.0594 L 418.6759 472.0594 L 415.6759 472.0594 L 415.6759 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 415.6759 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 418.645 484.0594 L 427.645 484.0594 L 427.645 472.0594 L 418.645 472.0594 L 418.645 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 418.645 474.8406)\\\" x=\\\"0 2.78\\\">to</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 426.9848 484.0594 L 429.9848 484.0594 L 429.9848 472.0594 L 426.9848 472.0594 L 426.9848 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 426.9848 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 429.9539 484.0594 L 443.9539 484.0594 L 443.9539 472.0594 L 429.9539 472.0594 L 429.9539 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 429.9539 474.8406)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 443.8553 484.0594 L 446.8553 484.0594 L 446.8553 472.0594 L 443.8553 472.0594 L 443.8553 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 443.8553 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 446.8244 484.0594 L 471.8244 484.0594 L 471.8244 472.0594 L 446.8244 472.0594 L 446.8244 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 446.8244 474.8406)\\\" x=\\\"0 2.78 8.34 11.67 20\\\">terms</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 471.8244 484.0594 L 474.8244 484.0594 L 474.8244 472.0594 L 471.8244 472.0594 L 471.8244 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 471.8244 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 474.7935 484.0594 L 483.7935 484.0594 L 483.7935 472.0594 L 474.7935 472.0594 L 474.7935 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 474.7935 474.8406)\\\" x=\\\"0 5.56\\\">of</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 483.1334 484.0594 L 486.1334 484.0594 L 486.1334 472.0594 L 483.1334 472.0594 L 483.1334 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 483.1334 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 486.1025 484.0594 L 502.1025 484.0594 L 502.1025 472.0594 L 486.1025 472.0594 L 486.1025 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 486.1025 474.8406)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 501.7226 484.0594 L 504.7226 484.0594 L 504.7226 472.0594 L 501.7226 472.0594 L 501.7226 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.7226 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 504.6917 484.0594 L 553.6918 484.0594 L 553.6918 472.0594 L 504.6917 472.0594 L 504.6917 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 504.6917 474.8406)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 553.6078 484.0594 L 556.6078 484.0594 L 556.6078 472.0594 L 553.6078 472.0594 L 553.6078 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.6078 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 556.5769 484.0594 L 568.5769 484.0594 L 568.5769 472.0594 L 556.5769 472.0594 L 556.5769 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 556.5769 474.8406)\\\" x=\\\"0 5.56\\\">on</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 567.7 484.0594 L 570.7 484.0594 L 570.7 472.0594 L 567.7 472.0594 L 567.7 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 40.7 472.741 L 51.7 472.741 L 51.7 460.741 L 40.7 460.741 L 40.7 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 463.5223)\\\" x=\\\"0 5.56 7.84\\\">all</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 50.8221 472.741 L 54.8221 472.741 L 54.8221 460.741 L 50.8221 460.741 L 50.8221 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 50.8221 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 54.1471 472.741 L 60.1471 472.741 L 60.1471 460.741 L 54.1471 460.741 L 54.1471 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 54.1471 463.5223)\\\" x=\\\"0\\\">6</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 59.7087 472.741 L 63.7087 472.741 L 63.7087 460.741 L 59.7087 460.741 L 59.7087 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 59.7087 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 63.0337 472.741 L 94.0337 472.741 L 94.0337 460.741 L 63.0337 460.741 L 63.0337 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 63.0337 463.5223)\\\" x=\\\"0 5.56 11.12 16.68 22.24 27.24\\\">pages,</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 93.0582 472.741 L 97.0582 472.741 L 97.0582 460.741 L 93.0582 460.741 L 93.0582 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 93.0582 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 96.3832 472.741 L 136.3832 472.741 L 136.3832 460.741 L 96.3832 460.741 L 96.3832 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 96.3832 463.5223)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24 28.52 34.08\\\">including</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 136.0317 472.741 L 140.0317 472.741 L 140.0317 460.741 L 136.0317 460.741 L 136.0317 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.0317 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 139.3568 472.741 L 153.3568 472.741 L 153.3568 460.741 L 139.3568 460.741 L 139.3568 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 139.3568 463.5223)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 153.2581 472.741 L 157.2581 472.741 L 157.2581 460.741 L 153.2581 460.741 L 153.2581 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 153.2581 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 156.5832 472.741 L 203.5832 472.741 L 203.5832 460.741 L 156.5832 460.741 L 156.5832 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 156.5832 463.5223)\\\" x=\\\"0 3.55 10.77 16.33 21.33 24.11 29.67 38 43.56\\\">&quot;Customer</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 203.4777 472.741 L 207.4777 472.741 L 207.4777 460.741 L 203.4777 460.741 L 203.4777 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 203.4777 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 206.8028 472.741 L 265.8028 472.741 L 265.8028 460.741 L 206.8028 460.741 L 206.8028 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 206.8028 463.5223)\\\" x=\\\"0 6.67 12.23 15.01 20.57 26.13 29.46 31.74 36.74 42.3 45.08 47.36 52.92\\\">Authorization</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 265.2891 472.741 L 269.2891 472.741 L 269.2891 460.741 L 265.2891 460.741 L 265.2891 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 265.2891 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 268.6142 472.741 L 280.6142 472.741 L 280.6142 460.741 L 268.6142 460.741 L 268.6142 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 268.6142 463.5223)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 280.2841 472.741 L 284.2841 472.741 L 284.2841 460.741 L 280.2841 460.741 L 280.2841 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.2841 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 283.6092 472.741 L 328.6092 472.741 L 328.6092 460.741 L 283.6092 460.741 L 283.6092 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 283.6092 463.5223)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46\\\">Payments</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 328.0721 472.741 L 332.0721 472.741 L 332.0721 460.741 L 328.0721 460.741 L 328.0721 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 328.0721 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 331.3972 472.741 L 344.3972 472.741 L 344.3972 460.741 L 331.3972 460.741 L 331.3972 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 331.3972 463.5223)\\\" x=\\\"0 5 7.28\\\">via</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 344.239 472.741 L 348.239 472.741 L 348.239 460.741 L 344.239 460.741 L 344.239 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 344.239 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 347.564 472.741 L 375.564 472.741 L 375.564 460.741 L 347.564 460.741 L 347.564 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 347.564 463.5223)\\\" x=\\\"0 6.67 13.89 21.11 23.89\\\">ACH,&quot;</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 375.0055 472.741 L 379.0055 472.741 L 379.0055 460.741 L 375.0055 460.741 L 375.0055 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.0054 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 378.3305 472.741 L 392.3305 472.741 L 392.3305 460.741 L 378.3305 460.741 L 378.3305 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 378.3305 463.5223)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 392.2319 472.741 L 396.2319 472.741 L 396.2319 460.741 L 392.2319 460.741 L 392.2319 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 392.2319 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 395.557 472.741 L 445.557 472.741 L 445.557 460.741 L 395.557 460.741 L 395.557 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 395.557 463.5223)\\\" x=\\\"0 3.55 10.22 13.55 19.11 21.39 24.17 27.5 33.06 35.84 38.12 43.68\\\">&quot;Arbitration</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 444.8001 472.741 L 448.8001 472.741 L 448.8001 460.741 L 444.8001 460.741 L 444.8001 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 444.8001 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 448.1252 472.741 L 480.1252 472.741 L 480.1252 460.741 L 448.1252 460.741 L 448.1252 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 448.1252 463.5223)\\\" x=\\\"0 7.22 9.5 15.06 20.62 25.62\\\">Clause</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 479.3117 472.741 L 483.3117 472.741 L 483.3117 460.741 L 479.3117 460.741 L 479.3117 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 479.3117 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 482.6368 472.741 L 499.6368 472.741 L 499.6368 460.741 L 482.6368 460.741 L 482.6368 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 482.6368 463.5223)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 499.3214 472.741 L 503.3214 472.741 L 503.3214 460.741 L 499.3214 460.741 L 499.3214 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.3214 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 502.6465 472.741 L 534.6465 472.741 L 534.6465 460.741 L 502.6465 460.741 L 502.6465 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 502.6465 463.5223)\\\" x=\\\"0 9.44 15 17.28 22.28 27.84\\\">Waiver</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 533.8184 472.741 L 537.8184 472.741 L 537.8184 460.741 L 533.8184 460.741 L 533.8184 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 533.8183 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 537.1434 472.741 L 546.1434 472.741 L 546.1434 460.741 L 537.1434 460.741 L 537.1434 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 537.1434 463.5223)\\\" x=\\\"0 5.56\\\">of</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 545.4833 472.741 L 549.4833 472.741 L 549.4833 460.741 L 545.4833 460.741 L 545.4833 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 545.4833 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 548.8083 472.741 L 567.8083 472.741 L 567.8083 460.741 L 548.8083 460.741 L 548.8083 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 548.8083 463.5223)\\\" x=\\\"0 5 10.56 13.89\\\">Jury</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 567.7 472.741 L 570.7 472.741 L 570.7 460.741 L 567.7 460.741 L 567.7 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 40.7 461.4227 L 187.7 461.4227 L 187.7 449.4227 L 40.7 449.4227 L 40.7 461.4227 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 452.2039)\\\" x=\\\"0 6.11 9.44 11.72 17.28 19.56 22.34 25.89 28.55 34.11 39.67 45.23 47.89 50.67 56.23 61.79 64.45 70.01 72.79 78.35 83.91 87.24 89.9 92.68 98.24 101.57 109.9 114.9 117.56 123.12 128.68 130.96 136.52 143.74\\\">Trial,&quot; and the other terms below.</text></g><clipPath id=\\\"clip1-3\\\"><path d=\\\"M 35 404 L 574 404 L 574 449 L 35 449 L 35 404 z \\\"/></clipPath><g clip-path=\\\"url(#clip1-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 435.7132)\\\" x=\\\"0 7.22 12.78 17.78 20.56 26.12 34.45 40.01 43.34 46 52.67 54.95 60.51 66.07 71.63 74.41 79.97 83.3 88.86\\\">Customer Signature:</text></g><clipPath id=\\\"clip1-4\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip1-4)\\\" fill=\\\"#fff\\\" stroke=\\\"none\\\" d=\\\"M 409.8 425.0359 L 439.8433 425.0359 L 439.8433 417.0244 L 409.8 417.0244 L 409.8 425.0359 z \\\"/><clipPath id=\\\"clip1-5\\\"><path d=\\\"M 409 417 L 440 417 L 440 426 L 409 426 L 409 417 z \\\"/></clipPath><path clip-path=\\\"url(#clip1-5)\\\" fill=\\\"#fff\\\" stroke=\\\"none\\\" d=\\\"M 409.8 425.0359 L 439.55 425.0359 L 439.55 423.9041 L 409.8 423.9041 L 409.8 425.0359 z \\\"/><path clip-path=\\\"url(#clip1-5)\\\" fill=\\\"#fff\\\" stroke=\\\"none\\\" d=\\\"M 409.8 425.0359 L 416.8 425.0359 L 416.8 423.0359 L 409.8 423.0359 L 409.8 425.0359 z \\\"/><g clip-path=\\\"url(#clip1-5)\\\"><text stroke=\\\"none\\\" fill=\\\"#fff\\\" style=\\\"font-family:f1-2; font-size:0.75pt\\\" transform=\\\"matrix(1 0 0 -1 409.8 424.1141)\\\" x=\\\"0 0.722 1.5 2.222 2.944 3.496 4.163 4.996 5.663 5.941\\\">DOCU_EMAIL</text></g><clipPath id=\\\"clip1-6\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip1-6)\\\" fill=\\\"#fff\\\" stroke=\\\"none\\\" d=\\\"M 164.15 417.4676 L 192.2025 417.4676 L 192.2025 406.447 L 164.15 406.447 L 164.15 417.4676 z \\\"/><clipPath id=\\\"clip1-7\\\"><path d=\\\"M 164 407 L 192 407 L 192 418 L 164 418 L 164 407 z \\\"/></clipPath><g clip-path=\\\"url(#clip1-7)\\\"><text stroke=\\\"none\\\" fill=\\\"#fff\\\" style=\\\"font-family:f1-2; font-size:0.75pt\\\" transform=\\\"matrix(1 0 0 -1 164.15 416.5457)\\\" x=\\\"0 0.722 1.5 2.222 2.944 3.496 4.163 4.441 5.219\\\">DOCU_SIGN</text></g><clipPath id=\\\"clip1-8\\\"><path d=\\\"M 35 343 L 389 343 L 389 405 L 35 405 L 35 343 z \\\"/></clipPath><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 392.5858)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 57.9314 392.5858)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 62.5791 392.5858)\\\" x=\\\"0 5.56 11.12 16.68 21.68\\\">Lease</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 89.8252 392.5858)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 94.4728 392.5858)\\\" x=\\\"0 7.22 12.78 21.11 26.67 32.23 37.79 42.79 44.7\\\">Company&apos;s</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 144.1798 392.5858)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.8275 392.5858)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 28.35 30.63 35.63 41.19\\\">authorized</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 195.5853 392.5858)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 200.2329 392.5858)\\\" x=\\\"0 5 7.28 12.84 18.4 23.96 26.74 32.3 35.63\\\">signature</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 241.4292 392.5858)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 246.0768 392.5858)\\\" x=\\\"0 2.28 7.84 13.4 15.68 20.68 26.24 29.02 34.58\\\">indicates</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 285.6618 392.5858)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 290.3094 392.5858)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 304.2108 392.5858)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 308.8584 392.5858)\\\" x=\\\"0 5.56 11.12 16.68 21.68\\\">Lease</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 336.1045 392.5858)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 340.7521 392.5858)\\\" x=\\\"0 7.22 12.78 21.11 26.67 32.23 37.79\\\">Company</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.55 392.5858)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 381.2675)\\\" x=\\\"0 5.56 11.12\\\">has</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 56.823 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 59.5613 381.2675)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.68 29.46 35.02\\\">accepted</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 100.1472 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 102.8854 381.2675)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 116.7868 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 119.525 381.2675)\\\" x=\\\"0 2.78 8.34 11.67 20 25\\\">terms,</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 147.3033 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 150.0416 381.2675)\\\" x=\\\"0 5 10.56 16.12 21.68 23.96 26.74 29.02 34.58 40.14\\\">conditions</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 195.1881 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 197.9263 381.2675)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 214.6109 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 217.3491 381.2675)\\\" x=\\\"0 5.56 11.12 13.4 15.68 21.24 26.8 29.58 31.86 37.42 42.98\\\">obligations</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 265.3374 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 268.0756 381.2675)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.4154 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 279.1537 381.2675)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 293.055 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 295.7933 381.2675)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 344.7093 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 347.4475 381.2675)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 364.1321 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 366.8703 381.2675)\\\" x=\\\"0 2.78 8.34 13.9\\\">that</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.55 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 369.9491)\\\" x=\\\"0 2.78 8.34 13.9 16.56 22.12 27.68 33.24 38.24 43.8 46.46 53.68 59.24 67.57 73.13 78.69 84.25 89.25 91.91 97.47 103.03 106.36 111.92 117.48 122.48 125.14 127.92 133.48 136.14 138.92 144.48 146.76 151.76 154.42 161.09 166.65 169.98 175.54 181.1 189.43 194.99 200.55 203.33\\\">the Lease Company agrees to this Agreement.</text></g><clipPath id=\\\"clip1-10\\\"><path d=\\\"M 388 343 L 574 343 L 574 405 L 388 405 L 388 343 z \\\"/></clipPath><g clip-path=\\\"url(#clip1-10)\\\"><g transform=\\\"matrix(0.75 0 0 -0.7619 416.525 401.8046)\\\"><image xlink:href=\\\"data:image/png;base64,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\\\" width=\\\"172\\\" height=\\\"42\\\" id=\\\"img43-0-9\\\"/></g></g><g clip-path=\\\"url(#clip1-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 394.35 359.0858)\\\" x=\\\"0 6.67 12.23 17.79 23.35 26.01 33.23 39.34 47.12 49.78 55.34 60.9 68.12 70.78 77.45 82.45 85.23 87.89 96.22 101.78 104.56 107.34 110 116.67 120 125.56 132.78 138.34 140.62 146.18\\\">Snap RTO LLC By: Matt Browning</text></g><g clip-path=\\\"url(#clip1-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 394.35 347.7675)\\\" x=\\\"0 6.11 8.39 11.17 13.45 19.01 21.79 24.45 31.67 39.45\\\">Title: COO</text></g><clipPath id=\\\"clip1-11\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 770.2 L 573.6 770.2 L 573.6 769.2 L 34.8 769.2 L 34.8 770.2 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.6 769.2 L 573.6 769.2 L 573.6 487.5594 L 572.6 487.5594 L 572.6 769.2 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 769.2 L 35.8 769.2 L 35.8 487.5594 L 34.8 487.5594 L 34.8 769.2 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 487.5594 L 573.6 487.5594 L 573.6 486.5594 L 34.8 486.5594 L 34.8 487.5594 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.6 486.5594 L 573.6 486.5594 L 573.6 448.6043 L 572.6 448.6043 L 572.6 486.5594 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 486.5594 L 35.8 486.5594 L 35.8 448.6043 L 34.8 448.6043 L 34.8 486.5594 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 448.6043 L 573.6 448.6043 L 573.6 447.6043 L 34.8 447.6043 L 34.8 448.6043 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.6 447.6043 L 573.6 447.6043 L 573.6 405.3046 L 572.6 405.3046 L 572.6 447.6043 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 447.6043 L 35.8 447.6043 L 35.8 405.3046 L 34.8 405.3046 L 34.8 447.6043 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 405.3046 L 389.45 405.3046 L 389.45 404.3046 L 34.8 404.3046 L 34.8 405.3046 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 344.1679 L 389.45 344.1679 L 389.45 343.1679 L 34.8 343.1679 L 34.8 344.1679 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 404.3046 L 35.8 404.3046 L 35.8 344.1679 L 34.8 344.1679 L 34.8 404.3046 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 389.45 405.3046 L 573.6 405.3046 L 573.6 404.3046 L 389.45 404.3046 L 389.45 405.3046 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 389.45 344.1679 L 573.6 344.1679 L 573.6 343.1679 L 389.45 343.1679 L 389.45 344.1679 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.6 404.3046 L 573.6 404.3046 L 573.6 344.1679 L 572.6 344.1679 L 572.6 404.3046 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 388.45 404.3046 L 389.45 404.3046 L 389.45 344.1679 L 388.45 344.1679 L 388.45 404.3046 z \\\"/><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 331.4491)\\\" x=\\\"0 7.22 15 21.11 23.89 31.11\\\">NOTICE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 70.8783 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 73.8798 331.4491)\\\" x=\\\"0 6.11\\\">TO</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 87.7666 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 90.7681 331.4491)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 110.7681 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 113.7696 331.4491)\\\" x=\\\"0 7.22 15 22.22 28.89 36.11 44.44 51.11 58.33\\\">CONSUMER:</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 174.8829 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 177.8844 331.4491)\\\" x=\\\"0 6.67 14.45\\\">YOU</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 199.5543 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 202.5558 331.4491)\\\" x=\\\"0 7.22 13.89 20.56\\\">HAVE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 229.7873 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 232.7888 331.4491)\\\" x=\\\"0 7.22\\\">NO</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.7888 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 250.7903 331.4491)\\\" x=\\\"0 7.78 17.22 24.44 31.11 38.33 45 52.22 55\\\">OWNERSHIP</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.4603 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 315.4618 331.4491)\\\" x=\\\"0 7.22 10 17.78 25 31.11\\\">RIGHTS</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 353.2401 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 356.2416 331.4491)\\\" x=\\\"0 2.78\\\">IN</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 366.2416 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 369.2431 331.4491)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 389.2431 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 392.2447 331.4491)\\\" x=\\\"0 6.67 13.89 21.67 28.34 35.01 42.23 48.34\\\">PROPERTY</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.2544 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 450.256 331.4491)\\\" x=\\\"0 7.22 14.44 20 26.67 33.34\\\">UNLESS</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 490.2706 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 493.2721 331.4491)\\\" x=\\\"0 6.67 13.89\\\">AND</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 514.3854 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 517.3869 331.4491)\\\" x=\\\"0 7.22 14.44 20.55 23.33\\\">UNTIL</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 546.2785 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 549.2801 331.4491)\\\" x=\\\"0 6.67 14.45\\\">YOU</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 320.1308)\\\" x=\\\"0 6.67 12.23 18.9 26.12\\\">ELECT</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 65.3315 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 71.359 320.1308)\\\" x=\\\"0 6.11\\\">TO</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 85.2457 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 91.2732 320.1308)\\\" x=\\\"0 6.67 13.34 20.56 28.34 36.67\\\">BECOME</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 134.613 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 140.6406 320.1308)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.6406 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 166.6681 320.1308)\\\" x=\\\"0 7.78 17.22 24.44 31.11\\\">OWNER</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 204.9982 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 211.0257 320.1308)\\\" x=\\\"0 7.78\\\">OF</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 224.9124 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 230.9399 320.1308)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 250.9399 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 256.9675 320.1308)\\\" x=\\\"0 6.67 13.89 21.67 28.34 35.01 42.23 48.34\\\">PROPERTY</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 311.9772 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 318.0048 320.1308)\\\" x=\\\"0 6.67 12.78 18.89 25.56\\\">AFTER</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 350.7831 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 356.8106 320.1308)\\\" x=\\\"0 8.33 15 21.67 24.45 31.67\\\">MAKING</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 396.2588 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 402.2864 320.1308)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 422.2864 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 428.3139 320.1308)\\\" x=\\\"0 7.22 13.89 21.11 27.78 34.45 41.12 47.79 55.01\\\">NECESSARY</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.9984 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 496.026 320.1308)\\\" x=\\\"0 6.67 13.34 20.01 28.34 35.01 42.23 48.34\\\">PAYMENTS</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.0357 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0633 320.1308)\\\" x=\\\"0 6.11\\\">TO</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 308.8124)\\\" x=\\\"0 6.67 13.89 21.67 28.89 31.67 38.89\\\">ACQUIRE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 78.6615 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 82.9084 308.8124)\\\" x=\\\"0 7.78 17.22 24.44 31.11 38.33 45 52.22 55 61.67\\\">OWNERSHIP,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 147.3567 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 151.6035 308.8124)\\\" x=\\\"0 6.67 13.89\\\">AND</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 172.7168 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 176.9637 308.8124)\\\" x=\\\"0 6.67 14.45\\\">YOU</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 198.6336 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 202.8805 308.8124)\\\" x=\\\"0 7.22 13.89 20.56\\\">HAVE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 230.112 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 234.3589 308.8124)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 254.3589 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 258.6057 308.8124)\\\" x=\\\"0 5.56 12.23 20.01 26.68\\\">LEGAL</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.8469 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 295.0938 308.8124)\\\" x=\\\"0 6.67 13.89 20 27.22 35 42.22 45 51.11\\\">AUTHORITY</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 352.8722 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 357.119 308.8124)\\\" x=\\\"0 6.11\\\">TO</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.0058 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 375.2527 308.8124)\\\" x=\\\"0 6.67 13.89 21.11 27.78 34.45\\\">ACCEPT</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 415.8142 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 420.0611 308.8124)\\\" x=\\\"0 6.11 8.89 15 20.56\\\">TITLE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.2876 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 451.5345 308.8124)\\\" x=\\\"0 6.11\\\">TO</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 465.4212 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 469.6681 308.8124)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.6681 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 493.915 308.8124)\\\" x=\\\"0 6.67 13.89 21.67 28.34 35.01 42.23 48.34 55.01\\\">PROPERTY.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.7031 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 555.95 308.8124)\\\" x=\\\"0 7.22\\\">DO</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 297.494)\\\" x=\\\"0 7.22 15\\\">NOT</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 54.2084 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 57.2636 297.494)\\\" x=\\\"0 6.67 9.45 17.23\\\">SIGN</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 81.7118 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 84.767 297.494)\\\" x=\\\"0 6.11 13.33 16.11\\\">THIS</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 107.5453 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 110.6005 297.494)\\\" x=\\\"0 6.67 14.45 21.67 28.34 35.01 43.34 50.01 57.23\\\">AGREEMENT</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 173.9404 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 176.9956 297.494)\\\" x=\\\"0 6.67 13.34 19.45 27.23 34.45\\\">BEFORE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 218.1137 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 221.1689 297.494)\\\" x=\\\"0 6.67 14.45\\\">YOU</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 242.8389 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 245.8941 297.494)\\\" x=\\\"0 7.22 13.89 20.56\\\">READ</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 273.6773 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 276.7325 297.494)\\\" x=\\\"0 6.67 12.23\\\">ALL</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 294.5254 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 297.5806 297.494)\\\" x=\\\"0 6.67 13.34 21.12 27.79\\\">PAGES</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 332.0386 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 335.0938 297.494)\\\" x=\\\"0 7.78\\\">OF</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.9805 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 352.0357 297.494)\\\" x=\\\"0 2.78\\\">IT</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 360.9225 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 363.9777 297.494)\\\" x=\\\"0 7.78\\\">OR</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 378.9777 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 382.0329 297.494)\\\" x=\\\"0 2.78\\\">IF</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 390.9196 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 393.9748 297.494)\\\" x=\\\"0 2.78\\\">IT</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.8615 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 405.9167 297.494)\\\" x=\\\"0 7.22 15 22.22 28.33 35 37.78 45\\\">CONTAINS</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 457.5866 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 460.6418 297.494)\\\" x=\\\"0 6.67 13.89\\\">ANY</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 481.2033 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 484.2585 297.494)\\\" x=\\\"0 6.67 12.23 18.9 26.12\\\">BLANK</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 517.0515 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 520.1067 297.494)\\\" x=\\\"0 6.67 13.34 20.01 27.23\\\">SPACE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 554.0081 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0633 297.494)\\\" x=\\\"0 6.11\\\">TO</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 286.1757)\\\" x=\\\"0 6.67\\\">BE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 46.4398 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 49.3908 286.1757)\\\" x=\\\"0 6.11 8.89 14.45 20.01 26.68\\\">FILLED</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 83.2922 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 86.2431 286.1757)\\\" x=\\\"0 2.78 10\\\">IN.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 99.0214 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 101.9724 286.1757)\\\" x=\\\"0 6.67 14.45\\\">YOU</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 123.6423 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 126.5933 286.1757)\\\" x=\\\"0 6.67 13.89\\\">ARE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 147.1548 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 150.1057 286.1757)\\\" x=\\\"0 6.67 13.89 20 22.78 28.89 34.45 41.12\\\">ENTITLED</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 198.4456 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 201.3965 286.1757)\\\" x=\\\"0 6.11\\\">TO</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 215.2832 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 218.2342 286.1757)\\\" x=\\\"0\\\">A</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 224.9041 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 227.8551 286.1757)\\\" x=\\\"0 7.22 15 23.33 30 35.56 42.23 48.34 55.01 60.57\\\">COMPLETELY</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 295.0963 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 298.0472 286.1757)\\\" x=\\\"0 6.11 8.89 14.45 20.01 26.68 33.9 37.23 40.01\\\">FILLED-IN</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 345.2787 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 348.2296 286.1757)\\\" x=\\\"0 7.22 15 21.67\\\">COPY</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 376.5695 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 379.5204 286.1757)\\\" x=\\\"0 7.78\\\">OF</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.4071 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 396.3581 286.1757)\\\" x=\\\"0 6.11 13.33 16.11\\\">THIS</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.1364 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 422.0874 286.1757)\\\" x=\\\"0 6.67 14.45 21.67 28.34 35.01 43.34 50.01 57.23\\\">AGREEMENT</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 485.4272 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 488.3781 286.1757)\\\" x=\\\"0 9.44 16.66 23.33\\\">WHEN</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 518.9299 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 521.8809 286.1757)\\\" x=\\\"0 6.67 14.45\\\">YOU</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 543.5508 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 546.5017 286.1757)\\\" x=\\\"0 6.67 9.45 17.23\\\">SIGN</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 274.8573)\\\" x=\\\"0 2.78 8.89\\\">IT.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 261.539)\\\" x=\\\"0 6.11 12.78 20 28.33 31.11 38.33 45 51.11 53.89 61.67 68.89\\\">TERMINATION.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 104.765 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 108.0706 261.539)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 125.8636 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 129.1692 261.539)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 148.0608 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 151.3663 261.539)\\\" x=\\\"0 2.78 8.34 11.67 20 22.28 27.84 33.4 36.18\\\">terminate</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 193.1095 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 196.4151 261.539)\\\" x=\\\"0 3.33 8.89 14.45 20.01\\\">(end)</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 219.7598 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 223.0654 261.539)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.6855 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 241.9911 261.539)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.9071 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 294.2127 261.539)\\\" x=\\\"0 5.56\\\">at</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.5525 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 305.8581 261.539)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.7595 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 323.065 261.539)\\\" x=\\\"0 5.56 11.12\\\">end</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 339.7496 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 343.0552 261.539)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.395 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 354.7006 261.539)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 370.8236 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 374.1292 261.539)\\\" x=\\\"0 2.28 7.84 13.4 18.4\\\">lease</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 398.0941 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 401.3996 261.539)\\\" x=\\\"0 2.78 8.34 11.67\\\">term</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 421.3996 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 424.7052 261.539)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 435.2667 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 438.5723 261.539)\\\" x=\\\"0 5 10.56 13.34 15.62 20.62 23.4 28.4 30.68 36.24\\\">satisfying</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 480.3741 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 483.6796 261.539)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 497.581 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 500.8866 261.539)\\\" x=\\\"0 3.33 8.89 14.45 20.01 22.29 25.62 31.18 39.51 45.07 50.63 53.41\\\">requirements</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.3046 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 562.6101 261.539)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 250.2206)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 48.7201 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 51.7761 250.2206)\\\" x=\\\"0 5.56 11.12 14.45 20.01 25.57 28.9 34.46 40.02 45.58\\\">paragraph.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 100.1453 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 103.2013 250.2206)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 120.9943 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 124.0503 250.2206)\\\" x=\\\"0 8.33 13.89 18.89\\\">must</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 145.7202 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.7762 250.2206)\\\" x=\\\"0 5.56 8.89 14.45 22.78 28.34 31.12 33.4\\\">promptly</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 187.1795 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 190.2355 250.2206)\\\" x=\\\"0 3.33 8.89 11.67 17.23 20.56\\\">return</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 216.3586 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 219.4146 250.2206)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.3159 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 236.3719 250.2206)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 274.1649 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 277.2209 250.2206)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 285.5608 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 288.6168 250.2206)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.1783 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 302.2343 250.2206)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 310.0761 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 313.1321 250.2206)\\\" x=\\\"0 5.56 10.56 15.56 21.12 24.45 30.01 35.57 41.13 46.13\\\">accordance</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 364.8313 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 367.8874 250.2206)\\\" x=\\\"0 7.22 9.5 12.28\\\">with</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 385.7291 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 388.7852 250.2206)\\\" x=\\\"0 5.56 11.12\\\">our</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.2383 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 406.2943 250.2206)\\\" x=\\\"0 5.56 7.84 11.17 16.73 21.73 24.51 26.79 32.35 37.91\\\">directions</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 449.2093 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 452.2653 250.2206)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.9499 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 472.0059 250.2206)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 488.129 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 491.185 250.2206)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57 33.35\\\">amounts</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.5395 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 532.5955 250.2206)\\\" x=\\\"0 5.56 10.56 15.56 18.89 24.45 30.01 35.57\\\">accrued.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 238.9022)\\\" x=\\\"0 9.44\\\">We</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 48.1 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 51.2677 238.9022)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 70.1593 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 73.327 238.9022)\\\" x=\\\"0 2.78 8.34 11.67 20 22.28 27.84 33.4 36.18\\\">terminate</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 115.0702 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 118.2379 238.9022)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 133.858 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 137.0257 238.9022)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 185.9417 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 189.1094 238.9022)\\\" x=\\\"0 5.56\\\">at</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 197.4493 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 200.617 238.9022)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 216.74 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 219.9077 238.9022)\\\" x=\\\"0 2.78 5.06 13.39\\\">time</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.8579 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 242.0256 238.9022)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.0842 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 250.2519 238.9022)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 266.375 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 269.5427 238.9022)\\\" x=\\\"0 5.56 8.89\\\">are</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 283.9958 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 287.1635 238.9022)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 295.0053 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 298.173 238.9022)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 27.3\\\">default</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 328.256 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 331.4237 238.9022)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 339.7636 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 342.9313 238.9022)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 362.3844 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 365.5521 238.9022)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.9066 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.0743 238.9022)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 415.9659 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 419.1336 238.9022)\\\" x=\\\"0 5.56 8.34 13.9 19.46\\\">other</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 441.9266 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 445.0943 238.9022)\\\" x=\\\"0 5.56 11.12 13.4 15.68 21.24 26.8 29.58 31.86 37.42 42.98 47.98\\\">obligations.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 495.8609 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 499.0286 238.9022)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 516.8216 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 519.9893 238.9022)\\\" x=\\\"0 8.33 13.89 18.89\\\">must</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 541.6592 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 544.8269 238.9022)\\\" x=\\\"0 3.33 8.89 11.67 17.23 20.56\\\">return</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 227.5839)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.0014 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 50.6007 227.5839)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 88.3937 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 91.9931 227.5839)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 100.3329 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 103.9323 227.5839)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 117.8336 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 121.433 227.5839)\\\" x=\\\"0 5.56 7.84 13.4 18.4\\\">place</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 145.3978 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.9972 227.5839)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 161.7804 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 165.3797 227.5839)\\\" x=\\\"0 5.56 11.12 16.12 18.4 23.96 29.52 35.08 37.86 43.42\\\">designate.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 211.5858 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 215.1852 227.5839)\\\" x=\\\"0 7.22 12.78 18.34\\\">Upon</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 239.0914 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 242.6908 227.5839)\\\" x=\\\"0 2.78 8.34 11.67 20 22.28 27.84 33.4 36.18 38.46 44.02 49.58\\\">termination,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 295.0541 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 298.6534 227.5839)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 314.7765 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 318.3758 227.5839)\\\" x=\\\"0 5.56 11.12 14.45 20.01\\\">agree</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 343.952 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 347.5513 227.5839)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.8912 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 359.4905 227.5839)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.6136 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 379.2129 227.5839)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.1143 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 396.7137 227.5839)\\\" x=\\\"0 2.78 8.34 10.62 12.9 18.46 25.68 27.96 33.52\\\">following</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 435.8006 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 439.3999 227.5839)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01 30.57 35.57\\\">charges:</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 477.7544 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 481.3538 227.5839)\\\" x=\\\"0 6.67 12.23\\\">Any</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 498.5852 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 502.1846 227.5839)\\\" x=\\\"0 5.56 11.12 16.68 22.24 24.52\\\">unpaid</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 532.2725 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 535.8718 227.5839)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 216.2655)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46 44.46\\\">Payments,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 80.3412 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 83.8455 216.2655)\\\" x=\\\"0 2.78 8.34 13.9\\\">fees</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 102.7469 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 106.2512 216.2655)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 122.9358 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 126.4401 216.2655)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01 30.57 35.57\\\">charges,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 164.7946 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 168.299 216.2655)\\\" x=\\\"0 5.56 7.84 13.4\\\">plus</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 186.7023 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 190.2066 216.2655)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 206.3297 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 209.834 216.2655)\\\" x=\\\"0 5.56 8.34 11.12 13.4 18.4 20.68 26.24\\\">official</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.3545 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 241.8588 216.2655)\\\" x=\\\"0 2.78 8.34 13.9\\\">fees</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 260.7602 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 264.2645 216.2655)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.9491 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 284.4534 216.2655)\\\" x=\\\"0 2.78 8.34 13.34 18.9\\\">taxes</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.3548 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 311.8591 216.2655)\\\" x=\\\"0 2.28 10.61 16.17 21.73 26.73 32.29\\\">imposed</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 349.7156 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 353.2199 216.2655)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 361.0617 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 364.566 216.2655)\\\" x=\\\"0 5 10.56 16.12 21.68 27.24 32.24 35.02 37.3 42.86\\\">connection</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 412.9938 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 416.4981 216.2655)\\\" x=\\\"0 7.22 9.5 12.28\\\">with</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.3399 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 437.8442 216.2655)\\\" x=\\\"0 2.78 8.34 11.67 20 22.28 27.84 33.4 36.18 38.46 44.02 49.58\\\">termination,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 490.2075 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 493.7118 216.2655)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24 28.52 34.08 39.64\\\">including,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 536.1386 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 539.6429 216.2655)\\\" x=\\\"0 5.56 11.12\\\">but</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.5443 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0486 216.2655)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 204.9472)\\\" x=\\\"0 2.28 4.56 12.89 15.17 17.95 23.51\\\">limited</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 62.1723 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 64.9349 204.9472)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 73.2747 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 76.0373 204.9472)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 92.1604 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 94.923 204.9472)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64\\\">applicable</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 140.133 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 142.8956 204.9472)\\\" x=\\\"0 2.78 5.06 10.62 16.18 21.18\\\">fines,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 166.8555 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 169.6182 204.9472)\\\" x=\\\"0 5 10.56 13.89 18.89 24.45 30.01 33.34 38.9 44.46 49.46\\\">surcharges,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 221.8642 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 224.6269 204.9472)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 241.3114 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 244.0741 204.9472)\\\" x=\\\"0 2.78 8.34 13.34 18.9 23.9\\\">taxes.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 270.7537 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 273.5164 204.9472)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.3093 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 294.0719 204.9472)\\\" x=\\\"0 8.33 13.89 18.89\\\">must</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 315.7419 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 318.5045 204.9472)\\\" x=\\\"0 5.56 7.84 12.84\\\">also</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 336.9078 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 339.6704 204.9472)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.7935 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 358.5561 204.9472)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 374.6791 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 377.4417 204.9472)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.12 31.12 33.4 38.4\\\">excessive</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 421.4066 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 424.1692 204.9472)\\\" x=\\\"0 7.22 12.78 18.34\\\">wear</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 445.844 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 448.6066 204.9472)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 465.2912 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 468.0538 204.9472)\\\" x=\\\"0 5.56 10.56\\\">use</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.1769 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 486.9395 204.9472)\\\" x=\\\"0 2.78 8.34 13.9\\\">fees</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 505.8408 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 508.6035 204.9472)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 519.165 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 521.9276 204.9472)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29 32.85\\\">provided</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 560.3456 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 563.1082 204.9472)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 193.6288)\\\" x=\\\"0 2.78 8.34 10.62 15.62 18.28 24.95 30.51 33.84 39.4 44.96 53.29 58.85 64.41 67.19 69.97 72.63 77.63 83.19 88.75 91.03 96.59 101.59 104.37 107.03 109.81 115.37 118.03 120.31 122.59 130.92 133.2 135.98 141.54 144.32 146.6 152.16 157.72 162.72 165.38 170.94 173.72 176.38 181.94 187.5 193.06 195.34 197.62 202.62 208.18 213.74 216.02 221.58 224.24 226.52 232.08 239.3\\\">this Agreement, subject to limitations of applicable law.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 180.3105)\\\" x=\\\"0 8.33 15 17.78 25 31.11 37.78 45 51.67 58.89 66.11 72.78\\\">MAINTENANCE.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 108.6615 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 111.6829 180.3105)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 129.4758 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 132.4972 180.3105)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.5597 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 149.581 180.3105)\\\" x=\\\"0 5 10.56 16.12\\\">keep</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 171.2656 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 174.287 180.3105)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 188.1883 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 191.2097 180.3105)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 229.0026 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 232.024 180.3105)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 239.8658 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 242.8871 180.3105)\\\" x=\\\"0 5.56 11.12 16.68\\\">good</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 265.1332 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 268.1546 180.3105)\\\" x=\\\"0 7.22 12.78 16.11 21.11 23.39 28.95\\\">working</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.6712 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 305.6925 180.3105)\\\" x=\\\"0 5.56 8.89 14.45 20.01\\\">order</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.0373 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 332.0586 180.3105)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.7432 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 351.7645 180.3105)\\\" x=\\\"0 3.33 8.89 14.45 20.01 22.29 25.62\\\">repair.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.1679 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 383.1892 180.3105)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 400.9822 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 404.0035 180.3105)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 418.066 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 421.0874 180.3105)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 437.2104 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 440.2318 180.3105)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.3548 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 459.3762 180.3105)\\\" x=\\\"0 5.56 11.12 16.68 20.01 25.57 28.35 30.63 36.19\\\">operating</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.134 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 504.1553 180.3105)\\\" x=\\\"0 5 10.56 15.56 18.34 23.34\\\">costs.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 530.2735 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 533.2948 180.3105)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.0878 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 554.1092 180.3105)\\\" x=\\\"0 7.22 9.5 11.78 14.06\\\">will,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 168.9921)\\\" x=\\\"0 5.56\\\">at</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 41.4398 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 44.1473 168.9921)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 63.6004 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 66.3078 168.9921)\\\" x=\\\"0 5.56 10.56 16.12 21.68 27.24 32.24 37.8\\\">expense,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 106.8938 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 109.6012 168.9921)\\\" x=\\\"0 5 10.56 13.89 18.89 21.17 26.17\\\">service</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 141.3346 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 144.042 168.9921)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 157.9434 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 160.6508 168.9921)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 198.4438 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 201.1512 168.9921)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 208.993 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 211.7005 168.9921)\\\" x=\\\"0 5.56 10.56 15.56 21.12 24.45 30.01 35.57 41.13 46.13\\\">accordance</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 263.3997 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 266.1071 168.9921)\\\" x=\\\"0 7.22 9.5 12.28\\\">with</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 283.9489 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 286.6563 168.9921)\\\" x=\\\"0 8.33 13.89 19.45 25.01 27.79 33.35 38.35 41.13 46.69 50.02 55.58\\\">manufacturer</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 345.5723 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 348.2798 168.9921)\\\" x=\\\"0 5 7.78 13.34 18.9 24.46 30.02 33.35 38.91 43.91\\\">standards.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 394.9741 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 397.6815 168.9921)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.2382 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 405.9456 168.9921)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.847 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 422.5544 168.9921)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 460.3474 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 463.0548 168.9921)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 470.3351 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 473.0425 168.9921)\\\" x=\\\"0 3.33 8.89 13.89 19.45 21.73 24.01 29.57 35.13\\\">recalled,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 510.9576 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 513.665 168.9921)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.788 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 532.4955 168.9921)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 546.558 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 549.2654 168.9921)\\\" x=\\\"0 5.56 11.12 16.12\\\">have</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 157.6738)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.0014 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 51.506 157.6738)\\\" x=\\\"0 3.33 8.89 13.89 19.45 21.73\\\">recall</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 75.5196 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 80.0242 157.6738)\\\" x=\\\"0 3.33 8.89 14.45 20.01 22.29 25.62\\\">repairs</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 110.6492 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 115.1538 157.6738)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 124.0454 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 128.5499 157.6738)\\\" x=\\\"0 5 10.56 13.89 18.89 21.17 26.17\\\">service</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.2833 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 164.7879 157.6738)\\\" x=\\\"0 5.56 11.12 14.45 17.23 22.79 26.12 34.45 40.01 45.57\\\">performed.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 213.1424 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 217.647 157.6738)\\\" x=\\\"0 2.78\\\">In</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.9868 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 230.4914 157.6738)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 244.3928 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 248.8974 157.6738)\\\" x=\\\"0 5.56 10.56 16.12 21.68\\\">event</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 273.3603 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 277.8648 157.6738)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.7662 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 296.2708 157.6738)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 334.0637 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.5683 157.6738)\\\" x=\\\"0 5.56 11.12\\\">has</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 354.6914 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 359.1959 157.6738)\\\" x=\\\"0 8.33 13.89 18.89 24.45 30.01 35.57 37.85 42.85 48.41\\\">mechanical</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 409.8942 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 414.3988 157.6738)\\\" x=\\\"0 5.56 8.89 14.45 20.01 22.29 27.85 36.18 41.18\\\">problems,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 458.3636 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 462.8682 157.6738)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 478.9912 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 483.4958 157.6738)\\\" x=\\\"0 5.56 11.12 14.45 20.01\\\">agree</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.072 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 513.5766 157.6738)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.9164 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 526.421 157.6738)\\\" x=\\\"0 3.33 8.89 11.67 17.23 20.56\\\">return</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.544 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0486 157.6738)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 146.3554)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79 40.45 43.23 48.79 51.45 57.01 62.01 64.67 67.45 73.01 76.34 79 84.56 89.56 95.12 97.4 102.96 108.52 111.3 113.58 119.14 124.7 127.48 130.14 135.7 141.26 146.82 149.6 152.26 154.54 157.32 159.98 165.54 171.1 176.1 181.66 186.66 191.66 197.22 200.55 205.55 208.33 210.99 214.32 219.88 225.44 231 233.28 236.61\\\">Property to us for evaluation, and, if necessary, repair.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 133.037)\\\" x=\\\"0 6.67 12.78 19.45 26.67 33.89 40.56 47.78 55\\\">STANDARDS</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 94.7748 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 97.7681 133.037)\\\" x=\\\"0 6.11 13.89\\\">FOR</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 118.8765 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 121.8699 133.037)\\\" x=\\\"0 9.44 16.11 22.78\\\">WEAR</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 151.8699 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 154.8632 133.037)\\\" x=\\\"0 6.67 13.89\\\">AND</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 175.9765 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 178.9698 133.037)\\\" x=\\\"0 7.22 13.89 20.56\\\">USE.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 202.3096 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 205.303 133.037)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 223.0959 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 226.0893 133.037)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 244.9809 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 247.9742 133.037)\\\" x=\\\"0 5.56\\\">be</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.0972 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 262.0906 133.037)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01 30.57\\\">charged</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 298.2283 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 301.2216 133.037)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.8915 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 315.8849 133.037)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.12\\\">excess</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 347.0079 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 350.0012 133.037)\\\" x=\\\"0 7.22 12.78 18.34\\\">wear</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.676 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 374.6694 133.037)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 391.3539 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 394.3473 133.037)\\\" x=\\\"0 5.56 10.56\\\">use</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 410.4703 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 413.4636 133.037)\\\" x=\\\"0 7.22 12.78 18.34\\\">when</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 437.3699 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 440.3632 133.037)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.4863 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 459.4796 133.037)\\\" x=\\\"0 3.33 8.89 11.67 17.23 20.56\\\">return</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 485.6026 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 488.596 133.037)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 502.4973 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 505.4907 133.037)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 543.2836 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 546.277 133.037)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 554.6168 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.6101 133.037)\\\" x=\\\"0 5.56 10.56\\\">us.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 121.7187)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 50.3314 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 54.7254 121.7187)\\\" x=\\\"0 2.78 8.34 10.62 12.9 18.46 25.68 27.96 33.52\\\">following</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 93.8123 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 98.2062 121.7187)\\\" x=\\\"0 5 7.78 13.34 18.9 24.46 30.02 33.35 38.91\\\">standards</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 142.1222 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 146.5161 121.7187)\\\" x=\\\"0 5.56 11.12 16.68 18.96\\\">apply</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 170.4809 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 174.8748 121.7187)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 186.5447 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 190.9386 121.7187)\\\" x=\\\"0 5.56 11.12 13.9 19.46 22.79 31.12 33.4 38.96 41.24 46.8\\\">determining</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 243.3068 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 247.7007 121.7187)\\\" x=\\\"0 5.56 11.12 14.45 20.01 25.57 30.57 36.13 41.69 47.25 52.81 55.09\\\">unreasonable</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.3648 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 312.7587 121.7187)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 321.6503 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 326.0442 121.7187)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.12\\\">excess</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 357.1672 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 361.5611 121.7187)\\\" x=\\\"0 7.22 12.78 18.34\\\">wear</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.2359 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 387.6298 121.7187)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 404.3144 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 408.7083 121.7187)\\\" x=\\\"0 5.56 10.56 16.12\\\">use:</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 427.6097 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 432.0036 121.7187)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 449.7965 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 454.1904 121.7187)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.2529 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 472.6468 121.7187)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.5482 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 490.9421 121.7187)\\\" x=\\\"0 5.56 11.12 13.4 18.96\\\">paint</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.6853 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 517.0792 121.7187)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 525.9708 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 530.3647 121.7187)\\\" x=\\\"0 2.28 7.84 10.62 13.4 18.96\\\">letter</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.6547 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0486 121.7187)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 110.4003)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 70.893 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 75.8495 110.4003)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 84.7411 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 89.6976 110.4003)\\\" x=\\\"0 8.33 13.89 19.45 21.73 24.51\\\">modify</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 119.2094 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 124.1659 110.4003)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 140.2889 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 145.2455 110.4003)\\\" x=\\\"0 2.28 7.84 13.4 18.96 21.74 24.02 26.8 29.08 34.08 39.64 42.42 44.7 50.26\\\">identification</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 201.0707 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 206.0272 110.4003)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57\\\">number</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 239.9335 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 244.89 110.4003)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 253.2298 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 258.1864 110.4003)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 272.0877 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 277.0443 110.4003)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 317.6156 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 322.5721 110.4003)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 340.3651 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 345.3216 110.4003)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.3841 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 364.3407 110.4003)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 378.242 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 383.1985 110.4003)\\\" x=\\\"0 5.56 11.12 16.68\\\">add,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.6614 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.618 110.4003)\\\" x=\\\"0 3.33 8.89 17.22 22.78 27.78\\\">remove</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 440.9627 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 445.9192 110.4003)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.8108 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 459.7674 110.4003)\\\" x=\\\"0 8.33 13.89 19.45 21.73 24.51\\\">modify</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.2791 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 494.2356 110.4003)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 510.3587 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 515.3152 110.4003)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.12 31.12 36.68 40.01 42.29 47.85 52.85\\\">accessories,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 99.082)\\\" x=\\\"0 5.56 11.12 16.68 18.96 24.52 32.85 38.41 43.97\\\">equipment</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 79.8578 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 83.9642 99.082)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 92.8558 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 96.9621 99.082)\\\" x=\\\"0 5.56 11.12 14.45 17.23\\\">parts</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 119.1936 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 123.2999 99.082)\\\" x=\\\"0 7.22 9.5 12.28 17.84 23.4 28.96\\\">without</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 155.0431 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 159.1494 99.082)\\\" x=\\\"0 5.56 11.12\\\">our</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 173.6025 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 177.7089 99.082)\\\" x=\\\"0 5.56 8.89 11.17 16.73\\\">prior</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 197.7724 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 201.8787 99.082)\\\" x=\\\"0 7.22 10.55 12.83 15.61 18.39 23.95\\\">written</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.3904 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 235.4968 99.082)\\\" x=\\\"0 5.56 11.12 14.45 22.78 25.06 30.06 35.06 37.34 42.9 48.46\\\">permission.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 286.7419 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 290.8482 99.082)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.0797 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 312.186 99.082)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 349.979 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 354.0853 99.082)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 368.1478 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 372.2542 99.082)\\\" x=\\\"0 5.56 11.12 13.9\\\">not:</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.9339 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 393.0402 99.082)\\\" x=\\\"0 7.22 12.78 17.78\\\">Have</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 416.3849 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 420.4913 99.082)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57 36.13\\\">damage,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 459.4073 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 463.5136 99.082)\\\" x=\\\"0 8.33 13.89 18.89 24.45 30.01 35.57 37.85 42.85 48.41\\\">mechanical</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 514.2119 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 518.3182 99.082)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 527.2098 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 531.3162 99.082)\\\" x=\\\"0 5.56 7.84 13.4 18.4 21.18 24.51 26.79 31.79 37.35\\\">electrical</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 87.7636)\\\" x=\\\"0 8.33 13.89 16.17 18.95 24.51 30.07 35.07 37.85 40.13 45.69\\\">malfunction</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 84.3549 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 87.8075 87.7636)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 98.369 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 101.8216 87.7636)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64 45.2\\\">applicable;</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 149.8099 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 153.2625 87.7636)\\\" x=\\\"0 5.56\\\">be</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 164.3855 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 167.8382 87.7636)\\\" x=\\\"0 2.78 8.34 11.67 17.23\\\">torn,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 187.8479 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 191.3005 87.7636)\\\" x=\\\"0 5.56 11.12 14.45 20.01 25.57 31.13\\\">burned,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.2165 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 228.6691 87.7636)\\\" x=\\\"0 5 7.78 13.34 15.62 21.18 26.74\\\">stained</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 260.9738 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 264.4264 87.7636)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 273.318 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 276.7706 87.7636)\\\" x=\\\"0 5 10.56 13.89 19.45 25.01 30.57 36.13 41.69\\\">shredded;</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 321.2482 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 324.7008 87.7636)\\\" x=\\\"0 5.56 11.12 16.12\\\">have</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 346.3853 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 349.8379 87.7636)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 365.961 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 369.4136 87.7636)\\\" x=\\\"0 5.56 11.12 16.68 19.46 24.46\\\">dents,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 396.6548 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 400.1074 87.7636)\\\" x=\\\"0 8.33 13.89 16.17 21.73\\\">mold,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 424.6191 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 428.0717 87.7636)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 436.9633 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 440.4159 87.7636)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57\\\">damage</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 476.5536 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 480.0062 87.7636)\\\" x=\\\"0 2.78 6.11 11.67\\\">from</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 500.0062 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 503.4588 87.7636)\\\" x=\\\"0 7.22 12.78 15.56 21.12 24.45\\\">water,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 530.6903 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 534.1429 87.7636)\\\" x=\\\"0 5 10.56 16.12 21.68\\\">sand,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 558.6058 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 562.0584 87.7636)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 76.4452)\\\" x=\\\"0 2.78 6.11 11.67 17.23 22.23 24.51 30.07 35.63 38.41 41.07 46.63 49.96 52.62 58.18 63.74 68.74 74.3 76.96 79.24 84.8 90.36 95.92 101.48 104.81 110.37 115.93 118.21 123.77 126.43 131.99 137.55 140.88 143.66 148.66 151.44 154.1 160.77 166.33 171.89 174.55 182.88 188.44 193.44 196.22 198.88 202.21 207.77 210.55 216.11 219.44 225 227.66 230.44 236 241.56 244.22 250.89 254.22 259.78 265.34 270.9 274.23 277.01 282.01 284.67 291.89 294.17 296.95 302.51 305.17 310.73 313.01 315.29 317.95 323.51 326.29 328.95 331.23 334.01 339.01 341.67 347.23 350.56 352.84 358.4 360.68 366.24 371.8 374.08 376.74 382.3 387.86 391.19 393.97 398.97\\\">freezing; or have inoperable parts. You must return the Property with all of its original parts.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 36.5264)\\\" x=\\\"0 6.498 11.997 14.391 16.785 21.789 26.793 29.295 34.299 39.303 44.307 504 506.3906 508.7812 511.1719 513.5625 515.9531 518.3438 520.7344 523.125 525.5156\\\">UT  07/2019          </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 26.3398)\\\" x=\\\"0 6.003 11.007 16.011 21.015\\\">Page </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 55.8097 26.3398)\\\" x=\\\"0\\\">2</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.815 26.3398)\\\" x=\\\"0 2.394 7.398 9.9\\\"> of </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 73.1021 26.3398)\\\" x=\\\"0\\\">7</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#d9d9d9\\\" style=\\\"font-family:f1-0; font-size:54pt; white-space:pre\\\" transform=\\\"matrix(0.707 0.707 0.707 -0.707 135.6027 198.5094)\\\" x=\\\"0 56.016 96.048 136.08 176.112 216.144 236.16 284.184 324.216 344.232 364.248 416.232 456.264 480.24\\\">Qoppa Software</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#002ba6\\\" style=\\\"font-family:f1-0; font-size:9pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.932 772)\\\" x=\\\"0 9.336 16.008 22.68 29.352 36.024 39.36 47.364 54.036 57.372 60.708 69.372 76.044 80.04 86.712 90.048 94.044 97.38 104.712 111.384 115.38 118.716 126.72 132.72 139.392 142.056 148.728 155.4 158.736 161.4 168.072 174.744 178.08 187.416 194.088 196.752 202.752 206.088 210.084 213.42 220.092 223.428 226.764 233.436 239.436 242.772 246.108 249.444 258.108 266.772 275.436 278.772 285.444 292.116 298.788 305.46 312.132 315.468 321.468 328.14\\\">Qoppa Software - For Evaluation Only - https://www.qoppa.com</text></g></g></svg></svg></g></svg><br>\\n<?xml version='1.0' encoding='UTF-8'?><svg id=\\\"qoppa_document\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" version=\\\"1.1\\\" xmlns=\\\"http://www.w3.org/2000/svg\\\" xmlns:xlink=\\\"http://www.w3.org/1999/xlink\\\"><!-- jPDFWeb v2019R1.03 - Demo Version --><style>title p { display: block; }</style><g id=\\\"qoppa_viewxform\\\" transform=\\\"matrix(1 0 0 1 0 0)\\\"><style type=\\\"text/css\\\">@font-face {font-family:f2-0;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f2-1;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f2-2;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}</style><svg id=\\\"qoppa_page_p2\\\" class=\\\"qoppa_page\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\"><rect class=\\\"qoppa_pageborder\\\" x=\\\"0.5pt\\\" y=\\\"0.5pt\\\" width=\\\"611pt\\\" height=\\\"791pt\\\" fill=\\\"none\\\" /><svg class=\\\"qoppa_pagecontents\\\" x=\\\"0pt\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" viewBox=\\\"0 0 612 792\\\" ><g class=\\\"qoppa_contentstream\\\" transform=\\\"matrix(1 0 0 -1 0 792)\\\" fill=\\\"black\\\" stroke=\\\"black\\\" stroke-width=\\\"1\\\" stroke-linecap=\\\"butt\\\" stroke-linejoin=\\\"miter\\\" stroke-miterlimit=\\\"10\\\"><clipPath id=\\\"clip2-1\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 758.4812)\\\" x=\\\"0 9.44 16.11 23.33 30.55 37.22 44.44 50.55 53.33 60 66.67\\\">WARRANTIES.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 102.5482 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 106.2624 758.4812)\\\" x=\\\"0 9.44\\\">We</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 121.2624 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 124.9766 758.4812)\\\" x=\\\"0 8.33 13.89 18.89\\\">make</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 149.4298 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 153.1439 758.4812)\\\" x=\\\"0 5.56\\\">no</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 164.267 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 167.9812 758.4812)\\\" x=\\\"0 5.56 10.56 16.12 19.45 25.01 30.01\\\">express</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 202.9958 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 206.71 758.4812)\\\" x=\\\"0 7.22 12.78 16.11 19.44 25 30.56 33.34\\\">warranty</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.0548 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 248.769 758.4812)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.892 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 263.6062 758.4812)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 277.5076 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 281.2218 758.4812)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 321.7931 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 325.5072 758.4812)\\\" x=\\\"0 5.56 11.12 16.68\\\">and,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 344.9701 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 348.6843 758.4812)\\\" x=\\\"0 5.56 11.12 13.4 18.96 23.96\\\">unless</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 377.6492 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 381.3634 758.4812)\\\" x=\\\"0 5.56 8.89 14.45 20.01 22.29 27.85 30.13 32.91 38.47\\\">prohibited</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 425.4015 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 429.1157 758.4812)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 439.6772 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 443.3914 758.4812)\\\" x=\\\"0 2.28 7.84 15.06\\\">law,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 461.2332 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 464.9474 758.4812)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 478.8487 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 482.5629 758.4812)\\\" x=\\\"0 2.78 8.34 10.62 12.9 18.46 25.68 27.96 33.52\\\">following</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.6498 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 525.364 758.4812)\\\" x=\\\"0 5 10.56 16.12 18.9 24.46 30.02 35.02 40.58\\\">sentences</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 747.1629)\\\" x=\\\"0 5.56 11.12 16.68 18.96 23.96\\\">apply.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 59.8432 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 63.102 747.1629)\\\" x=\\\"0 6.67 14.45\\\">YOU</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 84.772 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 88.0308 747.1629)\\\" x=\\\"0 6.67 13.89\\\">ARE</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 108.5924 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 111.8512 747.1629)\\\" x=\\\"0 5.56 12.23 18.9 25.57 28.35 35.57\\\">LEASING</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 155.2008 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 158.4597 747.1629)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 178.4597 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 181.7186 747.1629)\\\" x=\\\"0 6.67 13.89 21.67 28.34 35.01 42.23 48.34\\\">PROPERTY</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 236.7284 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 239.9872 747.1629)\\\" x=\\\"0 3.33 10\\\">“AS</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.6572 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 259.916 747.1629)\\\" x=\\\"0 2.78 9.45 12.78\\\">IS”.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.4727 747.1629)\\\" x=\\\"0 3.2589\\\">  </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 281.9904 747.1629)\\\" x=\\\"0 9.44\\\">WE</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 298.0988 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 301.3577 747.1629)\\\" x=\\\"0 8.33 15 21.67\\\">MAKE</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.6975 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 332.9564 747.1629)\\\" x=\\\"0 7.22\\\">NO</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 347.9564 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 351.2153 747.1629)\\\" x=\\\"0 6.67 13.34 20.01 27.23 33.9 40.57\\\">EXPRESS</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 398.4565 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 401.7153 747.1629)\\\" x=\\\"0 9.44 16.11 23.33 30.55 37.22 44.44 50.55 53.33 60\\\">WARRANTIES</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.3853 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 471.6442 747.1629)\\\" x=\\\"0 7.78\\\">ON</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.6442 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 489.903 747.1629)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.903 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 513.1619 747.1629)\\\" x=\\\"0 6.67 13.89 21.67 28.34 35.01 42.23 48.34 55.01\\\">PROPERTY.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 735.8445)\\\" x=\\\"0 9.44\\\">WE</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 49.2084 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 59.5638 735.8445)\\\" x=\\\"0 7.22 10 16.67 23.89 29.45 36.12 38.9\\\">DISCLAIM</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 106.7953 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 117.1507 735.8445)\\\" x=\\\"0 6.67 13.89\\\">ANY</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 137.7122 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.0676 735.8445)\\\" x=\\\"0 9.44 16.11 23.33 30.55 37.22 44.44 50.55 53.33 60\\\">WARRANTIES</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 214.7375 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 225.0929 735.8445)\\\" x=\\\"0 2.78 11.11 17.78 23.34 26.12 32.79\\\">IMPLIED</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 265.1027 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 275.4581 735.8445)\\\" x=\\\"0 6.67\\\">BY</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 288.798 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 299.1534 735.8445)\\\" x=\\\"0 5.56 12.23 21.67\\\">LAW,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 323.6016 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 333.957 735.8445)\\\" x=\\\"0 2.78 10 17.22 22.78 30 37.22 40 47.22\\\">INCLUDING</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.9619 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 399.3173 735.8445)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.3173 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 429.6728 735.8445)\\\" x=\\\"0 2.78 11.11 17.78 23.34 26.12 32.79\\\">IMPLIED</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 469.6825 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 480.0379 735.8445)\\\" x=\\\"0 9.44 16.11 23.33 30.55 37.22 44.44 50.55 53.33 60\\\">WARRANTIES</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 546.7079 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0633 735.8445)\\\" x=\\\"0 7.78\\\">OF</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 724.5262)\\\" x=\\\"0 8.33 15 22.22 29.44 36.66 43.33 50.55 56.66 63.33 70 72.78 78.34 81.12 87.23 93.9 96.56 103.23 110.45 117.67 120.33 126.44 129.22 135.33 142.55 149.22 155.89 162.56 165.22 171.33 179.11 186.33 188.99 195.66 202.88 209.55 212.21 218.88 225.55 232.77 238.88 241.66 248.88 256.1 261.66 268.33 275.55 278.21 284.88 292.1 299.32 305.99 313.77 320.44 327.11\\\">MERCHANTABILITY AND FITNESS FOR ANY PARTICULAR PURPOSE.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 711.2078)\\\" x=\\\"0 7.22 13.89 20 26.67 33.89 39.45 45.56 48.34 51 58.22 64.89 71.56 79.34 86.01 92.68 99.35 106.02 112.69 115.47 123.25 130.47 133.25 135.91 142.58 149.8 157.02 159.68 167.46 173.57 180.79 187.46 194.68 197.34 204.56 211.23 219.56 226.23 233.45 236.23 242.9 249.57 252.35 255.01 261.68 267.24 272.8 275.46 282.68 284.96 287.24 289.52 292.18 297.74 303.3 305.96 308.24 313.8 316.46 322.02 327.58 330.36 335.92 341.48 343.76 346.54 349.2 354.76 357.54 360.2 362.98 368.54 370.82 375.82 378.48 385.15 390.71 394.04 399.6 405.16 413.49 419.05 424.61 427.39 430.05 432.33 435.11\\\">DEFAULT, REPOSSESSION, AND OTHER REMEDIES. You will be in default of this Agreement if:</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 697.8895)\\\" x=\\\"0 3.33 5.99 12.66 18.22 23.78 26.44 32 37.56 40.22 45.78 51.34 54.12 56.78 62.34 67.9 72.9 75.56 81.12 86.68 91.68 94.34 99.9 105.46 110.46 118.79 124.35 129.91 132.69 135.35 140.91 144.24 146.9 152.46 155.24 160.8 166.36 169.69 172.35 177.91 186.24 191.8 197.36 202.92 205.7 208.36 213.92 219.48 225.04 230.6 233.93 236.59 239.37 244.93 250.49 253.15 259.82 265.38 268.71 274.27 279.83 288.16 293.72 299.28 302.06 304.72 310.28 315.28 317.94 323.5 326.83 332.39 337.39 339.67 345.23 350.79 356.35 359.01 364.57 367.9 370.56 377.78 383.34 388.9 394.46 397.12 404.34 409.9 412.56 420.89 426.45 431.45 437.01 439.67 445.23 450.79 459.12 464.68 470.24 475.8\\\">- You do not pay any payment or other amount under the Agreement as provided or when we make demand.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 684.5711)\\\" x=\\\"0 3.33 5.99 12.66 18.22 23.78 26.44 32 34.28 39.28 44.84 47.5 53.06 58.06 60.72 66.28 71.84 76.84 79.5 82.28 87.84 90.12 95.12 100.68 103.34 108.9 112.23 114.89 123.22 125.5 130.5 132.78 138.34 143.9 149.46 151.74 157.3 162.86 165.52 167.8 173.36 176.14 181.7 185.03 193.36 198.92 201.7 203.98 209.54 215.1\\\">- You give us any false or misleading information.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 671.2527)\\\" x=\\\"0\\\">-</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 36.4301 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.1823 671.2527)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 57.9753 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 61.7275 671.2527)\\\" x=\\\"0 2.28 7.84 12.84\\\">lose</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 80.1308 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 83.883 671.2527)\\\" x=\\\"0 5.56 11.12 16.12 21.12 26.68 31.68 36.68 38.96 44.52\\\">possession</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 133.9709 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 137.7231 671.2527)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.0629 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 149.8151 671.2527)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 163.7165 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 167.4687 671.2527)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 205.2617 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 209.0139 671.2527)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 219.5754 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 223.3276 671.2527)\\\" x=\\\"0 5 10.56 16.12 18.9 21.18 26.18 31.18 36.74 39.52 41.8 47.36 52.92\\\">confiscation,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 279.0307 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 282.7829 671.2527)\\\" x=\\\"0 2.78 8.34 11.67 14.45 20.01 22.29 25.07 30.63 33.96\\\">forfeiture</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 322.3044 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 326.0566 671.2527)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 334.9482 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.7004 671.2527)\\\" x=\\\"0 5.56 8.34 13.9 19.46\\\">other</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 361.4934 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 365.2456 671.2527)\\\" x=\\\"0 2.28 7.84 12.84 18.4 20.68 26.24 31.8 34.58 40.14 43.47\\\">involuntary</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 413.7222 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 417.4744 671.2527)\\\" x=\\\"0 2.78 6.11 11.67 17.23 22.23 25.01 30.57\\\">transfer</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 451.3757 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 455.1279 671.2527)\\\" x=\\\"0 3.33 8.89 14.45 20.01 23.34 28.9 31.18 36.74 41.74\\\">regardless</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.876 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 505.6282 671.2527)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 513.968 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 517.7202 671.2527)\\\" x=\\\"0 7.22 12.78 18.34 21.12 26.68 32.24\\\">whether</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.2964 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0486 671.2527)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 659.9344)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79 40.45 42.73 47.73 50.39 53.17 58.73 64.29 66.95 71.95 77.51 83.07 85.35 90.91 95.91 98.69 101.35 106.91 109.69 112.35 114.63 120.19 125.75 128.03 133.03 135.31 140.87 143.15 145.81 151.37 154.7 157.36 162.92 168.48 176.81 179.09 184.65 186.93 191.93 194.71 198.04 203.6 206.38 208.66 213.66 219.22 221.88 227.44 230.77 236.33 241.33 246.89 252.45 258.01 260.29 265.85 271.41 276.41\\\">Property is the subject of judicial or administrative proceedings.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 646.616)\\\" x=\\\"0 3.33 5.99 12.66 18.22 23.78 26.44 32 34.28 39.84 42.5 48.06 53.62 59.18 61.84 64.62 70.18 75.74 79.07 84.63 87.29 89.57 94.57 97.23 102.79 108.35 111.01 116.01 121.57 124.9 129.9 132.18 137.18 139.46 145.02 150.58 153.24 158.24 163.8 168.8 171.58 177.14 185.47 191.03 194.36\\\">- You die and there is no surviving customer.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 633.2977)\\\" x=\\\"0 3.33 5.99 12.1 17.66 23.22 25.88 32.55 35.88 41.44 47 52.56 55.89 58.67 63.67 66.33 68.61 73.61 76.27 78.55 84.11 89.11 91.89 94.67 97.33 102.33 105.11 110.67 112.95 118.51 124.07 126.73 132.29 135.62 138.28 143.84 149.4 157.73 163.29 168.85 174.41 179.97 182.63 188.19 193.75 198.75 204.31 209.87 215.43 218.09 221.42 226.98 232.54 238.1 240.38 243.71\\\">- The Property is lost, stolen or damaged beyond repair.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 619.9793)\\\" x=\\\"0 3.33 5.99 12.66 18.22 23.78 26.44 32 37 42 44.28 49.84 55.4 58.06 60.84 66.4 71.96 74.62 81.29 86.85 90.18 95.74 101.3 109.63 115.19 120.75 123.53 126.19 131.75 135.08 137.74 140.52 143.85 149.41 154.97 159.97 162.75 168.31 171.64 174.3 177.08 182.64 188.2 190.86 197.53 200.86 206.42 211.98 217.54 220.87 223.65 228.65\\\">- You assign the Agreement or transfer the Property.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 606.6609)\\\" x=\\\"0 3.33 5.99 13.21 18.77 21.05 26.61 31.61 36.61 39.27 44.83 48.16 53.72 59.28 61.56 67.12 69.4 72.18 77.74 83.3 85.96 91.52 96.52 99.18 101.46 107.02 114.24 117.02 119.68 124.68 130.24 135.8 138.46 143.46 145.74 151.3 153.58 159.14 161.92 167.48 170.14 175.7 181.26 186.26 188.92 195.59 201.15 204.48 210.04 215.6 223.93 229.49 235.05 237.83 240.49 243.27 248.83 252.16 260.49\\\">- Unless prohibited by law, you violate any Agreement term.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 593.3426)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 38.6566 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 41.5168 593.3426)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 57.1369 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 59.9971 593.3426)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 108.9131 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 111.7732 593.3426)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 119.0535 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 121.9136 593.3426)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 129.7554 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 132.6156 593.3426)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 27.3 30.08\\\">default,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 165.4769 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 168.3371 593.3426)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 181.1202 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 183.9804 593.3426)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 202.872 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 205.7321 593.3426)\\\" x=\\\"0 5.56\\\">at</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 214.072 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 216.9321 593.3426)\\\" x=\\\"0 5.56 11.12\\\">our</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.3853 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 234.2454 593.3426)\\\" x=\\\"0 5.56 7.84 13.4 18.4 21.18 23.46 29.02 34.58\\\">election,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 271.6087 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 274.4688 593.3426)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.1534 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 294.0135 593.3426)\\\" x=\\\"0 5 10.56 16.12 18.4 23.96 28.96\\\">subject</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 325.7567 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 328.6169 593.3426)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 336.9567 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 339.8168 593.3426)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.9399 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 358.8 593.3426)\\\" x=\\\"0 7.22 12.78 15.06 17.84 20.12 25.68\\\">waiting</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 390.0452 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 392.9053 593.3426)\\\" x=\\\"0 5.56 11.12 14.45 16.73 22.29\\\">period</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 420.7618 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 423.6219 593.3426)\\\" x=\\\"0 2.28 10.61 16.17 21.73 26.73 32.29\\\">imposed</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 461.4783 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 464.3385 593.3426)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.9 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 477.7602 593.3426)\\\" x=\\\"0 2.28 7.84 15.06\\\">law,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 495.602 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 498.4621 593.3426)\\\" x=\\\"0 2.78 8.34 13.34\\\">take</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 517.3635 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 520.2236 593.3426)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 536.3467 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 539.2068 593.3426)\\\" x=\\\"0 5.56 10.56 13.34 15.62 21.18 26.74\\\">actions</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 582.0242)\\\" x=\\\"0 5.56 11.12 14.45 22.78 25.06 27.84 30.62 36.18 41.74 44.4 49.96 54.96 57.62 59.9 65.46 72.68 75.46 78.12 80.4 85.96 90.96 93.24 98.8 104.36 106.64 112.2 117.76 120.42 127.64 129.92 132.7 138.26 143.82 149.38 152.16 154.82 157.1 159.38 167.71 169.99 172.77 178.33 181.11 183.39 188.95 194.51 197.17 202.73 208.29 213.85 216.51 222.07 224.85 227.51 230.29 235.85 241.41 244.07 246.85 252.41 254.69 256.97 262.53 269.75 272.03 277.59 283.15 285.81 291.37 296.37 299.15 301.43 306.99 312.55 317.55 320.33 322.99 328.55 334.11 339.67 345.23 347.89 353.45 356.23 358.89 366.11 371.67 373.95 378.95 384.51 387.17 394.39 396.67 398.95 401.23 403.89 408.89 414.45 417.78 423.34 426 431 436.56 442.12 445.45 448.11 453.67 459.23 462.01 467.57 473.13 475.41 478.19\\\">permitted by law, including without limitation one of the following actions, none of which will cure your default:</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 568.7059)\\\" x=\\\"0 3.33 10.55 16.11 18.89 21.17\\\">-Until</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 56.5522 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 59.9757 568.7059)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 76.0988 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 79.5223 568.7059)\\\" x=\\\"0 5.56 11.12 14.45 19.45 25.01 30.57 35.57\\\">purchase</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 120.66 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 124.0836 568.7059)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 137.985 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 141.4086 568.7059)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 179.2015 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 182.6251 568.7059)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 193.1866 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 196.6102 568.7059)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29 32.85\\\">provided</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 235.0282 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 238.4518 568.7059)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 246.2936 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 249.7171 568.7059)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 265.3372 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 268.7608 568.7059)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 320.4552 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 323.8787 568.7059)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 332.7703 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 336.1939 568.7059)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 350.0953 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 353.5189 568.7059)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 391.3118 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 394.7354 568.7059)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.0157 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 405.4393 568.7059)\\\" x=\\\"0 3.33 8.89 14.45 20.01 25.01 30.01 35.57 40.57 45.57 51.13\\\">repossessed</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 462.1385 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 465.5621 568.7059)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.4537 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 477.8772 568.7059)\\\" x=\\\"0 5 10.56 13.89 17.22 22.78 28.34 33.9 39.46 42.79 48.35 53.91\\\">surrendered,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 534.5765 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 538 568.7059)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 545.8418 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 549.2654 568.7059)\\\" x=\\\"0 5.56 11.12 16.12\\\">each</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 557.3875)\\\" x=\\\"0 5 10.56 15.56\\\">case</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 54.2231 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 56.9386 557.3875)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 67.5001 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 70.2156 557.3875)\\\" x=\\\"0 5.56 11.12 14.45 22.78 25.06 27.84 30.62 36.18\\\">permitted</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 111.9588 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 114.6743 557.3875)\\\" x=\\\"0 5.56 11.12 16.68 22.24\\\">under</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 140.2505 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 142.966 557.3875)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 158.5862 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 161.3017 557.3875)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 212.996 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 215.7115 557.3875)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.3317 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 234.0472 557.3875)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 282.9632 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 285.6787 557.3875)\\\" x=\\\"0 5 10.56 16.12 18.4\\\">shall</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 306.3623 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 309.0779 557.3875)\\\" x=\\\"0 5 10.56 16.12 18.9 21.18 26.74 32.3\\\">continue</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 346.9441 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 349.6596 557.3875)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 357.9994 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 360.715 557.3875)\\\" x=\\\"0 3.33 8.89 14.45 20.01 27.23\\\">renew,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 390.7296 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 393.4452 557.3875)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 410.1297 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 412.8453 557.3875)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 425.6285 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 428.344 557.3875)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.2356 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 449.9511 557.3875)\\\" x=\\\"0 5 10.56 16.12 18.9 21.18 26.74 32.3\\\">continue</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 487.8173 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 490.5329 557.3875)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 498.8727 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 501.5882 557.3875)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01\\\">charge</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 532.1644 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 534.88 557.3875)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.003 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.7185 557.3875)\\\" x=\\\"0 3.33 8.89 14.45\\\">rent</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 546.0691)\\\" x=\\\"0 5.56 11.12 16.68 22.24 25.57 28.23 31.01 36.57 42.13 44.79 47.57 53.13 56.46 64.79 69.79 72.45 78.01 80.79 83.45 86.23 91.79 94.07 99.07 101.73 108.4 113.96 117.29 122.85 128.41 136.74 142.3 147.86 150.64\\\">under the terms of this Agreement.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 532.7508)\\\" x=\\\"0 3.33 12.77 18.33 20.99 29.32 34.88 39.88 42.54 45.32 50.88 55.88 61.44 64.1 69.66 75.22 80.22 82.88 88.44 93.44 96.22 98.5 104.06 109.62 112.28 119.5 125.06 127.72 133.28 138.84 141.12 143.4 148.96 153.96 159.52 162.18 164.96 170.52 173.18 178.74 184.3 186.96 192.52 198.08 203.08 208.64 213.64 218.64 224.2 227.53 232.53 235.19 240.75 244.08 246.74 252.3 257.86 262.86 265.14 270.14 275.7 281.26 283.54 289.1 291.76 294.54 300.1 302.76 308.32 311.65 317.21 319.99 325.55 330.55 333.33 335.99 341.55 347.11 350.44 353.1 355.38 360.94 363.72 369.28 372.61 378.17 383.17 385.95 388.61 390.89 396.45 399.11 401.89 407.45 413.01 415.67 422.34 425.67 431.23 436.79 442.35 445.68 448.46 453.46\\\">-We may take any action we believe to be necessary or advisable to protect our interest in the Property.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 519.4324)\\\" x=\\\"0 3.33 12.77\\\">-We</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 51.4301 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 54.7506 519.4324)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 73.6422 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 76.9627 519.4324)\\\" x=\\\"0 5.56 11.12 16.68 21.68 27.24 30.02 35.58 37.86 40.14\\\">peacefully</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 122.1092 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 125.4297 519.4324)\\\" x=\\\"0 3.33 8.89 14.45 20.01 25.01 30.01 35.57 40.57\\\">repossess</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 171.0058 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 174.3263 519.4324)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 188.2277 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 191.5482 519.4324)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 229.3411 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 232.6616 519.4324)\\\" x=\\\"0 7.22 12.78 18.34 21.67 27.23 32.23 37.79\\\">wherever</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 273.7896 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 277.1101 519.4324)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 289.8933 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 293.2138 519.4324)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.1054 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 315.4259 519.4324)\\\" x=\\\"0 2.78 5.06 10.62\\\">find</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 331.6075 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 334.928 519.4324)\\\" x=\\\"0 2.28 5.06\\\">it.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 342.7649 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 346.0854 519.4324)\\\" x=\\\"0 9.44\\\">We</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 361.0854 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 364.4059 519.4324)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 378.4684 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 381.7889 519.4324)\\\" x=\\\"0 5.56 7.84 12.84\\\">give</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 400.1922 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 403.5127 519.4324)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.6358 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 422.9563 519.4324)\\\" x=\\\"0 3.33 8.89 14.45 20.01 25.01 30.01 35.57 40.57 45.57 47.85 53.41\\\">repossession</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 481.9358 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 485.2562 519.4324)\\\" x=\\\"0 5.56 11.12 13.9 16.18 21.18 26.74\\\">notices</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 516.9994 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 520.3199 519.4324)\\\" x=\\\"0 3.33 8.89 14.45 20.01 22.29 25.62 31.18\\\">required</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 557.068 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 560.3885 519.4324)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 508.1141)\\\" x=\\\"0 2.28 7.84 15.06\\\">law.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 50.9418 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 53.8695 508.1141)\\\" x=\\\"0 6.67 9.45 12.23 17.79\\\">After</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 74.9876 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 77.9153 508.1141)\\\" x=\\\"0 3.33 8.89 14.45 20.01 25.01 30.01 35.57 40.57 45.57 47.85 53.41\\\">repossession</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.8948 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 139.8224 508.1141)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 148.714 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 151.6417 508.1141)\\\" x=\\\"0 5 10.56 13.89 17.22 22.78 28.34 33.9 39.46 42.79\\\">surrender,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 197.2178 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 200.1455 508.1141)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 212.9287 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 215.8564 508.1141)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 229.9189 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 232.8465 508.1141)\\\" x=\\\"0 5.56 11.12 13.4\\\">hold</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 251.8114 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 254.739 508.1141)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 268.6404 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 271.568 508.1141)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.1393 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 315.067 508.1141)\\\" x=\\\"0 5 10.56 16.12 18.4 23.96 28.96\\\">subject</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 346.8101 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 349.7378 508.1141)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 358.0776 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 361.0053 508.1141)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 377.1283 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 380.056 508.1141)\\\" x=\\\"0 3.33 5.61 11.17 16.73\\\">right</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 399.5677 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 402.4954 508.1141)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 418.6184 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 421.5461 508.1141)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 440.4377 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 443.3653 508.1141)\\\" x=\\\"0 5.56 11.12 16.12\\\">have</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 465.0499 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 467.9776 508.1141)\\\" x=\\\"0 5.56 11.12 16.68 22.24\\\">under</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 493.5537 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 496.4814 508.1141)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64\\\">applicable</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 541.6914 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 544.619 508.1141)\\\" x=\\\"0 2.28 7.84\\\">law</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.6825 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 562.6101 508.1141)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 496.7957)\\\" x=\\\"0 5 10.56 13.89 19.45 22.11 24.89 30.45 36.01 38.67 44.23 49.79 52.57 58.13 63.69 65.97 68.75 71.41 76.97 80.3 82.96 86.29 91.85 96.85 102.41 107.41 112.97 116.3 118.96 121.74 127.3 132.86 135.52 142.19 145.52 151.08 156.64 162.2 165.53 168.31 173.31\\\">cure the default or recover the Property.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 483.4773)\\\" x=\\\"0 3.33 10 15.56 23.89 28.89 31.55 38.77 44.33 46.99 51.99 57.55 63.11 68.67 74.23 76.89 79.67 85.23 90.23 92.51 98.07 103.63 106.29 111.85 117.41 122.41 125.07 130.63 136.19 139.52 147.85 150.13 152.91 155.69 161.25 166.81 169.47 175.03 180.03 182.81 185.09 190.65 196.21 198.87 206.09 208.37 210.65 212.93 215.59 221.15 226.71 229.37 234.93 240.49 246.05 251.61 257.17 259.83 262.61 268.17 270.83 273.61 279.17 284.73 287.39 292.95 301.28 306.84 312.4 317.96 320.74 323.4 328.96 333.96 338.96 342.29 347.85 353.41 358.97 361.75 364.41 369.97 375.53 377.81 383.37 388.37 393.37 396.03 401.59 404.92 410.48 416.04 418.32 423.88 426.16 428.94 434.5 440.06 442.72 448.28 453.28 455.94 458.22 463.78 471\\\">-Sums we spend taking any permitted action will be added to the amount accrued, unless prohibited by law.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 456.8406)\\\" x=\\\"0 6.11 12.78 19.45 26.12 32.79\\\">TAXES.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 68.6664 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 72.5196 456.8406)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 90.3126 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 94.1658 456.8406)\\\" x=\\\"0 8.33 13.89 18.89\\\">must</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 115.8357 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 119.689 456.8406)\\\" x=\\\"0 2.28 10.61 18.94 24.5 30.06 32.34 37.9 40.68 46.24 48.52\\\">immediately</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 173.2144 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 177.0676 456.8406)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 193.1906 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 197.0439 456.8406)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 205.9355 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 209.7887 456.8406)\\\" x=\\\"0 3.33 8.89 11.17 19.5 25.06 30.62 33.95 38.95\\\">reimburse</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 254.3053 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 258.1585 456.8406)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 268.72 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 272.5733 456.8406)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 277.6319 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 281.4851 456.8406)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 294.2683 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 298.1215 456.8406)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 314.2446 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 318.0978 456.8406)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.7677 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 333.6209 456.8406)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 349.744 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 353.5972 456.8406)\\\" x=\\\"0 5.56 7.84\\\">all</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 363.7193 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 367.5725 456.8406)\\\" x=\\\"0 5.56 11.12 16.12 21.68 25.01 30.57 38.9 44.46 50.02\\\">government</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 420.3801 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 424.2334 456.8406)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01 30.57\\\">charges</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 459.8095 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 463.6628 456.8406)\\\" x=\\\"0 3.33 8.89 11.17 16.73 19.51 21.79 27.35\\\">relating</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 496.5778 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 500.431 456.8406)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 508.7709 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 512.6241 456.8406)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.5255 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 530.3787 456.8406)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 445.5223)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24 28.52 34.08 39.64\\\">including,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 75.5268 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 78.3573 445.5223)\\\" x=\\\"0 5.56 11.12\\\">but</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 92.2586 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 95.0891 445.5223)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 108.9905 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 111.8209 445.5223)\\\" x=\\\"0 2.28 4.56 12.89 15.17 17.95 23.51\\\">limited</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 140.8932 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 143.7237 445.5223)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 152.0635 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 154.894 445.5223)\\\" x=\\\"0 2.78 8.34 13.9 18.9\\\">fees,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 176.5737 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 179.4042 445.5223)\\\" x=\\\"0 2.78 8.34 13.34 18.9 23.9\\\">taxes,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 206.0839 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 208.9144 445.5223)\\\" x=\\\"0 2.78 5.06 10.62 16.18\\\">fines</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 230.096 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 232.9265 445.5223)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 249.6111 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 252.4416 445.5223)\\\" x=\\\"0 5 10.56 13.89 18.89 24.45 30.01 33.34 38.9 44.46 49.46\\\">surcharges,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 304.6877 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 307.5181 445.5223)\\\" x=\\\"0 7.22 12.78 18.34 21.12 26.68 32.24\\\">whether</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 343.0943 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 345.9248 445.5223)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.12 31.12 36.68\\\">assessed</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.1709 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 391.0014 445.5223)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.1244 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 404.9549 445.5223)\\\" x=\\\"0 5 10.56 16.12\\\">you,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 423.8563 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 426.6868 445.5223)\\\" x=\\\"0 5.56 10.56\\\">us,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 440.0266 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 442.8571 445.5223)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 451.7487 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 454.5792 445.5223)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.4806 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 471.311 445.5223)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 511.8823 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 514.7128 445.5223)\\\" x=\\\"0 9.44\\\">We</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.7128 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 532.5433 445.5223)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.4349 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 554.2654 445.5223)\\\" x=\\\"0 5.56 11.12\\\">add</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 434.2039)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.0014 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 50.123 434.2039)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 83.4775 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 86.5991 434.2039)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 94.9389 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 98.0606 434.2039)\\\" x=\\\"0 7.22 12.78 18.34\\\">what</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 119.1836 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 122.3052 434.2039)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 138.4283 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 141.5499 434.2039)\\\" x=\\\"0 5.56 12.78\\\">owe</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 159.8946 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 163.0162 434.2039)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 173.5777 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 176.6994 434.2039)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 181.758 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 184.8796 434.2039)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 201.0026 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 204.1242 434.2039)\\\" x=\\\"0 5.56\\\">do</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 215.2473 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 218.3689 434.2039)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 232.2703 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 235.3919 434.2039)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 251.5149 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 254.6365 434.2039)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 265.1981 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 268.3197 434.2039)\\\" x=\\\"0 7.22 12.78 18.34\\\">when</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 292.2259 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 295.3476 434.2039)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.1307 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 311.2524 434.2039)\\\" x=\\\"0 8.33 13.89 18.89\\\">make</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.7055 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.8271 434.2039)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57 36.13\\\">demand.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 377.7431 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 380.8647 434.2039)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 386.4214 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 389.543 434.2039)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 405.666 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 408.7877 434.2039)\\\" x=\\\"0 5.56\\\">do</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.9107 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 423.0323 434.2039)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 436.9337 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 440.0553 434.2039)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.1783 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 459.3 434.2039)\\\" x=\\\"0 5 10.56 15.56\\\">such</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 480.423 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 483.5446 434.2039)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57 33.35\\\">amounts</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.8991 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 525.0207 434.2039)\\\" x=\\\"0 7.22 12.78 18.34\\\">when</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 548.927 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 552.0486 434.2039)\\\" x=\\\"0 2.78 8.34 13.9\\\">they</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 422.8855)\\\" x=\\\"0 5.56 8.89\\\">are</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.5531 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 50.576 422.8855)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.12 31.12 36.68\\\">assessed</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 92.8221 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 95.845 422.8855)\\\" x=\\\"0 3.33 8.89 14.45 16.73 22.29 27.29\\\">(unless</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 128.1399 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 131.1627 422.8855)\\\" x=\\\"0 5 10.56 15.56\\\">such</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 152.2858 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 155.3087 422.8855)\\\" x=\\\"0 3.33 8.89 13.89 19.45 21.73 24.51\\\">results</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 184.8204 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 187.8433 422.8855)\\\" x=\\\"0 2.78 6.11 11.67\\\">from</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 207.8433 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.8661 422.8855)\\\" x=\\\"0 5.56 11.12\\\">our</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.3192 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 228.3421 422.8855)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.8 32.36 37.92 42.92 48.48 51.81\\\">negligence),</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 282.9417 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 285.9646 422.8855)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.0876 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 305.1105 422.8855)\\\" x=\\\"0 8.33 13.89 18.89\\\">must</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 326.7804 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 329.8033 422.8855)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 345.9264 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 348.9492 422.8855)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 365.0723 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 368.0951 422.8855)\\\" x=\\\"0 5.56 11.12 16.68 22.24 24.52 27.3 29.58 35.14\\\">penalties</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 408.2416 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 411.2645 422.8855)\\\" x=\\\"0 7.22 12.78 18.34\\\">when</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 435.1707 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 438.1936 422.8855)\\\" x=\\\"0 5.56 11.12\\\">due</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.8782 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 457.9011 422.8855)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.7927 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 469.8155 422.8855)\\\" x=\\\"0 3.33 8.89 11.17 19.5 25.06 30.62 33.95 38.95\\\">reimburse</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 514.3321 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 517.355 422.8855)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 527.9165 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 530.9394 422.8855)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 535.998 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 539.0209 422.8855)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.8041 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 554.8269 422.8855)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 411.5672)\\\" x=\\\"0 2.78 8.34 13.9 22.23\\\">them.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 58.1098 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 61.0597 411.5672)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 78.8527 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.8026 411.5672)\\\" x=\\\"0 8.33 13.89 18.89\\\">must</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 103.4725 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 106.4225 411.5672)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 122.5455 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 125.4955 411.5672)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 139.3968 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 142.3467 411.5672)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01 30.57\\\">charges</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 177.9229 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 180.8729 411.5672)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 188.7147 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 191.6646 411.5672)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 207.2847 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.2346 411.5672)\\\" x=\\\"0 5.56 11.12 14.45 20.01 25.57 28.9 34.46 40.02\\\">paragraph</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 255.8255 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 258.7754 411.5672)\\\" x=\\\"0 5.56 10.56 16.12\\\">even</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.46 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 283.4099 411.5672)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 288.4685 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 291.4184 411.5672)\\\" x=\\\"0 5 10.56 15.56\\\">such</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.5415 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 315.4914 411.5672)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01 30.57\\\">charges</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.0676 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 354.0175 411.5672)\\\" x=\\\"0 5.56 8.89\\\">are</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 368.4707 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 371.4206 411.5672)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 385.322 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 388.2719 411.5672)\\\" x=\\\"0 5.56 7.84 10.12 12.4 17.96\\\">billed</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 411.7973 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 414.7472 411.5672)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 423.0871 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 426.037 411.5672)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 436.5985 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 439.5485 411.5672)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 448.4401 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 451.39 411.5672)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 459.7298 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 462.6798 411.5672)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 478.8028 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 481.7528 411.5672)\\\" x=\\\"0 5.56 11.12 13.9 16.18\\\">until</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 500.2147 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 503.1646 411.5672)\\\" x=\\\"0 5.56 8.34 11.12 16.68\\\">after</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 523.1744 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 526.1243 411.5672)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 540.0257 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 542.9756 411.5672)\\\" x=\\\"0 5.56 11.12\\\">end</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.6602 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 562.6101 411.5672)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 400.2488)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.0014 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 49.7259 400.2488)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 98.6419 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 101.3665 400.2488)\\\" x=\\\"0 2.78 8.34 11.67 20\\\">term,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 124.1448 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 126.8693 400.2488)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 137.4308 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 140.1554 400.2488)\\\" x=\\\"0 2.28 7.84 13.4\\\">long</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 159.1202 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 161.8448 400.2488)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 172.4063 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 175.1308 400.2488)\\\" x=\\\"0 5 10.56 15.56\\\">such</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 196.2539 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 198.9784 400.2488)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01 30.57\\\">charges</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 234.5546 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 237.2791 400.2488)\\\" x=\\\"0 5.56 8.89\\\">are</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 251.7322 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 254.4568 400.2488)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64\\\">applicable</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.6667 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 302.3913 400.2488)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 310.7311 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 313.4556 400.2488)\\\" x=\\\"0 5 10.56 18.89\\\">some</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 337.9088 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 340.6333 400.2488)\\\" x=\\\"0 5.56 11.12 14.45\\\">part</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 357.8648 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 360.5893 400.2488)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 368.9291 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 371.6537 400.2488)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 385.555 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 388.2796 400.2488)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 437.1956 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 439.9201 400.2488)\\\" x=\\\"0 2.78 8.34 11.67 20\\\">term.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 462.6985 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 465.423 400.2488)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 483.216 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 485.9405 400.2488)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 500.003 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 502.7275 400.2488)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 516.6289 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 519.3534 400.2488)\\\" x=\\\"0 5.56 11.12 16.12\\\">have</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 541.038 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 543.7625 400.2488)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.1024 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 554.8269 400.2488)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 388.9305)\\\" x=\\\"0 5.56 11.12 14.45 17.11 19.39 24.95 29.95 35.51 43.84 49.4 52.06 54.84 60.4 65.4 70.96 75.96\\\">our income taxes.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 375.6121)\\\" x=\\\"0 6.11 8.89 15 20.56 27.23 30.01 32.67 42.11 47.67 50.33 53.66 59.22 62 67.56 69.84 75.4 78.06 80.84 83.12 85.9 88.18 93.74 96.4 99.18 104.74 107.4 110.18 115.74 121.3 123.96 130.63 133.96 139.52 145.08 150.64 153.97 156.75 161.75 164.41 167.19 172.75 176.08 178.74 181.52 187.08 192.64 195.3 198.08 203.64 206.97 215.3 217.96 223.52 226.3 228.96 231.74 237.3 242.86 245.52 247.8 253.36 258.92 263.92 269.48 272.14 277.7 283.26 288.82 291.48 297.04 302.6 305.38 307.66 309.94 312.6 317.6 323.16 328.72 331.38 336.94 341.94 347.5 353.06 355.34 358.67 364.23 366.89 372.45 379.67 385.23 390.79 394.12 399.12 404.68 406.96 412.52\\\">TITLE. We retain title to the Property for the term of the lease and until you acquire ownership.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 362.2937)\\\" x=\\\"0 6.67 13.34 20.01 28.34 35.01 42.23 48.34 55.01 57.79 60.45 69.89 75.45 78.11 83.67 89.23 94.23 99.79 102.45 107.45 112.45 118.01 123.57 129.13 134.69 136.97 142.53 148.09 150.75 156.31 161.87 167.43 169.71 172.49 177.49 180.15 182.93 186.26 191.82 200.15 202.81 207.81 213.37 218.93 222.26 224.92 229.92 235.48 241.04 246.04 251.04 253.32 258.88 264.44 267.1 272.66 277.66 282.66 288.22 293.78 299.34 302.12 304.9 307.56 313.12 318.12 320.78 326.34 329.67 335.23 340.23 342.51 348.07 353.63 359.19 361.85 367.41 372.97 375.25 380.81 388.03\\\">PAYMENTS. We have scheduled debits from your checking account, as provided below:</text></g><clipPath id=\\\"clip2-2\\\"><path d=\\\"M 35 328 L 574 328 L 574 345 L 35 345 L 35 328 z \\\"/></clipPath><g clip-path=\\\"url(#clip2-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.2825 332.657)\\\" x=\\\"0 7.22 15 22.22 28.89 36.11 44.44 51.11 58.33 60.99 67.66 74.88 80.99 88.21 95.99 103.21 105.99 112.1 118.77 124.88 127.66 135.44 142.66 145.32 151.43 159.21 166.43 169.09 175.76 182.43 189.1 197.43 204.1 211.32 217.43 224.1 226.76 233.43 236.21 242.88 245.54 252.21 259.43 266.65 269.31 272.64 279.31 286.53 293.75 296.41 303.63 310.3 316.97 319.75 325.86 332.53\\\">CONSUMER AUTHORIZATION FOR PAYMENTS VIA ACH (ACH DEBITS)</text></g><clipPath id=\\\"clip2-3\\\"><path d=\\\"M 35 79 L 574 79 L 574 329 L 35 329 L 35 79 z \\\"/></clipPath><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 316.3387)\\\" x=\\\"0 6.67 13.89\\\">ACH</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 61.7883 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 66.1692 316.3387)\\\" x=\\\"0 7.22 12.78 18.34 20.62 23.4\\\">Debits</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 94.5725 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 98.9533 316.3387)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 110.6233 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 115.0041 316.3387)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46 42.79 47.79\\\">Payment(s)</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 166.1272 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 170.508 316.3387)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 187.1926 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 191.5735 316.3387)\\\" x=\\\"0 7.22 12.78 18.34 23.9\\\">Range</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 221.0412 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 225.4221 316.3387)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.762 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 238.1428 316.3387)\\\" x=\\\"0 7.22 12.78 18.34 20.62 23.4 28.4\\\">Debits.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 269.3245 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 273.7053 316.3387)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.4983 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 295.8792 316.3387)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 28.35 30.63 35.63\\\">authorize</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 337.0754 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 341.4563 316.3387)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 352.0178 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 356.3987 316.3387)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 364.7385 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 369.1194 316.3387)\\\" x=\\\"0 5.56 11.12 16.68 18.96\\\">debit</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 390.8626 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 395.2434 316.3387)\\\" x=\\\"0 2.78 8.34 13.9 19.46\\\">funds</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.7063 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 424.0872 316.3387)\\\" x=\\\"0 2.78 6.11 11.67\\\">from</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 444.0872 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 448.4681 316.3387)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.9212 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 472.3021 316.3387)\\\" x=\\\"0 5.56 11.12 16.68\\\">bank</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 493.9866 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 498.3675 316.3387)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.68 32.24\\\">account</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 533.3919 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 537.7728 316.3387)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.4427 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.8236 316.3387)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.7249 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 305.0203)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 74.0295 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 77.2781 305.0203)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 85.6179 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 88.8665 305.0203)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 102.7678 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 106.0164 305.0203)\\\" x=\\\"0 2.28 7.84 13.4 18.4\\\">lease</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 129.9813 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 133.2298 305.0203)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57 38.35\\\">payments</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 176.5843 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 179.8329 305.0203)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 196.5174 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 199.766 305.0203)\\\" x=\\\"0 5.56 7.84\\\">all</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.8881 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 213.1366 305.0203)\\\" x=\\\"0 5.56 8.34 13.9 19.46\\\">other</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 235.9296 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 239.1782 305.0203)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57 33.35\\\">amounts</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 277.5327 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 280.7812 305.0203)\\\" x=\\\"0 5.56 10.56 15.56 18.89 24.45 30.01\\\">accrued</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 316.3574 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 319.606 305.0203)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 330.1675 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 333.4161 305.0203)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29 32.85\\\">provided</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.834 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 375.0826 305.0203)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 382.9244 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 386.173 305.0203)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 401.7931 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 405.0417 305.0203)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement,</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.736 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 459.9846 305.0203)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.8264 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 471.0749 305.0203)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.9763 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 488.2249 305.0203)\\\" x=\\\"0 2.78 8.34 10.62 12.9 18.46 25.68 27.96 33.52\\\">following</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 527.3118 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 530.5603 305.0203)\\\" x=\\\"0 3.33 8.89 14.45 20.01\\\">range</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 556.1365 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 559.3851 305.0203)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.7249 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 293.7019)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57 33.35\\\">amounts</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 79.0295 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.706 293.7019)\\\" x=\\\"0 5.56 11.12 13.9 19.46\\\">$1.00</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 106.7305 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 109.407 293.7019)\\\" x=\\\"0\\\">-</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 112.7371 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 115.4136 293.7019)\\\" x=\\\"0 5.56 11.12 16.68 22.24 25.02 30.58 36.14\\\">$500.00.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 154.3394 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 157.016 293.7019)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 174.8089 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 177.4855 293.7019)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 28.35 30.63 35.63\\\">authorize</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 218.6818 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 221.3583 293.7019)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.9198 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 234.5964 293.7019)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 242.9362 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 245.6128 293.7019)\\\" x=\\\"0 5.56 11.12 16.68 18.96\\\">debit</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 267.3559 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 270.0325 293.7019)\\\" x=\\\"0 2.28 7.84 12.84 17.84 23.4\\\">lesser</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 296.7659 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 299.4424 293.7019)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57 33.35\\\">amounts</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 337.7969 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 340.4735 293.7019)\\\" x=\\\"0 2.78 8.34 13.9\\\">than</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.9364 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 362.6129 293.7019)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 382.066 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 384.7426 293.7019)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57 38.35\\\">payment,</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 425.8754 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 428.5519 293.7019)\\\" x=\\\"0 5.56 11.12 16.12 21.68\\\">based</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 455.798 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 458.4746 293.7019)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 469.5976 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 472.2742 293.7019)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 491.7273 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 494.4038 293.7019)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 532.7583 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 535.4349 293.7019)\\\" x=\\\"0 5.56 7.84 12.84 15.62 21.18 24.51 29.51\\\">history.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.7249 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 282.3836)\\\" x=\\\"0 7.78 13.34 16.67 19.33 24.89 30.45 36.01 38.29 41.07 46.07 48.73 55.95 58.23 60.51 62.79 65.45 71.01 76.57 79.23 81.51 87.07 89.73 94.73 100.29 105.29 110.85 113.51 116.84 122.4 127.96 133.52 139.08 141.86 144.52 150.08 155.64 157.92 163.48 168.48 173.48 176.14 183.36 188.92 191.58 197.14 202.7 205.48 207.76 210.54 215.54 218.2 223.2 228.76 234.32\\\">Our debits will be in such range, unless we notify you.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 269.0652)\\\" x=\\\"0 6.67 13.89 21.11 23.77 30.99 36.55 42.11 44.39 47.17 52.17 54.83 57.61 63.17 66.5 69.16 76.38 81.94 84.72 90.28 93.61 99.17 104.73 110.29 112.95 119.62 125.18 130.18 138.51 144.07 149.63 152.41 155.07 161.18 166.74 172.3 175.08 177.74 184.41 189.97 195.53 198.19 203.75 209.31 212.09 217.65 223.21 226.54 228.82 233.82 239.38 242.04 247.6 252.6 255.26 258.04 263.6 266.26 271.82 277.38 282.94 285.22 288 290.66 296.22 298.88 304.44 310 312.78 318.34 323.9 326.56 329.34 334.9 338.23 340.89 346.45 352.01 357.01 359.67 363 368.56 371.34 376.9 380.23 385.79 391.35 396.91 399.57 405.13 410.69 415.69 424.02 429.58 435.14 437.92 440.58 443.36 448.92 454.48\\\">ACH Debits for Returned Payment Fee. You authorize us to debit $ 20.00 for an* D E M O *payment fee.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 255.7469)\\\" x=\\\"0 7.22 12.78 15.56 17.84 22.84\\\">Notice</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 69.0783 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 72.6034 255.7469)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 80.9433 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 84.4684 255.7469)\\\" x=\\\"0 6.67 12.23 15.56 17.84 23.4 26.18 28.46 34.02 39.58\\\">Variation.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 126.8317 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 130.3568 255.7469)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 135.9135 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 139.4386 255.7469)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 145.0001 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.5253 255.7469)\\\" x=\\\"0 5.56 11.12 16.68 18.96\\\">debit</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 170.2684 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 173.7935 255.7469)\\\" x=\\\"0 2.78 8.34 10.62 12.9\\\">falls</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 191.6939 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 195.2191 255.7469)\\\" x=\\\"0 5.56 11.12 13.9 18.9 21.18 26.74\\\">outside</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 227.5238 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 231.0489 255.7469)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 244.9503 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 248.4754 255.7469)\\\" x=\\\"0 5 10.56 16.12 21.12 23.4 26.18 28.46 34.02\\\">specified</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 288.0603 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 291.5855 255.7469)\\\" x=\\\"0 3.33 8.89 14.45 20.01 25.57\\\">range,</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.94 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 323.4651 255.7469)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 336.2483 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 339.7734 255.7469)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 353.8359 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 357.3611 255.7469)\\\" x=\\\"0 5.56 13.89 19.45 21.73\\\">email</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 381.3747 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 384.8999 255.7469)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 401.0229 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 404.548 255.7469)\\\" x=\\\"0 5.56 11.12 13.9 16.18 21.18\\\">notice</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 431.2912 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 434.8163 255.7469)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 443.1562 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 446.6813 255.7469)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 460.5827 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 464.1078 255.7469)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 497.4623 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 500.9874 255.7469)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 517.672 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 521.1971 255.7469)\\\" x=\\\"0 5.56 11.12 13.9\\\">date</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 540.66 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 544.1852 255.7469)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 555.3082 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 558.8333 255.7469)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.7249 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 244.4285)\\\" x=\\\"0 5.56 8.34 11.12 16.68 20.01 22.67 29.89 35.45 37.73 42.73 48.29 50.95 58.17 63.73 66.39 73.61 75.89 78.17 80.45 83.11 88.67 94.23 99.79 102.07 104.85 107.51 112.51 118.07 123.07 128.63 131.29 136.85 145.18 150.74 156.3 161.86 164.64 167.42 170.08 176.75 182.31 187.87 190.53 197.75 200.03 202.31 204.59 207.25 212.81 218.37 221.15 223.81 229.37 232.15 234.81 237.09 242.65 248.21 253.21 255.99 258.65 264.21 269.77 272.43 277.43 282.99 285.27 290.83 296.39 301.95 307.51 310.84 313.5 319.06 324.62 329.62 334.62 336.53 339.19 344.75 350.31 353.09 355.37 360.37 365.93\\\">after which we will debit such amount. You will get at least 10 calendar days&apos; notice.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 231.1102)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68\\\">Payment</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 80.1379 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 85.2907 231.1102)\\\" x=\\\"0 7.22 12.78 15.56 21.12 26.12\\\">Dates.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 114.192 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 119.3448 231.1102)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 137.1377 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 142.2905 231.1102)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 28.35 30.63 35.63\\\">authorize</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 183.4868 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 188.6395 231.1102)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.74\\\">debits</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 215.3827 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 220.5354 231.1102)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.6585 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 236.8113 231.1102)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.7028 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 250.8556 231.1102)\\\" x=\\\"0 5.56 8.34 11.12 16.68\\\">after</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 270.8654 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 276.0181 231.1102)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 289.9195 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 295.0722 231.1102)\\\" x=\\\"0 5.56 11.12 13.9 19.46\\\">dates</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.5351 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 324.6879 231.1102)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 336.3578 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 341.5106 231.1102)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 379.865 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 385.0178 231.1102)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29 32.85\\\">provided</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 423.4358 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 428.5885 231.1102)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 436.4303 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 441.5831 231.1102)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 455.4844 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 460.6372 231.1102)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement,</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.3315 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 517.4843 231.1102)\\\" x=\\\"0 5.56 11.12 13.4 18.96 23.96\\\">unless</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 546.4491 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 551.6019 231.1102)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.7249 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 219.7918)\\\" x=\\\"0 5.56 8.34 13.9 19.46 22.79 30.01 32.29 37.29\\\">otherwise</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 83.5315 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 86.8927 219.7918)\\\" x=\\\"0 5.56 7.84 11.17 16.73 21.73\\\">direct</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 111.4044 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 114.7656 219.7918)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 125.3271 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 128.6884 219.7918)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.5302 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 139.8914 219.7918)\\\" x=\\\"0 7.22 10.55 12.83 15.61 17.89 23.45 29.01\\\">writing.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 171.6834 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 175.0446 219.7918)\\\" x=\\\"0 9.44\\\">We</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 190.0446 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 193.4058 219.7918)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 207.4683 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.8296 219.7918)\\\" x=\\\"0 5.56 11.12 16.68 18.96\\\">debit</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 232.5727 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 235.9339 219.7918)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.057 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 250.4182 219.7918)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.3098 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 262.671 219.7918)\\\" x=\\\"0 5.56 8.34 11.12 16.68\\\">after</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 282.6808 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 286.0421 219.7918)\\\" x=\\\"0 5.56 10.56 16.12 19.45\\\">every</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 310.4952 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 313.8564 219.7918)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 352.2109 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 355.5721 219.7918)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29 32.85\\\">provided</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.9901 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 397.3513 219.7918)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 405.1931 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 408.5543 219.7918)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 424.1745 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 427.5357 219.7918)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement;</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 479.23 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 482.5912 219.7918)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29 32.85 38.41\\\">provided,</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 523.7875 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 527.1488 219.7918)\\\" x=\\\"0 5.56 11.12 18.34 23.9 28.9 34.46 37.79\\\">however,</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.7249 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 208.4734)\\\" x=\\\"0 2.78 8.34 13.9\\\">that</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 57.3547 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 60.5776 208.4734)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 73.3608 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 76.5836 208.4734)\\\" x=\\\"0 3.33 8.89 13.89 19.45 22.78 27.78\\\">reserve</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 109.9284 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 113.1512 208.4734)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 127.0526 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 130.2755 208.4734)\\\" x=\\\"0 3.33 5.61 11.17 16.73\\\">right</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 149.7872 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 153.01 208.4734)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 161.3499 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 164.5728 208.4734)\\\" x=\\\"0 5.56 11.12 16.68 18.96\\\">debit</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 186.3159 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 189.5388 208.4734)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 200.6618 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 203.8847 208.4734)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 217.7861 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 221.0089 208.4734)\\\" x=\\\"0 5.56 11.12 16.68 21.68 23.96 29.52\\\">banking</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.0968 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 259.3197 208.4734)\\\" x=\\\"0 5.56 11.12\\\">day</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.4427 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 278.6656 208.4734)\\\" x=\\\"0 2.28 10.61 18.94 24.5 30.06 32.34 37.9 40.68 46.24 48.52\\\">immediately</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 332.191 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 335.4139 208.4734)\\\" x=\\\"0 5.56 8.89 14.45 19.45 25.01 30.57 32.85 38.41\\\">preceding</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 379.3934 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 382.6162 208.4734)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.0694 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 405.2922 208.4734)\\\" x=\\\"0 3.33 8.89 14.45 20.01 22.29 27.85\\\">regular</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 436.4787 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 439.7016 208.4734)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 478.0561 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 481.279 208.4734)\\\" x=\\\"0 5.56 11.12 13.9\\\">date</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 500.7419 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 503.9647 208.4734)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.0233 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 512.2462 208.4734)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.1476 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 529.3704 208.4734)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.7249 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 197.1551)\\\" x=\\\"0 5.56 11.12 13.9 19.46 22.12 24.9 30.46 32.74 35.02 40.02 42.68 48.24 53.8 56.46 62.02 64.68 70.24 75.8 81.36 84.69 90.25 95.81 101.37 106.37 108.65 114.21 119.77 122.43 127.99 133.55 138.55 141.21 144.54 146.82 149.6 155.16 157.94 160.72 163.38 168.94 171.6 177.16 182.72 185 187.28 192.84 198.4 203.4 206.06 211.62 214.95 217.61 224.83 230.39 235.95 240.95 246.51 252.07 257.63 260.29 265.85 271.41 276.41 279.74\\\">date falls on a non-banking day (i.e., a holiday or weekend day).</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 183.8367)\\\" x=\\\"0 7.22 12.78 16.11 19.44 25 30 32.78 35.06 40.62 46.18 51.18 53.96 56.62 63.29 68.85 74.41 77.07 82.63 88.19 90.97 96.53 102.09 105.42 107.7 112.7 118.26 120.92 126.48 131.48 134.14 136.92 142.48 145.14 150.7 156.26 161.82 164.1 166.88 169.54 175.1 180.66 186.22 188.88 193.88 197.21 202.77 208.33 210.61 213.39 216.05 221.05 226.61 232.17 235.5 238.16 243.72 248.72 253.72 259.28 264.84 270.4 273.18 275.84 278.62 284.18 286.84 291.84 297.4 300.73 304.06 309.62 314.62 317.4 320.06 325.62 328.95 332.28 337.84 341.17 346.17\\\">Corrections. You authorize us to debit and credit your* D E M O * correct errors.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 170.5184)\\\" x=\\\"0 6.67 9.45 12.23 17.79 22.79 25.57 27.85 32.85 38.41 41.07 48.29 53.85 56.63 62.19 64.97 67.63 73.74 79.3 84.86 87.52 90.3 93.63 99.19 104.75 109.75 115.31 120.31 123.09 125.37 130.93 136.49 138.4 143.4 146.06 151.62 154.4 157.18 162.74 167.74 170.52 172.8 177.8 183.36 186.02 191.58 197.14 199.92 205.48 208.14 210.42 215.42 218.08 220.86 226.42 231.98 234.64 241.31 246.87 250.2 255.76 261.32 269.65 275.21 280.77 283.55 286.21 293.43 298.99 301.77 307.33 309.99 315.55 318.88 324.44 329.44 331.72 337.28 342.84 348.4 351.06 356.62 362.18 367.74 372.74 378.3\\\">Effective Date. The transaction&apos;s effective date is the Agreement Date provided above.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 157.2)\\\" x=\\\"0 6.67 11.67 16.67 22.23 27.79 33.35 36.13 38.79 44.35 49.91 55.47 58.13 65.35 70.91 76.47 79.25 81.53 87.09 92.65 95.43 98.09 104.76 110.32 115.88 118.54 124.1 129.66 132.44 138 143.56 146.89 149.17 154.17 159.73 162.39 165.17 170.73 176.29 178.95 184.51 190.07 195.63 197.91 200.69 205.69 208.35 211.13 216.69 219.35 222.13 227.69 229.97 234.97 237.63 243.19 248.19 253.19 258.75 264.31 269.87 272.65 275.43 278.09 285.31 290.87 299.2 304.76 310.32 313.65 316.31 320.2 324.09 327.98 331.87 335.76 341.32 346.88 352.44 358 360.66 367.88 373.44 379 381.78 384.06 389.62 395.18 397.84 405.06 410.62 418.95 424.51 430.07 433.4 436.06 439.95 443.84 447.73 451.62 455.51 461.07 466.63 472.19 477.75\\\">Account and Routing. You authorize the debits to this account: Number *****3968 Routing Number *****1451.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 143.8816)\\\" x=\\\"0 7.22 12.78 18.34 23.9 29.46\\\">Change</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 75.7043 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 78.8745 143.8816)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 86.7163 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 89.8865 143.8816)\\\" x=\\\"0 6.67 11.67 16.67 22.23 27.79 33.35\\\">Account</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 126.0193 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 129.1895 143.8816)\\\" x=\\\"0 2.78 8.34 11.12 16.68 20.01 28.34 33.9 36.68 38.96 44.52 50.08\\\">Information:</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 182.0508 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 185.221 143.8816)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 203.0139 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 206.1841 143.8816)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 28.35 30.63 35.63\\\">authorize</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.3804 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 250.5506 143.8816)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 261.1121 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 264.2823 143.8816)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 272.6222 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 275.7923 143.8816)\\\" x=\\\"0 5.56 11.12 16.68 18.96\\\">debit</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 297.5355 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 300.7057 143.8816)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 316.8287 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 319.9989 143.8816)\\\" x=\\\"0 5.56 11.12\\\">new</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.3437 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 341.5138 143.8816)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.68 32.24\\\">account</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 376.5382 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 379.7084 143.8816)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 395.8315 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 399.0017 143.8816)\\\" x=\\\"0 5.56 7.84 12.84\\\">give</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 417.405 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 420.5752 143.8816)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 431.1367 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 434.3069 143.8816)\\\" x=\\\"0 2.28 7.84 10.62 16.18 19.51 27.84 33.4 36.18 38.46 44.02\\\">information</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 483.8918 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 487.062 143.8816)\\\" x=\\\"0 2.78 8.34 11.67\\\">for.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.5103 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 504.6805 143.8816)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 510.2371 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 513.4073 143.8816)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.5303 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 532.7005 143.8816)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.68 32.24\\\">account</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.7249 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 132.5633)\\\" x=\\\"0 2.28 7.28 9.94 13.27 18.83 21.11 26.67 31.67 34.45 40.01 45.57 48.23 55.45 61.01 63.67 70.89 73.17 75.45 77.73 80.39 85.95 91.51 97.07 99.35 102.13 104.79 110.35 115.91 120.91 123.57 129.13 134.13 139.13 144.69 150.25 155.81 158.59 161.25 168.47 174.03 176.69 182.25 187.81 192.81 198.37 201.03 206.59 212.15 214.81 217.59 219.87 222.15 227.71\\\">is re* D E M O *ill debit any account we have on file.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 119.2449)\\\" x=\\\"0 6.67 9.45 15.01 20.57 23.23 29.9 35.46 40.46 48.79 54.35 59.91 62.69 67.69 70.47 73.13 79.8 85.36 90.92 93.58 101.91 107.47 112.47 115.13 120.13 122.91 128.47 134.03 136.69 142.25 147.81 152.81 161.14 166.7 172.26 175.04 177.7 183.26 186.04 188.7 190.98 196.54 202.1 207.1 209.88 212.54 215.32 220.88 224.21 229.77 235.33 237.99 243.55 249.11 254.67 259.67 261.95 267.51 273.07 275.73 281.29 286.85 291.85 296.85 299.51 305.07 310.63 313.41 318.97 322.3 327.86 330.52 336.08 338.74 344.3 349.86 354.86 363.19 368.75 374.31 377.09\\\">Stop Payments. You may stop payment at least three banking days before a payment.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 105.9266)\\\" x=\\\"0 7.22 12.78 17.78 23.34 28.34 33.9 36.68 38.96 44.52 50.08\\\">Revocation,</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 93.5412 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 97.2277 105.9266)\\\" x=\\\"0 7.22 12.78 18.34 23.34 28.9 31.18 33.46 39.02 41.8 44.08 49.64 55.2\\\">Cancellation,</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 155.216 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 158.9024 105.9266)\\\" x=\\\"0 6.11 11.67 15 23.33 25.61 31.17 36.73 39.51 41.79 47.35 52.91\\\">Termination.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 214.5958 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 218.2823 105.9266)\\\" x=\\\"0 6.11 11.67 13.95\\\">This</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 237.2325 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 240.9189 105.9266)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 28.35 30.63 35.63 41.19 43.97 46.25 51.81\\\">authorization</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 298.2968 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 301.9833 105.9266)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.8\\\">applies</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 333.7899 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 337.4764 105.9266)\\\" x=\\\"0 5.56 11.12 13.9 16.18\\\">until</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.9383 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 359.6248 105.9266)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.7478 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 379.4343 105.9266)\\\" x=\\\"0 3.33 8.89 13.89 19.45 24.45\\\">revoke</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 409.449 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 413.1354 105.9266)\\\" x=\\\"0 2.28 5.06\\\">it.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 420.9723 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 424.6588 105.9266)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 442.4518 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 446.1382 105.9266)\\\" x=\\\"0 8.33 13.89 18.89\\\">must</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.8082 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 471.4946 105.9266)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29\\\">provide</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 504.3511 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 508.0375 105.9266)\\\" x=\\\"0 5.56\\\">at</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 516.3774 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 520.0639 105.9266)\\\" x=\\\"0 2.28 7.84 13.4 18.4\\\">least</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 541.2455 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 544.932 105.9266)\\\" x=\\\"0 2.78 8.34 11.67 17.23\\\">three</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.7249 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 94.6082)\\\" x=\\\"0 5.56 11.12 16.12 21.12 23.03 25.69 31.25 36.81 39.59 41.87 46.87 52.43 55.09 57.87 63.43 66.09 71.09 76.65 82.21 87.21 92.77 95.05 97.83 100.49 107.71 113.27 115.55 117.83 120.49 126.05 128.83 131.49 134.82 140.38 145.94 151.5 154.83 157.49 163.05 168.61 174.17 177.5 183.06 188.62 194.18 199.74 202.4 207.96 210.74 213.4 215.68 221.24 226.8 231.8 234.58 237.24 240.02 245.58 248.91 254.47 260.03 262.69 268.25 273.81 278.81 283.81 286.47 292.03 297.59 300.37 305.93 309.26 314.82 317.48 320.26 325.82 331.38 334.04 339.6 342.93 348.49 354.05 359.61 364.61 370.17 375.73 378.39 383.95 386.73 389.51 395.07 400.07 402.85 405.13 410.13 415.69 418.35 423.91 429.47 432.25 437.81 440.47 446.03 448.81 451.47 454.25 459.81 465.37 468.03 470.81 476.37 479.7 488.03 490.31 495.87 501.43 504.21 506.49 512.05 517.61\\\">days&apos; notice to cancel. Call at (100) 000-0006 at least three days before the proposed effective date of the termination.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 81.2898)\\\" x=\\\"0 7.78 10.56 16.12 21.68 25.01 27.67 34.89 40.45 46.01 51.57 57.13 62.69 67.69 70.47 73.13 80.35 85.91 88.69 90.97 93.75 98.75 101.41 106.97 111.97 114.63 120.19 122.97 125.63 127.91 133.47 139.03 144.03 146.81 149.47 152.25 154.53 159.53 165.09 167.75 173.31 178.87 183.87 186.15 191.71 197.27 202.27 207.27 209.93 215.49 221.05 226.05 231.05 233.71 239.27 244.83 247.61 253.17 256.5 262.06 264.72 267.5 273.06 278.62 281.28 286.84 292.4 297.4 300.18 302.84 308.4 310.68 312.96 315.24 317.52 323.08 328.64 331.3 336.86 342.42 345.2 350.76 353.42 355.7 358.48 361.14 366.14 371.7 377.26 380.59 383.25 388.81 393.81 398.81 404.37 409.93 415.49 418.27 420.93 423.21 428.77 431.55 437.11 440.44 448.77 454.33 457.11 459.39 464.95 470.51 473.17 478.17 483.73 489.29 494.85 500.41 505.97 510.97\\\">Other Changes. Notify us at least five business days before the next billing date if your account information changes.</text></g><clipPath id=\\\"clip2-4\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip2-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.775 345.3758 L 573.625 345.3758 L 573.625 344.3758 L 34.775 344.3758 L 34.775 345.3758 z \\\"/><path clip-path=\\\"url(#clip2-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.625 344.3758 L 573.625 344.3758 L 573.625 329.0574 L 572.625 329.0574 L 572.625 344.3758 z \\\"/><path clip-path=\\\"url(#clip2-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.775 344.3758 L 35.775 344.3758 L 35.775 329.0574 L 34.775 329.0574 L 34.775 344.3758 z \\\"/><path clip-path=\\\"url(#clip2-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.775 329.0574 L 573.625 329.0574 L 573.625 328.0574 L 34.775 328.0574 L 34.775 329.0574 z \\\"/><path clip-path=\\\"url(#clip2-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.775 79.6902 L 573.625 79.6902 L 573.625 78.6902 L 34.775 78.6902 L 34.775 79.6902 z \\\"/><path clip-path=\\\"url(#clip2-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.625 328.0574 L 573.625 328.0574 L 573.625 79.6902 L 572.625 79.6902 L 572.625 328.0574 z \\\"/><path clip-path=\\\"url(#clip2-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.775 328.0574 L 35.775 328.0574 L 35.775 79.6902 L 34.775 79.6902 L 34.775 328.0574 z \\\"/><g clip-path=\\\"url(#clip2-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 36.5264)\\\" x=\\\"0 6.498 11.997 14.391 16.785 21.789 26.793 29.295 34.299 39.303 44.307 504 506.3906 508.7812 511.1719 513.5625 515.9531 518.3438 520.7344 523.125 525.5156\\\">UT  07/2019          </text></g><g clip-path=\\\"url(#clip2-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 26.3398)\\\" x=\\\"0 6.003 11.007 16.011 21.015\\\">Page </text></g><g clip-path=\\\"url(#clip2-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 55.8097 26.3398)\\\" x=\\\"0\\\">3</text></g><g clip-path=\\\"url(#clip2-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.815 26.3398)\\\" x=\\\"0 2.394 7.398 9.9\\\"> of </text></g><g clip-path=\\\"url(#clip2-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 73.1021 26.3398)\\\" x=\\\"0\\\">7</text></g><g clip-path=\\\"url(#clip2-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#d9d9d9\\\" style=\\\"font-family:f2-0; font-size:54pt; white-space:pre\\\" transform=\\\"matrix(0.707 0.707 0.707 -0.707 135.6027 198.5094)\\\" x=\\\"0 56.016 96.048 136.08 176.112 216.144 236.16 284.184 324.216 344.232 364.248 416.232 456.264 480.24\\\">Qoppa Software</text></g><g clip-path=\\\"url(#clip2-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#002ba6\\\" style=\\\"font-family:f2-0; font-size:9pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.932 772)\\\" x=\\\"0 9.336 16.008 22.68 29.352 36.024 39.36 47.364 54.036 57.372 60.708 69.372 76.044 80.04 86.712 90.048 94.044 97.38 104.712 111.384 115.38 118.716 126.72 132.72 139.392 142.056 148.728 155.4 158.736 161.4 168.072 174.744 178.08 187.416 194.088 196.752 202.752 206.088 210.084 213.42 220.092 223.428 226.764 233.436 239.436 242.772 246.108 249.444 258.108 266.772 275.436 278.772 285.444 292.116 298.788 305.46 312.132 315.468 321.468 328.14\\\">Qoppa Software - For Evaluation Only - https://www.qoppa.com</text></g></g></svg></svg></g></svg><br>\\n<?xml version='1.0' encoding='UTF-8'?><svg id=\\\"qoppa_document\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" version=\\\"1.1\\\" xmlns=\\\"http://www.w3.org/2000/svg\\\" xmlns:xlink=\\\"http://www.w3.org/1999/xlink\\\"><!-- jPDFWeb v2019R1.03 - Demo Version --><style>title p { display: block; }</style><g id=\\\"qoppa_viewxform\\\" transform=\\\"matrix(1 0 0 1 0 0)\\\"><style type=\\\"text/css\\\">@font-face {font-family:f3-0;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f3-1;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f3-2;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}</style><svg id=\\\"qoppa_page_p3\\\" class=\\\"qoppa_page\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\"><rect class=\\\"qoppa_pageborder\\\" x=\\\"0.5pt\\\" y=\\\"0.5pt\\\" width=\\\"611pt\\\" height=\\\"791pt\\\" fill=\\\"none\\\" /><svg class=\\\"qoppa_pagecontents\\\" x=\\\"0pt\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" viewBox=\\\"0 0 612 792\\\" ><g class=\\\"qoppa_contentstream\\\" transform=\\\"matrix(1 0 0 -1 0 792)\\\" fill=\\\"black\\\" stroke=\\\"black\\\" stroke-width=\\\"1\\\" stroke-linecap=\\\"butt\\\" stroke-linejoin=\\\"miter\\\" stroke-miterlimit=\\\"10\\\"><clipPath id=\\\"clip3-1\\\"><path d=\\\"M 35 730 L 574 730 L 574 770 L 35 770 L 35 730 z \\\"/></clipPath><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 757.4812)\\\" x=\\\"0 6.6699 11.6699 16.6699 22.2314 27.793 35.0146 37.2949 42.8565 48.418 53.9795 62.3096 67.8711 73.4326 76.2109 81.2109\\\">Acknowledgments.</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 124.6643 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 127.3205 757.4812)\\\" x=\\\"0 6.6699 12.2314\\\">You</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 145.1135 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 147.7697 757.4812)\\\" x=\\\"0 3.3301 8.8916 14.4531\\\">read</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 167.7844 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 170.4406 757.4812)\\\" x=\\\"0 2.7783 8.3398 10.6201\\\">this</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 186.0607 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 188.717 757.4812)\\\" x=\\\"0 5.5615 11.1231 13.9014 19.4629 25.0244 28.3545 30.6348 35.6348 41.1963 43.9746 46.2549 51.8164\\\">authorization</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 246.0949 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 248.7512 757.4812)\\\" x=\\\"0 2.2803\\\">in</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.593 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 259.2492 757.4812)\\\" x=\\\"0 5.5615 8.8916 11.1719 16.7334 19.5117\\\">print,</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.5393 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 284.1955 757.4812)\\\" x=\\\"0 5.5615\\\">on</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 295.3186 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 297.9748 757.4812)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 303.5363 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 306.1926 757.4812)\\\" x=\\\"0 5 10.5615 18.8916 24.4531 30.0146 32.793 38.3545\\\">computer</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 347.8771 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 350.5334 757.4812)\\\" x=\\\"0 5 10 13.3301 18.8916 24.4531 30.0147\\\">screen,</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.3264 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 385.9826 757.4812)\\\" x=\\\"0 5.5615\\\">or</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 394.8742 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 397.5305 757.4812)\\\" x=\\\"0 5.5615 8.3398 13.9014 19.4629\\\">other</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 420.3234 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 422.9797 757.4812)\\\" x=\\\"0 5 7.2803 12.2803 17.8418 23.4033\\\">visual</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 448.6633 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 451.3195 757.4812)\\\" x=\\\"0 5.5615 7.8418 12.8418 18.4033 20.6836 26.2451 31.2451\\\">display.</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 485.343 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 487.9992 757.4812)\\\" x=\\\"0 6.6699 12.2314\\\">You</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 505.7922 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 508.4484 757.4812)\\\" x=\\\"0 5.5615 10.5615 15.5615 21.1231 26.6846 33.9062 36.1865 41.7481 47.3096 52.8711\\\">acknowledge</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 566.8811 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 746.1629)\\\" x=\\\"0 5.5615 11.1231\\\">and</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 57.3596 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 60.0158 746.1629)\\\" x=\\\"0 5.5615 11.123 14.4531 20.0146\\\">agree</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 85.592 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 88.2482 746.1629)\\\" x=\\\"0 2.7783\\\">to</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 96.5881 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 99.2443 746.1629)\\\" x=\\\"0 2.7783 8.3398\\\">the</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 113.1457 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 115.802 746.1629)\\\" x=\\\"0 2.7783 8.3398 10.6201 12.9004 18.4619 25.6836 27.9639 33.5254 39.0869\\\">following:</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 157.6672 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 160.3234 746.1629)\\\" x=\\\"0 2.7783 8.3398 10.6201\\\">this</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 175.9436 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 178.5998 746.1629)\\\" x=\\\"0 6.6699 13.8916\\\">ACH</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 199.7131 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 202.0693 746.1629)\\\" x=\\\"0 7.2217 12.7832 18.3447 20.625\\\">Debit</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.4727 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 227.8289 746.1629)\\\" x=\\\"0 6.6699 12.2314 15.0098 20.5713 26.1328 29.4629 31.7432 36.7432 42.3047 45.083 47.3633 52.9248\\\">Authorization</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 286.3152 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 288.6715 746.1629)\\\" x=\\\"0 2.2803\\\">is</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 295.9518 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 298.308 746.1629)\\\" x=\\\"0 5.5615 11.123\\\">not</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.2094 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 314.5656 746.1629)\\\" x=\\\"0 5.5615\\\">an</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 325.6887 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 328.0449 746.1629)\\\" x=\\\"0 2.2803 7.8418 12.8418 15.6201 18.9502 24.5117 32.8418 38.4033 43.9648\\\">instrument</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 374.7881 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 377.1443 746.1629)\\\" x=\\\"0 5.5615 11.123 16.123 21.6846 25.0146 30.5762 36.1377\\\">governed</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 418.8436 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 421.1998 746.1629)\\\" x=\\\"0 5.5615\\\">by</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 431.7613 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 434.1176 746.1629)\\\" x=\\\"0 6.6699 10 12.7783 15.0586 20.0586 22.3389\\\">Article</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 462.018 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 464.3742 746.1629)\\\" x=\\\"0\\\">3</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 469.9357 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 472.292 746.1629)\\\" x=\\\"0 5.5615\\\">of</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 480.6318 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 482.9881 746.1629)\\\" x=\\\"0 2.7783 8.3398\\\">the</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 496.8895 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 499.2457 746.1629)\\\" x=\\\"0 7.2217 12.7832 15.0635 17.8418 23.4033 26.7334\\\">Uniform</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 734.8445)\\\" x=\\\"0 7.2217 12.7832 21.1133 29.4434 35.0049 38.335 43.335 45.6152 51.1768\\\">Commercial</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 94.132 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 96.4883 734.8445)\\\" x=\\\"0 7.2217 12.7832 18.3447 23.9062\\\">Code.</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 123.1728 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 125.5291 734.8445)\\\" x=\\\"0 6.6699 10 12.2803 17.8418\\\">Print</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.1492 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.5055 734.8445)\\\" x=\\\"0 5.5615 11.1231\\\">and</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 165.19 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 167.5463 734.8445)\\\" x=\\\"0 3.3301 8.8916 11.6699 17.2314 19.5117\\\">retain</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 192.6195 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 194.9758 734.8445)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 200.5373 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 202.8936 734.8445)\\\" x=\\\"0 5.5615 11.123 14.4531\\\">hard</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 222.9082 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 225.2645 734.8445)\\\" x=\\\"0 5 10.5615 16.123\\\">copy</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 246.3875 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 248.7437 734.8445)\\\" x=\\\"0 5.5615\\\">or</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.6353 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 259.9916 734.8445)\\\" x=\\\"0 5.5615 7.8418 13.4033 18.4033 21.1816 24.5117 30.0733 35.6348 37.915\\\">electronic</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.9066 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 305.5629 734.8445)\\\" x=\\\"0 5 10.5615 16.123\\\">copy</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 326.6859 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 329.3422 734.8445)\\\" x=\\\"0 5.5615\\\">of</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 337.682 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 340.3383 734.8445)\\\" x=\\\"0 2.7783 8.3398 10.6201\\\">this</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.9584 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 358.6147 734.8445)\\\" x=\\\"0 6.6699 13.8916\\\">ACH</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 379.7279 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 382.0842 734.8445)\\\" x=\\\"0 7.2217 12.7832 18.3447 20.625\\\">Debit</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 405.4875 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.8438 734.8445)\\\" x=\\\"0 6.6699 12.2314 15.0098 20.5713 26.1328 29.4629 31.7432 36.7432 42.3047 45.083 47.3633 52.9248 58.4863\\\">Authorization.</text></g><clipPath id=\\\"clip3-2\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip3-2)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.775 770.2 L 573.625 770.2 L 573.625 769.2 L 34.775 769.2 L 34.775 770.2 z \\\"/><path clip-path=\\\"url(#clip3-2)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.775 731.2449 L 573.625 731.2449 L 573.625 730.2449 L 34.775 730.2449 L 34.775 731.2449 z \\\"/><path clip-path=\\\"url(#clip3-2)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.625 769.2 L 573.625 769.2 L 573.625 731.2449 L 572.625 731.2449 L 572.625 769.2 z \\\"/><path clip-path=\\\"url(#clip3-2)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.775 769.2 L 35.775 769.2 L 35.775 731.2449 L 34.775 731.2449 L 34.775 769.2 z \\\"/><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 718.5262)\\\" x=\\\"0 7.22 15 22.22 25.55 34.99 41.66 44.44 51.11 57.78 65 67.78 70.44 79.88 85.44 88.1 93.66 99.22 101.88 107.44 113 115.78 118.44 125.66 131.22 133.5 138.5 144.06 146.72 152.28 157.84 161.17 163.83 167.16 169.44 175 180.56 183.34 188.34 191 196.56 199.89 202.55 205.88 211.44 219.77 225.33 230.89 233.17 238.73 243.73 246.39 251.95 257.51 263.07 268.63 271.96 274.62 277.4 282.96 285.24 290.24 292.9 299.57 305.13 308.46 314.02 319.58 327.91 333.47 339.03 341.81 344.47 350.03 355.03 357.69 360.47 366.03 368.31 370.59 372.87 378.43 383.99 386.65 389.43 394.99 397.65 403.21 408.21 413.77 417.1 422.1 424.38 429.38 434.94 437.6 440.38 445.94 451.5 459.83 462.49 468.05 470.83 473.49 479.05 484.61 489.61 492.27 495.05 497.33 505.66 511.22\\\">NON-WAIVER. We do not waive our rights or remedies under this Agreement by failing to exercise them at any time.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 705.2078)\\\" x=\\\"0 7.22 15 23.33 31.66 38.88 46.1 48.88 56.1 62.77 68.88 71.66 78.88 86.66 89.32 98.76 101.54 107.65 114.87 117.53 124.2 131.98 139.2 141.98 144.64 151.86 158.53 164.09 169.65 172.31 179.53 186.2 193.42 201.2 208.42 215.64 218.42 225.64 233.42 236.2 238.86 242.19 247.75 253.31 258.87 262.2 264.86 270.42 275.98 281.54 284.87 290.43 295.99 301.55\\\">COMMUNICATING WITH YOU; CALL RECORDING: (100) 000-0006</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 691.8895)\\\" x=\\\"0 6.67 13.89 20 22.78 30\\\">ENTIRE</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 69.7699 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 74.2589 691.8895)\\\" x=\\\"0 6.67 14.45 21.67 28.34 35.01 43.34 50.01 57.23 63.34\\\">AGREEMENT,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 140.377 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 144.866 691.8895)\\\" x=\\\"0 7.22\\\">NO</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 159.866 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 164.3549 691.8895)\\\" x=\\\"0 6.67 13.89 21.11 23.89 30 32.78 40.56 47.78 54.45\\\">ADDITIONAL</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 224.3647 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 228.8536 691.8895)\\\" x=\\\"0 6.67 13.89 21.67 30 32.78 39.45 46.12 52.79\\\">PROMISES,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 284.42 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 288.9089 691.8895)\\\" x=\\\"0 9.44 16.66 19.44 25.55 31.66 38.33\\\">WRITTEN</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 334.4558 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.9447 691.8895)\\\" x=\\\"0 6.67 13.89\\\">AND</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 360.058 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 364.547 691.8895)\\\" x=\\\"0 6.67 9.45 17.23 24.45 31.12\\\">SIGNED</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.8868 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.3757 691.8895)\\\" x=\\\"0 7.22 14.44 21.11 28.33 36.11 42.78\\\">CHANGES</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.8289 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 461.3178 691.8895)\\\" x=\\\"0 7.78 15 20.56 27.23\\\">ONLY.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 491.3276 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 495.8165 691.8895)\\\" x=\\\"0 6.11 11.67 13.95\\\">This</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 514.7667 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 519.2556 691.8895)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 680.5711)\\\" x=\\\"0 2.78 8.34 13.9 19.46 22.24 27.8 33.36\\\">together</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 69.7943 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 72.8324 680.5711)\\\" x=\\\"0 7.22 9.5 12.28\\\">with</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 90.6742 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 93.7124 680.5711)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 107.6137 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 110.6518 680.5711)\\\" x=\\\"0 5.56 8.34 13.9 19.46\\\">other</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 133.4448 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 136.4829 680.5711)\\\" x=\\\"0 5.56 11.12 16.12 21.68 30.01 35.57 41.13 43.91\\\">documents</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 185.3989 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 188.437 680.5711)\\\" x=\\\"0 3.33 8.89 11.67 17.23 20.56 23.89 29.45\\\">referred</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 223.4517 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 226.4898 680.5711)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 234.8296 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 237.8677 680.5711)\\\" x=\\\"0 5.56 11.12 14.45 20.01 22.29 27.85\\\">herein,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 268.5025 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 271.5406 680.5711)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24 28.52 34.08\\\">including</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 311.189 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 314.2271 680.5711)\\\" x=\\\"0 5.56 11.12\\\">but</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 328.1285 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 331.1666 680.5711)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 345.068 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 348.1061 680.5711)\\\" x=\\\"0 2.28 4.56 12.89 15.17 17.95 23.51\\\">limited</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 377.1783 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 380.2165 680.5711)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.5563 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 391.5944 680.5711)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 411.0475 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 414.0856 680.5711)\\\" x=\\\"0 5.56 11.12 14.45 19.45 25.01 30.57 35.57\\\">purchase</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 455.2233 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 458.2614 680.5711)\\\" x=\\\"0 3.33 8.89 13.89 19.45 21.73 27.29\\\">receipt</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 488.3347 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 491.3728 680.5711)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 508.0574 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 511.0955 680.5711)\\\" x=\\\"0 2.78 5.06 10.62 16.18\\\">final</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.5574 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 532.5955 680.5711)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 669.2527)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 66.4545 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 69.6146 669.2527)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 86.2991 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 89.4592 669.2527)\\\" x=\\\"0 5 10 15.56 21.12 26.68 32.24 34.52 40.08\\\">schedule,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 132.3254 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 135.4855 669.2527)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 142.7658 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 145.9259 669.2527)\\\" x=\\\"0 5.56 11.12\\\">our</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.379 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 163.5391 669.2527)\\\" x=\\\"0 5.56 11.12 13.9 16.18 19.51\\\">entire</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 188.6123 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 191.7724 669.2527)\\\" x=\\\"0 5.56 11.12 14.45 20.01 25.57 33.9 39.46 45.02 47.8\\\">agreement.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 242.3583 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 245.5184 669.2527)\\\" x=\\\"0 9.44\\\">We</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 260.5184 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 263.6785 669.2527)\\\" x=\\\"0 5.56 11.12 16.12\\\">have</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 285.363 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 288.5231 669.2527)\\\" x=\\\"0 8.33 13.89 19.45\\\">made</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 313.5378 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 316.6978 669.2527)\\\" x=\\\"0 5.56\\\">no</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 327.8209 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 330.981 669.2527)\\\" x=\\\"0 5.56 8.89 14.45 22.78 25.06 30.06 35.62\\\">promises</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.606 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 374.766 669.2527)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.1059 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 386.266 669.2527)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.389 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 405.5491 669.2527)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.4504 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 422.6105 669.2527)\\\" x=\\\"0 5 10.56 16.12 18.9 24.46 26.74 32.3 37.86\\\">contained</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.0383 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 469.1983 669.2527)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 477.0401 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 480.2002 669.2527)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 495.8203 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 498.9804 669.2527)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 547.8964 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 551.0565 669.2527)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.9481 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 563.1082 669.2527)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 657.9344)\\\" x=\\\"0 5 10.56 15.56 21.12 23.78 29.34 32.12 37.68 43.24 46.57 49.23 54.79 60.35 65.35 70.91 79.24 84.8 90.36 93.14 98.14 100.92 103.58 110.25 115.81 120.81 123.47 128.47 134.03 139.59 145.15 150.71 156.27 158.93 161.71 167.27 169.93 172.71 178.27 180.55 185.55 188.21 194.88 200.44 203.77 209.33 214.89 223.22 228.78 234.34 237.12 239.78 248.11 253.67 258.67 261.45 264.11 269.67 275.23 277.89 285.11 288.44 290.72 293.5 296.28 301.84 307.4 310.06 315.62 321.18 326.74 329.4 334.4 336.68 342.24 347.8 353.36 358.92 361.58 367.14 372.14 374.8 379.8 385.36 390.92 393.58 399.14 404.7 410.26 412.92 418.48 423.48\\\">such other documents. Any change to this Agreement must be written and signed by you and us.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 644.616)\\\" x=\\\"0 7.22 14.44 21.11 27.22 35 43.33 50\\\">CUSTOMER</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 90.3217 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 93.5458 644.616)\\\" x=\\\"0 8.33 16.11 23.33 26.11 32.22 35 41.67\\\">MODIFIED</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 142.4325 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 145.6566 644.616)\\\" x=\\\"0 6.67 13.34 20.01 28.34 35.01 42.23\\\">PAYMENT</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 193.9964 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 197.2205 644.616)\\\" x=\\\"0 7.22 13.89 20 26.67\\\">DATES</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 230.5603 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 233.7844 644.616)\\\" x=\\\"0 6.67 13.89\\\">AND</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 254.8977 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 258.1218 644.616)\\\" x=\\\"0 6.11 13.33 20 27.78 35 41.67 48.89 56.11 62.78\\\">FREQUENCY.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 323.6833 644.616)\\\" x=\\\"0 3.2241\\\">  </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 330.1315 644.616)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 347.3629 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 350.587 644.616)\\\" x=\\\"0 5.56 11.12 13.9 19.46\\\">dates</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.0499 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 378.274 644.616)\\\" x=\\\"0 2.78 8.34 11.67\\\">for,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 392.7222 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 395.9463 644.616)\\\" x=\\\"0 2.78 6.11 11.67 17.23 22.79 28.35 33.91 38.91\\\">frequency</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 439.8623 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 443.0864 644.616)\\\" x=\\\"0 5.56 8.34\\\">of,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.2046 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 457.4286 644.616)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57\\\">number</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 491.3349 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 494.559 644.616)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 502.8988 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 506.1229 644.616)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 522.8075 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 526.0316 644.616)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.386 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 562.6101 644.616)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 633.2977)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 68.1781 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 72.0521 633.2977)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46\\\">Payments</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 116.515 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 120.389 633.2977)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 128.2308 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 132.1048 633.2977)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 147.7249 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 151.5989 633.2977)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 200.5149 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 204.3889 633.2977)\\\" x=\\\"0 5.56 8.89\\\">are</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 218.842 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 222.716 633.2977)\\\" x=\\\"0 5.56 11.12 16.12 21.68\\\">based</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 249.9621 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 253.8361 633.2977)\\\" x=\\\"0 5.56 11.12 16.68\\\">upon</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.0822 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 279.9562 633.2977)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 293.8575 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 297.7315 633.2977)\\\" x=\\\"0 5.56 11.12 16.12 21.68 27.24\\\">payday</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.9776 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 333.8516 633.2977)\\\" x=\\\"0 2.28 7.84 10.62 16.18 19.51 27.84 33.4 36.18 38.46 44.02\\\">information</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.4366 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 387.3105 633.2977)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.4336 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.3076 633.2977)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29 32.85\\\">provided</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 445.7255 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 449.5995 633.2977)\\\" x=\\\"0 7.22 9.5 12.28\\\">with</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.4413 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 471.3153 633.2977)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 490.7684 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 494.6424 633.2977)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 34.58 36.86 42.42 47.98\\\">application.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 545.409 633.2977)\\\" x=\\\"0 3.874\\\">  </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.157 633.2977)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 621.9793)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 51.9916 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 55.3463 621.9793)\\\" x=\\\"0 5 10.56 16.12 18.9 24.46 29.46\\\">contact</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 87.5875 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 90.9422 621.9793)\\\" x=\\\"0 5.56 11.12\\\">our</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 105.3953 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 108.75 621.9793)\\\" x=\\\"0 5 10.56 15.56 18.34 23.9 32.23 37.79\\\">customer</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 149.873 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 153.2277 621.9793)\\\" x=\\\"0 5 10.56 13.89 18.89 21.17 26.17\\\">service</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 184.9611 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 188.3158 621.9793)\\\" x=\\\"0 5.56 11.12 16.68 22.24 25.57 28.35 36.68 42.24 47.8\\\">department</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.9017 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 242.2564 621.9793)\\\" x=\\\"0 5.56 8.89\\\">or,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 253.9263 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 257.281 621.9793)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.3396 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 265.6942 621.9793)\\\" x=\\\"0 5.56 10.56 16.12 18.4 20.68 26.24 31.8 34.08\\\">available</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 305.3427 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 308.6973 621.9793)\\\" x=\\\"0 5.56 10.56\\\">use</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 324.8204 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 328.1751 621.9793)\\\" x=\\\"0 5.56 11.12 13.9 19.46 27.79 33.35 36.13 41.69\\\">automated</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.4309 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 378.7856 621.9793)\\\" x=\\\"0 8.33 13.89 19.45 25.01 30.01\\\">means,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 411.5786 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 414.9332 621.9793)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.9918 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 423.3465 621.9793)\\\" x=\\\"0 5.56 10.56 16.12 18.4 20.68 26.24 31.8 34.08 39.64\\\">available,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 465.7733 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 469.128 621.9793)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 477.4678 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 480.8225 621.9793)\\\" x=\\\"0 3.33 8.89 14.45 20.01 25.57 30.57\\\">request</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 514.177 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 517.5316 621.9793)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 523.0932 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 526.4478 621.9793)\\\" x=\\\"0 5 10.56 16.12 21.68 27.24\\\">change</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.2555 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 562.6101 621.9793)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 610.6609)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.0014 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 51.6173 610.6609)\\\" x=\\\"0 5 10 15.56 21.12 26.68 32.24 34.52 40.08\\\">scheduled</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 97.2667 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 101.8826 610.6609)\\\" x=\\\"0 5.56 11.12 13.9 19.46\\\">dates</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 126.3454 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 130.9613 610.6609)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 142.6313 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 147.2471 610.6609)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 163.9317 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 168.5476 610.6609)\\\" x=\\\"0 2.78 6.11 11.67 17.23 22.79 28.35 33.91 38.91\\\">frequency</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 212.4636 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 217.0795 610.6609)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.4193 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 230.0352 610.6609)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 265.1134 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 269.7292 610.6609)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46 44.46\\\">Payments.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 316.9705 610.6609)\\\" x=\\\"0 4.6159\\\">  </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 326.2022 610.6609)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 331.7589 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 336.3748 610.6609)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 349.158 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 353.7739 610.6609)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.68\\\">accept</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.2367 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 387.8526 610.6609)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.4142 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 398.03 610.6609)\\\" x=\\\"0 5 10.56 16.12 21.68 27.24\\\">change</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.8377 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 435.4535 610.6609)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 443.2953 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 447.9112 610.6609)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 461.8126 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 466.4285 610.6609)\\\" x=\\\"0 5 10 15.56 21.12 26.68 32.24 34.52 40.08\\\">scheduled</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.0779 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 516.6938 610.6609)\\\" x=\\\"0 5.56 11.12 13.9 19.46\\\">dates</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 541.1567 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 545.7726 610.6609)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 557.4425 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 562.0584 610.6609)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 599.3426)\\\" x=\\\"0 2.78 6.11 11.67 17.23 22.79 28.35 33.91 38.91\\\">frequency</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 77.016 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 80.7576 599.3426)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 89.0974 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 92.839 599.3426)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 127.9171 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 131.6587 599.3426)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46 44.46\\\">Payments,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 178.8999 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 182.6415 599.3426)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 196.5429 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 200.2844 599.3426)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.6389 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 237.3805 599.3426)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.7204 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 249.4619 599.3426)\\\" x=\\\"0 5.56 11.12 16.12\\\">each</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 271.1465 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 274.8881 599.3426)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 309.9662 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 313.7078 599.3426)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68\\\">Payment</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 353.1707 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 356.9123 599.3426)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 370.9748 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 374.7163 599.3426)\\\" x=\\\"0 5.56 11.12 13.9 19.46 27.79 33.35 36.13 38.41 43.41 48.97 51.25 53.53\\\">automatically</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 433.2515 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 436.9931 599.3426)\\\" x=\\\"0 5.56\\\">be</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 448.1161 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 451.8577 599.3426)\\\" x=\\\"0 8.33 13.89 19.45 21.73 24.51 26.79 32.35\\\">modified</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.7727 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 493.5143 599.3426)\\\" x=\\\"0 5\\\">so</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 504.0758 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 507.8174 599.3426)\\\" x=\\\"0 2.78 8.34 13.9\\\">that</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 524.4971 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 528.2387 599.3426)\\\" x=\\\"0 2.78 8.34 13.9\\\">that</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 544.9184 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 548.6599 599.3426)\\\" x=\\\"0 6.11 11.67 14.45 20.01\\\">Total</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 588.0242)\\\" x=\\\"0 7.22 12.78 17.78 20.56\\\">Cost,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 56.4398 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 60.6221 588.0242)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 77.3067 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.489 588.0242)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 95.3903 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 99.5726 588.0242)\\\" x=\\\"0 5.56 11.12 14.45 16.73 22.29\\\">period</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 127.4291 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 131.6113 588.0242)\\\" x=\\\"0 5.56 10.56 16.12\\\">over</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 151.0645 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 155.2467 588.0242)\\\" x=\\\"0 7.22 12.78 15.06 20.06\\\">which</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 180.8717 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 185.054 588.0242)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 198.9554 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 203.1377 588.0242)\\\" x=\\\"0 6.11 11.67 14.45 20.01\\\">Total</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.4277 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 229.61 588.0242)\\\" x=\\\"0 7.22 12.78 17.78\\\">Cost</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 250.1715 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 254.3538 588.0242)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 261.6341 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 265.8163 588.0242)\\\" x=\\\"0 5.56 11.12 13.4 18.96\\\">paid,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 287.5595 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 291.7418 588.0242)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 305.8043 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 309.9866 588.0242)\\\" x=\\\"0 3.33 8.89 17.22 22.78 25.06\\\">remain</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 340.6116 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 344.7938 588.0242)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 358.6952 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 362.8775 588.0242)\\\" x=\\\"0 5 10.56 18.89\\\">same</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 387.3306 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 391.5129 588.0242)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.0744 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 406.2567 588.0242)\\\" x=\\\"0 5.56 8.89 11.17 16.73\\\">prior</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 426.3202 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 430.5025 588.0242)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 438.8423 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 443.0246 588.0242)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.9259 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 461.1082 588.0242)\\\" x=\\\"0 3.33 8.89 14.45 20.01 25.57 30.57 33.35 38.91\\\">requested</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 505.5858 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 509.768 588.0242)\\\" x=\\\"0 5 10.56 16.12 21.68 27.24 32.8\\\">change.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 545.354 588.0242)\\\" x=\\\"0 4.1823\\\">  </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.7185 588.0242)\\\" x=\\\"0 6.67 12.23\\\">Any</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 576.7059)\\\" x=\\\"0 3.33 8.89 11.67 17.23 22.79 27.79 33.35\\\">refences</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 71.4545 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 75.2825 576.7059)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 83.1243 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 86.9523 576.7059)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 102.5725 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 106.4005 576.7059)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 155.3165 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 159.1445 576.7059)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 167.4844 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 171.3124 576.7059)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 185.2138 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 189.0418 576.7059)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57 33.9\\\">number,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.7264 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 229.5544 576.7059)\\\" x=\\\"0 2.78 6.11 11.67 17.23 22.79 28.35 33.91 38.91 43.91\\\">frequency,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.2488 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 280.0768 576.7059)\\\" x=\\\"0 2.78 5.06 13.39 15.67 21.23\\\">timing</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 306.8688 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 310.6968 576.7059)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 327.3814 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 331.2094 576.7059)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 364.5639 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 368.3919 576.7059)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 376.7318 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 380.5598 576.7059)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 415.6379 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 419.466 576.7059)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46\\\">Payments</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 463.9289 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 467.7569 576.7059)\\\" x=\\\"0 3.33 8.89 11.67 17.23 20.56\\\">refers</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 493.3184 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 497.1465 576.7059)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 505.4863 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 509.3143 576.7059)\\\" x=\\\"0 5 10.56 15.56\\\">such</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 530.4374 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 534.2654 576.7059)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57 33.9\\\">number,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 565.3875)\\\" x=\\\"0 2.78 6.11 11.67 17.23 22.79 28.35 33.91 38.91 43.91 46.69 49.35 52.13 54.41 62.74 68.3 70.96 76.52 82.08 87.64 90.3 95.86 104.19 109.75 115.31 120.87 123.65 126.31 131.87 136.87 139.53 147.86 153.42 158.42 161.08 166.64 172.2 174.86 183.19 188.75 194.31 196.59 199.37 201.65 207.21 212.77 215.43 220.99 225.99 228.65 235.32 240.88 246.44 252 254.66 260.22 263 265.66 270.66 276.22 281.78 285.11 287.77 291.1 296.66 302.22 307.78 313.34 318.34 321.12\\\">frequency, time and amount as may be modified by Snap at your request.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 552.0691)\\\" x=\\\"0 6.67 13.34 20.01 26.68 33.9 40.57 47.24 50.02 55.58 58.36 64.47 71.14\\\">SEVERABILITY.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 107.016 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 110.2288 552.0691)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 115.7855 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 118.9983 552.0691)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 124.5598 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 127.7726 552.0691)\\\" x=\\\"0 5 10.56 16.12 19.45\\\">court</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 150.004 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 153.2169 552.0691)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 162.1085 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 165.3213 552.0691)\\\" x=\\\"0 5.56 8.34 13.9 19.46\\\">other</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 188.1142 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 191.327 552.0691)\\\" x=\\\"0 5.56 7.84 12.84 18.4 23.96 26.74\\\">dispute</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 223.6317 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 226.8445 552.0691)\\\" x=\\\"0 3.33 8.89 13.89 19.45 21.73 27.29 30.07 32.35 37.91\\\">resolution</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 270.3211 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 273.5339 552.0691)\\\" x=\\\"0 5.56 11.12 16.68\\\">body</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 295.2185 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 298.4313 552.0691)\\\" x=\\\"0 2.78 5.06 10.62 16.18\\\">finds</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.6129 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 322.8257 552.0691)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.9488 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 342.1616 552.0691)\\\" x=\\\"0 5.56 11.12 14.45\\\">part</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.393 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 362.6058 552.0691)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 370.9457 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 374.1585 552.0691)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 389.7786 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 392.9914 552.0691)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 441.9074 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 445.1202 552.0691)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 453.4601 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 456.6729 552.0691)\\\" x=\\\"0 5.56\\\">be</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.7959 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 471.0087 552.0691)\\\" x=\\\"0 5 10.56 12.84\\\">void</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.4121 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 492.6249 552.0691)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.5165 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 504.7293 552.0691)\\\" x=\\\"0 5.56 11.12 16.68 22.24 25.02 30.58 33.91 38.91 44.47 50.03 55.59 57.87 63.43\\\">u* D E M O *e,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 540.7508)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 48.7201 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 53.1394 540.7508)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 102.0554 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 106.4747 540.7508)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 113.755 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 118.1743 540.7508)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 126.5142 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 130.9335 540.7508)\\\" x=\\\"0 5.56\\\">be</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 142.0565 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 146.4758 540.7508)\\\" x=\\\"0 3.33 8.89 14.45\\\">read</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 166.4905 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 170.9097 540.7508)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 181.4713 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 185.8906 540.7508)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 190.9492 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 195.3685 540.7508)\\\" x=\\\"0 2.78 8.34 13.9\\\">that</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 212.0482 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 216.4675 540.7508)\\\" x=\\\"0 5.56 11.12 14.45\\\">part</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.6989 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 238.1182 540.7508)\\\" x=\\\"0 7.22 12.78 16.11\\\">were</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.793 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 264.2123 540.7508)\\\" x=\\\"0 5.56 11.12 16.12 21.68\\\">never</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 289.227 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 293.6463 540.7508)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.2078 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 303.6271 540.7508)\\\" x=\\\"0 5.56 11.12 14.45\\\">part</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 320.8585 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 325.2778 540.7508)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 333.6177 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.037 540.7508)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 353.6571 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 358.0764 540.7508)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 409.7707 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 414.19 540.7508)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 431.4215 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 435.8408 540.7508)\\\" x=\\\"0 3.33 8.89 13.89\\\">rest</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 452.5107 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 456.93 540.7508)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 465.2699 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 469.6891 540.7508)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 483.5905 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 488.0098 540.7508)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 536.9258 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 541.3451 540.7508)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 555.4076 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 559.8269 540.7508)\\\" x=\\\"0 5.56\\\">be</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 529.4324)\\\" x=\\\"0 5.56 11.12 13.9 19.46 22.79 27.79 33.35 38.91 44.47 46.75 52.31\\\">enforceable.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 516.1141)\\\" x=\\\"0 6.67 13.89 21.67 28.89 31.67 38.34 41.12 47.23 53.9\\\">PROHIBITED</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 94.2182 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 97.4569 516.1141)\\\" x=\\\"0 6.67 13.89 20 26.67\\\">ACTS.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 126.9051 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 130.1438 516.1141)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 147.9368 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 151.1754 516.1141)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 165.2379 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 168.4766 516.1141)\\\" x=\\\"0 5 10.56 16.12\\\">keep</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 190.1612 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 193.3999 516.1141)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 207.3013 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.5399 516.1141)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 248.3329 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 251.5716 516.1141)\\\" x=\\\"0 2.78 6.11 11.67\\\">free</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 268.8031 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 272.0417 516.1141)\\\" x=\\\"0 2.78 6.11 11.67\\\">from</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 292.0417 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 295.2804 516.1141)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 311.4035 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 314.6422 516.1141)\\\" x=\\\"0 2.28 4.56 10.12 15.68\\\">liens</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.3258 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.5645 516.1141)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 347.4561 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 350.6947 516.1141)\\\" x=\\\"0 5 7.28 12.84 15.12 23.45 28.45\\\">claims.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 381.9252 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 385.1639 516.1141)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.9569 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 406.1956 516.1141)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 420.2581 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 423.4968 516.1141)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 437.3981 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 440.6368 516.1141)\\\" x=\\\"0 5.56 11.12 18.34\\\">pawn</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 464.5431 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 467.7818 516.1141)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 476.6734 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 479.912 516.1141)\\\" x=\\\"0 5.56 7.84 13.4 18.96 24.52\\\">pledge</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.9999 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 513.2386 516.1141)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 527.14 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 530.3787 516.1141)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 504.7957)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 50.893 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 55.1549 504.7957)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 69.2174 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 73.4794 504.7957)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 87.3807 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 91.6427 504.7957)\\\" x=\\\"0 8.33 13.89 18.89\\\">move</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 116.0958 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 120.3578 504.7957)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 134.2592 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 138.5211 504.7957)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 176.3141 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 180.576 504.7957)\\\" x=\\\"0 5.56 11.12 13.9 18.9 21.18 26.74\\\">outside</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 212.8807 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 217.1427 504.7957)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.4825 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 229.7445 504.7957)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 243.6458 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 247.9078 504.7957)\\\" x=\\\"0 5.56 11.12 16.68 20.01 25.57 30.57\\\">address</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 283.484 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 287.7459 504.7957)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 303.869 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 308.1309 504.7957)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29 32.85\\\">provided</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 346.5489 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 350.8109 504.7957)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.1507 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 363.4127 504.7957)\\\" x=\\\"0 5.56 10.56\\\">us,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 376.7525 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 381.0145 504.7957)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 397.699 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 401.961 504.7957)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 412.5225 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 416.7845 504.7957)\\\" x=\\\"0 5.56 11.12 16.68 22.24 25.02 30.58 36.14\\\">updated,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 455.7103 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 459.9722 504.7957)\\\" x=\\\"0 5.56 11.12 13.4 18.96 23.96\\\">unless</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 488.9371 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 493.199 504.7957)\\\" x=\\\"0 2.28\\\">it</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 498.2576 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 502.5196 504.7957)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.7998 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 514.0618 504.7957)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 522.4016 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 526.6636 504.7957)\\\" x=\\\"0 3.33 8.89 11.67 17.23 20.56\\\">return</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.7867 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0486 504.7957)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 493.4773)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 70.893 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 74.775 493.4773)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 83.1148 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 86.9968 493.4773)\\\" x=\\\"0 5.56 10.56\\\">us,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 100.3367 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 104.2187 493.4773)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 113.1103 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 116.9923 493.4773)\\\" x=\\\"0 5.56 11.12\\\">our</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 131.4454 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 135.3274 493.4773)\\\" x=\\\"0 5.56 11.12 16.12 18.4 23.96 29.52 35.08 40.64\\\">designee.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 178.7551 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 182.6371 493.4773)\\\" x=\\\"0 6.11\\\">To</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 194.307 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 198.189 493.4773)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 212.0904 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 215.9724 493.4773)\\\" x=\\\"0 5.56 10.56 13.34 18.9 24.46\\\">extent</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 243.2136 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 247.0956 493.4773)\\\" x=\\\"0 5.56 10.56\\\">use</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 263.2187 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 267.1007 493.4773)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.4405 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 279.3225 493.4773)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 293.2239 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 297.1059 493.4773)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 334.8988 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.7808 493.4773)\\\" x=\\\"0 3.33 8.89 14.45 20.01 22.29 25.62 31.18\\\">requires</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 374.9674 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 378.8494 493.4773)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 394.9724 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 398.8544 493.4773)\\\" x=\\\"0 8.33 10.61 16.17 18.45 26.78 32.34\\\">minimum</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 439.5282 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 443.4102 493.4773)\\\" x=\\\"0 5 8.33 10.61 13.39 18.95 22.28 24.56\\\">criteria</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 473.5323 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 477.4143 493.4773)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.0842 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 492.9662 493.4773)\\\" x=\\\"0 5.56 10.56 16.12\\\">use,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 511.8676 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 515.7496 493.4773)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24 28.52 34.08\\\">including</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 555.3981 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 559.2801 493.4773)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 482.159)\\\" x=\\\"0 5.56 10.56 16.12 24.45 30.01 32.29\\\">example</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 70.9565 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 74.5435 482.159)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 80.105 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 83.6921 482.159)\\\" x=\\\"0 5.56 11.12 14.45 22.78 25.06 27.84\\\">permit,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 114.3123 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 117.8993 482.159)\\\" x=\\\"0 2.28 4.56 9.56 15.12 20.68 25.68 31.24\\\">license,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 151.9228 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 155.5098 482.159)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 164.4014 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 167.9885 482.159)\\\" x=\\\"0 8.33 10.61 16.17 18.45 26.78 32.34\\\">minimum</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 208.6624 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 212.2494 482.159)\\\" x=\\\"0 5.56 11.12 16.68\\\">age,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.7123 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 235.2994 482.159)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 251.4224 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 255.0095 482.159)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 269.072 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 272.6591 482.159)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 286.5605 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 290.1476 482.159)\\\" x=\\\"0 5.56 7.84 10.12 15.68\\\">allow</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 313.0528 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 316.6399 482.159)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 332.7629 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 336.35 482.159)\\\" x=\\\"0 2.28 10.61 16.17 19.5 25.06 30.62 36.18\\\">improper</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.8666 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 379.4537 482.159)\\\" x=\\\"0 5.56 10.56\\\">use</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 395.5767 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 399.1638 482.159)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 407.5037 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 411.0907 482.159)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 424.9921 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 428.5792 482.159)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 469.1505 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 472.7376 482.159)\\\" x=\\\"0 6.67\\\">As</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.4075 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 487.9946 482.159)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64 45.2\\\">applicable,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 535.9828 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 539.5699 482.159)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.2399 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 554.8269 482.159)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 470.8406)\\\" x=\\\"0 5.56 11.12 16.68 19.46\\\">boat,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 55.3412 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 60.5175 470.8406)\\\" x=\\\"0 8.33 13.89 16.67 22.23 25.56 27.84 32.84 38.4\\\">motorized</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 104.4823 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 109.6586 470.8406)\\\" x=\\\"0 5 10.56 16.12 18.4 23.4 25.68 31.24\\\">vehicle,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 143.6821 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.8584 470.8406)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 157.75 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 162.9263 470.8406)\\\" x=\\\"0 5.56 8.34 13.9 19.46 22.79 30.01 32.29 37.29\\\">otherwise</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 205.7827 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.959 470.8406)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64 45.2\\\">applicable,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 258.9473 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 264.1236 470.8406)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.2466 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 285.4229 470.8406)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.4854 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 304.6617 470.8406)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 318.5631 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 323.7394 470.8406)\\\" x=\\\"0 5.56 11.12 14.45 22.78 25.06\\\">permit</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.5812 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 356.7575 470.8406)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 372.8805 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 378.0568 470.8406)\\\" x=\\\"0 5.56 11.12 14.45 19.45 25.01 30.57\\\">person,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 411.4113 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 416.5876 470.8406)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24 28.52 34.08\\\">including</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.236 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 461.4123 470.8406)\\\" x=\\\"0 5 10.56 16.12 19.45 24.45 30.01 32.29 35.07\\\">yourself,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.2639 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 504.4402 470.8406)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.78 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 517.9563 470.8406)\\\" x=\\\"0 5.56 11.12 16.68 20.01 25.57 28.35\\\">operate</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.8723 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0486 470.8406)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 459.5223)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 70.893 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 75.2445 459.5223)\\\" x=\\\"0 7.22 12.78 15.06 17.34\\\">while</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 98.1497 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 102.5012 459.5223)\\\" x=\\\"0 5 10.56 15.56\\\">such</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 123.6243 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 127.9757 459.5223)\\\" x=\\\"0 5.56 11.12 14.45 19.45 25.01\\\">person</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 158.5519 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 162.9034 459.5223)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 170.1837 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 174.5351 459.5223)\\\" x=\\\"0 2.28 10.61 16.17 21.73 24.01 27.34 32.9\\\">impaired</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 213.0019 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 217.3534 459.5223)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 227.915 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 232.2664 459.5223)\\\" x=\\\"0 5.56 8.89 14.45 20.01 25.01\\\">drugs,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 260.0594 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 264.4109 459.5223)\\\" x=\\\"0 5.56 7.84 12.84 18.4 23.96 29.52\\\">alcohol</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 296.2175 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 300.569 459.5223)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 309.4606 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 313.8121 459.5223)\\\" x=\\\"0 2.78 6.11 11.67\\\">from</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 333.8121 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.1636 459.5223)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 354.2866 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 358.6381 459.5223)\\\" x=\\\"0 5.56 8.34 13.9 19.46\\\">other</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 381.4311 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 385.7826 459.5223)\\\" x=\\\"0 5 10.56 16.12 21.12 26.68\\\">cause.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 415.2455 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 419.5969 459.5223)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 437.3899 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 441.7414 459.5223)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 455.8039 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 460.1554 459.5223)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.0567 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 478.4082 459.5223)\\\" x=\\\"0 5.56 10.56\\\">use</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 494.5313 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 498.8828 459.5223)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.7841 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 517.1356 459.5223)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 554.9286 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 559.2801 459.5223)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 448.2039)\\\" x=\\\"0 5 10.56 18.89 27.22 32.78 36.11 41.11 43.39 48.95 51.23 53.89 59.45 65.01 68.34 73.9 79.46 84.46 90.02 95.02\\\">commercial purposes.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 434.8855)\\\" x=\\\"0 9.44 16.11 23.33 30.55 33.33 40.55 48.33\\\">WARNING:</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 84.2084 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 87.8242 434.8855)\\\" x=\\\"0 7.22 12.78 15.06 20.62 25.62\\\">Unless</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 118.4492 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 122.065 434.8855)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 138.188 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 141.8038 434.8855)\\\" x=\\\"0 5.56 11.12 16.12\\\">have</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 163.4883 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 167.1041 434.8855)\\\" x=\\\"0 5.56 10.56 16.12 21.68 23.96 27.29 32.85\\\">acquired</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 205.5221 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 209.1378 434.8855)\\\" x=\\\"0 5.56 12.78 18.34 23.9 27.23 32.23 37.79 40.07\\\">ownership</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 254.7775 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 258.3933 434.8855)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 266.7331 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 270.3489 434.8855)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 284.2503 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 287.866 434.8855)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 328.4373 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 332.0531 434.8855)\\\" x=\\\"0 5.56 8.34 11.12 16.68 25.01 30.57 33.35 35.63 41.19\\\">attempting</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 378.806 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 382.4218 434.8855)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 390.7616 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 394.3774 434.8855)\\\" x=\\\"0 5 10.56 12.84 15.12\\\">sell,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 412.2778 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 415.8936 434.8855)\\\" x=\\\"0 5.56 11.12 18.34 23.9\\\">pawn,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 442.5781 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 446.1939 434.8855)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 455.0855 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 458.7013 434.8855)\\\" x=\\\"0 2.28 4.56 10.12\\\">lien</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.3849 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 478.0007 434.8855)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 491.902 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 495.5178 434.8855)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 533.3108 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 536.9265 434.8855)\\\" x=\\\"0 5 7.28 12.84 15.12 20.68 23.46 29.02\\\">violates</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 423.5672)\\\" x=\\\"0 5 7.78 13.34 16.12 21.68 24.34 26.62 32.18 39.4\\\">state law.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 410.2488)\\\" x=\\\"0 6.67 13.34 20.01 22.79 30.57 37.79 46.12 52.79 60.01 66.12\\\">ASSIGNMENT.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 101.9965 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 104.9066 410.2488)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 122.6995 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 125.6096 410.2488)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 144.5012 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 147.4112 410.2488)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 161.3126 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 164.2227 410.2488)\\\" x=\\\"0 5.56 10.56 15.56 17.84 23.4\\\">assign</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 193.1875 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 196.0976 410.2488)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 211.7177 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 214.6278 410.2488)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 263.5438 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 266.4538 410.2488)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.3454 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 278.2555 410.2488)\\\" x=\\\"0 2.78 6.11 11.67 17.23 22.23 25.01 30.57\\\">transfer</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.1569 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 315.0669 410.2488)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 328.9683 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 331.8784 410.2488)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 369.6713 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 372.5814 410.2488)\\\" x=\\\"0 7.22 9.5 12.28 17.84 23.4 28.96\\\">without</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 404.3246 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.2346 410.2488)\\\" x=\\\"0 5.56 11.12\\\">our</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 421.6877 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 424.5978 410.2488)\\\" x=\\\"0 5.56 8.89 11.17 16.73\\\">prior</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 444.6613 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 447.5713 410.2488)\\\" x=\\\"0 7.22 10.55 12.83 15.61 18.39 23.95\\\">written</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 477.0831 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 479.9931 410.2488)\\\" x=\\\"0 5.56 11.12 14.45 22.78 25.06 30.06 35.06 37.34 42.9 48.46\\\">permission.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 531.2382 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 534.1483 410.2488)\\\" x=\\\"0 9.44\\\">We</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.1483 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 552.0584 410.2488)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 398.9305)\\\" x=\\\"0 5.56 10.56 15.56 17.84 23.4 28.96 31.62 37.18 39.46 41.74 44.4 49.96 52.74 55.4 60.96 66.52 69.85 72.51 75.84 78.12 83.68 89.24 92.02 97.02 99.68 105.24 110.8 116.36 121.92 125.25 127.91 130.69 136.25 138.53 143.53 146.19 152.86 158.42 161.75 167.31 172.87 181.2 186.76 192.32 195.1 197.88 200.54 207.21 212.77 217.77 220.43 225.99 231.55 234.88 239.88 245.44 251 253.66 260.88 266.44 269.1 274.66 279.66 284.66 286.94 292.5 298.06 300.72 303 305.78 308.44 311.22 316.78 319.44 327.77 333.33 338.33 340.99 344.32 349.88 355.44 360.44 365.44 367.72 373.28 378.84 381.5 383.78 386.56\\\">assign all of our ri* D E M O *this Agreement. Any person we assign it to may reassign it.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 385.6121)\\\" x=\\\"0 6.67 13.89 21.11 28.89 36.11\\\">ACCORD</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 76.435 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 79.3433 385.6121)\\\" x=\\\"0 6.67 13.89\\\">AND</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 100.4566 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 103.3649 385.6121)\\\" x=\\\"0 6.67 13.34 19.45 22.23 28.9 35.01 41.68 48.9 55.01 57.79 65.57 72.79\\\">SATISFACTION.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 178.9265 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 181.8348 385.6121)\\\" x=\\\"0 6.67 12.23\\\">Any</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 199.0662 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 201.9746 385.6121)\\\" x=\\\"0 5 7.78 13.34 16.12 21.68 30.01 35.57 41.13\\\">statement</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.8857 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 248.794 385.6121)\\\" x=\\\"0 5.56 10.56 15.56 21.12 29.45 35.01 40.57 46.13 51.13 53.41 58.97\\\">accompanying</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 313.3351 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 316.2434 385.6121)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.6965 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.6049 385.6121)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 376.9593 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 379.8677 385.6121)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.2075 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 391.1159 385.6121)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 405.0172 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.9256 385.6121)\\\" x=\\\"0 5.56 8.34 11.12 16.68 21.68\\\">effect</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 432.3836 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 435.2919 385.6121)\\\" x=\\\"0 2.78 8.34 13.9\\\">that</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 451.9716 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 454.88 385.6121)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.3331 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 477.2414 385.6121)\\\" x=\\\"0 5.56 11.12 13.4 18.96 24.52 29.52\\\">balance</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.3293 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 515.2376 385.6121)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 522.5179 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 525.4263 385.6121)\\\" x=\\\"0 5.56 11.12 13.4\\\">paid</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 544.3911 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 547.2995 385.6121)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 555.1412 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 558.0496 385.6121)\\\" x=\\\"0 2.78 8.34 10.62\\\">full</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 374.2937)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.1625 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 50.8231 374.2937)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 64.7245 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 68.3851 374.2937)\\\" x=\\\"0 5.56 7.84 13.4\\\">bind</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 87.35 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 91.0106 374.2937)\\\" x=\\\"0 5.56 10.56\\\">us.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 104.3505 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 108.0111 374.2937)\\\" x=\\\"0 7.78 13.34\\\">Our</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 124.681 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 128.3417 374.2937)\\\" x=\\\"0 5.56 11.12 16.68 22.24 27.24 29.52\\\">deposit</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.6464 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 164.307 374.2937)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 172.6468 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 176.3075 374.2937)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 192.4305 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 196.0912 374.2937)\\\" x=\\\"0 5 10.56 15.56\\\">such</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 217.2142 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 220.8748 374.2937)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.2293 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 262.89 374.2937)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.9525 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 280.6131 374.2937)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 294.5145 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 298.1751 374.2937)\\\" x=\\\"0 5 10.56 16.12 21.12 23.9 26.18 28.96 34.52 37.3\\\">constitute</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 341.0365 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 344.6971 374.2937)\\\" x=\\\"0 5.56\\\">an</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.8201 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 359.4808 374.2937)\\\" x=\\\"0 5.56 10.56 15.56 21.12 24.45\\\">accord</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 389.4954 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 393.1561 374.2937)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 409.8406 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 413.5013 374.2937)\\\" x=\\\"0 5 10.56 13.34 15.62 20.62 23.4 28.96 33.96 36.74 39.02 44.58 50.14\\\">satisfaction,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.4212 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 470.0818 374.2937)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.7664 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 490.427 374.2937)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 503.2102 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 506.8709 374.2937)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 525.7625 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 529.4231 374.2937)\\\" x=\\\"0 5.56 11.12 16.68 18.96\\\">apply</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.388 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0486 374.2937)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 362.9754)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57 38.35 41.01 43.79 49.35 52.01 57.01 62.57 68.13 71.46 74.12 79.68 84.68 89.68 95.24 100.8 106.36 109.14\\\">payment to your account.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 349.657)\\\" x=\\\"0 2.78 10 16.67 23.89 31.11 37.78 45 52.22 58.89 61.67 64.33 73.77 79.33 81.99 87.55 93.11 95.77 101.33 106.89 109.67 112.33 115.66 121.22 126.78 132.34 134.62 137.95 143.51 146.17 151.17 156.73 162.29 164.95 167.73 173.29 175.95 181.51 187.07 190.4 195.4 200.96 206.52 211.52 217.08 219.74 222.02 227.58 232.58 238.14 241.47 247.03 252.59 257.59 263.15 265.81 268.59 271.92 277.48 285.81 288.47 294.03 299.03 301.69 307.25 312.81 318.37 321.03 328.25 333.81 336.47 342.03 347.59 352.59 358.15 360.81 366.37 371.93 374.71 377.37 382.93 386.26 391.82 396.82 399.1 404.66 410.22 415.78 418.44 424 429.56 434.56 437.22 439.5 445.06 450.06 455.62 458.95 464.51 470.07 475.07 480.63 483.29 486.07 491.63 494.29 499.29 504.85 510.41\\\">INSURANCE. We do not require you to purchase insurance from us and we have not provided any insurance to you.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 336.3387)\\\" x=\\\"0 7.22 13.89 21.11 27.78 30.56 37.23 43.34 46.12 48.78 56 61.56 67.12 72.68 75.34 80.34 85.9 91.46 94.79 97.45 100.78 106.34 111.9 117.46 123.02 128.02 130.8 133.58 136.24 143.46 149.02 151.68 157.24 160.57 166.13 168.79 172.12 177.68 183.24 188.8 191.08 194.41 199.97 205.53 208.19 210.97 216.53 219.19 224.75 228.08 233.64 238.64 240.92 246.48 252.04 254.7 259.7 265.26 270.82 273.48 280.7 282.98 285.76 291.32 293.98 299.54 302.2 309.42 312.75 315.03 317.81 320.59 326.15 331.71 334.37 337.7 343.26 348.26 353.82 356.1 361.66 364.44 367.1 369.88 375.44 378.77 381.43 386.99 392.55 397.55 403.11 405.77 411.33 416.89 421.89 430.22 435.78 441.34 444.12 446.78 455.11 460.67 466.23 471.79\\\">RECEIPT. Upon your request, we are required to provide you with a written receipt for each payment made.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 323.0203)\\\" x=\\\"0 7.78 15.56 22.23 28.9 36.12 43.34 46.12 53.34\\\">GOVERNING</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 94.2182 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 97.2444 323.0203)\\\" x=\\\"0 5.56 12.23 21.67\\\">LAW.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 121.6926 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 124.7189 323.0203)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 141.9503 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 144.9765 323.0203)\\\" x=\\\"0 2.28 7.84\\\">law</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.04 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 163.0663 323.0203)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 171.4061 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 174.4323 323.0203)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 188.3337 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 191.3599 323.0203)\\\" x=\\\"0 5 7.78 13.34 16.12\\\">state</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 213.0396 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 216.0658 323.0203)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 223.9076 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 226.9339 323.0203)\\\" x=\\\"0 7.22 12.78 15.06 20.06\\\">which</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 252.5589 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 255.5851 323.0203)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 271.7082 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 274.7344 323.0203)\\\" x=\\\"0 3.33 8.89 13.89 16.17 21.73\\\">reside</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.0293 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 305.0555 323.0203)\\\" x=\\\"0 7.22 12.78 18.34\\\">when</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 328.9618 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 331.988 323.0203)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.1111 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 351.1373 323.0203)\\\" x=\\\"0 5 7.28 12.84 18.4 23.96\\\">signed</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.6637 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 383.6899 323.0203)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 399.31 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 402.3363 323.0203)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 451.2523 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 454.2785 323.0203)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 470.9631 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 473.9893 323.0203)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64\\\">applicable</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 519.1993 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 522.2255 323.0203)\\\" x=\\\"0 2.78 8.34 13.9 19.46 22.79 28.35\\\">federal</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.8603 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 555.8865 323.0203)\\\" x=\\\"0 2.28 7.84\\\">law</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 311.7019)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.1625 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 50.5142 311.7019)\\\" x=\\\"0 5.56 11.12 16.12 21.68 25.01\\\">govern</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 81.0904 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 84.4421 311.7019)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 98.3434 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 101.6951 311.7019)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 150.6111 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 153.9628 311.7019)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 170.6474 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 173.9991 311.7019)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 187.9005 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 191.2521 311.7019)\\\" x=\\\"0 2.28 7.84 10.62 16.18 19.51 25.07 28.4 33.96 36.74 42.3 45.08 47.36 52.92\\\">interpretation</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 249.7385 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 253.0902 311.7019)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 261.43 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 264.7817 311.7019)\\\" x=\\\"0 2.28 5.06\\\">it,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 272.6186 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 275.9703 311.7019)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.68\\\">except</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 305.4332 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 308.7849 311.7019)\\\" x=\\\"0 2.78 8.34 13.9\\\">that</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 325.4646 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 328.8163 311.7019)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 342.7176 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 346.0693 311.7019)\\\" x=\\\"0 6.11 11.67 17.23 22.79 26.12 31.68\\\">Federal</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.0342 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 383.3859 311.7019)\\\" x=\\\"0 6.67 10 15.56 17.84 20.62 23.95 29.51 32.29 34.57 40.13\\\">Arbitration</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 429.0792 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 432.4309 311.7019)\\\" x=\\\"0 6.67 11.67\\\">Act</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 446.8791 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 450.2308 311.7019)\\\" x=\\\"0 5.56 10.56 16.12 19.45 25.01 30.01 35.01 37.29\\\">expressly</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 492.5258 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 495.8775 311.7019)\\\" x=\\\"0 5.56 11.12 16.12 21.68 25.01 30.57\\\">governs</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 531.4536 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 534.8053 311.7019)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 548.7067 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 552.0584 311.7019)\\\" x=\\\"0 5 10.56 13.89\\\">Jury</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 300.3836)\\\" x=\\\"0 6.11 9.44 11.72 17.28 19.56 22.22 31.66 37.22 39.5 44.5 50.06 53.39 56.05 61.61 67.17 72.73 75.39 82.06 85.39 90.95 93.23 96.01 99.34 104.9 107.68 109.96 115.52 121.08 123.74 130.96 133.24 138.8 144.36 149.36 154.92 157.7 160.36 167.03 172.59 178.15 180.81 186.37 191.37 196.37 201.93 207.49 214.71 216.99 222.55 228.11 233.67 239.23 241.89 244.67 250.23 255.79 258.57 261.23 266.23 271.79 277.35 280.01 283.34 288.9 293.9 296.18 301.74 307.3 309.96 315.52 318.3 320.96 323.74 329.3 334.86 337.52 343.08 348.64 354.2 357.53 363.09 368.09 373.09 375.75 378.03 380.31 385.31 388.09 393.65 399.21 401.87 407.43 412.99 418.55 423.55 429.11 431.77 437.33 442.89 445.55 448.33 453.89 459.45 462.11 468.78 474.34 477.67 483.23 488.79 497.12 502.68 508.24 511.02 513.68 520.9 526.46 529.24 534.8\\\">Trial Waiver and Arbitration Clause. You acknowledge that you reside at the address listed above on the Agreement Date.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 287.0652)\\\" x=\\\"0 7.22 15 22.22 28.89 36.11 44.44 51.11\\\">CONSUMER</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 91.435 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 94.8938 287.0652)\\\" x=\\\"0 7.22 13.89 20.56 28.34 35.56 41.67\\\">REPORT.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 139.3421 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 142.8009 287.0652)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.5939 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 164.0527 287.0652)\\\" x=\\\"0 5.56 11.12 16.12\\\">have</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 185.7373 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 189.1961 287.0652)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 28.35 30.63 35.63 41.19\\\">authorized</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 235.9539 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 239.4128 287.0652)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 249.9743 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 253.4331 287.0652)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 261.773 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 265.2318 287.0652)\\\" x=\\\"0 5.56 11.12 13.9 19.46 21.74\\\">obtain</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 292.5365 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 295.9953 287.0652)\\\" x=\\\"0 5.56 11.12\\\">one</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.6799 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 316.1388 287.0652)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 325.0304 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 328.4892 287.0652)\\\" x=\\\"0 8.33 13.89 17.22\\\">more</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.2724 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 354.7312 287.0652)\\\" x=\\\"0 5 10.56 16.12 21.12 26.68 35.01 40.57\\\">consumer</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 398.6375 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 402.0963 287.0652)\\\" x=\\\"0 3.33 8.89 14.45 20.01 23.34 26.12\\\">reports</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 433.2194 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 436.6782 287.0652)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.8013 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 451.2601 287.0652)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.3832 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 470.842 287.0652)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 478.6838 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 482.1427 287.0652)\\\" x=\\\"0 5 10.56 16.12 21.68 27.24 32.24 35.02 37.3 42.86\\\">connection</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 530.5704 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 534.0292 287.0652)\\\" x=\\\"0 7.22 9.5 12.28\\\">with</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.871 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 555.3299 287.0652)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 275.7469)\\\" x=\\\"0 2.78 6.11 11.67 17.23 22.23 27.79 32.79 35.57 37.85 43.41 48.97\\\">transaction.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 262.4285)\\\" x=\\\"0 7.22 14.44 21.11 28.33 31.11\\\">CREDIT</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 70.3217 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 73.874 262.4285)\\\" x=\\\"0 7.22 13.89 20.56 28.34 35.56 41.67 44.45 51.67 59.45\\\">REPORTING.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.1005 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 139.6529 262.4285)\\\" x=\\\"0 9.44\\\">We</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 154.6529 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 158.2051 262.4285)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 177.0967 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 180.6491 262.4285)\\\" x=\\\"0 3.33 8.89 14.45 20.01 23.34\\\">report</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 206.7721 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.3244 262.4285)\\\" x=\\\"0 2.28 7.84 10.62 16.18 19.51 27.84 33.4 36.18 38.46 44.02\\\">information</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.9094 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 263.4617 262.4285)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 271.8015 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 275.3538 262.4285)\\\" x=\\\"0 5 8.33 13.89 19.45 21.73\\\">credit</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.8655 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 303.4178 262.4285)\\\" x=\\\"0 5.56 11.12 14.45 20.01 25.57 31.13\\\">bureaus</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 339.5555 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 343.1078 262.4285)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.9994 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 355.5517 262.4285)\\\" x=\\\"0 5.56 8.34 13.9 19.46\\\">other</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 378.3447 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 381.897 262.4285)\\\" x=\\\"0 2.78 8.34 10.62 13.95 19.51 22.84 28.4 33.96 37.29 40.07 42.35 47.91\\\">third-parties</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.812 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 438.3644 262.4285)\\\" x=\\\"0 5.56 11.12 16.68 22.24\\\">about</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 463.3888 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 466.9411 262.4285)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.3942 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 489.9465 262.4285)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.68 32.24 35.02\\\">account,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 527.7492 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 531.3015 262.4285)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24 28.52 34.08\\\">including</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 251.1102)\\\" x=\\\"0 2.28 7.84 10.62 16.18 18.84 24.4 27.73 30.39 38.72 41 46 51 56.56 62.12 64.78 70.34 75.9 80.9 89.23 94.79 100.35 103.13 108.13 110.91 113.57 119.13 124.69 130.25 132.91 138.47 144.03 149.03 151.69 157.25 162.81 167.81 170.09 172.87 175.15 180.15 185.71 188.37 193.93 197.26 199.92 205.48 211.04 216.6 222.16 224.94 227.22 232.22 237.78 240.44 246 251 256 261.56 267.12 272.68 275.46 278.12 280.4 285.96 288.74 294.3 297.63 305.96 311.52 314.3 316.58 322.14 327.7 330.36 338.69 344.25 349.25 351.91 357.47 363.03 365.69 369.02 374.58 377.36 379.64 385.2 390.2 392.98 398.54 404.1 406.76 409.04 414.6 417.26 422.26 427.82 433.38 436.71 439.37 444.37 447.7 453.26 458.82 461.1 463.88 466.54 469.87 475.43 480.99 486.55 489.88 492.66\\\">late or missed payments, and any positive or negative account information may be reflected in your credit report.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 237.7918)\\\" x=\\\"0 2.78 10 17.22 23.89 32.22 39.44 42.22 48.33 51.11 58.33 65 71.11 73.89 81.67 88.89\\\">INDEMNIFICATION.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 124.765 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 128.29 237.7918)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.083 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 149.608 237.7918)\\\" x=\\\"0 5.56 11.12 14.45 20.01\\\">agree</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 175.1842 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 178.7092 237.7918)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 187.0491 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 190.5741 237.7918)\\\" x=\\\"0 2.28 7.84 13.4 18.96 27.29 32.85 35.13 37.91\\\">indemnify</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.4891 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 237.0141 237.7918)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.5756 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 251.1006 237.7918)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 267.7852 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 271.3102 237.7918)\\\" x=\\\"0 5.56 11.12 13.4\\\">hold</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.2751 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 293.8001 237.7918)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 304.3616 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 307.8866 237.7918)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 324.5712 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 328.0962 237.7918)\\\" x=\\\"0 5.56 11.12\\\">our</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 342.5493 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 346.0743 237.7918)\\\" x=\\\"0 5.56 10.56 15.56 17.84 23.4 28.96 34.52 40.08 45.08\\\">assignees,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.9405 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 397.4655 237.7918)\\\" x=\\\"0 5.56 11.12 16.68 22.24 25.02 30.02\\\">agents,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.2683 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 433.7933 237.7918)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 450.4779 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 454.0029 237.7918)\\\" x=\\\"0 2.28 7.84 12.84 18.4 21.73 27.29 30.62\\\">insurers</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.6279 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 493.1529 237.7918)\\\" x=\\\"0 5.56 11.12 14.45 22.78 25.06 30.62 35.62\\\">harmless</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 533.7779 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 537.3029 237.7918)\\\" x=\\\"0 2.78 6.11 11.67\\\">from</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 557.3029 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 560.8279 237.7918)\\\" x=\\\"0 5.56 7.84\\\">all</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 226.4734)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57 36.13 41.13\\\">damages,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 77.016 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 80.4241 226.4734)\\\" x=\\\"0 2.28 7.84 10.12 15.68 19.01 21.29 26.85 31.85\\\">injuries,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 115.0579 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 118.466 226.4734)\\\" x=\\\"0 5 7.28 12.84 15.12 23.45 28.45\\\">claims,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 149.6965 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 153.1046 226.4734)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57 36.13 41.13\\\">demands,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 197.0206 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 200.4287 226.4734)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 217.1132 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 220.5214 226.4734)\\\" x=\\\"0 5.56 10.56 16.12 21.68 27.24 32.24 37.8 42.8\\\">expenses,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 266.1073 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 269.5154 226.4734)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24 28.52 34.08\\\">including</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 309.1638 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 312.5719 226.4734)\\\" x=\\\"0 3.33 8.89 14.45 19.45 25.01 30.57 36.13 41.69 43.97\\\">reasonable</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 362.1129 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 365.521 226.4734)\\\" x=\\\"0 5.56 8.34 11.12 16.68 20.01 25.57 31.13 36.13 38.04\\\">attorney&apos;s</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 408.563 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 411.9711 226.4734)\\\" x=\\\"0 2.78 8.34 13.9\\\">fees</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.8725 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 434.2806 226.4734)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 442.6204 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 446.0285 226.4734)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 459.9299 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 463.338 226.4734)\\\" x=\\\"0 5.56 10.56 13.34 18.9 24.46\\\">extent</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 490.5792 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 493.9873 226.4734)\\\" x=\\\"0 5.56 11.12 14.45 22.78 25.06 27.84 30.62 36.18\\\">permitted</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 535.7305 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 539.1386 226.4734)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.7001 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.1082 226.4734)\\\" x=\\\"0 2.28 7.84 15.06\\\">law,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 215.1551)\\\" x=\\\"0 5.56 8.89 11.17 16.17 18.45 24.01\\\">arising</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 62.6752 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 67.1149 215.1551)\\\" x=\\\"0 5.56 11.12\\\">out</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 81.0163 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 85.4561 215.1551)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 93.7959 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 98.2356 215.1551)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 112.137 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 116.5767 215.1551)\\\" x=\\\"0 5 10.56 16.12 21.68 23.96 26.74 29.02 34.58 40.14\\\">condition,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 159.5016 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 163.9413 215.1551)\\\" x=\\\"0 8.33 13.89 16.17 21.73 24.51 30.07 35.63 41.19 46.75 51.75 57.31\\\">maintenance,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 224.039 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 228.4787 215.1551)\\\" x=\\\"0 5.56 10.56\\\">use</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 244.6017 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 249.0415 215.1551)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.9331 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 262.3728 215.1551)\\\" x=\\\"0 5.56 11.12 16.68 20.01 25.57 28.35 30.63 36.19\\\">operation</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 304.1307 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 308.5704 215.1551)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 316.9102 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 321.35 215.1551)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.2514 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 339.6911 215.1551)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.2624 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 384.7021 215.1551)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24 28.52 34.08\\\">including</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 424.3506 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 428.7903 215.1551)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.3518 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 438.7916 215.1551)\\\" x=\\\"0 5 7.28 12.84 15.12\\\">claim</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 462.2437 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 466.6835 215.1551)\\\" x=\\\"0 5.56 11.12 16.68 22.24\\\">under</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 492.2597 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 496.6994 215.1551)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 510.6008 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 515.0405 215.1551)\\\" x=\\\"0 5 7.78 11.11 13.39 18.39\\\">strict</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 536.2075 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 540.6472 215.1551)\\\" x=\\\"0 2.28 4.56 10.12 15.68 17.96 20.24 22.52 25.3\\\">liability</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 203.8367)\\\" x=\\\"0 5.56 11.12 16.12 18.9 22.23 24.51 30.07 35.63\\\">doctrine.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 190.5184)\\\" x=\\\"0 7.2217 15 21.1084 23.8867 31.1084 37.7783 44.4482\\\">NOTICES.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 80.3266 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 82.9828 190.5184)\\\" x=\\\"0 7.2217 12.7832 15.5615 17.8418 22.8418 28.4033\\\">Notices</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 116.3861 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 119.0424 190.5184)\\\" x=\\\"0 8.3301 13.8916\\\">may</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 137.934 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 140.5902 190.5184)\\\" x=\\\"0 5.5615\\\">be</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 151.7133 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 154.3695 190.5184)\\\" x=\\\"0 5.5615 7.8418 12.8418 18.4033\\\">given</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 178.3344 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 180.9906 190.5184)\\\" x=\\\"0 5.5615 11.123 14.4531 19.4531 25.0146 30.5762 36.1377 38.418 40.6982\\\">personally</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 226.6889 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 229.3451 190.5184)\\\" x=\\\"0 5.5615\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.2367 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 240.893 190.5184)\\\" x=\\\"0 5 10.5615 16.123\\\">sent</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.7943 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 262.4506 190.5184)\\\" x=\\\"0 5.5615\\\">by</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 273.0121 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 275.6684 190.5184)\\\" x=\\\"0 2.7783 5.0586 8.3887 13.3887\\\">first</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.8353 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 294.4916 190.5184)\\\" x=\\\"0 5 7.2803 12.8418 17.8418\\\">class</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 317.3334 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 319.9896 190.5184)\\\" x=\\\"0 8.3301 13.8916 16.1719 18.4522\\\">mail.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 341.2201 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 343.8764 190.5184)\\\" x=\\\"0 7.2217 12.7832 15.5615 17.8418 22.8418\\\">Notice</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 372.2797 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 374.9359 190.5184)\\\" x=\\\"0 8.3301 13.8916 16.1719 18.4522 24.0137\\\">mailed</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 404.5111 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.1674 190.5184)\\\" x=\\\"0 2.7783\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 415.5072 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 418.1635 190.5184)\\\" x=\\\"0 5.5615\\\">us</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 428.725 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 431.3812 190.5184)\\\" x=\\\"0 8.3301 13.8916 18.8916\\\">must</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 453.0512 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 455.7074 190.5184)\\\" x=\\\"0 5.5615\\\">be</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.8305 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 469.4867 190.5184)\\\" x=\\\"0 5 10.5615 16.1231\\\">sent</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 488.3881 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 491.0443 190.5184)\\\" x=\\\"0 2.7783\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.3842 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 502.0404 190.5184)\\\" x=\\\"0 2.7783 8.3398\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 515.9418 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 518.5981 190.5184)\\\" x=\\\"0 5.5615 11.123 16.6846 20.0146 25.5762 30.5762\\\">address</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 179.2)\\\" x=\\\"0 5 10.5615 16.1231 23.3447\\\">shown</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 62.0063 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 64.6625 179.2)\\\" x=\\\"0 2.2803\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 72.5043 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 75.1606 179.2)\\\" x=\\\"0 2.7783 8.3398 10.6201\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 90.7807 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 93.4369 179.2)\\\" x=\\\"0 6.6699 12.2314 15.5615 21.123 26.6846 35.0146 40.5762 46.1377 48.916\\\">Agreement,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 145.1312 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 147.7875 179.2)\\\" x=\\\"0 5.6115\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 156.7791 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 159.4854 179.2)\\\" x=\\\"0 5.6115\\\">as</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 170.1469 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 172.8531 179.2)\\\" x=\\\"0 7.2717\\\">we</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 185.7363 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 188.4426 179.2)\\\" x=\\\"0 5.5615 8.3398 13.9014 19.4629 22.793 30.0147 32.2949 37.2949\\\">otherwise</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.299 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 233.9553 179.2)\\\" x=\\\"0 5.5615 7.8418 11.1719 16.7334 21.7334\\\">direct</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 258.467 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 261.1232 179.2)\\\" x=\\\"0 2.7783 6.1084 11.6699\\\">from</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.1232 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 283.7795 179.2)\\\" x=\\\"0 2.7783 5.0586 13.3887\\\">time</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.7297 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 305.3859 179.2)\\\" x=\\\"0 2.8283\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 313.8258 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 316.532 179.2)\\\" x=\\\"0 2.7783 5.0586 13.3887 18.9502\\\">time.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.2605 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 340.9168 179.2)\\\" x=\\\"0 7.2217 12.7832 15.5615 17.8418 22.8418 28.4033\\\">Notices</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 374.3201 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 376.9764 179.2)\\\" x=\\\"0 2.8283\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 385.4162 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 388.1225 179.2)\\\" x=\\\"0 5.6115\\\">us</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 398.784 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 401.4902 179.2)\\\" x=\\\"0 5.5615 8.8916\\\">are</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 415.9434 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 418.5996 179.2)\\\" x=\\\"0 5.5615 11.1231 16.6846 25.0147 30.5762\\\">deemed</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.7373 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 457.3936 179.2)\\\" x=\\\"0 5.5615 7.8418 12.8418 18.4033\\\">given</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 481.3584 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 484.0147 179.2)\\\" x=\\\"0 7.2217 12.7832 18.3447\\\">when</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 507.9209 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 510.5771 179.2)\\\" x=\\\"0 2.7783 8.3398 13.9014\\\">they</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.4785 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 532.1348 179.2)\\\" x=\\\"0 5.5615 8.8916\\\">are</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 167.8816)\\\" x=\\\"0 5.5615 11.1231 14.4531 19.4531 25.0146 30.5762 36.1377 38.418 40.6982\\\">personally</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 78.7982 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.4545 167.8816)\\\" x=\\\"0 5.5615 7.8418 12.8418 18.4033\\\">given</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 105.4193 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 108.0756 167.8816)\\\" x=\\\"0 5.5615\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 116.9672 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 119.6234 167.8816)\\\" x=\\\"0 5.5615 10.5615 13.3398 18.9014 24.4629 26.7432 29.0234\\\">actually</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 153.6469 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 156.3031 167.8816)\\\" x=\\\"0 3.3301 8.8916 13.8916 19.4531 21.7334 26.7334 32.2949\\\">received</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 194.1596 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 196.8158 167.8816)\\\" x=\\\"0 5.6615\\\">at</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 205.3557 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 208.1119 167.8816)\\\" x=\\\"0 5.6115 11.223\\\">our</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 222.715 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 225.4213 167.8816)\\\" x=\\\"0 5.5615 11.123 16.6846 20.0146 25.5762 30.5762 35.5762\\\">address.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 263.7758 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 266.432 167.8816)\\\" x=\\\"0 7.2217 12.7832 15.5615 17.8418 22.8418 28.4033\\\">Notices</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.8353 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 302.4916 167.8816)\\\" x=\\\"0 5.6115 8.9916\\\">are</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 317.0947 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 319.801 167.8816)\\\" x=\\\"0 5.5615 11.123 16.6846 25.0146 30.5762\\\">deemed</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.9387 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 358.5949 167.8816)\\\" x=\\\"0 5.5615 7.8418 12.8418 18.4033\\\">given</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 382.5598 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 385.216 167.8816)\\\" x=\\\"0 2.8783\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.7559 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 396.5121 167.8816)\\\" x=\\\"0 5.05 10.6615\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 412.7852 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 415.4914 167.8816)\\\" x=\\\"0 7.2717 12.8832 18.4947\\\">when</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 439.5977 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 442.3039 167.8816)\\\" x=\\\"0 2.8283 8.4398 14.0514\\\">they</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 461.4053 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 464.1115 167.8816)\\\" x=\\\"0 5.6115 8.9916\\\">are</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 478.7147 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 481.4209 167.8816)\\\" x=\\\"0 5.5615 11.1231 14.4531 19.4531 25.0146 30.5762 36.1377 38.418 40.6982\\\">personally</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 527.1191 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 529.7754 167.8816)\\\" x=\\\"0 5.5615 7.8418 12.8418 18.4033\\\">given</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.7402 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 556.3965 167.8816)\\\" x=\\\"0 5.6615\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 156.5633)\\\" x=\\\"0 7.2717 12.8832 18.4947\\\">when</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 57.2063 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 59.9125 156.5633)\\\" x=\\\"0 5.5615 7.8418 13.4033 18.4033 23.9648\\\">placed</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 89.4389 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 92.0951 156.5633)\\\" x=\\\"0 2.3803\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 100.1369 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 102.8932 156.5633)\\\" x=\\\"0 2.8283 8.4398\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 116.9445 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 119.6508 156.5633)\\\" x=\\\"0 8.3301 13.8916 16.1719 18.4522\\\">mail,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 140.8813 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 143.5375 156.5633)\\\" x=\\\"0 5.5615 11.123 16.6846 20.0147 25.5762 30.5762 35.5762 41.1377\\\">addressed</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 190.2367 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 192.893 156.5633)\\\" x=\\\"0 2.7783\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 201.2328 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 203.8891 156.5633)\\\" x=\\\"0 5 10.5615\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 220.0121 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 222.6684 156.5633)\\\" x=\\\"0 5.5615\\\">at</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.0082 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 233.6645 156.5633)\\\" x=\\\"0 5 10.5615 16.123\\\">your</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 253.1176 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 255.7738 156.5633)\\\" x=\\\"0 5.5615 11.1231 16.6846 20.0147 25.5762 30.5762\\\">address</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.35 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 294.0062 156.5633)\\\" x=\\\"0 2.7783 8.3399 13.9014\\\">then</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 313.4691 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 316.1254 156.5633)\\\" x=\\\"0 5 10.5615 16.1231 23.3447\\\">shown</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 345.0316 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 347.6879 156.5633)\\\" x=\\\"0 5.5615\\\">on</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 358.8109 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 361.4672 156.5633)\\\" x=\\\"0 5.5615 11.1231\\\">our</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.9203 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 378.5766 156.5633)\\\" x=\\\"0 3.3301 8.8916 13.8916 19.4531 22.7832 28.3447 33.3447\\\">records,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 414.6996 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 417.3559 156.5633)\\\" x=\\\"0 5.5615 10.5615 16.123\\\">even</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 439.0404 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 441.6967 156.5633)\\\" x=\\\"0 2.7783 8.3398 13.9014 19.4629 25.0244\\\">though</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 472.2826 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 474.9389 156.5633)\\\" x=\\\"0 5 10.5615\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 491.0619 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 493.7182 156.5633)\\\" x=\\\"0 8.3301 10.6104 16.1719 21.7334\\\">might</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 518.2299 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 520.8861 156.5633)\\\" x=\\\"0 5.5615 11.123\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 145.2449)\\\" x=\\\"0 5.5615 10.5615 13.3398 18.9014 24.4629 26.7432 29.0234\\\">actually</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 67.1234 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 69.7797 145.2449)\\\" x=\\\"0 3.3301 8.8916 13.8916 19.4531 21.7334 26.7334\\\">receive</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 102.0746 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 104.7309 145.2449)\\\" x=\\\"0 5.5615 11.123\\\">our</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 119.184 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 121.8402 145.2449)\\\" x=\\\"0 8.3301 13.8916 16.1719 18.4521 24.0137\\\">mailed</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 151.4154 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 154.0717 145.2449)\\\" x=\\\"0 5.5615 11.1231 13.9014 16.1816 21.1816 26.7432\\\">notice.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 183.5932 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 186.2494 145.2449)\\\" x=\\\"0 6.6699 12.2314\\\">You</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 204.0424 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 206.6986 145.2449)\\\" x=\\\"0 5.8115 11.6231 15.2031 21.0146\\\">agree</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.5248 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 236.4311 145.2449)\\\" x=\\\"0 2.9283 8.6398 14.3514\\\">that</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 253.7107 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 256.517 145.2449)\\\" x=\\\"0 5.8615\\\">30</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 268.24 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 271.1963 145.2449)\\\" x=\\\"0 5.7115 11.4231 16.5731 21.7231\\\">days&apos;</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 294.9785 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 297.7848 145.2449)\\\" x=\\\"0 5.6615 11.3231 14.2014 16.5816 21.6816\\\">notice</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 325.1279 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 327.8842 145.2449)\\\" x=\\\"0 2.5803\\\">is</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.7645 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.7207 145.2449)\\\" x=\\\"0 3.4301 9.0916 14.7531 19.8531 25.5146 31.1762 36.8377 42.4992 44.8795 50.541\\\">reasonable,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 392.14 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 394.8963 145.2449)\\\" x=\\\"0 5.6615 11.3231 13.7033 19.3648 24.4648\\\">unless</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 424.4611 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 427.2174 145.2449)\\\" x=\\\"0 5.15 8.0783 13.7899 16.7182\\\">state</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 449.6471 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 452.4533 145.2449)\\\" x=\\\"0 2.5303 8.3418\\\">law</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.2668 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 471.173 145.2449)\\\" x=\\\"0 3.4301 9.0916 14.7531 20.4146 22.7949 26.225 31.8865\\\">requires</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 508.1596 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 510.9158 145.2449)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 517.0773 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 520.3336 145.2449)\\\" x=\\\"0 2.3803 8.0418 13.7033 19.3649 25.0264\\\">longer</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 133.9266)\\\" x=\\\"0 5.6615 11.3231 14.7531 17.1334 22.7949 28.4564\\\">period,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 64.4348 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 67.191 133.9266)\\\" x=\\\"0 2.5803\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 75.6328 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 78.5891 133.9266)\\\" x=\\\"0 7.3717 13.0832 15.5135 20.6635\\\">which</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 104.9641 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 107.7703 133.9266)\\\" x=\\\"0 5.15 10.8615 16.0115\\\">case</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 129.4934 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 132.2996 133.9266)\\\" x=\\\"0 5.25 11.0615\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 149.1727 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 152.0789 133.9266)\\\" x=\\\"0 5.7115 11.423 14.9031 20.6146\\\">agree</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 178.4051 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 181.2113 133.9266)\\\" x=\\\"0 2.9283 8.6398 14.3514\\\">that</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 198.491 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 201.2973 133.9266)\\\" x=\\\"0 3.0283 8.8398\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 215.9486 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 218.8549 133.9266)\\\" x=\\\"0 5.05 7.8783 13.4898 16.3182 21.9297 25.3098 28.7898 34.5014 40.2129 45.9244 48.3547 51.8348 57.5463\\\">state-required</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 282.1127 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 284.9189 133.9266)\\\" x=\\\"0 5.6615 11.3231 14.7531 17.1334 22.7949\\\">period</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 313.3754 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 316.1316 133.9266)\\\" x=\\\"0 2.5803\\\">is</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 324.0119 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 329.5182 133.9266)\\\" x=\\\"0 3.3301 8.8916 14.4531 19.4531 25.0147 30.5762 36.1377 41.6992 43.9795 49.541\\\">reasonable.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 381.8375 133.9266)\\\" x=\\\"0 2.6562\\\">  </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 387.15 133.9266)\\\" x=\\\"0 6.6699 12.2314\\\">You</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 404.943 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.5992 133.9266)\\\" x=\\\"0 5.5615 11.123 13.9014 19.4629 25.0244 28.3545 30.6348 35.6348\\\">authorize</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 448.7955 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 451.4518 133.9266)\\\" x=\\\"0 5.5615\\\">us</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 462.0133 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 464.6695 133.9266)\\\" x=\\\"0 2.7783\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 473.0094 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 475.6656 133.9266)\\\" x=\\\"0 5 10.5615 16.123\\\">send</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 497.3502 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 500.0064 133.9266)\\\" x=\\\"0 5.5615 11.1231 13.9014 16.1816 21.1816 26.7432\\\">notices</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 531.7496 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 534.4059 133.9266)\\\" x=\\\"0 2.7783\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 542.7457 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 545.402 133.9266)\\\" x=\\\"0 5 10.5615 16.123\\\">your</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 122.6082)\\\" x=\\\"0 5.56 13.89 19.45 21.73 24.01 26.67 32.23 37.79 43.35 46.68 52.24 57.24 62.24 64.9 70.46 76.02 78.3 83.86 88.86 93.86 96.52 102.08 105.41 110.97 116.53 118.81 124.37 126.65 129.43 134.99 140.55 143.21 148.77 153.77 156.43 158.71 164.27 171.49\\\">email address unless prohibited by law.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 109.2898)\\\" x=\\\"0 5 12.22 19.44\\\">JURY</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 59.2133 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 63.5195 109.2898)\\\" x=\\\"0 6.11 13.33 16.11 22.78\\\">TRIAL</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 91.8594 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 96.1656 109.2898)\\\" x=\\\"0 9.44 16.11 18.89 25.56 32.23\\\">WAIVER</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 135.6138 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 139.9201 109.2898)\\\" x=\\\"0 6.67 13.89\\\">AND</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 161.0334 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 165.3396 109.2898)\\\" x=\\\"0 6.67 13.89 20.56 23.34 29.45 36.67 43.34 49.45 52.23 60.01\\\">ARBITRATION</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 232.5662 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 236.8724 109.2898)\\\" x=\\\"0 7.22 12.78 19.45 26.67 33.34 40.01\\\">CLAUSE.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 279.6654 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 283.9716 109.2898)\\\" x=\\\"0 6.67\\\">By</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 295.6415 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 299.9478 109.2898)\\\" x=\\\"0 5 7.28 12.84 18.4 20.68 26.24 31.8\\\">signing,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 334.5327 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.8389 109.2898)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 354.962 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 359.2682 109.2898)\\\" x=\\\"0 5.56 11.12 14.45 20.01\\\">agree</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 384.8444 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 389.1507 109.2898)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 397.4905 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 401.7967 109.2898)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 417.4168 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 421.7231 109.2898)\\\" x=\\\"0 5 10.56 13.89\\\">Jury</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 440.6147 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 444.9209 109.2898)\\\" x=\\\"0 6.11 9.44 11.72 17.28\\\">Trial</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 464.4815 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 468.7877 109.2898)\\\" x=\\\"0 9.44 15 17.28 22.28 27.84\\\">Waiver</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.9596 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 504.2658 109.2898)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 520.9504 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 525.2566 109.2898)\\\" x=\\\"0 6.67 10 15.56 17.84 20.62 23.95 29.51 32.29 34.57 40.13\\\">Arbitration</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 97.9715)\\\" x=\\\"0 7.22 9.5 15.06 20.62 25.62 31.18 33.84 37.17 40.5 47.72 50 55.56 61.12 66.12 71.68 75.01 78.34\\\">Clause (“Clause”).</text></g><clipPath id=\\\"clip3-3\\\"><path d=\\\"M 35 76 L 573 76 L 573 94 L 35 94 L 35 76 z \\\"/></clipPath><path clip-path=\\\"url(#clip3-3)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 93.8719 L 572.95 93.8719 L 572.95 76.8719 L 35.45 76.8719 L 35.45 93.8719 z \\\"/><path clip-path=\\\"url(#clip3-3)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.15 91.8719 L 572.45 91.8719 L 572.45 80.5535 L 39.15 80.5535 L 39.15 91.8719 z \\\"/><path clip-path=\\\"url(#clip3-3)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 253.9396 91.8719 L 357.9396 91.8719 L 357.9396 79.8719 L 253.9396 79.8719 L 253.9396 91.8719 z \\\"/><g clip-path=\\\"url(#clip3-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 253.9396 82.6531)\\\" x=\\\"0 6.67 12.23 17.23 22.23 27.79 31.12 36.68 42.24 47.8 53.36 56.02 61.58 67.14 72.7 75.36 82.03 87.03 92.59 98.15\\\">Background and Scope</text></g><clipPath id=\\\"clip3-4\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip3-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 94.3719 L 573.45 94.3719 L 573.45 93.3719 L 34.95 93.3719 L 34.95 94.3719 z \\\"/><path clip-path=\\\"url(#clip3-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 77.3719 L 573.45 77.3719 L 573.45 76.3719 L 34.95 76.3719 L 34.95 77.3719 z \\\"/><path clip-path=\\\"url(#clip3-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 93.3719 L 573.45 93.3719 L 573.45 77.3719 L 572.45 77.3719 L 572.45 93.3719 z \\\"/><path clip-path=\\\"url(#clip3-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 93.3719 L 35.95 93.3719 L 35.95 77.3719 L 34.95 77.3719 L 34.95 93.3719 z \\\"/><g clip-path=\\\"url(#clip3-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 36.5264)\\\" x=\\\"0 6.498 11.997 14.391 16.785 21.789 26.793 29.295 34.299 39.303 44.307 504 506.3906 508.7812 511.1719 513.5625 515.9531 518.3438 520.7344 523.125 525.5156\\\">UT  07/2019          </text></g><g clip-path=\\\"url(#clip3-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 26.3398)\\\" x=\\\"0 6.003 11.007 16.011 21.015\\\">Page </text></g><g clip-path=\\\"url(#clip3-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 55.8097 26.3398)\\\" x=\\\"0\\\">4</text></g><g clip-path=\\\"url(#clip3-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.815 26.3398)\\\" x=\\\"0 2.394 7.398 9.9\\\"> of </text></g><g clip-path=\\\"url(#clip3-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 73.1021 26.3398)\\\" x=\\\"0\\\">7</text></g><g clip-path=\\\"url(#clip3-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#d9d9d9\\\" style=\\\"font-family:f3-0; font-size:54pt; white-space:pre\\\" transform=\\\"matrix(0.707 0.707 0.707 -0.707 135.6027 198.5094)\\\" x=\\\"0 56.016 96.048 136.08 176.112 216.144 236.16 284.184 324.216 344.232 364.248 416.232 456.264 480.24\\\">* D E M O *are</text></g><g clip-path=\\\"url(#clip3-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#002ba6\\\" style=\\\"font-family:f3-0; font-size:9pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.932 772)\\\" x=\\\"0 9.336 16.008 22.68 29.352 36.024 39.36 47.364 54.036 57.372 60.708 69.372 76.044 80.04 86.712 90.048 94.044 97.38 104.712 111.384 115.38 118.716 126.72 132.72 139.392 142.056 148.728 155.4 158.736 161.4 168.072 174.744 178.08 187.416 194.088 196.752 202.752 206.088 210.084 213.42 220.092 223.428 226.764 233.436 239.436 242.772 246.108 249.444 258.108 266.772 275.436 278.772 285.444 292.116 298.788 305.46 312.132 315.468 321.468 328.14\\\">Qoppa Software - For Evaluation Only - https://www.qoppa.com</text></g></g></svg></svg></g></svg><br>\\n<?xml version='1.0' encoding='UTF-8'?><svg id=\\\"qoppa_document\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" version=\\\"1.1\\\" xmlns=\\\"http://www.w3.org/2000/svg\\\" xmlns:xlink=\\\"http://www.w3.org/1999/xlink\\\"><!-- jPDFWeb v2019R1.03 - Demo Version --><style>title p { display: block; }</style><g id=\\\"qoppa_viewxform\\\" transform=\\\"matrix(1 0 0 1 0 0)\\\"><style type=\\\"text/css\\\">@font-face {font-family:f4-0;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f4-1;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f4-2;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}</style><svg id=\\\"qoppa_page_p4\\\" class=\\\"qoppa_page\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\"><rect class=\\\"qoppa_pageborder\\\" x=\\\"0.5pt\\\" y=\\\"0.5pt\\\" width=\\\"611pt\\\" height=\\\"791pt\\\" fill=\\\"none\\\" /><svg class=\\\"qoppa_pagecontents\\\" x=\\\"0pt\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" viewBox=\\\"0 0 612 792\\\" ><g class=\\\"qoppa_contentstream\\\" transform=\\\"matrix(1 0 0 -1 0 792)\\\" fill=\\\"black\\\" stroke=\\\"black\\\" stroke-width=\\\"1\\\" stroke-linecap=\\\"butt\\\" stroke-linejoin=\\\"miter\\\" stroke-miterlimit=\\\"10\\\"><clipPath id=\\\"clip4-1\\\"><path d=\\\"M 35 748 L 130 748 L 130 770 L 35 770 L 35 748 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-1)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 769.7 L 129.35 769.7 L 129.35 748.5906 L 35.45 748.5906 L 35.45 769.7 z \\\"/><path clip-path=\\\"url(#clip4-1)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 767.7 L 125.25 767.7 L 125.25 758.6453 L 39.55 758.6453 L 39.55 767.7 z \\\"/><path clip-path=\\\"url(#clip4-1)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 47.9683 767.7 L 116.9684 767.7 L 116.9684 757.7 L 47.9683 757.7 L 47.9683 767.7 z \\\"/><g clip-path=\\\"url(#clip4-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.9684 760.325)\\\" x=\\\"0 7.552 12 16.448 18.672 20.8 22.624 26.624 28.752 33.2 35.864 40.312 42.136 44.36 47.024 51.472 53.696 55.52 59.968 64.416\\\">What is arbitration?</text></g><clipPath id=\\\"clip4-2\\\"><path d=\\\"M 129 748 L 206 748 L 206 770 L 129 770 L 129 748 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 138.6945 760.325)\\\" x=\\\"0 5.336 9.784 11.912 16.36 18.184 20.408 24.856 27.52 31.968 36.416 38.64 40.464 44.464 48.912 51.04 53.264\\\">An alternative to</text></g><g clip-path=\\\"url(#clip4-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 157.5461 751.2703)\\\" x=\\\"0 4 8.448 12.896 15.56 17.784\\\">court.</text></g><clipPath id=\\\"clip4-3\\\"><path d=\\\"M 205 748 L 573 748 L 573 770 L 205 770 L 205 748 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 760.325)\\\" x=\\\"0 2.224\\\">In</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 216.5219 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 220.3852 760.325)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 26.768 31.216 35.664\\\">arbitration,</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 258.2758 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 262.139 760.325)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 266.5883 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 270.4515 760.325)\\\" x=\\\"0 2.224 6.672 8.496 11.16\\\">third</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 286.0609 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 289.9242 760.325)\\\" x=\\\"0 4.448 8.896 11.56 13.784\\\">party</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 307.7094 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 311.5727 760.325)\\\" x=\\\"0 2.664 5.504 10.84 13.504 17.952 19.776 22 26.448 29.112 31.952\\\">(&quot;Arbiter&quot;)</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 346.1898 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 350.0531 760.325)\\\" x=\\\"0 4 8.448 10.272 14.272 18.72\\\">solves</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 372.7758 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 376.639 760.325)\\\" x=\\\"0 5.776 7.6 11.6 16.048 20.496 22.72 27.168\\\">Disputes</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 407.8109 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 411.6742 760.325)\\\" x=\\\"0 1.824\\\">in</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 417.9477 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 421.8109 760.325)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 426.2601 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 430.1234 760.325)\\\" x=\\\"0 4.448 8.896 13.344 16.008 17.832 22.28\\\">hearing</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.8578 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 460.7211 760.325)\\\" x=\\\"0 2.664 5.504 9.952 14.4 18.848 21.512 23.336 27.784 32.232 35.072 37.736\\\">(&quot;hearing&quot;).</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 500.6859 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 504.5492 760.325)\\\" x=\\\"0 5.336 9.784 14.232\\\">You,</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.0062 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 524.8695 760.325)\\\" x=\\\"0 2.664 7.112 8.936 13.384 15.608 20.056\\\">related</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.3773 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 553.2406 760.325)\\\" x=\\\"0 2.224 6.672 8.496 11.16\\\">third</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 751.2703)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056 24.056 26.28 28.408 32.856 37.304 41.752 43.88 49.656 54.104 56.328 58.456 64.232 68.68 70.504 74.504 78.952 81.08 83.304 87.752 92.2 94.328 96.992 98.816 103.264 107.712 109.936 112.064 114.288 118.736 120.864 125.312 129.76 131.888 134.112 138.56 140.688 144.688 149.136 153.584 156.248 158.472 160.696 162.824 168.16 172.608 176.608 181.056 183.184 186.024 190.472 194.92 197.584 199.808 201.632 206.08 210.08 212.92 215.048 217.272 221.72 224.384 228.832 233.28 235.408 237.232 241.68 244.344 248.344 250.472 252.696 255.36 257.184 261.632 263.456 267.456\\\">parties, and we, waive the right to go to court. Such &quot;parties&quot; forgo jury trials.</text></g><clipPath id=\\\"clip4-4\\\"><path d=\\\"M 35 727 L 130 727 L 130 749 L 35 749 L 35 727 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-4)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 748.5906 L 129.35 748.5906 L 129.35 727.4813 L 35.45 727.4813 L 35.45 748.5906 z \\\"/><path clip-path=\\\"url(#clip4-4)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 746.5906 L 125.25 746.5906 L 125.25 728.4813 L 39.55 728.4813 L 39.55 746.5906 z \\\"/><path clip-path=\\\"url(#clip4-4)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 41.6461 746.5906 L 123.6461 746.5906 L 123.6461 736.5906 L 41.6461 736.5906 L 41.6461 746.5906 z \\\"/><g clip-path=\\\"url(#clip4-4)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 41.6461 739.2156)\\\" x=\\\"0 2.224 6.224 8.352 10.176 12.4 14.528 18.976 20.8 23.024 25.248 29.696 32.36 36.808 41.256 43.48 45.608 47.832 50.496 54.944 61.608 63.736 67.736 72.184 76.632 79.296\\\">Is it different from court</text></g><path clip-path=\\\"url(#clip4-4)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 56.4156 737.5359 L 108.4156 737.5359 L 108.4156 727.5359 L 56.4156 727.5359 L 56.4156 737.5359 z \\\"/><g clip-path=\\\"url(#clip4-4)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 56.4156 730.1609)\\\" x=\\\"0 4.448 8.896 13.344 15.472 17.296 21.744 24.408 28.408 30.536 32.76 35.424 37.248 41.696 43.52 47.52\\\">and jury trials?</text></g><clipPath id=\\\"clip4-5\\\"><path d=\\\"M 129 727 L 206 727 L 206 749 L 129 749 L 129 727 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-5)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 159.5461 739.2156)\\\" x=\\\"0 5.336 9.784 13.784\\\">Yes.</text></g><clipPath id=\\\"clip4-6\\\"><path d=\\\"M 205 727 L 573 727 L 573 749 L 205 749 L 205 727 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 739.2156)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 223.6351 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 226.6552 739.2156)\\\" x=\\\"0 4.448 8.896 13.344 16.008 17.832 22.28\\\">hearing</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 253.3896 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 256.4096 739.2156)\\\" x=\\\"0 1.824\\\">is</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.2338 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 265.2539 739.2156)\\\" x=\\\"0 4.448 7.112 8.936 12.936 17.384 19.608\\\">private</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 289.3125 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 292.3325 739.2156)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 305.6802 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 308.7002 739.2156)\\\" x=\\\"0 1.824 6.272 10.272\\\">less</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 322.9737 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 325.9937 739.2156)\\\" x=\\\"0 2.224 6.672 9.336 16 20.448\\\">formal</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.2672 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 351.2872 739.2156)\\\" x=\\\"0 2.224 6.672 11.12\\\">than</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 366.8575 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 369.8776 739.2156)\\\" x=\\\"0 4 8.448 12.896 15.56 17.784\\\">court.</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 389.8854 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 392.9055 739.2156)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608\\\">Arbiters</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 420.5148 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 423.5349 739.2156)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 438.6482 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 441.6682 739.2156)\\\" x=\\\"0 1.824 3.648 10.312 12.136\\\">limit</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.0276 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 459.0477 739.2156)\\\" x=\\\"0 4.448 7.112 11.56 14.224 18.672 23.12 27.568 30.232 32.056 36.504\\\">pre-hearing</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 500.0086 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 503.0286 739.2156)\\\" x=\\\"0 2.224 6.672 10.672\\\">fact</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 515.9232 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 518.9432 739.2156)\\\" x=\\\"0 2.224 4.048 8.496 12.944 14.768 19.216 23.664\\\">finding,</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 544.8338 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 547.8539 739.2156)\\\" x=\\\"0 4 8.448 10.272 12.096 16.544\\\">called</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 730.1609)\\\" x=\\\"0 2.84 7.288 9.112 13.112 17.112 21.56 25.56 30.008 32.672 36.672 38.896 41.736 43.864 48.752 53.2 57.648 59.776 64.224 68.672 72.672 74.496 78.496 80.32 84.768 89.216 91.344 93.168 97.168 99.296 101.52 103.344 107.792 112.24 114.064 116.288 118.416 124.192 128.64 133.088 135.752 137.976 141.976 144.104 146.768 151.216 153.88 158.328 160.152 164.152 166.28 170.728 174.728 179.176 181.84 184.064 188.512 191.176 195.624 197.752 203.088 205.752 210.2 212.024 214.248 218.696 221.36 225.36\\\">&quot;discovery.&quot; The decision is final. Courts rarely overturn Arbiters.</text></g><clipPath id=\\\"clip4-7\\\"><path d=\\\"M 35 706 L 130 706 L 130 728 L 35 728 L 35 706 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-7)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 727.4813 L 129.35 727.4813 L 129.35 706.3719 L 35.45 706.3719 L 35.45 727.4813 z \\\"/><path clip-path=\\\"url(#clip4-7)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 725.4813 L 125.25 725.4813 L 125.25 707.3719 L 39.55 707.3719 L 39.55 725.4813 z \\\"/><path clip-path=\\\"url(#clip4-7)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 44.2789 725.4813 L 121.2789 725.4813 L 121.2789 715.4813 L 44.2789 715.4813 L 44.2789 725.4813 z \\\"/><g clip-path=\\\"url(#clip4-7)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 44.2789 718.1062)\\\" x=\\\"0 7.552 12 16.448 18.576 23.024 27.472 31.92 35.92 38.048 40.272 44.72 49.168 51.296 57.072 58.896 63.344 67.792 71.792\\\">Who does the Clause</text></g><path clip-path=\\\"url(#clip4-7)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 70.3941 716.4266 L 95.3941 716.4266 L 95.3941 706.4266 L 70.3941 706.4266 L 70.3941 716.4266 z \\\"/><g clip-path=\\\"url(#clip4-7)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 70.3941 709.0516)\\\" x=\\\"0 4 8.448 12.448 16.896 19.56\\\">cover?</text></g><clipPath id=\\\"clip4-8\\\"><path d=\\\"M 129 706 L 206 706 L 206 728 L 129 728 L 129 706 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 144.5226 718.1062)\\\" x=\\\"0 5.336 9.784 14.232 16.456 18.584 24.36 28.36 30.584 32.712 37.16 41.608\\\">You, Us, and</text></g><g clip-path=\\\"url(#clip4-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 154.4348 709.0516)\\\" x=\\\"0 6.224 8.448 12.896 17.344 20.008 24.008\\\">Others.</text></g><clipPath id=\\\"clip4-9\\\"><path d=\\\"M 205 706 L 573 706 L 573 728 L 205 728 L 205 706 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 718.1062)\\\" x=\\\"0 4.888 9.336 11.16\\\">This</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.0101 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 228.5163 718.1062)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496\\\">Clause</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 253.4655 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 256.9716 718.1062)\\\" x=\\\"0 4.448 8.896 12.896 17.344 20.008 24.456\\\">governs</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 285.4326 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 288.9387 718.1062)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 300.0598 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 303.5659 718.1062)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056 24.056\\\">parties,</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.8472 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 333.3533 718.1062)\\\" x=\\\"0 2.224 6.672 11.12 12.944\\\">their</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.9627 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 352.4688 718.1062)\\\" x=\\\"0 4.448 8.896 10.72 13.384 17.384\\\">heirs,</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 372.0782 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 375.5844 718.1062)\\\" x=\\\"0 4 8.448 12.448 16.448 20.896 24.896 28.896 33.344 36.008 40.008\\\">successors,</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 417.8187 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 421.3249 718.1062)\\\" x=\\\"0 4.448 8.448 12.448 14.272 18.72 23.168 27.168\\\">assigns,</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 450.7194 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 454.2255 718.1062)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.5732 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 471.0793 718.1062)\\\" x=\\\"0 2.224 6.672 8.496 11.16\\\">third</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.6887 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 490.1949 718.1062)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056\\\">parties</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 514.2535 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 517.7596 718.1062)\\\" x=\\\"0 2.664 7.112 8.936 13.384 15.608 20.056\\\">related</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 542.2674 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 545.7735 718.1062)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.4454 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 555.9515 718.1062)\\\" x=\\\"0 4.448 8.896\\\">any</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 709.0516)\\\" x=\\\"0 5.776 7.6 11.6 16.048 20.496 22.72 27.168\\\">Dispute.</text></g><clipPath id=\\\"clip4-10\\\"><path d=\\\"M 35 630 L 130 630 L 130 707 L 35 707 L 35 630 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-10)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 706.3719 L 129.35 706.3719 L 129.35 630.9344 L 35.45 630.9344 L 35.45 706.3719 z \\\"/><path clip-path=\\\"url(#clip4-10)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 704.3719 L 125.25 704.3719 L 125.25 686.2625 L 39.55 686.2625 L 39.55 704.3719 z \\\"/><path clip-path=\\\"url(#clip4-10)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 47.7711 704.3719 L 117.7711 704.3719 L 117.7711 694.3719 L 47.7711 694.3719 L 47.7711 704.3719 z \\\"/><g clip-path=\\\"url(#clip4-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.7711 696.9969)\\\" x=\\\"0 7.552 12 13.824 17.824 22.272 24.4 30.176 32 36 40.448 44.896 47.12 51.568 55.568 57.696 62.144 64.808\\\">Which Disputes are</text></g><path clip-path=\\\"url(#clip4-10)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 65.9449 695.3172 L 98.9449 695.3172 L 98.9449 685.3172 L 65.9449 685.3172 L 65.9449 695.3172 z \\\"/><g clip-path=\\\"url(#clip4-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 65.9449 687.9422)\\\" x=\\\"0 4 8.448 12.448 16.896 19.56 24.008 28.456\\\">covered?</text></g><clipPath id=\\\"clip4-11\\\"><path d=\\\"M 129 630 L 206 630 L 206 707 L 129 707 L 129 630 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 145.298 696.9969)\\\" x=\\\"0 5.336 7.16 8.984 11.112 16.888 18.712 22.712 27.16 31.608 33.832 38.28 42.28\\\">All Disputes.</text></g><clipPath id=\\\"clip4-12\\\"><path d=\\\"M 205 630 L 573 630 L 573 707 L 205 707 L 205 630 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 696.9969)\\\" x=\\\"0 2.224\\\">In</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 216.5219 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 220.3165 696.9969)\\\" x=\\\"0 2.224 6.672 8.496\\\">this</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 232.8126 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 236.6072 696.9969)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496 24.944\\\">Clause,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 263.7791 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 267.5738 696.9969)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 278.6949 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 282.4895 696.9969)\\\" x=\\\"0 5.776 10.224 12.888\\\">word</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.8293 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 303.624 696.9969)\\\" x=\\\"0 2.84 8.616 10.44 14.44 18.888 23.336 25.56 30.008 34.008\\\">&quot;Disputes&quot;</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 340.4755 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 344.2702 696.9969)\\\" x=\\\"0 4.448 8.896\\\">has</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 357.1686 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 360.9633 696.9969)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 372.0844 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 375.879 696.9969)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456 24.904 28.904\\\">broadest</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 407.0118 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 410.8065 696.9969)\\\" x=\\\"0 4.448 8.896 12.896 16.896 18.72 23.168 24.992\\\">possible</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 440.2518 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 444.0464 696.9969)\\\" x=\\\"0 6.664 11.112 15.56 20.008 21.832 26.28 30.728\\\">meaning.</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 477.0034 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 480.7981 696.9969)\\\" x=\\\"0 4.888 9.336 11.16\\\">This</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 495.9582 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 499.7529 696.9969)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496\\\">Clause</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 524.7021 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 528.4968 696.9969)\\\" x=\\\"0 4.448 8.896 12.896 17.344 20.008 24.456\\\">governs</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 556.9577 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 560.7523 696.9969)\\\" x=\\\"0 4.448 6.272\\\">all</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 687.9422)\\\" x=\\\"0 2.84 8.616 10.44 14.44 18.888 23.336 25.56 30.008 34.008\\\">&quot;Disputes&quot;</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 246.7015 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 248.8785 687.9422)\\\" x=\\\"0 1.824 6.272 10.272 14.72 16.544 20.544 22.368 26.816\\\">involving</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.148 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 282.3249 687.9422)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 293.446 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 295.6229 687.9422)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056 24.056\\\">parties.</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 321.9041 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 324.081 687.9422)\\\" x=\\\"0 4.888 9.336 11.16\\\">This</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 339.2412 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 341.4181 687.9422)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44\\\">includes</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 370.8634 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 373.0403 687.9422)\\\" x=\\\"0 4.448 6.272\\\">all</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 381.1379 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 383.3148 687.9422)\\\" x=\\\"0 4 5.824 10.272 12.096 18.76\\\">claims</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 406.0765 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 408.2534 687.9422)\\\" x=\\\"0 4.448 8.448 12.896\\\">even</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 425.6011 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 427.778 687.9422)\\\" x=\\\"0 1.824 6.272 10.72 12.544 15.208 19.656 23.656 25.88 27.704\\\">indirectly</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 459.485 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 461.6619 687.9422)\\\" x=\\\"0 2.664 7.112 8.936 13.384 15.608 20.056\\\">related</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.1698 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 488.3466 687.9422)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 495.0185 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 497.1954 687.9422)\\\" x=\\\"0 4 8.448 12.896\\\">your</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.7579 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 514.9348 687.9422)\\\" x=\\\"0 4.448 8.896 13.344 15.168 16.992 20.992 25.44 27.664 29.488 33.936\\\">application</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.3254 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 555.5023 687.9422)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 678.8875)\\\" x=\\\"0 4.448 8.896 11.56 16.008 20.456 27.12 31.568 36.016 38.24\\\">agreements</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 252.0961 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 254.4013 678.8875)\\\" x=\\\"0 5.776 7.6 9.824\\\">with</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 268.6747 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 270.9799 678.8875)\\\" x=\\\"0 4.448 8.448\\\">us.</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.6518 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 283.957 678.8875)\\\" x=\\\"0 4.888 9.336 11.16\\\">This</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.1172 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 301.4224 678.8875)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44\\\">includes</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 330.8677 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 333.1729 678.8875)\\\" x=\\\"0 4 5.824 10.272 12.096 18.76\\\">claims</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.9346 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 358.2398 678.8875)\\\" x=\\\"0 2.664 7.112 8.936 13.384 15.608 20.056\\\">related</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 382.7477 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 385.0529 678.8875)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 391.7247 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 394.0299 678.8875)\\\" x=\\\"0 1.824 6.272 8.496 12.944 15.608 22.272 26.72 28.944 30.768 35.216\\\">information</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 433.6979 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 436.0031 678.8875)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 448.9016 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 451.2068 678.8875)\\\" x=\\\"0 4.448 7.112 11.56 15.56 17.384 21.832 26.28 30.28 32.104\\\">previously</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 487.3161 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 489.6213 678.8875)\\\" x=\\\"0 4.448 8.896 12.896\\\">gave</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 506.969 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 509.2742 678.8875)\\\" x=\\\"0 4.448 8.448\\\">us.</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 519.9461 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 522.2513 678.8875)\\\" x=\\\"0 2.224\\\">It</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.6966 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 529.0018 678.8875)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44\\\">includes</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 558.4471 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 560.7523 678.8875)\\\" x=\\\"0 4.448 6.272\\\">all</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 669.8328)\\\" x=\\\"0 4.448 8.896 12.896\\\">past</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 224.9711 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 227.1634 669.8328)\\\" x=\\\"0 4.448 8.896 11.56 16.008 20.456 27.12 31.568 36.016 38.24 42.24\\\">agreements.</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 271.6321 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 273.8245 669.8328)\\\" x=\\\"0 2.224\\\">It</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 278.2698 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 280.4621 669.8328)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44 29.44\\\">includes,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.13 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 314.3223 669.8328)\\\" x=\\\"0 4.448\\\">as</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 322.7716 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 324.9639 669.8328)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 340.0772 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 342.2695 669.8328)\\\" x=\\\"0 4.448\\\">be</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.1679 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 353.3602 669.8328)\\\" x=\\\"0 4.448 8.896 13.344 15.168 16.992 20.992 25.44 29.888 31.712 36.16\\\">applicable,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 391.7508 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 393.9431 669.8328)\\\" x=\\\"0 4.448 8.896\\\">any</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 406.8416 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 409.0339 669.8328)\\\" x=\\\"0 4.448 8.896 13.344 15.168 17.392 19.216 23.664 28.112 32.56\\\">additional</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 443.4245 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 445.6168 669.8328)\\\" x=\\\"0 4.448 8.896 11.56 13.384 17.832 22.28 26.28\\\">periods,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.1246 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 476.3169 669.8328)\\\" x=\\\"0 4.448 8.448 10.672 15.12 19.568 23.568 25.392 29.84 34.288 38.288\\\">extensions,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 516.8326 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 519.0249 669.8328)\\\" x=\\\"0 2.664 7.112 11.56 16.008 21.784 26.232 28.056 32.056\\\">renewals,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.31 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 555.5023 669.8328)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 660.7781)\\\" x=\\\"0 4.448 6.272 10.72 15.168 19.168\\\">plans.</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.2445 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 233.5225 660.7781)\\\" x=\\\"0 2.224\\\">It</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 237.9678 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 240.2458 660.7781)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44\\\">includes</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 269.6911 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 271.9691 660.7781)\\\" x=\\\"0 4 5.824 10.272 12.096 18.76\\\">claims</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 294.7308 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 297.0088 660.7781)\\\" x=\\\"0 2.664 7.112 8.936 13.384 15.608 20.056\\\">related</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 321.5167 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 323.7946 660.7781)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 330.4665 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 332.7445 660.7781)\\\" x=\\\"0 4.448 8.896 15.56 20.008 24.456 28.904\\\">damaged</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 366.1039 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 368.3819 660.7781)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456 23.12 25.344 29.344\\\">property,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 399.9522 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 402.2302 660.7781)\\\" x=\\\"0 4.448 8.896 12.896 17.344 21.792 24.016\\\">buyout,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 428.4724 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 430.7504 660.7781)\\\" x=\\\"0 2.664 7.112 8.936 13.384 17.384 19.608 24.056 26.28 30.728 37.392 41.84 46.288 48.512\\\">r* D E M O *t,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 481.4887 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 483.7667 660.7781)\\\" x=\\\"0 1.824 6.272 10.272 14.272\\\">loss,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 500.2627 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 502.5408 660.7781)\\\" x=\\\"0 4.448 8.896 15.56 20.008 24.456 28.904\\\">damage,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 533.6736 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 535.9516 660.7781)\\\" x=\\\"0 5.776 10.224 12.888 15.552 20 24.448 26.672 30.672\\\">warranty,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 651.7234)\\\" x=\\\"0 6.664 11.112 12.936 17.384 19.608 24.056 28.504 32.952 37.4 41.4 45.848\\\">maintenance,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.9281 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 260.595 651.7234)\\\" x=\\\"0 4 8.448 10.272 12.096 16.544 20.544 22.768 24.592 29.04 33.488\\\">collection,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 296.3099 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 298.9768 651.7234)\\\" x=\\\"0 4.448 8.896 12.896 16.896 21.344 25.344 29.344 31.168 35.616 40.064\\\">possession,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 341.2697 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 343.9366 651.7234)\\\" x=\\\"0 4.448 7.112 8.936 12.936 17.384 21.384 25.384\\\">privacy,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.546 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 374.2129 651.7234)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 387.5606 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 390.2275 651.7234)\\\" x=\\\"0 4 8.448 12.448 14.672 19.12 25.784 30.232\\\">customer</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 423.1259 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 425.7928 651.7234)\\\" x=\\\"0 1.824 6.272 8.496 12.944 15.608 22.272 26.72 28.944 30.768 35.216 39.664\\\">information.</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.6834 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 470.3503 651.7234)\\\" x=\\\"0 2.224\\\">It</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.7957 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 477.4626 651.7234)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44\\\">includes</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 506.9079 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 509.5748 651.7234)\\\" x=\\\"0 4 5.824 10.272 12.096 18.76\\\">claims</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 532.3365 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 535.0034 651.7234)\\\" x=\\\"0 2.664 7.112 8.936 13.384 15.608 20.056\\\">related</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.5112 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 562.1781 651.7234)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 642.6688)\\\" x=\\\"0 4 8.448 10.672 12.896 14.72 19.168\\\">setting</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.4672 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 236.1411 642.6688)\\\" x=\\\"0 4.448 8.448 10.272 14.72\\\">aside</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 255.313 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 257.987 642.6688)\\\" x=\\\"0 2.224 6.672 8.496\\\">this</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 270.4831 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 273.157 642.6688)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496 24.944\\\">Clause.</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 300.3289 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 303.0029 642.6688)\\\" x=\\\"0 2.224\\\">It</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 307.4482 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 310.1221 642.6688)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44\\\">includes</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 339.5674 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 342.2414 642.6688)\\\" x=\\\"0 4 5.824 10.272 12.096 18.76\\\">claims</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 365.0031 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 367.6771 642.6688)\\\" x=\\\"0 4.448 8.896 13.344 17.792\\\">about</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 387.6966 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 390.3706 642.6688)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 401.4917 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 404.1656 642.6688)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496 24.944 26.472\\\">Clause&apos;s</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.6422 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 437.3161 642.6688)\\\" x=\\\"0 4 8.448 10.272 12.096 16.544 18.368 20.592\\\">validity</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 461.9099 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 464.5838 642.6688)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 477.9315 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 480.6055 642.6688)\\\" x=\\\"0 4 8 12.448 16.896 21.344\\\">scope.</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 504.1758 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 506.8497 642.6688)\\\" x=\\\"0 2.224\\\">It</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 511.295 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 513.969 642.6688)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44\\\">includes</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 543.4143 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 546.0883 642.6688)\\\" x=\\\"0 4 5.824 10.272 12.096 18.76\\\">claims</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 633.6141)\\\" x=\\\"0 4.448 8.896 13.344 17.792 20.016 22.144 27.92 32.368 36.816 39.04 43.488 47.936 50.6 52.728 54.952 59.4 61.528 65.976 68.64 73.088 74.912 77.136 79.8 84.248 86.472 90.92\\\">about whether to arbitrate.</text></g><clipPath id=\\\"clip4-13\\\"><path d=\\\"M 35 578 L 130 578 L 130 631 L 35 631 L 35 578 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-13)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 630.9344 L 129.35 630.9344 L 129.35 578.6609 L 35.45 578.6609 L 35.45 630.9344 z \\\"/><path clip-path=\\\"url(#clip4-13)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 628.9344 L 125.25 628.9344 L 125.25 619.8797 L 39.55 619.8797 L 39.55 628.9344 z \\\"/><path clip-path=\\\"url(#clip4-13)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 41.1227 628.9344 L 124.1227 628.9344 L 124.1227 618.9344 L 41.1227 618.9344 L 41.1227 628.9344 z \\\"/><g clip-path=\\\"url(#clip4-13)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 41.1227 621.5594)\\\" x=\\\"0 5.336 8 12.448 14.576 18.576 23.024 27.472 29.6 35.376 39.824 41.648 45.648 47.472 51.92 56.368 58.496 61.16 62.984 67.432 71.88 74.104 78.104\\\">Are you waiving rights?</text></g><clipPath id=\\\"clip4-14\\\"><path d=\\\"M 129 578 L 206 578 L 206 631 L 129 631 L 129 578 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-14)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 159.5461 621.5594)\\\" x=\\\"0 5.336 9.784 13.784\\\">Yes.</text></g><clipPath id=\\\"clip4-15\\\"><path d=\\\"M 205 578 L 573 578 L 573 631 L 205 631 L 205 578 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-15)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 621.5594)\\\" x=\\\"0 5.336 9.784 14.232\\\">You </text></g><g clip-path=\\\"url(#clip4-15)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 225.85 621.5594)\\\" x=\\\"0 5.776 10.224 12.048 16.048\\\">waive</text></g><path clip-path=\\\"url(#clip4-15)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 225.85 620.213 L 225.85 620.213 L 245.85 620.213 L 246.1833 620.213 L 246.1833 619.5464 L 245.85 619.5464 L 225.85 619.5464 L 225.5167 619.5464 L 225.5167 620.213 z \\\"/><g clip-path=\\\"url(#clip4-15)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.85 621.5594)\\\" x=\\\"0 2.128 6.128 10.576 15.024 17.688 19.816 22.48 24.304 28.752 33.2 35.424 39.424 41.552 43.776 48.224\\\"> your rights to:</text></g><g clip-path=\\\"url(#clip4-15)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 611.5047)\\\" x=\\\"0 4.448 6.672 8.8 14.576 19.024 23.024 27.472 29.6 31.424 35.872 38.536 40.36 44.808 48.808 50.936 54.936 59.384 61.208 65.208 69.656 71.784 77.56 79.384 83.384 87.832 92.28 94.504 98.952 102.952\\\">1. Have juries solve Disputes.</text></g><g clip-path=\\\"url(#clip4-15)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 601.45)\\\" x=\\\"0 4.448 6.672 8.8 14.576 19.024 23.024 27.472 29.6 33.6 38.048 42.496 45.16 47.384 51.384 53.608 55.736 60.184 62.408 66.856 71.304 73.968 76.096 78.32 82.768 87.216 91.664 93.792 97.792 104.456 108.904 110.728 112.552 115.216 119.216 121.04 125.488 127.312 133.976 137.976 140.104 144.104 148.552 153 155.664 157.888 161.888 164.112 166.24 170.24 174.688 176.512 180.512 184.96 187.088 192.864 194.688 198.688 203.136 207.584 209.808 214.256 218.256\\\">2. Have courts, other than small-claims courts, solve Disputes.</text></g><g clip-path=\\\"url(#clip4-15)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 591.3953)\\\" x=\\\"0 4.448 6.672 8.8 14.136 18.584 21.248 25.248 29.696 31.824 36.272 40.272 42.4 46.848 48.976 53.424 56.088 57.912 61.912 66.36 68.584 73.032 75.16 79.608 81.832 84.056 88.504 91.168 95.616 100.064 104.064 106.192 110.64 115.088 119.536 123.984 126.648 131.096 132.92 135.048 139.496 142.16 144.288 146.112 150.56 152.688 157.136 159.264 161.928 166.376 170.824 173.488 177.936 181.936 186.384 190.832 193.056 197.504 199.728 201.552 205.552 210 212.128 216.128 220.576 225.024 229.472 233.472 235.296 237.52 241.52\\\">3. Serve as a private attorney general or in a* D E M O *tive capacity.</text></g><g clip-path=\\\"url(#clip4-15)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 581.3406)\\\" x=\\\"0 4.448 6.672 8.8 14.136 18.584 20.712 22.536 26.984 29.112 33.56 35.688 39.688 41.512 45.96 49.96 53.96 56.088 60.536 64.536 66.76 68.584 73.032 77.48\\\">4. Be in a class action.</text></g><clipPath id=\\\"clip4-16\\\"><path d=\\\"M 35 530 L 130 530 L 130 579 L 35 579 L 35 530 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-16)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 578.6609 L 129.35 578.6609 L 129.35 530.3875 L 35.45 530.3875 L 35.45 578.6609 z \\\"/><path clip-path=\\\"url(#clip4-16)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 576.6609 L 125.25 576.6609 L 125.25 558.5516 L 39.55 558.5516 L 39.55 576.6609 z \\\"/><path clip-path=\\\"url(#clip4-16)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 44.0152 576.6609 L 121.0152 576.6609 L 121.0152 566.6609 L 44.0152 566.6609 L 44.0152 576.6609 z \\\"/><g clip-path=\\\"url(#clip4-16)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 44.0152 569.2859)\\\" x=\\\"0 5.336 8 12.448 14.576 18.576 23.024 27.472 29.6 35.376 39.824 41.648 45.648 47.472 51.92 56.368 58.496 62.496 64.32 68.768 72.768\\\">Are you waiving class</text></g><path clip-path=\\\"url(#clip4-16)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 58.6109 567.6063 L 106.6109 567.6063 L 106.6109 557.6063 L 58.6109 557.6063 L 58.6109 567.6063 z \\\"/><g clip-path=\\\"url(#clip4-16)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 58.6109 560.2312)\\\" x=\\\"0 4.448 8.448 10.672 12.496 16.944 21.392 23.52 26.184 28.008 32.456 36.904 39.128 43.128\\\">action rights?</text></g><clipPath id=\\\"clip4-17\\\"><path d=\\\"M 129 530 L 206 530 L 206 579 L 129 579 L 129 530 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-17)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 159.5461 569.2859)\\\" x=\\\"0 5.336 9.784 13.784\\\">Yes.</text></g><clipPath id=\\\"clip4-18\\\"><path d=\\\"M 205 530 L 573 530 L 573 579 L 205 579 L 205 530 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 569.2859)\\\" x=\\\"0 5.7774 12 17.7774 23.5547 28.4414\\\">COURTS</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 243.6273 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 245.7523 569.2859)\\\" x=\\\"0 5.3359 11.1133\\\">AND</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.643 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 264.768 569.2859)\\\" x=\\\"0 5.3359 11.1133 16.4492 18.6719 23.5586 28.8945 34.6719\\\">ARBITERS</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 304.7758 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 306.9008 569.2859)\\\" x=\\\"0\\\">W</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 306.9008 567.9396 L 306.9008 567.9396 L 314.9008 567.9396 L 315.2341 567.9396 L 315.2341 567.2729 L 314.9008 567.2729 L 306.9008 567.2729 L 306.5674 567.2729 L 306.5674 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 314.4515 569.2859)\\\" x=\\\"0\\\">O</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 314.4515 567.9396 L 314.4515 567.9396 L 320.4515 567.9396 L 320.7849 567.9396 L 320.7849 567.2729 L 320.4515 567.2729 L 314.4515 567.2729 L 314.1182 567.2729 L 314.1182 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 320.6742 569.2859)\\\" x=\\\"0\\\">N</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 320.6742 567.9396 L 320.6742 567.9396 L 326.6742 567.9396 L 327.0075 567.9396 L 327.0075 567.2729 L 326.6742 567.2729 L 320.6742 567.2729 L 320.3409 567.2729 L 320.3409 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 326.4515 569.2859)\\\" x=\\\"0\\\">&apos;</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 326.4515 567.9396 L 326.4515 567.9396 L 328.4515 567.9396 L 328.7849 567.9396 L 328.7849 567.2729 L 328.4515 567.2729 L 326.4515 567.2729 L 326.1182 567.2729 L 326.1182 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 327.9789 569.2859)\\\" x=\\\"0\\\">T</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 327.9789 567.9396 L 327.9789 567.9396 L 332.9789 567.9396 L 333.3122 567.9396 L 333.3122 567.2729 L 332.9789 567.2729 L 327.9789 567.2729 L 327.6456 567.2729 L 327.6456 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 332.8656 569.2859)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 332.8656 567.9396 L 332.8656 567.9396 L 334.8656 567.9396 L 335.1989 567.9396 L 335.1989 567.2729 L 334.8656 567.2729 L 332.8656 567.2729 L 332.5323 567.2729 L 332.5323 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 334.9906 569.2859)\\\" x=\\\"0\\\">A</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 334.9906 567.9396 L 334.9906 567.9396 L 339.9906 567.9396 L 340.3239 567.9396 L 340.3239 567.2729 L 339.9906 567.2729 L 334.9906 567.2729 L 334.6573 567.2729 L 334.6573 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 340.3265 569.2859)\\\" x=\\\"0\\\">L</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 340.3265 567.9396 L 340.3265 567.9396 L 344.3265 567.9396 L 344.6599 567.9396 L 344.6599 567.2729 L 344.3265 567.2729 L 340.3265 567.2729 L 339.9932 567.2729 L 339.9932 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 344.7758 569.2859)\\\" x=\\\"0\\\">L</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 344.7758 567.9396 L 344.7758 567.9396 L 348.7758 567.9396 L 349.1091 567.9396 L 349.1091 567.2729 L 348.7758 567.2729 L 344.7758 567.2729 L 344.4424 567.2729 L 344.4424 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 349.225 569.2859)\\\" x=\\\"0\\\">O</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 349.225 567.9396 L 349.225 567.9396 L 355.225 567.9396 L 355.5583 567.9396 L 355.5583 567.2729 L 355.225 567.2729 L 349.225 567.2729 L 348.8917 567.2729 L 348.8917 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 355.4477 569.2859)\\\" x=\\\"0\\\">W</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 355.4477 567.9396 L 355.4477 567.9396 L 363.4477 567.9396 L 363.781 567.9396 L 363.781 567.2729 L 363.4477 567.2729 L 355.4477 567.2729 L 355.1143 567.2729 L 355.1143 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 362.9984 569.2859)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 362.9984 567.9396 L 362.9984 567.9396 L 364.9984 567.9396 L 365.3318 567.9396 L 365.3318 567.2729 L 364.9984 567.2729 L 362.9984 567.2729 L 362.6651 567.2729 L 362.6651 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 365.1234 569.2859)\\\" x=\\\"0\\\">C</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 365.1234 567.9396 L 365.1234 567.9396 L 371.1234 567.9396 L 371.4568 567.9396 L 371.4568 567.2729 L 371.1234 567.2729 L 365.1234 567.2729 L 364.7901 567.2729 L 364.7901 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 370.9008 569.2859)\\\" x=\\\"0\\\">L</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 370.9008 567.9396 L 370.9008 567.9396 L 374.9008 567.9396 L 375.2341 567.9396 L 375.2341 567.2729 L 374.9008 567.2729 L 370.9008 567.2729 L 370.5674 567.2729 L 370.5674 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 375.35 569.2859)\\\" x=\\\"0\\\">A</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 375.35 567.9396 L 375.35 567.9396 L 380.35 567.9396 L 380.6833 567.9396 L 380.6833 567.2729 L 380.35 567.2729 L 375.35 567.2729 L 375.0167 567.2729 L 375.0167 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 380.6859 569.2859)\\\" x=\\\"0\\\">S</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 380.6859 567.9396 L 380.6859 567.9396 L 385.6859 567.9396 L 386.0193 567.9396 L 386.0193 567.2729 L 385.6859 567.2729 L 380.6859 567.2729 L 380.3526 567.2729 L 380.3526 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 386.0219 569.2859)\\\" x=\\\"0\\\">S</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 386.0219 567.9396 L 386.0219 567.9396 L 391.0219 567.9396 L 391.3552 567.9396 L 391.3552 567.2729 L 391.0219 567.2729 L 386.0219 567.2729 L 385.6885 567.2729 L 385.6885 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 391.3578 569.2859)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 391.3578 567.9396 L 391.3578 567.9396 L 393.3578 567.9396 L 393.6911 567.9396 L 393.6911 567.2729 L 393.3578 567.2729 L 391.3578 567.2729 L 391.0245 567.2729 L 391.0245 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 393.4828 569.2859)\\\" x=\\\"0\\\">A</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 393.4828 567.9396 L 393.4828 567.9396 L 398.4828 567.9396 L 398.8161 567.9396 L 398.8161 567.2729 L 398.4828 567.2729 L 393.4828 567.2729 L 393.1495 567.2729 L 393.1495 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 398.8187 569.2859)\\\" x=\\\"0\\\">C</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 398.8187 567.9396 L 398.8187 567.9396 L 404.8187 567.9396 L 405.1521 567.9396 L 405.1521 567.2729 L 404.8187 567.2729 L 398.8187 567.2729 L 398.4854 567.2729 L 398.4854 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 404.5961 569.2859)\\\" x=\\\"0\\\">T</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 404.5961 567.9396 L 404.5961 567.9396 L 409.5961 567.9396 L 409.9294 567.9396 L 409.9294 567.2729 L 409.5961 567.2729 L 404.5961 567.2729 L 404.2628 567.2729 L 404.2628 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 409.4828 569.2859)\\\" x=\\\"0\\\">I</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 409.4828 567.9396 L 409.4828 567.9396 L 411.4828 567.9396 L 411.8161 567.9396 L 411.8161 567.2729 L 411.4828 567.2729 L 409.4828 567.2729 L 409.1495 567.2729 L 409.1495 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 411.7055 569.2859)\\\" x=\\\"0\\\">O</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 411.7055 567.9396 L 411.7055 567.9396 L 417.7055 567.9396 L 418.0388 567.9396 L 418.0388 567.2729 L 417.7055 567.2729 L 411.7055 567.2729 L 411.3721 567.2729 L 411.3721 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 417.9281 569.2859)\\\" x=\\\"0\\\">N</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 417.9281 567.9396 L 417.9281 567.9396 L 423.9281 567.9396 L 424.2614 567.9396 L 424.2614 567.2729 L 423.9281 567.2729 L 417.9281 567.2729 L 417.5948 567.2729 L 417.5948 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 423.7055 569.2859)\\\" x=\\\"0\\\">S</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 423.7055 567.9396 L 423.7055 567.9396 L 428.7055 567.9396 L 429.0388 567.9396 L 429.0388 567.2729 L 428.7055 567.2729 L 423.7055 567.2729 L 423.3721 567.2729 L 423.3721 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 429.0414 569.2859)\\\" x=\\\"0\\\">.</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 429.0414 567.9396 L 429.0414 567.9396 L 431.0414 567.9396 L 431.3747 567.9396 L 431.3747 567.2729 L 431.0414 567.2729 L 429.0414 567.2729 L 428.7081 567.2729 L 428.7081 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 431.264 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 433.389 569.2859)\\\" x=\\\"0 5.3359 9.7852\\\">You</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.6234 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 449.7484 569.2859)\\\" x=\\\"0\\\">w</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 449.7484 567.9396 L 449.7484 567.9396 L 455.7484 567.9396 L 456.0818 567.9396 L 456.0818 567.2729 L 455.7484 567.2729 L 449.7484 567.2729 L 449.4151 567.2729 L 449.4151 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 455.5258 569.2859)\\\" x=\\\"0\\\">a</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 455.5258 567.9396 L 455.5258 567.9396 L 459.5258 567.9396 L 459.8591 567.9396 L 459.8591 567.2729 L 459.5258 567.2729 L 455.5258 567.2729 L 455.1924 567.2729 L 455.1924 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 459.975 569.2859)\\\" x=\\\"0\\\">i</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 459.975 567.9396 L 459.975 567.9396 L 461.975 567.9396 L 462.3083 567.9396 L 462.3083 567.2729 L 461.975 567.2729 L 459.975 567.2729 L 459.6417 567.2729 L 459.6417 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 461.7992 569.2859)\\\" x=\\\"0\\\">v</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 461.7992 567.9396 L 461.7992 567.9396 L 465.7992 567.9396 L 466.1325 567.9396 L 466.1325 567.2729 L 465.7992 567.2729 L 461.7992 567.2729 L 461.4659 567.2729 L 461.4659 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 465.7992 569.2859)\\\" x=\\\"0\\\">e</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 465.7992 567.9396 L 465.7992 567.9396 L 469.7992 567.9396 L 470.1325 567.9396 L 470.1325 567.2729 L 469.7992 567.2729 L 465.7992 567.2729 L 465.4659 567.2729 L 465.4659 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 470.2484 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 472.3734 569.2859)\\\" x=\\\"0 4 8.4492 12.8984\\\">your</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 487.9359 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 490.0609 569.2859)\\\" x=\\\"0 2.6641 4.4883 8.9375 13.3867 15.6094\\\">rights</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.6703 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 511.7953 569.2859)\\\" x=\\\"0 2.2227\\\">to</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 518.4672 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 520.5922 569.2859)\\\" x=\\\"0 4.4492\\\">be</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.4906 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 531.6156 569.2859)\\\" x=\\\"0 1.8242\\\">in</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 537.889 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 540.014 569.2859)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 544.4633 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 546.5883 569.2859)\\\" x=\\\"0\\\">c</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 546.5883 567.9396 L 546.5883 567.9396 L 550.5883 567.9396 L 550.9216 567.9396 L 550.9216 567.2729 L 550.5883 567.2729 L 546.5883 567.2729 L 546.2549 567.2729 L 546.2549 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 550.5883 569.2859)\\\" x=\\\"0\\\">l</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 550.5883 567.9396 L 550.5883 567.9396 L 552.5883 567.9396 L 552.9216 567.9396 L 552.9216 567.2729 L 552.5883 567.2729 L 550.5883 567.2729 L 550.2549 567.2729 L 550.2549 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 552.4125 569.2859)\\\" x=\\\"0\\\">a</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 552.4125 567.9396 L 552.4125 567.9396 L 556.4125 567.9396 L 556.7458 567.9396 L 556.7458 567.2729 L 556.4125 567.2729 L 552.4125 567.2729 L 552.0792 567.2729 L 552.0792 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 556.8617 569.2859)\\\" x=\\\"0\\\">s</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 556.8617 567.9396 L 556.8617 567.9396 L 560.8617 567.9396 L 561.1951 567.9396 L 561.1951 567.2729 L 560.8617 567.2729 L 556.8617 567.2729 L 556.5284 567.2729 L 556.5284 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 560.8617 569.2859)\\\" x=\\\"0\\\">s</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 560.8617 567.9396 L 560.8617 567.9396 L 564.8617 567.9396 L 565.1951 567.9396 L 565.1951 567.2729 L 564.8617 567.2729 L 560.8617 567.2729 L 560.5284 567.2729 L 560.5284 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 560.2312)\\\" x=\\\"0\\\">a</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 209.85 558.8849 L 209.85 558.8849 L 213.85 558.8849 L 214.1833 558.8849 L 214.1833 558.2182 L 213.85 558.2182 L 209.85 558.2182 L 209.5167 558.2182 L 209.5167 558.8849 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 214.2992 560.2312)\\\" x=\\\"0\\\">c</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 214.2992 558.8849 L 214.2992 558.8849 L 218.2992 558.8849 L 218.6325 558.8849 L 218.6325 558.2182 L 218.2992 558.2182 L 214.2992 558.2182 L 213.9659 558.2182 L 213.9659 558.8849 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 218.2992 560.2312)\\\" x=\\\"0\\\">t</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 218.2992 558.8849 L 218.2992 558.8849 L 220.2992 558.8849 L 220.6325 558.8849 L 220.6325 558.2182 L 220.2992 558.2182 L 218.2992 558.2182 L 217.9659 558.2182 L 217.9659 558.8849 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 220.5219 560.2312)\\\" x=\\\"0\\\">i</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 220.5219 558.8849 L 220.5219 558.8849 L 222.5219 558.8849 L 222.8552 558.8849 L 222.8552 558.2182 L 222.5219 558.2182 L 220.5219 558.2182 L 220.1885 558.2182 L 220.1885 558.8849 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 222.3461 560.2312)\\\" x=\\\"0\\\">o</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 222.3461 558.8849 L 222.3461 558.8849 L 226.3461 558.8849 L 226.6794 558.8849 L 226.6794 558.2182 L 226.3461 558.2182 L 222.3461 558.2182 L 222.0128 558.2182 L 222.0128 558.8849 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 226.7953 560.2312)\\\" x=\\\"0\\\">n</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 226.7953 558.8849 L 226.7953 558.8849 L 230.7953 558.8849 L 231.1286 558.8849 L 231.1286 558.2182 L 230.7953 558.2182 L 226.7953 558.2182 L 226.462 558.2182 L 226.462 558.8849 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 231.2445 560.2312)\\\" x=\\\"0\\\">,</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.4672 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 235.5922 560.2312)\\\" x=\\\"0 4.4492\\\">as</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 244.0414 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 246.1664 560.2312)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 250.6156 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 252.7406 560.2312)\\\" x=\\\"0 2.6641 7.1133 11.5625 14.2266 18.6758 22.6758 27.125 31.5742 33.7969 38.2461 40.4688 42.293 46.293\\\">representative</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 303.4828 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 305.6078 560.2312)\\\" x=\\\"0 4.4492 8.8984\\\">and</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 318.9555 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 321.0805 560.2312)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 325.5297 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 327.6547 560.2312)\\\" x=\\\"0 6.6641 11.1133 17.7773 22.2266 26.6758 29.3398\\\">member.</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.2172 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 361.3422 560.2312)\\\" x=\\\"0 6.2227 10.6719 12.4961\\\">Only</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 377.8383 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 379.9633 560.2312)\\\" x=\\\"0 1.8242 6.2734 10.7227 12.5469 16.5469 18.3711 22.8203 27.2695 31.7188\\\">individual</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 413.5062 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 415.6312 560.2312)\\\" x=\\\"0 4.4492 7.1133 11.5625 13.3867 15.6094 18.2734 22.7227 24.9453 26.7695 31.2188 35.668\\\">arbitration,</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 453.5219 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 455.6469 560.2312)\\\" x=\\\"0 4.4492\\\">or</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 462.7601 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 464.8851 560.2312)\\\" x=\\\"0 4 10.6641 15.1133 16.9375 18.7617 21.4258 25.4258 27.25 31.6992 33.5234 40.1875\\\">small-claims</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.0727 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 511.1977 560.2312)\\\" x=\\\"0 4 8.4492 12.8984 15.5625 17.7851 21.7851\\\">courts,</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 535.2055 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 537.3305 560.2312)\\\" x=\\\"0 5.7773 7.6016 9.4258\\\">will</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 551.1766)\\\" x=\\\"0 4 8.4492 10.2734 14.2734\\\">solve</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 228.5726 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 230.6976 551.1766)\\\" x=\\\"0 5.7773 7.6016 11.6016 16.0508 20.5 22.7227 27.1719 31.1719\\\">Disputes.</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 264.0922 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 266.2172 551.1766)\\\" x=\\\"0 5.3359 9.7852\\\">You</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.4515 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 282.5765 551.1766)\\\" x=\\\"0 5.7774 10.2266 12.0508 16.0508\\\">waive</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 303.0765 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 304.9015 551.1766)\\\" x=\\\"0 4 8.4492 12.8984\\\">your</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 320.464 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 322.289 551.1766)\\\" x=\\\"0 2.6641 4.4883 8.9375 13.3867\\\">right</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 337.8984 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 339.7234 551.1766)\\\" x=\\\"0 2.2227\\\">to</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 346.3953 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 348.2203 551.1766)\\\" x=\\\"0 4.4492 8.8984 12.8984\\\">have</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 365.568 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 367.393 551.1766)\\\" x=\\\"0 2.6641 7.1133 11.5625 14.2266 18.6758 22.6758 27.125 31.5742 33.7969 38.2461 40.4687 42.293 46.293\\\">representative</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 418.1351 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 419.9601 551.1766)\\\" x=\\\"0 4 5.8242 10.2734 12.0977 18.7617 22.7617\\\">claims.</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 444.9445 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 446.7695 551.1766)\\\" x=\\\"0 5.7774 10.2266 12.0508 16.5 20.5\\\">Unless</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 471.2695 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 473.0945 551.1766)\\\" x=\\\"0 2.6641 7.1133 11.1133 15.5625 18.2266 22.2266 26.6758\\\">reversed</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 504.2195 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 506.0445 551.1766)\\\" x=\\\"0 4.4492\\\">on</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 514.943 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 516.768 551.1766)\\\" x=\\\"0 4.4492 8.8984 13.3477 17.7969 22.2461 24.0703\\\">appeal,</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 543.0609 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 544.8859 551.1766)\\\" x=\\\"0 1.8242\\\">if</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 548.9328 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 550.7578 551.1766)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 542.1219)\\\" x=\\\"0 4 8.4492 12.8984 15.5625\\\">court</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 227.6351 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 229.4601 542.1219)\\\" x=\\\"0 1.8242 6.2734 10.2734 14.7227 16.5469 18.3711 22.8203 27.2695 29.4922 33.9414\\\">invalidates</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 267.4015 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 269.2265 542.1219)\\\" x=\\\"0 2.2227 6.6719 8.4961\\\">this</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.7226 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 283.5477 542.1219)\\\" x=\\\"0 5.7773 10.2266 12.0508 16.0508 20.5 23.1641\\\">waiver,</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.9344 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 310.7594 542.1219)\\\" x=\\\"0 2.2226 6.6719 11.1211\\\">then</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 326.3297 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 328.4547 542.1219)\\\" x=\\\"0 2.2227 6.6719\\\">the</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 339.5758 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 341.4008 542.1219)\\\" x=\\\"0 4.4492 8.8984 11.5625 16.0117 20.4609 27.125 31.5742 36.0234\\\">agreement</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 379.6469 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 381.4719 542.1219)\\\" x=\\\"0 2.2227\\\">to</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.1437 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 389.9687 542.1219)\\\" x=\\\"0 4.4492 7.1133 11.5625 13.3867 15.6094 18.2734 22.7227 24.9453\\\">arbitrate</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.3633 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 421.1883 542.1219)\\\" x=\\\"0 5.7774 7.6016 9.4258\\\">will</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 432.4383 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 434.2633 542.1219)\\\" x=\\\"0 4.4492\\\">be</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 443.1617 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 444.9867 542.1219)\\\" x=\\\"0 4 8.4492 10.2734 14.7227\\\">void,</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 461.932 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 463.757 542.1219)\\\" x=\\\"0 4.4492 8.8984\\\">and</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 477.1047 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 478.9297 542.1219)\\\" x=\\\"0 5.7773 7.6016 11.6016 16.0508 20.5 22.7227 27.1719\\\">Disputes</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 510.1016 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 511.9266 542.1219)\\\" x=\\\"0 5.7773 7.6016 9.4258\\\">will</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 523.1766 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 525.0016 542.1219)\\\" x=\\\"0 4.4492\\\">be</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 533.9 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 535.725 542.1219)\\\" x=\\\"0 2.6641 7.1133 11.1133 15.5625 17.3867 21.3867 25.8359\\\">resolved</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 533.0672)\\\" x=\\\"0 4.4492\\\">by</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 218.2992 533.0672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 220.1242 533.0672)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 224.5734 533.0672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 226.3984 533.0672)\\\" x=\\\"0 1.8242 6.2734 10.7227 15.1719 19.6211\\\">judge,</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 248.2422 533.0672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 250.0672 533.0672)\\\" x=\\\"0 4.4492 8.8984\\\">but</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 261.1883 533.0672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 263.0133 533.0672)\\\" x=\\\"0 4.4492 8.8984\\\">not</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 274.1344 533.0672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 275.9594 533.0672)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.4086 533.0672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 282.2336 533.0672)\\\" x=\\\"0 1.8242 6.2734 8.9375 12.9375\\\">jury.</text></g><clipPath id=\\\"clip4-19\\\"><path d=\\\"M 35 491 L 130 491 L 130 531 L 35 531 L 35 491 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-19)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 530.3875 L 129.35 530.3875 L 129.35 491.1688 L 35.45 491.1688 L 35.45 530.3875 z \\\"/><path clip-path=\\\"url(#clip4-19)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 528.3875 L 125.25 528.3875 L 125.25 519.3328 L 39.55 519.3328 L 39.55 528.3875 z \\\"/><path clip-path=\\\"url(#clip4-19)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 49.9664 528.3875 L 114.9664 528.3875 L 114.9664 518.3875 L 49.9664 518.3875 L 49.9664 528.3875 z \\\"/><g clip-path=\\\"url(#clip4-19)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 49.9664 521.0125)\\\" x=\\\"0 7.552 12 16.448 18.672 20.8 22.624 27.072 32.848 34.976 39.424 43.872 48.32 50.144 51.968 56.416 60.416\\\">What law applies?</text></g><clipPath id=\\\"clip4-20\\\"><path d=\\\"M 129 491 L 206 491 L 206 531 L 129 531 L 129 491 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-20)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.009 521.0125)\\\" x=\\\"0 4.888 9.336 13.784 15.912 20.8 25.248 29.696 34.144 36.808 41.256\\\">The Federal</text></g><g clip-path=\\\"url(#clip4-20)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 142.4308 511.9578)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 19.16 23.608 25.832 27.656 32.104 36.552 38.68 44.016 48.016\\\">Arbitration Act</text></g><g clip-path=\\\"url(#clip4-20)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 153.1555 502.9031)\\\" x=\\\"0 2.664 5.504 10.392 15.728 21.064 23.904 26.568\\\">(&quot;FAA&quot;).</text></g><clipPath id=\\\"clip4-21\\\"><path d=\\\"M 205 491 L 573 491 L 573 531 L 205 531 L 205 491 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 521.0125)\\\" x=\\\"0 4.888 9.336 11.16\\\">This</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.0101 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 228.9725 521.0125)\\\" x=\\\"0 2.224 4.888 9.336 13.784 17.784 22.232 26.232 28.456 30.28 34.728\\\">transaction</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 268.1522 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 272.1145 521.0125)\\\" x=\\\"0 1.824 6.272 10.272 14.72 16.544 20.544 24.992\\\">involves</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 301.1106 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 305.0729 521.0125)\\\" x=\\\"0 1.824 6.272 8.496 12.944 15.608 19.608 21.832 26.28 28.504\\\">interstate</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.026 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 341.9884 521.0125)\\\" x=\\\"0 4 8.448 15.112 21.776 26.224 28.888 32.888 37.336\\\">commerce.</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 381.5509 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 385.5132 521.0125)\\\" x=\\\"0 4.888 9.336 13.784 17.784\\\">Thus,</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 405.521 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 409.4834 521.0125)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 420.6045 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 424.5668 521.0125)\\\" x=\\\"0 4.888 10.224\\\">FAA</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 440.1254 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 444.0877 521.0125)\\\" x=\\\"0 4.448 8.896 12.896 17.344 20.008 24.456 28.456\\\">governs.</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.7713 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 478.7336 521.0125)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 483.179 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 487.1413 521.0125)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 491.5905 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 495.5528 521.0125)\\\" x=\\\"0 4 8.448 12.896 15.56\\\">court</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 513.338 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 517.3003 521.0125)\\\" x=\\\"0 2.224 4.048 8.496 12.944\\\">finds</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 534.2456 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 538.208 521.0125)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.3291 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 553.2914 521.0125)\\\" x=\\\"0 4.888 10.224\\\">FAA</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 511.9578)\\\" x=\\\"0 4.448 8.896 13.344 17.344 21.792 23.32\\\">doesn&apos;t</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 235.3969 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 237.5853 511.9578)\\\" x=\\\"0 4.448 8.896 13.344 15.168 19.168\\\">apply,</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 258.9798 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 261.1682 511.9578)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 274.5159 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 276.7043 511.9578)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 287.8254 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 290.0138 511.9578)\\\" x=\\\"0 2.224 4.048 8.496 12.944 14.768 19.216\\\">finding</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 313.6818 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 315.8702 511.9578)\\\" x=\\\"0 4 8.448 12.896 14.424\\\">can&apos;t</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 332.5186 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 334.7071 511.9578)\\\" x=\\\"0 4.448\\\">be</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 343.6055 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 345.7939 511.9578)\\\" x=\\\"0 4.448 8.896 13.344 17.792 22.24 24.064 28.512 32.96\\\">appealed,</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.9853 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 383.1737 511.9578)\\\" x=\\\"0 2.224 6.672 11.12\\\">then</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 398.7441 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 400.9325 511.9578)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 412.0536 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 414.242 511.9578)\\\" x=\\\"0 4 6.224 10.672 12.896\\\">state</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 431.5857 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 433.7742 511.9578)\\\" x=\\\"0 1.824 6.272\\\">law</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 445.825 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 448.0134 511.9578)\\\" x=\\\"0 5.776 10.224 14.672 17.336\\\">where</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 469.8024 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 471.9908 511.9578)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.8893 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 487.0777 511.9578)\\\" x=\\\"0 5.776 10.224 12.888\\\">were</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 504.4175 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 506.606 511.9578)\\\" x=\\\"0 5.776 10.224 14.672\\\">when</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 525.731 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 527.9194 511.9578)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 540.8178 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 543.0062 511.9578)\\\" x=\\\"0 4 5.824 10.272 14.72 19.168 23.616\\\">signed,</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 502.9031)\\\" x=\\\"0 4.448 8.896 12.896 17.344 20.008 24.456 28.456\\\">governs.</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 240.5336 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 243.9142 502.9031)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.6993 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 261.0799 502.9031)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 284.6893 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 288.0699 502.9031)\\\" x=\\\"0 6.664 11.112 15.112\\\">must</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 305.4058 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 308.7864 502.9031)\\\" x=\\\"0 4.448 8.896 13.344 15.168\\\">apply</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 327.9582 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 331.3388 502.9031)\\\" x=\\\"0 4 8.448 12.896 16.896 19.12 23.568 28.016 30.24 32.064 36.064\\\">substantive</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.8545 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 375.235 502.9031)\\\" x=\\\"0 1.824 6.272\\\">law</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 387.2858 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 390.6664 502.9031)\\\" x=\\\"0 4 8.448 12.896 16.896 18.72 22.72 24.944 29.392 33.84\\\">consistent</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 426.7328 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 430.1134 502.9031)\\\" x=\\\"0 5.776 7.6 9.824\\\">with</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 444.3868 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 447.7674 502.9031)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 458.8885 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 462.2691 502.9031)\\\" x=\\\"0 4.888 10.224 15.56\\\">FAA.</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 480.0503 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 483.4309 502.9031)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 497.2161 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 500.5966 502.9031)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 524.206 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 527.5866 502.9031)\\\" x=\\\"0 6.664 11.112 15.112\\\">must</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 544.9225 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 548.3031 502.9031)\\\" x=\\\"0 2.224 6.672 8.496 10.32 14.768\\\">follow</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 493.8484)\\\" x=\\\"0 4 6.224 10.672 12.896 17.344 19.568 24.016 28.016 30.144 34.592 36.816 38.944 40.768 42.592 49.256 51.08 53.304 57.752 59.976 61.8 66.248 70.696 72.824 77.272 81.72 86.168 88.296 92.744 95.408 97.232 101.232 103.056 104.88 109.328 113.776 118.224 120.352 124.352 126.176 130.624 132.448 139.112 143.112\\\">statutes of limitation and privilege claims.</text></g><clipPath id=\\\"clip4-22\\\"><path d=\\\"M 35 433 L 130 433 L 130 492 L 35 492 L 35 433 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-22)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 491.1688 L 129.35 491.1688 L 129.35 433.8406 L 35.45 433.8406 L 35.45 491.1688 z \\\"/><path clip-path=\\\"url(#clip4-22)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 489.1688 L 125.25 489.1688 L 125.25 471.0594 L 39.55 471.0594 L 39.55 489.1688 z \\\"/><path clip-path=\\\"url(#clip4-22)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 45.443 489.1688 L 119.443 489.1688 L 119.443 479.1688 L 45.443 479.1688 L 45.443 489.1688 z \\\"/><g clip-path=\\\"url(#clip4-22)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 45.443 481.7937)\\\" x=\\\"0 5.776 10.224 14.672 16.8 19.024 23.472 27.92 30.048 34.496 38.944 41.608 43.832 45.656 50.104 54.104 56.232 58.456 61.12 65.12 67.248 69.472\\\">Can the * D E M O * to</text></g><path clip-path=\\\"url(#clip4-22)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 46.6363 480.1141 L 118.6363 480.1141 L 118.6363 470.1141 L 46.6363 470.1141 L 46.6363 480.1141 z \\\"/><g clip-path=\\\"url(#clip4-22)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 46.6363 472.7391)\\\" x=\\\"0 4 8.448 10.272 14.272 18.72 20.848 26.624 28.448 32.448 36.896 41.344 43.568 48.016 52.016 54.144 56.368 58.192 60.856 64.856 67.08\\\">solve Disputes first?</text></g><clipPath id=\\\"clip4-23\\\"><path d=\\\"M 129 433 L 206 433 L 206 492 L 129 492 L 129 433 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-23)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 159.5461 481.7937)\\\" x=\\\"0 5.336 9.784 13.784\\\">Yes.</text></g><clipPath id=\\\"clip4-24\\\"><path d=\\\"M 205 433 L 573 433 L 573 492 L 205 492 L 205 433 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 481.7937)\\\" x=\\\"0 7.552\\\">We</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 221.85 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 224.092 481.7937)\\\" x=\\\"0 4 8.448\\\">can</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 236.9904 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 239.2324 481.7937)\\\" x=\\\"0 2.224 4.888\\\">try</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 248.1191 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 250.3611 481.7937)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.033 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 259.275 481.7937)\\\" x=\\\"0 4 8.448 10.272 14.272\\\">solve</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 277.9976 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 280.2396 481.7937)\\\" x=\\\"0 5.776 7.6 11.6 16.048 20.496 22.72 27.168\\\">Disputes</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 311.4115 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 313.6535 481.7937)\\\" x=\\\"0 1.824\\\">if</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 317.7004 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 319.9424 481.7937)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 332.8408 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 335.0828 481.7937)\\\" x=\\\"0 4 8.448 10.272\\\">call</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 347.1805 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 349.4224 481.7937)\\\" x=\\\"0 4.448\\\">us</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 357.8717 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 360.1137 481.7937)\\\" x=\\\"0 4.448\\\">at</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 366.7855 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 369.0275 481.7937)\\\" x=\\\"0 2.664 7.112 11.56 16.008\\\">(100)</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 387.7033 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 389.9453 481.7937)\\\" x=\\\"0 4.448 8.896 13.344 16.008 20.456 24.904 29.352 33.8\\\">000-0006.</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 425.9766 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 428.2185 481.7937)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 432.6639 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 434.9058 481.7937)\\\" x=\\\"0 2.224 6.672 8.496\\\">this</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.4019 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 449.6439 481.7937)\\\" x=\\\"0 4.448 8.896 13.344 17.344 21.792 23.32\\\">doesn&apos;t</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 475.1908 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 477.4328 481.7937)\\\" x=\\\"0 4 8.448 10.272 14.272\\\">solve</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 496.1555 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 498.3974 481.7937)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.5185 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 511.7605 481.7937)\\\" x=\\\"0 5.776 7.6 11.6 16.048 20.496 22.72 27.168\\\">Dispute,</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 541.1551 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 543.3971 481.7937)\\\" x=\\\"0 6.664 11.112 12.936\\\">mail</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 558.1588 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 560.4008 481.7937)\\\" x=\\\"0 4.448\\\">us</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 472.7391)\\\" x=\\\"0 5.776 8.44 10.264 12.488 14.712 19.16\\\">written</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.4594 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 235.6405 472.7391)\\\" x=\\\"0 4.448 8.896 11.12 12.944 16.944 21.392\\\">notice,</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.2577 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 261.4388 472.7391)\\\" x=\\\"0 5.776 7.6 9.824 14.272 16.096\\\">within</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.9857 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 284.1668 472.7391)\\\" x=\\\"0 4.448 8.896\\\">100</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 297.5145 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 299.6956 472.7391)\\\" x=\\\"0 4.448 8.896 12.896\\\">days</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 316.594 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 318.7752 472.7391)\\\" x=\\\"0 4.448\\\">of</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 325.447 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 327.6282 472.7391)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.7493 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 340.9304 472.7391)\\\" x=\\\"0 5.776 7.6 11.6 16.048 20.496 22.72\\\">Dispute</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 368.1023 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 370.2834 472.7391)\\\" x=\\\"0 4.448 8.896 11.12 15.568\\\">date.</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.0763 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 390.2575 472.7391)\\\" x=\\\"0 2.224\\\">In</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 396.9293 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 399.1105 472.7391)\\\" x=\\\"0 4 8.448 12.896\\\">your</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 414.673 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 416.8541 472.7391)\\\" x=\\\"0 4.448 8.896 11.12 12.944 16.944 21.392\\\">notice,</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 440.4713 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 442.6524 472.7391)\\\" x=\\\"0 2.224 6.672 8.496\\\">tell</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 452.9727 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 455.1539 472.7391)\\\" x=\\\"0 4.448\\\">us</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 463.6031 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 465.7842 472.7391)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 476.9053 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 479.0864 472.7391)\\\" x=\\\"0 4.448 8.896 11.12 15.568 17.392 19.216\\\">details</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 502.3052 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 504.4863 472.7391)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 517.834 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 520.0151 472.7391)\\\" x=\\\"0 4.448 8.896\\\">how</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 534.6909 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 536.872 472.7391)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.7704 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 551.9515 472.7391)\\\" x=\\\"0 5.776 10.224 14.672\\\">want</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 463.6844)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 216.5219 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 219.4635 463.6844)\\\" x=\\\"0 4 8.448 10.272 14.272\\\">solve</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.1861 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 241.1277 463.6844)\\\" x=\\\"0 1.824 4.048\\\">it.</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.3973 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 250.3389 463.6844)\\\" x=\\\"0 7.552\\\">We</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.3389 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 265.2805 463.6844)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.5305 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 279.4721 463.6844)\\\" x=\\\"0 2.224 4.888\\\">try</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 288.3588 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 291.3004 463.6844)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 297.9723 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 300.9139 463.6844)\\\" x=\\\"0 4 8.448 10.272 14.272\\\">solve</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.6366 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 322.5782 463.6844)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 333.6993 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 336.6409 463.6844)\\\" x=\\\"0 5.776 7.6 11.6 16.048 20.496 22.72 27.168\\\">Dispute.</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 366.0354 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 368.977 463.6844)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 373.4224 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 376.364 463.6844)\\\" x=\\\"0 5.776\\\">we</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 386.5905 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 389.5321 463.6844)\\\" x=\\\"0 6.664 11.112 15.112\\\">make</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 409.0947 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 412.0363 463.6844)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 416.4855 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 419.4271 463.6844)\\\" x=\\\"0 5.776 8.44 10.264 12.488 14.712 19.16\\\">written</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 443.0365 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 445.9781 463.6844)\\\" x=\\\"0 4.448 6.672 8.896 13.344\\\">offer</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 461.9859 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 464.9275 463.6844)\\\" x=\\\"0 2.664 5.504 10.84 15.288 17.512 19.736 21.56 26.008 32.672 37.12 41.568\\\">(&quot;Settlement</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 508.7205 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 511.6621 463.6844)\\\" x=\\\"0 6.224 8.448 10.672 15.12 17.784 20.624 23.288\\\">Offer&quot;),</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 537.1699 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 540.1115 463.6844)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.0099 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 555.9515 463.6844)\\\" x=\\\"0 4 8.448\\\">can</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 454.6297)\\\" x=\\\"0 2.664 7.112 8.936 13.384 17.384\\\">reject</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 229.4594 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 233.7138 454.6297)\\\" x=\\\"0 1.824\\\">it</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 237.7606 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 242.015 454.6297)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 255.3627 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 259.6171 454.6297)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 29.392\\\">arbitrate.</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.2343 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 295.4887 454.6297)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.934 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 304.1884 454.6297)\\\" x=\\\"0 5.776\\\">we</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 314.4149 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 318.6693 454.6297)\\\" x=\\\"0 4.448 8.896 13.344 14.872\\\">don&apos;t</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.767 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 340.0214 454.6297)\\\" x=\\\"0 4 8.448 10.272 14.272\\\">solve</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 358.744 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 362.9984 454.6297)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 374.1195 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 378.3739 454.6297)\\\" x=\\\"0 5.776 7.6 11.6 16.048 20.496 22.72 27.168\\\">Dispute,</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 407.7684 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 412.0228 454.6297)\\\" x=\\\"0 4.448 6.272 8.496 12.944 17.392\\\">either</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 432.0814 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 436.3358 454.6297)\\\" x=\\\"0 4.448 8.896 11.56 13.784\\\">party</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.121 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 458.3754 454.6297)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 473.4887 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 477.7431 454.6297)\\\" x=\\\"0 4 6.224 10.672 13.336\\\">start</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 493.3016 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 497.556 454.6297)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 26.768 31.216 35.664\\\">arbitration.</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 535.4467 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 539.7011 454.6297)\\\" x=\\\"0 4.888\\\">To</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.037 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 553.2914 454.6297)\\\" x=\\\"0 4 6.224 10.672 13.336\\\">start</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 445.575)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 26.768 31.216 35.664\\\">arbitration,</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.7406 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 250.0233 445.575)\\\" x=\\\"0 4 8.448 12.896 15.12 19.568 23.568\\\">contact</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.8162 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 278.0989 445.575)\\\" x=\\\"0 4.448\\\">an</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 286.9973 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 289.28 445.575)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.8893 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 315.172 445.575)\\\" x=\\\"0 4.448\\\">or</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 322.2853 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 324.5679 445.575)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 26.768 31.216\\\">arbitration</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 360.2359 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 362.5185 445.575)\\\" x=\\\"0 4.448 7.112 11.56 16.008\\\">group</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 382.9795 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 385.2621 445.575)\\\" x=\\\"0 1.824 3.648 7.648 9.872 14.32 18.768\\\">listed.</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 406.2543 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 408.5369 445.575)\\\" x=\\\"0 5.776\\\">No</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 418.7635 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 421.0461 445.575)\\\" x=\\\"0 4.448 8.896 11.56 13.784\\\">party</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 438.8313 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 441.1139 445.575)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 452.3639 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 454.6466 445.575)\\\" x=\\\"0 4.448 6.272 10.272 14.272 16.096 20.544 24.544\\\">disclose</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 483.6427 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 485.9253 445.575)\\\" x=\\\"0 4 8.448 10.672 12.896 14.72 19.168 25.832 30.28 34.728\\\">settlement</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 522.8785 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 525.1611 445.575)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456 24.456 28.904 30.728\\\">proposals</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.8955 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 562.1781 445.575)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 436.5203)\\\" x=\\\"0 2.224 6.672 11.12 13.248 18.584 21.248 25.696 27.52 29.744 34.192 36.856 38.984 43.432 47.88 50.544 52.368 56.816 61.264 63.392 67.84 70.504 74.952 76.776 79 81.664 86.112 88.336 90.16 94.608 99.056\\\">the Arbiter during arbitration.</text></g><clipPath id=\\\"clip4-25\\\"><path d=\\\"M 35 412 L 130 412 L 130 434 L 35 434 L 35 412 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-25)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 433.8406 L 129.35 433.8406 L 129.35 412.7313 L 35.45 412.7313 L 35.45 433.8406 z \\\"/><path clip-path=\\\"url(#clip4-25)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 431.8406 L 125.25 431.8406 L 125.25 413.7313 L 39.55 413.7313 L 39.55 431.8406 z \\\"/><path clip-path=\\\"url(#clip4-25)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 40.0543 431.8406 L 127.0543 431.8406 L 127.0543 421.8406 L 40.0543 421.8406 L 40.0543 431.8406 z \\\"/><g clip-path=\\\"url(#clip4-25)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.0543 424.4656)\\\" x=\\\"0 5.776 10.224 16 18.128 22.128 26.576 31.024 35.472 37.296 41.744 43.872 47.872 52.32 56.768 58.896 62.896 67.344 71.792 74.016 78.464 82.464\\\">How should you contact</text></g><path clip-path=\\\"url(#clip4-25)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 75.9508 422.7859 L 88.9508 422.7859 L 88.9508 412.7859 L 75.9508 412.7859 L 75.9508 422.7859 z \\\"/><g clip-path=\\\"url(#clip4-25)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 75.9508 415.4109)\\\" x=\\\"0 4.448 8.448\\\">us?</text></g><clipPath id=\\\"clip4-26\\\"><path d=\\\"M 129 412 L 206 412 L 206 434 L 129 434 L 129 412 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-26)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 153.3273 424.4656)\\\" x=\\\"0 5.336 9.336 11.464 18.128 22.576 24.4 26.224\\\">By mail.</text></g><clipPath id=\\\"clip4-27\\\"><path d=\\\"M 205 412 L 573 412 L 573 434 L 205 434 L 205 412 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 424.4656)\\\" x=\\\"0 5.336 9.784 14.232\\\">Send</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 228.5336 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 231.2172 424.4656)\\\" x=\\\"0 6.664 11.112 12.936\\\">mail</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.9789 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 248.6625 424.4656)\\\" x=\\\"0 2.224 6.672\\\">to:</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.557 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 260.2406 424.4656)\\\" x=\\\"0 5.336 9.784 14.232\\\">Snap</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 278.9242 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 281.6078 424.4656)\\\" x=\\\"0 5.776 10.664\\\">RTO</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 298.4945 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 301.1781 424.4656)\\\" x=\\\"0 4.448 8.896\\\">LLC</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 315.8539 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 318.5375 424.4656)\\\" x=\\\"0 5.336 7.56 9.784 14.232 18.68 20.904 22.728 27.176 31.624\\\">Attention:</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 352.3851 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 355.0687 424.4656)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 19.16 23.608 25.832 27.656 32.104 36.552\\\">Arbitration.</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.8461 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 396.5297 424.4656)\\\" x=\\\"0 5.336 7.56 13.784\\\">P.O.</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 412.5336 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 415.2172 424.4656)\\\" x=\\\"0 5.336 9.784\\\">Box</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 429.0023 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 431.6859 424.4656)\\\" x=\\\"0 4.448 8.896 13.344 17.792 22.24\\\">26561,</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.1547 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 458.8383 424.4656)\\\" x=\\\"0 5.336 9.784 11.608\\\">Salt</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 472.6703 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 475.3539 424.4656)\\\" x=\\\"0 4.448 8.896 12.896\\\">Lake</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 492.7015 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 495.3851 424.4656)\\\" x=\\\"0 5.776 7.6 9.824 13.824\\\">City,</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 511.432 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 514.1156 424.4656)\\\" x=\\\"0 5.776\\\">UT</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 524.7797 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 527.4633 424.4656)\\\" x=\\\"0 4.448 8.896 13.344 17.792 22.24\\\">84126.</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.932 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 554.6156 424.4656)\\\" x=\\\"0 5.336 9.784\\\">You</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 415.4109)\\\" x=\\\"0 4 8.448 12.896 15.024 19.024 23.472 25.296 27.12 29.248 33.696 37.696 39.824 44.272 46.936 49.064 53.512 57.512 61.96 64.088 68.088 72.536 75.2 77.424 79.248 81.472 83.296 87.744 92.192 94.32 100.984 105.432 107.256 109.08 111.208 113.432 117.88 120.008 124.008 128.456 132.904 135.128 136.952 139.616 146.28 148.408 151.072 155.52 159.52 163.968 165.792 170.24 172.464\\\">can call us or use certified mail to confirm receipt.</text></g><clipPath id=\\\"clip4-28\\\"><path d=\\\"M 35 373 L 130 373 L 130 413 L 35 413 L 35 373 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-28)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 412.7313 L 129.35 412.7313 L 129.35 373.5125 L 35.45 373.5125 L 35.45 412.7313 z \\\"/><path clip-path=\\\"url(#clip4-28)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 410.7313 L 125.25 410.7313 L 125.25 392.6219 L 39.55 392.6219 L 39.55 410.7313 z \\\"/><path clip-path=\\\"url(#clip4-28)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 41.9508 410.7313 L 122.9508 410.7313 L 122.9508 400.7313 L 41.9508 400.7313 L 41.9508 410.7313 z \\\"/><g clip-path=\\\"url(#clip4-28)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 41.9508 403.3562)\\\" x=\\\"0 5.776 10.224 14.672 16.8 20.8 27.464 31.912 33.736 35.56 38.224 42.224 44.048 48.496 50.32 56.984 60.984 63.112 67.112 71.56 76.008 78.672\\\">Can small-claims court</text></g><path clip-path=\\\"url(#clip4-28)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 43.3219 401.6766 L 122.3219 401.6766 L 122.3219 391.6766 L 43.3219 391.6766 L 43.3219 401.6766 z \\\"/><g clip-path=\\\"url(#clip4-28)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 43.3219 394.3016)\\\" x=\\\"0 4 8.448 10.272 14.272 18.72 20.848 24.848 29.296 35.96 40.408 42.536 48.312 50.136 54.136 58.584 63.032 65.256 69.704 73.704\\\">solve s* D E M O *s?</text></g><clipPath id=\\\"clip4-29\\\"><path d=\\\"M 129 373 L 206 373 L 206 413 L 129 413 L 129 373 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-29)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 159.5461 403.3562)\\\" x=\\\"0 5.336 9.784 13.784\\\">Yes.</text></g><clipPath id=\\\"clip4-30\\\"><path d=\\\"M 205 373 L 573 373 L 573 413 L 205 413 L 205 373 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 403.3562)\\\" x=\\\"0 5.3359 9.7852 13.7852\\\">Each</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 228.0844 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 229.9094 403.3562)\\\" x=\\\"0 4.4492 8.8984 11.5625 13.7851\\\">party</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.6945 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 249.5195 403.3562)\\\" x=\\\"0 4.4492 8.8984\\\">has</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.418 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 264.243 403.3562)\\\" x=\\\"0 2.2227 6.6719\\\">the</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.3641 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 277.1891 403.3562)\\\" x=\\\"0 2.6641 4.4883 8.9375 13.3867\\\">right</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 292.7984 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 294.6234 403.3562)\\\" x=\\\"0 2.2227\\\">to</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 301.2953 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 303.1203 403.3562)\\\" x=\\\"0 4.4492 7.1133 11.5625 13.3867 15.6094 18.2734 22.7227 24.9453 29.3945\\\">arbitrate,</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 334.7375 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 336.5625 403.3562)\\\" x=\\\"0 4.4492\\\">or</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 343.6758 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 345.5008 403.3562)\\\" x=\\\"0 2.2227\\\">to</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 352.1727 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 353.9976 403.3562)\\\" x=\\\"0 4.4492\\\">go</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 362.8961 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 364.7211 403.3562)\\\" x=\\\"0 2.2227\\\">to</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.393 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 373.218 403.3562)\\\" x=\\\"0 4 10.6641 15.1133 16.9375 18.7617 21.4258 25.4258 27.25 31.6992 33.5234 40.1875\\\">small-claims</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 417.4055 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 419.2305 403.3562)\\\" x=\\\"0 4 8.4492 12.8984 15.5625\\\">court</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 437.0156 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 438.8406 403.3562)\\\" x=\\\"0 1.8242\\\">if</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 442.8875 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 444.7125 403.3562)\\\" x=\\\"0 2.2227 6.6719\\\">the</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 455.8336 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 457.6586 403.3562)\\\" x=\\\"0 4 10.6641 15.1133 16.9375 18.7617 21.4258 25.4258 27.25 31.6992 33.5234 40.1875\\\">small-claims</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.8461 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 503.6711 403.3562)\\\" x=\\\"0 4 8.4492 12.8984 15.5625\\\">court</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.4562 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 523.2812 403.3562)\\\" x=\\\"0 4.4492 8.8984\\\">has</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 536.1797 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 538.0047 403.3562)\\\" x=\\\"0 2.2227 6.6719\\\">the</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 394.3016)\\\" x=\\\"0 4.4492 8.8984 14.6758 19.125\\\">power</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.639 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 233.464 394.3016)\\\" x=\\\"0 2.2227\\\">to</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 240.1359 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 241.9609 394.3016)\\\" x=\\\"0 4.4492 8.8984 13.3477\\\">hear</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.9726 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 260.0976 394.3016)\\\" x=\\\"0 2.2226 6.6719\\\">the</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 271.2187 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 273.3437 394.3016)\\\" x=\\\"0 5.7773 7.6016 11.6016 16.0508 20.5 22.7227 27.1719\\\">Dispute.</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.7383 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 304.8633 394.3016)\\\" x=\\\"0 5.3359 8 12.4492 14.2734 16.4961 19.1602 23.6094 25.832 27.6562 32.1055\\\">Arbitration</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 341.418 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 343.543 394.3016)\\\" x=\\\"0 5.7773 7.6016 9.4258\\\">will</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 354.793 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 356.918 394.3016)\\\" x=\\\"0 4 8.4492 10.2734 14.2734\\\">solve</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.6406 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 377.7656 394.3016)\\\" x=\\\"0 4.4492 6.2734\\\">all</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 385.8633 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 387.9883 394.3016)\\\" x=\\\"0 5.7774 7.6016 11.6016 16.0508 20.5 22.7227 27.1719\\\">Disputes</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.1601 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 421.2851 394.3016)\\\" x=\\\"0 2.2227 6.6719 11.1211\\\">that</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.6289 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 436.7539 394.3016)\\\" x=\\\"0 2.2226 6.6719\\\">the</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.875 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 450 394.3016)\\\" x=\\\"0 4 10.6641 15.1133 16.9375 18.7617 21.4258 25.4258 27.25 31.6992 33.5234 40.1875\\\">small-claims</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 494.1875 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 496.3125 394.3016)\\\" x=\\\"0 4 8.4492 12.8984 15.5625\\\">court</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 514.0976 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 516.2226 394.3016)\\\" x=\\\"0 4.4492 8.8984 13.3477\\\">does</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 533.5703 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 535.6953 394.3016)\\\" x=\\\"0 4.4492 8.8984\\\">not</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 546.8164 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 548.9414 394.3016)\\\" x=\\\"0 4.4492 8.8984 12.8984\\\">have</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 385.2469)\\\" x=\\\"0 2.2227 6.6719\\\">the</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 220.9711 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 223.0961 385.2469)\\\" x=\\\"0 4.4492 8.8984 14.6758 19.125\\\">power</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 244.8852 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 247.0101 385.2469)\\\" x=\\\"0 2.2227\\\">to</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 253.682 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 255.807 385.2469)\\\" x=\\\"0 4.4492 8.8984 13.3477 16.0117\\\">hear.</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 274.0414 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 276.1664 385.2469)\\\" x=\\\"0 2.2226\\\">If</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.6117 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 282.7367 385.2469)\\\" x=\\\"0 2.2227 6.6719 11.1211 13.7852\\\">there</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 300.9711 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 303.0961 385.2469)\\\" x=\\\"0 1.8242\\\">is</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.9203 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 311.0453 385.2469)\\\" x=\\\"0 4.4492\\\">an</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.9437 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 322.0687 385.2469)\\\" x=\\\"0 4.4492 8.8984 13.3477 17.7969 22.2461\\\">appeal</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 346.139 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 348.264 385.2469)\\\" x=\\\"0 2.2227 4.8867 9.3359\\\">from</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 364.264 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 366.389 385.2469)\\\" x=\\\"0 4 10.6641 15.1133 16.9375 18.7617 21.4258 25.4258 27.25 31.6992 33.5234 40.1875\\\">small-claims</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 410.5765 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 412.7015 385.2469)\\\" x=\\\"0 4 8.4492 12.8984 15.5625 17.7852\\\">court,</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 432.7094 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 434.8344 385.2469)\\\" x=\\\"0 4.4492\\\">or</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 441.9477 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 444.0727 385.2469)\\\" x=\\\"0 1.8242\\\">if</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 448.1195 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 450.2445 385.2469)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.6937 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 456.8187 385.2469)\\\" x=\\\"0 5.7773 7.6016 11.6016 16.0508 20.5 22.7227\\\">Dispute</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 483.9906 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 486.1156 385.2469)\\\" x=\\\"0 4 8.4492 12.8984 17.3476 21.7969 26.2461\\\">changes</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 516.3617 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 518.4867 385.2469)\\\" x=\\\"0 4\\\">so</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.9359 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 529.0609 385.2469)\\\" x=\\\"0 2.2227 6.6719 11.1211\\\">that</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 542.4047 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 544.5297 385.2469)\\\" x=\\\"0 2.2227 6.6719\\\">the</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 376.1922)\\\" x=\\\"0 4 10.6641 15.1133 16.9375 18.7617 21.4258 25.4258 27.25 31.6992 33.5234 40.1875\\\">small-claims</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 254.0375 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 256.1625 376.1922)\\\" x=\\\"0 4 8.4492 12.8984 15.5625\\\">court</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 273.9477 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 276.0727 376.1922)\\\" x=\\\"0 1.8242 6.2734 10.2734 14.7226\\\">loses</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 294.7953 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 296.9203 376.1922)\\\" x=\\\"0 2.2227 6.6719\\\">the</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.0414 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 310.1664 376.1922)\\\" x=\\\"0 4.4492 8.8984 14.6758 19.125\\\">power</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 331.9555 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 333.7805 376.1922)\\\" x=\\\"0 2.2227\\\">to</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 340.4523 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 342.2773 376.1922)\\\" x=\\\"0 4.4492 8.8984 13.3477\\\">hear</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 358.289 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 360.1141 376.1922)\\\" x=\\\"0 1.8242 4.0469\\\">it,</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 366.3836 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 368.2086 376.1922)\\\" x=\\\"0 2.2226 6.6719 11.1211\\\">then</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.7789 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 385.6039 376.1922)\\\" x=\\\"0 2.2227 6.6719\\\">the</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 396.725 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 398.55 376.1922)\\\" x=\\\"0 5.7773 7.6016 11.6016 16.0508 20.5 22.7227\\\">Dispute</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 425.7219 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 427.5469 376.1922)\\\" x=\\\"0 5.7773 7.6016 9.4258\\\">will</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 438.7969 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 440.6219 376.1922)\\\" x=\\\"0 4.4492 8.8984 10.7227\\\">only</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 455.3445 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 457.1695 376.1922)\\\" x=\\\"0 4.4492\\\">be</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.068 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 467.893 376.1922)\\\" x=\\\"0 4.4492 8.8984 13.3477 16.0117\\\">heard</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 488.3539 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 490.1789 376.1922)\\\" x=\\\"0 4.4492\\\">by</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 498.6281 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 500.4531 376.1922)\\\" x=\\\"0 4.4492\\\">an</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.3516 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 511.1766 376.1922)\\\" x=\\\"0 5.3359 8 12.4492 14.2734 16.4961 20.9453 23.6094\\\">Arbiter.</text></g><clipPath id=\\\"clip4-31\\\"><path d=\\\"M 35 343 L 130 343 L 130 374 L 35 374 L 35 343 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-31)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 373.5125 L 129.35 373.5125 L 129.35 343.3484 L 35.45 343.3484 L 35.45 373.5125 z \\\"/><path clip-path=\\\"url(#clip4-31)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 371.5125 L 125.25 371.5125 L 125.25 362.4578 L 39.55 362.4578 L 39.55 371.5125 z \\\"/><path clip-path=\\\"url(#clip4-31)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 41.5875 371.5125 L 123.5875 371.5125 L 123.5875 361.5125 L 41.5875 361.5125 L 41.5875 371.5125 z \\\"/><g clip-path=\\\"url(#clip4-31)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 41.5875 364.1375)\\\" x=\\\"0 5.776 10.224 12.352 16.8 19.024 23.472 27.92 30.584 32.712 37.16 41.608 43.832 45.656 50.104 54.552 58.552 60.68 65.128 69.128 70.952 74.952 77.176\\\">Do other options exist?</text></g><clipPath id=\\\"clip4-32\\\"><path d=\\\"M 129 343 L 206 343 L 206 374 L 129 374 L 129 343 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-32)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 159.5461 364.1375)\\\" x=\\\"0 5.336 9.784 13.784\\\">Yes.</text></g><clipPath id=\\\"clip4-33\\\"><path d=\\\"M 205 343 L 573 343 L 573 374 L 205 374 L 205 343 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 364.1375)\\\" x=\\\"0 5.336 9.784 12.008\\\">Both</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 226.307 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 228.8021 364.1375)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056\\\">parties</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 252.8607 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 255.3557 364.1375)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 270.469 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 272.964 364.1375)\\\" x=\\\"0 4.448 8.448\\\">use</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 285.8625 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 288.3575 364.1375)\\\" x=\\\"0 1.824 6.272 12.048 14.272 18.72\\\">lawful</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.9044 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 311.3995 364.1375)\\\" x=\\\"0 4 8.448 10.272 12.496 15.16 19.608 24.056 25.88\\\">self-help</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 341.7315 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 344.2265 364.1375)\\\" x=\\\"0 2.664 7.112 13.776 18.224 22.672 24.496 28.944 32.944\\\">remedies.</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 379.3984 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 381.8935 364.1375)\\\" x=\\\"0 4.888 9.336 11.16\\\">This</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 397.0536 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 399.5487 364.1375)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44\\\">includes</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 428.994 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 431.489 364.1375)\\\" x=\\\"0 4 8.448 10.672 13.336 17.784 20.008\\\">set-off</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 453.7195 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 456.2146 364.1375)\\\" x=\\\"0 4.448\\\">or</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 463.3279 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 465.8229 364.1375)\\\" x=\\\"0 2.664 7.112 11.56 16.008 20.008 24.008 28.456 32.456 36.456 38.28 42.728\\\">repossession</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 513.0065 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 515.5015 364.1375)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 528.8492 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 531.3443 364.1375)\\\" x=\\\"0 4 8.448 10.272\\\">sale</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 546.0669 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 548.562 364.1375)\\\" x=\\\"0 4.448\\\">of</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 555.2339 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 557.7289 364.1375)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 355.0828)\\\" x=\\\"0 5.336 8 12.448 16.896 21.344 24.008 26.232 30.232\\\">Property.</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 242.307 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 245.9017 355.0828)\\\" x=\\\"0 5.336 9.784 12.008\\\">Both</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.3587 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 265.9534 355.0828)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056\\\">parties</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.0119 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 293.6066 355.0828)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.7199 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 312.3145 355.0828)\\\" x=\\\"0 4 8.448 12.896\\\">seek</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.213 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 332.8076 355.0828)\\\" x=\\\"0 2.664 7.112 13.776 18.224 22.672 24.496 28.944\\\">remedies</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 365.7568 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 369.3515 355.0828)\\\" x=\\\"0 5.776 10.224 12.048 16.048\\\">which</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 389.8515 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 393.4461 355.0828)\\\" x=\\\"0 4.448 8.896 13.344 14.872\\\">don&apos;t</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 410.5438 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 414.1384 355.0828)\\\" x=\\\"0 4 5.824 10.272 12.096\\\">claim</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 432.9002 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 436.4948 355.0828)\\\" x=\\\"0 6.664 11.112 15.56 20.008\\\">money</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 460.5065 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 464.1012 355.0828)\\\" x=\\\"0 4.448 8.896 15.56 20.008 24.456 28.904 32.904\\\">damages.</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.234 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 502.8287 355.0828)\\\" x=\\\"0 4.888 9.336 11.16\\\">This</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 517.9888 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 521.5835 355.0828)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44\\\">includes</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.0288 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 554.6234 355.0828)\\\" x=\\\"0 4.448 7.112 11.56\\\">pre-</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 346.0281)\\\" x=\\\"0 1.824 6.272 10.72 15.168 21.832 26.28 30.728 32.952 35.08 39.08 43.528 45.352 49.352 53.8 56.464 60.912 63.136 65.264 67.088 71.536 73.36 77.808 82.256 86.256 88.48 90.304 94.752 99.2 103.2 105.424 107.552 112 114.664 116.792 121.24 125.688 130.136 131.96 134.184 138.632 143.08 144.904 149.352 151.48 154.144 158.592 160.416 162.24 166.688 168.912\\\">judgment seizure, injunctions, or equitable relief.</text></g><clipPath id=\\\"clip4-34\\\"><path d=\\\"M 35 295 L 130 295 L 130 344 L 35 344 L 35 295 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-34)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 343.3484 L 129.35 343.3484 L 129.35 295.075 L 35.45 295.075 L 35.45 343.3484 z \\\"/><path clip-path=\\\"url(#clip4-34)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 341.3484 L 125.25 341.3484 L 125.25 323.2391 L 39.55 323.2391 L 39.55 341.3484 z \\\"/><path clip-path=\\\"url(#clip4-34)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 55.0406 341.3484 L 110.0406 341.3484 L 110.0406 331.3484 L 55.0406 331.3484 L 55.0406 341.3484 z \\\"/><g clip-path=\\\"url(#clip4-34)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 55.0406 333.9734)\\\" x=\\\"0 7.552 9.376 11.2 13.024 15.152 17.376 21.824 23.648 27.648 29.776 35.552 37.376 41.824 46.272 50.272\\\">Will this Clause</text></g><path clip-path=\\\"url(#clip4-34)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 47.3375 332.2938 L 118.3375 332.2938 L 118.3375 322.2938 L 47.3375 322.2938 L 47.3375 332.2938 z \\\"/><g clip-path=\\\"url(#clip4-34)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.3375 324.9187)\\\" x=\\\"0 4 8.448 12.896 15.12 16.944 21.392 25.84 30.288 32.416 34.64 39.088 41.216 45.664 50.112 54.112 58.56 61.224 65.672\\\">continue to govern?</text></g><clipPath id=\\\"clip4-35\\\"><path d=\\\"M 129 295 L 206 295 L 206 344 L 129 344 L 129 295 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-35)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.8976 333.9734)\\\" x=\\\"0 5.336 9.784 13.784 16.008 18.136 22.584 27.032 28.856 33.304 37.304\\\">Yes, unless</text></g><g clip-path=\\\"url(#clip4-35)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 135.7785 324.9187)\\\" x=\\\"0 4.448 6.672 11.12 15.568 18.232 24.008 25.832 29.832 34.28 36.408 40.856 45.304 47.968 52.416 56.864 61.312\\\">otherwise agreed.</text></g><clipPath id=\\\"clip4-36\\\"><path d=\\\"M 205 295 L 573 295 L 573 344 L 205 344 L 205 295 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 333.9734)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 223.6351 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 227.574 333.9734)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496\\\">Clause</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 252.5233 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 256.4622 333.9734)\\\" x=\\\"0 4 6.224 10.672 14.672\\\">stays</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.134 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 279.0729 333.9734)\\\" x=\\\"0 4.448 6.672 8.896 13.344 17.344 19.568 21.392 25.392 29.84\\\">effective,</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 311.1354 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 315.0743 333.9734)\\\" x=\\\"0 4.448 8.896 10.72 15.168 19.168\\\">unless</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.2462 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 342.1851 333.9734)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 353.3062 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 357.2451 333.9734)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056\\\">parties</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 381.3037 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 385.2426 333.9734)\\\" x=\\\"0 4 5.824 10.272\\\">sign</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 399.9652 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 403.9041 333.9734)\\\" x=\\\"0 4.448\\\">an</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 412.8026 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 416.7415 333.9734)\\\" x=\\\"0 4.448 8.896 11.56 16.008 20.456 27.12 31.568 36.016\\\">agreement</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.9875 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 458.9264 333.9734)\\\" x=\\\"0 4 6.224 10.672 12.896 14.72 19.168\\\">stating</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 482.5436 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 486.4825 333.9734)\\\" x=\\\"0 1.824\\\">it</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 490.5294 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 494.4683 333.9734)\\\" x=\\\"0 4.448 8.896 13.344 17.344 21.792 23.32 25.544\\\">doesn&apos;t.</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 522.2378 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 526.1767 333.9734)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 539.9619 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 543.9008 333.9734)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496\\\">Clause</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 324.9187)\\\" x=\\\"0 4.448 8.896 12.896 17.344 20.008 24.456\\\">governs</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.3109 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 241.2057 324.9187)\\\" x=\\\"0 1.824\\\">if</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.2526 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 248.1473 324.9187)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 261.0458 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 263.9405 324.9187)\\\" x=\\\"0 2.664 7.112 11.112 15.112 16.936 21.384\\\">rescind</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 289.7765 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 292.6712 324.9187)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 303.7923 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 306.6871 324.9187)\\\" x=\\\"0 2.224 4.888 9.336 13.784 17.784 22.232 26.232 28.456 30.28 34.728 39.176\\\">transaction.</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.0894 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 350.9842 324.9187)\\\" x=\\\"0 2.224\\\">It</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.4295 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 358.3243 324.9187)\\\" x=\\\"0 4.448 8.896 12.896 17.344 20.008 24.456\\\">governs</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 386.7852 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 389.68 324.9187)\\\" x=\\\"0 1.824\\\">if</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.7268 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 396.6216 324.9187)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 409.52 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 412.4148 324.9187)\\\" x=\\\"0 4.448 8.896 11.12 15.568 20.016 21.84 24.064\\\">default,</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 438.7038 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 441.5986 324.9187)\\\" x=\\\"0 2.664 7.112 11.56 16.008 21.784\\\">renew,</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 465.6103 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 468.5051 324.9187)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456 24.456\\\">prepay,</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 495.1887 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 498.0834 324.9187)\\\" x=\\\"0 4.448\\\">or</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 505.1967 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 508.0915 324.9187)\\\" x=\\\"0 4.448 8.896 12.896\\\">pay.</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 523.2126 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 526.1073 324.9187)\\\" x=\\\"0 2.224\\\">It</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 530.5527 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 533.4474 324.9187)\\\" x=\\\"0 4.448 8.896 12.896 17.344 20.008 24.456\\\">governs</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 561.9084 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 564.8031 324.9187)\\\" x=\\\"0 1.824\\\">if</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 315.8641)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 222.7484 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 227.0199 315.8641)\\\" x=\\\"0 2.224 6.672 9.336 16 17.824 22.272 26.72 28.944 33.392\\\">terminate,</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.6371 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 266.9086 315.8641)\\\" x=\\\"0 1.824\\\">if</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 270.9555 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 275.2269 315.8641)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 288.1254 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 292.3969 315.8641)\\\" x=\\\"0 2.664 7.112 8.936 13.384 17.384 19.608 24.056 26.28 30.728\\\">reinstate,</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 325.35 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 329.6215 315.8641)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 342.9691 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 347.2406 315.8641)\\\" x=\\\"0 1.824\\\">if</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.2875 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 355.559 315.8641)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 368.4574 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 372.7289 315.8641)\\\" x=\\\"0 2.664 7.112 9.336 13.784 16.448\\\">return</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.6273 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 397.8988 315.8641)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 409.0199 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 413.2914 315.8641)\\\" x=\\\"0 5.336 8 12.448 16.896 21.344 24.008 26.232 30.232\\\">Property.</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 445.7484 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 450.0199 315.8641)\\\" x=\\\"0 2.224\\\">It</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.4652 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 458.7367 315.8641)\\\" x=\\\"0 4.448 8.896 12.896 17.344 20.008 24.456\\\">governs</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 487.1977 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 491.4691 315.8641)\\\" x=\\\"0 1.824\\\">if</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 495.516 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 499.7875 315.8641)\\\" x=\\\"0 4 8.448 12.896\\\">your</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 515.35 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 519.6215 315.8641)\\\" x=\\\"0 5.336 9.784 12.448 16.896 21.344 28.008 32.456 36.904\\\">Agreement</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 558.7543 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 563.0258 315.8641)\\\" x=\\\"0 1.824\\\">is</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 306.8094)\\\" x=\\\"0 1.824 8.488 12.936 17.384 21.384 23.608 28.056\\\">impacted</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 242.3578 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 248.4078 306.8094)\\\" x=\\\"0 4.448\\\">by</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.857 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 262.907 306.8094)\\\" x=\\\"0 4.448 8.896 13.344 17.344 20.008 24.456 28.904 31.128 35.128 39.128\\\">bankruptcy.</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 304.2625 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 310.3125 306.8094)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 324.0976 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 330.1477 306.8094)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496\\\">Clause</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.0969 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 361.1469 306.8094)\\\" x=\\\"0 2.664 7.112 13.776 18.224 20.048 24.496\\\">remains</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 389.6469 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 395.6969 306.8094)\\\" x=\\\"0 4.448 6.672 8.896 13.344 17.344 19.568 21.392 25.392 29.84\\\">effective,</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 427.7594 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 433.8094 306.8094)\\\" x=\\\"0 4.448 8.896 12.896 17.344 19.168 21.392\\\">despite</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 459.6531 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 465.7031 306.8094)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 470.1523 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 476.2023 306.8094)\\\" x=\\\"0 2.224 4.888 9.336 13.784 17.784 22.232 26.232 28.456 30.28 34.728 39.176 40.704\\\">transaction&apos;s</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 520.9094 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 526.9594 306.8094)\\\" x=\\\"0 2.224 6.672 9.336 16 17.824 22.272 26.72 28.944 30.768 35.216 39.664\\\">termination,</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 297.7547)\\\" x=\\\"0 4.448 11.112 15.56 20.008 24.456 31.12 35.568 40.016 42.24 44.464 46.592 51.04 55.04 59.488 61.312 63.976 68.424 70.648 72.472 76.92 81.368 83.592 85.72 90.168 92.832 94.96 99.408 103.856 106.52 108.744 113.192 115.856 122.52 126.968 131.416 135.416 139.864\\\">amendment, expiration, or performance.</text></g><clipPath id=\\\"clip4-37\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 770.2 L 129.85 770.2 L 129.85 769.2 L 34.95 769.2 L 34.95 770.2 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 769.2 L 35.95 769.2 L 35.95 749.0906 L 34.95 749.0906 L 34.95 769.2 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 770.2 L 206.25 770.2 L 206.25 769.2 L 129.85 769.2 L 129.85 770.2 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 769.2 L 129.85 769.2 L 129.85 749.0906 L 128.85 749.0906 L 128.85 769.2 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 770.2 L 573.45 770.2 L 573.45 769.2 L 206.25 769.2 L 206.25 770.2 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 769.2 L 573.45 769.2 L 573.45 749.0906 L 572.45 749.0906 L 572.45 769.2 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 769.2 L 206.25 769.2 L 206.25 749.0906 L 205.25 749.0906 L 205.25 769.2 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 749.0906 L 129.85 749.0906 L 129.85 748.0906 L 34.95 748.0906 L 34.95 749.0906 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 748.0906 L 35.95 748.0906 L 35.95 727.9813 L 34.95 727.9813 L 34.95 748.0906 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 749.0906 L 206.25 749.0906 L 206.25 748.0906 L 129.85 748.0906 L 129.85 749.0906 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 748.0906 L 129.85 748.0906 L 129.85 727.9813 L 128.85 727.9813 L 128.85 748.0906 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 749.0906 L 573.45 749.0906 L 573.45 748.0906 L 206.25 748.0906 L 206.25 749.0906 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 748.0906 L 573.45 748.0906 L 573.45 727.9813 L 572.45 727.9813 L 572.45 748.0906 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 748.0906 L 206.25 748.0906 L 206.25 727.9813 L 205.25 727.9813 L 205.25 748.0906 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 727.9813 L 129.85 727.9813 L 129.85 726.9813 L 34.95 726.9813 L 34.95 727.9813 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 726.9813 L 35.95 726.9813 L 35.95 706.8719 L 34.95 706.8719 L 34.95 726.9813 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 727.9813 L 206.25 727.9813 L 206.25 726.9813 L 129.85 726.9813 L 129.85 727.9813 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 726.9813 L 129.85 726.9813 L 129.85 706.8719 L 128.85 706.8719 L 128.85 726.9813 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 727.9813 L 573.45 727.9813 L 573.45 726.9813 L 206.25 726.9813 L 206.25 727.9813 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 726.9813 L 573.45 726.9813 L 573.45 706.8719 L 572.45 706.8719 L 572.45 726.9813 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 726.9813 L 206.25 726.9813 L 206.25 706.8719 L 205.25 706.8719 L 205.25 726.9813 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 706.8719 L 129.85 706.8719 L 129.85 705.8719 L 34.95 705.8719 L 34.95 706.8719 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 705.8719 L 35.95 705.8719 L 35.95 631.4344 L 34.95 631.4344 L 34.95 705.8719 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 706.8719 L 206.25 706.8719 L 206.25 705.8719 L 129.85 705.8719 L 129.85 706.8719 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 705.8719 L 129.85 705.8719 L 129.85 631.4344 L 128.85 631.4344 L 128.85 705.8719 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 706.8719 L 573.45 706.8719 L 573.45 705.8719 L 206.25 705.8719 L 206.25 706.8719 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 705.8719 L 573.45 705.8719 L 573.45 631.4344 L 572.45 631.4344 L 572.45 705.8719 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 705.8719 L 206.25 705.8719 L 206.25 631.4344 L 205.25 631.4344 L 205.25 705.8719 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 631.4344 L 129.85 631.4344 L 129.85 630.4344 L 34.95 630.4344 L 34.95 631.4344 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 630.4344 L 35.95 630.4344 L 35.95 579.1609 L 34.95 579.1609 L 34.95 630.4344 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 631.4344 L 206.25 631.4344 L 206.25 630.4344 L 129.85 630.4344 L 129.85 631.4344 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 630.4344 L 129.85 630.4344 L 129.85 579.1609 L 128.85 579.1609 L 128.85 630.4344 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 631.4344 L 573.45 631.4344 L 573.45 630.4344 L 206.25 630.4344 L 206.25 631.4344 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 630.4344 L 573.45 630.4344 L 573.45 579.1609 L 572.45 579.1609 L 572.45 630.4344 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 630.4344 L 206.25 630.4344 L 206.25 579.1609 L 205.25 579.1609 L 205.25 630.4344 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 579.1609 L 129.85 579.1609 L 129.85 578.1609 L 34.95 578.1609 L 34.95 579.1609 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 578.1609 L 35.95 578.1609 L 35.95 530.8875 L 34.95 530.8875 L 34.95 578.1609 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 579.1609 L 206.25 579.1609 L 206.25 578.1609 L 129.85 578.1609 L 129.85 579.1609 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 578.1609 L 129.85 578.1609 L 129.85 530.8875 L 128.85 530.8875 L 128.85 578.1609 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 579.1609 L 573.45 579.1609 L 573.45 578.1609 L 206.25 578.1609 L 206.25 579.1609 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 578.1609 L 573.45 578.1609 L 573.45 530.8875 L 572.45 530.8875 L 572.45 578.1609 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 578.1609 L 206.25 578.1609 L 206.25 530.8875 L 205.25 530.8875 L 205.25 578.1609 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 530.8875 L 129.85 530.8875 L 129.85 529.8875 L 34.95 529.8875 L 34.95 530.8875 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 529.8875 L 35.95 529.8875 L 35.95 491.6688 L 34.95 491.6688 L 34.95 529.8875 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 530.8875 L 206.25 530.8875 L 206.25 529.8875 L 129.85 529.8875 L 129.85 530.8875 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 529.8875 L 129.85 529.8875 L 129.85 491.6688 L 128.85 491.6688 L 128.85 529.8875 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 530.8875 L 573.45 530.8875 L 573.45 529.8875 L 206.25 529.8875 L 206.25 530.8875 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 529.8875 L 573.45 529.8875 L 573.45 491.6688 L 572.45 491.6688 L 572.45 529.8875 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 529.8875 L 206.25 529.8875 L 206.25 491.6688 L 205.25 491.6688 L 205.25 529.8875 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 491.6688 L 129.85 491.6688 L 129.85 490.6688 L 34.95 490.6688 L 34.95 491.6688 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 490.6688 L 35.95 490.6688 L 35.95 434.3406 L 34.95 434.3406 L 34.95 490.6688 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 491.6688 L 206.25 491.6688 L 206.25 490.6688 L 129.85 490.6688 L 129.85 491.6688 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 490.6688 L 129.85 490.6688 L 129.85 434.3406 L 128.85 434.3406 L 128.85 490.6688 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 491.6688 L 573.45 491.6688 L 573.45 490.6688 L 206.25 490.6688 L 206.25 491.6688 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 490.6688 L 573.45 490.6688 L 573.45 434.3406 L 572.45 434.3406 L 572.45 490.6688 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 490.6688 L 206.25 490.6688 L 206.25 434.3406 L 205.25 434.3406 L 205.25 490.6688 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 434.3406 L 129.85 434.3406 L 129.85 433.3406 L 34.95 433.3406 L 34.95 434.3406 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 433.3406 L 35.95 433.3406 L 35.95 413.2313 L 34.95 413.2313 L 34.95 433.3406 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 434.3406 L 206.25 434.3406 L 206.25 433.3406 L 129.85 433.3406 L 129.85 434.3406 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 433.3406 L 129.85 433.3406 L 129.85 413.2313 L 128.85 413.2313 L 128.85 433.3406 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 434.3406 L 573.45 434.3406 L 573.45 433.3406 L 206.25 433.3406 L 206.25 434.3406 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 433.3406 L 573.45 433.3406 L 573.45 413.2313 L 572.45 413.2313 L 572.45 433.3406 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 433.3406 L 206.25 433.3406 L 206.25 413.2313 L 205.25 413.2313 L 205.25 433.3406 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 413.2313 L 129.85 413.2313 L 129.85 412.2313 L 34.95 412.2313 L 34.95 413.2313 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 412.2313 L 35.95 412.2313 L 35.95 374.0125 L 34.95 374.0125 L 34.95 412.2313 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 413.2313 L 206.25 413.2313 L 206.25 412.2313 L 129.85 412.2313 L 129.85 413.2313 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 412.2313 L 129.85 412.2313 L 129.85 374.0125 L 128.85 374.0125 L 128.85 412.2313 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 413.2313 L 573.45 413.2313 L 573.45 412.2313 L 206.25 412.2313 L 206.25 413.2313 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 412.2313 L 573.45 412.2313 L 573.45 374.0125 L 572.45 374.0125 L 572.45 412.2313 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 412.2313 L 206.25 412.2313 L 206.25 374.0125 L 205.25 374.0125 L 205.25 412.2313 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 374.0125 L 129.85 374.0125 L 129.85 373.0125 L 34.95 373.0125 L 34.95 374.0125 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 373.0125 L 35.95 373.0125 L 35.95 343.8484 L 34.95 343.8484 L 34.95 373.0125 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 374.0125 L 206.25 374.0125 L 206.25 373.0125 L 129.85 373.0125 L 129.85 374.0125 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 373.0125 L 129.85 373.0125 L 129.85 343.8484 L 128.85 343.8484 L 128.85 373.0125 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 374.0125 L 573.45 374.0125 L 573.45 373.0125 L 206.25 373.0125 L 206.25 374.0125 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 373.0125 L 573.45 373.0125 L 573.45 343.8484 L 572.45 343.8484 L 572.45 373.0125 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 373.0125 L 206.25 373.0125 L 206.25 343.8484 L 205.25 343.8484 L 205.25 373.0125 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 343.8484 L 129.85 343.8484 L 129.85 342.8484 L 34.95 342.8484 L 34.95 343.8484 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 295.575 L 129.85 295.575 L 129.85 294.575 L 34.95 294.575 L 34.95 295.575 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 342.8484 L 35.95 342.8484 L 35.95 295.575 L 34.95 295.575 L 34.95 342.8484 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 343.8484 L 206.25 343.8484 L 206.25 342.8484 L 129.85 342.8484 L 129.85 343.8484 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 295.575 L 206.25 295.575 L 206.25 294.575 L 129.85 294.575 L 129.85 295.575 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 342.8484 L 129.85 342.8484 L 129.85 295.575 L 128.85 295.575 L 128.85 342.8484 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 343.8484 L 573.45 343.8484 L 573.45 342.8484 L 206.25 342.8484 L 206.25 343.8484 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 295.575 L 573.45 295.575 L 573.45 294.575 L 206.25 294.575 L 206.25 295.575 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 342.8484 L 573.45 342.8484 L 573.45 295.575 L 572.45 295.575 L 572.45 342.8484 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 342.8484 L 206.25 342.8484 L 206.25 295.575 L 205.25 295.575 L 205.25 342.8484 z \\\"/><g clip-path=\\\"url(#clip4-37)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 286.1385 282.8562)\\\" x=\\\"0 6.67 10 15.56 20.56 26.12 31.12\\\">Process</text></g><clipPath id=\\\"clip4-38\\\"><path d=\\\"M 35 214 L 128 214 L 128 272 L 35 272 L 35 214 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-38)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.2 271.652 L 127.6 271.652 L 127.6 214.3238 L 35.2 214.3238 L 35.2 271.652 z \\\"/><path clip-path=\\\"url(#clip4-38)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.3 269.652 L 123.5 269.652 L 123.5 251.5426 L 39.3 251.5426 L 39.3 269.652 z \\\"/><path clip-path=\\\"url(#clip4-38)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 44.7652 269.652 L 118.7652 269.652 L 118.7652 259.652 L 44.7652 259.652 L 44.7652 269.652 z \\\"/><g clip-path=\\\"url(#clip4-38)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 44.7652 262.277)\\\" x=\\\"0 5.776 10.224 16 18.128 22.576 27.024 31.472 35.472 37.6 42.048 44.712 49.16 50.984 53.208 55.872 60.32 62.544 64.368 68.816\\\">How does arbitration</text></g><path clip-path=\\\"url(#clip4-38)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 71.3961 260.5973 L 92.3961 260.5973 L 92.3961 250.5973 L 71.3961 250.5973 L 71.3961 260.5973 z \\\"/><g clip-path=\\\"url(#clip4-38)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 71.3961 253.2223)\\\" x=\\\"0 4 6.224 10.672 13.336 15.56\\\">start?</text></g><clipPath id=\\\"clip4-39\\\"><path d=\\\"M 127 214 L 206 214 L 206 272 L 127 272 L 127 214 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-39)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 137.6496 262.277)\\\" x=\\\"0 6.664 11.112 12.936 14.76 16.584 21.032 25.48 27.608 32.056 34.184 38.632 43.08 45.304 47.128 51.128 55.576\\\">Mailing a notice.</text></g><clipPath id=\\\"clip4-40\\\"><path d=\\\"M 205 214 L 574 214 L 574 272 L 205 272 L 205 214 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 262.277)\\\" x=\\\"0 5.336 7.16 9.384 13.832 18.28\\\">Either</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 230.5453 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 233.8153 262.277)\\\" x=\\\"0 4.448 8.896 11.56 13.784\\\">party</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 251.6004 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 254.8704 262.277)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 269.9837 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 273.2536 262.277)\\\" x=\\\"0 6.664 11.112 12.936\\\">mail</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 288.0154 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 291.2853 262.277)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.4064 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 305.6764 262.277)\\\" x=\\\"0 4.448 6.672 11.12 15.568\\\">other</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 323.9108 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 327.1807 262.277)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 331.6299 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 334.8999 262.277)\\\" x=\\\"0 2.664 7.112 11.56 16.008 20.456 24.456\\\">request</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 361.5835 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 364.8535 262.277)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.5253 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 374.7953 262.277)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 29.392\\\">arbitrate,</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 406.4125 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 409.6825 262.277)\\\" x=\\\"0 4.448 8.448 12.896\\\">even</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 427.0301 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 430.3001 262.277)\\\" x=\\\"0 1.824\\\">if</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.3469 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 437.6169 262.277)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 442.0661 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 445.3361 262.277)\\\" x=\\\"0 1.824 6.272 12.048 16.048 20.496 22.32\\\">lawsuit</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 469.883 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 473.1529 262.277)\\\" x=\\\"0 4.448 8.896\\\">has</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.0514 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 489.3213 262.277)\\\" x=\\\"0 4.448 8.896 13.344\\\">been</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 507.1182 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 510.3882 262.277)\\\" x=\\\"0 2.224 4.048 5.872 10.32 14.768\\\">filed.</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 527.3804 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 530.6503 262.277)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 544.4355 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 547.7055 262.277)\\\" x=\\\"0 4.448 8.896 11.12 12.944 16.944\\\">notice</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 253.2223)\\\" x=\\\"0 4 8.448 12.896 17.344 19.168\\\">should</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.2211 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 236.4008 253.2223)\\\" x=\\\"0 4.448 8.896 12.896 16.896 19.56 21.384 25.832\\\">describe</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 266.6859 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 269.8656 253.2223)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.9867 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 284.1664 253.2223)\\\" x=\\\"0 5.776 7.6 11.6 16.048 20.496 22.72\\\">Dispute</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 311.3383 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 314.518 253.2223)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 327.8656 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 331.0453 253.2223)\\\" x=\\\"0 2.664 7.112 8.936 10.76 15.208\\\">relief</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.4789 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 351.6586 253.2223)\\\" x=\\\"0 4 8.448 12.896 17.344 21.792 24.016\\\">sought.</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 377.9008 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 381.0805 253.2223)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 394.8656 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 398.0453 253.2223)\\\" x=\\\"0 2.664 7.112 11.112 15.56 17.384 21.384 23.208 27.656\\\">receiving</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.1547 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 433.3344 253.2223)\\\" x=\\\"0 4.448 8.896 11.56 13.784\\\">party</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 451.1195 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 454.2992 253.2223)\\\" x=\\\"0 6.664 11.112 15.112\\\">must</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 471.6351 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 474.8148 253.2223)\\\" x=\\\"0 6.664 11.112 12.936\\\">mail</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.5765 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 492.7562 253.2223)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 497.2055 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 500.3851 253.2223)\\\" x=\\\"0 2.664 7.112 11.112 15.56 20.008 24.456 28.456\\\">response</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 533.2953 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 536.475 253.2223)\\\" x=\\\"0 5.776 7.6 9.824 14.272 16.096\\\">within</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 557.0219 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 560.2015 253.2223)\\\" x=\\\"0 4.448\\\">20</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 244.1676)\\\" x=\\\"0 4.448 8.896 12.896 16.896\\\">days.</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 228.7211 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 231.1538 244.1676)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 235.5991 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 238.0317 244.1676)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 250.9302 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 253.3629 244.1676)\\\" x=\\\"0 6.664 11.112 12.936\\\">mail</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 268.1246 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 270.5573 244.1676)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.6783 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 284.111 244.1676)\\\" x=\\\"0 4.448 8.896 15.56 20.008 24.456 28.904\\\">demand,</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 315.2438 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 317.6765 244.1676)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 330.575 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 333.0076 244.1676)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.1209 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 350.5536 244.1676)\\\" x=\\\"0 4 8.448 12.896 17.344 21.344\\\">choose</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 376.3505 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 378.7831 244.1676)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 389.9042 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 392.3369 244.1676)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 26.768 31.216\\\">arbitration</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 428.0049 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 430.4375 244.1676)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456\\\">group.</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 453.1211 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 455.5538 244.1676)\\\" x=\\\"0 6.224 8.888\\\">Or,</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.6632 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 469.0959 244.1676)\\\" x=\\\"0 4 8.448 12.896\\\">your</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.6584 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 487.091 244.1676)\\\" x=\\\"0 4.448 8.896 15.56 20.008 24.456\\\">demand</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 516.0012 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 518.4339 244.1676)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 533.5471 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 535.9798 244.1676)\\\" x=\\\"0 4 6.224 10.672 12.896\\\">state</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.3236 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 555.7562 244.1676)\\\" x=\\\"0 2.224 6.672 11.12\\\">that</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 235.1129)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 222.4984 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 224.7098 235.1129)\\\" x=\\\"0 5.776 10.224 14.672\\\">want</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 241.6082 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 243.8196 235.1129)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 254.9407 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 257.152 235.1129)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056\\\">parties</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.2106 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 283.4219 235.1129)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.0938 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 292.3052 235.1129)\\\" x=\\\"0 4 8.448 12.896 17.344 21.344\\\">choose</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 318.1021 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 320.3134 235.1129)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 324.7626 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 326.974 235.1129)\\\" x=\\\"0 1.824 6.272 10.272 14.72\\\">local</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 343.5208 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 345.7322 235.1129)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608\\\">Arbiter.</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.5642 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 373.7756 235.1129)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 378.2209 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 380.4322 235.1129)\\\" x=\\\"0 2.664 7.112 8.936 13.384 15.608 20.056\\\">related</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 404.94 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 407.1514 235.1129)\\\" x=\\\"0 2.224 6.672 8.496 11.16\\\">third</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 422.7608 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 424.9721 235.1129)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056\\\">parties</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 449.0307 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 451.2421 235.1129)\\\" x=\\\"0 4.448\\\">or</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 458.3553 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 460.5667 235.1129)\\\" x=\\\"0 5.776\\\">we</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 470.7932 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 473.0046 235.1129)\\\" x=\\\"0 6.664 11.112 12.936\\\">mail</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 487.7663 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 489.9777 235.1129)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.0988 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 503.3101 235.1129)\\\" x=\\\"0 4.448 8.896 15.56 20.008 24.456 28.904\\\">demand,</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 534.4429 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 536.6543 235.1129)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.5527 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 551.7641 235.1129)\\\" x=\\\"0 6.664 11.112 15.112\\\">must</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 226.0582)\\\" x=\\\"0 2.664 7.112 11.112 15.56 20.008 24.456\\\">respond</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.5101 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 241.2739 226.0582)\\\" x=\\\"0 1.824\\\">in</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.5474 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 250.3112 226.0582)\\\" x=\\\"0 4.448\\\">20</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.2096 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 261.9734 226.0582)\\\" x=\\\"0 4.448 8.896 12.896 16.896\\\">days.</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.0945 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 283.8583 226.0582)\\\" x=\\\"0 5.336 9.784 14.232\\\">Your</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 300.7567 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 303.5205 226.0582)\\\" x=\\\"0 2.664 7.112 11.112 15.56 20.008 24.456 28.456\\\">response</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 336.4306 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 339.1944 226.0582)\\\" x=\\\"0 6.664 11.112 15.112\\\">must</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 356.5304 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 359.2942 226.0582)\\\" x=\\\"0 4 8.448 12.896 17.344 21.344\\\">choose</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 385.091 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 387.8548 226.0582)\\\" x=\\\"0 4.448\\\">an</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 396.7533 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 399.517 226.0582)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 26.768 31.216\\\">arbitration</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 435.185 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 437.9488 226.0582)\\\" x=\\\"0 4.448 7.112 11.56 16.008\\\">group</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 458.4097 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 461.1735 226.0582)\\\" x=\\\"0 4.448\\\">or</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.2868 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 471.0506 226.0582)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456 24.456\\\">propose</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.9607 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 502.7245 226.0582)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 507.1737 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 509.9375 226.0582)\\\" x=\\\"0 1.824 6.272 10.272 14.72\\\">local</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.4844 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 529.2482 226.0582)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608\\\">Arbiter.</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 555.0802 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 557.844 226.0582)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 562.2893 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 565.0531 226.0582)\\\" x=\\\"0 1.824\\\">it</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 217.0035)\\\" x=\\\"0 4.448 8.896 13.344 17.344 21.792 23.32 25.544 27.768 29.896 35.672 40.12 42.248 48.912 53.36 57.36 59.488 63.488 67.936 72.384 76.832 80.832 85.28 87.408 89.632 94.08 98.528 100.656 105.104 107.768 112.216 116.664 121.112\\\">doesn&apos;t, we may choose the group.</text></g><clipPath id=\\\"clip4-41\\\"><path d=\\\"M 35 137 L 128 137 L 128 215 L 35 215 L 35 137 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-41)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.2 214.3238 L 127.6 214.3238 L 127.6 137.8863 L 35.2 137.8863 L 35.2 214.3238 z \\\"/><path clip-path=\\\"url(#clip4-41)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.3 212.3238 L 123.5 212.3238 L 123.5 203.2691 L 39.3 203.2691 L 39.3 212.3238 z \\\"/><path clip-path=\\\"url(#clip4-41)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 53.191 212.3238 L 110.191 212.3238 L 110.191 202.3238 L 53.191 202.3238 L 53.191 212.3238 z \\\"/><g clip-path=\\\"url(#clip4-41)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 53.191 204.9488)\\\" x=\\\"0 7.552 12 16.448 18.576 23.024 25.688 30.136 31.96 34.184 36.848 41.296 43.52 47.968 51.968\\\">* D E M O *tes?</text></g><clipPath id=\\\"clip4-42\\\"><path d=\\\"M 127 137 L 206 137 L 206 215 L 127 215 L 127 137 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-42)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 134.4621 204.9488)\\\" x=\\\"0 5.336 10.672 16.008 18.232 20.36 24.36 29.696 36.36 41.696 43.92 46.048 50.496 53.16 55.288 59.736\\\">AAA, JAMS, or an</text></g><g clip-path=\\\"url(#clip4-42)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 140.1164 195.8941)\\\" x=\\\"0 4.448 8.896 11.56 16.008 20.456 24.904 27.032 32.368 35.032 39.48 41.304 43.528 47.976 50.64\\\">agreed Arbiter.</text></g><clipPath id=\\\"clip4-43\\\"><path d=\\\"M 205 137 L 574 137 L 574 215 L 205 215 L 205 137 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 204.9488)\\\" x=\\\"0 5.336 9.784\\\">You</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 223.8344 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 226.373 204.9488)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 241.4863 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 244.025 204.9488)\\\" x=\\\"0 4 8.448 10.272 14.72 18.72\\\">select</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 264.9703 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 267.509 204.9488)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 278.6301 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 281.1687 204.9488)\\\" x=\\\"0 5.336 12 16.448 19.112 20.936 24.936 29.384\\\">American</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 315.0047 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 317.5433 204.9488)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 19.16 23.608 25.832 27.656 32.104\\\">Arbitration</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 354.098 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 356.6367 204.9488)\\\" x=\\\"0 5.336 9.336 13.336 17.784 21.784 23.608 28.056 30.28 32.104 36.552\\\">Association</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 397.6406 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 400.1793 204.9488)\\\" x=\\\"0 2.664 5.504 10.84 16.176 21.512 24.352\\\">(&quot;AAA&quot;)</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 427.1949 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 429.7336 204.9488)\\\" x=\\\"0 2.664 7.112 9.776 14.224 18.672 23.12 25.784 30.232 34.68 39.128 41.792 46.24 50.688 55.136 59.584\\\">(1-800-778-7879)</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 491.9953 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 494.534 204.9488)\\\" x=\\\"0 4.448 6.672 8.896 13.344 15.568 17.792 20.016 25.792 31.568 37.344 39.568 44.016 48.464 51.128 53.352 57.8 60.464\\\">http://www.adr.org</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.448 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 561.9867 204.9488)\\\" x=\\\"0 4.448\\\">or</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 195.8941)\\\" x=\\\"0 4 9.336 16\\\">JAMS</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 185.8395)\\\" x=\\\"0 2.664 7.112 9.776 14.224 18.672 23.12 25.784 30.232 34.68 39.128 41.792 46.24 50.688 55.136 59.584\\\">(1-800-352-5267)</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 271.8617 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 274.6277 185.8395)\\\" x=\\\"0 4.448 6.672 8.896 13.344 15.568 17.792 20.016 25.792 31.568 37.344 39.568 41.392 45.84 52.504 56.504 60.952 65.4 68.064 70.288 74.288 78.736 85.4\\\">http://www.jamsadr.com.</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 362.2527 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 365.0186 185.8395)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 378.8038 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 381.5697 185.8395)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056\\\">parties</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 405.6283 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 408.3943 185.8395)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 423.5075 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 426.2735 185.8395)\\\" x=\\\"0 4.448 6.272 10.272\\\">also</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 440.9961 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 443.7621 185.8395)\\\" x=\\\"0 4.448 8.896 11.56 16.008\\\">agree</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 464.223 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 466.989 185.8395)\\\" x=\\\"0 1.824\\\">in</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 473.2624 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 476.0284 185.8395)\\\" x=\\\"0 5.776 8.44 10.264 12.488 14.312 18.76\\\">writing</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.2393 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 502.0053 185.8395)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 508.6771 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 511.4431 185.8395)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 515.8923 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 518.6583 185.8395)\\\" x=\\\"0 1.824 6.272 10.272 14.72\\\">local</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 535.2051 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 537.9711 185.8395)\\\" x=\\\"0 4.448 6.672 8.896 13.344 16.008 20.456 24.904 28.904\\\">attorney,</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 176.7848)\\\" x=\\\"0 2.664 7.112 9.336 11.16 13.824 18.272\\\">retired</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 232.3227 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 235.2385 176.7848)\\\" x=\\\"0 1.824 6.272 10.72 15.168 19.616\\\">judge,</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.0823 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 259.9982 176.7848)\\\" x=\\\"0 4.448\\\">or</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 267.1114 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 270.0273 176.7848)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 293.6367 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 296.5526 176.7848)\\\" x=\\\"0 1.824\\\">in</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.826 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 305.7419 176.7848)\\\" x=\\\"0 4.448 8.896 13.344\\\">good</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 323.5388 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 326.4547 176.7848)\\\" x=\\\"0 4 6.224 10.672 15.12 19.568 21.392 25.84\\\">standing</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 356.7477 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 359.6635 176.7848)\\\" x=\\\"0 5.776 7.6 9.824\\\">with</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 373.937 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 376.8529 176.7848)\\\" x=\\\"0 4.448\\\">an</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 385.7513 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 388.6672 176.7848)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 26.768 31.216\\\">arbitration</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 424.3351 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 427.251 176.7848)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456\\\">group.</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 449.9346 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 452.8505 176.7848)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.6357 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 469.5516 176.7848)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 493.1609 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 496.0768 176.7848)\\\" x=\\\"0 6.664 11.112 15.112\\\">must</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 513.4127 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 516.3286 176.7848)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944\\\">arbitrate</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 545.7232 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 548.6391 176.7848)\\\" x=\\\"0 4.448 8.896 13.344 17.792\\\">under</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 167.7301)\\\" x=\\\"0 5.336 10.672\\\">AAA</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.6078 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 228.6503 167.7301)\\\" x=\\\"0 4.448\\\">or</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 235.7636 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 238.8062 167.7301)\\\" x=\\\"0 4 9.336 16\\\">JAMS</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 260.1421 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 263.1846 167.7301)\\\" x=\\\"0 4 8.448 12.896 16.896 21.344 28.008 32.456\\\">consumer</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 298.3096 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 301.3522 167.7301)\\\" x=\\\"0 2.664 7.112 8.936 13.384 17.384\\\">rules.</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 320.9615 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 324.0041 167.7301)\\\" x=\\\"0 5.336 9.784\\\">You</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.2384 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 341.281 167.7301)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 356.3943 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 359.4368 167.7301)\\\" x=\\\"0 4.448 8.896\\\">get</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 370.5579 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 373.6004 167.7301)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 378.0497 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 381.0922 167.7301)\\\" x=\\\"0 4 8.448 12.896\\\">copy</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 397.9906 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 401.0331 167.7301)\\\" x=\\\"0 4.448\\\">of</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 407.705 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 410.7476 167.7301)\\\" x=\\\"0 2.224 6.672 11.12 15.12\\\">these</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.3179 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 433.3604 167.7301)\\\" x=\\\"0 2.664 7.112 8.936 13.384\\\">rules</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 450.7471 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 453.7897 167.7301)\\\" x=\\\"0 2.224 4.888 9.336\\\">from</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 469.7897 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 472.8322 167.7301)\\\" x=\\\"0 4 8.448 12.448\\\">such</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.7306 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 492.7732 167.7301)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456\\\">group.</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 515.4568 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 518.4993 167.7301)\\\" x=\\\"0 5.336 9.784\\\">Any</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 532.2845 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 535.327 167.7301)\\\" x=\\\"0 2.664 7.112 8.936 13.384\\\">rules</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.7137 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 555.7562 167.7301)\\\" x=\\\"0 2.224 6.672 11.12\\\">that</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 158.6754)\\\" x=\\\"0 4 8.448 12.896 15.12 16.944 18.768 22.768\\\">conflict</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 234.5922 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 237.7758 158.6754)\\\" x=\\\"0 5.776 7.6 9.824\\\">with</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 252.0492 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 255.2328 158.6754)\\\" x=\\\"0 4.448 8.896\\\">any</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 268.1312 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 271.3148 158.6754)\\\" x=\\\"0 4.448\\\">of</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 277.9867 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 281.1703 158.6754)\\\" x=\\\"0 4.448 8.896\\\">our</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 292.7328 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 295.9164 158.6754)\\\" x=\\\"0 4.448 8.896 11.56 16.008 20.456 27.12 31.568 36.016 38.24\\\">agreements</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.1625 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 341.3461 158.6754)\\\" x=\\\"0 5.776 7.6 9.824\\\">with</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.6195 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 358.8031 158.6754)\\\" x=\\\"0 4 8.448 12.896\\\">you,</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 373.9242 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 377.1078 158.6754)\\\" x=\\\"0 4.448 8.896 13.344 14.872\\\">don&apos;t</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 394.2055 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 397.389 158.6754)\\\" x=\\\"0 4.448 8.896 13.344 15.168 19.168\\\">apply.</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 418.7836 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 421.9672 158.6754)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 426.4125 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 429.5961 158.6754)\\\" x=\\\"0 2.224 6.672 11.12 15.12\\\">these</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 449.1664 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 452.35 158.6754)\\\" x=\\\"0 4.448 8.896 11.12 12.944 17.392 21.84\\\">options</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 478.1937 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 481.3773 158.6754)\\\" x=\\\"0 4.448 7.112 11.56 16.008 17.536\\\">aren&apos;t</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.139 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 504.3227 158.6754)\\\" x=\\\"0 4.448 8.448 12.896 14.72 16.544 20.992 25.44 27.264 31.712\\\">available,</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 538.264 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 541.4476 158.6754)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 554.7953 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 557.9789 158.6754)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 149.6207)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056\\\">parties</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.6586 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 236.2535 149.6207)\\\" x=\\\"0 4 8.448 12.896 14.424\\\">can&apos;t</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 252.9019 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 255.4968 149.6207)\\\" x=\\\"0 4.448 8.896 11.56 16.008\\\">agree</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.9578 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 278.5527 149.6207)\\\" x=\\\"0 4.448\\\">on</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 287.4511 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 290.046 149.6207)\\\" x=\\\"0 4.448 8.896 13.344 15.568 20.016 24.464 27.128\\\">another,</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.4015 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 321.9964 149.6207)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 326.4456 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 329.0405 149.6207)\\\" x=\\\"0 4 8.448 12.896 15.56\\\">court</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 346.8256 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 349.4205 149.6207)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 364.5338 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 367.1287 149.6207)\\\" x=\\\"0 4 8.448 12.896 17.344 21.344\\\">choose</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 392.9256 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 395.5205 149.6207)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 406.6416 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 409.2365 149.6207)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456\\\">group.</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 431.9201 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 434.515 149.6207)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 448.3001 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 450.895 149.6207)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056\\\">parties</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.9536 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 477.5485 149.6207)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 488.7985 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 491.3934 149.6207)\\\" x=\\\"0 2.224 6.672 11.12\\\">then</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 506.9637 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 509.5586 149.6207)\\\" x=\\\"0 4.448 8.896 11.12 15.568 17.392\\\">obtain</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 531.4024 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 533.9973 149.6207)\\\" x=\\\"0 4.448\\\">an</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 542.8957 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 545.4906 149.6207)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 140.566)\\\" x=\\\"0 4.448 8.896 13.344 17.792 20.456 22.584 26.584 31.032 35.032 39.48 41.608 46.056 48.72 53.168 57.616 62.064 63.592 67.592 69.72 72.384 76.832 78.656 83.104 87.104 89.328 91.456 96.792 101.24 105.24 109.688 111.816 117.152 119.816 124.264 126.088 128.312 132.76 135.424 137.552 144.216 148.664 152.664 154.888 157.016 161.464 165.912 168.136 172.584 175.248 179.248 183.696 185.824 189.824 194.272 198.72 201.384 203.512 207.96 212.408 215.072 219.52 223.968 230.632 235.08 239.528 241.752 245.752 247.88 253.656 255.48 257.704 262.152 264.28 268.728 272.728 274.952 277.08 281.528 285.528 287.656 289.88 294.328 298.776 302.776 304.904 309.352 312.016 316.464 318.592 324.368 327.032 328.856 331.08 333.304 337.752 342.2\\\">under such group&apos;s rules. Such Arbiter must enforce your agreements with us, as they are written.</text></g><clipPath id=\\\"clip4-44\\\"><path d=\\\"M 35 116 L 128 116 L 128 138 L 35 138 L 35 116 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-44)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.2 137.8863 L 127.6 137.8863 L 127.6 116.777 L 35.2 116.777 L 35.2 137.8863 z \\\"/><path clip-path=\\\"url(#clip4-44)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.3 135.8863 L 123.5 135.8863 L 123.5 117.777 L 39.3 117.777 L 39.3 135.8863 z \\\"/><path clip-path=\\\"url(#clip4-44)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.6754 135.8863 L 125.6754 135.8863 L 125.6754 125.8863 L 39.6754 125.8863 L 39.6754 135.8863 z \\\"/><g clip-path=\\\"url(#clip4-44)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 39.6754 128.5113)\\\" x=\\\"0 7.552 9.376 11.2 13.024 15.152 17.376 21.824 26.272 28.4 32.848 37.296 41.744 44.408 46.232 50.68 55.128 57.256 61.704 66.152 68.28 72.728 77.176 79\\\">Will the hearing be held</text></g><path clip-path=\\\"url(#clip4-44)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 66.9449 126.8316 L 95.9449 126.8316 L 95.9449 116.8316 L 66.9449 116.8316 L 66.9449 126.8316 z \\\"/><g clip-path=\\\"url(#clip4-44)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 66.9449 119.4567)\\\" x=\\\"0 4.448 8.896 13.344 16.008 20.456 24.456\\\">nearby?</text></g><clipPath id=\\\"clip4-45\\\"><path d=\\\"M 127 116 L 206 116 L 206 138 L 127 138 L 127 116 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-45)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 158.5461 128.5113)\\\" x=\\\"0 5.336 9.784 13.784\\\">Yes.</text></g><clipPath id=\\\"clip4-46\\\"><path d=\\\"M 205 116 L 574 116 L 574 138 L 205 138 L 205 116 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-46)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 128.5113)\\\" x=\\\"0 4.888 9.336 13.784 15.912 21.248 23.912 28.36 30.184 32.408 36.856 39.52 41.648 47.424 49.248 51.072 52.896 55.024 59.472 62.136 66.584 71.032 73.696 75.824 78.048 82.496 86.944 89.072 93.52 97.968 102.416 105.08 106.904 111.352 115.8 117.928 123.704 125.528 127.752 132.2 134.024 138.472 140.6 145.048 149.496 151.624 158.288 160.112 161.936 166.384 170.384 172.512 176.96 179.184 181.312 185.312 189.76 194.208 196.872 199 203.448 207.896 214.56 219.008 221.136 225.584 228.248 230.376 236.152 240.6 245.048 247.712 252.16 254.288 256.512 260.96 265.408 267.536 269.76 272.424 276.872 281.32 285.32 289.768 293.768 295.992 297.816 302.264 306.712 308.84 313.288 317.288 321.288 325.736 328.4 331.064 335.512 339.96\\\">The Arbiter will order the hearing within 30 miles of your home or where the transaction occurred.</text></g><clipPath id=\\\"clip4-47\\\"><path d=\\\"M 35 74 L 128 74 L 128 117 L 35 117 L 35 74 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-47)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.2 116.777 L 127.6 116.777 L 127.6 74.777 L 35.2 74.777 L 35.2 116.777 z \\\"/><path clip-path=\\\"url(#clip4-47)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.3 114.777 L 123.5 114.777 L 123.5 105.7223 L 39.3 105.7223 L 39.3 114.777 z \\\"/><path clip-path=\\\"url(#clip4-47)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 43.6695 114.777 L 119.6695 114.777 L 119.6695 104.777 L 43.6695 104.777 L 43.6695 114.777 z \\\"/><g clip-path=\\\"url(#clip4-47)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 43.6695 107.402)\\\" x=\\\"0 7.552 12 16.448 18.672 20.8 25.248 29.696 34.144 38.592 40.816 42.944 47.392 51.84 56.288 60.736 65.184 67.008 71.008\\\">What about appeals?</text></g><clipPath id=\\\"clip4-48\\\"><path d=\\\"M 127 74 L 206 74 L 206 117 L 127 117 L 127 74 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-48)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 145.2277 107.402)\\\" x=\\\"0 5.336 9.784 14.232 18.68 23.128 24.952 28.952 31.08 35.528 38.192\\\">Appeals are</text></g><g clip-path=\\\"url(#clip4-48)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 153.8098 98.3473)\\\" x=\\\"0 1.824 3.648 10.312 12.136 14.36 18.808 23.256\\\">limited.</text></g><clipPath id=\\\"clip4-49\\\"><path d=\\\"M 205 74 L 574 74 L 574 117 L 205 117 L 205 74 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 107.402)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 223.3852 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 227.8141 107.402)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608 25.136\\\">Arbiter&apos;s</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.9508 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 261.3798 107.402)\\\" x=\\\"0 4.448 8.896 12.896 14.72 18.72 20.544 24.992\\\">decision</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.8251 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 295.2541 107.402)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 306.5041 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 310.933 107.402)\\\" x=\\\"0 4.448\\\">be</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.8314 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 324.2604 107.402)\\\" x=\\\"0 2.224 4.048 8.496 12.944 14.768\\\">final.</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 341.2526 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 345.6815 107.402)\\\" x=\\\"0\\\">A</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.0175 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 355.4464 107.402)\\\" x=\\\"0 4.448 8.896 11.56 13.784\\\">party</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 373.2316 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 377.6605 107.402)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 392.7738 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 397.2028 107.402)\\\" x=\\\"0 2.224 4.048 5.872\\\">file</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 407.5231 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 411.952 107.402)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 423.0731 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 427.5021 107.402)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608 25.136\\\">Arbiter&apos;s</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.6388 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 461.0678 107.402)\\\" x=\\\"0 4.448 10.224 14.672 17.336\\\">award</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 482.8568 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 487.2858 107.402)\\\" x=\\\"0 5.776 7.6 9.824\\\">with</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.5592 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 505.9882 107.402)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 517.1093 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 521.5382 107.402)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456\\\">proper</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 544.6632 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 549.0922 107.402)\\\" x=\\\"0 4 8.448 12.896 15.56 17.784\\\">court.</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 98.3473)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 19.16 23.608 25.832 27.656 32.104\\\">Arbitration</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 246.1547 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 248.4088 98.3473)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.6588 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 261.913 98.3473)\\\" x=\\\"0 4 8.448 10.272 14.272\\\">solve</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.6356 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 282.8898 98.3473)\\\" x=\\\"0 4.448 8.896 13.344 17.792 22.24 24.064\\\">appeals</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 310.9601 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 313.2142 98.3473)\\\" x=\\\"0 4.448\\\">of</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.8861 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 322.1403 98.3473)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 326.5895 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 328.8436 98.3473)\\\" x=\\\"0 4 10.664 15.112 16.936 18.76 21.424 25.424 27.248 31.696 33.52 40.184\\\">small-claims</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 373.0311 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 375.2853 98.3473)\\\" x=\\\"0 4 8.448 12.896 15.56\\\">court</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.0704 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 395.3246 98.3473)\\\" x=\\\"0 1.824 6.272 10.72 15.168 19.616 26.28 30.728 35.176 37.4\\\">judgement.</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.9535 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 437.2077 98.3473)\\\" x=\\\"0\\\">A</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 442.5436 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 444.7977 98.3473)\\\" x=\\\"0 4.448 8.896 11.56 13.784\\\">party</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 462.5829 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 464.837 98.3473)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 479.9503 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 482.2045 98.3473)\\\" x=\\\"0 4.448 8.896 13.344 17.792 22.24\\\">appeal</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 506.2748 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 508.5289 98.3473)\\\" x=\\\"0 4.448 8.896 13.344 17.792\\\">under</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 528.9899 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 531.244 98.3473)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 542.3651 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 544.6193 98.3473)\\\" x=\\\"0 4.888 10.224 15.56\\\">FAA.</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 562.4005 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 564.6547 98.3473)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 89.2926)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 220.7211 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 223.3349 89.2926)\\\" x=\\\"0 4.448 11.112 15.56 20.008 24.456\\\">amount</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 250.0185 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 252.6324 89.2926)\\\" x=\\\"0 1.824\\\">in</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 258.9058 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 261.5196 89.2926)\\\" x=\\\"0 4 8.448 12.896 15.12 17.784 22.232 26.232 30.68 33.344 37.344\\\">controversy</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.8673 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 305.4811 89.2926)\\\" x=\\\"0 4.448 8.448 12.448 16.896 21.344 25.792\\\">exceeds</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.278 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 337.8918 89.2926)\\\" x=\\\"0 4.448 8.896 11.12 15.568 20.016 24.464 26.688 31.136 35.584\\\">$1,500.00,</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.7043 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 378.3182 89.2926)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 382.7674 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 385.3812 89.2926)\\\" x=\\\"0 4.448 8.896 11.56 13.784\\\">party</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.1664 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 405.7802 89.2926)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 420.8935 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 423.5074 89.2926)\\\" x=\\\"0 4.448 8.896 13.344 17.792 22.24\\\">appeal</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.5777 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 450.1915 89.2926)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 461.3126 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 463.9264 89.2926)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608 25.136\\\">Arbiter&apos;s</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 493.0632 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 495.677 89.2926)\\\" x=\\\"0 2.224 4.048 8.496 12.944 14.768 19.216 23.664\\\">finding.</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.5676 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 524.1815 89.2926)\\\" x=\\\"0 5.336 9.784 13.784\\\">Such</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 542.4158 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 545.0297 89.2926)\\\" x=\\\"0 4.448 8.896 13.344 17.792 22.24\\\">appeal</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 80.2379)\\\" x=\\\"0 5.776 7.6 9.424 11.248 13.376 17.824 22.272 24.4 26.624 31.072 33.2\\\">will be to a</text></g><clipPath id=\\\"clip4-50\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 272.152 L 128.1 272.152 L 128.1 271.152 L 34.7 271.152 L 34.7 272.152 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 271.152 L 35.7 271.152 L 35.7 214.8238 L 34.7 214.8238 L 34.7 271.152 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.1 272.152 L 206 272.152 L 206 271.152 L 128.1 271.152 L 128.1 272.152 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127.1 271.152 L 128.1 271.152 L 128.1 214.8238 L 127.1 214.8238 L 127.1 271.152 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 272.152 L 573.7 272.152 L 573.7 271.152 L 206 271.152 L 206 272.152 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.7 271.152 L 573.7 271.152 L 573.7 214.8238 L 572.7 214.8238 L 572.7 271.152 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 271.152 L 206 271.152 L 206 214.8238 L 205 214.8238 L 205 271.152 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 214.8238 L 128.1 214.8238 L 128.1 213.8238 L 34.7 213.8238 L 34.7 214.8238 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 213.8238 L 35.7 213.8238 L 35.7 138.3863 L 34.7 138.3863 L 34.7 213.8238 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.1 214.8238 L 206 214.8238 L 206 213.8238 L 128.1 213.8238 L 128.1 214.8238 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127.1 213.8238 L 128.1 213.8238 L 128.1 138.3863 L 127.1 138.3863 L 127.1 213.8238 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 214.8238 L 573.7 214.8238 L 573.7 213.8238 L 206 213.8238 L 206 214.8238 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.7 213.8238 L 573.7 213.8238 L 573.7 138.3863 L 572.7 138.3863 L 572.7 213.8238 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 213.8238 L 206 213.8238 L 206 138.3863 L 205 138.3863 L 205 213.8238 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 138.3863 L 128.1 138.3863 L 128.1 137.3863 L 34.7 137.3863 L 34.7 138.3863 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 137.3863 L 35.7 137.3863 L 35.7 117.277 L 34.7 117.277 L 34.7 137.3863 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.1 138.3863 L 206 138.3863 L 206 137.3863 L 128.1 137.3863 L 128.1 138.3863 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127.1 137.3863 L 128.1 137.3863 L 128.1 117.277 L 127.1 117.277 L 127.1 137.3863 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 138.3863 L 573.7 138.3863 L 573.7 137.3863 L 206 137.3863 L 206 138.3863 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.7 137.3863 L 573.7 137.3863 L 573.7 117.277 L 572.7 117.277 L 572.7 137.3863 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 137.3863 L 206 137.3863 L 206 117.277 L 205 117.277 L 205 137.3863 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 117.277 L 128.1 117.277 L 128.1 116.277 L 34.7 116.277 L 34.7 117.277 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 75.277 L 128.1 75.277 L 128.1 74.277 L 34.7 74.277 L 34.7 75.277 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 116.277 L 35.7 116.277 L 35.7 75.277 L 34.7 75.277 L 34.7 116.277 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.1 117.277 L 206 117.277 L 206 116.277 L 128.1 116.277 L 128.1 117.277 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.1 75.277 L 206 75.277 L 206 74.277 L 128.1 74.277 L 128.1 75.277 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127.1 116.277 L 128.1 116.277 L 128.1 75.277 L 127.1 75.277 L 127.1 116.277 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 117.277 L 573.7 117.277 L 573.7 116.277 L 206 116.277 L 206 117.277 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 75.277 L 573.7 75.277 L 573.7 74.277 L 206 74.277 L 206 75.277 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.7 116.277 L 573.7 116.277 L 573.7 75.277 L 572.7 75.277 L 572.7 116.277 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 116.277 L 206 116.277 L 206 75.277 L 205 75.277 L 205 116.277 z \\\"/><g clip-path=\\\"url(#clip4-50)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 36.5264)\\\" x=\\\"0 6.498 11.997 14.391 16.785 21.789 26.793 29.295 34.299 39.303 44.307 504 506.3906 508.7812 511.1719 513.5625 515.9531 518.3438 520.7344 523.125 525.5156\\\">UT  07/2019          </text></g><g clip-path=\\\"url(#clip4-50)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 26.3398)\\\" x=\\\"0 6.003 11.007 16.011 21.015\\\">Page </text></g><g clip-path=\\\"url(#clip4-50)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 55.8097 26.3398)\\\" x=\\\"0\\\">5</text></g><g clip-path=\\\"url(#clip4-50)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.815 26.3398)\\\" x=\\\"0 2.394 7.398 9.9\\\"> of </text></g><g clip-path=\\\"url(#clip4-50)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 73.1021 26.3398)\\\" x=\\\"0\\\">7</text></g><g clip-path=\\\"url(#clip4-50)\\\"><text stroke=\\\"none\\\" fill=\\\"#d9d9d9\\\" style=\\\"font-family:f4-0; font-size:54pt; white-space:pre\\\" transform=\\\"matrix(0.707 0.707 0.707 -0.707 135.6027 198.5094)\\\" x=\\\"0 56.016 96.048 136.08 176.112 216.144 236.16 284.184 324.216 344.232 364.248 416.232 456.264 480.24\\\">Qoppa Software</text></g><g clip-path=\\\"url(#clip4-50)\\\"><text stroke=\\\"none\\\" fill=\\\"#002ba6\\\" style=\\\"font-family:f4-0; font-size:9pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.932 772)\\\" x=\\\"0 9.336 16.008 22.68 29.352 36.024 39.36 47.364 54.036 57.372 60.708 69.372 76.044 80.04 86.712 90.048 94.044 97.38 104.712 111.384 115.38 118.716 126.72 132.72 139.392 142.056 148.728 155.4 158.736 161.4 168.072 174.744 178.08 187.416 194.088 196.752 202.752 206.088 210.084 213.42 220.092 223.428 226.764 233.436 239.436 242.772 246.108 249.444 258.108 266.772 275.436 278.772 285.444 292.116 298.788 305.46 312.132 315.468 321.468 328.14\\\">Qoppa Software - For Evaluation Only - https://www.qoppa.com</text></g></g></svg></svg></g></svg><br>\\n<?xml version='1.0' encoding='UTF-8'?><svg id=\\\"qoppa_document\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" version=\\\"1.1\\\" xmlns=\\\"http://www.w3.org/2000/svg\\\" xmlns:xlink=\\\"http://www.w3.org/1999/xlink\\\"><!-- jPDFWeb v2019R1.03 - Demo Version --><style>title p { display: block; }</style><g id=\\\"qoppa_viewxform\\\" transform=\\\"matrix(1 0 0 1 0 0)\\\"><style type=\\\"text/css\\\">@font-face {font-family:f5-0;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f5-1;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f5-2;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}</style><svg id=\\\"qoppa_page_p5\\\" class=\\\"qoppa_page\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\"><rect class=\\\"qoppa_pageborder\\\" x=\\\"0.5pt\\\" y=\\\"0.5pt\\\" width=\\\"611pt\\\" height=\\\"791pt\\\" fill=\\\"none\\\" /><svg class=\\\"qoppa_pagecontents\\\" x=\\\"0pt\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" viewBox=\\\"0 0 612 792\\\" ><g class=\\\"qoppa_contentstream\\\" transform=\\\"matrix(1 0 0 -1 0 792)\\\" fill=\\\"black\\\" stroke=\\\"black\\\" stroke-width=\\\"1\\\" stroke-linecap=\\\"butt\\\" stroke-linejoin=\\\"miter\\\" stroke-miterlimit=\\\"10\\\"><clipPath id=\\\"clip5-1\\\"><path d=\\\"M 35 727 L 128 727 L 128 770 L 35 770 L 35 727 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-1)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.2 769.7 L 127.6 769.7 L 127.6 727.7 L 35.2 727.7 L 35.2 769.7 z \\\"/><clipPath id=\\\"clip5-2\\\"><path d=\\\"M 205 727 L 574 727 L 574 770 L 205 770 L 205 727 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 760.325)\\\" x=\\\"0 4.448 7.112 12.448 15.112 19.56 21.384 23.608 28.056\\\">3-Arbiter</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 240.3227 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 243.109 760.325)\\\" x=\\\"0 4.448 8.896 13.344 17.792\\\">panel</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.7301 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 265.5165 760.325)\\\" x=\\\"0 2.224 4.888 9.336\\\">from</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.5165 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 284.3029 760.325)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 295.424 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 298.2103 760.325)\\\" x=\\\"0 4 8.448 15.112\\\">same</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 317.7728 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 320.5592 760.325)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 26.768 31.216\\\">arbitration</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 356.2272 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 359.0136 760.325)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456\\\">group.</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 381.6972 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 384.4835 760.325)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 398.2687 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 401.0551 760.325)\\\" x=\\\"0 4.448 8.896 13.344 17.792 22.24\\\">appeal</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 425.1254 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 427.9118 760.325)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 439.1618 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 441.9481 760.325)\\\" x=\\\"0 4.448\\\">be</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 450.8466 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 453.6329 760.325)\\\" x=\\\"0 4.448\\\">de</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 462.5314 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 465.3178 760.325)\\\" x=\\\"0 4.448 8.896 12.896 17.344\\\">novo,</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.8881 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 487.6745 760.325)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.0221 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 503.8085 760.325)\\\" x=\\\"0 4 8.448 10.272 14.272 18.72\\\">solved</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.9804 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 529.7667 760.325)\\\" x=\\\"0 4.448\\\">by</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 538.216 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 541.0023 760.325)\\\" x=\\\"0 6.664 11.112 12.936 17.384 20.048 21.872 24.096\\\">majority</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 751.2703)\\\" x=\\\"0 4 8.448 10.672 15.12\\\">vote.</text></g><clipPath id=\\\"clip5-3\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-3)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 770.2 L 128.1 770.2 L 128.1 769.2 L 34.7 769.2 L 34.7 770.2 z \\\"/><path clip-path=\\\"url(#clip5-3)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 728.2 L 128.1 728.2 L 128.1 727.2 L 34.7 727.2 L 34.7 728.2 z \\\"/><path clip-path=\\\"url(#clip5-3)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 769.2 L 35.7 769.2 L 35.7 728.2 L 34.7 728.2 L 34.7 769.2 z \\\"/><path clip-path=\\\"url(#clip5-3)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.1 770.2 L 206 770.2 L 206 769.2 L 128.1 769.2 L 128.1 770.2 z \\\"/><path clip-path=\\\"url(#clip5-3)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.1 728.2 L 206 728.2 L 206 727.2 L 128.1 727.2 L 128.1 728.2 z \\\"/><path clip-path=\\\"url(#clip5-3)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127.1 769.2 L 128.1 769.2 L 128.1 728.2 L 127.1 728.2 L 127.1 769.2 z \\\"/><path clip-path=\\\"url(#clip5-3)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 770.2 L 573.7 770.2 L 573.7 769.2 L 206 769.2 L 206 770.2 z \\\"/><path clip-path=\\\"url(#clip5-3)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 728.2 L 573.7 728.2 L 573.7 727.2 L 206 727.2 L 206 728.2 z \\\"/><path clip-path=\\\"url(#clip5-3)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.7 769.2 L 573.7 769.2 L 573.7 728.2 L 572.7 728.2 L 572.7 769.2 z \\\"/><path clip-path=\\\"url(#clip5-3)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 769.2 L 206 769.2 L 206 728.2 L 205 728.2 L 205 769.2 z \\\"/><g clip-path=\\\"url(#clip5-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 241.2386 715.4812)\\\" x=\\\"0 6.67 10 15.56 17.84 20.62 23.95 29.51 32.29 34.57 40.13 45.69 48.35 54.46 60.02 65.58 70.58 73.24 78.8 84.36 89.92 92.58 99.25 106.47 112.03 115.36 120.92\\\">Ar* D E M O *ees and Awards</text></g><clipPath id=\\\"clip5-4\\\"><path d=\\\"M 35 680 L 128 680 L 128 705 L 35 705 L 35 680 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-4)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.6 704.277 L 127.5 704.277 L 127.5 680.277 L 35.6 680.277 L 35.6 704.277 z \\\"/><path clip-path=\\\"url(#clip5-4)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.7 700.777 L 123.4 700.777 L 123.4 682.6676 L 39.7 682.6676 L 39.7 700.777 z \\\"/><path clip-path=\\\"url(#clip5-4)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 52.677 700.777 L 110.677 700.777 L 110.677 690.777 L 52.677 690.777 L 52.677 700.777 z \\\"/><g clip-path=\\\"url(#clip5-4)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 52.677 693.4019)\\\" x=\\\"0 7.552 9.376 11.2 13.024 15.152 20.928 25.376 27.504 31.952 36.4 40.4 44.848 49.296 53.296\\\">Will we advance</text></g><path clip-path=\\\"url(#clip5-4)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 51.093 691.7223 L 112.093 691.7223 L 112.093 681.7223 L 51.093 681.7223 L 51.093 691.7223 z \\\"/><g clip-path=\\\"url(#clip5-4)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 51.093 684.3473)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 19.16 23.608 25.832 27.656 32.104 36.552 38.68 43.568 48.016 52.464 56.464\\\">Arbitration Fees?</text></g><clipPath id=\\\"clip5-5\\\"><path d=\\\"M 127 680 L 206 680 L 206 705 L 127 705 L 127 680 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-5)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 135.7422 693.4019)\\\" x=\\\"0 5.336 9.784 13.784 16.008 18.136 22.584 27.032 29.256 31.384 35.384 39.832 44.28 46.408 53.072 57.52\\\">Yes, but you may</text></g><g clip-path=\\\"url(#clip5-5)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 148.541 684.3473)\\\" x=\\\"0 4.448 8.896 12.896 15.024 19.024 23.472 27.472 29.696 33.696\\\">pay costs.</text></g><clipPath id=\\\"clip5-6\\\"><path d=\\\"M 205 680 L 573 680 L 573 705 L 205 705 L 205 680 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 693.4019)\\\" x=\\\"0 7.552\\\">We</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 221.6 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 224.0728 693.4019)\\\" x=\\\"0 4.448 8.896 12.896 17.344 21.792 25.792\\\">advance</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 254.3189 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 256.7917 693.4019)\\\" x=\\\"0 4 8.448 12.896\\\">your</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 272.3542 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 274.827 693.4019)\\\" x=\\\"0 2.84 8.176 10.84 15.288 17.112 19.336 22 26.448 28.672 30.496 34.944\\\">&quot;Arbitration</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 314.2216 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 316.6944 693.4019)\\\" x=\\\"0 4.888 9.336 13.784 17.784\\\">Fees&quot;</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 337.3194 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 339.7922 693.4019)\\\" x=\\\"0 1.824\\\">if</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 343.8391 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 346.3119 693.4019)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.2103 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 361.6831 693.4019)\\\" x=\\\"0 4.448 8.448\\\">ask</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 374.1323 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 376.6051 693.4019)\\\" x=\\\"0 4.448\\\">us</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 385.0544 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 387.5272 693.4019)\\\" x=\\\"0 2.224 6.672\\\">to.</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 396.4217 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 398.8945 693.4019)\\\" x=\\\"0 4.888 9.336 11.16\\\">This</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 414.0547 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 416.5275 693.4019)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44\\\">includes</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 445.9728 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 448.4456 693.4019)\\\" x=\\\"0 2.224 4.048 5.872 7.696 12.144 16.592\\\">filing,</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.262 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 469.7348 693.4019)\\\" x=\\\"0 4.448 8.896 15.56 17.384 21.832 23.656 27.656 29.88 32.544 36.992 39.216 41.04 45.04 49.488\\\">administrative,</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.4497 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 523.9225 693.4019)\\\" x=\\\"0 4.448 8.896 13.344 16.008 17.832 22.28 26.728\\\">hearing,</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.8795 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 555.3523 693.4019)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 684.3473)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608 25.136 29.136 31.264 33.488 37.936 42.384 46.384 48.608 50.736 56.072 60.52 64.968 67.096 71.544 75.992 79.992 82.12 86.12 90.568 95.016 97.68 99.808 104.256 106.48 108.704 113.152 115.816 120.264 124.712 128.712 130.84 133.064 137.512 141.96 145.96 148.088 152.536 156.984 161.432 163.56 168.008 170.232 174.68 179.128 181.792 183.92 188.368 192.368 196.816 201.264 205.712 209.712 214.16 218.16\\\">Arbiter&apos;s fees. You pay your attorney fees and other expenses.</text></g><clipPath id=\\\"clip5-7\\\"><path d=\\\"M 35 656 L 128 656 L 128 681 L 35 681 L 35 656 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-7)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.6 680.277 L 127.5 680.277 L 127.5 656.6769 L 35.6 656.6769 L 35.6 680.277 z \\\"/><path clip-path=\\\"url(#clip5-7)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.7 676.277 L 123.4 676.277 L 123.4 658.1676 L 39.7 658.1676 L 39.7 676.277 z \\\"/><path clip-path=\\\"url(#clip5-7)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 50.0715 676.277 L 113.0715 676.277 L 113.0715 666.277 L 50.0715 666.277 L 50.0715 676.277 z \\\"/><g clip-path=\\\"url(#clip5-7)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 50.0715 668.9019)\\\" x=\\\"0 5.336 8 12.448 14.576 19.024 23.472 30.136 34.584 39.032 43.48 47.48 49.608 54.056 58.504\\\">Are damages and</text></g><path clip-path=\\\"url(#clip5-7)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 40.4641 667.2223 L 123.4641 667.2223 L 123.4641 657.2223 L 40.4641 657.2223 L 40.4641 667.2223 z \\\"/><g clip-path=\\\"url(#clip5-7)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.4641 659.8473)\\\" x=\\\"0 4.448 6.672 8.896 13.344 16.008 20.456 24.904 28.904 31.032 33.256 37.704 42.152 46.152 48.28 52.728 57.176 61.176 65.176 67 71.448 73.272 77.72\\\">attorney fees possible?</text></g><clipPath id=\\\"clip5-8\\\"><path d=\\\"M 127 656 L 206 656 L 206 681 L 127 681 L 127 656 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 139.625 668.9019)\\\" x=\\\"0 5.336 9.784 13.784 16.008 18.136 19.96 22.184 24.312 28.76 30.584 32.408 36.856 42.632 47.08 51.528\\\">Yes, if allowed.</text></g><clipPath id=\\\"clip5-9\\\"><path d=\\\"M 205 656 L 573 656 L 573 681 L 205 681 L 205 656 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 668.9019)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 223.3852 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 225.9124 668.9019)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 249.5218 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 252.049 668.9019)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 267.1623 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 269.6895 668.9019)\\\" x=\\\"0 4.448 10.224 14.672 17.336\\\">award</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.4786 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 294.0058 668.9019)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 305.1269 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 307.6542 668.9019)\\\" x=\\\"0 4 8.448 15.112\\\">same</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 327.2167 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 329.7439 668.9019)\\\" x=\\\"0 4.448 8.896 15.56 20.008 24.456 28.904\\\">damages</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 362.6541 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 365.1813 668.9019)\\\" x=\\\"0 4.448\\\">as</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 373.6305 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 376.1578 668.9019)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.607 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 383.1342 668.9019)\\\" x=\\\"0 4 8.448 12.896 15.56 17.784\\\">court.</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.142 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 405.6693 668.9019)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608\\\">Arbiters</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 433.2786 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 435.8059 668.9019)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 450.9192 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 453.4464 668.9019)\\\" x=\\\"0 4.448 10.224 14.672 17.336\\\">award</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 475.2355 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 477.7627 668.9019)\\\" x=\\\"0 2.664 7.112 11.56 15.56 20.008 24.456 28.904 33.352 35.176\\\">reasonable</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 517.3955 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 519.9227 668.9019)\\\" x=\\\"0 4.448 6.672 8.896 13.344 16.008 20.456 24.904\\\">attorney</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 548.829 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 551.3562 668.9019)\\\" x=\\\"0 2.224 6.672 11.12 15.12\\\">fees,</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 659.8473)\\\" x=\\\"0 4.448 8.896 13.344 15.472 19.92 23.92 28.368 32.816 37.264 41.264 45.712 49.712 51.936 54.064 55.888 58.112 60.24 64.688 66.512 68.336 72.784 78.56 83.008 87.456 89.584 94.032 98.032 100.16 101.984 106.432 112.208\\\">and expenses, * D E M O *by law.</text></g><clipPath id=\\\"clip5-10\\\"><path d=\\\"M 35 633 L 128 633 L 128 657 L 35 657 L 35 633 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-10)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.6 656.6769 L 127.5 656.6769 L 127.5 633.077 L 35.6 633.077 L 35.6 656.6769 z \\\"/><path clip-path=\\\"url(#clip5-10)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.7 652.6769 L 123.4 652.6769 L 123.4 634.5676 L 39.7 634.5676 L 39.7 652.6769 z \\\"/><path clip-path=\\\"url(#clip5-10)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 40.675 652.6769 L 124.675 652.6769 L 124.675 642.6769 L 40.675 642.6769 L 40.675 652.6769 z \\\"/><g clip-path=\\\"url(#clip5-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 645.3019)\\\" x=\\\"0 7.552 9.376 11.2 13.024 15.152 19.152 23.6 28.048 30.176 34.624 39.072 43.072 45.2 50.536 53.2 57.648 59.472 61.696 64.36 68.808 71.032 72.856 77.304\\\">Will you pay Arbitration</text></g><path clip-path=\\\"url(#clip5-10)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 52.7473 643.6223 L 110.7473 643.6223 L 110.7473 633.6223 L 52.7473 633.6223 L 52.7473 643.6223 z \\\"/><g clip-path=\\\"url(#clip5-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 52.7473 636.2473)\\\" x=\\\"0 4.888 9.336 13.784 17.784 19.912 21.736 23.96 26.088 30.088 34.536 38.984 41.112 46.888 48.712 53.16\\\">Fees if you win?</text></g><clipPath id=\\\"clip5-11\\\"><path d=\\\"M 127 633 L 206 633 L 206 657 L 127 657 L 127 633 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 160.2754 645.3019)\\\" x=\\\"0 5.776 10.224\\\">No.</text></g><clipPath id=\\\"clip5-12\\\"><path d=\\\"M 205 633 L 573 633 L 573 657 L 205 657 L 205 633 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 645.3019)\\\" x=\\\"0 2.224 4.448 6.576 8.8 13.248 17.696 19.824 25.16 27.824 32.272 34.096 36.32 40.768 43.432 45.56 50.008 55.784 60.232 62.896 67.344 71.344 73.472 77.472 81.92 86.368 88.496 90.72 95.168 99.616 104.064 108.064 110.288 112.416 116.416 120.864 125.312 127.44 131.888 136.336 140.784 142.312 144.536 146.664 149.328 153.776 155.6 162.264 166.712 171.16 173.824 177.824 182.272 184.4 188.848 192.848 194.976 197.2 201.648 206.096 208.224 213.56 216.224 220.672 222.496 224.72 227.384 231.832 234.056 235.88 240.328 244.776 246.904 251.792 256.24 260.688 264.688\\\">If the Arbiter awards you funds, you don&apos;t reimburse us the Arbitration Fees.</text></g><clipPath id=\\\"clip5-13\\\"><path d=\\\"M 35 601 L 128 601 L 128 634 L 35 634 L 35 601 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-13)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.6 633.077 L 127.5 633.077 L 127.5 601.9129 L 35.6 601.9129 L 35.6 633.077 z \\\"/><path clip-path=\\\"url(#clip5-13)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.7 629.077 L 123.4 629.077 L 123.4 610.9676 L 39.7 610.9676 L 39.7 629.077 z \\\"/><path clip-path=\\\"url(#clip5-13)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 51.1711 629.077 L 112.1711 629.077 L 112.1711 619.077 L 51.1711 619.077 L 51.1711 629.077 z \\\"/><g clip-path=\\\"url(#clip5-13)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 51.1711 621.702)\\\" x=\\\"0 7.552 9.376 11.2 13.024 15.152 19.152 23.6 28.048 30.176 34.624 38.624 43.072 45.736 47.864 52.312 56.76\\\">Will you ever pay</text></g><path clip-path=\\\"url(#clip5-13)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 51.093 620.0223 L 112.093 620.0223 L 112.093 610.0223 L 51.093 610.0223 L 51.093 620.0223 z \\\"/><g clip-path=\\\"url(#clip5-13)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 51.093 612.6473)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 19.16 23.608 25.832 27.656 32.104 36.552 38.68 43.568 48.016 52.464 56.464\\\">Arbitration Fees?</text></g><clipPath id=\\\"clip5-14\\\"><path d=\\\"M 127 601 L 206 601 L 206 634 L 127 634 L 127 601 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-14)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 152.2715 621.702)\\\" x=\\\"0 5.336 9.784 13.784 16.008 21.784 26.232\\\">Yes/No.</text></g><clipPath id=\\\"clip5-15\\\"><path d=\\\"M 205 601 L 573 601 L 573 634 L 205 634 L 205 601 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 621.702)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 214.0453 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 217.6688 621.702)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 228.7898 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 232.4133 621.702)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.0227 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 259.6461 621.702)\\\" x=\\\"0 4.448 8.896 13.344 17.344 21.792 23.32\\\">doesn&apos;t</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 285.193 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 288.8164 621.702)\\\" x=\\\"0 4.448 10.224 14.672 17.336\\\">award</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 310.6055 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 314.2289 621.702)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 327.1273 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 330.7508 621.702)\\\" x=\\\"0 2.224 6.672 11.12 15.568 19.568\\\">funds,</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 352.5437 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 356.1672 621.702)\\\" x=\\\"0 2.224 6.672 11.12\\\">then</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.7375 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 375.3609 621.702)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.2594 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 391.8828 621.702)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 406.9961 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 410.6195 621.702)\\\" x=\\\"0 2.664 7.112 11.56 16.008\\\">repay</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.6312 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 434.2547 621.702)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 445.3758 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 448.9992 621.702)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 19.16 23.608 25.832 27.656 32.104\\\">Arbitration</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 485.5539 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 489.1773 621.702)\\\" x=\\\"0 4.888 9.336 13.784 17.784\\\">Fees.</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.1851 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 512.8086 621.702)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.5937 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 530.2172 621.702)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.8265 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 557.45 621.702)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 612.6473)\\\" x=\\\"0 4.448 8.896 12.896 14.72 19.168\\\">decide</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.2211 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 236.7228 612.6473)\\\" x=\\\"0 5.776 10.224 14.672 16.896 21.344 25.792\\\">whether</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 265.1838 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 268.6855 612.6473)\\\" x=\\\"0 4 8.448 12.896 14.424 16.248\\\">you&apos;ll</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 286.7597 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 290.2614 612.6473)\\\" x=\\\"0 4.448 8.896 12.896\\\">pay.</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 305.3825 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 308.8842 612.6473)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 313.3295 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 316.8312 612.6473)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.7297 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 333.2314 612.6473)\\\" x=\\\"0 6.664 11.112 15.112\\\">must</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 350.5673 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 354.0691 612.6473)\\\" x=\\\"0 4.448 8.896\\\">pay</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 366.9675 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 370.4692 612.6473)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 19.16 23.608 25.832 27.656 32.104\\\">Arbitration</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 407.0239 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 410.5256 612.6473)\\\" x=\\\"0 4.888 9.336 13.784 17.784\\\">Fees,</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.5334 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 434.0351 612.6473)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 445.1562 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 448.658 612.6473)\\\" x=\\\"0 4.448 11.112 15.56 20.008 24.456\\\">amount</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 475.3415 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 478.8433 612.6473)\\\" x=\\\"0 5.776 10.224 14.672 16.2\\\">won&apos;t</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 497.269 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 500.7708 612.6473)\\\" x=\\\"0 4.448 8.448 12.448 16.896 21.344\\\">exceed</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.5676 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 530.0694 612.6473)\\\" x=\\\"0 4 6.224 10.672 12.896\\\">state</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 547.4131 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 550.9148 612.6473)\\\" x=\\\"0 4 8.448 12.896 15.56\\\">court</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 603.5926)\\\" x=\\\"0 4 8.448 12.448 14.672 18.672\\\">costs.</text></g><clipPath id=\\\"clip5-16\\\"><path d=\\\"M 35 534 L 128 534 L 128 602 L 35 602 L 35 534 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-16)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.6 601.9129 L 127.5 601.9129 L 127.5 534.5301 L 35.6 534.5301 L 35.6 601.9129 z \\\"/><path clip-path=\\\"url(#clip5-16)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.7 597.9129 L 123.4 597.9129 L 123.4 579.8035 L 39.7 579.8035 L 39.7 597.9129 z \\\"/><path clip-path=\\\"url(#clip5-16)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 45.2063 597.9129 L 118.2063 597.9129 L 118.2063 587.9129 L 45.2063 587.9129 L 45.2063 597.9129 z \\\"/><g clip-path=\\\"url(#clip5-16)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 45.2063 590.5379)\\\" x=\\\"0 7.552 12 16.448 18.672 20.8 25.248 29.696 34.144 38.592 43.04 47.488 51.488 53.616 55.44 57.664 59.792 63.792 68.24\\\">What happens if you</text></g><path clip-path=\\\"url(#clip5-16)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 73.3 588.8582 L 90.3 588.8582 L 90.3 578.8582 L 73.3 578.8582 L 73.3 588.8582 z \\\"/><g clip-path=\\\"url(#clip5-16)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 73.3 581.4832)\\\" x=\\\"0 5.776 7.6 12.048\\\">win?</text></g><clipPath id=\\\"clip5-17\\\"><path d=\\\"M 127 534 L 206 534 L 206 602 L 127 602 L 127 534 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-17)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 131.9356 590.5379)\\\" x=\\\"0 5.336 9.784 14.232 16.36 20.36 24.808 29.256 31.08 35.528 37.656 42.104 46.552 48.776 50.904 57.568 62.016 64.68\\\">You could get more</text></g><g clip-path=\\\"url(#clip5-17)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 139.2246 581.4832)\\\" x=\\\"0 2.224 6.672 11.12 15.568 17.696 19.92 24.368 28.816 30.944 36.28 38.944 43.392 45.216 47.44 51.888\\\">than the Arbiter</text></g><g clip-path=\\\"url(#clip5-17)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 150.0449 572.4285)\\\" x=\\\"0 4.448 10.224 14.672 17.336 21.784 26.232 30.68\\\">awarded.</text></g><clipPath id=\\\"clip5-18\\\"><path d=\\\"M 205 534 L 573 534 L 573 602 L 205 602 L 205 534 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 590.5379)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 214.0453 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 216.367 590.5379)\\\" x=\\\"0 4.448\\\">an</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.2654 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 227.5871 590.5379)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608 25.136\\\">Arbiter&apos;s</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.7238 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 259.0455 590.5379)\\\" x=\\\"0 4.448 10.224 14.672 17.336\\\">award</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.8345 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 283.1562 590.5379)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 289.8281 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 292.1498 590.5379)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 305.0482 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 307.3699 590.5379)\\\" x=\\\"0 4.448 8.448 12.448 16.896 21.344 25.792\\\">exceeds</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 337.1667 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 339.4884 590.5379)\\\" x=\\\"0 4.448 8.896\\\">our</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.0509 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 353.3726 590.5379)\\\" x=\\\"0 1.824 6.272 10.272\\\">last</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 365.8687 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 368.1903 590.5379)\\\" x=\\\"0 5.336 9.784 12.008 14.232 16.056 20.504 27.168 31.616 36.064\\\">Settlement</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 406.4794 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 408.8011 590.5379)\\\" x=\\\"0 6.224 8.448 10.672 15.12 17.784\\\">Offer,</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 428.805 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 431.1266 590.5379)\\\" x=\\\"0 5.776\\\">we</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 441.3532 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 443.6749 590.5379)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.9249 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 457.2465 590.5379)\\\" x=\\\"0 4.448 8.896\\\">pay</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 470.145 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 472.4666 590.5379)\\\" x=\\\"0\\\">3</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 476.9159 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 479.2375 590.5379)\\\" x=\\\"0 4.448 11.112 15.56 20.008 24.456 26.68 30.68\\\">amounts.</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.1438 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 514.4654 590.5379)\\\" x=\\\"0 7.552\\\">We</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.4654 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 528.7871 590.5379)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 540.0371 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 542.3588 590.5379)\\\" x=\\\"0 4.448 8.896\\\">pay</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 555.2572 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 557.5789 590.5379)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 581.4832)\\\" x=\\\"0 4.448 7.112 11.56 16.008 18.232 22.68\\\">greater</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 234.9477 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 238.6632 581.4832)\\\" x=\\\"0 4.448\\\">of</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.3351 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 249.0506 581.4832)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 260.1717 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 263.8872 581.4832)\\\" x=\\\"0 4.448 10.224 14.672 17.336\\\">award</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 285.6762 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 289.3918 581.4832)\\\" x=\\\"0 4.448 11.112 15.56 20.008 24.456\\\">amount</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 316.0754 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 319.7909 581.4832)\\\" x=\\\"0 4.448\\\">or</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 326.9042 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 330.6197 581.4832)\\\" x=\\\"0 4.448 8.896 13.344 17.792 20.016 24.464\\\">$500.00</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.5376 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 363.2532 581.4832)\\\" x=\\\"0 2.664 5.504 9.952 14.4 18.848 23.296\\\">(&quot;bonus</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 390.5539 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 394.2695 581.4832)\\\" x=\\\"0 4.448 8.896 12.896 19.56 24.008 28.456 30.68 33.52 36.184\\\">payment&quot;).</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 432.6796 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 436.3951 581.4832)\\\" x=\\\"0 7.552\\\">We</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 448.3951 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 452.1107 581.4832)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 463.3607 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 467.0762 581.4832)\\\" x=\\\"0 4.448 8.896\\\">pay</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 479.9746 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 483.6901 581.4832)\\\" x=\\\"0 4 8.448 12.896\\\">your</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.2526 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 502.9682 581.4832)\\\" x=\\\"0 4.448 6.672 8.896 13.344 16.008 20.456 24.904\\\">attorney</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 531.8744 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 535.5899 581.4832)\\\" x=\\\"0 2.224 8 9.824 13.824\\\">twice</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.8634 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 557.5789 581.4832)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 572.4285)\\\" x=\\\"0 4.448 6.672 8.896 13.344 16.008 20.456 24.904\\\">attorney</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.5063 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 242.1723 572.4285)\\\" x=\\\"0 2.224 6.672 11.12\\\">fees</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.2934 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 260.9594 572.4285)\\\" x=\\\"0 4 8.448 12.896 15.12 19.568 22.232 24.896 29.344\\\">conferred</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 294.7563 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 298.4224 572.4285)\\\" x=\\\"0 2.664 5.504 9.952 12.176 14.4 18.848 21.512 25.96 30.408\\\">(&quot;attorney</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 332.8325 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 336.4986 572.4285)\\\" x=\\\"0 4.448 7.112 11.56 18.224 20.048 24.496 31.16 34 36.664\\\">premium&quot;).</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.3892 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 379.0552 572.4285)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.5005 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 387.1666 572.4285)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 398.2877 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 401.9537 572.4285)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 425.5631 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 429.2291 572.4285)\\\" x=\\\"0 4.448 7.112 11.56 16.008 18.672 22.672\\\">orders,</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.1276 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 457.7936 572.4285)\\\" x=\\\"0 5.776\\\">we</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.0202 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 471.6862 572.4285)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 482.9362 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 486.6023 572.4285)\\\" x=\\\"0 4.448 8.896\\\">pay</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.5007 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 503.1667 572.4285)\\\" x=\\\"0 2.664 7.112 11.56 15.56 20.008 24.456 28.904 33.352 35.176\\\">reasonable</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 542.7996 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 546.4656 572.4285)\\\" x=\\\"0 4.448 8.448 12.896 17.344 20.008\\\">expert</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 563.3738)\\\" x=\\\"0 5.776 7.6 9.824 14.272 18.72 22.72\\\">witness</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 236.3227 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 238.5023 563.3738)\\\" x=\\\"0 4 8.448 12.448 14.672\\\">costs</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.1741 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 259.3537 563.3738)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 272.7014 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 274.881 563.3738)\\\" x=\\\"0 4.448 6.672 11.12 15.568\\\">other</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 293.1153 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 295.2949 563.3738)\\\" x=\\\"0 4 8.448 12.448 14.672\\\">costs</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 313.9668 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 316.1464 563.3738)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.0448 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 331.2244 563.3738)\\\" x=\\\"0 1.824 6.272 10.272 14.72 17.384 20.048 24.496\\\">incurred</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 360.1736 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 362.3532 563.3738)\\\" x=\\\"0 2.664 5.504 9.504 13.952 17.952\\\">(&quot;cost</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 382.529 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 384.7086 563.3738)\\\" x=\\\"0 4.448 7.112 11.56 18.224 20.048 24.496 31.16 34 36.664\\\">premium&quot;).</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 423.5992 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 425.7788 563.3738)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.2241 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 432.4037 563.3738)\\\" x=\\\"0 5.776\\\">we</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 442.6303 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 444.8099 563.3738)\\\" x=\\\"0 4.448 8.896 12.896 17.344\\\">never</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 464.8216 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 467.0012 563.3738)\\\" x=\\\"0 6.664 11.112 15.56\\\">made</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 487.0129 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 489.1925 563.3738)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 493.6417 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 495.8213 563.3738)\\\" x=\\\"0 5.336 9.784 12.008 14.232 16.056 20.504 27.168 31.616 36.064\\\">Settlement</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 534.1103 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 536.2899 563.3738)\\\" x=\\\"0 6.224 8.448 10.672 15.12 17.784\\\">Offer,</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 556.2938 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 558.4734 563.3738)\\\" x=\\\"0 5.776\\\">we</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 554.3191)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 220.85 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 224.1983 554.3191)\\\" x=\\\"0 4.448 8.896\\\">pay</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 237.0968 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 240.4451 554.3191)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 251.5662 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 254.9145 554.3191)\\\" x=\\\"0 4.448 8.896 13.344 17.792\\\">bonus</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.7114 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 280.0597 554.3191)\\\" x=\\\"0 4.448 8.896 12.896 19.56 24.008 28.456 30.68\\\">payment,</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.966 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 316.3143 554.3191)\\\" x=\\\"0 4.448 6.672 8.896 13.344 16.008 20.456 24.904\\\">attorney</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 345.2206 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 348.5689 554.3191)\\\" x=\\\"0 4.448 7.112 11.56 18.224 20.048 24.496 31.16\\\">premium,</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 381.9556 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 385.3039 554.3191)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 398.6516 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 401.9999 554.3191)\\\" x=\\\"0 4.448 8.896\\\">any</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 414.8984 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 418.2467 554.3191)\\\" x=\\\"0 4 8.448 12.448\\\">cost</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 432.9186 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 436.2669 554.3191)\\\" x=\\\"0 4.448 7.112 11.56 18.224 20.048 24.496 31.16\\\">premium.</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 469.6536 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 473.002 554.3191)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.7871 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 490.1355 554.3191)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 513.7448 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 517.0932 554.3191)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 532.2064 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 535.5548 554.3191)\\\" x=\\\"0 4.448 7.112 11.56 16.008\\\">order</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 554.2306 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 557.5789 554.3191)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 545.2645)\\\" x=\\\"0 4.448 7.112 11.56 15.56 20.008 24.008\\\">process</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 237.6117 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 240.0494 545.2645)\\\" x=\\\"0 2.224 6.672\\\">for</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 249.3853 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 251.8229 545.2645)\\\" x=\\\"0 4.448 8.896 12.896 19.56 24.008 28.456 30.68\\\">payment.</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 284.7292 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 287.1668 545.2645)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.6121 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 294.0498 545.2645)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 298.499 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 300.9366 545.2645)\\\" x=\\\"0 1.824 6.272\\\">law</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.9874 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 315.425 545.2645)\\\" x=\\\"0 4.448 6.272 8.096 12.544 18.32\\\">allows</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 337.7493 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 340.1869 545.2645)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 353.0853 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 355.523 545.2645)\\\" x=\\\"0 6.664 11.112 13.776 18.224\\\">more,</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.9722 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 378.4098 545.2645)\\\" x=\\\"0 2.224 6.672 8.496\\\">this</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 390.9059 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 393.3436 545.2645)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496\\\">Clause</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 418.2928 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 420.7304 545.2645)\\\" x=\\\"0 5.776 10.224 14.672 16.2\\\">won&apos;t</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 439.1562 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 441.5938 545.2645)\\\" x=\\\"0 4.448 7.112 11.56 15.56 20.008 24.456\\\">prevent</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.2774 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 470.7151 545.2645)\\\" x=\\\"0 4 8.448 12.448\\\">such</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 487.6135 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 490.0511 545.2645)\\\" x=\\\"0 4.448 10.224 14.672 17.336 21.784\\\">award.</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 514.0628 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 516.5005 545.2645)\\\" x=\\\"0 7.552\\\">We</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 528.5005 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 530.9381 545.2645)\\\" x=\\\"0 5.776 10.224 14.672 16.2\\\">won&apos;t</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.3639 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 551.8015 545.2645)\\\" x=\\\"0 4 8.448 12.896\\\">seek</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 536.2098)\\\" x=\\\"0 4.448 6.672 8.896 13.344 16.008 20.456 24.904 28.904 31.032 33.256 37.704 42.152 46.152 48.28 52.728 57.176 61.624 63.752 68.2 72.2 76.648 81.096 85.544 89.544 93.992 97.992\\\">attorney fees and expenses.</text></g><clipPath id=\\\"clip5-19\\\"><path d=\\\"M 35 510 L 128 510 L 128 535 L 35 535 L 35 510 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-19)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.6 534.5301 L 127.5 534.5301 L 127.5 510.5301 L 35.6 510.5301 L 35.6 534.5301 z \\\"/><path clip-path=\\\"url(#clip5-19)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.7 530.5301 L 123.4 530.5301 L 123.4 512.4207 L 39.7 512.4207 L 39.7 530.5301 z \\\"/><path clip-path=\\\"url(#clip5-19)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 51.2317 530.5301 L 112.2317 530.5301 L 112.2317 520.5301 L 51.2317 520.5301 L 51.2317 530.5301 z \\\"/><g clip-path=\\\"url(#clip5-19)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 51.2317 523.1551)\\\" x=\\\"0 5.776 10.224 14.672 16.8 21.248 25.696 27.824 32.272 38.048 42.496 45.16 49.608 51.736 56.184\\\">Can an award be</text></g><path clip-path=\\\"url(#clip5-19)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 62.1535 521.4754 L 101.1535 521.4754 L 101.1535 511.4754 L 62.1535 511.4754 L 62.1535 521.4754 z \\\"/><g clip-path=\\\"url(#clip5-19)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 62.1535 514.1004)\\\" x=\\\"0 4.448 8.448 12.896 14.72 19.168 20.992 25.44 29.888 34.336\\\">explained?</text></g><clipPath id=\\\"clip5-20\\\"><path d=\\\"M 127 510 L 206 510 L 206 535 L 127 535 L 127 510 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-20)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 158.4961 523.1551)\\\" x=\\\"0 5.336 9.784 13.784\\\">Yes.</text></g><clipPath id=\\\"clip5-21\\\"><path d=\\\"M 205 510 L 573 510 L 573 535 L 205 535 L 205 510 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 523.1551)\\\" x=\\\"0\\\">A</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 214.9359 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 218.2265 523.1551)\\\" x=\\\"0 4.448 8.896 11.56 13.784\\\">party</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 236.0117 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 239.3023 523.1551)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 254.4155 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 257.7061 523.1551)\\\" x=\\\"0 2.664 7.112 11.56 16.008 20.456 24.456\\\">request</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 284.3897 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 287.6803 523.1551)\\\" x=\\\"0 4.448 8.896 11.12 15.568 17.392 19.216\\\">details</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 310.899 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 314.1896 523.1551)\\\" x=\\\"0 2.224 4.888 9.336\\\">from</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 330.1896 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 333.4802 523.1551)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 344.6013 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 347.8919 523.1551)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608\\\">Arbiter,</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 373.7239 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 377.0145 523.1551)\\\" x=\\\"0 5.776 7.6 9.824 14.272 16.096\\\">within</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 397.5613 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 400.8519 523.1551)\\\" x=\\\"0 4.448\\\">14</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 409.7504 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 413.0409 523.1551)\\\" x=\\\"0 4.448 8.896 12.896\\\">days</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 429.9394 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 433.23 523.1551)\\\" x=\\\"0 4.448\\\">of</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 439.9018 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 443.1924 523.1551)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.3135 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 457.6041 523.1551)\\\" x=\\\"0 2.664 7.112 8.936 10.76 15.208 19.656\\\">ruling.</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 479.4869 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 482.7775 523.1551)\\\" x=\\\"0 5.776 10.224 14.672\\\">Upon</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.9025 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 505.193 523.1551)\\\" x=\\\"0 4 8.448 12.448\\\">such</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 522.0915 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 525.3821 523.1551)\\\" x=\\\"0 2.664 7.112 11.56 16.008 20.456 24.456 26.68\\\">request,</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 554.2883 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 557.5789 523.1551)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 514.1004)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608 25.736 31.512 33.336 35.16 36.984 39.112 43.56 47.56 52.008 53.832 58.28 60.104 64.552 66.68 68.904 73.352 77.8 79.928 82.592 87.04 88.864 90.688 95.136 99.584 101.712 103.536 107.984 110.112 115.888 118.552 120.376 122.6 124.424 128.872 133.32\\\">Arbiter will explain the ruling in writing.</text></g><clipPath id=\\\"clip5-22\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 704.777 L 128 704.777 L 128 703.777 L 35.1 703.777 L 35.1 704.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 703.777 L 36.1 703.777 L 36.1 680.777 L 35.1 680.777 L 35.1 703.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128 704.777 L 206 704.777 L 206 703.777 L 128 703.777 L 128 704.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127 703.777 L 128 703.777 L 128 680.777 L 127 680.777 L 127 703.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 704.777 L 573.3 704.777 L 573.3 703.777 L 206 703.777 L 206 704.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.3 703.777 L 573.3 703.777 L 573.3 680.777 L 572.3 680.777 L 572.3 703.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 703.777 L 206 703.777 L 206 680.777 L 205 680.777 L 205 703.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 680.777 L 128 680.777 L 128 679.777 L 35.1 679.777 L 35.1 680.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 679.777 L 36.1 679.777 L 36.1 657.1769 L 35.1 657.1769 L 35.1 679.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128 680.777 L 206 680.777 L 206 679.777 L 128 679.777 L 128 680.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127 679.777 L 128 679.777 L 128 657.1769 L 127 657.1769 L 127 679.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 680.777 L 573.3 680.777 L 573.3 679.777 L 206 679.777 L 206 680.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.3 679.777 L 573.3 679.777 L 573.3 657.1769 L 572.3 657.1769 L 572.3 679.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 679.777 L 206 679.777 L 206 657.1769 L 205 657.1769 L 205 679.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 657.1769 L 128 657.1769 L 128 656.1769 L 35.1 656.1769 L 35.1 657.1769 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 656.1769 L 36.1 656.1769 L 36.1 633.577 L 35.1 633.577 L 35.1 656.1769 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128 657.1769 L 206 657.1769 L 206 656.1769 L 128 656.1769 L 128 657.1769 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127 656.1769 L 128 656.1769 L 128 633.577 L 127 633.577 L 127 656.1769 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 657.1769 L 573.3 657.1769 L 573.3 656.1769 L 206 656.1769 L 206 657.1769 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.3 656.1769 L 573.3 656.1769 L 573.3 633.577 L 572.3 633.577 L 572.3 656.1769 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 656.1769 L 206 656.1769 L 206 633.577 L 205 633.577 L 205 656.1769 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 633.577 L 128 633.577 L 128 632.577 L 35.1 632.577 L 35.1 633.577 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 632.577 L 36.1 632.577 L 36.1 602.4129 L 35.1 602.4129 L 35.1 632.577 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128 633.577 L 206 633.577 L 206 632.577 L 128 632.577 L 128 633.577 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127 632.577 L 128 632.577 L 128 602.4129 L 127 602.4129 L 127 632.577 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 633.577 L 573.3 633.577 L 573.3 632.577 L 206 632.577 L 206 633.577 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.3 632.577 L 573.3 632.577 L 573.3 602.4129 L 572.3 602.4129 L 572.3 632.577 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 632.577 L 206 632.577 L 206 602.4129 L 205 602.4129 L 205 632.577 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 602.4129 L 128 602.4129 L 128 601.4129 L 35.1 601.4129 L 35.1 602.4129 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 601.4129 L 36.1 601.4129 L 36.1 535.0301 L 35.1 535.0301 L 35.1 601.4129 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128 602.4129 L 206 602.4129 L 206 601.4129 L 128 601.4129 L 128 602.4129 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127 601.4129 L 128 601.4129 L 128 535.0301 L 127 535.0301 L 127 601.4129 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 602.4129 L 573.3 602.4129 L 573.3 601.4129 L 206 601.4129 L 206 602.4129 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.3 601.4129 L 573.3 601.4129 L 573.3 535.0301 L 572.3 535.0301 L 572.3 601.4129 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 601.4129 L 206 601.4129 L 206 535.0301 L 205 535.0301 L 205 601.4129 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 535.0301 L 128 535.0301 L 128 534.0301 L 35.1 534.0301 L 35.1 535.0301 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 511.0301 L 128 511.0301 L 128 510.0301 L 35.1 510.0301 L 35.1 511.0301 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 534.0301 L 36.1 534.0301 L 36.1 511.0301 L 35.1 511.0301 L 35.1 534.0301 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128 535.0301 L 206 535.0301 L 206 534.0301 L 128 534.0301 L 128 535.0301 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128 511.0301 L 206 511.0301 L 206 510.0301 L 128 510.0301 L 128 511.0301 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127 534.0301 L 128 534.0301 L 128 511.0301 L 127 511.0301 L 127 534.0301 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 535.0301 L 573.3 535.0301 L 573.3 534.0301 L 206 534.0301 L 206 535.0301 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 511.0301 L 573.3 511.0301 L 573.3 510.0301 L 206 510.0301 L 206 511.0301 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.3 534.0301 L 573.3 534.0301 L 573.3 511.0301 L 572.3 511.0301 L 572.3 534.0301 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 534.0301 L 206 534.0301 L 206 511.0301 L 205 511.0301 L 205 534.0301 z \\\"/><g clip-path=\\\"url(#clip5-22)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 273.1062 500.3113)\\\" x=\\\"0 7.78 10.56 16.12 21.68 25.01 27.67 35.45 41.01 43.79 46.07 51.63 57.19\\\">Other Options</text></g><clipPath id=\\\"clip5-23\\\"><path d=\\\"M 35 438 L 128 438 L 128 490 L 35 490 L 35 438 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-23)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.6 489.107 L 127.5 489.107 L 127.5 438.107 L 35.6 438.107 L 35.6 489.107 z \\\"/><path clip-path=\\\"url(#clip5-23)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.7 485.607 L 123.4 485.607 L 123.4 458.443 L 39.7 458.443 L 39.7 485.607 z \\\"/><path clip-path=\\\"url(#clip5-23)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 48.2942 485.607 L 115.2942 485.607 L 115.2942 475.607 L 48.2942 475.607 L 48.2942 485.607 z \\\"/><g clip-path=\\\"url(#clip5-23)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 48.2942 478.232)\\\" x=\\\"0 2.224 4.448 6.576 10.576 15.024 19.472 21.6 26.048 30.496 34.944 36.472 38.696 40.824 46.6 51.048 55.496 57.72 59.848 62.072\\\">If you don&apos;t want to</text></g><path clip-path=\\\"url(#clip5-23)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 43.8078 476.5524 L 119.8078 476.5524 L 119.8078 466.5524 L 43.8078 466.5524 L 43.8078 476.5524 z \\\"/><g clip-path=\\\"url(#clip5-23)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 43.8078 469.1774)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 29.392 31.616 33.744 37.744 42.192 46.64 48.768 52.768 57.216 61.664 63.792 67.792 70.016 71.84 73.664\\\">arbitrate, can you still</text></g><path clip-path=\\\"url(#clip5-23)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 49.8254 467.4977 L 113.8254 467.4977 L 113.8254 457.4977 L 49.8254 457.4977 L 49.8254 467.4977 z \\\"/><g clip-path=\\\"url(#clip5-23)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 49.8254 460.1227)\\\" x=\\\"0 4.448 8.896 11.12 13.248 17.696 19.824 22.048 24.712 29.16 33.608 37.608 42.056 46.056 48.28 50.104 54.552 59\\\">get a transaction?</text></g><clipPath id=\\\"clip5-24\\\"><path d=\\\"M 127 438 L 206 438 L 206 490 L 127 490 L 127 438 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-24)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.1817 478.232)\\\" x=\\\"0 5.336 9.784 13.784 16.008 18.136 23.472 27.92 32.368 34.496 38.496 42.944 47.392 49.52 53.968 58.416\\\">Yes. You can get</text></g><g clip-path=\\\"url(#clip5-24)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 137.2266 469.1774)\\\" x=\\\"0 4.448 8.896 11.56 13.688 17.688 22.136 24.8 28.8 30.624 34.624 39.072 43.072 45.2 49.648 54.096\\\">our* D E M O *nd</text></g><g clip-path=\\\"url(#clip5-24)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 143.668 460.1227)\\\" x=\\\"0 4.448 8.896 12.896 14.72 19.168 23.616 25.744 30.192 34.64 36.864 38.992 41.216\\\">decide not to</text></g><g clip-path=\\\"url(#clip5-24)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 150.6914 451.068)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 29.392\\\">arbitrate.</text></g><clipPath id=\\\"clip5-25\\\"><path d=\\\"M 205 438 L 573 438 L 573 490 L 205 490 L 205 438 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-25)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 478.232)\\\" x=\\\"0 5.776 10.224 14.672 18.672 20.496 24.944 29.392 32.056 34.184 36.408 40.856 45.304 49.304 53.752 55.88 59.88 64.328 68.776 70.6 74.6 79.048 83.048\\\">Consider these choices:</text></g><g clip-path=\\\"url(#clip5-25)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 469.1774)\\\" x=\\\"0 4.448 6.672 8.8 11.024 15.472 17.696 22.144 24.808 31.472 35.92 37.744 39.872 45.648 47.472 51.472 55.92 60.368 62.592 67.04 69.168 74.944 79.392 83.392 87.84 89.664 94.112 96.336 98.16 102.608 107.056 109.28 111.408 117.184 121.632 126.08 128.304 132.752 136.752 138.976 141.104 145.552 149.552 151.776 153.904 158.352 162.8 167.248 169.376 173.824 176.048 178.272 182.72 189.384 193.832 196.056 198.184 200.408 204.856 206.984 210.984 215.432 217.656 219.88 221.704 226.152 228.28 232.728 237.176 241.176 243.304 249.08 250.904 254.904 259.352 263.8 266.024 270.472 274.472\\\">1. Informal Dispute Resolution. Contact us, and attempt to settle any Disputes.</text></g><g clip-path=\\\"url(#clip5-25)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 460.1227)\\\" x=\\\"0 4.448 6.672 8.8 14.136 20.8 25.248 27.072 28.896 31.56 35.56 37.384 41.832 43.656 50.32 54.32 56.448 62.224 66.672 71.12 73.784 76.008 78.232 80.36 85.696 90.144 94.592 98.592 100.72 102.944 107.392 109.52 113.52 117.968 119.792 123.792 128.24 130.368 136.144 137.968 141.968 146.416 150.864 153.088 157.536 161.536 163.664 165.488 169.936 172.064 176.064 182.728 187.176 189 190.824 193.488 197.488 199.312 203.76 205.584 212.248 216.248 218.376 222.376 226.824 231.272 233.936 236.16 238.384 240.512 246.288 248.112 250.336 254.784 256.608 261.056 263.184 267.184 269.408 273.856 276.08 280.528 282.656 284.48 288.928 294.704 296.832 298.656 300.48 307.144 308.968 311.192 315.192\\\">2. Small-claims Court. Seek to solve Disputes in small-claims court, within state law limits.</text></g><g clip-path=\\\"url(#clip5-25)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 451.068)\\\" x=\\\"0 4.448 6.672 8.8 15.024 19.472 21.696 23.824 28.272 30.4 34.848 39.296 43.744 47.744 52.192 54.32 61.872 63.696 65.92 70.368 74.816 79.264 81.488 83.616 85.84 90.288 94.736 96.864 102.64 104.464 108.912 113.36 117.36 121.808 124.032 126.16 133.712 136.376 138.2 140.424 144.872 147 149.224 153.672 155.8 160.248 164.248 166.376 170.824 175.272 179.72 181.848 186.296 190.296 194.296 196.424 198.648 203.096 205.76 207.888 212.336 216.784 218.912 224.248 228.696 231.36 235.808 240.256 246.92 251.368 255.816 258.04 260.168 265.944 267.768 269.992 274.44 278.888 283.336 285.56 287.688 289.912 294.36 298.808 300.936 306.712 308.536 312.984 317.432 321.432 325.88\\\">3. Get a Lease Without the Clause. Write to us and ask for an Agreement without the Clause.</text></g><g clip-path=\\\"url(#clip5-25)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 442.0133)\\\" x=\\\"0 4.448 6.672 8.8 15.024 19.472 21.696 24.36 30.584 35.032 37.256 39.384 43.832 46.056 48.184 53.52 56.184 60.632 62.456 64.68 67.344 71.792 74.016 75.84 80.288 84.736 86.96 89.088 94.424 96.248 100.696 105.144 107.272 111.72 116.168 120.616 122.744 124.968 129.416 133.864 138.312 140.44 142.664 144.488 151.152 155.6 157.424 161.424 163.552 168 172.448 174.672 177.336 181.784 186.232 188.456\\\">4. Opt-Out of Arbitration. Sign and then timely opt-out.</text></g><clipPath id=\\\"clip5-26\\\"><path d=\\\"M 35 405 L 128 405 L 128 439 L 35 439 L 35 405 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-26)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.6 438.107 L 127.5 438.107 L 127.5 405.107 L 35.6 405.107 L 35.6 438.107 z \\\"/><path clip-path=\\\"url(#clip5-26)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.7 434.607 L 123.4 434.607 L 123.4 416.4977 L 39.7 416.4977 L 39.7 434.607 z \\\"/><path clip-path=\\\"url(#clip5-26)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 42.1633 434.607 L 121.1633 434.607 L 121.1633 424.607 L 42.1633 424.607 L 42.1633 434.607 z \\\"/><g clip-path=\\\"url(#clip5-26)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 42.1633 427.232)\\\" x=\\\"0 5.776 10.224 14.672 16.8 20.8 25.248 29.696 31.824 36.272 40.72 42.944 45.608 50.056 54.504 56.728 58.856 63.304 65.528 67.656 69.88 74.328\\\">Can you opt-out of the</text></g><path clip-path=\\\"url(#clip5-26)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 66.8508 425.5524 L 96.8508 425.5524 L 96.8508 415.5524 L 66.8508 415.5524 L 66.8508 425.5524 z \\\"/><g clip-path=\\\"url(#clip5-26)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 66.8508 418.1774)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496 24.944\\\">Clause?</text></g><clipPath id=\\\"clip5-27\\\"><path d=\\\"M 127 405 L 206 405 L 206 439 L 127 439 L 127 405 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-27)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 140.7617 427.232)\\\" x=\\\"0 5.336 9.784 13.784 16.008 18.136 25.688 27.512 29.736 34.184 36.008 40.456 42.584 47.032\\\">Yes. Within 60</text></g><g clip-path=\\\"url(#clip5-27)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 156.9395 418.1774)\\\" x=\\\"0 4.448 8.896 12.896 16.896\\\">days.</text></g><clipPath id=\\\"clip5-28\\\"><path d=\\\"M 205 405 L 573 405 L 573 439 L 205 439 L 205 405 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 427.232)\\\" x=\\\"0 7.552 10.216 12.04 14.264\\\">Write</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 228.3109 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 232.8069 427.232)\\\" x=\\\"0 4.448\\\">us</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 241.2562 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 245.7522 427.232)\\\" x=\\\"0 5.776 7.6 9.824 14.272 16.096\\\">within</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 266.299 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 270.795 427.232)\\\" x=\\\"0 4.448\\\">60</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 279.6935 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 284.1895 427.232)\\\" x=\\\"0 4 8.448 10.272 14.72 19.168 23.616 28.064\\\">calendar</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 314.9238 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 319.4198 427.232)\\\" x=\\\"0 4.448 8.896 12.896\\\">days</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 336.3183 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 340.8143 427.232)\\\" x=\\\"0 4.448\\\">of</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 347.4861 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 351.9821 427.232)\\\" x=\\\"0 4 5.824 10.272 14.72 16.544 20.992\\\">signing</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 377.4274 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 381.9234 427.232)\\\" x=\\\"0 4 8.448 12.896\\\">your</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 397.4859 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 401.9819 427.232)\\\" x=\\\"0 4.448 8.896 11.56 16.008 20.456 27.12 31.568 36.016\\\">agreement</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 440.228 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 444.724 427.232)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 451.3959 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 455.8919 427.232)\\\" x=\\\"0 4.448 8.896 11.12 13.784 18.232 22.68\\\">opt-out</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 480.7981 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 485.2941 427.232)\\\" x=\\\"0 4.448\\\">of</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 491.966 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 496.462 427.232)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 507.5831 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 512.0791 427.232)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496\\\">Clause</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 537.0283 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 541.5243 427.232)\\\" x=\\\"0 2.224 6.672\\\">for</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 550.8602 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 555.3562 427.232)\\\" x=\\\"0 2.224 6.672 11.12\\\">that</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 418.1774)\\\" x=\\\"0 4.448 8.896 11.56 16.008 20.456 27.12 31.568 36.016 38.24\\\">agreement.</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 250.0688 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 252.4616 418.1774)\\\" x=\\\"0 4.448 6.272 10.272\\\">List</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 264.9577 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 267.3505 418.1774)\\\" x=\\\"0 4 8.448 12.896\\\">your</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 282.913 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 285.3058 418.1774)\\\" x=\\\"0 4.448 8.896 15.56 20.008\\\">name,</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 307.5402 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 309.933 418.1774)\\\" x=\\\"0 4.448 8.896 13.344 16.008 20.456 24.456 28.456\\\">address,</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 340.6166 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 343.0095 418.1774)\\\" x=\\\"0 4.448 8.448 12.448 16.896 21.344 25.792\\\">account</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.029 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 373.4218 418.1774)\\\" x=\\\"0 4.448 8.896 15.56 20.008 24.456\\\">number</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 400.5468 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 402.9397 418.1774)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 416.2873 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 418.6801 418.1774)\\\" x=\\\"0 4.448 8.896 11.12 15.568\\\">date.</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 436.4731 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 438.8659 418.1774)\\\" x=\\\"0 4.448 6.272 10.272\\\">List</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 451.362 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 453.7549 418.1774)\\\" x=\\\"0 2.224 6.672 11.12\\\">that</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.0986 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 469.4914 418.1774)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 482.3899 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 484.7827 418.1774)\\\" x=\\\"0 2.84 7.288 11.736\\\">&quot;opt</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 498.7437 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 501.1365 418.1774)\\\" x=\\\"0 4.448 8.896 11.12 13.344\\\">out.&quot;</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 517.3201 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 519.7129 418.1774)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 524.1582 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 526.551 418.1774)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 539.4495 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 541.8423 418.1774)\\\" x=\\\"0 4.448 8.896\\\">opt</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.9634 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 555.3562 418.1774)\\\" x=\\\"0 4.448 8.896 11.12\\\">out,</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 409.1227)\\\" x=\\\"0 1.824 4.048 6.176 11.952 13.776 15.6 17.424 19.552 24 28.448 30.272 34.272 36.4 40.848 45.296 49.744 51.568 55.568 57.696 59.92 64.368 66.496 68.72 73.168 77.616 79.84 81.968 86.416 90.864 93.528 97.976 102.424 109.088 113.536 117.984 120.208\\\">it will only apply to that agreement.</text></g><clipPath id=\\\"clip5-29\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 489.607 L 128 489.607 L 128 488.607 L 35.1 488.607 L 35.1 489.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 488.607 L 36.1 488.607 L 36.1 438.607 L 35.1 438.607 L 35.1 488.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128 489.607 L 206 489.607 L 206 488.607 L 128 488.607 L 128 489.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127 488.607 L 128 488.607 L 128 438.607 L 127 438.607 L 127 488.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 489.607 L 573.3 489.607 L 573.3 488.607 L 206 488.607 L 206 489.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.3 488.607 L 573.3 488.607 L 573.3 438.607 L 572.3 438.607 L 572.3 488.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 488.607 L 206 488.607 L 206 438.607 L 205 438.607 L 205 488.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 438.607 L 128 438.607 L 128 437.607 L 35.1 437.607 L 35.1 438.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 405.607 L 128 405.607 L 128 404.607 L 35.1 404.607 L 35.1 405.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 437.607 L 36.1 437.607 L 36.1 405.607 L 35.1 405.607 L 35.1 437.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128 438.607 L 206 438.607 L 206 437.607 L 128 437.607 L 128 438.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128 405.607 L 206 405.607 L 206 404.607 L 128 404.607 L 128 405.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127 437.607 L 128 437.607 L 128 405.607 L 127 405.607 L 127 437.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 438.607 L 573.3 438.607 L 573.3 437.607 L 206 437.607 L 206 438.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 405.607 L 573.3 405.607 L 573.3 404.607 L 206 404.607 L 206 405.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.3 437.607 L 573.3 437.607 L 573.3 405.607 L 572.3 405.607 L 572.3 437.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 437.607 L 206 437.607 L 206 405.607 L 205 405.607 L 205 437.607 z \\\"/><g clip-path=\\\"url(#clip5-29)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 162.1492 377.7699)\\\" x=\\\"0 6.67 10 12.28 17.84 20.62 23.28 28.84 34.4 39.96 42.62 45.95 51.51 54.29 59.85 62.13 67.69 70.35 75.91 78.57 84.13 89.69 93.02 98.58 101.24 106.24 111.8 117.36 122.36 125.02 130.58 133.91 136.57 142.13 144.41 149.97 154.97 157.75 161.08 166.64 172.2 174.48 179.48 182.14 187.14 192.7 198.26 203.26 205.92 211.48 214.26 216.92 219.7 225.26 227.54 232.54 235.2 241.87 247.43 250.76 256.32 261.88 270.21 275.77 281.33\\\">Print and retain a hard copy or electronic copy of this Agreement</text></g><g clip-path=\\\"url(#clip5-29)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 36.5264)\\\" x=\\\"0 6.498 11.997 14.391 16.785 21.789 26.793 29.295 34.299 39.303 44.307 504 506.3906 508.7812 511.1719 513.5625 515.9531 518.3438 520.7344 523.125 525.5156\\\">UT  07/2019          </text></g><g clip-path=\\\"url(#clip5-29)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 26.3398)\\\" x=\\\"0 6.003 11.007 16.011 21.015\\\">Page </text></g><g clip-path=\\\"url(#clip5-29)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 55.8097 26.3398)\\\" x=\\\"0\\\">6</text></g><g clip-path=\\\"url(#clip5-29)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.815 26.3398)\\\" x=\\\"0 2.394 7.398 9.9\\\"> of </text></g><g clip-path=\\\"url(#clip5-29)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 73.1021 26.3398)\\\" x=\\\"0\\\">7</text></g><g clip-path=\\\"url(#clip5-29)\\\"><text stroke=\\\"none\\\" fill=\\\"#d9d9d9\\\" style=\\\"font-family:f5-0; font-size:54pt; white-space:pre\\\" transform=\\\"matrix(0.707 0.707 0.707 -0.707 135.6027 198.5094)\\\" x=\\\"0 56.016 96.048 136.08 176.112 216.144 236.16 284.184 324.216 344.232 364.248 416.232 456.264 480.24\\\">Qoppa Software</text></g><g clip-path=\\\"url(#clip5-29)\\\"><text stroke=\\\"none\\\" fill=\\\"#002ba6\\\" style=\\\"font-family:f5-0; font-size:9pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.932 772)\\\" x=\\\"0 9.336 16.008 22.68 29.352 36.024 39.36 47.364 54.036 57.372 60.708 69.372 76.044 80.04 86.712 90.048 94.044 97.38 104.712 111.384 115.38 118.716 126.72 132.72 139.392 142.056 148.728 155.4 158.736 161.4 168.072 174.744 178.08 187.416 194.088 196.752 202.752 206.088 210.084 213.42 220.092 223.428 226.764 233.436 239.436 242.772 246.108 249.444 258.108 266.772 275.436 278.772 285.444 292.116 298.788 305.46 312.132 315.468 321.468 328.14\\\">Qoppa Software - For Evaluation Only - https://www.qoppa.com</text></g></g></svg></svg></g></svg><br>\\n<?xml version='1.0' encoding='UTF-8'?><svg id=\\\"qoppa_document\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" version=\\\"1.1\\\" xmlns=\\\"http://www.w3.org/2000/svg\\\" xmlns:xlink=\\\"http://www.w3.org/1999/xlink\\\"><!-- jPDFWeb v2019R1.03 - Demo Version --><style>title p { display: block; }</style><g id=\\\"qoppa_viewxform\\\" transform=\\\"matrix(1 0 0 1 0 0)\\\"><style type=\\\"text/css\\\">@font-face {font-family:f6-0;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f6-1;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f6-2;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}</style><svg id=\\\"qoppa_page_p6\\\" class=\\\"qoppa_page\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\"><rect class=\\\"qoppa_pageborder\\\" x=\\\"0.5pt\\\" y=\\\"0.5pt\\\" width=\\\"611pt\\\" height=\\\"791pt\\\" fill=\\\"none\\\" /><svg class=\\\"qoppa_pagecontents\\\" x=\\\"0pt\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" viewBox=\\\"0 0 612 792\\\" ><g class=\\\"qoppa_contentstream\\\" transform=\\\"matrix(1 0 0 -1 0 792)\\\" fill=\\\"black\\\" stroke=\\\"black\\\" stroke-width=\\\"1\\\" stroke-linecap=\\\"butt\\\" stroke-linejoin=\\\"miter\\\" stroke-miterlimit=\\\"10\\\"><clipPath id=\\\"clip6-1\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 284.4843 735.5809)\\\" x=\\\"0 6.67 11.67 17.23 19.51 25.07 27.35\\\">Exhibit</text></g><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(0.99 0 0 -1 314.4843 735.5809)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 317.4843 735.5809)\\\" x=\\\"0\\\">A</text></g><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 94.4 699.1621)\\\" x=\\\"0 3.2783 9.3398 14.8398 20.9014 23.6816 29.1816\\\">Invoice</text></g><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 129.6432 699.1621)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 132.7994 699.1621)\\\" x=\\\"0\\\">#</text></g><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 138.8609 699.1621)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 142.0172 699.1621)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 142.0172 697.4792 L 142.0172 697.4792 L 145.0172 697.4792 L 145.4339 697.4792 L 145.4339 696.6458 L 145.0172 696.6458 L 142.0172 696.6458 L 141.6005 696.6458 L 141.6005 697.4792 z \\\"/><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 145.1734 699.1621)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 145.1734 697.4792 L 145.1734 697.4792 L 148.1734 697.4792 L 148.5901 697.4792 L 148.5901 696.6458 L 148.1734 696.6458 L 145.1734 696.6458 L 144.7568 696.6458 L 144.7568 697.4792 z \\\"/><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 148.3297 699.1621)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 148.3297 697.4792 L 148.3297 697.4792 L 151.3297 697.4792 L 151.7464 697.4792 L 151.7464 696.6458 L 151.3297 696.6458 L 148.3297 696.6458 L 147.913 696.6458 L 147.913 697.4792 z \\\"/><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 151.4859 699.1621)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 151.4859 697.4792 L 151.4859 697.4792 L 154.4859 697.4792 L 154.9026 697.4792 L 154.9026 696.6458 L 154.4859 696.6458 L 151.4859 696.6458 L 151.0693 696.6458 L 151.0693 697.4792 z \\\"/><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 154.6422 699.1621)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 154.6422 697.4792 L 154.6422 697.4792 L 157.6422 697.4792 L 158.0589 697.4792 L 158.0589 696.6458 L 157.6422 696.6458 L 154.6422 696.6458 L 154.2255 696.6458 L 154.2255 697.4792 z \\\"/><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 157.7984 699.1621)\\\" x=\\\"0\\\">0</text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 157.7984 697.4792 L 157.7984 697.4792 L 163.7984 697.4792 L 164.2151 697.4792 L 164.2151 696.6458 L 163.7984 696.6458 L 157.7984 696.6458 L 157.3818 696.6458 L 157.3818 697.4792 z \\\"/><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 163.86 699.1621)\\\" x=\\\"0\\\">4</text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 163.86 697.4792 L 163.86 697.4792 L 169.86 697.4792 L 170.2766 697.4792 L 170.2766 696.6458 L 169.86 696.6458 L 163.86 696.6458 L 163.4433 696.6458 L 163.4433 697.4792 z \\\"/><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 169.9215 699.1621)\\\" x=\\\"0\\\">1</text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 169.9215 697.4792 L 169.9215 697.4792 L 175.9215 697.4792 L 176.3382 697.4792 L 176.3382 696.6458 L 175.9215 696.6458 L 169.9215 696.6458 L 169.5048 696.6458 L 169.5048 697.4792 z \\\"/><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 175.983 699.1621)\\\" x=\\\"0\\\">2</text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 175.983 697.4792 L 175.983 697.4792 L 181.983 697.4792 L 182.3997 697.4792 L 182.3997 696.6458 L 181.983 696.6458 L 175.983 696.6458 L 175.5663 696.6458 L 175.5663 697.4792 z \\\"/><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 182.0445 699.1621)\\\" x=\\\"0\\\">9</text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 182.0445 697.4792 L 182.0445 697.4792 L 188.0445 697.4792 L 188.4612 697.4792 L 188.4612 696.6458 L 188.0445 696.6458 L 182.0445 696.6458 L 181.6279 696.6458 L 181.6279 697.4792 z \\\"/><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 188.1061 699.1621)\\\" x=\\\"0\\\">9</text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 188.1061 697.4792 L 188.1061 697.4792 L 194.1061 697.4792 L 194.5227 697.4792 L 194.5227 696.6458 L 194.1061 696.6458 L 188.1061 696.6458 L 187.6894 696.6458 L 187.6894 697.4792 z \\\"/><clipPath id=\\\"clip6-2\\\"><path d=\\\"M 71 551 L 537 551 L 537 572 L 71 572 L 71 551 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 286.9417 561.1477)\\\" x=\\\"0 6.003 9 14.004 19.008 24.012 28.512 31.014\\\">Products</text></g><clipPath id=\\\"clip6-3\\\"><path d=\\\"M 71 531 L 165 531 L 165 552 L 71 552 L 71 531 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 106.4173 541.1477)\\\" x=\\\"0 7.497 12.501 17.505 22.509\\\">Model</text></g><clipPath id=\\\"clip6-4\\\"><path d=\\\"M 164 531 L 258 531 L 258 552 L 164 552 L 164 531 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-4)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 189.1385 541.1477)\\\" x=\\\"0 6.498 11.502 16.002 20.502 23.499 25.551 30.555 33.057 35.109 40.113\\\">Description</text></g><clipPath id=\\\"clip6-5\\\"><path d=\\\"M 257 531 L 351 531 L 351 552 L 257 552 L 257 531 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-5)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 297.6995 541.1477)\\\" x=\\\"0 7.002 9.504\\\">Qty</text></g><clipPath id=\\\"clip6-6\\\"><path d=\\\"M 350 531 L 444 531 L 444 552 L 350 552 L 350 531 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-6)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 387.4212 541.1477)\\\" x=\\\"0 6.003 9 11.052 15.552\\\">Price</text></g><clipPath id=\\\"clip6-7\\\"><path d=\\\"M 443 531 L 537 531 L 537 552 L 443 552 L 443 531 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-7)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 460.2107 541.1477)\\\" x=\\\"0 6.003 10.503 13.005 18.009 23.013 28.017 33.021 38.025 40.419 46.422 49.419 51.471 55.971\\\">Extended Price</text></g><clipPath id=\\\"clip6-8\\\"><path d=\\\"M 164 511 L 258 511 L 258 532 L 164 532 L 164 511 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 178.6472 522.0696)\\\" x=\\\"0 5.336 9.784 12.448 16.448 18.272 22.272 26.72 30.72 32.848 37.296 41.744 46.192 48.32 53.208 57.656 62.104\\\">Services and Fees</text></g><clipPath id=\\\"clip6-9\\\"><path d=\\\"M 257 511 L 351 511 L 351 532 L 257 532 L 257 511 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 302.4754 522.0696)\\\" x=\\\"0\\\">1</text></g><clipPath id=\\\"clip6-10\\\"><path d=\\\"M 350 511 L 444 511 L 444 532 L 350 532 L 350 511 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 378.8426 522.0696)\\\" x=\\\"0 4.448 6.576 11.024 13.248 17.696 22.144 26.592 28.816 33.264\\\">$ 3,784.97</text></g><clipPath id=\\\"clip6-11\\\"><path d=\\\"M 443 511 L 537 511 L 537 532 L 443 532 L 443 511 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 471.8426 522.0696)\\\" x=\\\"0 4.448 6.576 11.024 13.248 17.696 22.144 26.592 28.816 33.264\\\">$ 3,784.97</text></g><clipPath id=\\\"clip6-12\\\"><path d=\\\"M 164 491 L 258 491 L 258 512 L 164 512 L 164 491 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 196.364 502.0696)\\\" x=\\\"0 6.664 11.112 13.336 15.56 18.224 22.672 26.672\\\">Mattress</text></g><clipPath id=\\\"clip6-13\\\"><path d=\\\"M 257 491 L 351 491 L 351 512 L 257 512 L 257 491 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-13)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 302.4754 502.0696)\\\" x=\\\"0\\\">1</text></g><clipPath id=\\\"clip6-14\\\"><path d=\\\"M 350 491 L 444 491 L 444 512 L 350 512 L 350 491 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-14)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 386.6277 502.0696)\\\" x=\\\"0 4.448 6.576 11.024 13.248 17.696\\\">$ 1.00</text></g><clipPath id=\\\"clip6-15\\\"><path d=\\\"M 443 491 L 537 491 L 537 512 L 443 512 L 443 491 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 479.6277 502.0696)\\\" x=\\\"0 4.448 6.576 11.024 13.248 17.696\\\">$ 1.00</text></g><clipPath id=\\\"clip6-16\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 71.2 572.4446 L 537.2 572.4446 L 537.2 571.4446 L 71.2 571.4446 L 71.2 572.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 536.2 571.4446 L 537.2 571.4446 L 537.2 552.4446 L 536.2 552.4446 L 536.2 571.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 71.2 571.4446 L 72.2 571.4446 L 72.2 552.4446 L 71.2 552.4446 L 71.2 571.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 71.2 552.4446 L 165.2 552.4446 L 165.2 551.4446 L 71.2 551.4446 L 71.2 552.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 71.2 551.4446 L 72.2 551.4446 L 72.2 532.4446 L 71.2 532.4446 L 71.2 551.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 165.2 552.4446 L 258.2 552.4446 L 258.2 551.4446 L 165.2 551.4446 L 165.2 552.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 164.2 551.4446 L 165.2 551.4446 L 165.2 532.4446 L 164.2 532.4446 L 164.2 551.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 258.2 552.4446 L 351.2 552.4446 L 351.2 551.4446 L 258.2 551.4446 L 258.2 552.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 257.2 551.4446 L 258.2 551.4446 L 258.2 532.4446 L 257.2 532.4446 L 257.2 551.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 351.2 552.4446 L 444.2 552.4446 L 444.2 551.4446 L 351.2 551.4446 L 351.2 552.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 350.2 551.4446 L 351.2 551.4446 L 351.2 532.4446 L 350.2 532.4446 L 350.2 551.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 444.2 552.4446 L 537.2 552.4446 L 537.2 551.4446 L 444.2 551.4446 L 444.2 552.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 536.2 551.4446 L 537.2 551.4446 L 537.2 532.4446 L 536.2 532.4446 L 536.2 551.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 443.2 551.4446 L 444.2 551.4446 L 444.2 532.4446 L 443.2 532.4446 L 443.2 551.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 71.2 532.4446 L 165.2 532.4446 L 165.2 531.4446 L 71.2 531.4446 L 71.2 532.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 71.2 531.4446 L 72.2 531.4446 L 72.2 512.4446 L 71.2 512.4446 L 71.2 531.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 165.2 532.4446 L 258.2 532.4446 L 258.2 531.4446 L 165.2 531.4446 L 165.2 532.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 164.2 531.4446 L 165.2 531.4446 L 165.2 512.4446 L 164.2 512.4446 L 164.2 531.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 258.2 532.4446 L 351.2 532.4446 L 351.2 531.4446 L 258.2 531.4446 L 258.2 532.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 257.2 531.4446 L 258.2 531.4446 L 258.2 512.4446 L 257.2 512.4446 L 257.2 531.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 351.2 532.4446 L 444.2 532.4446 L 444.2 531.4446 L 351.2 531.4446 L 351.2 532.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 350.2 531.4446 L 351.2 531.4446 L 351.2 512.4446 L 350.2 512.4446 L 350.2 531.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 444.2 532.4446 L 537.2 532.4446 L 537.2 531.4446 L 444.2 531.4446 L 444.2 532.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 536.2 531.4446 L 537.2 531.4446 L 537.2 512.4446 L 536.2 512.4446 L 536.2 531.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 443.2 531.4446 L 444.2 531.4446 L 444.2 512.4446 L 443.2 512.4446 L 443.2 531.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 71.2 512.4446 L 165.2 512.4446 L 165.2 511.4446 L 71.2 511.4446 L 71.2 512.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 71.2 492.4446 L 165.2 492.4446 L 165.2 491.4446 L 71.2 491.4446 L 71.2 492.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 71.2 511.4446 L 72.2 511.4446 L 72.2 492.4446 L 71.2 492.4446 L 71.2 511.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 165.2 512.4446 L 258.2 512.4446 L 258.2 511.4446 L 165.2 511.4446 L 165.2 512.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 165.2 492.4446 L 258.2 492.4446 L 258.2 491.4446 L 165.2 491.4446 L 165.2 492.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 164.2 511.4446 L 165.2 511.4446 L 165.2 492.4446 L 164.2 492.4446 L 164.2 511.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 258.2 512.4446 L 351.2 512.4446 L 351.2 511.4446 L 258.2 511.4446 L 258.2 512.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 258.2 492.4446 L 351.2 492.4446 L 351.2 491.4446 L 258.2 491.4446 L 258.2 492.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 257.2 511.4446 L 258.2 511.4446 L 258.2 492.4446 L 257.2 492.4446 L 257.2 511.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 351.2 512.4446 L 444.2 512.4446 L 444.2 511.4446 L 351.2 511.4446 L 351.2 512.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 351.2 492.4446 L 444.2 492.4446 L 444.2 491.4446 L 351.2 491.4446 L 351.2 492.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 350.2 511.4446 L 351.2 511.4446 L 351.2 492.4446 L 350.2 492.4446 L 350.2 511.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 444.2 512.4446 L 537.2 512.4446 L 537.2 511.4446 L 444.2 511.4446 L 444.2 512.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 444.2 492.4446 L 537.2 492.4446 L 537.2 491.4446 L 444.2 491.4446 L 444.2 492.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 536.2 511.4446 L 537.2 511.4446 L 537.2 492.4446 L 536.2 492.4446 L 536.2 511.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 443.2 511.4446 L 444.2 511.4446 L 444.2 492.4446 L 443.2 492.4446 L 443.2 511.4446 z \\\"/><clipPath id=\\\"clip6-17\\\"><path d=\\\"M 264 464 L 404 464 L 404 478 L 264 478 L 264 464 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-17)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.9359 468.3239)\\\" x=\\\"0 5.336 9.784 14.232 16.36 21.248 25.696 27.92 32.368 34.192\\\">Sub Total:</text></g><clipPath id=\\\"clip6-18\\\"><path d=\\\"M 403 464 L 535 464 L 535 478 L 403 478 L 403 464 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.55 468.3239)\\\" x=\\\"0 4.448 6.576 11.024 13.248 17.696 22.144 26.592 28.816 33.264\\\">$ 3,785.97</text></g><clipPath id=\\\"clip6-19\\\"><path d=\\\"M 264 451 L 404 451 L 404 465 L 264 465 L 264 451 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-19)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 358.6078 454.8239)\\\" x=\\\"0 5.336 9.784 11.608 16.056 20.056 22.184 27.072 31.52 35.52\\\">Sales Tax:</text></g><clipPath id=\\\"clip6-20\\\"><path d=\\\"M 403 451 L 535 451 L 535 465 L 403 465 L 403 451 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-20)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.55 454.8239)\\\" x=\\\"0 4.448 6.576 11.024 15.472 17.696 22.144\\\">$ 86.03</text></g><clipPath id=\\\"clip6-21\\\"><path d=\\\"M 264 437 L 404 437 L 404 452 L 264 452 L 264 437 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.7758 441.3239)\\\" x=\\\"0 4.888 9.336 11.56 16.008 17.832 19.96 22.184 26.632 30.632 35.08 36.904 40.904 45.352\\\">Total Invoice:</text></g><clipPath id=\\\"clip6-22\\\"><path d=\\\"M 403 437 L 535 437 L 535 452 L 403 452 L 403 437 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-22)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.55 441.3239)\\\" x=\\\"0 4.448 6.576 11.024 13.248 17.696 22.144 26.592 28.816 33.264\\\">$ 3,872.00</text></g><clipPath id=\\\"clip6-23\\\"><path d=\\\"M 264 424 L 404 424 L 404 438 L 264 438 L 264 424 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-23)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 284.3578 427.8239)\\\" x=\\\"0 5.336 12 14.224 16.352 22.128 26.576 31.024 33.152 38.04 42.488 46.936 51.384 55.384 57.512 60.176 65.952 68.176 72.624 74.752 80.088 82.752 87.2 91.2 93.328 98.216 102.664 107.112 109.776\\\">Amt Due Today (w/o Proc Fee):</text></g><clipPath id=\\\"clip6-24\\\"><path d=\\\"M 403 424 L 535 424 L 535 438 L 403 438 L 403 424 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.55 427.8239)\\\" x=\\\"0 4.448 6.576 11.024 13.248 17.696 22.144 26.592 28.816 33.264\\\">$ 3,784.30</text></g><clipPath id=\\\"clip6-25\\\"><path d=\\\"M 264 410 L 404 410 L 404 425 L 264 425 L 264 410 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-25)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.4242 414.3239)\\\" x=\\\"0 5.336 9.784 14.232 16.056 18.184 23.96 28.408 32.408 34.632 36.76 42.536 46.984 50.984 55.432 57.56 62.896 67.344 69.472 74.36 78.808 83.256 87.704 91.704\\\">Addl Cust Cash Pd Today:</text></g><clipPath id=\\\"clip6-26\\\"><path d=\\\"M 403 410 L 535 410 L 535 425 L 403 425 L 403 410 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-26)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.55 414.3239)\\\" x=\\\"0 4.448 6.576 11.024 13.248 17.696\\\">$ 0.00</text></g><clipPath id=\\\"clip6-27\\\"><path d=\\\"M 264 397 L 404 397 L 404 411 L 264 411 L 264 397 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 333.8422 400.8239)\\\" x=\\\"0 5.336 9.784 14.232 18.68 20.808 26.584 31.032 35.032 39.48 41.608 47.384 51.384 55.832 60.28\\\">Snap Cash Used:</text></g><clipPath id=\\\"clip6-28\\\"><path d=\\\"M 403 397 L 535 397 L 535 411 L 403 411 L 403 397 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.55 400.8239)\\\" x=\\\"0 4.448 6.576 11.024 15.472 17.696 22.144\\\">$ 87.70</text></g><clipPath id=\\\"clip6-29\\\"><path d=\\\"M 264 383 L 404 383 L 404 398 L 264 398 L 264 383 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-29)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 274.8227 387.3239)\\\" x=\\\"0 5.336 8 12.448 16.448 18.576 23.464 27.912 32.36 34.488 40.264 44.712 46.536 48.36 52.808 56.808 59.032 63.48 67.928 70.056 72.72 77.168 81.168 83.296 89.96 94.408 97.072 101.072 105.52 109.968 114.416 116.64 119.304\\\">Proc Fee Collected (by Merchant):</text></g><clipPath id=\\\"clip6-30\\\"><path d=\\\"M 403 383 L 535 383 L 535 398 L 403 398 L 403 383 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.55 387.3239)\\\" x=\\\"0 4.448 6.576 11.024 13.248 17.696\\\">$ 0.00</text></g><clipPath id=\\\"clip6-31\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip6-31)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 403.55 464.9489 L 534.3 464.9489 L 534.3 464.4489 L 403.55 464.4489 L 403.55 464.9489 z \\\"/><path clip-path=\\\"url(#clip6-31)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 403.55 451.4489 L 534.3 451.4489 L 534.3 450.9489 L 403.55 450.9489 L 403.55 451.4489 z \\\"/><path clip-path=\\\"url(#clip6-31)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 403.55 437.9489 L 534.3 437.9489 L 534.3 437.4489 L 403.55 437.4489 L 403.55 437.9489 z \\\"/><path clip-path=\\\"url(#clip6-31)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 403.55 424.4489 L 534.3 424.4489 L 534.3 423.9489 L 403.55 423.9489 L 403.55 424.4489 z \\\"/><path clip-path=\\\"url(#clip6-31)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 403.55 410.9489 L 534.3 410.9489 L 534.3 410.4489 L 403.55 410.4489 L 403.55 410.9489 z \\\"/><path clip-path=\\\"url(#clip6-31)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 403.55 397.4489 L 534.3 397.4489 L 534.3 396.9489 L 403.55 396.9489 L 403.55 397.4489 z \\\"/><path clip-path=\\\"url(#clip6-31)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 403.55 383.9489 L 534.3 383.9489 L 534.3 383.4489 L 403.55 383.4489 L 403.55 383.9489 z \\\"/><g clip-path=\\\"url(#clip6-31)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 36.5264)\\\" x=\\\"0 6.498 11.997 14.391 16.785 21.789 26.793 29.295 34.299 39.303 44.307 504 506.3906 508.7812 511.1719 513.5625 515.9531 518.3438 520.7344 523.125 525.5156\\\">UT  07/2019          </text></g><g clip-path=\\\"url(#clip6-31)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 26.3398)\\\" x=\\\"0 6.003 11.007 16.011 21.015\\\">Page </text></g><g clip-path=\\\"url(#clip6-31)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 55.8097 26.3398)\\\" x=\\\"0\\\">7</text></g><g clip-path=\\\"url(#clip6-31)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.815 26.3398)\\\" x=\\\"0 2.394 7.398 9.9\\\"> of </text></g><g clip-path=\\\"url(#clip6-31)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 73.1021 26.3398)\\\" x=\\\"0\\\">7</text></g><g clip-path=\\\"url(#clip6-31)\\\"><text stroke=\\\"none\\\" fill=\\\"#d9d9d9\\\" style=\\\"font-family:f6-0; font-size:54pt; white-space:pre\\\" transform=\\\"matrix(0.707 0.707 0.707 -0.707 135.6027 198.5094)\\\" x=\\\"0 56.016 96.048 136.08 176.112 216.144 236.16 284.184 324.216 344.232 364.248 416.232 456.264 480.24\\\">Qoppa Software</text></g><g clip-path=\\\"url(#clip6-31)\\\"><text stroke=\\\"none\\\" fill=\\\"#002ba6\\\" style=\\\"font-family:f6-0; font-size:9pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.932 772)\\\" x=\\\"0 9.336 16.008 22.68 29.352 36.024 39.36 47.364 54.036 57.372 60.708 69.372 76.044 80.04 86.712 90.048 94.044 97.38 104.712 111.384 115.38 118.716 126.72 132.72 139.392 142.056 148.728 155.4 158.736 161.4 168.072 174.744 178.08 187.416 194.088 196.752 202.752 206.088 210.084 213.42 220.092 223.428 226.764 233.436 239.436 242.772 246.108 249.444 258.108 266.772 275.436 278.772 285.444 292.116 298.788 305.46 312.132 315.468 321.468 328.14\\\">Qoppa Software - For Evaluation Only - https://www.qoppa.com</text></g></g></svg></svg></g></svg><br>\\n</body> \\n </html>\\n\"\n        }\n    },\n    \"success\": true,\n    \"status\": 200\n}"},{"id":"1dfd5b55-9b5c-4f7b-863b-a229901ccc7e","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Content-Type","value":"application/json"},{"key":"Request-Id","value":"123"}],"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/agreement"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1825083"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:24:43 GMT"},{"key":"x-amzn-RequestId","value":"40b52282-2a30-4df6-8cdf-82aa447ca6b3"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P02OxEfnPHcF9yw="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d0c4-8b923ff4b1bf11f48fb3b3b8"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"OcTSGzIIqa3esIfeYqbdx2iywfRfpBgLnbSAPl3aJcuDg_Vl84kX2A=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"agreementInformation\": {\n            \"applicationId\": \"{{applicationId}}\",\n            \"customerInformation\": {\n                \"dobDate\": \"1977-07-07\",\n                \"customerId\": \"000007777\",\n                \"customerIdType\": \"SSN4\",\n                \"mobilePhone\": \"1000000019\",\n                \"mobilePhoneCountry\": \"US\",\n                \"email\": \"test@test.com\",\n                \"firstName\": \"John\",\n                \"lastName\": \"Smith\",\n                \"billingAddress\": {\n                    \"streetAddress\": \"123mainst\",\n                    \"city\": \"Saltlakecity\",\n                    \"state\": \"UT\",\n                    \"country\": \"US\",\n                    \"postalCode\": \"84001\"\n                }\n            },\n            \"snapFinanceInformation\": {\n                \"businessName\": \"Snap RTO LLC\",\n                \"snapAddress\": {\n                    \"streetAddress\": \"Any street in town\",\n                    \"city\": \"Salt Lake City\",\n                    \"state\": \"UT\",\n                    \"country\": \"US\",\n                    \"postalCode\": \"84126\"\n                },\n                \"email\": \"test@test.com\",\n                \"phoneNumber\": \"1000000007\",\n                \"phoneNumberCode\": \"US\"\n            },\n            \"agreementDetails\": \"<!DOCTYPE html>\\n<html>\\n\\t<head>\\n\\t\\t<meta charset=\\\"utf-8\\\">\\n\\t\\t<style type=\\\"text/css\\\">\\n\\t\\t\\tbody {background-color:lightgray; text-align:center;}\\n\\t\\t\\t.qoppa_pageborder {fill:white;}\\n\\t\\t\\t#qoppa_document {padding:5px; margin:auto;}\\n\\t\\t</style>\\n\\t</head>\\n\\t<body>\\n<?xml version='1.0' encoding='UTF-8'?><svg id=\\\"qoppa_document\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" version=\\\"1.1\\\" xmlns=\\\"http://www.w3.org/2000/svg\\\" xmlns:xlink=\\\"http://www.w3.org/1999/xlink\\\"><!-- jPDFWeb v2019R1.03 - Demo Version --><style>title p { display: block; }</style><g id=\\\"qoppa_viewxform\\\" transform=\\\"matrix(1 0 0 1 0 0)\\\"><style type=\\\"text/css\\\">@font-face {font-family:f0-0;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f0-1;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f0-2;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}</style><svg id=\\\"qoppa_page_p0\\\" class=\\\"qoppa_page\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\"><rect class=\\\"qoppa_pageborder\\\" x=\\\"0.5pt\\\" y=\\\"0.5pt\\\" width=\\\"611pt\\\" height=\\\"791pt\\\" fill=\\\"none\\\" /><svg class=\\\"qoppa_pagecontents\\\" x=\\\"0pt\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" viewBox=\\\"0 0 612 792\\\" ><g class=\\\"qoppa_contentstream\\\" transform=\\\"matrix(1 0 0 -1 0 792)\\\" fill=\\\"black\\\" stroke=\\\"black\\\" stroke-width=\\\"1\\\" stroke-linecap=\\\"butt\\\" stroke-linejoin=\\\"miter\\\" stroke-miterlimit=\\\"10\\\"><clipPath id=\\\"clip0-1\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><g clip-path=\\\"url(#clip0-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:8.25pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 213.8098 759.5594)\\\" x=\\\"0 7.942 15.279 23.221 29.942 37.279 43.395 47.058 54.395 62.337 70.279 78.221 86.163 93.5 100.837 108.174 111.1 118.437 126.995 134.937 142.274 149.611 158.774 166.111 174.053\\\">RENTAL-PURCHASE AGREEMENT</text></g><clipPath id=\\\"clip0-2\\\"><path d=\\\"M 35 701 L 285 701 L 285 758 L 35 758 L 35 701 z \\\"/></clipPath><g clip-path=\\\"url(#clip0-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 745.5311)\\\" x=\\\"0 5.56 11.12 16.68 21.68 27.24 29.9 37.12 42.68 51.01 56.57 62.13 67.69 72.69 75.35 78.68 84.24 89.8 94.8 99.8 105.36 108.69 112.02 114.8 117.46 124.13 131.35 138.02 144.69 147.35 154.57 160.68 168.46 171.12 176.68 182.24\\\">Lease Company (Lessor): SNAP RTO LLC</text></g><g clip-path=\\\"url(#clip0-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 732.2127)\\\" x=\\\"0 6.67 9.45 17.23 20.01 22.67 29.34 34.9 39.9 42.56 48.12 53.68 59.24 64.8\\\">P.O. Box 26561</text></g><g clip-path=\\\"url(#clip0-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 718.8943)\\\" x=\\\"0 6.67 12.23 14.51 17.29 19.95 25.51 31.07 36.07 41.63 44.29 51.51 53.79 56.57 61.57 64.35 67.01 74.23 80.34 83 88.56 94.12 99.68 105.24\\\">Salt Lake City, UT 84126</text></g><g clip-path=\\\"url(#clip0-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 705.576)\\\" x=\\\"0 6.67 12.23 17.79 23.35 28.91 31.69 34.35 37.68 43.24 48.8 54.36 57.69 60.35 65.91 71.47 77.03 80.36 85.92 91.48 97.04\\\">Phone: (877) 557-3769</text></g><clipPath id=\\\"clip0-3\\\"><path d=\\\"M 284 701 L 574 701 L 574 758 L 284 758 L 284 701 z \\\"/></clipPath><g clip-path=\\\"url(#clip0-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.225 745.5311)\\\" x=\\\"0 5.56 11.12 16.12 21.12 26.68 32.24 35.02 37.68 42.68 48.24 53.8 59.36 62.02 64.68 71.35 79.68 81.96 84.74\\\">Lessee: John  Smith</text></g><g clip-path=\\\"url(#clip0-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 290.225 732.2127)\\\" x=\\\"0 5.56 11.12 16.68 25.01 30.57 32.85 38.41 43.41\\\">123mainst</text></g><g clip-path=\\\"url(#clip0-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.225 718.8943)\\\" x=\\\"0 6.67 12.23 14.51 17.29 19.57 25.13 30.13 35.69 40.69 42.97 45.75 50.75 53.53 56.19 63.41 69.52 72.18 77.74 83.3 88.86 94.42\\\">Saltlakecity, UT 84001</text></g><g clip-path=\\\"url(#clip0-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 290.225 705.576)\\\" x=\\\"0 2.28 7.84 13.4 15.68 21.24 26.8 32.36 37.36 47.51 53.07 58.07 66.4 71.96 74.74 79.74 85.3\\\">jbolanos@acme.com</text></g><clipPath id=\\\"clip0-4\\\"><path d=\\\"M 35 674 L 285 674 L 285 702 L 35 702 L 35 674 z \\\"/></clipPath><g clip-path=\\\"url(#clip0-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 689.7576)\\\" x=\\\"0 6.67 12.23 17.79 20.07 22.35 27.35 32.91 35.69 37.97 43.53 49.09 51.75 54.53 61.75 64.53 67.19 72.75 78.31 83.87 89.43 94.99 100.55 106.11 111.67 117.23 126.67 133.89\\\">Application ID: 200717000WUT</text></g><clipPath id=\\\"clip0-5\\\"><path d=\\\"M 284 674 L 428 674 L 428 702 L 284 702 L 284 674 z \\\"/></clipPath><g clip-path=\\\"url(#clip0-5)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.225 689.7576)\\\" x=\\\"0 5.56 11.12 16.68 21.68 27.24 29.9 37.12 42.68 45.46 51.02 53.8 56.46 62.02 67.58 70.36 75.92 81.48 84.26 89.82 95.38 100.94\\\">Lease Date: 07/17/2020</text></g><g clip-path=\\\"url(#clip0-5)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.225 678.4393)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 27.68 34.35\\\">10:22 AM</text></g><clipPath id=\\\"clip0-6\\\"><path d=\\\"M 427 674 L 574 674 L 574 702 L 427 702 L 427 674 z \\\"/></clipPath><g clip-path=\\\"url(#clip0-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 433.375 689.7576)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79 40.45 47.67 53.23 58.79 64.35 66.63 69.41 71.69 77.25 82.81 85.59 88.25 95.47 101.03\\\">Property Condition: New</text></g><clipPath id=\\\"clip0-7\\\"><path d=\\\"M 35 631 L 574 631 L 574 675 L 35 675 L 35 631 z \\\"/></clipPath><g clip-path=\\\"url(#clip0-7)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 662.6209)\\\" x=\\\"0 7.22 12.78 17.78 22.78 26.11 28.39 33.95 36.73 39.01 44.57 50.13 52.79 58.35 61.13 63.79 69.35 74.91 80.47 86.03 91.03 93.69 99.25 104.81 107.09 112.65 118.21 120.87 126.43 131.99 135.32 140.32 145.88 151.44 156.44 162 167.56 170.22 173 176.33 181.89 190.22 192.88 195.66 201.22 206.78 209.44 216.66 222.22 225 230.56 232.84 235.12 240.68 244.01 246.67 250 252.78 258.34 263.9 266.56 269.89 276.56 279.89 285.45 291.01 296.57 299.9 302.68 307.68 311.01 314.34 317 319.78 325.34 328.67 331.45 337.01 342.57 345.9 348.56 354.12 359.12 364.68 366.96 372.52 374.8 380.36 385.92 391.48 394.14 396.42 401.98 404.64 411.31 416.31 421.87 424.15 429.71 431.99 434.77 437.43 444.1\\\">Description of goods being purchased from th* D E M O *(the “Property”) further explained in Exhibit A:</text></g><g clip-path=\\\"url(#clip0-7)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 649.3025)\\\" x=\\\"0 6.67 12.23 15.56 20.56 22.84 27.84 33.4 38.4 41.06 46.62 52.18 57.74 60.4 66.51 72.07 77.63 82.63 85.41 88.07 96.4 101.96 104.74 107.52 110.85 116.41 121.41\\\">Services and Fees, Mattress</text></g><clipPath id=\\\"clip0-8\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.025 757.4998 L 285.075 757.4998 L 285.075 756.9998 L 35.025 756.9998 L 35.025 757.4998 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.025 756.9998 L 35.525 756.9998 L 35.525 701.7264 L 35.025 701.7264 L 35.025 756.9998 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 285.075 757.4998 L 573.375 757.4998 L 573.375 756.9998 L 285.075 756.9998 L 285.075 757.4998 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.875 756.9998 L 573.375 756.9998 L 573.375 701.7264 L 572.875 701.7264 L 572.875 756.9998 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 284.575 756.9998 L 285.075 756.9998 L 285.075 701.7264 L 284.575 701.7264 L 284.575 756.9998 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.025 701.7264 L 285.075 701.7264 L 285.075 701.2264 L 35.025 701.2264 L 35.025 701.7264 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.025 701.2264 L 35.525 701.2264 L 35.525 674.5897 L 35.025 674.5897 L 35.025 701.2264 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 285.075 701.7264 L 428.225 701.7264 L 428.225 701.2264 L 285.075 701.2264 L 285.075 701.7264 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 284.575 701.2264 L 285.075 701.2264 L 285.075 674.5897 L 284.575 674.5897 L 284.575 701.2264 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 428.225 701.7264 L 573.375 701.7264 L 573.375 701.2264 L 428.225 701.2264 L 428.225 701.7264 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.875 701.2264 L 573.375 701.2264 L 573.375 674.5897 L 572.875 674.5897 L 572.875 701.2264 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 427.725 701.2264 L 428.225 701.2264 L 428.225 674.5897 L 427.725 674.5897 L 427.725 701.2264 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.025 674.5897 L 573.375 674.5897 L 573.375 674.0897 L 35.025 674.0897 L 35.025 674.5897 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.025 632.1346 L 573.375 632.1346 L 573.375 631.6346 L 35.025 631.6346 L 35.025 632.1346 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.875 674.0897 L 573.375 674.0897 L 573.375 632.1346 L 572.875 632.1346 L 572.875 674.0897 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.025 674.0897 L 35.525 674.0897 L 35.525 632.1346 L 35.025 632.1346 L 35.025 674.0897 z \\\"/><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 620.1658)\\\" x=\\\"0 6.11 13.89 21.11 29.44 36.11 42.22 45 52.78\\\">FORMATION</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 93.0951 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 97.0295 620.1658)\\\" x=\\\"0 7.78\\\">OF</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 110.9162 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 114.8506 620.1658)\\\" x=\\\"0 6.67 14.45 21.67 28.34 35.01 43.34 50.01 57.23 63.34\\\">AGREEMENT.</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 180.9688 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 184.9032 620.1658)\\\" x=\\\"0 6.67\\\">By</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 196.5731 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 200.5075 620.1658)\\\" x=\\\"0 5 7.28 12.84 18.4 20.68 26.24\\\">signing</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 232.3141 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 236.2485 620.1658)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 251.8686 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 255.803 620.1658)\\\" x=\\\"0 7.22 12.78 18.34 21.12 26.68 28.96 32.29 38.96 44.52 47.85 52.85 58.41 63.97 68.97\\\">Rental-Purchase</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 330.344 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 334.2784 620.1658)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement,</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 385.9727 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 389.9071 620.1658)\\\" x=\\\"0 5.56 7.84 12.84\\\">also</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 408.3105 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 412.2448 620.1658)\\\" x=\\\"0 5 10.56 16.12 23.34\\\">known</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 441.1511 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 445.0855 620.1658)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 455.647 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 459.5814 620.1658)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 465.1429 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 469.0773 620.1658)\\\" x=\\\"0 5.56 11.12 16.68 21.68\\\">Lease</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 496.3234 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 500.2578 620.1658)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.1738 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.1082 620.1658)\\\" x=\\\"0 7.22 9.5 12.28\\\">with</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 608.8475)\\\" x=\\\"0 7.78 13.34 16.12 18.4 23.96\\\">Option</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 62.6215 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 66.5575 608.8475)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 74.8974 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 78.8334 608.8475)\\\" x=\\\"0 6.67 12.23 15.56 20.56 26.12 31.68 36.68\\\">Purchase</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 121.0795 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 125.0155 608.8475)\\\" x=\\\"0 3.33 6.11 11.67 13.95\\\">(this</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 143.9657 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 147.9017 608.8475)\\\" x=\\\"0 3.33 10 15.56 18.89 24.45 30.01 38.34 43.9 49.46 52.24 55.57 58.9\\\">“Agreement”),</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.5863 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 213.5223 608.8475)\\\" x=\\\"0 5 10.56 16.12\\\">you,</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 232.4237 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 236.3597 608.8475)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 250.2611 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 254.1971 608.8475)\\\" x=\\\"0 7.22 12.78 17.78 20.56 26.12 34.45 40.01 43.34 46.67 51.67\\\">Customer(s)</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 309.202 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 313.138 608.8475)\\\" x=\\\"0 3.33 6.66 11.66 17.22 22.78\\\">(“you”</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 339.2513 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 343.1873 608.8475)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.8719 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 363.8079 608.8475)\\\" x=\\\"0 3.33 8.33 13.89 19.45 22.78 26.11\\\">“your”)</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.2513 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 397.1873 608.8475)\\\" x=\\\"0 5 10.56 16.12 21.68 26.68\\\">choose</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 429.4334 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 433.3695 608.8475)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 441.7093 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 445.6453 608.8475)\\\" x=\\\"0 2.28 7.84 13.4 18.4\\\">lease</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 469.6102 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 473.5462 608.8475)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 487.4476 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 491.3836 608.8475)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.1766 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 533.1126 608.8475)\\\" x=\\\"0 2.78 6.11 11.67\\\">from</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.1126 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0486 608.8475)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 597.5291)\\\" x=\\\"0 5.56 11.12 16.68 21.68\\\">Lease</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.3461 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 63.7235 597.5291)\\\" x=\\\"0 7.22 12.78 21.11 26.67 32.23 37.79\\\">Company</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 106.5213 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 109.8987 597.5291)\\\" x=\\\"0 3.33 6.66 13.88 19.44 22.22\\\">(“we,”</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 135.4505 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 138.8278 597.5291)\\\" x=\\\"0 3.33 8.89 13.89 16.67\\\">“us,”</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 158.8278 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 162.2052 597.5291)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 178.8898 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 182.2672 597.5291)\\\" x=\\\"0 3.33 8.89 14.45 17.78 21.11\\\">“our”)</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 206.7105 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.0879 597.5291)\\\" x=\\\"0 5.56 10.56 15.56 21.12 24.45 30.01 32.29 37.85\\\">according</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 253.5059 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 256.8832 597.5291)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 265.2231 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 268.6005 597.5291)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 282.5018 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 285.8792 597.5291)\\\" x=\\\"0 2.78 8.34 11.67 20\\\">terms</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 310.8792 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 314.2566 597.5291)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 322.5964 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 325.9738 597.5291)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 341.5939 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 344.9713 597.5291)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement.</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 396.6656 597.5291)\\\" x=\\\"0 3.3774\\\">  </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 403.4204 597.5291)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 420.6518 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 424.0292 597.5291)\\\" x=\\\"0 2.78 8.34 11.67\\\">term</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 444.0292 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 447.4066 597.5291)\\\" x=\\\"0 3.33 10.55 16.11 18.89 24.45 26.73 29.01 34.57 37.9\\\">“Retailer”</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 488.6419 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 492.0193 597.5291)\\\" x=\\\"0 8.33 13.89 19.45 25.01 30.01 36.68 42.24 47.8 52.8 57.8 61.13 67.8 73.36\\\">meansEbaycrYou</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 586.2107)\\\" x=\\\"0 5.56 11.12 16.12 21.68 24.34 27.12 32.68 38.24 40.9 44.23 46.51 52.07 57.63 60.41 63.19 65.85 71.41 76.97 79.75 82.41 87.97 93.53 96.31 98.97 101.75 107.31 112.87 115.53 121.09 126.65 128.93 131.21 136.77 142.33 145.11 147.39 152.95 158.51 161.29 163.95 166.73 172.29 174.95 180.51 185.51 191.07 196.63 198.91 202.24 207.8 210.46 216.02 223.24 228.8 234.36 237.69 242.69 248.25 250.53 256.09 258.75 264.31 267.09 269.75 272.53 278.09 283.65 286.31 292.98 296.31 301.87 307.43 312.99 316.32 319.1 324.1 326.76 332.32 337.32 339.98 345.54 351.1 356.1 361.1 364.43 366.71 372.27 377.83 383.39 386.05 391.61 397.17 400.5 406.06 408.34 413.9\\\">have the right, but not the obligation, to acquire ownership of the Property as described herein.</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 572.8924)\\\" x=\\\"0 6.67 13.89 21.67 28.89 31.67 38.34 41.12 47.23 50.01 57.79\\\">ACQUISITION</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 98.1049 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 101.7037 572.8924)\\\" x=\\\"0 7.78\\\">OF</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 115.5905 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 119.1893 572.8924)\\\" x=\\\"0 6.67 13.89 21.67 28.34 35.01 42.23 48.34\\\">PROPERTY</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 174.1991 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 177.798 572.8924)\\\" x=\\\"0 6.67\\\">AS</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 191.1378 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 194.7367 572.8924)\\\" x=\\\"0 6.67 14.45 21.12 28.34 34.45\\\">AGENT;</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.9632 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 235.5621 572.8924)\\\" x=\\\"0 7.22 13.89\\\">NEW</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 258.8922 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 262.4911 572.8924)\\\" x=\\\"0 7.22 15 22.22 29.44 32.22 38.33 41.11 48.89 56.11\\\">CONDITION;</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 321.3778 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 324.9766 572.8924)\\\" x=\\\"0 7.22 13.89 20.56 27.78 35 37.78 44.45 50.56 53.34 61.12 68.34\\\">DESCRIPTION.</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 396.0948 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 399.6937 572.8924)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 417.4866 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 421.0855 572.8924)\\\" x=\\\"0 5.56 8.89\\\">are</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 435.5386 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 439.1375 572.8924)\\\" x=\\\"0 5.56 11.12 13.9 19.46 21.74 27.3 29.58 35.14\\\">obtaining</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 479.8455 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 483.4444 572.8924)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 497.3458 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 500.9446 572.8924)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 538.7376 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 542.3365 572.8924)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.898 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 556.4968 572.8924)\\\" x=\\\"0 5.56 11.12\\\">our</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 561.574)\\\" x=\\\"0 5.56 11.12 16.68 22.24 25.02\\\">agent.</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.9027 561.574)\\\" x=\\\"0 4.0087\\\">  </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 68.9202 561.574)\\\" x=\\\"0 9.44\\\">We</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 83.9202 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 87.9288 561.574)\\\" x=\\\"0 5.56 12.78\\\">own</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 106.2736 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 110.2823 561.574)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 124.1837 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 128.1924 561.574)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 165.9853 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 169.994 561.574)\\\" x=\\\"0 5.56 11.12 13.4 18.96 23.96\\\">unless</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 198.9589 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 202.9676 561.574)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 219.6522 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 223.6609 561.574)\\\" x=\\\"0 5.56 11.12 13.9 16.18\\\">until</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 242.1228 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 246.1315 561.574)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.2545 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 266.2632 561.574)\\\" x=\\\"0 8.33 13.89 18.89\\\">make</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.7163 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 294.7251 561.574)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.6264 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 312.6351 561.574)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57 38.35\\\">payments</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.9896 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 359.9983 561.574)\\\" x=\\\"0 5.56 11.12 16.12 21.68 26.68 31.68 37.24 40.57\\\">necessary</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 405.5745 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 409.5832 561.574)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 417.923 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 421.9318 561.574)\\\" x=\\\"0 5.56 10.56 16.12 21.68 23.96 27.29\\\">acquire</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.7882 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 458.7969 561.574)\\\" x=\\\"0 5.56 12.78 18.34 23.9 27.23 32.23 37.79 40.07 45.63\\\">ownership.</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 507.2149 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 511.2236 561.574)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.0165 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 533.0253 561.574)\\\" x=\\\"0 5.56 11.12 14.45 20.01\\\">agree</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 558.6014 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 562.6101 561.574)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 550.2557)\\\" x=\\\"0 5.56 11.12 13.9 19.46 21.74 27.3 29.96 32.74 36.07 41.63 49.96 52.62 55.4 60.96 66.52 69.18 76.4 81.96 84.74 90.3 92.58 94.86 100.42 103.75 106.41 111.97 117.53 119.81 124.81 127.47 133.03 138.59 145.81 148.47 154.03 159.59 165.15 170.71 175.71 178.37 181.15 186.71 190.04 192.7 198.26 203.82 207.15 212.15 217.71 223.27 228.83 231.11 233.89 236.55 239.33 244.89 253.22 255.5 257.78 262.78 265.44 271 274.33 276.99 282.55 288.11 293.67 298.67 304.23 309.79 315.35 317.63 323.19 325.85 331.41 336.97 340.3 345.86 351.42 356.42 361.98 366.98\\\">obtain from the Retailer only new goods for personal, family or household purposes.</text></g><clipPath id=\\\"clip0-9\\\"><path d=\\\"M 35 529 L 574 529 L 574 547 L 35 547 L 35 529 z \\\"/></clipPath><path clip-path=\\\"url(#clip0-9)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 35.3 546.1561 L 573.1 546.1561 L 573.1 529.8377 L 35.3 529.8377 L 35.3 546.1561 z \\\"/><path clip-path=\\\"url(#clip0-9)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 40.7 543.1561 L 555.4 543.1561 L 555.4 531.8377 L 40.7 531.8377 L 40.7 543.1561 z \\\"/><path clip-path=\\\"url(#clip0-9)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 96.7096 543.1561 L 499.7096 543.1561 L 499.7096 531.1561 L 96.7096 531.1561 L 96.7096 543.1561 z \\\"/><g clip-path=\\\"url(#clip0-9)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 96.7096 533.9373)\\\" x=\\\"0 2.78 11.11 17.78 25.56 32.78 38.89 45.56 52.78 58.89 61.55 68.77 75.44 82.66 88.77 95.44 101 104.33 111 118.22 125.44 132.66 139.88 146.55 153.22 159.89 162.55 169.77 172.55 179.22 186.44 192 199.78 206.45 213.67 220.89 227.56 234.23 236.89 239.82 242.48 245.26 252.48 259.7 265.26 272.48 279.7 282.48 289.7 297.48 300.14 307.36 315.14 321.81 327.92 330.58 337.25 344.47 351.69 354.35 361.02 367.69 374.36 382.69 389.36 396.58\\\">IMPORTANT RENTAL-PURCHASE DISCLOSURES – INCLUDING COST AND PAYMENT</text></g><clipPath id=\\\"clip0-10\\\"><path d=\\\"M 35 81 L 574 81 L 574 530 L 35 530 L 35 81 z \\\"/></clipPath><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 517.619)\\\" x=\\\"0 6.11 13.33 16.11\\\">THIS</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 63.4783 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 68.7771 517.619)\\\" x=\\\"0 6.11 13.33 20 27.22 33.89 40.56 47.78 53.89 56.67 64.45\\\">TRANSACTION</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 140.447 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 145.7457 517.619)\\\" x=\\\"0 2.78\\\">IS</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 155.194 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 160.4927 517.619)\\\" x=\\\"0\\\">A</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 167.1627 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 172.4614 517.619)\\\" x=\\\"0 5.56 12.23 18.9 25.57\\\">LEASE</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 204.7026 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.0014 517.619)\\\" x=\\\"0 6.67 14.45 21.67 28.34 35.01 43.34 50.01 57.23\\\">AGREEMENT</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 273.3412 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 278.64 517.619)\\\" x=\\\"0 9.44 12.22 18.33\\\">WITH</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 304.1868 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 309.4856 517.619)\\\" x=\\\"0 7.78 14.45 20.56 23.34 31.12\\\">OPTION</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 347.8206 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 353.1193 517.619)\\\" x=\\\"0 6.11\\\">TO</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 367.006 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 372.3048 517.619)\\\" x=\\\"0 6.67 13.89 21.11 28.33 35.55 42.22 48.89 55.56\\\">PURCHASE.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.6495 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 435.9483 517.619)\\\" x=\\\"0 6.67 14.45\\\">YOU</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 457.6182 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 462.9169 517.619)\\\" x=\\\"0 9.44 12.22 17.78\\\">WILL</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.2568 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 491.5555 517.619)\\\" x=\\\"0 7.22 15\\\">NOT</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.6639 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 517.9627 517.619)\\\" x=\\\"0 7.78 17.22\\\">OWN</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 542.4012 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 547.6999 517.619)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 506.3006)\\\" x=\\\"0 6.67 13.89 21.67 28.34 35.01 42.23 48.34\\\">PROPERTY</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 95.7098 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 100.6852 506.3006)\\\" x=\\\"0 7.22 14.44 20.55 23.33\\\">UNTIL</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 129.5768 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 134.5522 506.3006)\\\" x=\\\"0 6.67 14.45\\\">YOU</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 156.2221 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 161.1975 506.3006)\\\" x=\\\"0 7.22 13.89 20.56\\\">HAVE</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 188.429 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 193.4044 506.3006)\\\" x=\\\"0 6.67 13.34 16.12\\\">PAID</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 216.7442 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 221.7197 506.3006)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 241.7197 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 246.6951 506.3006)\\\" x=\\\"0 6.11 13.89 20 26.67\\\">TOTAL</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 278.9216 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 283.8971 506.3006)\\\" x=\\\"0 6.67 13.34 20.01 28.34 35.01 42.23 48.34\\\">PAYMENTS</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.9068 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 343.8822 506.3006)\\\" x=\\\"0 7.22 13.89 21.11 27.78 34.45 41.12 47.79 55.01\\\">NECESSARY</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 405.5668 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 410.5422 506.3006)\\\" x=\\\"0 6.11\\\">TO</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 424.4289 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 429.4044 506.3006)\\\" x=\\\"0 6.67 13.89 21.67 28.89 31.67 38.89\\\">ACQUIRE</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.9659 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 479.9413 506.3006)\\\" x=\\\"0 7.78 17.22 24.44 31.11 38.33 45 52.22 55\\\">OWNERSHIP</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 541.6112 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 546.5866 506.3006)\\\" x=\\\"0 6.67 13.89\\\">AND</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 494.9822)\\\" x=\\\"0 7.22 15 23.33 30 35.56\\\">COMPLY</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 82.9314 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 86.988 494.9822)\\\" x=\\\"0 9.44 12.22 18.33\\\">WITH</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 112.5348 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 116.5913 494.9822)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.5913 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 140.6478 494.9822)\\\" x=\\\"0 7.78 17.22 24.44 31.11 38.33 45 52.22 55\\\">OWNERSHIP</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 202.3178 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 206.3743 494.9822)\\\" x=\\\"0 6.11 12.78 20 28.33 35\\\">TERMS.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 244.1526 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 248.2091 494.9822)\\\" x=\\\"0 6.67 14.45\\\">YOU</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 269.879 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 273.9355 494.9822)\\\" x=\\\"0 6.67 13.89\\\">ARE</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 294.497 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 298.5535 494.9822)\\\" x=\\\"0 7.22 15\\\">NOT</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.6619 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 323.7184 494.9822)\\\" x=\\\"0 7.78 14.45 20.01 22.79 30.57 37.24 43.35 50.02\\\">OBLIGATED</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.9548 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 385.0113 494.9822)\\\" x=\\\"0 6.11\\\">TO</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 398.898 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 402.9545 494.9822)\\\" x=\\\"0 6.67 13.34\\\">PAY</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 422.9643 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 427.0208 494.9822)\\\" x=\\\"0\\\">A</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 433.6907 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 437.7472 494.9822)\\\" x=\\\"0 6.67 13.89\\\">SUM</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 459.9689 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 464.0254 494.9822)\\\" x=\\\"0 7.78 15 21.67 28.34 34.45 41.12\\\">GREATER</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.3652 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 516.4217 494.9822)\\\" x=\\\"0 6.11 13.33 20\\\">THAN</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 543.6434 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 547.6999 494.9822)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 483.6639)\\\" x=\\\"0 6.11 13.89 20 26.67 32.23 34.89 41.56 48.23 54.9 63.23 69.9 77.12 83.23 89.9 92.56 98.67 106.45 113.67 116.33 123 125.66 132.33 135.11 142.33 150.11 155.67 162.34 165 170.56 177.23 183.9 190.57 197.24 199.9 206.01 212.68 219.9 228.23\\\">TOTAL PAYMENTS FOR A SINGLE LEASE TERM.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 470.3455)\\\" x=\\\"0 7.22 12.78 17.78\\\">Cash</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 64.0447 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 67.2085 470.3455)\\\" x=\\\"0 6.67 10 12.28 17.28\\\">Price</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 90.0503 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 93.214 470.3455)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 101.5539 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 104.7176 470.3455)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 145.2889 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.4527 470.3455)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 165.6841 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 168.8478 470.3455)\\\" x=\\\"0 7.22 12.78 17.78\\\">Cash</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 192.1926 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 195.3563 470.3455)\\\" x=\\\"0 6.67 10 12.28 17.28\\\">Price</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 218.1981 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 221.3619 470.3455)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 229.7017 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 232.8655 470.3455)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 246.7668 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 249.9306 470.3455)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 287.7235 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 290.8873 470.3455)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 298.1676 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 301.3313 470.3455)\\\" x=\\\"0\\\">$</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 306.8928 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 310.0566 470.3455)\\\" x=\\\"0 5.56 8.34 13.9 19.46 25.02 27.8 33.36 38.92\\\">3,872.00,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.7607 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 354.9244 470.3455)\\\" x=\\\"0 7.22 12.78 15.06 20.06\\\">which</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.5494 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 383.7132 470.3455)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 390.9935 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 394.1572 470.3455)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 408.0586 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 411.2223 470.3455)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 444.5768 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 447.7406 470.3455)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 463.8636 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 467.0274 470.3455)\\\" x=\\\"0 7.22 12.78 18.34 20.62\\\">would</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 493.2139 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 496.3776 470.3455)\\\" x=\\\"0 5.56 11.12 16.12\\\">have</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 518.0622 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 521.226 470.3455)\\\" x=\\\"0 5.56 11.12 13.4\\\">paid</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 540.1908 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 543.3545 470.3455)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 548.4131 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 551.5769 470.3455)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 459.0271)\\\" x=\\\"0 5.56 11.12\\\">had</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 57.3846 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 60.336 459.0271)\\\" x=\\\"0 5.56 11.12 14.45 19.45 25.01 30.57 35.57 41.13\\\">purchased</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 107.0352 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 109.9866 459.0271)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 123.888 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 126.8394 459.0271)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 164.6324 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 167.5838 459.0271)\\\" x=\\\"0 2.78 6.11 11.67\\\">from</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 187.5838 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 190.5352 459.0271)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 204.4366 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 207.388 459.0271)\\\" x=\\\"0 7.22 12.78 15.56 21.12 23.4 25.68 31.24\\\">Retailer</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 241.9632 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 244.9147 459.0271)\\\" x=\\\"0 7.22 9.5 12.28\\\">with</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.7565 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 265.7079 459.0271)\\\" x=\\\"0 5 10.56 15.56\\\">cash</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 286.8309 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 289.7824 459.0271)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 300.9054 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 303.8568 459.0271)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 317.7582 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 320.7096 459.0271)\\\" x=\\\"0 5.56 11.12\\\">day</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 336.8327 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 339.7841 459.0271)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.1239 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 351.0754 459.0271)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 366.6955 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 369.6469 459.0271)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 421.3412 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 424.2927 459.0271)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 25.68 27.96 32.96\\\">inclusive</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 462.8181 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 465.7695 459.0271)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.1093 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 477.0607 459.0271)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 493.1838 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 496.1352 459.0271)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64\\\">applicable</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 541.3452 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 544.2966 459.0271)\\\" x=\\\"0 5 10.56 12.84 18.4\\\">sales</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 447.7088)\\\" x=\\\"0 5.56 8.89 11.55 17.11 22.11 27.67 30.33 33.11 38.67 43.67\\\">or use tax.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 434.3904)\\\" x=\\\"0 6.11 11.67 14.45 20.01\\\">Total</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 62.99 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 66.9187 434.3904)\\\" x=\\\"0 7.22 12.78 17.78\\\">Cost</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 87.4803 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 91.409 434.3904)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 99.7488 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 103.6775 434.3904)\\\" x=\\\"0 5.56 11.12 16.68 21.68 27.24\\\">Lease;</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 133.7019 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 137.6306 434.3904)\\\" x=\\\"0 6.67 12.23 15.56 17.84 23.4 28.96 31.24\\\">Periodic</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 173.8758 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 177.8045 434.3904)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46 44.46\\\">Payments;</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.0457 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 228.9744 434.3904)\\\" x=\\\"0 6.67 10 15.56 20.56 26.12 31.12 36.12 38.4 43.96\\\">Processing</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 278.5007 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 282.4295 434.3904)\\\" x=\\\"0 6.11 11.67 17.23\\\">Fee;</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.4392 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 306.3679 434.3904)\\\" x=\\\"0 2.78 8.34 10.62 13.4 15.68 21.24\\\">Initial</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.8884 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 333.8171 434.3904)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46\\\">Payment;</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 376.0584 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 379.9871 434.3904)\\\" x=\\\"0 7.22 12.78 17.78\\\">Cost</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 400.5486 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 404.4773 434.3904)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 412.8171 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 416.7459 434.3904)\\\" x=\\\"0 7.22 12.78 18.34 21.12 26.68 28.96\\\">Rental.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 448.489 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 452.4177 434.3904)\\\" x=\\\"0 7.22 12.78 15.06 20.62 25.62\\\">Unless</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 483.0427 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 486.9714 434.3904)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 503.0945 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 507.0232 434.3904)\\\" x=\\\"0 5.56 10.56 16.12 19.45 24.45 26.73 31.73\\\">exercise</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 544.3181 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 548.2468 434.3904)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 423.0721)\\\" x=\\\"0 5.56 11.12 16.68 20.01 27.23 32.79\\\">100-Day</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 78.4979 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.2541 423.0721)\\\" x=\\\"0 7.78 13.34 16.12 18.4 23.96\\\">Option</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 110.7756 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 113.5318 423.0721)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 122.4234 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 125.1797 423.0721)\\\" x=\\\"0 6.67 12.23 15.56 17.84\\\">Early</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 148.0215 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 150.7777 423.0721)\\\" x=\\\"0 6.67 12.23 17.23 20.56 28.34 33.9\\\">Buy-Out</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 187.4574 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 190.2136 423.0721)\\\" x=\\\"0 7.78 13.34 16.12 18.4 23.96\\\">Option</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 219.7351 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 222.4914 423.0721)\\\" x=\\\"0 5 10.56\\\">set</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 235.8312 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 238.5875 423.0721)\\\" x=\\\"0 2.78 8.34 11.67 14.45\\\">forth</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 258.5972 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 261.3535 423.0721)\\\" x=\\\"0 5.56 11.12 13.4 18.96 26.18\\\">below,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.3183 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 293.0746 423.0721)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 306.9759 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 309.7322 423.0721)\\\" x=\\\"0 3.33 9.44 15 17.78 23.34\\\">“Total</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.3523 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.1086 423.0721)\\\" x=\\\"0 7.22 12.78 17.78 20.56\\\">Cost”</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 362.0002 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 364.7564 423.0721)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 373.0962 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 375.8525 423.0721)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 389.7539 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 392.5101 423.0721)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.3031 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 433.0593 423.0721)\\\" x=\\\"0 5.56 11.12 16.68 22.24\\\">under</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 458.6355 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 461.3917 423.0721)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 477.0119 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 479.7681 423.0721)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 528.6841 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 531.4404 423.0721)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 545.5029 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 548.2591 423.0721)\\\" x=\\\"0 5.56\\\">be</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.3822 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 562.1384 423.0721)\\\" x=\\\"0\\\">$</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 411.7537)\\\" x=\\\"0 5.56 8.34 13.9 19.46 25.02 27.8 33.36 38.92\\\">3,965.32.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 82.4041 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 85.187 411.7537)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 102.4184 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 105.2013 411.7537)\\\" x=\\\"0 6.11 11.67 14.45 20.01\\\">Total</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 127.4913 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 130.2742 411.7537)\\\" x=\\\"0 7.22 12.78 17.78\\\">Cost</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 150.8357 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 153.6186 411.7537)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.8989 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 163.6817 411.7537)\\\" x=\\\"0 5.56 11.12 16.12 21.68\\\">based</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 190.9279 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 193.7107 411.7537)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 204.8338 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 207.6166 411.7537)\\\" x=\\\"0 5.56\\\">an</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 218.7397 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 221.5226 411.7537)\\\" x=\\\"0 2.78 8.34 10.62 13.4 15.68 21.24\\\">Initial</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.0431 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 247.8259 411.7537)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68\\\">Payment</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 287.2888 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 290.0717 411.7537)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 298.4115 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 301.1944 411.7537)\\\" x=\\\"0\\\">$</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 306.7559 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 309.5388 411.7537)\\\" x=\\\"0 5.56 8.34 13.9\\\">0.00</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.0017 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 331.7846 411.7537)\\\" x=\\\"0 5.56 11.12 16.12 21.68 27.24 29.52\\\">payable</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 366.8725 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 369.6554 411.7537)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.7784 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 383.5613 411.7537)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 397.4626 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 400.2455 411.7537)\\\" x=\\\"0 5.56 11.12 13.9\\\">date</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.7084 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 422.4913 411.7537)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.8311 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 433.614 411.7537)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 449.2341 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 452.017 411.7537)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 500.933 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 503.7159 411.7537)\\\" x=\\\"0 3.33 6.11 11.67\\\">(the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 520.9473 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 523.7302 411.7537)\\\" x=\\\"0 3.33 10.55 16.11 21.67 27.23 29.51 32.84 38.4\\\">“Required</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 400.4353)\\\" x=\\\"0 2.78 8.34 10.62 13.4 15.68 21.24\\\">Initial</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 64.2205 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 68.4622 400.4353)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46 42.79 46.12\\\">Payment”),</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 117.3635 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 121.6052 400.4353)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 126.6638 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 130.9055 400.4353)\\\" x=\\\"0 5.56 11.12 16.12\\\">any,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 149.8068 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 154.0485 400.4353)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 159.61 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 163.8517 400.4353)\\\" x=\\\"0 5.56 8.89 14.45 19.45 25.01 30.01 35.01 37.29 42.85\\\">processing</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 212.2697 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 216.5114 400.4353)\\\" x=\\\"0 2.78 8.34\\\">fee</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 230.4127 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 234.6544 400.4353)\\\" x=\\\"0 3.33 10.55 16.11 18.39 23.39\\\">(which</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 263.6095 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 267.8511 400.4353)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.1314 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 279.3731 400.4353)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 293.2745 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 297.5161 400.4353)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 303.0777 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 307.3193 400.4353)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 345.6738 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 349.9155 400.4353)\\\" x=\\\"0 2.78 8.34 15.56 21.12 24.45 30.01\\\">towards</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 384.9301 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 389.1718 400.4353)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.0732 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.3149 400.4353)\\\" x=\\\"0 5 10.56 15.56\\\">cost</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 425.6547 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 429.8964 400.4353)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 438.2362 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 442.4779 400.4353)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 461.931 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 466.1727 400.4353)\\\" x=\\\"0 3.33 8.89 14.45 17.23 22.79 25.07\\\">rental)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 494.576 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 498.8177 400.4353)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 507.1575 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 511.3992 400.4353)\\\" x=\\\"0\\\">$</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 516.9607 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 521.2024 400.4353)\\\" x=\\\"0 5.56 11.12 13.9 19.46\\\">10.00</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 546.2268 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 550.4685 400.4353)\\\" x=\\\"0 3.33 6.11 11.67\\\">(the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 389.117)\\\" x=\\\"0 3.33 10 13.33 18.89 23.89 29.45 34.45 39.45 41.73 47.29\\\">“Processing</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 93.5564 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 97.3241 389.117)\\\" x=\\\"0 6.11 11.67 17.23 20.56 23.89\\\">Fee”),</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 123.9941 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 127.7617 389.117)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 132.8203 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 136.588 389.117)\\\" x=\\\"0 5.56 11.12 16.12\\\">any,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 155.4894 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 159.2571 389.117)\\\" x=\\\"0 5.56\\\">26</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 170.3801 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 174.1478 389.117)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.74 24.02 29.58 35.14 40.7\\\">additional</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 217.1361 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 220.9038 389.117)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57 38.35\\\">payments</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 264.2583 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 268.026 389.117)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.3658 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 280.1335 389.117)\\\" x=\\\"0\\\">$</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 285.695 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 289.4627 389.117)\\\" x=\\\"0 5.56 8.34 13.9\\\">6.97</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.9256 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 312.6933 389.117)\\\" x=\\\"0 3.33 8.89\\\">(as</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 326.5849 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 330.3526 389.117)\\\" x=\\\"0 5.56 11.12 13.4 18.96 23.96 26.74 32.3 37.86\\\">adjusted,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 370.9971 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 374.7648 389.117)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.3263 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 384.094 389.117)\\\" x=\\\"0 3.33 10.55 16.11 21.67 27.23 29.51 35.07\\\">“Regular</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 422.5022 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 426.2699 389.117)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46 42.79\\\">Payment”)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 472.393 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 476.1607 389.117)\\\" x=\\\"0 5.56 11.12 16.12 21.68\\\">each,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 500.6235 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 504.3912 389.117)\\\" x=\\\"0 5.56 11.12 16.12 21.68 27.24 29.52\\\">payable</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 539.4791 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 543.2468 389.117)\\\" x=\\\"0 5.56 10.56 16.12 19.45\\\">every</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 377.7986)\\\" x=\\\"0 5.56 8.34 13.9 19.46\\\">other</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 63.493 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 66.4195 377.7986)\\\" x=\\\"0 7.22 12.78 18.34 23.34\\\">week.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 92.5426 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 95.4692 377.7986)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 112.7006 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 115.6272 377.7986)\\\" x=\\\"0 6.11 11.67 14.45 20.01\\\">Total</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 137.9172 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 140.8438 377.7986)\\\" x=\\\"0 7.22 12.78 17.78\\\">Cost</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 161.4053 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 164.3319 377.7986)\\\" x=\\\"0 5.56 7.84 12.84\\\">also</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 182.7352 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 185.6617 377.7986)\\\" x=\\\"0 3.33 8.89 11.67 13.95 19.51 24.51 27.29\\\">reflects</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 217.9518 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 220.8784 377.7986)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 237.0014 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 239.928 377.7986)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.74 24.02 29.58 35.14 40.7\\\">additional</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 282.9163 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 285.8428 377.7986)\\\" x=\\\"0 5 10.56 15.56\\\">cash</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 306.9659 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 309.8924 377.7986)\\\" x=\\\"0 5.56 11.12 13.4\\\">paid</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 328.8573 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 331.7839 377.7986)\\\" x=\\\"0 2.78 8.34 13.9 19.46 24.46\\\">today,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.0251 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 361.9516 377.7986)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 367.0102 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 369.9368 377.7986)\\\" x=\\\"0 5.56 11.12 16.12\\\">any.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.8382 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 391.7647 377.7986)\\\" x=\\\"0 6.67 12.23 17.79\\\">Your</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 412.8878 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 415.8143 377.7986)\\\" x=\\\"0 2.78 8.34 11.12 16.68\\\">total</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.7743 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 437.7009 377.7986)\\\" x=\\\"0 2.28 7.84 10.12 12.9 15.18 20.74\\\">initial</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 460.7233 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 463.6499 377.7986)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 502.0044 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 504.931 377.7986)\\\" x=\\\"0 5.56 11.12\\\">due</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.6155 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 524.5421 377.7986)\\\" x=\\\"0 2.78 8.34 13.9 19.46\\\">today</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.005 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 551.9316 377.7986)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.2118 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 562.1384 377.7986)\\\" x=\\\"0\\\">$</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 366.4803)\\\" x=\\\"0 5.56 8.34 13.9 19.46\\\">0.00,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 62.9412 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 66.7951 366.4803)\\\" x=\\\"0 7.22 12.78 15.06 20.06\\\">which</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 92.4201 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 96.274 366.4803)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 103.5543 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 107.4082 366.4803)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 121.3096 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 125.1635 366.4803)\\\" x=\\\"0 5 10.56\\\">sum</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 144.0551 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 147.909 366.4803)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 156.2488 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 160.1027 366.4803)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 174.0041 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 177.858 366.4803)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 29.51 35.07\\\">Required</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 218.4976 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 222.3515 366.4803)\\\" x=\\\"0 2.78 8.34 10.62 13.4 15.68 21.24\\\">Initial</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.872 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 249.7259 366.4803)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46\\\">Payment,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.9672 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 295.8211 366.4803)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 300.8797 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 304.7336 366.4803)\\\" x=\\\"0 5.56 11.12 16.12\\\">any,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 323.6349 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 327.4888 366.4803)\\\" x=\\\"0 6.67 10 15.56 20.56 26.12 31.12 36.12 38.4 43.96\\\">Processing</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 377.0152 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 380.8691 366.4803)\\\" x=\\\"0 6.11 11.67 17.23\\\">Fee,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 400.8789 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 404.7328 366.4803)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 409.7914 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 413.6453 366.4803)\\\" x=\\\"0 5.56 11.12 16.12\\\">any,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 432.5466 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 436.4005 366.4803)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 453.0851 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 456.939 366.4803)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 473.062 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 476.916 366.4803)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.74 24.02 29.58 35.14 40.7\\\">additional</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 519.9042 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 523.7581 366.4803)\\\" x=\\\"0 5 10.56 15.56\\\">cash</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 544.8812 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 548.7351 366.4803)\\\" x=\\\"0 5.56 11.12 13.4\\\">paid</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 355.1619)\\\" x=\\\"0 2.78 8.34 13.9 19.46 24.46\\\">today.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 67.9412 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 70.9372 355.1619)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 76.4938 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 79.4898 355.1619)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 95.6128 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 98.6088 355.1619)\\\" x=\\\"0 5.56\\\">do</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 109.7318 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 112.7278 355.1619)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 126.6291 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 129.6251 355.1619)\\\" x=\\\"0 3.33 8.89 17.22 19.5\\\">remit</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 151.9054 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 154.9013 355.1619)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 171.0244 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 174.0203 355.1619)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64\\\">applicable</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 219.2303 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 222.2262 355.1619)\\\" x=\\\"0 6.67 10 15.56 20.56 26.12 31.12 36.12 38.4 43.96\\\">Processing</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 271.7526 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 274.7486 355.1619)\\\" x=\\\"0 6.11 11.67\\\">Fee</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.98 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 294.976 355.1619)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 303.8676 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 306.8635 355.1619)\\\" x=\\\"0 2.78 8.34 10.62 13.4 15.68 21.24\\\">Initial</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 330.3841 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 333.38 355.1619)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68\\\">Payment</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 372.8429 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 375.8388 355.1619)\\\" x=\\\"0 5.56\\\">at</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 384.1787 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 387.1747 355.1619)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 401.076 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 404.072 355.1619)\\\" x=\\\"0 2.78 5.06 13.39\\\">time</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 423.0222 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 426.0181 355.1619)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.358 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 437.3539 355.1619)\\\" x=\\\"0 5.56 11.12 14.45 19.45 25.01 30.57 35.57 41.13\\\">purchase,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 481.2699 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 484.2659 355.1619)\\\" x=\\\"0 2.28\\\">it</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.3245 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 492.3205 355.1619)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.6007 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 502.5967 355.1619)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24 31.8\\\">included</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 539.9649 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 542.9608 355.1619)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 550.8026 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.7986 355.1619)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 343.8436)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 75.7781 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 78.9772 343.8436)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46\\\">Payments</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 123.44 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 126.6391 343.8436)\\\" x=\\\"0 5 10.56\\\">set</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 139.9789 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 143.1779 343.8436)\\\" x=\\\"0 2.78 8.34 11.67 14.45\\\">forth</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 163.1877 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 166.3868 343.8436)\\\" x=\\\"0 5.56 11.12 16.68 21.68 27.24\\\">above.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 196.4112 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 199.6102 343.8436)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 216.8416 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 220.0407 343.8436)\\\" x=\\\"0 6.11 11.67 14.45 20.01\\\">Total</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 242.3307 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 245.5297 343.8436)\\\" x=\\\"0 7.22 12.78 17.78\\\">Cost</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 266.0913 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 269.2903 343.8436)\\\" x=\\\"0 5.56 11.12 16.68\\\">does</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.9749 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 294.1739 343.8436)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.0753 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 311.2743 343.8436)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24\\\">include</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 343.0809 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 346.28 343.8436)\\\" x=\\\"0 2.28 7.84 10.62\\\">late</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 362.4616 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 365.6606 343.8436)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57 38.35\\\">payment,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 406.7935 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 409.9925 343.8436)\\\" x=\\\"0 5.56 11.12 16.68 21.68 27.24 30.02 32.8 35.08 40.08 42.36 47.92 53.48\\\">nonsufficient</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.2571 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 469.4562 343.8436)\\\" x=\\\"0 2.78 8.34 13.9 19.46 24.46\\\">funds,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 496.6974 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 499.8964 343.8436)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 27.3 30.08\\\">default,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 532.7577 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 535.9568 343.8436)\\\" x=\\\"0 5.56 7.84 12.84 17.84 23.4 28.96\\\">pickup,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 332.5252)\\\" x=\\\"0 3.33 8.89 11.17 16.73 21.73 24.51 30.07 32.85 38.41 46.74 52.3 57.86 60.64\\\">reinstatement,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 104.1228 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 108.8966 332.5252)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 117.7882 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 122.5619 332.5252)\\\" x=\\\"0 5.56 8.34 13.9 19.46\\\">other</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 145.3549 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 150.1286 332.5252)\\\" x=\\\"0 2.78 8.34 13.9 18.9\\\">fees,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 171.8083 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 176.5821 332.5252)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 181.6407 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 186.4144 332.5252)\\\" x=\\\"0 5.56 11.12 16.12\\\">any,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 205.3158 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.0895 332.5252)\\\" x=\\\"0 5.56 7.84 12.84 17.84 20.12 25.68 30.68 36.24\\\">disclosed</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 251.8962 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 256.6699 332.5252)\\\" x=\\\"0 5.56 11.12 13.4 18.96 26.18\\\">below.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 285.6347 332.5252)\\\" x=\\\"0 4.7737\\\">  </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 295.1822 332.5252)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.4137 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 317.1874 332.5252)\\\" x=\\\"0 5 10.56 15.56\\\">cost</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.5273 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 340.301 332.5252)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.6409 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 353.4146 332.5252)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 372.8677 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 377.6415 332.5252)\\\" x=\\\"0 3.33 8.89 14.45 17.23 22.79\\\">rental</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.7147 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.4884 332.5252)\\\" x=\\\"0 3.33 6.66 13.88 19.44 24.44\\\">(“Cost</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.7101 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 439.4839 332.5252)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.8237 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 452.5975 332.5252)\\\" x=\\\"0 7.22 12.78 18.34 21.12 26.68 28.96 32.29\\\">Rental”)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 488.2225 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 492.9962 332.5252)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 500.2765 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 505.0502 332.5252)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 518.9516 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 523.7253 332.5252)\\\" x=\\\"0 5.56 7.84 10.62 13.4 18.96 22.29 27.85 33.41 38.41\\\">difference</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 321.2068)\\\" x=\\\"0 5.56 11.12 13.9 21.12 26.68 32.24 37.8 40.46 43.24 48.8 54.36 57.02 63.13 68.69 71.47 77.03 79.31 81.97 89.19 94.75 99.75 102.53 105.19 110.75 116.31 121.87 124.53 131.75 137.31 142.31 147.87 150.53 157.2 160.53 162.81 167.81 173.37 176.15 178.81 184.37 189.93 195.49 198.15 205.37 207.65 209.93 212.21 214.87 220.43 225.99 228.65 234.21 236.87 242.43 247.99 250.77 256.33 261.89\\\">between the Total Cost and Cash Price, and will be $ 93.32.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 309.8885)\\\" x=\\\"0 6.67 11.67 17.23 22.79 27.79 30.57 36.13\\\">Expected</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 82.3943 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 86.3823 309.8885)\\\" x=\\\"0 7.22 12.78 15.06 17.34 22.34 27.9 31.23\\\">Delivery</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 122.6177 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 126.6057 309.8885)\\\" x=\\\"0 7.22 12.78 15.56 21.12\\\">Date;</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 150.507 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 154.495 309.8885)\\\" x=\\\"0 6.11 8.39 11.72 16.72\\\">First</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 173.9921 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 177.9801 309.8885)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 213.0582 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 217.0462 309.8885)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46\\\">Payment.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.2874 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 263.2754 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 267.2634 309.8885)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 284.4948 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 288.4828 309.8885)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 29.51 35.07\\\">Required</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.1225 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 333.1105 309.8885)\\\" x=\\\"0 2.78 8.34 10.62 13.4 15.68 21.24\\\">Initial</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 356.631 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 360.619 309.8885)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46\\\">Payment,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.8602 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 406.8482 309.8885)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 411.9068 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 415.8947 309.8885)\\\" x=\\\"0 5.56 11.12 16.12\\\">any,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.7961 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 438.7841 309.8885)\\\" x=\\\"0 5 10.56 15.56 21.12 24.45\\\">covers</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.2372 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 472.2252 309.8885)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.1266 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 490.1146 309.8885)\\\" x=\\\"0 3.33 8.89 14.45 17.23 22.79\\\">rental</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 515.1878 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 519.1758 309.8885)\\\" x=\\\"0 5.56 11.12 14.45 16.73 22.29\\\">period</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 547.0323 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 551.0202 309.8885)\\\" x=\\\"0 2.78 8.34 13.9\\\">that</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 298.5701)\\\" x=\\\"0 5.56 11.12 16.68 18.96 24.52\\\">begins</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 70.2264 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 73.3394 298.5701)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 84.4625 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 87.5755 298.5701)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 101.4769 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 104.59 298.5701)\\\" x=\\\"0 5.56 11.12 13.9\\\">date</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 124.0529 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 127.166 298.5701)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 143.289 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 146.4021 298.5701)\\\" x=\\\"0 3.33 8.89 13.89 19.45 21.73 26.73\\\">receive</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 178.697 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 181.8101 298.5701)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 195.7114 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 198.8245 298.5701)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 236.6175 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 239.7305 298.5701)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.4151 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 259.5282 298.5701)\\\" x=\\\"0 5.56 11.12 16.68\\\">ends</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.2128 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 284.3258 298.5701)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 295.4489 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 298.562 298.5701)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 318.0151 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 321.1281 298.5701)\\\" x=\\\"0 2.78 5.06 8.39 13.39\\\">first</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 337.2951 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 340.4082 298.5701)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.4863 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 378.5994 298.5701)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68\\\">Payment</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 418.0623 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 421.1754 298.5701)\\\" x=\\\"0 5.56 11.12 13.9 19.46\\\">date.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 443.4166 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 446.5297 298.5701)\\\" x=\\\"0 6.67 12.23 17.79\\\">Your</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.6527 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 470.7658 298.5701)\\\" x=\\\"0 2.78 5.06 8.39 13.39\\\">first</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.9328 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 490.0459 298.5701)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 525.124 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 528.237 298.5701)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68\\\">Payment</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 287.2518)\\\" x=\\\"0 5.56 11.12 13.9\\\">date</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.1629 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 63.9277 287.2518)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 77.9902 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.7549 287.2518)\\\" x=\\\"0 5.56\\\">be</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 92.878 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 96.6428 287.2518)\\\" x=\\\"0 5.56\\\">at</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 104.9826 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 108.7474 287.2518)\\\" x=\\\"0 2.28 7.84 13.4 18.4\\\">least</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 129.929 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 133.6938 287.2518)\\\" x=\\\"0 5 10.56 15.56 21.12\\\">seven</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.3784 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 164.1432 287.2518)\\\" x=\\\"0 5.56 11.12 16.12\\\">days</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 185.2662 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 189.031 287.2518)\\\" x=\\\"0 5.56 8.34 11.12 16.68\\\">after</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.0407 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 212.8055 287.2518)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 226.7069 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 230.4717 287.2518)\\\" x=\\\"0 2.28 7.84 10.62 16.18\\\">later</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 249.9834 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 253.7482 287.2518)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.088 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 265.8528 287.2518)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 27.8 33.36 38.92 44.48\\\">07/24/2020</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 315.9016 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 319.6664 287.2518)\\\" x=\\\"0 3.33 5.61\\\">(i)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 328.6068 287.2518)\\\" x=\\\"0 3.7648\\\">  </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 336.1364 287.2518)\\\" x=\\\"0 3.33 6.11 11.67\\\">(the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 353.3678 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 357.1326 287.2518)\\\" x=\\\"0 3.33 10 15 20.56 26.12 31.12 33.9 39.46\\\">“Expected</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.157 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 405.9218 287.2518)\\\" x=\\\"0 7.22 12.78 15.06 17.34 22.34 27.9 31.23\\\">Delivery</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 442.1572 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 445.9219 287.2518)\\\" x=\\\"0 7.22 12.78 15.56 21.12 24.45 27.78\\\">Date”),</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 476.4835 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 480.2482 287.2518)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 496.9328 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 500.6976 287.2518)\\\" x=\\\"0 3.33 5.61 7.89\\\">(ii)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 511.9183 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 515.6831 287.2518)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.5844 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 533.3492 287.2518)\\\" x=\\\"0 5.56 11.12 13.9\\\">date</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.8121 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 556.5769 287.2518)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 275.9334)\\\" x=\\\"0 7.22 12.78 15.06 20.06 25.62 28.28 31.06 36.62 42.18 44.84 51.51 54.84 60.4 65.96 71.52 74.85 77.63 82.63 85.29 87.57 92.57 95.23 100.79 104.12 109.68 114.68 116.96 122.52 128.08 133.64 136.3 141.86 145.19 147.85 153.41 158.97 161.25 163.53 168.53 174.09 177.42 182.98 188.54 191.2 193.98 199.54 202.2 207.2 212.76 218.32\\\">which the Property is provided or delivered to you.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 264.615)\\\" x=\\\"0 5.56 11.12 16.68 20.01 27.23 32.79\\\">100-Day</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 78.4979 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.9917 264.615)\\\" x=\\\"0 7.78 13.34 16.12 18.4 23.96 29.52\\\">Option.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 114.2915 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 117.7853 264.615)\\\" x=\\\"0 6.67\\\">At</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 127.2335 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 130.7273 264.615)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.8504 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 150.3442 264.615)\\\" x=\\\"0 2.78 5.06 13.39\\\">time</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 169.2944 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 172.7882 264.615)\\\" x=\\\"0 5.56 11.12 14.45 16.73 22.29\\\">during</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 200.6446 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 204.1385 264.615)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 218.0398 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 221.5336 264.615)\\\" x=\\\"0 2.78 5.06 8.39 13.39\\\">first</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 237.7006 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 241.1944 264.615)\\\" x=\\\"0 5.56 11.12\\\">100</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.879 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 261.3728 264.615)\\\" x=\\\"0 2.78 6.11 11.67\\\">from</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.3728 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 284.8666 264.615)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 298.768 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 302.2618 264.615)\\\" x=\\\"0 6.67 11.67 17.23 22.79 27.79 30.57 36.13\\\">Expected</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 343.9561 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 347.45 264.615)\\\" x=\\\"0 7.22 12.78 15.06 17.34 22.34 27.9 31.23\\\">Delivery</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.6853 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 387.1791 264.615)\\\" x=\\\"0 7.22 12.78 15.56 21.12\\\">Date,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 411.0805 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 414.5743 264.615)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 428.4757 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 431.9695 264.615)\\\" x=\\\"0 3.33 8.89 14.45 20.01 23.34 30.56 36.12\\\">“100-Day</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 473.0974 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 476.5912 264.615)\\\" x=\\\"0 7.78 13.34 16.12 18.4 23.96 29.52\\\">Option”</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.4428 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 512.9366 264.615)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.8 31.8\\\">applies,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 547.5215 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 551.0154 264.615)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 253.2967)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 56.823 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 59.7295 253.2967)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 78.6211 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.5276 253.2967)\\\" x=\\\"0 5.56 10.56 16.12 21.68 23.96 27.29\\\">acquire</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 114.384 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 117.2905 253.2967)\\\" x=\\\"0 5.56 12.78 18.34 23.9 27.23 32.23 37.79 40.07\\\">ownership</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 162.9301 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 165.8366 253.2967)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 174.1764 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 177.0829 253.2967)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 190.9843 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 193.8907 253.2967)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.6837 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 234.5901 253.2967)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.1517 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 248.0581 253.2967)\\\" x=\\\"0 5.56 11.12 16.12 18.4 23.96\\\">paying</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 277.5845 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 280.4909 253.2967)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.0525 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 293.9589 253.2967)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 307.8603 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 310.7667 253.2967)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 344.1212 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 347.0277 253.2967)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 357.5892 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 360.4957 253.2967)\\\" x=\\\"0 7.22 12.78 15.06 20.06\\\">which</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 386.1207 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 389.0271 253.2967)\\\" x=\\\"0 3.33 5.61\\\">(i)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 397.9676 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 400.874 253.2967)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 414.7754 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 417.6819 253.2967)\\\" x=\\\"0 5 10.56\\\">sum</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 436.5735 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 439.4799 253.2967)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.8198 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 450.7262 253.2967)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 464.6276 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 467.5341 253.2967)\\\" x=\\\"0 5.56 11.12\\\">100</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.2186 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 487.1251 253.2967)\\\" x=\\\"0\\\">–</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 490.0548 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 492.9612 253.2967)\\\" x=\\\"0 7.22 12.78\\\">Day</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 510.7444 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 513.6509 253.2967)\\\" x=\\\"0 6.67 15 20.56 26.12 31.68 34.46\\\">Amount,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 550.8921 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.7986 253.2967)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 241.9783)\\\" x=\\\"0 6.67 10 15.56 20.56 26.12 31.12 36.12 38.4 43.96\\\">Processing</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 90.2264 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 92.924 241.9783)\\\" x=\\\"0 6.11 11.67 17.23\\\">Fee,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 112.9338 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 115.6314 241.9783)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 120.69 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 123.3877 241.9783)\\\" x=\\\"0 5.56 11.12 16.12\\\">any,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 142.289 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 144.9867 241.9783)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64\\\">applicable</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 190.1967 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 192.8943 241.9783)\\\" x=\\\"0 5 10.56 12.84 18.4\\\">sales</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 216.2976 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 218.9953 241.9783)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 227.8869 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 230.5845 241.9783)\\\" x=\\\"0 5.56 10.56\\\">use</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 246.7076 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 249.4052 241.9783)\\\" x=\\\"0 2.78 8.34 13.34 18.9 23.9\\\">taxes,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.0849 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 278.7826 241.9783)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 295.4672 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 298.1648 241.9783)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 314.2879 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 316.9855 241.9783)\\\" x=\\\"0 5.56 11.12 16.68 22.24 24.52\\\">unpaid</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 347.0734 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 349.771 241.9783)\\\" x=\\\"0 2.78 8.34 13.9\\\">fees</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 368.6724 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 371.3701 241.9783)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 384.1533 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 386.8509 241.9783)\\\" x=\\\"0 5.56 11.12 16.12\\\">have</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 408.5355 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 411.2331 241.9783)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01 30.57 36.13\\\">charged,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 450.1492 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 452.8468 241.9783)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.68 32.24\\\">exceeds</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 490.0929 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 492.7906 241.9783)\\\" x=\\\"0 3.33 5.61 7.89\\\">(ii)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 504.0113 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 506.7089 241.9783)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 520.6103 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 523.3079 241.9783)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 556.6624 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 559.3601 241.9783)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 230.66)\\\" x=\\\"0 5.56 11.12 16.12 18.78 21.56 27.12 29.4 32.18 34.46 40.02 42.3 44.96 51.63 57.19 62.19 70.52 76.08 81.64 84.42 87.08 92.64 98.2 103.76 106.42 113.64 119.2 124.76 130.32 132.6 138.16 141.49 144.15 150.82 156.38 161.38 169.71 175.27 180.83 183.61 188.61 191.27 196.27 201.83 207.39 210.05 215.61 221.17 226.17 231.73 234.39 242.72 248.28 253.84 259.4 262.18 264.84 270.95 276.51 282.07 284.73 290.29 295.85 301.41 304.07 311.29 316.85 321.85 324.51 331.18 339.51 345.07 350.63 356.19 358.97 361.63 363.91 368.91 371.57 377.13 379.79 385.35 390.91 393.69 399.25 404.81\\\">any Initial Payment and Regular Payments you have made. The 100 Day Amount is $ 97.70.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 219.3416)\\\" x=\\\"0 6.67 12.23 15.56 17.84\\\">Early</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 63.5418 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 66.4605 219.3416)\\\" x=\\\"0 6.67 12.23 17.23 20.56 28.34 33.9\\\">Buy-Out</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 103.1401 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 106.0588 219.3416)\\\" x=\\\"0 7.78 13.34 16.12 18.4 23.96 29.52\\\">Option.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 138.3586 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 141.2772 219.3416)\\\" x=\\\"0 6.67 9.45 12.23 17.79\\\">After</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 162.3954 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 165.3141 219.3416)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 184.7672 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 187.6858 219.3416)\\\" x=\\\"0 5.56 11.12 16.68 20.01 27.23 32.79\\\">100-Day</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.4837 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 228.4024 219.3416)\\\" x=\\\"0 7.22 12.78 17.78\\\">Cash</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 251.7471 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 254.6657 219.3416)\\\" x=\\\"0 6.67 12.23 17.23 22.79 25.57\\\">Payoff</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 283.0153 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 285.934 219.3416)\\\" x=\\\"0 7.78 13.34 16.12 18.4 23.96\\\">Option</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 315.4555 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 318.3741 219.3416)\\\" x=\\\"0 5.56 11.12\\\">has</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 334.4972 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 337.4158 219.3416)\\\" x=\\\"0 5.56 10.56 16.12 18.4 21.73 27.29 32.85\\\">expired,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 373.0506 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 375.9693 219.3416)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 389.8706 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 392.7893 219.3416)\\\" x=\\\"0 3.33 10 15.56 18.89 21.17\\\">“Early</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 418.9611 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 421.8798 219.3416)\\\" x=\\\"0 6.67 12.23 17.23 20.56 28.34 33.9\\\">Buy-Out</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 458.5595 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 461.4781 219.3416)\\\" x=\\\"0 7.78 13.34 16.12 18.4 23.96 29.52\\\">Option”</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 494.3297 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 497.2484 219.3416)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.8\\\">applies</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.055 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 531.9737 219.3416)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 548.6582 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 551.5769 219.3416)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 208.0232)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 59.5916 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 63.2372 208.0232)\\\" x=\\\"0 5.56 11.12 14.45 19.45 25.01 30.57 35.57\\\">purchase</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 104.3748 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 108.0204 208.0232)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 121.9218 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 125.5673 208.0232)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 163.3603 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 167.0058 208.0232)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 177.5674 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 181.2129 208.0232)\\\" x=\\\"0 5.56 11.12 16.12 18.4 23.96\\\">paying</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 210.7393 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 214.3849 208.0232)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 224.9464 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 228.5919 208.0232)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 242.4933 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 246.1389 208.0232)\\\" x=\\\"0 5 10.56\\\">sum</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 265.0305 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 268.676 208.0232)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 277.0159 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 280.6614 208.0232)\\\" x=\\\"0 3.33 8.89\\\">(1)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 292.8831 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 296.5286 208.0232)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.6517 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 316.2972 208.0232)\\\" x=\\\"0 5.56 11.12 16.12\\\">past</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.1986 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.8442 208.0232)\\\" x=\\\"0 5.56 11.12\\\">due</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.5287 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 359.1743 208.0232)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 394.2524 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 397.898 208.0232)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46 44.46\\\">Payments,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 445.1392 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 448.7847 208.0232)\\\" x=\\\"0 5.56 11.12 16.68 22.24 24.52\\\">unpaid</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 478.8726 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 482.5182 208.0232)\\\" x=\\\"0 2.78 8.34 13.9\\\">fees</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.4196 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 505.0651 208.0232)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.7497 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 525.3952 208.0232)\\\" x=\\\"0 5 10.56 12.84 18.4 23.4 26.18 31.74 36.74\\\">sales/use</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 196.7049)\\\" x=\\\"0 2.78 8.34 13.34 18.9 23.9\\\">taxes,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 67.3797 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 70.748 196.7049)\\\" x=\\\"0 3.33 8.89\\\">(2)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 82.9697 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 86.338 196.7049)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02\\\">70.00%</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 120.254 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 123.6223 196.7049)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 131.9621 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 135.3305 196.7049)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 149.2318 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 152.6001 196.7049)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 185.9546 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 189.3229 196.7049)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 199.8845 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 203.2528 196.7049)\\\" x=\\\"0 7.22 12.78 15.06 20.06\\\">which</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 228.8778 196.7049)\\\" x=\\\"0 3.3683\\\">  </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 235.6144 196.7049)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 249.5157 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 252.8841 196.7049)\\\" x=\\\"0 6.11 11.67 14.45 20.01\\\">Total</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.1741 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 278.5424 196.7049)\\\" x=\\\"0 7.22 12.78 17.78\\\">Cost</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.1039 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 302.4722 196.7049)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.68 32.24\\\">exceeds</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 339.7183 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 343.0866 196.7049)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 356.988 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 360.3563 196.7049)\\\" x=\\\"0 2.78 8.34 10.62 13.4 15.68 21.24\\\">Initial</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.8768 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 387.2451 196.7049)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46\\\">Payment,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 429.4863 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 432.8546 196.7049)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 437.9132 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 441.2815 196.7049)\\\" x=\\\"0 5.56 11.12 16.12\\\">any,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 460.1829 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 463.5512 196.7049)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 480.2358 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 483.6041 196.7049)\\\" x=\\\"0 5 10 15.56 21.12 26.68 32.24 34.52 40.08\\\">scheduled</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.2535 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 532.6218 196.7049)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 185.3865)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46 44.46 47.12 49.9 55.46 58.79 64.35 69.91 75.47 81.03 83.69 86.47 92.03 97.59 100.25 105.81 111.37 114.15 119.71 122.37 127.37 132.93 138.49 141.15 146.71 151.71 157.27 160.6 165.6 167.88 172.88 178.44 181.1 186.1 191.66 197.22 200.55 203.21 208.77 214.33 217.11 219.39 224.95 230.51 233.17 238.73 244.29 249.85 252.51 255.84 261.4 264.73 267.39 272.95 278.51 284.07 286.35 288.63 293.63 299.19 304.75 307.03 312.59 315.25 320.25 325.81 328.09 333.65 338.65 341.31 346.87 350.2 352.86 358.42 363.42 368.98 371.64 374.42 379.98 384.98 390.54 395.54\\\">Payments through the date you exercise your option and (3) applicable sales or use taxes.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 174.0682)\\\" x=\\\"0 7.22 12.78 15.44 22.11 27.67 32.67 38.23 41.56 43.84 46.62 51.62 54.28 61.5 67.06 72.62 78.18 83.18 85.46 88.24 90.9 98.12 103.68 109.24 114.8 117.08 120.41 125.97 131.53 134.31 136.97 144.19 149.75 152.41 157.41 162.97 167.97 173.53 176.86 179.14 181.92 186.92 189.58 195.14 200.7 206.26 211.82 216.82 219.1 221.88 224.54 226.82 231.82 234.48 237.81 243.37 248.93 254.49 256.77 260.1 265.66 271.22 273.88 279.44 285 290.56 296.12 299.45 302.11 304.89 310.45 312.73 317.73 320.39 327.06 332.62 335.95 341.51 347.07 355.4 360.96 366.52 369.3\\\">No Security Deposit Required. No security deposit is required under this Agreement.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 162.7498)\\\" x=\\\"0 5.56 11.12 16.68 21.68\\\">Lease</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 67.9461 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 72.4996 162.7498)\\\" x=\\\"0 6.11 11.67 15 23.33\\\">Term,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 98.608 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 103.1616 162.7498)\\\" x=\\\"0 6.67 12.23 17.79 22.79 28.35 33.91 39.47 45.03 50.59\\\">Subsequent</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 156.5405 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 161.094 162.7498)\\\" x=\\\"0 6.11 11.67 15 23.33 28.33\\\">Terms;</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 192.2024 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 196.7559 162.7498)\\\" x=\\\"0 7.22 12.78 18.34 23.9 31.12 36.68 38.96\\\">Renewal.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.504 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 243.0575 162.7498)\\\" x=\\\"0 6.67 12.23 17.79\\\">Your</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 264.1806 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 268.7341 162.7498)\\\" x=\\\"0 2.28 7.84 10.12 12.9 15.18 20.74\\\">initial</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.7566 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 296.3101 162.7498)\\\" x=\\\"0 2.28 7.84 13.4 18.4\\\">lease</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 320.2749 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 324.8285 162.7498)\\\" x=\\\"0 2.78 8.34 11.67\\\">term</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 344.8285 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 349.382 162.7498)\\\" x=\\\"0 5.56 10.56 16.12 18.4 21.73 27.29\\\">expires</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 381.6769 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 386.2305 162.7498)\\\" x=\\\"0 5.56\\\">60</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 397.3535 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 401.907 162.7498)\\\" x=\\\"0 5.56 11.12 16.12\\\">days</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 423.0301 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 427.5836 162.7498)\\\" x=\\\"0 2.78 6.11 11.67\\\">from</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.5836 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 452.1372 162.7498)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.0385 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 470.5921 162.7498)\\\" x=\\\"0 2.28 7.84 10.62 16.18\\\">later</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 490.1038 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 494.6573 162.7498)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 502.9972 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 507.5507 162.7498)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.4521 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 526.0056 162.7498)\\\" x=\\\"0 6.67 11.67 17.23 22.79 27.79 30.57 36.13\\\">Expected</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 151.4315)\\\" x=\\\"0 7.22 12.78 15.06 17.34 22.34 27.9 31.23\\\">Delivery</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 76.9353 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.1545 151.4315)\\\" x=\\\"0 7.22 12.78 15.56\\\">Date</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 102.2775 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 106.4967 151.4315)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 115.3883 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 119.6074 151.4315)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 133.5088 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 137.7279 151.4315)\\\" x=\\\"0 5.56 11.12 13.9\\\">date</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 157.1908 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 161.4099 151.4315)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 172.533 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 176.7521 151.4315)\\\" x=\\\"0 7.22 12.78 15.06 20.06\\\">which</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 202.3771 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 206.5963 151.4315)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 220.4976 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 224.7168 151.4315)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.5097 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 266.7289 151.4315)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 274.0091 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 278.2283 151.4315)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29 32.85\\\">provided</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 316.6463 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 320.8654 151.4315)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.757 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 333.9761 151.4315)\\\" x=\\\"0 5.56 11.12 13.4 15.68 20.68 26.24 29.57 35.13\\\">delivered</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 374.6744 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 378.8935 151.4315)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 387.2334 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 391.4525 151.4315)\\\" x=\\\"0 5 10.56 16.12\\\">you.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 410.3539 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 414.573 151.4315)\\\" x=\\\"0 7.22 12.78 15.56 17.84\\\">Until</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.6951 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 438.9142 151.4315)\\\" x=\\\"0 3.33 5.61\\\">(i)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.8546 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 452.0738 151.4315)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.1968 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 472.416 151.4315)\\\" x=\\\"0 5.56 11.12 13.9 19.46 21.74\\\">obtain</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.7206 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 503.9398 151.4315)\\\" x=\\\"0 5.56 12.78 18.34 23.9 27.23 32.23 37.79 40.07\\\">ownership</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.5794 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.7986 151.4315)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 140.1131)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 78.493 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 82.2535 140.1131)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 92.815 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 96.5756 140.1131)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29 32.85\\\">provided</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 134.9936 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 138.7541 140.1131)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.5959 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 150.3565 140.1131)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 165.9766 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 169.7371 140.1131)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 221.4315 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 225.192 140.1131)\\\" x=\\\"0 3.33 5.61 7.89\\\">(ii)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 236.4127 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 240.1733 140.1131)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.2963 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 260.0569 140.1131)\\\" x=\\\"0 2.78 8.34 11.67 20 22.28 27.84 33.4 36.18\\\">terminate</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 301.8001 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 305.5606 140.1131)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 321.1807 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 324.9413 140.1131)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 373.8573 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 377.6179 140.1131)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.1794 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 391.9399 140.1131)\\\" x=\\\"0 5.56 11.12 14.45 22.78 25.06 27.84 30.62 36.18\\\">permitted</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 433.6831 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 437.4437 140.1131)\\\" x=\\\"0 5.56 11.12 14.45 20.01 25.57 31.13 36.69 42.25\\\">hereunder</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 483.0345 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 486.795 140.1131)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 503.4796 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 507.2402 140.1131)\\\" x=\\\"0 5 10.56 13.89 17.22 22.78 28.34 33.9 39.46\\\">surrender</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 550.038 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.7986 140.1131)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 128.7947)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 78.493 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.5631 128.7947)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 89.4049 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 92.4749 128.7947)\\\" x=\\\"0 2.28 5.06\\\">its</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 102.5335 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 105.6036 128.7947)\\\" x=\\\"0 5.56 8.89 11.17 16.73 19.01 24.57 30.13\\\">original</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 138.0206 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 141.0907 128.7947)\\\" x=\\\"0 5 10.56 16.12 21.68 23.96 26.74 29.02 34.58 40.14\\\">condition,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 184.0155 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 187.0856 128.7947)\\\" x=\\\"0 2.28 7.84 12.84\\\">less</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 204.9274 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 207.9975 128.7947)\\\" x=\\\"0 3.33 8.89 14.45 19.45 25.01 30.57 36.13 41.69 43.97\\\">reasonable</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.5385 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 260.6086 128.7947)\\\" x=\\\"0 7.22 12.78 18.34\\\">wear</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 282.2834 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 285.3535 128.7947)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.038 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 305.1081 128.7947)\\\" x=\\\"0 2.78 8.34 13.9 17.23\\\">tear,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 325.1179 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 328.188 128.7947)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.7495 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 341.8196 128.7947)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 350.1594 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 353.2295 128.7947)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 367.1309 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 370.201 128.7947)\\\" x=\\\"0 5.56 11.12\\\">end</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 386.8855 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 389.9556 128.7947)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 398.2955 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 401.3656 128.7947)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 406.9271 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 409.9972 128.7947)\\\" x=\\\"0 2.28 7.84 13.4 18.4\\\">lease</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 433.962 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 437.0321 128.7947)\\\" x=\\\"0 2.78 8.34 11.67 20\\\">term,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 459.8104 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 462.8805 128.7947)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 471.7721 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 474.8422 128.7947)\\\" x=\\\"0 3.33 5.61 7.89 10.17\\\">(iii)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 488.3432 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 491.4133 128.7947)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 504.1965 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 507.2666 128.7947)\\\" x=\\\"0 2.78 8.34 11.67 20 22.28 27.84 33.4 36.18\\\">terminate</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.0097 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 552.0798 128.7947)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 117.4764)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 89.616 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 93.7725 117.4764)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 101.6143 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 105.7709 117.4764)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 111.3324 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 115.4889 117.4764)\\\" x=\\\"0 8.33 13.89 19.45 25.01 30.57\\\">manner</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 149.3952 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 153.5517 117.4764)\\\" x=\\\"0 5.56 11.12 14.45 22.78 25.06 27.84 30.62 36.18\\\">permitted</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 195.2948 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 199.4514 117.4764)\\\" x=\\\"0 5.56 11.12 14.45 20.01 25.57 31.13 36.69 42.25 45.58\\\">hereunder,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.8205 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 251.977 117.4764)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 267.5971 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 271.7537 117.4764)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 320.6697 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 324.8262 117.4764)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.8887 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 343.0452 117.4764)\\\" x=\\\"0 5.56 11.12 13.9 19.46 27.79 33.35 36.13 38.41 43.41 48.97 51.25 53.53\\\">automatically</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 401.5804 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 405.7369 117.4764)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 422.4215 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 426.578 117.4764)\\\" x=\\\"0 3.33 8.89 14.45 20.01 25.57 28.35 33.91 39.47 41.75\\\">repeatedly</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 473.3358 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 477.4923 117.4764)\\\" x=\\\"0 3.33 8.89 14.45 20.01\\\">renew</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 504.7287 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 508.8852 117.4764)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 520.5551 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 524.7116 117.4764)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.74 24.02 29.58 35.14 40.7\\\">additional</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 106.158)\\\" x=\\\"0 2.28 7.84 13.4 18.4 23.96 26.62 29.4 34.96 38.29 46.62 51.62 54.4 57.06 62.62 68.18 73.18 78.74 81.4 86.96 92.52 95.18 100.74 106.3 111.3 116.3 118.96 121.24 126.8 129.46 131.74 137.3 142.86 148.42 151.2 156.76\\\">lease terms, each 60 days in length.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 94.8397)\\\" x=\\\"0 8.33 13.89 16.17 21.73 24.51 30.07 35.63 41.19 46.75 51.75\\\">Maintenance</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 98.0193 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 101.2487 94.8397)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 109.5885 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 112.8178 94.8397)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 126.7192 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 129.9485 94.8397)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 170.5198 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 173.7491 94.8397)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 191.5421 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 194.7714 94.8397)\\\" x=\\\"0 5.56 8.89\\\">are</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.2246 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 212.4539 94.8397)\\\" x=\\\"0 3.33 8.89 13.89 19.45 25.01 30.57 35.57 37.85 43.41 45.69\\\">responsible</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 263.7136 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 266.943 94.8397)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 278.6129 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 281.8422 94.8397)\\\" x=\\\"0 8.33 13.89 16.17 21.73 24.51 30.07 32.35 37.91 40.19 45.75\\\">maintaining</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 333.1606 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 336.3899 94.8397)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 345.2815 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 348.5108 94.8397)\\\" x=\\\"0 5 10.56 13.89 18.89 21.17 26.17 28.45 34.01\\\">servicing</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.086 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 391.3154 94.8397)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 405.2167 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 408.446 94.8397)\\\" x=\\\"0 5.56 8.89 14.45 20.01 25.57 28.9 31.68\\\">property</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 445.1306 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 448.3599 94.8397)\\\" x=\\\"0 7.22 12.78 15.06 17.34\\\">while</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 471.2652 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 474.4945 94.8397)\\\" x=\\\"0 2.28\\\">it</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 479.5531 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 482.7825 94.8397)\\\" x=\\\"0 2.28 5.06\\\">its</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 492.8411 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 496.0704 94.8397)\\\" x=\\\"0 5.56 11.12 13.4 18.96\\\">being</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 520.5968 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 523.8261 94.8397)\\\" x=\\\"0 2.28 7.84 13.4 18.4 23.96 29.52\\\">leased.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 556.1308 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 559.3601 94.8397)\\\" x=\\\"0 2.78\\\">In</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 83.5213)\\\" x=\\\"0 5.56 10.56 15.56 21.12 24.45 30.01 35.57 41.13 46.13\\\">accordance</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 92.3992 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 95.7041 83.5213)\\\" x=\\\"0 7.22 9.5 12.28\\\">with</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 113.5459 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 116.8509 83.5213)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 132.471 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 135.7759 83.5213)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 187.4702 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 190.7752 83.5213)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 206.8982 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.2031 83.5213)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 224.2656 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 227.5706 83.5213)\\\" x=\\\"0 5 10.56 16.12 21.68 27.24 32.24\\\">conduct</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.595 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 265.8999 83.5213)\\\" x=\\\"0 5.56 7.84\\\">all</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.022 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 279.3269 83.5213)\\\" x=\\\"0 8.33 13.89 16.17 21.73 24.51 30.07 35.63 41.19 46.75 51.75 57.31\\\">maintenance,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 339.4246 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 342.7295 83.5213)\\\" x=\\\"0 3.33 8.89 14.45 20.01 22.29 25.62 30.62\\\">repairs,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 376.1328 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 379.4377 83.5213)\\\" x=\\\"0 5.56 11.12 16.12 21.68 27.24\\\">upkeep</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 412.2454 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 415.5503 83.5213)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 432.2349 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 435.5398 83.5213)\\\" x=\\\"0 5 10.56 13.89 19.45\\\">care.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 457.7712 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 461.0762 83.5213)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.6328 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 469.9377 83.5213)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.0608 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 489.3657 83.5213)\\\" x=\\\"0 8.33 13.89 19.45 25.01 27.79 33.35 38.35 41.13 46.69 50.02 55.58 58.91 61.13\\\">manufacturer’s</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 555.5034 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 558.8083 83.5213)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 83.5213)\\\" x=\\\"0\\\"> </text></g><clipPath id=\\\"clip0-11\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip0-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 546.6561 L 573.6 546.6561 L 573.6 545.6561 L 34.8 545.6561 L 34.8 546.6561 z \\\"/><path clip-path=\\\"url(#clip0-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.6 545.6561 L 573.6 545.6561 L 573.6 530.3377 L 572.6 530.3377 L 572.6 545.6561 z \\\"/><path clip-path=\\\"url(#clip0-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 545.6561 L 35.8 545.6561 L 35.8 530.3377 L 34.8 530.3377 L 34.8 545.6561 z \\\"/><path clip-path=\\\"url(#clip0-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 530.3377 L 573.6 530.3377 L 573.6 529.3377 L 34.8 529.3377 L 34.8 530.3377 z \\\"/><path clip-path=\\\"url(#clip0-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 81.9217 L 573.6 81.9217 L 573.6 80.9217 L 34.8 80.9217 L 34.8 81.9217 z \\\"/><path clip-path=\\\"url(#clip0-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.6 529.3377 L 573.6 529.3377 L 573.6 81.9217 L 572.6 81.9217 L 572.6 529.3377 z \\\"/><path clip-path=\\\"url(#clip0-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 529.3377 L 35.8 529.3377 L 35.8 81.9217 L 34.8 81.9217 L 34.8 529.3377 z \\\"/><g clip-path=\\\"url(#clip0-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 36.5264)\\\" x=\\\"0 6.498 11.997 14.391 16.785 21.789 26.793 29.295 34.299 39.303 44.307 504 506.3906 508.7812 511.1719 513.5625 515.9531 518.3438 520.7344 523.125 525.5156\\\">UT  07/2019          </text></g><g clip-path=\\\"url(#clip0-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 26.3398)\\\" x=\\\"0 6.003 11.007 16.011 21.015\\\">Page </text></g><g clip-path=\\\"url(#clip0-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 55.8097 26.3398)\\\" x=\\\"0\\\">1</text></g><g clip-path=\\\"url(#clip0-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.815 26.3398)\\\" x=\\\"0 2.394 7.398 9.9\\\"> of </text></g><g clip-path=\\\"url(#clip0-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 73.1021 26.3398)\\\" x=\\\"0\\\">7</text></g><g clip-path=\\\"url(#clip0-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#d9d9d9\\\" style=\\\"font-family:f0-0; font-size:54pt; white-space:pre\\\" transform=\\\"matrix(0.707 0.707 0.707 -0.707 135.6027 198.5094)\\\" x=\\\"0 56.016 96.048 136.08 176.112 216.144 236.16 284.184 324.216 344.232 364.248 416.232 456.264 480.24\\\">Qoppa Software</text></g><g clip-path=\\\"url(#clip0-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#002ba6\\\" style=\\\"font-family:f0-0; font-size:9pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.932 772)\\\" x=\\\"0 9.336 16.008 22.68 29.352 36.024 39.36 47.364 54.036 57.372 60.708 69.372 76.044 80.04 86.712 90.048 94.044 97.38 104.712 111.384 115.38 118.716 126.72 132.72 139.392 142.056 148.728 155.4 158.736 161.4 168.072 174.744 178.08 187.416 194.088 196.752 202.752 206.088 210.084 213.42 220.092 223.428 226.764 233.436 239.436 242.772 246.108 249.444 258.108 266.772 275.436 278.772 285.444 292.116 298.788 305.46 312.132 315.468 321.468 328.14\\\">Qoppa Software - For Evaluation Only - https://www.qoppa.com</text></g></g></svg></svg></g></svg><br>\\n<?xml version='1.0' encoding='UTF-8'?><svg id=\\\"qoppa_document\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" version=\\\"1.1\\\" xmlns=\\\"http://www.w3.org/2000/svg\\\" xmlns:xlink=\\\"http://www.w3.org/1999/xlink\\\"><!-- jPDFWeb v2019R1.03 - Demo Version --><style>title p { display: block; }</style><g id=\\\"qoppa_viewxform\\\" transform=\\\"matrix(1 0 0 1 0 0)\\\"><style type=\\\"text/css\\\">@font-face {font-family:f1-0;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f1-1;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f1-2;src:url(\\\"data:application/font-woff;charset=utf-8;base64,d09GRgABAAAAAAW8AAoAAAAABzQAAQABAAAAAAAAAAAAAAAAAAAAAAAAAABPUy8yAAAA9AAAADcAAABWWalZZmNtYXAAAAEsAAAAUwAAAGwBegIKZ2x5ZgAAAYAAAALfAAADgId/tkZoZWFkAAAEYAAAADMAAAA2GHlkumhoZWEAAASUAAAAIAAAACQGIAKxaG10eAAABLQAAAA0AAAARCRzAuxsb2NhAAAE6AAAACQAAAAkBYYGdm1heHAAAAUMAAAAGAAAACAAFAAzbmFtZQAABSQAAACMAAABPhepMhlwb3N0AAAFsAAAAAwAAAAgAAMAAHicY2Bk8mKcwMDKwMDUxbSbARlwMeogc/8DATI/MCDAkUEBCG8y3fifzBDFdINhLkwOAMp0DLgAeJxjYGBgZGAGYgYGHgYWhgQgLcIgABRhYVBgcGRwZXBn8GTwZwhmCGWI//8fKAsSdQaL+sBE/z/+f/j/of8H/x/4v+//7v+7/m8Em4cBADR/GXUAeJx9kk1ME0EYhmcGu42lUTZQQEgKy5oWQktLt0vbAG20WwJ0m1YskKalbKG7EH7CQYkajAnFGIrCRaUGEE1MxL+bBw/ECzdT0YsHUG8cvZDozXTrbFuMJ2eyySQz7/e+37MfQAAvtImyAAENALAcQtpIqWnIwL1b1+Hnqcvyl+A4JCV4Hgbkt/L3w0P8Fj8EbflfaBsdAAoAVZPRwNodHYytprqGNhgNdJOa0FXVVDM2R4eDIdQEXMhE8crMDwxoEgTLXpr14DUdttvVCU0wpB1PvnqdTHo8E97m5n7/vRU/39ISuOJ241QhnO8J9iQACUAl00hWULRDKczajYZWGDqCM/KDo/jSpsvlcm4toay8LWfCfb23F3t6lJyKXsT6cgBaIEnpShuJuR9IJUfgXXkevkPZwa+DP//29QH3Rf+/L5ZmKZI2EjC9KQijoxuLQ4PlY4TLFZvjvBw3t8G/h7Xe2j5tUnzxUhQ97kmf0ejnV9I8L80Oyff9w4pXFDvu4mxlADA0yewKggK3mFmDj6pCZoakkEbuicMYyubSJ/fH+F4LAEWTZXQZidX1kEHHkf3wfmRtb28NCbmnhS+be4PCJU0Ka04rGqgIcGWUGpPTEQFeiyJ77iN+m0UsZq4w+IYZnAUN2A53r6tSE3SJRmWJ/QkMeGcdAxDWM0IiIaxP+ziOm5rx+TgfOpCknR1RFKXnO5KUmwnwy7h9nk8v8wFQYG3CPhPYp73I2shUF2dGKa/sf+CfuBW3kgfGH/n9p2Lqzq5wsN1qsy0ssB09vqs3+vtVI2eeBU2tdJMw6nLigerTermpkMHQSDk76+vr6ixtgWGn0+WUUnp9uxlX0+mqWk29I91dCiecSeF0rpTJwOIfUJrlwlGtzPPkTbe7oiJutURjFovQ0OBxa63WCxeH4LacXDWbTOZVuCWPpbrdej2A+d/5cWTOP1T+s4piKWTOfUK2xzYA/gBtBuJcAHicY2BkYGAA4rxdv17H89t8ZeBmfgEUYbhtLnAWRv///T+Z6QPTDaA6DgYmkCgAl1oOtgB4nGNgZGBguvE/mSGK2fH/7/+/mT4wAEVQgCAAvv0H1HicY2CAAEZfCGaaDcSXGPSAOADIDmDmYtBjFGOIZtIBsh2BYpcgYkA5HbAajf+/AR7DC3wAAAAAAAAAAAAAABwAUABwAIgAvgDKANoA9AEKAT4BiAGyAcB4nGNgZGBgEGQwYmBiAAFGBjQAAAcrAEh4nJWOMQ6CUBBEH4KKrZUlpRURQkUptZWJhZ1RURPiJ0BD41E8BudzhH8AyGaTN7OTyQJLzrg43gpYawd22EoNPMMntewSsrfsiUvLczZ8LS/kd2QYXVsqXjx40nAQXaUNtTaXE3Dkwlv6T/c+m6vfUHAbnf+QEE9Mn3pdyzFKBET6eaeZ1PIDR/8t33icY2BmwAsAAH0ABA==\\\");}@font-face {font-family:f1-3;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}</style><svg id=\\\"qoppa_page_p1\\\" class=\\\"qoppa_page\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\"><rect class=\\\"qoppa_pageborder\\\" x=\\\"0.5pt\\\" y=\\\"0.5pt\\\" width=\\\"611pt\\\" height=\\\"791pt\\\" fill=\\\"none\\\" /><svg class=\\\"qoppa_pagecontents\\\" x=\\\"0pt\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" viewBox=\\\"0 0 612 792\\\" ><g class=\\\"qoppa_contentstream\\\" transform=\\\"matrix(1 0 0 -1 0 792)\\\" fill=\\\"black\\\" stroke=\\\"black\\\" stroke-width=\\\"1\\\" stroke-linecap=\\\"butt\\\" stroke-linejoin=\\\"miter\\\" stroke-miterlimit=\\\"10\\\"><clipPath id=\\\"clip1-1\\\"><path d=\\\"M 35 487 L 574 487 L 574 770 L 35 770 L 35 487 z \\\"/></clipPath><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 759.4812)\\\" x=\\\"0 5 10.56 12.84 15.12 20.68 24.01 26.23\\\">seller’s</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 71.9353 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 75.2187 759.4812)\\\" x=\\\"0 7.22 12.78 16.11 19.44 25 30.56 33.34\\\">warranty</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 113.5635 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 116.8468 759.4812)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 124.1271 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 127.4105 759.4812)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 135.2523 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 138.5357 759.4812)\\\" x=\\\"0 2.78 8.34 11.67 16.67\\\">force</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.7671 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 164.0505 759.4812)\\\" x=\\\"0 7.22 12.78 18.34\\\">when</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 187.9567 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 191.2401 759.4812)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 207.3631 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.6465 759.4812)\\\" x=\\\"0 5.56 10.56 16.12 21.68 23.96 27.29\\\">acquire</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 243.503 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 246.7863 759.4812)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 260.6877 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 263.9711 759.4812)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 304.5424 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 307.8258 759.4812)\\\" x=\\\"0 2.28\\\">it</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.8844 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 316.1677 759.4812)\\\" x=\\\"0 5 10.56 16.12 18.4\\\">shall</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 336.8513 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 340.1347 759.4812)\\\" x=\\\"0 5.56\\\">be</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.2578 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 354.5411 759.4812)\\\" x=\\\"0 2.78 6.11 11.67 17.23 22.23 25.01 30.57 33.9 37.23 42.79\\\">transferred</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.8956 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 406.179 759.4812)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 414.5188 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 417.8022 759.4812)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 433.9253 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 437.2086 759.4812)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 442.2672 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 445.5506 759.4812)\\\" x=\\\"0 5.56 7.84 10.12 15.68 22.9 28.46\\\">allowed</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 479.5789 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 482.8623 759.4812)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 493.4238 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 496.7072 759.4812)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 510.6086 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 513.892 759.4812)\\\" x=\\\"0 2.78 8.34 11.67 20\\\">terms</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 538.892 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 542.1754 759.4812)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 550.5152 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.7986 759.4812)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 748.1629)\\\" x=\\\"0 7.22 12.78 16.11 19.44 25 30.56 33.34 38.34\\\">warranty.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 736.8445)\\\" x=\\\"0 5.56 11.12 16.12 18.9\\\">Lost,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 62.3797 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 65.5493 736.8445)\\\" x=\\\"0 6.67 9.45 15.01 17.29 22.85 28.41\\\">Stolen,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 96.7407 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 99.9104 736.8445)\\\" x=\\\"0 7.22 12.78 21.11 26.67 32.23 37.79 43.35\\\">Damaged,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.0481 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 149.2177 736.8445)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 158.1093 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 161.279 736.8445)\\\" x=\\\"0 7.22 12.78 17.78 20.56 23.89 29.45 34.45 40.01\\\">Destroyed</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 206.8552 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.0248 736.8445)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 250.5961 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 253.7657 736.8445)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.3224 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 262.492 736.8445)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.3934 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 279.563 736.8445)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 317.356 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 320.5256 736.8445)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 327.8059 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 330.9756 736.8445)\\\" x=\\\"0 2.28 7.84 12.84 15.62\\\">lost,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 349.374 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 352.5437 736.8445)\\\" x=\\\"0 5 7.78 13.34 15.62 21.18 26.74\\\">stolen,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 382.0651 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 385.2348 736.8445)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57 36.13\\\">damaged</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 426.934 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 430.1037 736.8445)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 438.9952 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 442.1649 736.8445)\\\" x=\\\"0 5.56 11.12 16.12 18.9 22.23 27.79 32.79 38.35 43.91\\\">destroyed,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 488.8592 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 492.0289 736.8445)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 508.1519 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 511.3216 736.8445)\\\" x=\\\"0 5.56 11.12 14.45 20.01\\\">agree</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 536.8977 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 540.0674 736.8445)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 548.4072 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 551.5769 736.8445)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 725.5262)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 51.2615 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 55.736 725.5262)\\\" x=\\\"0 5.56\\\">at</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 64.0758 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 68.5503 725.5262)\\\" x=\\\"0 5.56 11.12 16.12\\\">once</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 90.2349 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 94.7094 725.5262)\\\" x=\\\"0 5.56\\\">an</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 105.8324 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 110.3069 725.5262)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 143.6614 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.1359 725.5262)\\\" x=\\\"0 5.56 11.12 16.68 22.24\\\">equal</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 172.6622 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 177.1367 725.5262)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 185.4766 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 189.951 725.5262)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 203.8524 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 208.3269 725.5262)\\\" x=\\\"0 2.28 7.84 12.84 17.84 23.4\\\">lesser</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 235.0603 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 239.5348 725.5262)\\\" x=\\\"0 5.56 8.34\\\">of:</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 250.6529 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 255.1274 725.5262)\\\" x=\\\"0 3.33 8.89\\\">(1)</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 267.3491 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 271.8236 725.5262)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 285.7249 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 290.1994 725.5262)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79 40.01\\\">Property’s</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.2141 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 339.6885 725.5262)\\\" x=\\\"0 2.78 8.34 10.62\\\">fair</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 353.6387 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 358.1132 725.5262)\\\" x=\\\"0 8.33 13.89 17.22 22.22 27.78\\\">market</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.6747 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 393.1492 725.5262)\\\" x=\\\"0 5 10.56 12.84 18.4 23.96\\\">value,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.8924 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 424.3669 725.5262)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.9284 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 439.4029 725.5262)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.7427 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 452.2172 725.5262)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.1185 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 470.593 725.5262)\\\" x=\\\"0 2.78 5.06 13.39\\\">time</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.5432 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 494.0177 725.5262)\\\" x=\\\"0 2.28\\\">it</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.0763 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 503.5508 725.5262)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 510.831 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 515.3055 725.5262)\\\" x=\\\"0 2.28 7.84 12.84 15.62\\\">lost,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 533.704 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 538.1785 725.5262)\\\" x=\\\"0 5 7.78 13.34 15.62 21.18 26.74\\\">stolen,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 714.2078)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57 36.13\\\">damaged</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 82.3992 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 86.9016 714.2078)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 95.7932 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 100.2955 714.2078)\\\" x=\\\"0 5.56 11.12 16.12 18.9 22.23 27.79 32.79 38.35\\\">destroyed</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 144.2115 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.7139 714.2078)\\\" x=\\\"0 3.33 8.89 14.45 17.23 22.79 26.12 34.45 36.73 42.29 47.85\\\">(determined</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 202.1319 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 206.6342 714.2078)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 217.1958 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 221.6981 714.2078)\\\" x=\\\"0 5.56 10.56\\\">us,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 235.038 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 239.5403 714.2078)\\\" x=\\\"0 5.56 10.56 12.84 18.4\\\">using</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 263.5052 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 268.0075 714.2078)\\\" x=\\\"0 5.56\\\">an</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 279.1306 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 283.6329 714.2078)\\\" x=\\\"0 2.28 7.84 13.4 18.96 23.96 26.74 30.07\\\">industry</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 318.7062 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 323.2085 714.2078)\\\" x=\\\"0 5 10.56 12.84 18.4\\\">value</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 347.1734 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 351.6758 714.2078)\\\" x=\\\"0 5.56 11.12 13.4 18.96\\\">guide</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 376.2021 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 380.7045 714.2078)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.4877 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 397.99 714.2078)\\\" x=\\\"0 5 10.56 12.84 18.4 23.4 26.18\\\">select,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 426.95 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 431.4524 714.2078)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 436.511 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 441.0133 714.2078)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 457.1364 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 461.6387 714.2078)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.919 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 473.4214 714.2078)\\\" x=\\\"0 5.56 10.56 16.12 18.4 20.68 26.24 31.8 34.08 39.64 42.97\\\">available);</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 519.1782 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 523.6806 714.2078)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 532.5722 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 537.0745 714.2078)\\\" x=\\\"0 3.33 8.89\\\">(2)</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.2962 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.7986 714.2078)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 702.8895)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57 33.35 36.01 41.01 46.57 52.13 54.79 62.01 67.57 73.13 75.41 80.97 83.63 89.19 94.75 100.31 105.87 108.53 111.31 116.87 119.53 125.09 130.65 135.65 138.31 143.87 146.65 149.31 154.31 159.87 164.87 170.43 173.09 175.87 178.15 186.48 192.04 194.7 197.48 203.04 205.7 211.26 216.26 221.82 225.15 230.15 232.43 237.43 242.99 245.65 248.43 253.99 259.55 262.21 267.77 273.33 278.89 282.22 289.44 295 300 302.66 310.44 316 318.78 321.06 326.62 332.18 334.84 340.4 343.73 346.39 353.06 358.62 361.95 364.23 369.23 371.89 378.56 384.12 389.12 392.45 400.23 405.79 408.57 411.23 419.01 424.57 427.35 429.63 435.19 440.75 443.53 446.19 451.75 456.75 459.41 464.97 470.53 476.09 478.37 480.65 485.65 491.21 496.77 499.05 504.61\\\">amount you would need to pay at such time to exercise the 100-Day Option or Early Buy-Out Option, as applicable.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 691.5711)\\\" x=\\\"0 7.22 12.78 15.06 20.62 25.62 28.4 33.96 36.74 42.3 50.63 56.19 61.75\\\">Reinstatement</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 105.2361 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 108.6807 691.5711)\\\" x=\\\"0 7.22 9.5 15.06 20.62 23.4 28.4\\\">Rights.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 139.8623 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 143.3069 691.5711)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 148.8635 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 152.3081 691.5711)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 168.4311 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 171.8757 691.5711)\\\" x=\\\"0 5.56 8.89\\\">are</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 186.3288 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 189.7734 691.5711)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 197.6152 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 201.0597 691.5711)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 27.3\\\">default</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.1428 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 234.5873 691.5711)\\\" x=\\\"0 5.56 11.12 16.68 19.46 25.02\\\">and/or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.9418 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 266.3864 691.5711)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.2877 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 283.7323 691.5711)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 321.5253 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 324.9698 691.5711)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 332.2501 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 335.6947 691.5711)\\\" x=\\\"0 5 10.56 13.89 17.22 22.78 28.34 33.9 39.46 42.79 48.35\\\">surrendered</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 389.6156 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 393.0601 691.5711)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 401.9517 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 405.3963 691.5711)\\\" x=\\\"0 3.33 8.89 14.45 20.01 25.01 30.01 35.57 40.57 45.57 51.13 56.69\\\">repossessed,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 464.8738 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 468.3184 691.5711)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.4414 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 487.886 691.5711)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 506.7776 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 510.2222 691.5711)\\\" x=\\\"0 3.33 8.89 11.17 16.73 21.73 24.51 30.07 32.85\\\">reinstate</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 548.6353 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 552.0798 691.5711)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 680.2527)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 89.616 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 92.7055 680.2527)\\\" x=\\\"0 7.22 9.5 12.28 17.84 23.4 28.96\\\">without</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 124.4487 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 127.5382 680.2527)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68\\\">losing</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 153.7833 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 156.8728 680.2527)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 172.9958 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 176.0853 680.2527)\\\" x=\\\"0 3.33 5.61 11.17 16.73 19.51\\\">rights</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 200.597 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 203.6865 680.2527)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 212.5781 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 215.6676 680.2527)\\\" x=\\\"0 5.56 11.12 13.9 16.18 21.74 27.3\\\">options</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.9723 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 251.0618 680.2527)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 261.6234 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 264.7129 680.2527)\\\" x=\\\"0 5.56 11.12 16.12 18.4 23.96 29.52\\\">paying:</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 297.0175 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 300.1071 680.2527)\\\" x=\\\"0 3.33 5.61\\\">(i)</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 309.0475 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 312.137 680.2527)\\\" x=\\\"0 5.56 7.84\\\">all</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 322.2591 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 325.3485 680.2527)\\\" x=\\\"0 5.56 11.12 16.12\\\">past</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 344.2499 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 347.3394 680.2527)\\\" x=\\\"0 5.56 11.12\\\">due</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 364.024 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 367.1135 680.2527)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01 30.57 35.57\\\">charges;</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 405.468 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 408.5575 680.2527)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 425.242 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 428.3315 680.2527)\\\" x=\\\"0 3.33 5.61 7.89\\\">(ii)</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 439.5523 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 442.6418 680.2527)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.7003 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 450.7898 680.2527)\\\" x=\\\"0 5.56 7.84 10.12 15.68 22.9 28.46\\\">allowed</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.8182 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 487.9077 680.2527)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 498.4692 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 501.5587 680.2527)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64\\\">applicable</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 546.7686 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 549.8581 680.2527)\\\" x=\\\"0 2.28 7.84 15.06\\\">law,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 668.9344)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 54.6014 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 59.0196 668.9344)\\\" x=\\\"0 3.33 8.89 14.45 19.45 25.01 30.57 36.13 41.69 43.97\\\">reasonable</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 108.5606 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 112.9789 668.9344)\\\" x=\\\"0 5 10.56 15.56 18.34\\\">costs</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.3187 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 140.737 668.9344)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 149.0768 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 153.4951 668.9344)\\\" x=\\\"0 5.56 7.84 12.84 17.84 23.4\\\">pickup</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 182.4599 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 186.8782 668.9344)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 203.5627 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 207.981 668.9344)\\\" x=\\\"0 3.33 8.89 14.45 20.01 22.29 24.57 29.57 35.13 38.46 43.46\\\">redelivery.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 254.2261 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 258.6444 668.9344)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.4373 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 280.8556 668.9344)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.7472 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 304.1654 668.9344)\\\" x=\\\"0 5.56 10.56 16.12 19.45 24.45 26.73 31.73\\\">exercise</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 341.4604 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 345.8786 668.9344)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 365.3317 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 369.75 668.9344)\\\" x=\\\"0 3.33 8.89 11.17 16.73 21.73 24.51 30.07 32.85 38.41 46.74 52.3 57.86\\\">reinstatement</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.3945 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 434.8128 668.9344)\\\" x=\\\"0 3.33 5.61 11.17 16.73\\\">right</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.3245 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 458.7428 668.9344)\\\" x=\\\"0 7.22 9.5 12.28 17.84 20.12\\\">within</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.4263 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 488.8446 668.9344)\\\" x=\\\"0 5.56 11.12\\\">180</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 505.5292 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 509.9474 668.9344)\\\" x=\\\"0 5.56 11.12 16.12\\\">days</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 531.0705 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 535.4887 668.9344)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 543.8286 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 548.2468 668.9344)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 657.616)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 27.3 30.08 32.74 38.3 41.63 44.29 49.29 54.85 58.18 61.51 67.07 72.63 78.19 83.75 87.08 89.86 93.19 98.75 104.31 109.87 114.87 119.87 125.43 130.43 135.43 137.71 143.27 148.83 151.49 157.05 159.83 162.49 165.27 170.83 176.39 179.05 185.72 189.05 194.61 200.17 205.73 209.06 211.84 216.84 219.5 225.06 228.39 231.05 236.05 241.61 246.61 252.17 254.83 257.11 262.67 268.23 273.79 279.35 282.68 285.34 290.9 296.46 299.79 302.07 307.63 313.19 315.85 321.41 324.74 330.3 335.3 337.58 343.14 348.7 354.26 356.92 359.7 365.26 367.92 372.92 378.48 384.04 386.7 392.26 397.82 403.38 408.94 412.27 414.93 420.49 426.05 431.61 433.89 436.17 441.17 446.73 452.29 454.57 460.13 462.79 465.07 470.63 477.85\\\">default or surrender/repossession of the Property or such longer period provided to you under applicable law.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 646.2977)\\\" x=\\\"0 7.22 9.5 15.06 20.62\\\">Right</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 64.1033 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 66.9139 646.2977)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 75.2537 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 78.0643 646.2977)\\\" x=\\\"0 6.11 11.67 15 23.33 25.61 31.17 36.73 39.51 45.07\\\">Terminate.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 125.9158 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 128.7263 646.2977)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.5193 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 149.3299 646.2977)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 168.2215 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 171.032 646.2977)\\\" x=\\\"0 2.78 8.34 11.67 20 22.28 27.84 33.4 36.18\\\">terminate</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 212.7752 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 215.5857 646.2977)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 235.0388 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 237.8494 646.2977)\\\" x=\\\"0 2.28 7.84 13.4 18.4\\\">lease</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 261.8142 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 264.6248 646.2977)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.9793 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 305.7898 646.2977)\\\" x=\\\"0 5.56 11.12 13.4 15.68 21.24 26.8 29.58 31.86 37.42 42.98\\\">obligations</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 353.7781 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 356.5886 646.2977)\\\" x=\\\"0 5.56 11.12 16.68 22.24\\\">under</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 382.1648 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 384.9753 646.2977)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 400.5955 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 403.406 646.2977)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 452.322 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 455.1326 646.2977)\\\" x=\\\"0 7.22 9.5 12.28 17.84 23.4 28.96\\\">without</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.8757 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 489.6863 646.2977)\\\" x=\\\"0 5.56 11.12 16.68 22.24 24.52 27.3\\\">penalty</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.991 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 524.8015 646.2977)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 535.363 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 538.1736 646.2977)\\\" x=\\\"0 5.56 11.12 16.12 18.4 23.96\\\">paying</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 634.9793)\\\" x=\\\"0 5.56 7.84\\\">all</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 50.8221 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 53.7614 634.9793)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 88.8395 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 91.7789 634.9793)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46 44.46\\\">Payments,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 139.0201 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 141.9594 634.9793)\\\" x=\\\"0 2.78 8.34 13.9\\\">fees</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.8608 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 163.8001 634.9793)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 180.4847 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 183.424 634.9793)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01 30.57\\\">charges</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 219.0002 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 221.9396 634.9793)\\\" x=\\\"0 2.78 8.34 13.9\\\">that</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.6192 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 241.5586 634.9793)\\\" x=\\\"0 5.56 8.89\\\">are</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.0117 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 258.951 634.9793)\\\" x=\\\"0 5.56 11.12\\\">due</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.6356 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 278.575 634.9793)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 287.4666 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 290.4059 634.9793)\\\" x=\\\"0 5.56 11.12 16.12\\\">past</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 309.3073 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 312.2466 634.9793)\\\" x=\\\"0 5.56 11.12\\\">due</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 328.9312 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 331.8705 634.9793)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.5551 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 351.4944 634.9793)\\\" x=\\\"0 5 10.56 12.84 18.4 23.96 26.74 32.3 35.63 37.91 40.19\\\">voluntarily</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 396.6898 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 399.6291 634.9793)\\\" x=\\\"0 5 10.56 13.89 17.22 22.78 28.34 33.9 39.46 42.79 45.07 50.63\\\">surrendering</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 455.8303 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 458.7696 634.9793)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.6612 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 470.6005 634.9793)\\\" x=\\\"0 3.33 8.89 11.67 17.23 20.56 26.12 28.4 33.96\\\">returning</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 510.1269 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 513.0663 634.9793)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.9676 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 529.907 634.9793)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 623.6609)\\\" x=\\\"0 2.28 7.84 10.5 12.78 15.56 20.56 23.22 28.78 32.11 34.39 39.95 42.23 47.79 53.35 55.63 58.29 63.29 68.85 74.41 79.97 82.25 85.03 87.31 92.87 98.43 101.21 103.87 106.15 111.71 116.71 121.71 124.37 127.7 133.26 138.82 143.82 149.38 154.94 160.5 166.06 168.34 173.9 176.56 183.78 189.34 194.9 198.23 200.89 206.45 212.01 217.57 220.23 223.01 228.57 234.13 237.46 240.12 245.68 248.46 251.12 253.9 259.46 265.02 267.68 273.24 278.24 283.8 286.08 289.41 294.97 297.75 300.03 305.59 311.15 313.81 319.37 322.15 324.81 330.37 335.93 340.93 343.59 345.87 351.43 356.99 361.99 367.55 370.21 372.99 378.55 381.88 390.21\\\">in its original condition, less reasonable wear and tear at the expiration of any lease term.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 612.3426)\\\" x=\\\"0 5.56 11.12 13.9\\\">Late</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.1629 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 63.3819 612.3426)\\\" x=\\\"0 6.11 11.67 17.23 22.23\\\">Fees.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 88.3917 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 91.6107 612.3426)\\\" x=\\\"0 9.44\\\">We</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 106.6107 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 109.8297 612.3426)\\\" x=\\\"0 3.33 8.89 13.89 19.45 22.78 27.78\\\">reserve</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 143.1744 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 146.3934 612.3426)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.2948 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 163.5138 612.3426)\\\" x=\\\"0 3.33 5.61 11.17 16.73\\\">right</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 183.0255 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 186.2445 612.3426)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 194.5844 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 197.8034 612.3426)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01\\\">charge</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 228.3796 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 231.5986 612.3426)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 237.1601 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 240.3791 612.3426)\\\" x=\\\"0 2.28 7.84 10.62\\\">late</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.5608 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 259.7798 612.3426)\\\" x=\\\"0 2.78 8.34\\\">fee</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 273.6811 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 276.9002 612.3426)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 288.5701 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 291.7891 612.3426)\\\" x=\\\"0 5.56 11.12 16.12\\\">past</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 310.6905 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 313.9095 612.3426)\\\" x=\\\"0 5.56 11.12\\\">due</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 330.594 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 333.8131 612.3426)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57 38.35 43.35\\\">payments,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 379.9459 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 383.1649 612.3426)\\\" x=\\\"0 5.56 8.34 11.12 16.68\\\">after</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.1747 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 406.3937 612.3426)\\\" x=\\\"0 5.56 7.84 10.12 15.68 22.9 25.18 30.74\\\">allowing</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 442.7023 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 445.9213 612.3426)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 457.5912 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 460.8102 612.3426)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 476.9333 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 480.1523 612.3426)\\\" x=\\\"0 5.56 8.89 14.45 19.45\\\">grace</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 505.1669 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 508.3859 612.3426)\\\" x=\\\"0 5.56 11.12 14.45 16.73 22.29 27.85\\\">period,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 539.0207 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 542.2397 612.3426)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 550.5796 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.7986 612.3426)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 601.0242)\\\" x=\\\"0 2.28 7.84 12.84 17.84 23.4\\\">lesser</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 67.4334 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 70.2009 601.0242)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 78.5407 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.3082 601.0242)\\\" x=\\\"0 3.33 5.61\\\">(i)</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 90.2486 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 93.0161 601.0242)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 106.9175 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 109.6849 601.0242)\\\" x=\\\"0 3.33 8.89 11.67\\\">rate</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 126.9164 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 129.6839 601.0242)\\\" x=\\\"0 5.56 7.84 10.12 15.68 22.9 28.46\\\">allowed</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 163.7122 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 166.4797 601.0242)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 177.0412 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 179.8087 601.0242)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64\\\">applicable</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.0186 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 227.7861 601.0242)\\\" x=\\\"0 2.28 7.84\\\">law</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 242.8496 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 245.6171 601.0242)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 254.5087 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 257.2761 601.0242)\\\" x=\\\"0 3.33 5.61 7.89\\\">(ii)</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 268.4968 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 271.2643 601.0242)\\\" x=\\\"0 5.56 11.12 13.9 19.46\\\">$2.00</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 296.2887 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 299.0562 601.0242)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 310.7261 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 313.4936 601.0242)\\\" x=\\\"0 7.22 12.78 18.34 23.34 25.62 30.62\\\">weekly,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 346.8969 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 349.6644 601.0242)\\\" x=\\\"0 5.56 7.84 15.06 20.62 26.18 31.18 33.46 38.46\\\">biweekly,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 390.9095 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 393.677 601.0242)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.5686 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 405.3361 601.0242)\\\" x=\\\"0 5 10.56 18.89 21.17 24.5 32.83 38.39 43.95 46.73 52.29 54.57\\\">semi-monthly</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 464.9113 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 467.6787 601.0242)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57 38.35 43.35\\\">payments,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 513.8116 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 516.579 601.0242)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 525.4706 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 528.2381 601.0242)\\\" x=\\\"0 5.56 11.12 13.9 19.46\\\">$5.00</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.2625 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 556.03 601.0242)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 589.7059)\\\" x=\\\"0 8.33 13.89 19.45 22.23 27.79 30.07 35.07 37.73 43.29 48.85 53.85 62.18 67.74 73.3 76.08 81.08\\\">monthly payments.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 578.3875)\\\" x=\\\"0 7.7783 10.5566 16.1182 21.6797\\\">Other</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 65.7098 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 68.366 578.3875)\\\" x=\\\"0 2.7783 11.1084 16.6699 22.2315 25.5615 28.3398 33.9014 39.4629\\\">Important</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 110.6072 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 113.2635 578.3875)\\\" x=\\\"0 6.1084 11.6699 15 23.3301 28.3301\\\">Terms.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 144.3719 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 147.0281 578.3875)\\\" x=\\\"0 6.6699 12.2314\\\">See</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 164.8211 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 167.4773 578.3875)\\\" x=\\\"0 2.7783 8.3398\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 181.3787 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 184.035 578.3875)\\\" x=\\\"0 5.5615 8.3398 13.9014 19.4629\\\">other</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 206.8279 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 209.4842 578.3875)\\\" x=\\\"0 5.5615 11.123 14.4531 17.2314\\\">parts</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.7156 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 234.3719 578.3875)\\\" x=\\\"0 5.5615\\\">of</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 242.7117 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 245.368 578.3875)\\\" x=\\\"0 2.7783 8.3398 10.6201\\\">this</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 260.9881 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 263.6443 578.3875)\\\" x=\\\"0 6.6699 12.2314 15.5615 21.123 26.6846 35.0147 40.5762 46.1377\\\">Agreement</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.5603 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 315.2166 578.3875)\\\" x=\\\"0 2.7783 8.3398\\\">for</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 326.8865 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 329.5428 578.3875)\\\" x=\\\"0 5.5615 11.1231 16.6846 18.9648 21.7432 24.0234 29.585 35.1465 40.708\\\">additional</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 372.531 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 375.1873 578.3875)\\\" x=\\\"0 2.2803 10.6103 16.1719 21.7334 25.0635 27.8418 33.4033 38.9648\\\">important</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 416.9305 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 419.5867 578.3875)\\\" x=\\\"0 2.2803 7.8418 10.6201 16.1816 19.5117 27.8418 33.4033 36.1816 38.4619 44.0234\\\">information</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 469.1717 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 471.8279 578.3875)\\\" x=\\\"0 5.5615\\\">on</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 482.951 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 485.6072 578.3875)\\\" x=\\\"0 2.7783 8.3398 11.6699 20 22.2803 27.8418 33.4033 36.1816 38.4619 44.0234\\\">termination</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 567.0691)\\\" x=\\\"0 5.5615 8.8916 14.4531 19.4531 25.0146 30.5762 36.1377 39.4678 45.0293 50.0293\\\">procedures,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 93.5076 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 96.1639 567.0691)\\\" x=\\\"0 5.5615 11.1231 14.4531 19.4531 25.0146 30.5762 35.5762\\\">purchase</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 137.3016 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 139.9578 567.0691)\\\" x=\\\"0 5.5615 11.123 13.9014 16.1816 21.7432\\\">option</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 167.2625 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 169.9187 567.0691)\\\" x=\\\"0 3.4301 5.8103 11.4719 17.1334 20.0117 25.1117\\\">rights,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 197.9088 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 200.665 567.0691)\\\" x=\\\"0 3.3801 8.9916 14.0416 19.6531 25.2646 30.8762 35.9262 38.2565 43.868 46.1983 48.5285 50.8588 53.6871 56.0174 61.6289\\\">responsibilities</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 267.3439 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 270.0502 567.0691)\\\" x=\\\"0 3.0283 8.8399\\\">for</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 282.4701 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 285.3764 567.0691)\\\" x=\\\"0 2.4303 8.1418 13.2918 18.4418\\\">loss,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 306.7465 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 309.5527 567.0691)\\\" x=\\\"0 5.6615 11.3231 19.7531 25.4146 31.0762\\\">damage</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 346.2904 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 349.0467 567.0691)\\\" x=\\\"0 5.8615\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 358.5383 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 361.4945 567.0691)\\\" x=\\\"0 5.6115 11.2231 16.2731 19.1014 22.4814 28.093 33.143 35.9713 38.3016 43.9131\\\">destruction</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 411.0191 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 413.7254 567.0691)\\\" x=\\\"0 5.8615\\\">of</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 422.6652 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 425.6215 567.0691)\\\" x=\\\"0 3.0283 8.8398\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 440.2729 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 443.1791 567.0691)\\\" x=\\\"0 6.7699 10.2 15.8615 21.523 27.1846 30.6146 33.493 38.593\\\">Property,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.6504 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 487.4066 567.0691)\\\" x=\\\"0 5.6615 10.7615 13.6398 19.3014 24.9629\\\">actual</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 514.7498 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 517.506 567.0691)\\\" x=\\\"0 5.6615\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.5976 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 529.3539 567.0691)\\\" x=\\\"0 2.3803 10.8103 16.4719 18.8522 21.2324 26.894\\\">implied</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 555.7508)\\\" x=\\\"0 7.2717 12.8832 16.2633 19.6434 25.2549 30.8664 33.6947 36.025 41.6365 46.6865\\\">warranties,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 90.2148 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 92.9211 555.7508)\\\" x=\\\"0 2.8283 8.4398 13.4898 19.1014 24.1514\\\">taxes,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 119.9008 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 122.607 555.7508)\\\" x=\\\"0 5.7115 8.6398 14.3514 20.0629\\\">other</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.15 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.9563 555.7508)\\\" x=\\\"0 5.1 10.7615 16.423 19.8531 25.5146 31.1762\\\">charges</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 185.2324 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 187.9887 555.7508)\\\" x=\\\"0 5.6115 11.223\\\">and</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 204.8232 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 207.5295 555.7508)\\\" x=\\\"0 5.5615 11.1231 16.6846 22.2461 24.5264 27.3047 29.585 35.1465\\\">penalties</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.676 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 250.3322 555.7508)\\\" x=\\\"0 5 10.5615\\\">you</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 266.4553 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 269.1115 555.7508)\\\" x=\\\"0 8.3301 13.8916\\\">may</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 288.0031 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 290.6594 555.7508)\\\" x=\\\"0 2.2803 7.8418 12.8418 18.4033 21.7334\\\">incur,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 315.1711 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 317.8273 555.7508)\\\" x=\\\"0 5.5615 11.123\\\">and</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 334.5119 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 337.1682 555.7508)\\\" x=\\\"0 5.5615 8.3398 13.9014 19.4629\\\">other</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.9611 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 362.6174 555.7508)\\\" x=\\\"0 2.2803 10.6103 16.1719 21.7334 25.0635 27.8418 33.4033 38.9648\\\">important</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 404.3605 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.0168 555.7508)\\\" x=\\\"0 2.2803 7.8418 10.6201 16.1816 19.5117 27.8418 33.4033 36.1816 38.4619 44.0234 49.585\\\">information.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 459.3801 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 462.0363 555.7508)\\\" x=\\\"0 6.6699 12.2314\\\">You</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 479.8293 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 482.4855 555.7508)\\\" x=\\\"0 5.5615 10.5615 15.5615 21.1231 26.6846 33.9063 36.1865 41.7481 47.3096 52.8711\\\">acknowledge</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 540.9182 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 543.5744 555.7508)\\\" x=\\\"0 2.7783 8.3398 13.9014\\\">that</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 544.4324)\\\" x=\\\"0 7.2717\\\">we</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 53.5832 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 56.2895 544.4324)\\\" x=\\\"0 5.5615 8.8916 14.4531 19.4531 21.7334 27.2949 32.8564\\\">provided</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 94.7074 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 97.3637 544.4324)\\\" x=\\\"0 5 10.5615\\\">you</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 113.4867 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 116.143 544.4324)\\\" x=\\\"0 7.2217 9.502 12.2803\\\">with</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 133.9848 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 136.641 544.4324)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 142.4525 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 145.3588 544.4324)\\\" x=\\\"0 5 10.5615 18.8916 24.4531 26.7334 32.2949 35.0733 40.6348\\\">completed</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 191.5551 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 194.2113 544.4324)\\\" x=\\\"0 5 10.5615 16.1231\\\">copy</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 215.3344 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 217.9906 544.4324)\\\" x=\\\"0 5.6115\\\">of</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 226.4305 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 229.1367 544.4324)\\\" x=\\\"0 2.7783 8.3398 10.6201\\\">this</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 244.7568 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 247.4131 544.4324)\\\" x=\\\"0 6.6699 12.2315 15.5615 21.123 26.6846 35.0146 40.5762 46.1377 48.916\\\">Agreement.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.1074 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 301.7637 544.4324)\\\" x=\\\"0 6.6699 12.2314\\\">You</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.5566 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 322.2129 544.4324)\\\" x=\\\"0 5.5615 10.5615 15.5615 21.123 26.6846 33.9062 36.1865 41.748 47.3096 52.8711\\\">acknowledge</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.6455 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 383.3017 544.4324)\\\" x=\\\"0 2.7783 8.3399 13.9014\\\">that</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 399.9814 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 402.6377 544.4324)\\\" x=\\\"0 7.2717\\\">we</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 415.5209 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 418.2271 544.4324)\\\" x=\\\"0 8.3301 13.8916 19.4531\\\">made</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 443.2418 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 445.898 544.4324)\\\" x=\\\"0 2.7783 8.3399\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 459.7994 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 462.8557 544.4324)\\\" x=\\\"0 5.5615 7.8418 12.8418 17.8418 20.1221 25.6836 30.6836 36.2451 39.5752 45.1367\\\">disclosures</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.9924 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 516.0486 544.4324)\\\" x=\\\"0 5.6115\\\">at</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 524.4885 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 527.5447 544.4324)\\\" x=\\\"0 5.6115\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 533.1141)\\\" x=\\\"0 5.5615 11.123 13.9014 19.4629 22.793\\\">before</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 69.0545 533.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 72.1107 533.1141)\\\" x=\\\"0 2.7783 8.3398\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 86.0121 533.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 89.0684 533.1141)\\\" x=\\\"0 5 10.5615 16.123 21.123 26.6846 35.0146 43.3447 48.9062 51.6846 53.9648 59.5264\\\">consummation</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 154.1562 533.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 157.2125 533.1141)\\\" x=\\\"0 5.6115\\\">of</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 165.6523 533.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 168.7086 533.1141)\\\" x=\\\"0 2.7783 8.3398\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 182.61 533.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 185.6662 533.1141)\\\" x=\\\"0 6.6699 12.2314 15.5615 21.123 26.6846 35.0146 40.5762 46.1377 48.916\\\">Agreement.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 519.7957)\\\" x=\\\"0 6.67 8.95 11.23 13.89 19.45 22.23 27.79 33.35 36.68 39.34 42.12 47.68 53.24 58.24 60.9 68.12 73.68 75.96 80.96 86.52 89.18 97.51 103.07 108.07 110.73 116.29 121.85 124.51 129.51 135.07 140.63 143.96 149.52 155.08 160.64 163.42 166.08 168.36 173.92 178.92 181.2 186.76 192.32 197.88 200.54 203.32 208.88 214.44 219.44 222.1 224.88 230.44 233.77\\\">All other fees which may be charged, include fees for:</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 22.7 506.4773)\\\" x=\\\"0 3.33 8.89\\\">(1)</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 506.4773)\\\" x=\\\"0 3.33 8.89 12.22 14.88 22.1 27.66 30.44 36 39.33 44.89 50.45 56.01 58.67 65.34 70.9 75.9 84.23 89.79 95.35 98.13 103.13 105.79 111.35 114.68 117.34 124.56 130.12 135.68 140.68 146.24 149.02 151.8 154.08 159.08 161.36 166.92 172.48 175.26 177.92 184.03 189.59 195.15 200.71 205.71 208.37 214.48 220.04 225.6 228.38 231.04 236.6 239.26 244.82 250.38 253.16 258.72\\\">(1) Returned Payments or Nonsufficient Funds Fee: $ 20.00</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:8.25pt\\\" transform=\\\"matrix(1 0 0 -1 22.7 495.159)\\\" x=\\\"0 3.663 9.779\\\">(2)</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 495.159)\\\" x=\\\"0 3.33 8.89 12.22 14.88 22.1 27.66 29.94 35.5 40.5 43.28 48.84 51.62 57.18 65.51 71.07 76.63 79.41 82.07 88.18 93.74 99.3 104.3 107.08 109.74 116.96 122.52 128.08 133.64 136.3 139.63 145.19 147.97 153.53 159.09 162.42 165.08 167.86 173.42 178.98 184.54 187.2 192.76 195.04 200.04 205.04 210.6 216.16 218.82 224.38 229.94 235.5 238.16 241.49 247.05 252.61 258.17 260.45 262.73 267.73 273.29 276.62 281.62 284.28 289.28 294.84 300.4 303.73 309.29 314.85 319.85 322.51 328.07 330.35 332.63 338.19 345.41 350.97 356.53 359.19 364.75 369.75 372.41 374.69 380.25 387.47\\\">(2) Reinstatement Fees: None (other than pickup and redelivery charges allowed by law)</text></g><clipPath id=\\\"clip1-2\\\"><path d=\\\"M 35 448 L 574 448 L 574 488 L 35 488 L 35 448 z \\\"/></clipPath><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 35.3 487.0594 L 573.1 487.0594 L 573.1 448.1043 L 35.3 448.1043 L 35.3 487.0594 z \\\"/><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 40.7 484.0594 L 567.7 484.0594 L 567.7 450.1043 L 40.7 450.1043 L 40.7 484.0594 z \\\"/><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 40.7 484.0594 L 52.7 484.0594 L 52.7 472.0594 L 40.7 472.0594 L 40.7 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 474.8406)\\\" x=\\\"0 6.67\\\">By</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 52.3699 484.0594 L 55.3699 484.0594 L 55.3699 472.0594 L 52.3699 472.0594 L 52.3699 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 52.3699 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 55.339 484.0594 L 90.339 484.0594 L 90.339 472.0594 L 55.339 472.0594 L 55.339 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 55.339 474.8406)\\\" x=\\\"0 5 7.28 12.84 18.4 20.68 26.24 31.8\\\">signing,</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 89.924 484.0594 L 92.924 484.0594 L 92.924 472.0594 L 89.924 472.0594 L 89.924 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 89.924 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 92.8931 484.0594 L 109.8931 484.0594 L 109.8931 472.0594 L 92.8931 472.0594 L 92.8931 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 92.8931 474.8406)\\\" x=\\\"0 5 10.56\\\">you</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 109.0162 484.0594 L 112.0162 484.0594 L 112.0162 472.0594 L 109.0162 472.0594 L 109.0162 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 109.0162 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 111.9853 484.0594 L 137.9853 484.0594 L 137.9853 472.0594 L 111.9853 472.0594 L 111.9853 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 111.9853 474.8406)\\\" x=\\\"0 5.56 11.12 14.45 20.01\\\">agree</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 137.5614 484.0594 L 140.5614 484.0594 L 140.5614 472.0594 L 137.5614 472.0594 L 137.5614 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 137.5615 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 140.5306 484.0594 L 157.5306 484.0594 L 157.5306 472.0594 L 140.5306 472.0594 L 140.5306 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 140.5306 474.8406)\\\" x=\\\"0 2.78 8.34 13.9\\\">that</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 157.2103 484.0594 L 160.2103 484.0594 L 160.2103 472.0594 L 157.2103 472.0594 L 157.2103 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 157.2103 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 160.1794 484.0594 L 177.1794 484.0594 L 177.1794 472.0594 L 160.1794 472.0594 L 160.1794 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 160.1794 474.8406)\\\" x=\\\"0 5 10.56\\\">you</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 176.3024 484.0594 L 179.3024 484.0594 L 179.3024 472.0594 L 176.3024 472.0594 L 176.3024 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 176.3024 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 179.2715 484.0594 L 217.2715 484.0594 L 217.2715 472.0594 L 179.2715 472.0594 L 179.2715 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 179.2715 474.8406)\\\" x=\\\"0 3.33 8.89 13.89 19.45 21.73 26.73 32.29\\\">received</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 217.128 484.0594 L 220.128 484.0594 L 220.128 472.0594 L 217.128 472.0594 L 217.128 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 217.128 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 220.0971 484.0594 L 226.0971 484.0594 L 226.0971 472.0594 L 220.0971 472.0594 L 220.0971 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 220.0971 474.8406)\\\" x=\\\"0\\\">a</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 225.6586 484.0594 L 228.6586 484.0594 L 228.6586 472.0594 L 225.6586 472.0594 L 225.6586 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.6586 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 228.6277 484.0594 L 258.6277 484.0594 L 258.6277 472.0594 L 228.6277 472.0594 L 228.6277 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 228.6277 474.8406)\\\" x=\\\"0 2.28 7.84 13.4 15.68 21.24 23.52\\\">legible</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 257.7147 484.0594 L 260.7147 484.0594 L 260.7147 472.0594 L 257.7147 472.0594 L 257.7147 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.7147 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 260.6838 484.0594 L 282.6838 484.0594 L 282.6838 472.0594 L 260.6838 472.0594 L 260.6838 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 260.6838 474.8406)\\\" x=\\\"0 5 10.56 16.12\\\">copy</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 281.8068 484.0594 L 284.8068 484.0594 L 284.8068 472.0594 L 281.8068 472.0594 L 281.8068 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.8068 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 284.7759 484.0594 L 293.7759 484.0594 L 293.7759 472.0594 L 284.7759 472.0594 L 284.7759 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 284.7759 474.8406)\\\" x=\\\"0 5.56\\\">of</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 293.1158 484.0594 L 296.1158 484.0594 L 296.1158 472.0594 L 293.1158 472.0594 L 293.1158 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 293.1158 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 296.0849 484.0594 L 312.0849 484.0594 L 312.0849 472.0594 L 296.0849 472.0594 L 296.0849 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 296.0849 474.8406)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 311.705 484.0594 L 314.705 484.0594 L 314.705 472.0594 L 311.705 472.0594 L 311.705 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 311.705 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 314.6742 484.0594 L 366.6742 484.0594 L 366.6742 472.0594 L 314.6742 472.0594 L 314.6742 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 314.6741 474.8406)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement.</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 366.3685 484.0594 L 369.3685 484.0594 L 369.3685 472.0594 L 366.3685 472.0594 L 366.3685 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 366.3685 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 369.3376 484.0594 L 387.3376 484.0594 L 387.3376 472.0594 L 369.3376 472.0594 L 369.3376 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 369.3376 474.8406)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 387.1306 484.0594 L 390.1306 484.0594 L 390.1306 472.0594 L 387.1306 472.0594 L 387.1306 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 387.1306 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 390.0997 484.0594 L 416.0997 484.0594 L 416.0997 472.0594 L 390.0997 472.0594 L 390.0997 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 390.0997 474.8406)\\\" x=\\\"0 5.56 11.12 14.45 20.01\\\">agree</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 415.6759 484.0594 L 418.6759 484.0594 L 418.6759 472.0594 L 415.6759 472.0594 L 415.6759 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 415.6759 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 418.645 484.0594 L 427.645 484.0594 L 427.645 472.0594 L 418.645 472.0594 L 418.645 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 418.645 474.8406)\\\" x=\\\"0 2.78\\\">to</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 426.9848 484.0594 L 429.9848 484.0594 L 429.9848 472.0594 L 426.9848 472.0594 L 426.9848 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 426.9848 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 429.9539 484.0594 L 443.9539 484.0594 L 443.9539 472.0594 L 429.9539 472.0594 L 429.9539 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 429.9539 474.8406)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 443.8553 484.0594 L 446.8553 484.0594 L 446.8553 472.0594 L 443.8553 472.0594 L 443.8553 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 443.8553 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 446.8244 484.0594 L 471.8244 484.0594 L 471.8244 472.0594 L 446.8244 472.0594 L 446.8244 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 446.8244 474.8406)\\\" x=\\\"0 2.78 8.34 11.67 20\\\">terms</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 471.8244 484.0594 L 474.8244 484.0594 L 474.8244 472.0594 L 471.8244 472.0594 L 471.8244 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 471.8244 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 474.7935 484.0594 L 483.7935 484.0594 L 483.7935 472.0594 L 474.7935 472.0594 L 474.7935 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 474.7935 474.8406)\\\" x=\\\"0 5.56\\\">of</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 483.1334 484.0594 L 486.1334 484.0594 L 486.1334 472.0594 L 483.1334 472.0594 L 483.1334 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 483.1334 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 486.1025 484.0594 L 502.1025 484.0594 L 502.1025 472.0594 L 486.1025 472.0594 L 486.1025 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 486.1025 474.8406)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 501.7226 484.0594 L 504.7226 484.0594 L 504.7226 472.0594 L 501.7226 472.0594 L 501.7226 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.7226 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 504.6917 484.0594 L 553.6918 484.0594 L 553.6918 472.0594 L 504.6917 472.0594 L 504.6917 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 504.6917 474.8406)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 553.6078 484.0594 L 556.6078 484.0594 L 556.6078 472.0594 L 553.6078 472.0594 L 553.6078 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.6078 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 556.5769 484.0594 L 568.5769 484.0594 L 568.5769 472.0594 L 556.5769 472.0594 L 556.5769 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 556.5769 474.8406)\\\" x=\\\"0 5.56\\\">on</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 567.7 484.0594 L 570.7 484.0594 L 570.7 472.0594 L 567.7 472.0594 L 567.7 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 40.7 472.741 L 51.7 472.741 L 51.7 460.741 L 40.7 460.741 L 40.7 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 463.5223)\\\" x=\\\"0 5.56 7.84\\\">all</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 50.8221 472.741 L 54.8221 472.741 L 54.8221 460.741 L 50.8221 460.741 L 50.8221 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 50.8221 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 54.1471 472.741 L 60.1471 472.741 L 60.1471 460.741 L 54.1471 460.741 L 54.1471 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 54.1471 463.5223)\\\" x=\\\"0\\\">6</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 59.7087 472.741 L 63.7087 472.741 L 63.7087 460.741 L 59.7087 460.741 L 59.7087 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 59.7087 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 63.0337 472.741 L 94.0337 472.741 L 94.0337 460.741 L 63.0337 460.741 L 63.0337 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 63.0337 463.5223)\\\" x=\\\"0 5.56 11.12 16.68 22.24 27.24\\\">pages,</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 93.0582 472.741 L 97.0582 472.741 L 97.0582 460.741 L 93.0582 460.741 L 93.0582 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 93.0582 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 96.3832 472.741 L 136.3832 472.741 L 136.3832 460.741 L 96.3832 460.741 L 96.3832 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 96.3832 463.5223)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24 28.52 34.08\\\">including</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 136.0317 472.741 L 140.0317 472.741 L 140.0317 460.741 L 136.0317 460.741 L 136.0317 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.0317 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 139.3568 472.741 L 153.3568 472.741 L 153.3568 460.741 L 139.3568 460.741 L 139.3568 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 139.3568 463.5223)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 153.2581 472.741 L 157.2581 472.741 L 157.2581 460.741 L 153.2581 460.741 L 153.2581 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 153.2581 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 156.5832 472.741 L 203.5832 472.741 L 203.5832 460.741 L 156.5832 460.741 L 156.5832 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 156.5832 463.5223)\\\" x=\\\"0 3.55 10.77 16.33 21.33 24.11 29.67 38 43.56\\\">&quot;Customer</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 203.4777 472.741 L 207.4777 472.741 L 207.4777 460.741 L 203.4777 460.741 L 203.4777 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 203.4777 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 206.8028 472.741 L 265.8028 472.741 L 265.8028 460.741 L 206.8028 460.741 L 206.8028 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 206.8028 463.5223)\\\" x=\\\"0 6.67 12.23 15.01 20.57 26.13 29.46 31.74 36.74 42.3 45.08 47.36 52.92\\\">Authorization</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 265.2891 472.741 L 269.2891 472.741 L 269.2891 460.741 L 265.2891 460.741 L 265.2891 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 265.2891 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 268.6142 472.741 L 280.6142 472.741 L 280.6142 460.741 L 268.6142 460.741 L 268.6142 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 268.6142 463.5223)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 280.2841 472.741 L 284.2841 472.741 L 284.2841 460.741 L 280.2841 460.741 L 280.2841 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.2841 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 283.6092 472.741 L 328.6092 472.741 L 328.6092 460.741 L 283.6092 460.741 L 283.6092 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 283.6092 463.5223)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46\\\">Payments</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 328.0721 472.741 L 332.0721 472.741 L 332.0721 460.741 L 328.0721 460.741 L 328.0721 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 328.0721 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 331.3972 472.741 L 344.3972 472.741 L 344.3972 460.741 L 331.3972 460.741 L 331.3972 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 331.3972 463.5223)\\\" x=\\\"0 5 7.28\\\">via</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 344.239 472.741 L 348.239 472.741 L 348.239 460.741 L 344.239 460.741 L 344.239 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 344.239 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 347.564 472.741 L 375.564 472.741 L 375.564 460.741 L 347.564 460.741 L 347.564 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 347.564 463.5223)\\\" x=\\\"0 6.67 13.89 21.11 23.89\\\">ACH,&quot;</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 375.0055 472.741 L 379.0055 472.741 L 379.0055 460.741 L 375.0055 460.741 L 375.0055 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.0054 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 378.3305 472.741 L 392.3305 472.741 L 392.3305 460.741 L 378.3305 460.741 L 378.3305 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 378.3305 463.5223)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 392.2319 472.741 L 396.2319 472.741 L 396.2319 460.741 L 392.2319 460.741 L 392.2319 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 392.2319 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 395.557 472.741 L 445.557 472.741 L 445.557 460.741 L 395.557 460.741 L 395.557 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 395.557 463.5223)\\\" x=\\\"0 3.55 10.22 13.55 19.11 21.39 24.17 27.5 33.06 35.84 38.12 43.68\\\">&quot;Arbitration</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 444.8001 472.741 L 448.8001 472.741 L 448.8001 460.741 L 444.8001 460.741 L 444.8001 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 444.8001 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 448.1252 472.741 L 480.1252 472.741 L 480.1252 460.741 L 448.1252 460.741 L 448.1252 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 448.1252 463.5223)\\\" x=\\\"0 7.22 9.5 15.06 20.62 25.62\\\">Clause</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 479.3117 472.741 L 483.3117 472.741 L 483.3117 460.741 L 479.3117 460.741 L 479.3117 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 479.3117 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 482.6368 472.741 L 499.6368 472.741 L 499.6368 460.741 L 482.6368 460.741 L 482.6368 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 482.6368 463.5223)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 499.3214 472.741 L 503.3214 472.741 L 503.3214 460.741 L 499.3214 460.741 L 499.3214 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.3214 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 502.6465 472.741 L 534.6465 472.741 L 534.6465 460.741 L 502.6465 460.741 L 502.6465 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 502.6465 463.5223)\\\" x=\\\"0 9.44 15 17.28 22.28 27.84\\\">Waiver</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 533.8184 472.741 L 537.8184 472.741 L 537.8184 460.741 L 533.8184 460.741 L 533.8184 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 533.8183 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 537.1434 472.741 L 546.1434 472.741 L 546.1434 460.741 L 537.1434 460.741 L 537.1434 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 537.1434 463.5223)\\\" x=\\\"0 5.56\\\">of</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 545.4833 472.741 L 549.4833 472.741 L 549.4833 460.741 L 545.4833 460.741 L 545.4833 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 545.4833 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 548.8083 472.741 L 567.8083 472.741 L 567.8083 460.741 L 548.8083 460.741 L 548.8083 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 548.8083 463.5223)\\\" x=\\\"0 5 10.56 13.89\\\">Jury</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 567.7 472.741 L 570.7 472.741 L 570.7 460.741 L 567.7 460.741 L 567.7 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 40.7 461.4227 L 187.7 461.4227 L 187.7 449.4227 L 40.7 449.4227 L 40.7 461.4227 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 452.2039)\\\" x=\\\"0 6.11 9.44 11.72 17.28 19.56 22.34 25.89 28.55 34.11 39.67 45.23 47.89 50.67 56.23 61.79 64.45 70.01 72.79 78.35 83.91 87.24 89.9 92.68 98.24 101.57 109.9 114.9 117.56 123.12 128.68 130.96 136.52 143.74\\\">Trial,&quot; and the other terms below.</text></g><clipPath id=\\\"clip1-3\\\"><path d=\\\"M 35 404 L 574 404 L 574 449 L 35 449 L 35 404 z \\\"/></clipPath><g clip-path=\\\"url(#clip1-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 435.7132)\\\" x=\\\"0 7.22 12.78 17.78 20.56 26.12 34.45 40.01 43.34 46 52.67 54.95 60.51 66.07 71.63 74.41 79.97 83.3 88.86\\\">Customer Signature:</text></g><clipPath id=\\\"clip1-4\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip1-4)\\\" fill=\\\"#fff\\\" stroke=\\\"none\\\" d=\\\"M 409.8 425.0359 L 439.8433 425.0359 L 439.8433 417.0244 L 409.8 417.0244 L 409.8 425.0359 z \\\"/><clipPath id=\\\"clip1-5\\\"><path d=\\\"M 409 417 L 440 417 L 440 426 L 409 426 L 409 417 z \\\"/></clipPath><path clip-path=\\\"url(#clip1-5)\\\" fill=\\\"#fff\\\" stroke=\\\"none\\\" d=\\\"M 409.8 425.0359 L 439.55 425.0359 L 439.55 423.9041 L 409.8 423.9041 L 409.8 425.0359 z \\\"/><path clip-path=\\\"url(#clip1-5)\\\" fill=\\\"#fff\\\" stroke=\\\"none\\\" d=\\\"M 409.8 425.0359 L 416.8 425.0359 L 416.8 423.0359 L 409.8 423.0359 L 409.8 425.0359 z \\\"/><g clip-path=\\\"url(#clip1-5)\\\"><text stroke=\\\"none\\\" fill=\\\"#fff\\\" style=\\\"font-family:f1-2; font-size:0.75pt\\\" transform=\\\"matrix(1 0 0 -1 409.8 424.1141)\\\" x=\\\"0 0.722 1.5 2.222 2.944 3.496 4.163 4.996 5.663 5.941\\\">DOCU_EMAIL</text></g><clipPath id=\\\"clip1-6\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip1-6)\\\" fill=\\\"#fff\\\" stroke=\\\"none\\\" d=\\\"M 164.15 417.4676 L 192.2025 417.4676 L 192.2025 406.447 L 164.15 406.447 L 164.15 417.4676 z \\\"/><clipPath id=\\\"clip1-7\\\"><path d=\\\"M 164 407 L 192 407 L 192 418 L 164 418 L 164 407 z \\\"/></clipPath><g clip-path=\\\"url(#clip1-7)\\\"><text stroke=\\\"none\\\" fill=\\\"#fff\\\" style=\\\"font-family:f1-2; font-size:0.75pt\\\" transform=\\\"matrix(1 0 0 -1 164.15 416.5457)\\\" x=\\\"0 0.722 1.5 2.222 2.944 3.496 4.163 4.441 5.219\\\">DOCU_SIGN</text></g><clipPath id=\\\"clip1-8\\\"><path d=\\\"M 35 343 L 389 343 L 389 405 L 35 405 L 35 343 z \\\"/></clipPath><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 392.5858)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 57.9314 392.5858)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 62.5791 392.5858)\\\" x=\\\"0 5.56 11.12 16.68 21.68\\\">Lease</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 89.8252 392.5858)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 94.4728 392.5858)\\\" x=\\\"0 7.22 12.78 21.11 26.67 32.23 37.79 42.79 44.7\\\">Company&apos;s</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 144.1798 392.5858)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.8275 392.5858)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 28.35 30.63 35.63 41.19\\\">authorized</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 195.5853 392.5858)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 200.2329 392.5858)\\\" x=\\\"0 5 7.28 12.84 18.4 23.96 26.74 32.3 35.63\\\">signature</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 241.4292 392.5858)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 246.0768 392.5858)\\\" x=\\\"0 2.28 7.84 13.4 15.68 20.68 26.24 29.02 34.58\\\">indicates</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 285.6618 392.5858)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 290.3094 392.5858)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 304.2108 392.5858)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 308.8584 392.5858)\\\" x=\\\"0 5.56 11.12 16.68 21.68\\\">Lease</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 336.1045 392.5858)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 340.7521 392.5858)\\\" x=\\\"0 7.22 12.78 21.11 26.67 32.23 37.79\\\">Company</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.55 392.5858)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 381.2675)\\\" x=\\\"0 5.56 11.12\\\">has</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 56.823 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 59.5613 381.2675)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.68 29.46 35.02\\\">accepted</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 100.1472 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 102.8854 381.2675)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 116.7868 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 119.525 381.2675)\\\" x=\\\"0 2.78 8.34 11.67 20 25\\\">terms,</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 147.3033 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 150.0416 381.2675)\\\" x=\\\"0 5 10.56 16.12 21.68 23.96 26.74 29.02 34.58 40.14\\\">conditions</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 195.1881 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 197.9263 381.2675)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 214.6109 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 217.3491 381.2675)\\\" x=\\\"0 5.56 11.12 13.4 15.68 21.24 26.8 29.58 31.86 37.42 42.98\\\">obligations</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 265.3374 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 268.0756 381.2675)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.4154 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 279.1537 381.2675)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 293.055 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 295.7933 381.2675)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 344.7093 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 347.4475 381.2675)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 364.1321 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 366.8703 381.2675)\\\" x=\\\"0 2.78 8.34 13.9\\\">that</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.55 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 369.9491)\\\" x=\\\"0 2.78 8.34 13.9 16.56 22.12 27.68 33.24 38.24 43.8 46.46 53.68 59.24 67.57 73.13 78.69 84.25 89.25 91.91 97.47 103.03 106.36 111.92 117.48 122.48 125.14 127.92 133.48 136.14 138.92 144.48 146.76 151.76 154.42 161.09 166.65 169.98 175.54 181.1 189.43 194.99 200.55 203.33\\\">the Lease Company agrees to this Agreement.</text></g><clipPath id=\\\"clip1-10\\\"><path d=\\\"M 388 343 L 574 343 L 574 405 L 388 405 L 388 343 z \\\"/></clipPath><g clip-path=\\\"url(#clip1-10)\\\"><g transform=\\\"matrix(0.75 0 0 -0.7619 416.525 401.8046)\\\"><image xlink:href=\\\"data:image/png;base64,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\\\" width=\\\"172\\\" height=\\\"42\\\" id=\\\"img43-0-9\\\"/></g></g><g clip-path=\\\"url(#clip1-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 394.35 359.0858)\\\" x=\\\"0 6.67 12.23 17.79 23.35 26.01 33.23 39.34 47.12 49.78 55.34 60.9 68.12 70.78 77.45 82.45 85.23 87.89 96.22 101.78 104.56 107.34 110 116.67 120 125.56 132.78 138.34 140.62 146.18\\\">Snap RTO LLC By: Matt Browning</text></g><g clip-path=\\\"url(#clip1-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 394.35 347.7675)\\\" x=\\\"0 6.11 8.39 11.17 13.45 19.01 21.79 24.45 31.67 39.45\\\">Title: COO</text></g><clipPath id=\\\"clip1-11\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 770.2 L 573.6 770.2 L 573.6 769.2 L 34.8 769.2 L 34.8 770.2 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.6 769.2 L 573.6 769.2 L 573.6 487.5594 L 572.6 487.5594 L 572.6 769.2 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 769.2 L 35.8 769.2 L 35.8 487.5594 L 34.8 487.5594 L 34.8 769.2 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 487.5594 L 573.6 487.5594 L 573.6 486.5594 L 34.8 486.5594 L 34.8 487.5594 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.6 486.5594 L 573.6 486.5594 L 573.6 448.6043 L 572.6 448.6043 L 572.6 486.5594 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 486.5594 L 35.8 486.5594 L 35.8 448.6043 L 34.8 448.6043 L 34.8 486.5594 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 448.6043 L 573.6 448.6043 L 573.6 447.6043 L 34.8 447.6043 L 34.8 448.6043 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.6 447.6043 L 573.6 447.6043 L 573.6 405.3046 L 572.6 405.3046 L 572.6 447.6043 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 447.6043 L 35.8 447.6043 L 35.8 405.3046 L 34.8 405.3046 L 34.8 447.6043 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 405.3046 L 389.45 405.3046 L 389.45 404.3046 L 34.8 404.3046 L 34.8 405.3046 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 344.1679 L 389.45 344.1679 L 389.45 343.1679 L 34.8 343.1679 L 34.8 344.1679 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 404.3046 L 35.8 404.3046 L 35.8 344.1679 L 34.8 344.1679 L 34.8 404.3046 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 389.45 405.3046 L 573.6 405.3046 L 573.6 404.3046 L 389.45 404.3046 L 389.45 405.3046 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 389.45 344.1679 L 573.6 344.1679 L 573.6 343.1679 L 389.45 343.1679 L 389.45 344.1679 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.6 404.3046 L 573.6 404.3046 L 573.6 344.1679 L 572.6 344.1679 L 572.6 404.3046 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 388.45 404.3046 L 389.45 404.3046 L 389.45 344.1679 L 388.45 344.1679 L 388.45 404.3046 z \\\"/><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 331.4491)\\\" x=\\\"0 7.22 15 21.11 23.89 31.11\\\">NOTICE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 70.8783 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 73.8798 331.4491)\\\" x=\\\"0 6.11\\\">TO</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 87.7666 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 90.7681 331.4491)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 110.7681 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 113.7696 331.4491)\\\" x=\\\"0 7.22 15 22.22 28.89 36.11 44.44 51.11 58.33\\\">CONSUMER:</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 174.8829 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 177.8844 331.4491)\\\" x=\\\"0 6.67 14.45\\\">YOU</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 199.5543 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 202.5558 331.4491)\\\" x=\\\"0 7.22 13.89 20.56\\\">HAVE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 229.7873 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 232.7888 331.4491)\\\" x=\\\"0 7.22\\\">NO</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.7888 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 250.7903 331.4491)\\\" x=\\\"0 7.78 17.22 24.44 31.11 38.33 45 52.22 55\\\">OWNERSHIP</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.4603 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 315.4618 331.4491)\\\" x=\\\"0 7.22 10 17.78 25 31.11\\\">RIGHTS</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 353.2401 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 356.2416 331.4491)\\\" x=\\\"0 2.78\\\">IN</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 366.2416 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 369.2431 331.4491)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 389.2431 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 392.2447 331.4491)\\\" x=\\\"0 6.67 13.89 21.67 28.34 35.01 42.23 48.34\\\">PROPERTY</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.2544 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 450.256 331.4491)\\\" x=\\\"0 7.22 14.44 20 26.67 33.34\\\">UNLESS</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 490.2706 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 493.2721 331.4491)\\\" x=\\\"0 6.67 13.89\\\">AND</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 514.3854 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 517.3869 331.4491)\\\" x=\\\"0 7.22 14.44 20.55 23.33\\\">UNTIL</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 546.2785 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 549.2801 331.4491)\\\" x=\\\"0 6.67 14.45\\\">YOU</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 320.1308)\\\" x=\\\"0 6.67 12.23 18.9 26.12\\\">ELECT</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 65.3315 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 71.359 320.1308)\\\" x=\\\"0 6.11\\\">TO</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 85.2457 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 91.2732 320.1308)\\\" x=\\\"0 6.67 13.34 20.56 28.34 36.67\\\">BECOME</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 134.613 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 140.6406 320.1308)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.6406 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 166.6681 320.1308)\\\" x=\\\"0 7.78 17.22 24.44 31.11\\\">OWNER</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 204.9982 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 211.0257 320.1308)\\\" x=\\\"0 7.78\\\">OF</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 224.9124 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 230.9399 320.1308)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 250.9399 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 256.9675 320.1308)\\\" x=\\\"0 6.67 13.89 21.67 28.34 35.01 42.23 48.34\\\">PROPERTY</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 311.9772 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 318.0048 320.1308)\\\" x=\\\"0 6.67 12.78 18.89 25.56\\\">AFTER</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 350.7831 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 356.8106 320.1308)\\\" x=\\\"0 8.33 15 21.67 24.45 31.67\\\">MAKING</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 396.2588 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 402.2864 320.1308)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 422.2864 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 428.3139 320.1308)\\\" x=\\\"0 7.22 13.89 21.11 27.78 34.45 41.12 47.79 55.01\\\">NECESSARY</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.9984 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 496.026 320.1308)\\\" x=\\\"0 6.67 13.34 20.01 28.34 35.01 42.23 48.34\\\">PAYMENTS</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.0357 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0633 320.1308)\\\" x=\\\"0 6.11\\\">TO</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 308.8124)\\\" x=\\\"0 6.67 13.89 21.67 28.89 31.67 38.89\\\">ACQUIRE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 78.6615 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 82.9084 308.8124)\\\" x=\\\"0 7.78 17.22 24.44 31.11 38.33 45 52.22 55 61.67\\\">OWNERSHIP,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 147.3567 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 151.6035 308.8124)\\\" x=\\\"0 6.67 13.89\\\">AND</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 172.7168 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 176.9637 308.8124)\\\" x=\\\"0 6.67 14.45\\\">YOU</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 198.6336 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 202.8805 308.8124)\\\" x=\\\"0 7.22 13.89 20.56\\\">HAVE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 230.112 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 234.3589 308.8124)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 254.3589 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 258.6057 308.8124)\\\" x=\\\"0 5.56 12.23 20.01 26.68\\\">LEGAL</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.8469 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 295.0938 308.8124)\\\" x=\\\"0 6.67 13.89 20 27.22 35 42.22 45 51.11\\\">AUTHORITY</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 352.8722 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 357.119 308.8124)\\\" x=\\\"0 6.11\\\">TO</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.0058 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 375.2527 308.8124)\\\" x=\\\"0 6.67 13.89 21.11 27.78 34.45\\\">ACCEPT</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 415.8142 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 420.0611 308.8124)\\\" x=\\\"0 6.11 8.89 15 20.56\\\">TITLE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.2876 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 451.5345 308.8124)\\\" x=\\\"0 6.11\\\">TO</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 465.4212 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 469.6681 308.8124)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.6681 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 493.915 308.8124)\\\" x=\\\"0 6.67 13.89 21.67 28.34 35.01 42.23 48.34 55.01\\\">PROPERTY.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.7031 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 555.95 308.8124)\\\" x=\\\"0 7.22\\\">DO</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 297.494)\\\" x=\\\"0 7.22 15\\\">NOT</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 54.2084 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 57.2636 297.494)\\\" x=\\\"0 6.67 9.45 17.23\\\">SIGN</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 81.7118 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 84.767 297.494)\\\" x=\\\"0 6.11 13.33 16.11\\\">THIS</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 107.5453 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 110.6005 297.494)\\\" x=\\\"0 6.67 14.45 21.67 28.34 35.01 43.34 50.01 57.23\\\">AGREEMENT</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 173.9404 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 176.9956 297.494)\\\" x=\\\"0 6.67 13.34 19.45 27.23 34.45\\\">BEFORE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 218.1137 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 221.1689 297.494)\\\" x=\\\"0 6.67 14.45\\\">YOU</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 242.8389 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 245.8941 297.494)\\\" x=\\\"0 7.22 13.89 20.56\\\">READ</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 273.6773 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 276.7325 297.494)\\\" x=\\\"0 6.67 12.23\\\">ALL</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 294.5254 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 297.5806 297.494)\\\" x=\\\"0 6.67 13.34 21.12 27.79\\\">PAGES</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 332.0386 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 335.0938 297.494)\\\" x=\\\"0 7.78\\\">OF</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.9805 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 352.0357 297.494)\\\" x=\\\"0 2.78\\\">IT</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 360.9225 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 363.9777 297.494)\\\" x=\\\"0 7.78\\\">OR</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 378.9777 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 382.0329 297.494)\\\" x=\\\"0 2.78\\\">IF</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 390.9196 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 393.9748 297.494)\\\" x=\\\"0 2.78\\\">IT</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.8615 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 405.9167 297.494)\\\" x=\\\"0 7.22 15 22.22 28.33 35 37.78 45\\\">CONTAINS</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 457.5866 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 460.6418 297.494)\\\" x=\\\"0 6.67 13.89\\\">ANY</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 481.2033 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 484.2585 297.494)\\\" x=\\\"0 6.67 12.23 18.9 26.12\\\">BLANK</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 517.0515 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 520.1067 297.494)\\\" x=\\\"0 6.67 13.34 20.01 27.23\\\">SPACE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 554.0081 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0633 297.494)\\\" x=\\\"0 6.11\\\">TO</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 286.1757)\\\" x=\\\"0 6.67\\\">BE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 46.4398 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 49.3908 286.1757)\\\" x=\\\"0 6.11 8.89 14.45 20.01 26.68\\\">FILLED</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 83.2922 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 86.2431 286.1757)\\\" x=\\\"0 2.78 10\\\">IN.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 99.0214 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 101.9724 286.1757)\\\" x=\\\"0 6.67 14.45\\\">YOU</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 123.6423 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 126.5933 286.1757)\\\" x=\\\"0 6.67 13.89\\\">ARE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 147.1548 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 150.1057 286.1757)\\\" x=\\\"0 6.67 13.89 20 22.78 28.89 34.45 41.12\\\">ENTITLED</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 198.4456 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 201.3965 286.1757)\\\" x=\\\"0 6.11\\\">TO</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 215.2832 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 218.2342 286.1757)\\\" x=\\\"0\\\">A</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 224.9041 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 227.8551 286.1757)\\\" x=\\\"0 7.22 15 23.33 30 35.56 42.23 48.34 55.01 60.57\\\">COMPLETELY</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 295.0963 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 298.0472 286.1757)\\\" x=\\\"0 6.11 8.89 14.45 20.01 26.68 33.9 37.23 40.01\\\">FILLED-IN</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 345.2787 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 348.2296 286.1757)\\\" x=\\\"0 7.22 15 21.67\\\">COPY</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 376.5695 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 379.5204 286.1757)\\\" x=\\\"0 7.78\\\">OF</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.4071 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 396.3581 286.1757)\\\" x=\\\"0 6.11 13.33 16.11\\\">THIS</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.1364 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 422.0874 286.1757)\\\" x=\\\"0 6.67 14.45 21.67 28.34 35.01 43.34 50.01 57.23\\\">AGREEMENT</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 485.4272 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 488.3781 286.1757)\\\" x=\\\"0 9.44 16.66 23.33\\\">WHEN</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 518.9299 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 521.8809 286.1757)\\\" x=\\\"0 6.67 14.45\\\">YOU</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 543.5508 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 546.5017 286.1757)\\\" x=\\\"0 6.67 9.45 17.23\\\">SIGN</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 274.8573)\\\" x=\\\"0 2.78 8.89\\\">IT.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 261.539)\\\" x=\\\"0 6.11 12.78 20 28.33 31.11 38.33 45 51.11 53.89 61.67 68.89\\\">TERMINATION.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 104.765 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 108.0706 261.539)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 125.8636 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 129.1692 261.539)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 148.0608 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 151.3663 261.539)\\\" x=\\\"0 2.78 8.34 11.67 20 22.28 27.84 33.4 36.18\\\">terminate</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 193.1095 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 196.4151 261.539)\\\" x=\\\"0 3.33 8.89 14.45 20.01\\\">(end)</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 219.7598 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 223.0654 261.539)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.6855 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 241.9911 261.539)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.9071 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 294.2127 261.539)\\\" x=\\\"0 5.56\\\">at</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.5525 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 305.8581 261.539)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.7595 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 323.065 261.539)\\\" x=\\\"0 5.56 11.12\\\">end</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 339.7496 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 343.0552 261.539)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.395 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 354.7006 261.539)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 370.8236 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 374.1292 261.539)\\\" x=\\\"0 2.28 7.84 13.4 18.4\\\">lease</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 398.0941 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 401.3996 261.539)\\\" x=\\\"0 2.78 8.34 11.67\\\">term</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 421.3996 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 424.7052 261.539)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 435.2667 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 438.5723 261.539)\\\" x=\\\"0 5 10.56 13.34 15.62 20.62 23.4 28.4 30.68 36.24\\\">satisfying</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 480.3741 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 483.6796 261.539)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 497.581 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 500.8866 261.539)\\\" x=\\\"0 3.33 8.89 14.45 20.01 22.29 25.62 31.18 39.51 45.07 50.63 53.41\\\">requirements</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.3046 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 562.6101 261.539)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 250.2206)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 48.7201 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 51.7761 250.2206)\\\" x=\\\"0 5.56 11.12 14.45 20.01 25.57 28.9 34.46 40.02 45.58\\\">paragraph.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 100.1453 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 103.2013 250.2206)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 120.9943 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 124.0503 250.2206)\\\" x=\\\"0 8.33 13.89 18.89\\\">must</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 145.7202 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.7762 250.2206)\\\" x=\\\"0 5.56 8.89 14.45 22.78 28.34 31.12 33.4\\\">promptly</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 187.1795 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 190.2355 250.2206)\\\" x=\\\"0 3.33 8.89 11.67 17.23 20.56\\\">return</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 216.3586 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 219.4146 250.2206)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.3159 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 236.3719 250.2206)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 274.1649 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 277.2209 250.2206)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 285.5608 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 288.6168 250.2206)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.1783 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 302.2343 250.2206)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 310.0761 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 313.1321 250.2206)\\\" x=\\\"0 5.56 10.56 15.56 21.12 24.45 30.01 35.57 41.13 46.13\\\">accordance</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 364.8313 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 367.8874 250.2206)\\\" x=\\\"0 7.22 9.5 12.28\\\">with</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 385.7291 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 388.7852 250.2206)\\\" x=\\\"0 5.56 11.12\\\">our</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.2383 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 406.2943 250.2206)\\\" x=\\\"0 5.56 7.84 11.17 16.73 21.73 24.51 26.79 32.35 37.91\\\">directions</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 449.2093 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 452.2653 250.2206)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.9499 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 472.0059 250.2206)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 488.129 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 491.185 250.2206)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57 33.35\\\">amounts</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.5395 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 532.5955 250.2206)\\\" x=\\\"0 5.56 10.56 15.56 18.89 24.45 30.01 35.57\\\">accrued.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 238.9022)\\\" x=\\\"0 9.44\\\">We</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 48.1 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 51.2677 238.9022)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 70.1593 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 73.327 238.9022)\\\" x=\\\"0 2.78 8.34 11.67 20 22.28 27.84 33.4 36.18\\\">terminate</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 115.0702 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 118.2379 238.9022)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 133.858 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 137.0257 238.9022)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 185.9417 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 189.1094 238.9022)\\\" x=\\\"0 5.56\\\">at</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 197.4493 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 200.617 238.9022)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 216.74 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 219.9077 238.9022)\\\" x=\\\"0 2.78 5.06 13.39\\\">time</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.8579 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 242.0256 238.9022)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.0842 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 250.2519 238.9022)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 266.375 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 269.5427 238.9022)\\\" x=\\\"0 5.56 8.89\\\">are</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 283.9958 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 287.1635 238.9022)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 295.0053 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 298.173 238.9022)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 27.3\\\">default</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 328.256 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 331.4237 238.9022)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 339.7636 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 342.9313 238.9022)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 362.3844 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 365.5521 238.9022)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.9066 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.0743 238.9022)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 415.9659 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 419.1336 238.9022)\\\" x=\\\"0 5.56 8.34 13.9 19.46\\\">other</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 441.9266 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 445.0943 238.9022)\\\" x=\\\"0 5.56 11.12 13.4 15.68 21.24 26.8 29.58 31.86 37.42 42.98 47.98\\\">obligations.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 495.8609 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 499.0286 238.9022)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 516.8216 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 519.9893 238.9022)\\\" x=\\\"0 8.33 13.89 18.89\\\">must</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 541.6592 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 544.8269 238.9022)\\\" x=\\\"0 3.33 8.89 11.67 17.23 20.56\\\">return</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 227.5839)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.0014 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 50.6007 227.5839)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 88.3937 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 91.9931 227.5839)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 100.3329 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 103.9323 227.5839)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 117.8336 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 121.433 227.5839)\\\" x=\\\"0 5.56 7.84 13.4 18.4\\\">place</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 145.3978 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.9972 227.5839)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 161.7804 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 165.3797 227.5839)\\\" x=\\\"0 5.56 11.12 16.12 18.4 23.96 29.52 35.08 37.86 43.42\\\">designate.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 211.5858 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 215.1852 227.5839)\\\" x=\\\"0 7.22 12.78 18.34\\\">Upon</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 239.0914 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 242.6908 227.5839)\\\" x=\\\"0 2.78 8.34 11.67 20 22.28 27.84 33.4 36.18 38.46 44.02 49.58\\\">termination,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 295.0541 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 298.6534 227.5839)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 314.7765 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 318.3758 227.5839)\\\" x=\\\"0 5.56 11.12 14.45 20.01\\\">agree</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 343.952 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 347.5513 227.5839)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.8912 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 359.4905 227.5839)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.6136 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 379.2129 227.5839)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.1143 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 396.7137 227.5839)\\\" x=\\\"0 2.78 8.34 10.62 12.9 18.46 25.68 27.96 33.52\\\">following</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 435.8006 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 439.3999 227.5839)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01 30.57 35.57\\\">charges:</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 477.7544 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 481.3538 227.5839)\\\" x=\\\"0 6.67 12.23\\\">Any</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 498.5852 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 502.1846 227.5839)\\\" x=\\\"0 5.56 11.12 16.68 22.24 24.52\\\">unpaid</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 532.2725 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 535.8718 227.5839)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 216.2655)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46 44.46\\\">Payments,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 80.3412 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 83.8455 216.2655)\\\" x=\\\"0 2.78 8.34 13.9\\\">fees</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 102.7469 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 106.2512 216.2655)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 122.9358 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 126.4401 216.2655)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01 30.57 35.57\\\">charges,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 164.7946 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 168.299 216.2655)\\\" x=\\\"0 5.56 7.84 13.4\\\">plus</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 186.7023 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 190.2066 216.2655)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 206.3297 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 209.834 216.2655)\\\" x=\\\"0 5.56 8.34 11.12 13.4 18.4 20.68 26.24\\\">official</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.3545 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 241.8588 216.2655)\\\" x=\\\"0 2.78 8.34 13.9\\\">fees</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 260.7602 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 264.2645 216.2655)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.9491 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 284.4534 216.2655)\\\" x=\\\"0 2.78 8.34 13.34 18.9\\\">taxes</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.3548 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 311.8591 216.2655)\\\" x=\\\"0 2.28 10.61 16.17 21.73 26.73 32.29\\\">imposed</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 349.7156 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 353.2199 216.2655)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 361.0617 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 364.566 216.2655)\\\" x=\\\"0 5 10.56 16.12 21.68 27.24 32.24 35.02 37.3 42.86\\\">connection</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 412.9938 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 416.4981 216.2655)\\\" x=\\\"0 7.22 9.5 12.28\\\">with</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.3399 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 437.8442 216.2655)\\\" x=\\\"0 2.78 8.34 11.67 20 22.28 27.84 33.4 36.18 38.46 44.02 49.58\\\">termination,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 490.2075 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 493.7118 216.2655)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24 28.52 34.08 39.64\\\">including,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 536.1386 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 539.6429 216.2655)\\\" x=\\\"0 5.56 11.12\\\">but</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.5443 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0486 216.2655)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 204.9472)\\\" x=\\\"0 2.28 4.56 12.89 15.17 17.95 23.51\\\">limited</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 62.1723 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 64.9349 204.9472)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 73.2747 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 76.0373 204.9472)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 92.1604 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 94.923 204.9472)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64\\\">applicable</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 140.133 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 142.8956 204.9472)\\\" x=\\\"0 2.78 5.06 10.62 16.18 21.18\\\">fines,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 166.8555 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 169.6182 204.9472)\\\" x=\\\"0 5 10.56 13.89 18.89 24.45 30.01 33.34 38.9 44.46 49.46\\\">surcharges,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 221.8642 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 224.6269 204.9472)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 241.3114 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 244.0741 204.9472)\\\" x=\\\"0 2.78 8.34 13.34 18.9 23.9\\\">taxes.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 270.7537 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 273.5164 204.9472)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.3093 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 294.0719 204.9472)\\\" x=\\\"0 8.33 13.89 18.89\\\">must</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 315.7419 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 318.5045 204.9472)\\\" x=\\\"0 5.56 7.84 12.84\\\">also</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 336.9078 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 339.6704 204.9472)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.7935 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 358.5561 204.9472)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 374.6791 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 377.4417 204.9472)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.12 31.12 33.4 38.4\\\">excessive</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 421.4066 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 424.1692 204.9472)\\\" x=\\\"0 7.22 12.78 18.34\\\">wear</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 445.844 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 448.6066 204.9472)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 465.2912 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 468.0538 204.9472)\\\" x=\\\"0 5.56 10.56\\\">use</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.1769 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 486.9395 204.9472)\\\" x=\\\"0 2.78 8.34 13.9\\\">fees</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 505.8408 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 508.6035 204.9472)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 519.165 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 521.9276 204.9472)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29 32.85\\\">provided</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 560.3456 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 563.1082 204.9472)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 193.6288)\\\" x=\\\"0 2.78 8.34 10.62 15.62 18.28 24.95 30.51 33.84 39.4 44.96 53.29 58.85 64.41 67.19 69.97 72.63 77.63 83.19 88.75 91.03 96.59 101.59 104.37 107.03 109.81 115.37 118.03 120.31 122.59 130.92 133.2 135.98 141.54 144.32 146.6 152.16 157.72 162.72 165.38 170.94 173.72 176.38 181.94 187.5 193.06 195.34 197.62 202.62 208.18 213.74 216.02 221.58 224.24 226.52 232.08 239.3\\\">this Agreement, subject to limitations of applicable law.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 180.3105)\\\" x=\\\"0 8.33 15 17.78 25 31.11 37.78 45 51.67 58.89 66.11 72.78\\\">MAINTENANCE.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 108.6615 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 111.6829 180.3105)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 129.4758 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 132.4972 180.3105)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.5597 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 149.581 180.3105)\\\" x=\\\"0 5 10.56 16.12\\\">keep</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 171.2656 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 174.287 180.3105)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 188.1883 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 191.2097 180.3105)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 229.0026 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 232.024 180.3105)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 239.8658 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 242.8871 180.3105)\\\" x=\\\"0 5.56 11.12 16.68\\\">good</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 265.1332 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 268.1546 180.3105)\\\" x=\\\"0 7.22 12.78 16.11 21.11 23.39 28.95\\\">working</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.6712 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 305.6925 180.3105)\\\" x=\\\"0 5.56 8.89 14.45 20.01\\\">order</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.0373 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 332.0586 180.3105)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.7432 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 351.7645 180.3105)\\\" x=\\\"0 3.33 8.89 14.45 20.01 22.29 25.62\\\">repair.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.1679 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 383.1892 180.3105)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 400.9822 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 404.0035 180.3105)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 418.066 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 421.0874 180.3105)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 437.2104 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 440.2318 180.3105)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.3548 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 459.3762 180.3105)\\\" x=\\\"0 5.56 11.12 16.68 20.01 25.57 28.35 30.63 36.19\\\">operating</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.134 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 504.1553 180.3105)\\\" x=\\\"0 5 10.56 15.56 18.34 23.34\\\">costs.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 530.2735 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 533.2948 180.3105)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.0878 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 554.1092 180.3105)\\\" x=\\\"0 7.22 9.5 11.78 14.06\\\">will,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 168.9921)\\\" x=\\\"0 5.56\\\">at</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 41.4398 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 44.1473 168.9921)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 63.6004 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 66.3078 168.9921)\\\" x=\\\"0 5.56 10.56 16.12 21.68 27.24 32.24 37.8\\\">expense,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 106.8938 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 109.6012 168.9921)\\\" x=\\\"0 5 10.56 13.89 18.89 21.17 26.17\\\">service</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 141.3346 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 144.042 168.9921)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 157.9434 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 160.6508 168.9921)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 198.4438 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 201.1512 168.9921)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 208.993 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 211.7005 168.9921)\\\" x=\\\"0 5.56 10.56 15.56 21.12 24.45 30.01 35.57 41.13 46.13\\\">accordance</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 263.3997 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 266.1071 168.9921)\\\" x=\\\"0 7.22 9.5 12.28\\\">with</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 283.9489 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 286.6563 168.9921)\\\" x=\\\"0 8.33 13.89 19.45 25.01 27.79 33.35 38.35 41.13 46.69 50.02 55.58\\\">manufacturer</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 345.5723 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 348.2798 168.9921)\\\" x=\\\"0 5 7.78 13.34 18.9 24.46 30.02 33.35 38.91 43.91\\\">standards.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 394.9741 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 397.6815 168.9921)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.2382 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 405.9456 168.9921)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.847 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 422.5544 168.9921)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 460.3474 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 463.0548 168.9921)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 470.3351 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 473.0425 168.9921)\\\" x=\\\"0 3.33 8.89 13.89 19.45 21.73 24.01 29.57 35.13\\\">recalled,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 510.9576 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 513.665 168.9921)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.788 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 532.4955 168.9921)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 546.558 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 549.2654 168.9921)\\\" x=\\\"0 5.56 11.12 16.12\\\">have</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 157.6738)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.0014 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 51.506 157.6738)\\\" x=\\\"0 3.33 8.89 13.89 19.45 21.73\\\">recall</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 75.5196 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 80.0242 157.6738)\\\" x=\\\"0 3.33 8.89 14.45 20.01 22.29 25.62\\\">repairs</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 110.6492 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 115.1538 157.6738)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 124.0454 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 128.5499 157.6738)\\\" x=\\\"0 5 10.56 13.89 18.89 21.17 26.17\\\">service</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.2833 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 164.7879 157.6738)\\\" x=\\\"0 5.56 11.12 14.45 17.23 22.79 26.12 34.45 40.01 45.57\\\">performed.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 213.1424 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 217.647 157.6738)\\\" x=\\\"0 2.78\\\">In</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.9868 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 230.4914 157.6738)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 244.3928 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 248.8974 157.6738)\\\" x=\\\"0 5.56 10.56 16.12 21.68\\\">event</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 273.3603 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 277.8648 157.6738)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.7662 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 296.2708 157.6738)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 334.0637 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.5683 157.6738)\\\" x=\\\"0 5.56 11.12\\\">has</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 354.6914 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 359.1959 157.6738)\\\" x=\\\"0 8.33 13.89 18.89 24.45 30.01 35.57 37.85 42.85 48.41\\\">mechanical</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 409.8942 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 414.3988 157.6738)\\\" x=\\\"0 5.56 8.89 14.45 20.01 22.29 27.85 36.18 41.18\\\">problems,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 458.3636 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 462.8682 157.6738)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 478.9912 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 483.4958 157.6738)\\\" x=\\\"0 5.56 11.12 14.45 20.01\\\">agree</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.072 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 513.5766 157.6738)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.9164 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 526.421 157.6738)\\\" x=\\\"0 3.33 8.89 11.67 17.23 20.56\\\">return</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.544 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0486 157.6738)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 146.3554)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79 40.45 43.23 48.79 51.45 57.01 62.01 64.67 67.45 73.01 76.34 79 84.56 89.56 95.12 97.4 102.96 108.52 111.3 113.58 119.14 124.7 127.48 130.14 135.7 141.26 146.82 149.6 152.26 154.54 157.32 159.98 165.54 171.1 176.1 181.66 186.66 191.66 197.22 200.55 205.55 208.33 210.99 214.32 219.88 225.44 231 233.28 236.61\\\">Property to us for evaluation, and, if necessary, repair.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 133.037)\\\" x=\\\"0 6.67 12.78 19.45 26.67 33.89 40.56 47.78 55\\\">STANDARDS</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 94.7748 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 97.7681 133.037)\\\" x=\\\"0 6.11 13.89\\\">FOR</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 118.8765 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 121.8699 133.037)\\\" x=\\\"0 9.44 16.11 22.78\\\">WEAR</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 151.8699 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 154.8632 133.037)\\\" x=\\\"0 6.67 13.89\\\">AND</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 175.9765 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 178.9698 133.037)\\\" x=\\\"0 7.22 13.89 20.56\\\">USE.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 202.3096 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 205.303 133.037)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 223.0959 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 226.0893 133.037)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 244.9809 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 247.9742 133.037)\\\" x=\\\"0 5.56\\\">be</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.0972 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 262.0906 133.037)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01 30.57\\\">charged</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 298.2283 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 301.2216 133.037)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.8915 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 315.8849 133.037)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.12\\\">excess</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 347.0079 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 350.0012 133.037)\\\" x=\\\"0 7.22 12.78 18.34\\\">wear</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.676 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 374.6694 133.037)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 391.3539 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 394.3473 133.037)\\\" x=\\\"0 5.56 10.56\\\">use</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 410.4703 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 413.4636 133.037)\\\" x=\\\"0 7.22 12.78 18.34\\\">when</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 437.3699 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 440.3632 133.037)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.4863 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 459.4796 133.037)\\\" x=\\\"0 3.33 8.89 11.67 17.23 20.56\\\">return</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 485.6026 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 488.596 133.037)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 502.4973 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 505.4907 133.037)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 543.2836 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 546.277 133.037)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 554.6168 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.6101 133.037)\\\" x=\\\"0 5.56 10.56\\\">us.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 121.7187)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 50.3314 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 54.7254 121.7187)\\\" x=\\\"0 2.78 8.34 10.62 12.9 18.46 25.68 27.96 33.52\\\">following</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 93.8123 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 98.2062 121.7187)\\\" x=\\\"0 5 7.78 13.34 18.9 24.46 30.02 33.35 38.91\\\">standards</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 142.1222 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 146.5161 121.7187)\\\" x=\\\"0 5.56 11.12 16.68 18.96\\\">apply</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 170.4809 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 174.8748 121.7187)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 186.5447 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 190.9386 121.7187)\\\" x=\\\"0 5.56 11.12 13.9 19.46 22.79 31.12 33.4 38.96 41.24 46.8\\\">determining</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 243.3068 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 247.7007 121.7187)\\\" x=\\\"0 5.56 11.12 14.45 20.01 25.57 30.57 36.13 41.69 47.25 52.81 55.09\\\">unreasonable</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.3648 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 312.7587 121.7187)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 321.6503 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 326.0442 121.7187)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.12\\\">excess</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 357.1672 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 361.5611 121.7187)\\\" x=\\\"0 7.22 12.78 18.34\\\">wear</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.2359 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 387.6298 121.7187)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 404.3144 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 408.7083 121.7187)\\\" x=\\\"0 5.56 10.56 16.12\\\">use:</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 427.6097 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 432.0036 121.7187)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 449.7965 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 454.1904 121.7187)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.2529 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 472.6468 121.7187)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.5482 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 490.9421 121.7187)\\\" x=\\\"0 5.56 11.12 13.4 18.96\\\">paint</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.6853 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 517.0792 121.7187)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 525.9708 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 530.3647 121.7187)\\\" x=\\\"0 2.28 7.84 10.62 13.4 18.96\\\">letter</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.6547 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0486 121.7187)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 110.4003)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 70.893 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 75.8495 110.4003)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 84.7411 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 89.6976 110.4003)\\\" x=\\\"0 8.33 13.89 19.45 21.73 24.51\\\">modify</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 119.2094 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 124.1659 110.4003)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 140.2889 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 145.2455 110.4003)\\\" x=\\\"0 2.28 7.84 13.4 18.96 21.74 24.02 26.8 29.08 34.08 39.64 42.42 44.7 50.26\\\">identification</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 201.0707 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 206.0272 110.4003)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57\\\">number</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 239.9335 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 244.89 110.4003)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 253.2298 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 258.1864 110.4003)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 272.0877 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 277.0443 110.4003)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 317.6156 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 322.5721 110.4003)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 340.3651 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 345.3216 110.4003)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.3841 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 364.3407 110.4003)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 378.242 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 383.1985 110.4003)\\\" x=\\\"0 5.56 11.12 16.68\\\">add,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.6614 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.618 110.4003)\\\" x=\\\"0 3.33 8.89 17.22 22.78 27.78\\\">remove</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 440.9627 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 445.9192 110.4003)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.8108 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 459.7674 110.4003)\\\" x=\\\"0 8.33 13.89 19.45 21.73 24.51\\\">modify</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.2791 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 494.2356 110.4003)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 510.3587 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 515.3152 110.4003)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.12 31.12 36.68 40.01 42.29 47.85 52.85\\\">accessories,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 99.082)\\\" x=\\\"0 5.56 11.12 16.68 18.96 24.52 32.85 38.41 43.97\\\">equipment</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 79.8578 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 83.9642 99.082)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 92.8558 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 96.9621 99.082)\\\" x=\\\"0 5.56 11.12 14.45 17.23\\\">parts</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 119.1936 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 123.2999 99.082)\\\" x=\\\"0 7.22 9.5 12.28 17.84 23.4 28.96\\\">without</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 155.0431 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 159.1494 99.082)\\\" x=\\\"0 5.56 11.12\\\">our</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 173.6025 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 177.7089 99.082)\\\" x=\\\"0 5.56 8.89 11.17 16.73\\\">prior</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 197.7724 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 201.8787 99.082)\\\" x=\\\"0 7.22 10.55 12.83 15.61 18.39 23.95\\\">written</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.3904 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 235.4968 99.082)\\\" x=\\\"0 5.56 11.12 14.45 22.78 25.06 30.06 35.06 37.34 42.9 48.46\\\">permission.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 286.7419 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 290.8482 99.082)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.0797 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 312.186 99.082)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 349.979 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 354.0853 99.082)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 368.1478 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 372.2542 99.082)\\\" x=\\\"0 5.56 11.12 13.9\\\">not:</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.9339 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 393.0402 99.082)\\\" x=\\\"0 7.22 12.78 17.78\\\">Have</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 416.3849 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 420.4913 99.082)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57 36.13\\\">damage,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 459.4073 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 463.5136 99.082)\\\" x=\\\"0 8.33 13.89 18.89 24.45 30.01 35.57 37.85 42.85 48.41\\\">mechanical</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 514.2119 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 518.3182 99.082)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 527.2098 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 531.3162 99.082)\\\" x=\\\"0 5.56 7.84 13.4 18.4 21.18 24.51 26.79 31.79 37.35\\\">electrical</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 87.7636)\\\" x=\\\"0 8.33 13.89 16.17 18.95 24.51 30.07 35.07 37.85 40.13 45.69\\\">malfunction</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 84.3549 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 87.8075 87.7636)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 98.369 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 101.8216 87.7636)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64 45.2\\\">applicable;</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 149.8099 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 153.2625 87.7636)\\\" x=\\\"0 5.56\\\">be</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 164.3855 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 167.8382 87.7636)\\\" x=\\\"0 2.78 8.34 11.67 17.23\\\">torn,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 187.8479 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 191.3005 87.7636)\\\" x=\\\"0 5.56 11.12 14.45 20.01 25.57 31.13\\\">burned,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.2165 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 228.6691 87.7636)\\\" x=\\\"0 5 7.78 13.34 15.62 21.18 26.74\\\">stained</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 260.9738 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 264.4264 87.7636)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 273.318 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 276.7706 87.7636)\\\" x=\\\"0 5 10.56 13.89 19.45 25.01 30.57 36.13 41.69\\\">shredded;</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 321.2482 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 324.7008 87.7636)\\\" x=\\\"0 5.56 11.12 16.12\\\">have</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 346.3853 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 349.8379 87.7636)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 365.961 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 369.4136 87.7636)\\\" x=\\\"0 5.56 11.12 16.68 19.46 24.46\\\">dents,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 396.6548 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 400.1074 87.7636)\\\" x=\\\"0 8.33 13.89 16.17 21.73\\\">mold,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 424.6191 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 428.0717 87.7636)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 436.9633 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 440.4159 87.7636)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57\\\">damage</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 476.5536 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 480.0062 87.7636)\\\" x=\\\"0 2.78 6.11 11.67\\\">from</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 500.0062 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 503.4588 87.7636)\\\" x=\\\"0 7.22 12.78 15.56 21.12 24.45\\\">water,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 530.6903 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 534.1429 87.7636)\\\" x=\\\"0 5 10.56 16.12 21.68\\\">sand,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 558.6058 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 562.0584 87.7636)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 76.4452)\\\" x=\\\"0 2.78 6.11 11.67 17.23 22.23 24.51 30.07 35.63 38.41 41.07 46.63 49.96 52.62 58.18 63.74 68.74 74.3 76.96 79.24 84.8 90.36 95.92 101.48 104.81 110.37 115.93 118.21 123.77 126.43 131.99 137.55 140.88 143.66 148.66 151.44 154.1 160.77 166.33 171.89 174.55 182.88 188.44 193.44 196.22 198.88 202.21 207.77 210.55 216.11 219.44 225 227.66 230.44 236 241.56 244.22 250.89 254.22 259.78 265.34 270.9 274.23 277.01 282.01 284.67 291.89 294.17 296.95 302.51 305.17 310.73 313.01 315.29 317.95 323.51 326.29 328.95 331.23 334.01 339.01 341.67 347.23 350.56 352.84 358.4 360.68 366.24 371.8 374.08 376.74 382.3 387.86 391.19 393.97 398.97\\\">freezing; or have inoperable parts. You must return the Property with all of its original parts.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 36.5264)\\\" x=\\\"0 6.498 11.997 14.391 16.785 21.789 26.793 29.295 34.299 39.303 44.307 504 506.3906 508.7812 511.1719 513.5625 515.9531 518.3438 520.7344 523.125 525.5156\\\">UT  07/2019          </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 26.3398)\\\" x=\\\"0 6.003 11.007 16.011 21.015\\\">Page </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 55.8097 26.3398)\\\" x=\\\"0\\\">2</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.815 26.3398)\\\" x=\\\"0 2.394 7.398 9.9\\\"> of </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 73.1021 26.3398)\\\" x=\\\"0\\\">7</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#d9d9d9\\\" style=\\\"font-family:f1-0; font-size:54pt; white-space:pre\\\" transform=\\\"matrix(0.707 0.707 0.707 -0.707 135.6027 198.5094)\\\" x=\\\"0 56.016 96.048 136.08 176.112 216.144 236.16 284.184 324.216 344.232 364.248 416.232 456.264 480.24\\\">Qoppa Software</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#002ba6\\\" style=\\\"font-family:f1-0; font-size:9pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.932 772)\\\" x=\\\"0 9.336 16.008 22.68 29.352 36.024 39.36 47.364 54.036 57.372 60.708 69.372 76.044 80.04 86.712 90.048 94.044 97.38 104.712 111.384 115.38 118.716 126.72 132.72 139.392 142.056 148.728 155.4 158.736 161.4 168.072 174.744 178.08 187.416 194.088 196.752 202.752 206.088 210.084 213.42 220.092 223.428 226.764 233.436 239.436 242.772 246.108 249.444 258.108 266.772 275.436 278.772 285.444 292.116 298.788 305.46 312.132 315.468 321.468 328.14\\\">Qoppa Software - For Evaluation Only - https://www.qoppa.com</text></g></g></svg></svg></g></svg><br>\\n<?xml version='1.0' encoding='UTF-8'?><svg id=\\\"qoppa_document\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" version=\\\"1.1\\\" xmlns=\\\"http://www.w3.org/2000/svg\\\" xmlns:xlink=\\\"http://www.w3.org/1999/xlink\\\"><!-- jPDFWeb v2019R1.03 - Demo Version --><style>title p { display: block; }</style><g id=\\\"qoppa_viewxform\\\" transform=\\\"matrix(1 0 0 1 0 0)\\\"><style type=\\\"text/css\\\">@font-face {font-family:f2-0;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f2-1;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f2-2;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}</style><svg id=\\\"qoppa_page_p2\\\" class=\\\"qoppa_page\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\"><rect class=\\\"qoppa_pageborder\\\" x=\\\"0.5pt\\\" y=\\\"0.5pt\\\" width=\\\"611pt\\\" height=\\\"791pt\\\" fill=\\\"none\\\" /><svg class=\\\"qoppa_pagecontents\\\" x=\\\"0pt\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" viewBox=\\\"0 0 612 792\\\" ><g class=\\\"qoppa_contentstream\\\" transform=\\\"matrix(1 0 0 -1 0 792)\\\" fill=\\\"black\\\" stroke=\\\"black\\\" stroke-width=\\\"1\\\" stroke-linecap=\\\"butt\\\" stroke-linejoin=\\\"miter\\\" stroke-miterlimit=\\\"10\\\"><clipPath id=\\\"clip2-1\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 758.4812)\\\" x=\\\"0 9.44 16.11 23.33 30.55 37.22 44.44 50.55 53.33 60 66.67\\\">WARRANTIES.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 102.5482 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 106.2624 758.4812)\\\" x=\\\"0 9.44\\\">We</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 121.2624 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 124.9766 758.4812)\\\" x=\\\"0 8.33 13.89 18.89\\\">make</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 149.4298 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 153.1439 758.4812)\\\" x=\\\"0 5.56\\\">no</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 164.267 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 167.9812 758.4812)\\\" x=\\\"0 5.56 10.56 16.12 19.45 25.01 30.01\\\">express</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 202.9958 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 206.71 758.4812)\\\" x=\\\"0 7.22 12.78 16.11 19.44 25 30.56 33.34\\\">warranty</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.0548 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 248.769 758.4812)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.892 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 263.6062 758.4812)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 277.5076 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 281.2218 758.4812)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 321.7931 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 325.5072 758.4812)\\\" x=\\\"0 5.56 11.12 16.68\\\">and,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 344.9701 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 348.6843 758.4812)\\\" x=\\\"0 5.56 11.12 13.4 18.96 23.96\\\">unless</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 377.6492 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 381.3634 758.4812)\\\" x=\\\"0 5.56 8.89 14.45 20.01 22.29 27.85 30.13 32.91 38.47\\\">prohibited</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 425.4015 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 429.1157 758.4812)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 439.6772 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 443.3914 758.4812)\\\" x=\\\"0 2.28 7.84 15.06\\\">law,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 461.2332 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 464.9474 758.4812)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 478.8487 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 482.5629 758.4812)\\\" x=\\\"0 2.78 8.34 10.62 12.9 18.46 25.68 27.96 33.52\\\">following</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.6498 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 525.364 758.4812)\\\" x=\\\"0 5 10.56 16.12 18.9 24.46 30.02 35.02 40.58\\\">sentences</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 747.1629)\\\" x=\\\"0 5.56 11.12 16.68 18.96 23.96\\\">apply.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 59.8432 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 63.102 747.1629)\\\" x=\\\"0 6.67 14.45\\\">YOU</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 84.772 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 88.0308 747.1629)\\\" x=\\\"0 6.67 13.89\\\">ARE</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 108.5924 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 111.8512 747.1629)\\\" x=\\\"0 5.56 12.23 18.9 25.57 28.35 35.57\\\">LEASING</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 155.2008 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 158.4597 747.1629)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 178.4597 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 181.7186 747.1629)\\\" x=\\\"0 6.67 13.89 21.67 28.34 35.01 42.23 48.34\\\">PROPERTY</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 236.7284 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 239.9872 747.1629)\\\" x=\\\"0 3.33 10\\\">“AS</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.6572 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 259.916 747.1629)\\\" x=\\\"0 2.78 9.45 12.78\\\">IS”.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.4727 747.1629)\\\" x=\\\"0 3.2589\\\">  </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 281.9904 747.1629)\\\" x=\\\"0 9.44\\\">WE</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 298.0988 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 301.3577 747.1629)\\\" x=\\\"0 8.33 15 21.67\\\">MAKE</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.6975 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 332.9564 747.1629)\\\" x=\\\"0 7.22\\\">NO</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 347.9564 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 351.2153 747.1629)\\\" x=\\\"0 6.67 13.34 20.01 27.23 33.9 40.57\\\">EXPRESS</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 398.4565 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 401.7153 747.1629)\\\" x=\\\"0 9.44 16.11 23.33 30.55 37.22 44.44 50.55 53.33 60\\\">WARRANTIES</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.3853 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 471.6442 747.1629)\\\" x=\\\"0 7.78\\\">ON</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.6442 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 489.903 747.1629)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.903 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 513.1619 747.1629)\\\" x=\\\"0 6.67 13.89 21.67 28.34 35.01 42.23 48.34 55.01\\\">PROPERTY.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 735.8445)\\\" x=\\\"0 9.44\\\">WE</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 49.2084 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 59.5638 735.8445)\\\" x=\\\"0 7.22 10 16.67 23.89 29.45 36.12 38.9\\\">DISCLAIM</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 106.7953 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 117.1507 735.8445)\\\" x=\\\"0 6.67 13.89\\\">ANY</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 137.7122 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.0676 735.8445)\\\" x=\\\"0 9.44 16.11 23.33 30.55 37.22 44.44 50.55 53.33 60\\\">WARRANTIES</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 214.7375 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 225.0929 735.8445)\\\" x=\\\"0 2.78 11.11 17.78 23.34 26.12 32.79\\\">IMPLIED</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 265.1027 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 275.4581 735.8445)\\\" x=\\\"0 6.67\\\">BY</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 288.798 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 299.1534 735.8445)\\\" x=\\\"0 5.56 12.23 21.67\\\">LAW,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 323.6016 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 333.957 735.8445)\\\" x=\\\"0 2.78 10 17.22 22.78 30 37.22 40 47.22\\\">INCLUDING</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.9619 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 399.3173 735.8445)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.3173 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 429.6728 735.8445)\\\" x=\\\"0 2.78 11.11 17.78 23.34 26.12 32.79\\\">IMPLIED</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 469.6825 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 480.0379 735.8445)\\\" x=\\\"0 9.44 16.11 23.33 30.55 37.22 44.44 50.55 53.33 60\\\">WARRANTIES</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 546.7079 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0633 735.8445)\\\" x=\\\"0 7.78\\\">OF</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 724.5262)\\\" x=\\\"0 8.33 15 22.22 29.44 36.66 43.33 50.55 56.66 63.33 70 72.78 78.34 81.12 87.23 93.9 96.56 103.23 110.45 117.67 120.33 126.44 129.22 135.33 142.55 149.22 155.89 162.56 165.22 171.33 179.11 186.33 188.99 195.66 202.88 209.55 212.21 218.88 225.55 232.77 238.88 241.66 248.88 256.1 261.66 268.33 275.55 278.21 284.88 292.1 299.32 305.99 313.77 320.44 327.11\\\">MERCHANTABILITY AND FITNESS FOR ANY PARTICULAR PURPOSE.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 711.2078)\\\" x=\\\"0 7.22 13.89 20 26.67 33.89 39.45 45.56 48.34 51 58.22 64.89 71.56 79.34 86.01 92.68 99.35 106.02 112.69 115.47 123.25 130.47 133.25 135.91 142.58 149.8 157.02 159.68 167.46 173.57 180.79 187.46 194.68 197.34 204.56 211.23 219.56 226.23 233.45 236.23 242.9 249.57 252.35 255.01 261.68 267.24 272.8 275.46 282.68 284.96 287.24 289.52 292.18 297.74 303.3 305.96 308.24 313.8 316.46 322.02 327.58 330.36 335.92 341.48 343.76 346.54 349.2 354.76 357.54 360.2 362.98 368.54 370.82 375.82 378.48 385.15 390.71 394.04 399.6 405.16 413.49 419.05 424.61 427.39 430.05 432.33 435.11\\\">DEFAULT, REPOSSESSION, AND OTHER REMEDIES. You will be in default of this Agreement if:</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 697.8895)\\\" x=\\\"0 3.33 5.99 12.66 18.22 23.78 26.44 32 37.56 40.22 45.78 51.34 54.12 56.78 62.34 67.9 72.9 75.56 81.12 86.68 91.68 94.34 99.9 105.46 110.46 118.79 124.35 129.91 132.69 135.35 140.91 144.24 146.9 152.46 155.24 160.8 166.36 169.69 172.35 177.91 186.24 191.8 197.36 202.92 205.7 208.36 213.92 219.48 225.04 230.6 233.93 236.59 239.37 244.93 250.49 253.15 259.82 265.38 268.71 274.27 279.83 288.16 293.72 299.28 302.06 304.72 310.28 315.28 317.94 323.5 326.83 332.39 337.39 339.67 345.23 350.79 356.35 359.01 364.57 367.9 370.56 377.78 383.34 388.9 394.46 397.12 404.34 409.9 412.56 420.89 426.45 431.45 437.01 439.67 445.23 450.79 459.12 464.68 470.24 475.8\\\">- You do not pay any payment or other amount under the Agreement as provided or when we make demand.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 684.5711)\\\" x=\\\"0 3.33 5.99 12.66 18.22 23.78 26.44 32 34.28 39.28 44.84 47.5 53.06 58.06 60.72 66.28 71.84 76.84 79.5 82.28 87.84 90.12 95.12 100.68 103.34 108.9 112.23 114.89 123.22 125.5 130.5 132.78 138.34 143.9 149.46 151.74 157.3 162.86 165.52 167.8 173.36 176.14 181.7 185.03 193.36 198.92 201.7 203.98 209.54 215.1\\\">- You give us any false or misleading information.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 671.2527)\\\" x=\\\"0\\\">-</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 36.4301 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.1823 671.2527)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 57.9753 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 61.7275 671.2527)\\\" x=\\\"0 2.28 7.84 12.84\\\">lose</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 80.1308 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 83.883 671.2527)\\\" x=\\\"0 5.56 11.12 16.12 21.12 26.68 31.68 36.68 38.96 44.52\\\">possession</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 133.9709 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 137.7231 671.2527)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.0629 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 149.8151 671.2527)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 163.7165 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 167.4687 671.2527)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 205.2617 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 209.0139 671.2527)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 219.5754 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 223.3276 671.2527)\\\" x=\\\"0 5 10.56 16.12 18.9 21.18 26.18 31.18 36.74 39.52 41.8 47.36 52.92\\\">confiscation,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 279.0307 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 282.7829 671.2527)\\\" x=\\\"0 2.78 8.34 11.67 14.45 20.01 22.29 25.07 30.63 33.96\\\">forfeiture</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 322.3044 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 326.0566 671.2527)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 334.9482 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.7004 671.2527)\\\" x=\\\"0 5.56 8.34 13.9 19.46\\\">other</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 361.4934 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 365.2456 671.2527)\\\" x=\\\"0 2.28 7.84 12.84 18.4 20.68 26.24 31.8 34.58 40.14 43.47\\\">involuntary</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 413.7222 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 417.4744 671.2527)\\\" x=\\\"0 2.78 6.11 11.67 17.23 22.23 25.01 30.57\\\">transfer</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 451.3757 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 455.1279 671.2527)\\\" x=\\\"0 3.33 8.89 14.45 20.01 23.34 28.9 31.18 36.74 41.74\\\">regardless</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.876 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 505.6282 671.2527)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 513.968 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 517.7202 671.2527)\\\" x=\\\"0 7.22 12.78 18.34 21.12 26.68 32.24\\\">whether</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.2964 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0486 671.2527)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 659.9344)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79 40.45 42.73 47.73 50.39 53.17 58.73 64.29 66.95 71.95 77.51 83.07 85.35 90.91 95.91 98.69 101.35 106.91 109.69 112.35 114.63 120.19 125.75 128.03 133.03 135.31 140.87 143.15 145.81 151.37 154.7 157.36 162.92 168.48 176.81 179.09 184.65 186.93 191.93 194.71 198.04 203.6 206.38 208.66 213.66 219.22 221.88 227.44 230.77 236.33 241.33 246.89 252.45 258.01 260.29 265.85 271.41 276.41\\\">Property is the subject of judicial or administrative proceedings.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 646.616)\\\" x=\\\"0 3.33 5.99 12.66 18.22 23.78 26.44 32 34.28 39.84 42.5 48.06 53.62 59.18 61.84 64.62 70.18 75.74 79.07 84.63 87.29 89.57 94.57 97.23 102.79 108.35 111.01 116.01 121.57 124.9 129.9 132.18 137.18 139.46 145.02 150.58 153.24 158.24 163.8 168.8 171.58 177.14 185.47 191.03 194.36\\\">- You die and there is no surviving customer.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 633.2977)\\\" x=\\\"0 3.33 5.99 12.1 17.66 23.22 25.88 32.55 35.88 41.44 47 52.56 55.89 58.67 63.67 66.33 68.61 73.61 76.27 78.55 84.11 89.11 91.89 94.67 97.33 102.33 105.11 110.67 112.95 118.51 124.07 126.73 132.29 135.62 138.28 143.84 149.4 157.73 163.29 168.85 174.41 179.97 182.63 188.19 193.75 198.75 204.31 209.87 215.43 218.09 221.42 226.98 232.54 238.1 240.38 243.71\\\">- The Property is lost, stolen or damaged beyond repair.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 619.9793)\\\" x=\\\"0 3.33 5.99 12.66 18.22 23.78 26.44 32 37 42 44.28 49.84 55.4 58.06 60.84 66.4 71.96 74.62 81.29 86.85 90.18 95.74 101.3 109.63 115.19 120.75 123.53 126.19 131.75 135.08 137.74 140.52 143.85 149.41 154.97 159.97 162.75 168.31 171.64 174.3 177.08 182.64 188.2 190.86 197.53 200.86 206.42 211.98 217.54 220.87 223.65 228.65\\\">- You assign the Agreement or transfer the Property.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 606.6609)\\\" x=\\\"0 3.33 5.99 13.21 18.77 21.05 26.61 31.61 36.61 39.27 44.83 48.16 53.72 59.28 61.56 67.12 69.4 72.18 77.74 83.3 85.96 91.52 96.52 99.18 101.46 107.02 114.24 117.02 119.68 124.68 130.24 135.8 138.46 143.46 145.74 151.3 153.58 159.14 161.92 167.48 170.14 175.7 181.26 186.26 188.92 195.59 201.15 204.48 210.04 215.6 223.93 229.49 235.05 237.83 240.49 243.27 248.83 252.16 260.49\\\">- Unless prohibited by law, you violate any Agreement term.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 593.3426)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 38.6566 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 41.5168 593.3426)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 57.1369 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 59.9971 593.3426)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 108.9131 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 111.7732 593.3426)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 119.0535 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 121.9136 593.3426)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 129.7554 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 132.6156 593.3426)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 27.3 30.08\\\">default,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 165.4769 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 168.3371 593.3426)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 181.1202 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 183.9804 593.3426)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 202.872 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 205.7321 593.3426)\\\" x=\\\"0 5.56\\\">at</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 214.072 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 216.9321 593.3426)\\\" x=\\\"0 5.56 11.12\\\">our</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.3853 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 234.2454 593.3426)\\\" x=\\\"0 5.56 7.84 13.4 18.4 21.18 23.46 29.02 34.58\\\">election,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 271.6087 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 274.4688 593.3426)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.1534 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 294.0135 593.3426)\\\" x=\\\"0 5 10.56 16.12 18.4 23.96 28.96\\\">subject</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 325.7567 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 328.6169 593.3426)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 336.9567 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 339.8168 593.3426)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.9399 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 358.8 593.3426)\\\" x=\\\"0 7.22 12.78 15.06 17.84 20.12 25.68\\\">waiting</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 390.0452 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 392.9053 593.3426)\\\" x=\\\"0 5.56 11.12 14.45 16.73 22.29\\\">period</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 420.7618 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 423.6219 593.3426)\\\" x=\\\"0 2.28 10.61 16.17 21.73 26.73 32.29\\\">imposed</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 461.4783 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 464.3385 593.3426)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.9 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 477.7602 593.3426)\\\" x=\\\"0 2.28 7.84 15.06\\\">law,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 495.602 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 498.4621 593.3426)\\\" x=\\\"0 2.78 8.34 13.34\\\">take</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 517.3635 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 520.2236 593.3426)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 536.3467 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 539.2068 593.3426)\\\" x=\\\"0 5.56 10.56 13.34 15.62 21.18 26.74\\\">actions</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 582.0242)\\\" x=\\\"0 5.56 11.12 14.45 22.78 25.06 27.84 30.62 36.18 41.74 44.4 49.96 54.96 57.62 59.9 65.46 72.68 75.46 78.12 80.4 85.96 90.96 93.24 98.8 104.36 106.64 112.2 117.76 120.42 127.64 129.92 132.7 138.26 143.82 149.38 152.16 154.82 157.1 159.38 167.71 169.99 172.77 178.33 181.11 183.39 188.95 194.51 197.17 202.73 208.29 213.85 216.51 222.07 224.85 227.51 230.29 235.85 241.41 244.07 246.85 252.41 254.69 256.97 262.53 269.75 272.03 277.59 283.15 285.81 291.37 296.37 299.15 301.43 306.99 312.55 317.55 320.33 322.99 328.55 334.11 339.67 345.23 347.89 353.45 356.23 358.89 366.11 371.67 373.95 378.95 384.51 387.17 394.39 396.67 398.95 401.23 403.89 408.89 414.45 417.78 423.34 426 431 436.56 442.12 445.45 448.11 453.67 459.23 462.01 467.57 473.13 475.41 478.19\\\">permitted by law, including without limitation one of the following actions, none of which will cure your default:</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 568.7059)\\\" x=\\\"0 3.33 10.55 16.11 18.89 21.17\\\">-Until</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 56.5522 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 59.9757 568.7059)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 76.0988 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 79.5223 568.7059)\\\" x=\\\"0 5.56 11.12 14.45 19.45 25.01 30.57 35.57\\\">purchase</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 120.66 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 124.0836 568.7059)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 137.985 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 141.4086 568.7059)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 179.2015 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 182.6251 568.7059)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 193.1866 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 196.6102 568.7059)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29 32.85\\\">provided</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 235.0282 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 238.4518 568.7059)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 246.2936 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 249.7171 568.7059)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 265.3372 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 268.7608 568.7059)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 320.4552 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 323.8787 568.7059)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 332.7703 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 336.1939 568.7059)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 350.0953 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 353.5189 568.7059)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 391.3118 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 394.7354 568.7059)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.0157 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 405.4393 568.7059)\\\" x=\\\"0 3.33 8.89 14.45 20.01 25.01 30.01 35.57 40.57 45.57 51.13\\\">repossessed</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 462.1385 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 465.5621 568.7059)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.4537 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 477.8772 568.7059)\\\" x=\\\"0 5 10.56 13.89 17.22 22.78 28.34 33.9 39.46 42.79 48.35 53.91\\\">surrendered,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 534.5765 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 538 568.7059)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 545.8418 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 549.2654 568.7059)\\\" x=\\\"0 5.56 11.12 16.12\\\">each</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 557.3875)\\\" x=\\\"0 5 10.56 15.56\\\">case</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 54.2231 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 56.9386 557.3875)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 67.5001 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 70.2156 557.3875)\\\" x=\\\"0 5.56 11.12 14.45 22.78 25.06 27.84 30.62 36.18\\\">permitted</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 111.9588 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 114.6743 557.3875)\\\" x=\\\"0 5.56 11.12 16.68 22.24\\\">under</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 140.2505 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 142.966 557.3875)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 158.5862 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 161.3017 557.3875)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 212.996 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 215.7115 557.3875)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.3317 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 234.0472 557.3875)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 282.9632 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 285.6787 557.3875)\\\" x=\\\"0 5 10.56 16.12 18.4\\\">shall</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 306.3623 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 309.0779 557.3875)\\\" x=\\\"0 5 10.56 16.12 18.9 21.18 26.74 32.3\\\">continue</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 346.9441 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 349.6596 557.3875)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 357.9994 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 360.715 557.3875)\\\" x=\\\"0 3.33 8.89 14.45 20.01 27.23\\\">renew,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 390.7296 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 393.4452 557.3875)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 410.1297 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 412.8453 557.3875)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 425.6285 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 428.344 557.3875)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.2356 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 449.9511 557.3875)\\\" x=\\\"0 5 10.56 16.12 18.9 21.18 26.74 32.3\\\">continue</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 487.8173 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 490.5329 557.3875)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 498.8727 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 501.5882 557.3875)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01\\\">charge</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 532.1644 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 534.88 557.3875)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.003 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.7185 557.3875)\\\" x=\\\"0 3.33 8.89 14.45\\\">rent</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 546.0691)\\\" x=\\\"0 5.56 11.12 16.68 22.24 25.57 28.23 31.01 36.57 42.13 44.79 47.57 53.13 56.46 64.79 69.79 72.45 78.01 80.79 83.45 86.23 91.79 94.07 99.07 101.73 108.4 113.96 117.29 122.85 128.41 136.74 142.3 147.86 150.64\\\">under the terms of this Agreement.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 532.7508)\\\" x=\\\"0 3.33 12.77 18.33 20.99 29.32 34.88 39.88 42.54 45.32 50.88 55.88 61.44 64.1 69.66 75.22 80.22 82.88 88.44 93.44 96.22 98.5 104.06 109.62 112.28 119.5 125.06 127.72 133.28 138.84 141.12 143.4 148.96 153.96 159.52 162.18 164.96 170.52 173.18 178.74 184.3 186.96 192.52 198.08 203.08 208.64 213.64 218.64 224.2 227.53 232.53 235.19 240.75 244.08 246.74 252.3 257.86 262.86 265.14 270.14 275.7 281.26 283.54 289.1 291.76 294.54 300.1 302.76 308.32 311.65 317.21 319.99 325.55 330.55 333.33 335.99 341.55 347.11 350.44 353.1 355.38 360.94 363.72 369.28 372.61 378.17 383.17 385.95 388.61 390.89 396.45 399.11 401.89 407.45 413.01 415.67 422.34 425.67 431.23 436.79 442.35 445.68 448.46 453.46\\\">-We may take any action we believe to be necessary or advisable to protect our interest in the Property.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 519.4324)\\\" x=\\\"0 3.33 12.77\\\">-We</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 51.4301 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 54.7506 519.4324)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 73.6422 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 76.9627 519.4324)\\\" x=\\\"0 5.56 11.12 16.68 21.68 27.24 30.02 35.58 37.86 40.14\\\">peacefully</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 122.1092 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 125.4297 519.4324)\\\" x=\\\"0 3.33 8.89 14.45 20.01 25.01 30.01 35.57 40.57\\\">repossess</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 171.0058 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 174.3263 519.4324)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 188.2277 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 191.5482 519.4324)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 229.3411 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 232.6616 519.4324)\\\" x=\\\"0 7.22 12.78 18.34 21.67 27.23 32.23 37.79\\\">wherever</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 273.7896 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 277.1101 519.4324)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 289.8933 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 293.2138 519.4324)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.1054 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 315.4259 519.4324)\\\" x=\\\"0 2.78 5.06 10.62\\\">find</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 331.6075 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 334.928 519.4324)\\\" x=\\\"0 2.28 5.06\\\">it.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 342.7649 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 346.0854 519.4324)\\\" x=\\\"0 9.44\\\">We</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 361.0854 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 364.4059 519.4324)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 378.4684 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 381.7889 519.4324)\\\" x=\\\"0 5.56 7.84 12.84\\\">give</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 400.1922 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 403.5127 519.4324)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.6358 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 422.9563 519.4324)\\\" x=\\\"0 3.33 8.89 14.45 20.01 25.01 30.01 35.57 40.57 45.57 47.85 53.41\\\">repossession</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 481.9358 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 485.2562 519.4324)\\\" x=\\\"0 5.56 11.12 13.9 16.18 21.18 26.74\\\">notices</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 516.9994 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 520.3199 519.4324)\\\" x=\\\"0 3.33 8.89 14.45 20.01 22.29 25.62 31.18\\\">required</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 557.068 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 560.3885 519.4324)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 508.1141)\\\" x=\\\"0 2.28 7.84 15.06\\\">law.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 50.9418 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 53.8695 508.1141)\\\" x=\\\"0 6.67 9.45 12.23 17.79\\\">After</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 74.9876 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 77.9153 508.1141)\\\" x=\\\"0 3.33 8.89 14.45 20.01 25.01 30.01 35.57 40.57 45.57 47.85 53.41\\\">repossession</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.8948 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 139.8224 508.1141)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 148.714 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 151.6417 508.1141)\\\" x=\\\"0 5 10.56 13.89 17.22 22.78 28.34 33.9 39.46 42.79\\\">surrender,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 197.2178 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 200.1455 508.1141)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 212.9287 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 215.8564 508.1141)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 229.9189 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 232.8465 508.1141)\\\" x=\\\"0 5.56 11.12 13.4\\\">hold</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 251.8114 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 254.739 508.1141)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 268.6404 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 271.568 508.1141)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.1393 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 315.067 508.1141)\\\" x=\\\"0 5 10.56 16.12 18.4 23.96 28.96\\\">subject</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 346.8101 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 349.7378 508.1141)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 358.0776 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 361.0053 508.1141)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 377.1283 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 380.056 508.1141)\\\" x=\\\"0 3.33 5.61 11.17 16.73\\\">right</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 399.5677 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 402.4954 508.1141)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 418.6184 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 421.5461 508.1141)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 440.4377 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 443.3653 508.1141)\\\" x=\\\"0 5.56 11.12 16.12\\\">have</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 465.0499 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 467.9776 508.1141)\\\" x=\\\"0 5.56 11.12 16.68 22.24\\\">under</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 493.5537 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 496.4814 508.1141)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64\\\">applicable</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 541.6914 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 544.619 508.1141)\\\" x=\\\"0 2.28 7.84\\\">law</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.6825 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 562.6101 508.1141)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 496.7957)\\\" x=\\\"0 5 10.56 13.89 19.45 22.11 24.89 30.45 36.01 38.67 44.23 49.79 52.57 58.13 63.69 65.97 68.75 71.41 76.97 80.3 82.96 86.29 91.85 96.85 102.41 107.41 112.97 116.3 118.96 121.74 127.3 132.86 135.52 142.19 145.52 151.08 156.64 162.2 165.53 168.31 173.31\\\">cure the default or recover the Property.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 483.4773)\\\" x=\\\"0 3.33 10 15.56 23.89 28.89 31.55 38.77 44.33 46.99 51.99 57.55 63.11 68.67 74.23 76.89 79.67 85.23 90.23 92.51 98.07 103.63 106.29 111.85 117.41 122.41 125.07 130.63 136.19 139.52 147.85 150.13 152.91 155.69 161.25 166.81 169.47 175.03 180.03 182.81 185.09 190.65 196.21 198.87 206.09 208.37 210.65 212.93 215.59 221.15 226.71 229.37 234.93 240.49 246.05 251.61 257.17 259.83 262.61 268.17 270.83 273.61 279.17 284.73 287.39 292.95 301.28 306.84 312.4 317.96 320.74 323.4 328.96 333.96 338.96 342.29 347.85 353.41 358.97 361.75 364.41 369.97 375.53 377.81 383.37 388.37 393.37 396.03 401.59 404.92 410.48 416.04 418.32 423.88 426.16 428.94 434.5 440.06 442.72 448.28 453.28 455.94 458.22 463.78 471\\\">-Sums we spend taking any permitted action will be added to the amount accrued, unless prohibited by law.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 456.8406)\\\" x=\\\"0 6.11 12.78 19.45 26.12 32.79\\\">TAXES.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 68.6664 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 72.5196 456.8406)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 90.3126 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 94.1658 456.8406)\\\" x=\\\"0 8.33 13.89 18.89\\\">must</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 115.8357 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 119.689 456.8406)\\\" x=\\\"0 2.28 10.61 18.94 24.5 30.06 32.34 37.9 40.68 46.24 48.52\\\">immediately</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 173.2144 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 177.0676 456.8406)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 193.1906 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 197.0439 456.8406)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 205.9355 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 209.7887 456.8406)\\\" x=\\\"0 3.33 8.89 11.17 19.5 25.06 30.62 33.95 38.95\\\">reimburse</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 254.3053 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 258.1585 456.8406)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 268.72 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 272.5733 456.8406)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 277.6319 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 281.4851 456.8406)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 294.2683 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 298.1215 456.8406)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 314.2446 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 318.0978 456.8406)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.7677 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 333.6209 456.8406)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 349.744 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 353.5972 456.8406)\\\" x=\\\"0 5.56 7.84\\\">all</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 363.7193 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 367.5725 456.8406)\\\" x=\\\"0 5.56 11.12 16.12 21.68 25.01 30.57 38.9 44.46 50.02\\\">government</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 420.3801 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 424.2334 456.8406)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01 30.57\\\">charges</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 459.8095 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 463.6628 456.8406)\\\" x=\\\"0 3.33 8.89 11.17 16.73 19.51 21.79 27.35\\\">relating</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 496.5778 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 500.431 456.8406)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 508.7709 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 512.6241 456.8406)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.5255 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 530.3787 456.8406)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 445.5223)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24 28.52 34.08 39.64\\\">including,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 75.5268 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 78.3573 445.5223)\\\" x=\\\"0 5.56 11.12\\\">but</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 92.2586 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 95.0891 445.5223)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 108.9905 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 111.8209 445.5223)\\\" x=\\\"0 2.28 4.56 12.89 15.17 17.95 23.51\\\">limited</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 140.8932 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 143.7237 445.5223)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 152.0635 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 154.894 445.5223)\\\" x=\\\"0 2.78 8.34 13.9 18.9\\\">fees,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 176.5737 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 179.4042 445.5223)\\\" x=\\\"0 2.78 8.34 13.34 18.9 23.9\\\">taxes,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 206.0839 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 208.9144 445.5223)\\\" x=\\\"0 2.78 5.06 10.62 16.18\\\">fines</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 230.096 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 232.9265 445.5223)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 249.6111 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 252.4416 445.5223)\\\" x=\\\"0 5 10.56 13.89 18.89 24.45 30.01 33.34 38.9 44.46 49.46\\\">surcharges,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 304.6877 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 307.5181 445.5223)\\\" x=\\\"0 7.22 12.78 18.34 21.12 26.68 32.24\\\">whether</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 343.0943 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 345.9248 445.5223)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.12 31.12 36.68\\\">assessed</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.1709 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 391.0014 445.5223)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.1244 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 404.9549 445.5223)\\\" x=\\\"0 5 10.56 16.12\\\">you,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 423.8563 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 426.6868 445.5223)\\\" x=\\\"0 5.56 10.56\\\">us,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 440.0266 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 442.8571 445.5223)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 451.7487 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 454.5792 445.5223)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.4806 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 471.311 445.5223)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 511.8823 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 514.7128 445.5223)\\\" x=\\\"0 9.44\\\">We</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.7128 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 532.5433 445.5223)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.4349 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 554.2654 445.5223)\\\" x=\\\"0 5.56 11.12\\\">add</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 434.2039)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.0014 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 50.123 434.2039)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 83.4775 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 86.5991 434.2039)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 94.9389 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 98.0606 434.2039)\\\" x=\\\"0 7.22 12.78 18.34\\\">what</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 119.1836 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 122.3052 434.2039)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 138.4283 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 141.5499 434.2039)\\\" x=\\\"0 5.56 12.78\\\">owe</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 159.8946 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 163.0162 434.2039)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 173.5777 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 176.6994 434.2039)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 181.758 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 184.8796 434.2039)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 201.0026 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 204.1242 434.2039)\\\" x=\\\"0 5.56\\\">do</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 215.2473 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 218.3689 434.2039)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 232.2703 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 235.3919 434.2039)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 251.5149 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 254.6365 434.2039)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 265.1981 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 268.3197 434.2039)\\\" x=\\\"0 7.22 12.78 18.34\\\">when</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 292.2259 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 295.3476 434.2039)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.1307 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 311.2524 434.2039)\\\" x=\\\"0 8.33 13.89 18.89\\\">make</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.7055 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.8271 434.2039)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57 36.13\\\">demand.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 377.7431 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 380.8647 434.2039)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 386.4214 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 389.543 434.2039)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 405.666 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 408.7877 434.2039)\\\" x=\\\"0 5.56\\\">do</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.9107 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 423.0323 434.2039)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 436.9337 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 440.0553 434.2039)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.1783 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 459.3 434.2039)\\\" x=\\\"0 5 10.56 15.56\\\">such</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 480.423 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 483.5446 434.2039)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57 33.35\\\">amounts</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.8991 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 525.0207 434.2039)\\\" x=\\\"0 7.22 12.78 18.34\\\">when</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 548.927 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 552.0486 434.2039)\\\" x=\\\"0 2.78 8.34 13.9\\\">they</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 422.8855)\\\" x=\\\"0 5.56 8.89\\\">are</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.5531 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 50.576 422.8855)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.12 31.12 36.68\\\">assessed</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 92.8221 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 95.845 422.8855)\\\" x=\\\"0 3.33 8.89 14.45 16.73 22.29 27.29\\\">(unless</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 128.1399 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 131.1627 422.8855)\\\" x=\\\"0 5 10.56 15.56\\\">such</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 152.2858 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 155.3087 422.8855)\\\" x=\\\"0 3.33 8.89 13.89 19.45 21.73 24.51\\\">results</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 184.8204 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 187.8433 422.8855)\\\" x=\\\"0 2.78 6.11 11.67\\\">from</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 207.8433 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.8661 422.8855)\\\" x=\\\"0 5.56 11.12\\\">our</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.3192 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 228.3421 422.8855)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.8 32.36 37.92 42.92 48.48 51.81\\\">negligence),</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 282.9417 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 285.9646 422.8855)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.0876 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 305.1105 422.8855)\\\" x=\\\"0 8.33 13.89 18.89\\\">must</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 326.7804 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 329.8033 422.8855)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 345.9264 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 348.9492 422.8855)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 365.0723 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 368.0951 422.8855)\\\" x=\\\"0 5.56 11.12 16.68 22.24 24.52 27.3 29.58 35.14\\\">penalties</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 408.2416 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 411.2645 422.8855)\\\" x=\\\"0 7.22 12.78 18.34\\\">when</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 435.1707 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 438.1936 422.8855)\\\" x=\\\"0 5.56 11.12\\\">due</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.8782 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 457.9011 422.8855)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.7927 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 469.8155 422.8855)\\\" x=\\\"0 3.33 8.89 11.17 19.5 25.06 30.62 33.95 38.95\\\">reimburse</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 514.3321 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 517.355 422.8855)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 527.9165 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 530.9394 422.8855)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 535.998 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 539.0209 422.8855)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.8041 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 554.8269 422.8855)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 411.5672)\\\" x=\\\"0 2.78 8.34 13.9 22.23\\\">them.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 58.1098 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 61.0597 411.5672)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 78.8527 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.8026 411.5672)\\\" x=\\\"0 8.33 13.89 18.89\\\">must</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 103.4725 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 106.4225 411.5672)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 122.5455 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 125.4955 411.5672)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 139.3968 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 142.3467 411.5672)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01 30.57\\\">charges</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 177.9229 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 180.8729 411.5672)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 188.7147 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 191.6646 411.5672)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 207.2847 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.2346 411.5672)\\\" x=\\\"0 5.56 11.12 14.45 20.01 25.57 28.9 34.46 40.02\\\">paragraph</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 255.8255 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 258.7754 411.5672)\\\" x=\\\"0 5.56 10.56 16.12\\\">even</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.46 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 283.4099 411.5672)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 288.4685 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 291.4184 411.5672)\\\" x=\\\"0 5 10.56 15.56\\\">such</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.5415 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 315.4914 411.5672)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01 30.57\\\">charges</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.0676 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 354.0175 411.5672)\\\" x=\\\"0 5.56 8.89\\\">are</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 368.4707 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 371.4206 411.5672)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 385.322 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 388.2719 411.5672)\\\" x=\\\"0 5.56 7.84 10.12 12.4 17.96\\\">billed</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 411.7973 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 414.7472 411.5672)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 423.0871 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 426.037 411.5672)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 436.5985 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 439.5485 411.5672)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 448.4401 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 451.39 411.5672)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 459.7298 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 462.6798 411.5672)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 478.8028 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 481.7528 411.5672)\\\" x=\\\"0 5.56 11.12 13.9 16.18\\\">until</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 500.2147 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 503.1646 411.5672)\\\" x=\\\"0 5.56 8.34 11.12 16.68\\\">after</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 523.1744 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 526.1243 411.5672)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 540.0257 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 542.9756 411.5672)\\\" x=\\\"0 5.56 11.12\\\">end</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.6602 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 562.6101 411.5672)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 400.2488)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.0014 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 49.7259 400.2488)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 98.6419 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 101.3665 400.2488)\\\" x=\\\"0 2.78 8.34 11.67 20\\\">term,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 124.1448 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 126.8693 400.2488)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 137.4308 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 140.1554 400.2488)\\\" x=\\\"0 2.28 7.84 13.4\\\">long</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 159.1202 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 161.8448 400.2488)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 172.4063 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 175.1308 400.2488)\\\" x=\\\"0 5 10.56 15.56\\\">such</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 196.2539 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 198.9784 400.2488)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01 30.57\\\">charges</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 234.5546 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 237.2791 400.2488)\\\" x=\\\"0 5.56 8.89\\\">are</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 251.7322 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 254.4568 400.2488)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64\\\">applicable</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.6667 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 302.3913 400.2488)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 310.7311 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 313.4556 400.2488)\\\" x=\\\"0 5 10.56 18.89\\\">some</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 337.9088 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 340.6333 400.2488)\\\" x=\\\"0 5.56 11.12 14.45\\\">part</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 357.8648 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 360.5893 400.2488)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 368.9291 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 371.6537 400.2488)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 385.555 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 388.2796 400.2488)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 437.1956 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 439.9201 400.2488)\\\" x=\\\"0 2.78 8.34 11.67 20\\\">term.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 462.6985 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 465.423 400.2488)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 483.216 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 485.9405 400.2488)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 500.003 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 502.7275 400.2488)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 516.6289 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 519.3534 400.2488)\\\" x=\\\"0 5.56 11.12 16.12\\\">have</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 541.038 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 543.7625 400.2488)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.1024 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 554.8269 400.2488)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 388.9305)\\\" x=\\\"0 5.56 11.12 14.45 17.11 19.39 24.95 29.95 35.51 43.84 49.4 52.06 54.84 60.4 65.4 70.96 75.96\\\">our income taxes.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 375.6121)\\\" x=\\\"0 6.11 8.89 15 20.56 27.23 30.01 32.67 42.11 47.67 50.33 53.66 59.22 62 67.56 69.84 75.4 78.06 80.84 83.12 85.9 88.18 93.74 96.4 99.18 104.74 107.4 110.18 115.74 121.3 123.96 130.63 133.96 139.52 145.08 150.64 153.97 156.75 161.75 164.41 167.19 172.75 176.08 178.74 181.52 187.08 192.64 195.3 198.08 203.64 206.97 215.3 217.96 223.52 226.3 228.96 231.74 237.3 242.86 245.52 247.8 253.36 258.92 263.92 269.48 272.14 277.7 283.26 288.82 291.48 297.04 302.6 305.38 307.66 309.94 312.6 317.6 323.16 328.72 331.38 336.94 341.94 347.5 353.06 355.34 358.67 364.23 366.89 372.45 379.67 385.23 390.79 394.12 399.12 404.68 406.96 412.52\\\">TITLE. We retain title to the Property for the term of the lease and until you acquire ownership.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 362.2937)\\\" x=\\\"0 6.67 13.34 20.01 28.34 35.01 42.23 48.34 55.01 57.79 60.45 69.89 75.45 78.11 83.67 89.23 94.23 99.79 102.45 107.45 112.45 118.01 123.57 129.13 134.69 136.97 142.53 148.09 150.75 156.31 161.87 167.43 169.71 172.49 177.49 180.15 182.93 186.26 191.82 200.15 202.81 207.81 213.37 218.93 222.26 224.92 229.92 235.48 241.04 246.04 251.04 253.32 258.88 264.44 267.1 272.66 277.66 282.66 288.22 293.78 299.34 302.12 304.9 307.56 313.12 318.12 320.78 326.34 329.67 335.23 340.23 342.51 348.07 353.63 359.19 361.85 367.41 372.97 375.25 380.81 388.03\\\">PAYMENTS. We have scheduled debits from your checking account, as provided below:</text></g><clipPath id=\\\"clip2-2\\\"><path d=\\\"M 35 328 L 574 328 L 574 345 L 35 345 L 35 328 z \\\"/></clipPath><g clip-path=\\\"url(#clip2-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.2825 332.657)\\\" x=\\\"0 7.22 15 22.22 28.89 36.11 44.44 51.11 58.33 60.99 67.66 74.88 80.99 88.21 95.99 103.21 105.99 112.1 118.77 124.88 127.66 135.44 142.66 145.32 151.43 159.21 166.43 169.09 175.76 182.43 189.1 197.43 204.1 211.32 217.43 224.1 226.76 233.43 236.21 242.88 245.54 252.21 259.43 266.65 269.31 272.64 279.31 286.53 293.75 296.41 303.63 310.3 316.97 319.75 325.86 332.53\\\">CONSUMER AUTHORIZATION FOR PAYMENTS VIA ACH (ACH DEBITS)</text></g><clipPath id=\\\"clip2-3\\\"><path d=\\\"M 35 79 L 574 79 L 574 329 L 35 329 L 35 79 z \\\"/></clipPath><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 316.3387)\\\" x=\\\"0 6.67 13.89\\\">ACH</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 61.7883 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 66.1692 316.3387)\\\" x=\\\"0 7.22 12.78 18.34 20.62 23.4\\\">Debits</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 94.5725 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 98.9533 316.3387)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 110.6233 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 115.0041 316.3387)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46 42.79 47.79\\\">Payment(s)</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 166.1272 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 170.508 316.3387)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 187.1926 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 191.5735 316.3387)\\\" x=\\\"0 7.22 12.78 18.34 23.9\\\">Range</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 221.0412 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 225.4221 316.3387)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.762 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 238.1428 316.3387)\\\" x=\\\"0 7.22 12.78 18.34 20.62 23.4 28.4\\\">Debits.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 269.3245 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 273.7053 316.3387)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.4983 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 295.8792 316.3387)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 28.35 30.63 35.63\\\">authorize</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 337.0754 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 341.4563 316.3387)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 352.0178 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 356.3987 316.3387)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 364.7385 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 369.1194 316.3387)\\\" x=\\\"0 5.56 11.12 16.68 18.96\\\">debit</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 390.8626 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 395.2434 316.3387)\\\" x=\\\"0 2.78 8.34 13.9 19.46\\\">funds</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.7063 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 424.0872 316.3387)\\\" x=\\\"0 2.78 6.11 11.67\\\">from</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 444.0872 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 448.4681 316.3387)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.9212 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 472.3021 316.3387)\\\" x=\\\"0 5.56 11.12 16.68\\\">bank</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 493.9866 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 498.3675 316.3387)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.68 32.24\\\">account</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 533.3919 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 537.7728 316.3387)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.4427 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.8236 316.3387)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.7249 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 305.0203)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 74.0295 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 77.2781 305.0203)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 85.6179 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 88.8665 305.0203)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 102.7678 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 106.0164 305.0203)\\\" x=\\\"0 2.28 7.84 13.4 18.4\\\">lease</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 129.9813 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 133.2298 305.0203)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57 38.35\\\">payments</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 176.5843 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 179.8329 305.0203)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 196.5174 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 199.766 305.0203)\\\" x=\\\"0 5.56 7.84\\\">all</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.8881 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 213.1366 305.0203)\\\" x=\\\"0 5.56 8.34 13.9 19.46\\\">other</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 235.9296 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 239.1782 305.0203)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57 33.35\\\">amounts</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 277.5327 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 280.7812 305.0203)\\\" x=\\\"0 5.56 10.56 15.56 18.89 24.45 30.01\\\">accrued</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 316.3574 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 319.606 305.0203)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 330.1675 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 333.4161 305.0203)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29 32.85\\\">provided</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.834 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 375.0826 305.0203)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 382.9244 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 386.173 305.0203)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 401.7931 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 405.0417 305.0203)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement,</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.736 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 459.9846 305.0203)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.8264 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 471.0749 305.0203)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.9763 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 488.2249 305.0203)\\\" x=\\\"0 2.78 8.34 10.62 12.9 18.46 25.68 27.96 33.52\\\">following</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 527.3118 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 530.5603 305.0203)\\\" x=\\\"0 3.33 8.89 14.45 20.01\\\">range</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 556.1365 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 559.3851 305.0203)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.7249 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 293.7019)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57 33.35\\\">amounts</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 79.0295 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.706 293.7019)\\\" x=\\\"0 5.56 11.12 13.9 19.46\\\">$1.00</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 106.7305 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 109.407 293.7019)\\\" x=\\\"0\\\">-</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 112.7371 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 115.4136 293.7019)\\\" x=\\\"0 5.56 11.12 16.68 22.24 25.02 30.58 36.14\\\">$500.00.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 154.3394 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 157.016 293.7019)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 174.8089 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 177.4855 293.7019)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 28.35 30.63 35.63\\\">authorize</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 218.6818 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 221.3583 293.7019)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.9198 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 234.5964 293.7019)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 242.9362 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 245.6128 293.7019)\\\" x=\\\"0 5.56 11.12 16.68 18.96\\\">debit</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 267.3559 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 270.0325 293.7019)\\\" x=\\\"0 2.28 7.84 12.84 17.84 23.4\\\">lesser</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 296.7659 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 299.4424 293.7019)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57 33.35\\\">amounts</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 337.7969 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 340.4735 293.7019)\\\" x=\\\"0 2.78 8.34 13.9\\\">than</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.9364 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 362.6129 293.7019)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 382.066 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 384.7426 293.7019)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57 38.35\\\">payment,</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 425.8754 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 428.5519 293.7019)\\\" x=\\\"0 5.56 11.12 16.12 21.68\\\">based</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 455.798 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 458.4746 293.7019)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 469.5976 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 472.2742 293.7019)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 491.7273 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 494.4038 293.7019)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 532.7583 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 535.4349 293.7019)\\\" x=\\\"0 5.56 7.84 12.84 15.62 21.18 24.51 29.51\\\">history.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.7249 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 282.3836)\\\" x=\\\"0 7.78 13.34 16.67 19.33 24.89 30.45 36.01 38.29 41.07 46.07 48.73 55.95 58.23 60.51 62.79 65.45 71.01 76.57 79.23 81.51 87.07 89.73 94.73 100.29 105.29 110.85 113.51 116.84 122.4 127.96 133.52 139.08 141.86 144.52 150.08 155.64 157.92 163.48 168.48 173.48 176.14 183.36 188.92 191.58 197.14 202.7 205.48 207.76 210.54 215.54 218.2 223.2 228.76 234.32\\\">Our debits will be in such range, unless we notify you.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 269.0652)\\\" x=\\\"0 6.67 13.89 21.11 23.77 30.99 36.55 42.11 44.39 47.17 52.17 54.83 57.61 63.17 66.5 69.16 76.38 81.94 84.72 90.28 93.61 99.17 104.73 110.29 112.95 119.62 125.18 130.18 138.51 144.07 149.63 152.41 155.07 161.18 166.74 172.3 175.08 177.74 184.41 189.97 195.53 198.19 203.75 209.31 212.09 217.65 223.21 226.54 228.82 233.82 239.38 242.04 247.6 252.6 255.26 258.04 263.6 266.26 271.82 277.38 282.94 285.22 288 290.66 296.22 298.88 304.44 310 312.78 318.34 323.9 326.56 329.34 334.9 338.23 340.89 346.45 352.01 357.01 359.67 363 368.56 371.34 376.9 380.23 385.79 391.35 396.91 399.57 405.13 410.69 415.69 424.02 429.58 435.14 437.92 440.58 443.36 448.92 454.48\\\">ACH Debits for Returned Payment Fee. You authorize us to debit $ 20.00 for an* D E M O *payment fee.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 255.7469)\\\" x=\\\"0 7.22 12.78 15.56 17.84 22.84\\\">Notice</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 69.0783 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 72.6034 255.7469)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 80.9433 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 84.4684 255.7469)\\\" x=\\\"0 6.67 12.23 15.56 17.84 23.4 26.18 28.46 34.02 39.58\\\">Variation.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 126.8317 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 130.3568 255.7469)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 135.9135 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 139.4386 255.7469)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 145.0001 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.5253 255.7469)\\\" x=\\\"0 5.56 11.12 16.68 18.96\\\">debit</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 170.2684 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 173.7935 255.7469)\\\" x=\\\"0 2.78 8.34 10.62 12.9\\\">falls</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 191.6939 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 195.2191 255.7469)\\\" x=\\\"0 5.56 11.12 13.9 18.9 21.18 26.74\\\">outside</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 227.5238 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 231.0489 255.7469)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 244.9503 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 248.4754 255.7469)\\\" x=\\\"0 5 10.56 16.12 21.12 23.4 26.18 28.46 34.02\\\">specified</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 288.0603 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 291.5855 255.7469)\\\" x=\\\"0 3.33 8.89 14.45 20.01 25.57\\\">range,</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.94 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 323.4651 255.7469)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 336.2483 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 339.7734 255.7469)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 353.8359 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 357.3611 255.7469)\\\" x=\\\"0 5.56 13.89 19.45 21.73\\\">email</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 381.3747 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 384.8999 255.7469)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 401.0229 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 404.548 255.7469)\\\" x=\\\"0 5.56 11.12 13.9 16.18 21.18\\\">notice</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 431.2912 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 434.8163 255.7469)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 443.1562 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 446.6813 255.7469)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 460.5827 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 464.1078 255.7469)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 497.4623 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 500.9874 255.7469)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 517.672 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 521.1971 255.7469)\\\" x=\\\"0 5.56 11.12 13.9\\\">date</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 540.66 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 544.1852 255.7469)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 555.3082 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 558.8333 255.7469)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.7249 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 244.4285)\\\" x=\\\"0 5.56 8.34 11.12 16.68 20.01 22.67 29.89 35.45 37.73 42.73 48.29 50.95 58.17 63.73 66.39 73.61 75.89 78.17 80.45 83.11 88.67 94.23 99.79 102.07 104.85 107.51 112.51 118.07 123.07 128.63 131.29 136.85 145.18 150.74 156.3 161.86 164.64 167.42 170.08 176.75 182.31 187.87 190.53 197.75 200.03 202.31 204.59 207.25 212.81 218.37 221.15 223.81 229.37 232.15 234.81 237.09 242.65 248.21 253.21 255.99 258.65 264.21 269.77 272.43 277.43 282.99 285.27 290.83 296.39 301.95 307.51 310.84 313.5 319.06 324.62 329.62 334.62 336.53 339.19 344.75 350.31 353.09 355.37 360.37 365.93\\\">after which we will debit such amount. You will get at least 10 calendar days&apos; notice.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 231.1102)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68\\\">Payment</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 80.1379 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 85.2907 231.1102)\\\" x=\\\"0 7.22 12.78 15.56 21.12 26.12\\\">Dates.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 114.192 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 119.3448 231.1102)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 137.1377 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 142.2905 231.1102)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 28.35 30.63 35.63\\\">authorize</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 183.4868 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 188.6395 231.1102)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.74\\\">debits</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 215.3827 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 220.5354 231.1102)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.6585 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 236.8113 231.1102)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.7028 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 250.8556 231.1102)\\\" x=\\\"0 5.56 8.34 11.12 16.68\\\">after</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 270.8654 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 276.0181 231.1102)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 289.9195 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 295.0722 231.1102)\\\" x=\\\"0 5.56 11.12 13.9 19.46\\\">dates</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.5351 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 324.6879 231.1102)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 336.3578 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 341.5106 231.1102)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 379.865 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 385.0178 231.1102)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29 32.85\\\">provided</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 423.4358 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 428.5885 231.1102)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 436.4303 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 441.5831 231.1102)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 455.4844 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 460.6372 231.1102)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement,</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.3315 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 517.4843 231.1102)\\\" x=\\\"0 5.56 11.12 13.4 18.96 23.96\\\">unless</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 546.4491 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 551.6019 231.1102)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.7249 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 219.7918)\\\" x=\\\"0 5.56 8.34 13.9 19.46 22.79 30.01 32.29 37.29\\\">otherwise</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 83.5315 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 86.8927 219.7918)\\\" x=\\\"0 5.56 7.84 11.17 16.73 21.73\\\">direct</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 111.4044 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 114.7656 219.7918)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 125.3271 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 128.6884 219.7918)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.5302 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 139.8914 219.7918)\\\" x=\\\"0 7.22 10.55 12.83 15.61 17.89 23.45 29.01\\\">writing.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 171.6834 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 175.0446 219.7918)\\\" x=\\\"0 9.44\\\">We</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 190.0446 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 193.4058 219.7918)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 207.4683 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.8296 219.7918)\\\" x=\\\"0 5.56 11.12 16.68 18.96\\\">debit</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 232.5727 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 235.9339 219.7918)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.057 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 250.4182 219.7918)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.3098 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 262.671 219.7918)\\\" x=\\\"0 5.56 8.34 11.12 16.68\\\">after</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 282.6808 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 286.0421 219.7918)\\\" x=\\\"0 5.56 10.56 16.12 19.45\\\">every</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 310.4952 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 313.8564 219.7918)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 352.2109 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 355.5721 219.7918)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29 32.85\\\">provided</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.9901 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 397.3513 219.7918)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 405.1931 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 408.5543 219.7918)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 424.1745 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 427.5357 219.7918)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement;</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 479.23 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 482.5912 219.7918)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29 32.85 38.41\\\">provided,</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 523.7875 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 527.1488 219.7918)\\\" x=\\\"0 5.56 11.12 18.34 23.9 28.9 34.46 37.79\\\">however,</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.7249 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 208.4734)\\\" x=\\\"0 2.78 8.34 13.9\\\">that</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 57.3547 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 60.5776 208.4734)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 73.3608 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 76.5836 208.4734)\\\" x=\\\"0 3.33 8.89 13.89 19.45 22.78 27.78\\\">reserve</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 109.9284 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 113.1512 208.4734)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 127.0526 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 130.2755 208.4734)\\\" x=\\\"0 3.33 5.61 11.17 16.73\\\">right</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 149.7872 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 153.01 208.4734)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 161.3499 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 164.5728 208.4734)\\\" x=\\\"0 5.56 11.12 16.68 18.96\\\">debit</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 186.3159 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 189.5388 208.4734)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 200.6618 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 203.8847 208.4734)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 217.7861 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 221.0089 208.4734)\\\" x=\\\"0 5.56 11.12 16.68 21.68 23.96 29.52\\\">banking</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.0968 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 259.3197 208.4734)\\\" x=\\\"0 5.56 11.12\\\">day</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.4427 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 278.6656 208.4734)\\\" x=\\\"0 2.28 10.61 18.94 24.5 30.06 32.34 37.9 40.68 46.24 48.52\\\">immediately</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 332.191 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 335.4139 208.4734)\\\" x=\\\"0 5.56 8.89 14.45 19.45 25.01 30.57 32.85 38.41\\\">preceding</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 379.3934 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 382.6162 208.4734)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.0694 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 405.2922 208.4734)\\\" x=\\\"0 3.33 8.89 14.45 20.01 22.29 27.85\\\">regular</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 436.4787 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 439.7016 208.4734)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 478.0561 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 481.279 208.4734)\\\" x=\\\"0 5.56 11.12 13.9\\\">date</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 500.7419 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 503.9647 208.4734)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.0233 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 512.2462 208.4734)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.1476 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 529.3704 208.4734)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.7249 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 197.1551)\\\" x=\\\"0 5.56 11.12 13.9 19.46 22.12 24.9 30.46 32.74 35.02 40.02 42.68 48.24 53.8 56.46 62.02 64.68 70.24 75.8 81.36 84.69 90.25 95.81 101.37 106.37 108.65 114.21 119.77 122.43 127.99 133.55 138.55 141.21 144.54 146.82 149.6 155.16 157.94 160.72 163.38 168.94 171.6 177.16 182.72 185 187.28 192.84 198.4 203.4 206.06 211.62 214.95 217.61 224.83 230.39 235.95 240.95 246.51 252.07 257.63 260.29 265.85 271.41 276.41 279.74\\\">date falls on a non-banking day (i.e., a holiday or weekend day).</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 183.8367)\\\" x=\\\"0 7.22 12.78 16.11 19.44 25 30 32.78 35.06 40.62 46.18 51.18 53.96 56.62 63.29 68.85 74.41 77.07 82.63 88.19 90.97 96.53 102.09 105.42 107.7 112.7 118.26 120.92 126.48 131.48 134.14 136.92 142.48 145.14 150.7 156.26 161.82 164.1 166.88 169.54 175.1 180.66 186.22 188.88 193.88 197.21 202.77 208.33 210.61 213.39 216.05 221.05 226.61 232.17 235.5 238.16 243.72 248.72 253.72 259.28 264.84 270.4 273.18 275.84 278.62 284.18 286.84 291.84 297.4 300.73 304.06 309.62 314.62 317.4 320.06 325.62 328.95 332.28 337.84 341.17 346.17\\\">Corrections. You authorize us to debit and credit your* D E M O * correct errors.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 170.5184)\\\" x=\\\"0 6.67 9.45 12.23 17.79 22.79 25.57 27.85 32.85 38.41 41.07 48.29 53.85 56.63 62.19 64.97 67.63 73.74 79.3 84.86 87.52 90.3 93.63 99.19 104.75 109.75 115.31 120.31 123.09 125.37 130.93 136.49 138.4 143.4 146.06 151.62 154.4 157.18 162.74 167.74 170.52 172.8 177.8 183.36 186.02 191.58 197.14 199.92 205.48 208.14 210.42 215.42 218.08 220.86 226.42 231.98 234.64 241.31 246.87 250.2 255.76 261.32 269.65 275.21 280.77 283.55 286.21 293.43 298.99 301.77 307.33 309.99 315.55 318.88 324.44 329.44 331.72 337.28 342.84 348.4 351.06 356.62 362.18 367.74 372.74 378.3\\\">Effective Date. The transaction&apos;s effective date is the Agreement Date provided above.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 157.2)\\\" x=\\\"0 6.67 11.67 16.67 22.23 27.79 33.35 36.13 38.79 44.35 49.91 55.47 58.13 65.35 70.91 76.47 79.25 81.53 87.09 92.65 95.43 98.09 104.76 110.32 115.88 118.54 124.1 129.66 132.44 138 143.56 146.89 149.17 154.17 159.73 162.39 165.17 170.73 176.29 178.95 184.51 190.07 195.63 197.91 200.69 205.69 208.35 211.13 216.69 219.35 222.13 227.69 229.97 234.97 237.63 243.19 248.19 253.19 258.75 264.31 269.87 272.65 275.43 278.09 285.31 290.87 299.2 304.76 310.32 313.65 316.31 320.2 324.09 327.98 331.87 335.76 341.32 346.88 352.44 358 360.66 367.88 373.44 379 381.78 384.06 389.62 395.18 397.84 405.06 410.62 418.95 424.51 430.07 433.4 436.06 439.95 443.84 447.73 451.62 455.51 461.07 466.63 472.19 477.75\\\">Account and Routing. You authorize the debits to this account: Number *****3968 Routing Number *****1451.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 143.8816)\\\" x=\\\"0 7.22 12.78 18.34 23.9 29.46\\\">Change</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 75.7043 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 78.8745 143.8816)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 86.7163 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 89.8865 143.8816)\\\" x=\\\"0 6.67 11.67 16.67 22.23 27.79 33.35\\\">Account</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 126.0193 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 129.1895 143.8816)\\\" x=\\\"0 2.78 8.34 11.12 16.68 20.01 28.34 33.9 36.68 38.96 44.52 50.08\\\">Information:</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 182.0508 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 185.221 143.8816)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 203.0139 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 206.1841 143.8816)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 28.35 30.63 35.63\\\">authorize</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.3804 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 250.5506 143.8816)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 261.1121 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 264.2823 143.8816)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 272.6222 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 275.7923 143.8816)\\\" x=\\\"0 5.56 11.12 16.68 18.96\\\">debit</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 297.5355 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 300.7057 143.8816)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 316.8287 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 319.9989 143.8816)\\\" x=\\\"0 5.56 11.12\\\">new</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.3437 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 341.5138 143.8816)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.68 32.24\\\">account</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 376.5382 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 379.7084 143.8816)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 395.8315 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 399.0017 143.8816)\\\" x=\\\"0 5.56 7.84 12.84\\\">give</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 417.405 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 420.5752 143.8816)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 431.1367 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 434.3069 143.8816)\\\" x=\\\"0 2.28 7.84 10.62 16.18 19.51 27.84 33.4 36.18 38.46 44.02\\\">information</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 483.8918 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 487.062 143.8816)\\\" x=\\\"0 2.78 8.34 11.67\\\">for.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.5103 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 504.6805 143.8816)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 510.2371 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 513.4073 143.8816)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.5303 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 532.7005 143.8816)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.68 32.24\\\">account</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.7249 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 132.5633)\\\" x=\\\"0 2.28 7.28 9.94 13.27 18.83 21.11 26.67 31.67 34.45 40.01 45.57 48.23 55.45 61.01 63.67 70.89 73.17 75.45 77.73 80.39 85.95 91.51 97.07 99.35 102.13 104.79 110.35 115.91 120.91 123.57 129.13 134.13 139.13 144.69 150.25 155.81 158.59 161.25 168.47 174.03 176.69 182.25 187.81 192.81 198.37 201.03 206.59 212.15 214.81 217.59 219.87 222.15 227.71\\\">is re* D E M O *ill debit any account we have on file.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 119.2449)\\\" x=\\\"0 6.67 9.45 15.01 20.57 23.23 29.9 35.46 40.46 48.79 54.35 59.91 62.69 67.69 70.47 73.13 79.8 85.36 90.92 93.58 101.91 107.47 112.47 115.13 120.13 122.91 128.47 134.03 136.69 142.25 147.81 152.81 161.14 166.7 172.26 175.04 177.7 183.26 186.04 188.7 190.98 196.54 202.1 207.1 209.88 212.54 215.32 220.88 224.21 229.77 235.33 237.99 243.55 249.11 254.67 259.67 261.95 267.51 273.07 275.73 281.29 286.85 291.85 296.85 299.51 305.07 310.63 313.41 318.97 322.3 327.86 330.52 336.08 338.74 344.3 349.86 354.86 363.19 368.75 374.31 377.09\\\">Stop Payments. You may stop payment at least three banking days before a payment.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 105.9266)\\\" x=\\\"0 7.22 12.78 17.78 23.34 28.34 33.9 36.68 38.96 44.52 50.08\\\">Revocation,</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 93.5412 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 97.2277 105.9266)\\\" x=\\\"0 7.22 12.78 18.34 23.34 28.9 31.18 33.46 39.02 41.8 44.08 49.64 55.2\\\">Cancellation,</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 155.216 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 158.9024 105.9266)\\\" x=\\\"0 6.11 11.67 15 23.33 25.61 31.17 36.73 39.51 41.79 47.35 52.91\\\">Termination.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 214.5958 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 218.2823 105.9266)\\\" x=\\\"0 6.11 11.67 13.95\\\">This</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 237.2325 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 240.9189 105.9266)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 28.35 30.63 35.63 41.19 43.97 46.25 51.81\\\">authorization</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 298.2968 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 301.9833 105.9266)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.8\\\">applies</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 333.7899 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 337.4764 105.9266)\\\" x=\\\"0 5.56 11.12 13.9 16.18\\\">until</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.9383 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 359.6248 105.9266)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.7478 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 379.4343 105.9266)\\\" x=\\\"0 3.33 8.89 13.89 19.45 24.45\\\">revoke</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 409.449 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 413.1354 105.9266)\\\" x=\\\"0 2.28 5.06\\\">it.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 420.9723 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 424.6588 105.9266)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 442.4518 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 446.1382 105.9266)\\\" x=\\\"0 8.33 13.89 18.89\\\">must</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.8082 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 471.4946 105.9266)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29\\\">provide</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 504.3511 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 508.0375 105.9266)\\\" x=\\\"0 5.56\\\">at</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 516.3774 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 520.0639 105.9266)\\\" x=\\\"0 2.28 7.84 13.4 18.4\\\">least</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 541.2455 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 544.932 105.9266)\\\" x=\\\"0 2.78 8.34 11.67 17.23\\\">three</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.7249 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 94.6082)\\\" x=\\\"0 5.56 11.12 16.12 21.12 23.03 25.69 31.25 36.81 39.59 41.87 46.87 52.43 55.09 57.87 63.43 66.09 71.09 76.65 82.21 87.21 92.77 95.05 97.83 100.49 107.71 113.27 115.55 117.83 120.49 126.05 128.83 131.49 134.82 140.38 145.94 151.5 154.83 157.49 163.05 168.61 174.17 177.5 183.06 188.62 194.18 199.74 202.4 207.96 210.74 213.4 215.68 221.24 226.8 231.8 234.58 237.24 240.02 245.58 248.91 254.47 260.03 262.69 268.25 273.81 278.81 283.81 286.47 292.03 297.59 300.37 305.93 309.26 314.82 317.48 320.26 325.82 331.38 334.04 339.6 342.93 348.49 354.05 359.61 364.61 370.17 375.73 378.39 383.95 386.73 389.51 395.07 400.07 402.85 405.13 410.13 415.69 418.35 423.91 429.47 432.25 437.81 440.47 446.03 448.81 451.47 454.25 459.81 465.37 468.03 470.81 476.37 479.7 488.03 490.31 495.87 501.43 504.21 506.49 512.05 517.61\\\">days&apos; notice to cancel. Call at (100) 000-0006 at least three days before the proposed effective date of the termination.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 81.2898)\\\" x=\\\"0 7.78 10.56 16.12 21.68 25.01 27.67 34.89 40.45 46.01 51.57 57.13 62.69 67.69 70.47 73.13 80.35 85.91 88.69 90.97 93.75 98.75 101.41 106.97 111.97 114.63 120.19 122.97 125.63 127.91 133.47 139.03 144.03 146.81 149.47 152.25 154.53 159.53 165.09 167.75 173.31 178.87 183.87 186.15 191.71 197.27 202.27 207.27 209.93 215.49 221.05 226.05 231.05 233.71 239.27 244.83 247.61 253.17 256.5 262.06 264.72 267.5 273.06 278.62 281.28 286.84 292.4 297.4 300.18 302.84 308.4 310.68 312.96 315.24 317.52 323.08 328.64 331.3 336.86 342.42 345.2 350.76 353.42 355.7 358.48 361.14 366.14 371.7 377.26 380.59 383.25 388.81 393.81 398.81 404.37 409.93 415.49 418.27 420.93 423.21 428.77 431.55 437.11 440.44 448.77 454.33 457.11 459.39 464.95 470.51 473.17 478.17 483.73 489.29 494.85 500.41 505.97 510.97\\\">Other Changes. Notify us at least five business days before the next billing date if your account information changes.</text></g><clipPath id=\\\"clip2-4\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip2-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.775 345.3758 L 573.625 345.3758 L 573.625 344.3758 L 34.775 344.3758 L 34.775 345.3758 z \\\"/><path clip-path=\\\"url(#clip2-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.625 344.3758 L 573.625 344.3758 L 573.625 329.0574 L 572.625 329.0574 L 572.625 344.3758 z \\\"/><path clip-path=\\\"url(#clip2-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.775 344.3758 L 35.775 344.3758 L 35.775 329.0574 L 34.775 329.0574 L 34.775 344.3758 z \\\"/><path clip-path=\\\"url(#clip2-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.775 329.0574 L 573.625 329.0574 L 573.625 328.0574 L 34.775 328.0574 L 34.775 329.0574 z \\\"/><path clip-path=\\\"url(#clip2-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.775 79.6902 L 573.625 79.6902 L 573.625 78.6902 L 34.775 78.6902 L 34.775 79.6902 z \\\"/><path clip-path=\\\"url(#clip2-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.625 328.0574 L 573.625 328.0574 L 573.625 79.6902 L 572.625 79.6902 L 572.625 328.0574 z \\\"/><path clip-path=\\\"url(#clip2-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.775 328.0574 L 35.775 328.0574 L 35.775 79.6902 L 34.775 79.6902 L 34.775 328.0574 z \\\"/><g clip-path=\\\"url(#clip2-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 36.5264)\\\" x=\\\"0 6.498 11.997 14.391 16.785 21.789 26.793 29.295 34.299 39.303 44.307 504 506.3906 508.7812 511.1719 513.5625 515.9531 518.3438 520.7344 523.125 525.5156\\\">UT  07/2019          </text></g><g clip-path=\\\"url(#clip2-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 26.3398)\\\" x=\\\"0 6.003 11.007 16.011 21.015\\\">Page </text></g><g clip-path=\\\"url(#clip2-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 55.8097 26.3398)\\\" x=\\\"0\\\">3</text></g><g clip-path=\\\"url(#clip2-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.815 26.3398)\\\" x=\\\"0 2.394 7.398 9.9\\\"> of </text></g><g clip-path=\\\"url(#clip2-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 73.1021 26.3398)\\\" x=\\\"0\\\">7</text></g><g clip-path=\\\"url(#clip2-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#d9d9d9\\\" style=\\\"font-family:f2-0; font-size:54pt; white-space:pre\\\" transform=\\\"matrix(0.707 0.707 0.707 -0.707 135.6027 198.5094)\\\" x=\\\"0 56.016 96.048 136.08 176.112 216.144 236.16 284.184 324.216 344.232 364.248 416.232 456.264 480.24\\\">Qoppa Software</text></g><g clip-path=\\\"url(#clip2-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#002ba6\\\" style=\\\"font-family:f2-0; font-size:9pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.932 772)\\\" x=\\\"0 9.336 16.008 22.68 29.352 36.024 39.36 47.364 54.036 57.372 60.708 69.372 76.044 80.04 86.712 90.048 94.044 97.38 104.712 111.384 115.38 118.716 126.72 132.72 139.392 142.056 148.728 155.4 158.736 161.4 168.072 174.744 178.08 187.416 194.088 196.752 202.752 206.088 210.084 213.42 220.092 223.428 226.764 233.436 239.436 242.772 246.108 249.444 258.108 266.772 275.436 278.772 285.444 292.116 298.788 305.46 312.132 315.468 321.468 328.14\\\">Qoppa Software - For Evaluation Only - https://www.qoppa.com</text></g></g></svg></svg></g></svg><br>\\n<?xml version='1.0' encoding='UTF-8'?><svg id=\\\"qoppa_document\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" version=\\\"1.1\\\" xmlns=\\\"http://www.w3.org/2000/svg\\\" xmlns:xlink=\\\"http://www.w3.org/1999/xlink\\\"><!-- jPDFWeb v2019R1.03 - Demo Version --><style>title p { display: block; }</style><g id=\\\"qoppa_viewxform\\\" transform=\\\"matrix(1 0 0 1 0 0)\\\"><style type=\\\"text/css\\\">@font-face {font-family:f3-0;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f3-1;src:url(\\\"data:application/font-woff;charset=utf-8;base64,d09GRgABAAAAABGUAAoAAAAAGPwAAQABAAAAAAAAAAAAAAAAAAAAAAAAAABPUy8yAAAA9AAAADcAAABWXhNbUGNtYXAAAAEsAAAAZAAAAHRBjOKmZ2x5ZgAAAZAAAA2oAAATvPYbMJhoZWFkAAAPOAAAADEAAAA2HL9qvGhoZWEAAA9sAAAAIAAAACQNvwX/aG10eAAAD4wAAAC2AAABHiMuGdhsb2NhAAAQRAAAAJIAAACSpvKirm1heHAAABDYAAAAGAAAACAATAAzbmFtZQAAEPAAAACYAAABdhyGNgFwb3N0AAARiAAAAAwAAAAgAAMAAHicY2Bk8mKcwMDKwMDUxbSbARlwMeogc/8DATI/MCDAkUEBCG+yXv4XxLCD9TLjOpgcAM6cDRIAeJxjYGBgZGAGYgYGHgYWhgwgLcYgABRhY1Bg0GQwYTBnsGbwYghniGSoUpD9/x8or8CgzqDDYMZgyeDI4AMUT1SQ+f///+P/d//f/n/r/83/V/5f/n/p/+kHWmBTsQAA4QwbQniclVgLVBNXGp57JxMeoiVipNRSHWKgFF8whIhVtIoYkIKARbBU8MFDfFWCteARRJCoPCqIFSlaVq3lWA5Va9FG0tZgba1EsNbtVg51W9e1sG7b47pdC5nr/ncmEfV09+xOTpKZzP3v/b/vfv9jwiAmjT2BAjkzwzEM0qi9BC8UaAteN5Ez/0xuIR8GDsRsIok4g7vCuNELlSfS0A+cQa6ioBLSiFaQRHQdfY9+QNdJCBlORpAQ2S4G7CbLdl7URKAfMSiIXC0Bo0buCuHJM2Qs4dEldAf9A10CmzZyHZUyNsadYbQatTBKow7Rh+lQqS0zMzM01GY7mxEfXwrjZqPTOAevYVhYiFfzOEe8hv3xmg/pum3wQedg5TnAGA74HQ4cDljhdzckINRMUmpQM2ceiIIfGcyk3b+l8AZ/n2C8wdIvwF/lqQ8TQrxHqzxdlOw4lScPbxy+0wDHzgr6WUE0qBd9t6m8HC1EL5m2bzeR90hLeTmXIrqKHvguvkf9ucHAkjCvK+UY84BIJbBMjUDe/TmvHVj4tS52sBjGzWQYhTuM42F1Pkw7HoCHBvhr/FyULkKY7Il6FFzAS80r3MXpHOKQMiVl48aeS8VFnh3ucXFri6OiEhO/601KYi+2zrp2rXBT0/ENr+Ubz26PioqaW2BalfvBicLCcnl/FgPeMbDeFLgIe2QxeSkeyHOsqQE2dJrR3qOFEHkgq8gJEfLzzx0vKFBbn/rzmunTyU9BhsaExPi4su3R0R3uW7d2XaqoiDaw2glJC5c0565attTc9/zz6+y758fsNL30UlzcavP69cXFF7dnZgL3YwH7KM4GZ8NBLUjFa1QapOZVgkroQlZUer5OzMR5lvNYgZvEDPaCXX+EHERLGOe++QKO4cyzFMnDPrMjJd4Ef4AGmzfkv8YP+dS9tTlmfnR0YUVSEn4iaaHpso/VJy/vHXGgrOyn7s1FxUWn2/G2A+npdbXLlplMqBoNq37j2w/T0uw9pPn0qdrdly9tK6c8LgPfvUFCSlmLIC2Ft30+/kXsvYLVnLl14C6no34mO/Ql+ylzGirvqxeW/JUYBj/ljVCPov6yi8HP+TEOPz2TkkxfPWl9Ms94GLtQP4vA0VMWVrd/iexnOckjd9+opn6yWpR66tTu2suXyrfR9aW4UGhBjC5StAuqB9Gh0NrEDZR9Kf6kMSOGxgxFoU2OQ3m4HIv4PmEYLgXwu9CoRRokePFeAvJCLL4s2mwHcdbRHnvMrwjTSEMfk9k4BTeLKVSDLHMYuLsNtq6QIsZT/qTNCwQBOHeRR7BdAfKm8Sp+nD4MZSHD1wsSyGHyNgo9FRMTG/sHYmbL50VVXykv7xd/xVo0rLISH5kxvdSuWKIPW/16qECSN2UsHZ/1deuKFQNRa9dK+s+4f4tbIscbB/j0GqUsGmfYO2TjoqTCYd1/O3RI/cWI3NyW3pKSrVuvv7N6jccX6ubmn8kF80cfmX22bOlvXLiwoQE9jXz3NSQmVlwpKbF1kkPkkK1TSj0UK5cBWN0ZFUU6Tk4sgciF5pVABLCGoVnG/Px8cpb804ou47+JajKZ89i1i/xG7uypa8U38VXwm3LWB/MMo3lCxescb0WffTMbaP+GXTrYq5jbin5pRZ+2DkTJsU5tSsCG5nAaVbJFiV1jxcfFeHYM3Rtc34rOO3hpA1404O84vTcMVvNqJf84M7yTGS2atUfYIZ5FpQ2k44fKyp0VNz7Oz/e4oD72PvkX+cxqPfeZzwcN+Pb71y+/1Yh80FNvvZWwoPqPxVu6LpF3SXNXl+wfp5ExIY2KV2mojyqB03SISqsVD3RwZvEIXgxOnhDjYHw7jCuWczmMF1BxRweFIGHV37/FpsG9kdI9KROAikfJwa9i06xTp678vCM3t+1iTg5ntqs+ef555BHQtm7dq+vRcAdXk+WaqKWe8IrJot7KVrRyHrCCdF+phPselEs3iU6IeZWgVJJesp4YSe9pdLAVHTzNmQenKc4PRCmuD/L0/RBON8k36jrYcpqPROb8aZb5HCw2KbaBxbbBTZJm6F70SDVp7O/VJHkHaFDQpMH6Xquqqqru/baysqryGrn4GRxIh0LPwVHVuB95oycb4SA/kh8bG7mo7m5ylLx3ubu7GyWj5O5uh0YVdgnbGEc0OsOQFaTgo3FIIxHUuq54TuSECQviz5AqqxWtR8OqqubNKyw4KfZyHiNHRkamlEVFia44xmj8bue6V3k/GU8FdxfwjGS0ML+L9yMBB5i8JSBOafEhem8922OsXZn/AJmp9uNz50inE53t0B0jMu8wBj+C706T8SqKpaCcIJd/ssMZg7lSvuGlGHSkGP8AXdgQNqo9ihyyWBbqQtMSEz4k8ez6Bfv2paRERq5efVTcaEXZryYna3d+xfkMVIaHk7V/ClaMzcqq35aby/OgUuPs2TmkQI49Wp9uA+ZgOc/Iq9CXlP3HeUlpxpHvH/ANtEjlANvuvLk3MdFoPNdhmJeaehDF+1rc6uvv3X6jes3aQXt29orlh1oKC54447qvwWfzZsuelNTnngsKmjQpLXPGDPLrV0ZjXt4JKGJhOr2+wDhnTlz84WsVFZJfE2Gv26S8LdUtilrRNrgRfd+Bbsply0POHaBBqlkfR54M8wHdeso+0lPJbXzj7JYtM2d1LF165szSpVber6jYJ2JmURFyZxfYPyDXX4YD8eyL9mPHy8uXL6fzwuycQa6bblhDy2YBCSbBXXjaF3gaRIK3ok9uzWAsrO1SIMccjHWjVYb2cMoW0kPa+kgb6elEe8xoKcowozfBNllxlL4hkgYGlY45oDpxsdLeS+vR0FNkkFgScxvPsuJZkGFewYfsH4i78Rr2RdBKHOSRW4oZzFOMP8PwgopWoHGs3B3BLkFDIecUnaNu6EJ5gQ1qz8vrJPPV7a721/V6D480sTgr68CNXSGLFr2SNX06aijBrX9PSCAfnfTzCxXySKUp+aXyowbYswkJ1+U6UQF6CZKw+j7Wz9C0qJPTmNysIUPJ/sLISIOhcH+BxfJai7V4S15e9/EifLctK/Nc18qcEsXHA1GJq/bWI25wd91eiQcD4LoJuB6ve85mxNspSBqCOLw1f4Paqoick25aCIcpfU6kwqrekN/6w3aTabtPSsqRJSEhWdlfXszKDglJP5KSUlMDWf9ebY2Eha51C7B4UizAoUYlz+xk7qF1gbr2jS1ntxRLCEoOFMyNNEQX7C/kzMQnt34vsQ/W1dWfaMvMOteVs7JEnlsRBDhcaaVCjg7ZGz0MKYDXeQ5hQZ6jExLW5y9Y4E3624qKR3coFsQvL12c6sGO3W668d3OHdXVuKBhfmxs7D5xbWrq4VeEkNTU0xORW01N3W5iJwO7ayl/ngBsGcSzGi50Gof3OtpgqmnDJKhw8AXeb+60qSEvk28aG9vZmrq0dP8A98Me5NiSOvs6tkbeZwNJlPTlwQQ+1g/qNeqHaZJ3X6cZJXWHbNAQNw8zZjCU9XcY87+Ap6lgJ0v2xAfM6b42RLfuXrQISxqADMDSvksl10+VrDI48eSpqiyWXbtyJ022kH3HqqTW4N7R8PCtYiJuQ6a3JY2CnUGqv45eUk2rMNhZLJy588JgD/SFp8lCxxivB2NkHavlPlwaP3p0hBAW8mKJwSAZHikLmjCiyd0w7y8P/Lwn9wU06KW+QI8EPAPV/kSyQfIo9XvcgCpIMjsTussjG8SbTjvH2nJ/YKB+OfoDuKfUAu/j4ILCVbpQsnWP0OA8UWqJeV5MTO6svkPlFkvpjsX+/u1lO1L9/S2UCj9+86dvmwZ7gJ6pU8uAHsc3M8QxrPM/cKzQSpM8yrFT3w9qvzNAqR5Yh6alZAAax+FyeMqfUmz+cIM+kW6SYzM76+KX2Vms1RmdNbXIlQqb7iXJkdb5/Xyj+v/yDRs4MAf1P5RwqM5zHDr3/e86h8fi/6Dt9t+VtNjn5BmfgPnhyRE9spP4xKRn92+0WLJ3zX9WoXNtqQOSf9pL2zZmJuSlY2AT+GhNdvglYP7xejwuQDMSKyG+lrxy9tMpUyJmpn/j3u5G0k+uXpW86Ez79OkRMzaQAWwZ5ZOeUVMfETFp8pinI+aOH/8mClyUXFY7bdrkyc/4GqKDp1jJUVhfc/8ODuAm0rqmlRmBzA7PvPRxSy6owAcOmBg85ekxLS3tpaXDh4eF5UdHVLn6PrMGr6hDruRenXjk1RdeeC7QA+YzSbVKS7UmZVnHnFCnoYeimbX0QO6kSRaUTbUmulKl4VYxhrzeJGsVuj2oCdqhWsz6kFvkVieqaUY1Cq3dykYM9sB9Zx1th3NK5DCkGUaL8Rhavm93/NLyc8dlNOvkzb+eRDPB7BvpgSRwsIf1sN+VzMEenizZO3AhxzSYu0nFHOeilf19ff1oJXm9H8Tp2o8DkZ1UISPB4rfoAFlG/YScSf2E3t7LmUfghaSWAH8+aYIwL/2F2c8GTkM1nQ4AqfeZEa0jwqcmJdY7gdyX/IC9Z6/CXG60z0c6+uiu5tmrYgzeY2/Ea8VVbEsTvtnUJI5pkvL1QvYmToa87y5lfk2ooAOR+CJBO3SKePl/KqRbsYJ+K05ID8mO/61sjGMeG8xjds7z4Pn64T+8eJs0AfS30oSQGs9mxMWXdcpfMM2/AbhYBZZ4nGNgZGBgAGKuhrvb4/ltvjJwczCAwG1zgbMw+v+Of0HslayXgeo4GJhAogBDGgwbAAAAeJxjYGRgYL38L4hhB3vv/x3/b7BXMgBFUIA7AL1WB8x4nEWNMQrCQBREJyGJEERsxULBysJaUgWsxMIqpJAU4hFsPUCK4C22iQcIFtYewCvkHsaXzYILj5ndP/NXGo7/gKXklSr8Wjc4+IkadGc1kYKrCmghhRMs3NsFcpdrwrz7hrlM+NYZTO+DViZKhjuZVyBt6Ziotrlhlv8z+ILOxvnx6K4ZGtM5QkV/j1rYN3W+8j493ZO59eyvbN7Nbb62/ZTeinuJn/NPjE56D2symbIfsmI9CAAAAAAAAAAAAAAAAAASAC4ASABcAGoAdgCGALIAxgD+AUQBYgGiAbYB9gIIAiICQAJ+ArYC2gL0AwoDRANcA2oDigOaA7gD0AQIBDgEeASyBP4FEgU+BVQFdgWOBcoF+gYwBl4Gmga+BvwHHAcuB1AHbAd6B64HzggCCDIIYgh8CLwI5AkECRoJOglYCX4Jlgm6Cd4AAHicY2BkYGDwYDBiYGYAAUYGNAAADQ8AgHicpYw9CsJgEERfTPxrrSzTC6IRrKy0UBCJIEiwEzUxIH5ibGw8gQfzGB7FSfKdwLAMvNnZWaDJDhfHawMdqWSHsVzJNVosLLtMWFv2xG/Ldbp8LDe0/zLDcOPJnZSEMw9CIpZqz1nRk1IOSg2ZFCv32bDnKp/TqWjGTJVeOP7ZfjEiqNTdFj7TxujCZ0ifgabCzx8N0TakeJxjYGbACwAAfQAE\\\");}@font-face {font-family:f3-2;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}</style><svg id=\\\"qoppa_page_p3\\\" class=\\\"qoppa_page\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\"><rect class=\\\"qoppa_pageborder\\\" x=\\\"0.5pt\\\" y=\\\"0.5pt\\\" width=\\\"611pt\\\" height=\\\"791pt\\\" fill=\\\"none\\\" /><svg class=\\\"qoppa_pagecontents\\\" x=\\\"0pt\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" viewBox=\\\"0 0 612 792\\\" ><g class=\\\"qoppa_contentstream\\\" transform=\\\"matrix(1 0 0 -1 0 792)\\\" fill=\\\"black\\\" stroke=\\\"black\\\" stroke-width=\\\"1\\\" stroke-linecap=\\\"butt\\\" stroke-linejoin=\\\"miter\\\" stroke-miterlimit=\\\"10\\\"><clipPath id=\\\"clip3-1\\\"><path d=\\\"M 35 730 L 574 730 L 574 770 L 35 770 L 35 730 z \\\"/></clipPath><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 757.4812)\\\" x=\\\"0 6.6699 11.6699 16.6699 22.2314 27.793 35.0146 37.2949 42.8565 48.418 53.9795 62.3096 67.8711 73.4326 76.2109 81.2109\\\">Acknowledgments.</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 124.6643 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 127.3205 757.4812)\\\" x=\\\"0 6.6699 12.2314\\\">You</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 145.1135 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 147.7697 757.4812)\\\" x=\\\"0 3.3301 8.8916 14.4531\\\">read</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 167.7844 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 170.4406 757.4812)\\\" x=\\\"0 2.7783 8.3398 10.6201\\\">this</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 186.0607 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 188.717 757.4812)\\\" x=\\\"0 5.5615 11.1231 13.9014 19.4629 25.0244 28.3545 30.6348 35.6348 41.1963 43.9746 46.2549 51.8164\\\">authorization</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 246.0949 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 248.7512 757.4812)\\\" x=\\\"0 2.2803\\\">in</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.593 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 259.2492 757.4812)\\\" x=\\\"0 5.5615 8.8916 11.1719 16.7334 19.5117\\\">print,</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.5393 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 284.1955 757.4812)\\\" x=\\\"0 5.5615\\\">on</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 295.3186 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 297.9748 757.4812)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 303.5363 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 306.1926 757.4812)\\\" x=\\\"0 5 10.5615 18.8916 24.4531 30.0146 32.793 38.3545\\\">computer</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 347.8771 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 350.5334 757.4812)\\\" x=\\\"0 5 10 13.3301 18.8916 24.4531 30.0147\\\">screen,</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.3264 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 385.9826 757.4812)\\\" x=\\\"0 5.5615\\\">or</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 394.8742 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 397.5305 757.4812)\\\" x=\\\"0 5.5615 8.3398 13.9014 19.4629\\\">other</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 420.3234 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 422.9797 757.4812)\\\" x=\\\"0 5 7.2803 12.2803 17.8418 23.4033\\\">visual</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 448.6633 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 451.3195 757.4812)\\\" x=\\\"0 5.5615 7.8418 12.8418 18.4033 20.6836 26.2451 31.2451\\\">display.</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 485.343 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 487.9992 757.4812)\\\" x=\\\"0 6.6699 12.2314\\\">You</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 505.7922 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 508.4484 757.4812)\\\" x=\\\"0 5.5615 10.5615 15.5615 21.1231 26.6846 33.9062 36.1865 41.7481 47.3096 52.8711\\\">acknowledge</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 566.8811 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 746.1629)\\\" x=\\\"0 5.5615 11.1231\\\">and</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 57.3596 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 60.0158 746.1629)\\\" x=\\\"0 5.5615 11.123 14.4531 20.0146\\\">agree</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 85.592 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 88.2482 746.1629)\\\" x=\\\"0 2.7783\\\">to</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 96.5881 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 99.2443 746.1629)\\\" x=\\\"0 2.7783 8.3398\\\">the</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 113.1457 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 115.802 746.1629)\\\" x=\\\"0 2.7783 8.3398 10.6201 12.9004 18.4619 25.6836 27.9639 33.5254 39.0869\\\">following:</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 157.6672 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 160.3234 746.1629)\\\" x=\\\"0 2.7783 8.3398 10.6201\\\">this</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 175.9436 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 178.5998 746.1629)\\\" x=\\\"0 6.6699 13.8916\\\">ACH</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 199.7131 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 202.0693 746.1629)\\\" x=\\\"0 7.2217 12.7832 18.3447 20.625\\\">Debit</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.4727 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 227.8289 746.1629)\\\" x=\\\"0 6.6699 12.2314 15.0098 20.5713 26.1328 29.4629 31.7432 36.7432 42.3047 45.083 47.3633 52.9248\\\">Authorization</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 286.3152 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 288.6715 746.1629)\\\" x=\\\"0 2.2803\\\">is</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 295.9518 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 298.308 746.1629)\\\" x=\\\"0 5.5615 11.123\\\">not</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.2094 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 314.5656 746.1629)\\\" x=\\\"0 5.5615\\\">an</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 325.6887 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 328.0449 746.1629)\\\" x=\\\"0 2.2803 7.8418 12.8418 15.6201 18.9502 24.5117 32.8418 38.4033 43.9648\\\">instrument</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 374.7881 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 377.1443 746.1629)\\\" x=\\\"0 5.5615 11.123 16.123 21.6846 25.0146 30.5762 36.1377\\\">governed</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 418.8436 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 421.1998 746.1629)\\\" x=\\\"0 5.5615\\\">by</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 431.7613 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 434.1176 746.1629)\\\" x=\\\"0 6.6699 10 12.7783 15.0586 20.0586 22.3389\\\">Article</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 462.018 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 464.3742 746.1629)\\\" x=\\\"0\\\">3</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 469.9357 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 472.292 746.1629)\\\" x=\\\"0 5.5615\\\">of</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 480.6318 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 482.9881 746.1629)\\\" x=\\\"0 2.7783 8.3398\\\">the</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 496.8895 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 499.2457 746.1629)\\\" x=\\\"0 7.2217 12.7832 15.0635 17.8418 23.4033 26.7334\\\">Uniform</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 734.8445)\\\" x=\\\"0 7.2217 12.7832 21.1133 29.4434 35.0049 38.335 43.335 45.6152 51.1768\\\">Commercial</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 94.132 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 96.4883 734.8445)\\\" x=\\\"0 7.2217 12.7832 18.3447 23.9062\\\">Code.</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 123.1728 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 125.5291 734.8445)\\\" x=\\\"0 6.6699 10 12.2803 17.8418\\\">Print</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.1492 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.5055 734.8445)\\\" x=\\\"0 5.5615 11.1231\\\">and</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 165.19 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 167.5463 734.8445)\\\" x=\\\"0 3.3301 8.8916 11.6699 17.2314 19.5117\\\">retain</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 192.6195 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 194.9758 734.8445)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 200.5373 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 202.8936 734.8445)\\\" x=\\\"0 5.5615 11.123 14.4531\\\">hard</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 222.9082 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 225.2645 734.8445)\\\" x=\\\"0 5 10.5615 16.123\\\">copy</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 246.3875 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 248.7437 734.8445)\\\" x=\\\"0 5.5615\\\">or</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.6353 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 259.9916 734.8445)\\\" x=\\\"0 5.5615 7.8418 13.4033 18.4033 21.1816 24.5117 30.0733 35.6348 37.915\\\">electronic</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.9066 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 305.5629 734.8445)\\\" x=\\\"0 5 10.5615 16.123\\\">copy</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 326.6859 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 329.3422 734.8445)\\\" x=\\\"0 5.5615\\\">of</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 337.682 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 340.3383 734.8445)\\\" x=\\\"0 2.7783 8.3398 10.6201\\\">this</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.9584 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 358.6147 734.8445)\\\" x=\\\"0 6.6699 13.8916\\\">ACH</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 379.7279 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 382.0842 734.8445)\\\" x=\\\"0 7.2217 12.7832 18.3447 20.625\\\">Debit</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 405.4875 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.8438 734.8445)\\\" x=\\\"0 6.6699 12.2314 15.0098 20.5713 26.1328 29.4629 31.7432 36.7432 42.3047 45.083 47.3633 52.9248 58.4863\\\">Authorization.</text></g><clipPath id=\\\"clip3-2\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip3-2)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.775 770.2 L 573.625 770.2 L 573.625 769.2 L 34.775 769.2 L 34.775 770.2 z \\\"/><path clip-path=\\\"url(#clip3-2)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.775 731.2449 L 573.625 731.2449 L 573.625 730.2449 L 34.775 730.2449 L 34.775 731.2449 z \\\"/><path clip-path=\\\"url(#clip3-2)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.625 769.2 L 573.625 769.2 L 573.625 731.2449 L 572.625 731.2449 L 572.625 769.2 z \\\"/><path clip-path=\\\"url(#clip3-2)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.775 769.2 L 35.775 769.2 L 35.775 731.2449 L 34.775 731.2449 L 34.775 769.2 z \\\"/><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 718.5262)\\\" x=\\\"0 7.22 15 22.22 25.55 34.99 41.66 44.44 51.11 57.78 65 67.78 70.44 79.88 85.44 88.1 93.66 99.22 101.88 107.44 113 115.78 118.44 125.66 131.22 133.5 138.5 144.06 146.72 152.28 157.84 161.17 163.83 167.16 169.44 175 180.56 183.34 188.34 191 196.56 199.89 202.55 205.88 211.44 219.77 225.33 230.89 233.17 238.73 243.73 246.39 251.95 257.51 263.07 268.63 271.96 274.62 277.4 282.96 285.24 290.24 292.9 299.57 305.13 308.46 314.02 319.58 327.91 333.47 339.03 341.81 344.47 350.03 355.03 357.69 360.47 366.03 368.31 370.59 372.87 378.43 383.99 386.65 389.43 394.99 397.65 403.21 408.21 413.77 417.1 422.1 424.38 429.38 434.94 437.6 440.38 445.94 451.5 459.83 462.49 468.05 470.83 473.49 479.05 484.61 489.61 492.27 495.05 497.33 505.66 511.22\\\">NON-WAIVER. We do not waive our rights or remedies under this Agreement by failing to exercise them at any time.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 705.2078)\\\" x=\\\"0 7.22 15 23.33 31.66 38.88 46.1 48.88 56.1 62.77 68.88 71.66 78.88 86.66 89.32 98.76 101.54 107.65 114.87 117.53 124.2 131.98 139.2 141.98 144.64 151.86 158.53 164.09 169.65 172.31 179.53 186.2 193.42 201.2 208.42 215.64 218.42 225.64 233.42 236.2 238.86 242.19 247.75 253.31 258.87 262.2 264.86 270.42 275.98 281.54 284.87 290.43 295.99 301.55\\\">COMMUNICATING WITH YOU; CALL RECORDING: (100) 000-0006</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 691.8895)\\\" x=\\\"0 6.67 13.89 20 22.78 30\\\">ENTIRE</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 69.7699 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 74.2589 691.8895)\\\" x=\\\"0 6.67 14.45 21.67 28.34 35.01 43.34 50.01 57.23 63.34\\\">AGREEMENT,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 140.377 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 144.866 691.8895)\\\" x=\\\"0 7.22\\\">NO</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 159.866 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 164.3549 691.8895)\\\" x=\\\"0 6.67 13.89 21.11 23.89 30 32.78 40.56 47.78 54.45\\\">ADDITIONAL</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 224.3647 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 228.8536 691.8895)\\\" x=\\\"0 6.67 13.89 21.67 30 32.78 39.45 46.12 52.79\\\">PROMISES,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 284.42 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 288.9089 691.8895)\\\" x=\\\"0 9.44 16.66 19.44 25.55 31.66 38.33\\\">WRITTEN</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 334.4558 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.9447 691.8895)\\\" x=\\\"0 6.67 13.89\\\">AND</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 360.058 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 364.547 691.8895)\\\" x=\\\"0 6.67 9.45 17.23 24.45 31.12\\\">SIGNED</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.8868 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.3757 691.8895)\\\" x=\\\"0 7.22 14.44 21.11 28.33 36.11 42.78\\\">CHANGES</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.8289 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 461.3178 691.8895)\\\" x=\\\"0 7.78 15 20.56 27.23\\\">ONLY.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 491.3276 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 495.8165 691.8895)\\\" x=\\\"0 6.11 11.67 13.95\\\">This</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 514.7667 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 519.2556 691.8895)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 680.5711)\\\" x=\\\"0 2.78 8.34 13.9 19.46 22.24 27.8 33.36\\\">together</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 69.7943 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 72.8324 680.5711)\\\" x=\\\"0 7.22 9.5 12.28\\\">with</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 90.6742 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 93.7124 680.5711)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 107.6137 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 110.6518 680.5711)\\\" x=\\\"0 5.56 8.34 13.9 19.46\\\">other</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 133.4448 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 136.4829 680.5711)\\\" x=\\\"0 5.56 11.12 16.12 21.68 30.01 35.57 41.13 43.91\\\">documents</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 185.3989 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 188.437 680.5711)\\\" x=\\\"0 3.33 8.89 11.67 17.23 20.56 23.89 29.45\\\">referred</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 223.4517 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 226.4898 680.5711)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 234.8296 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 237.8677 680.5711)\\\" x=\\\"0 5.56 11.12 14.45 20.01 22.29 27.85\\\">herein,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 268.5025 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 271.5406 680.5711)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24 28.52 34.08\\\">including</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 311.189 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 314.2271 680.5711)\\\" x=\\\"0 5.56 11.12\\\">but</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 328.1285 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 331.1666 680.5711)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 345.068 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 348.1061 680.5711)\\\" x=\\\"0 2.28 4.56 12.89 15.17 17.95 23.51\\\">limited</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 377.1783 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 380.2165 680.5711)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.5563 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 391.5944 680.5711)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 411.0475 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 414.0856 680.5711)\\\" x=\\\"0 5.56 11.12 14.45 19.45 25.01 30.57 35.57\\\">purchase</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 455.2233 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 458.2614 680.5711)\\\" x=\\\"0 3.33 8.89 13.89 19.45 21.73 27.29\\\">receipt</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 488.3347 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 491.3728 680.5711)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 508.0574 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 511.0955 680.5711)\\\" x=\\\"0 2.78 5.06 10.62 16.18\\\">final</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.5574 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 532.5955 680.5711)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 669.2527)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 66.4545 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 69.6146 669.2527)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 86.2991 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 89.4592 669.2527)\\\" x=\\\"0 5 10 15.56 21.12 26.68 32.24 34.52 40.08\\\">schedule,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 132.3254 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 135.4855 669.2527)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 142.7658 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 145.9259 669.2527)\\\" x=\\\"0 5.56 11.12\\\">our</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.379 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 163.5391 669.2527)\\\" x=\\\"0 5.56 11.12 13.9 16.18 19.51\\\">entire</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 188.6123 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 191.7724 669.2527)\\\" x=\\\"0 5.56 11.12 14.45 20.01 25.57 33.9 39.46 45.02 47.8\\\">agreement.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 242.3583 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 245.5184 669.2527)\\\" x=\\\"0 9.44\\\">We</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 260.5184 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 263.6785 669.2527)\\\" x=\\\"0 5.56 11.12 16.12\\\">have</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 285.363 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 288.5231 669.2527)\\\" x=\\\"0 8.33 13.89 19.45\\\">made</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 313.5378 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 316.6978 669.2527)\\\" x=\\\"0 5.56\\\">no</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 327.8209 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 330.981 669.2527)\\\" x=\\\"0 5.56 8.89 14.45 22.78 25.06 30.06 35.62\\\">promises</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.606 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 374.766 669.2527)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.1059 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 386.266 669.2527)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.389 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 405.5491 669.2527)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.4504 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 422.6105 669.2527)\\\" x=\\\"0 5 10.56 16.12 18.9 24.46 26.74 32.3 37.86\\\">contained</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.0383 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 469.1983 669.2527)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 477.0401 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 480.2002 669.2527)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 495.8203 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 498.9804 669.2527)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 547.8964 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 551.0565 669.2527)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.9481 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 563.1082 669.2527)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 657.9344)\\\" x=\\\"0 5 10.56 15.56 21.12 23.78 29.34 32.12 37.68 43.24 46.57 49.23 54.79 60.35 65.35 70.91 79.24 84.8 90.36 93.14 98.14 100.92 103.58 110.25 115.81 120.81 123.47 128.47 134.03 139.59 145.15 150.71 156.27 158.93 161.71 167.27 169.93 172.71 178.27 180.55 185.55 188.21 194.88 200.44 203.77 209.33 214.89 223.22 228.78 234.34 237.12 239.78 248.11 253.67 258.67 261.45 264.11 269.67 275.23 277.89 285.11 288.44 290.72 293.5 296.28 301.84 307.4 310.06 315.62 321.18 326.74 329.4 334.4 336.68 342.24 347.8 353.36 358.92 361.58 367.14 372.14 374.8 379.8 385.36 390.92 393.58 399.14 404.7 410.26 412.92 418.48 423.48\\\">such other documents. Any change to this Agreement must be written and signed by you and us.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 644.616)\\\" x=\\\"0 7.22 14.44 21.11 27.22 35 43.33 50\\\">CUSTOMER</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 90.3217 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 93.5458 644.616)\\\" x=\\\"0 8.33 16.11 23.33 26.11 32.22 35 41.67\\\">MODIFIED</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 142.4325 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 145.6566 644.616)\\\" x=\\\"0 6.67 13.34 20.01 28.34 35.01 42.23\\\">PAYMENT</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 193.9964 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 197.2205 644.616)\\\" x=\\\"0 7.22 13.89 20 26.67\\\">DATES</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 230.5603 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 233.7844 644.616)\\\" x=\\\"0 6.67 13.89\\\">AND</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 254.8977 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 258.1218 644.616)\\\" x=\\\"0 6.11 13.33 20 27.78 35 41.67 48.89 56.11 62.78\\\">FREQUENCY.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 323.6833 644.616)\\\" x=\\\"0 3.2241\\\">  </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 330.1315 644.616)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 347.3629 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 350.587 644.616)\\\" x=\\\"0 5.56 11.12 13.9 19.46\\\">dates</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.0499 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 378.274 644.616)\\\" x=\\\"0 2.78 8.34 11.67\\\">for,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 392.7222 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 395.9463 644.616)\\\" x=\\\"0 2.78 6.11 11.67 17.23 22.79 28.35 33.91 38.91\\\">frequency</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 439.8623 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 443.0864 644.616)\\\" x=\\\"0 5.56 8.34\\\">of,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.2046 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 457.4286 644.616)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57\\\">number</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 491.3349 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 494.559 644.616)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 502.8988 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 506.1229 644.616)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 522.8075 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 526.0316 644.616)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.386 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 562.6101 644.616)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 633.2977)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 68.1781 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 72.0521 633.2977)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46\\\">Payments</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 116.515 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 120.389 633.2977)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 128.2308 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 132.1048 633.2977)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 147.7249 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 151.5989 633.2977)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 200.5149 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 204.3889 633.2977)\\\" x=\\\"0 5.56 8.89\\\">are</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 218.842 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 222.716 633.2977)\\\" x=\\\"0 5.56 11.12 16.12 21.68\\\">based</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 249.9621 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 253.8361 633.2977)\\\" x=\\\"0 5.56 11.12 16.68\\\">upon</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.0822 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 279.9562 633.2977)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 293.8575 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 297.7315 633.2977)\\\" x=\\\"0 5.56 11.12 16.12 21.68 27.24\\\">payday</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.9776 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 333.8516 633.2977)\\\" x=\\\"0 2.28 7.84 10.62 16.18 19.51 27.84 33.4 36.18 38.46 44.02\\\">information</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.4366 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 387.3105 633.2977)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.4336 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.3076 633.2977)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29 32.85\\\">provided</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 445.7255 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 449.5995 633.2977)\\\" x=\\\"0 7.22 9.5 12.28\\\">with</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.4413 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 471.3153 633.2977)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 490.7684 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 494.6424 633.2977)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 34.58 36.86 42.42 47.98\\\">application.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 545.409 633.2977)\\\" x=\\\"0 3.874\\\">  </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.157 633.2977)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 621.9793)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 51.9916 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 55.3463 621.9793)\\\" x=\\\"0 5 10.56 16.12 18.9 24.46 29.46\\\">contact</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 87.5875 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 90.9422 621.9793)\\\" x=\\\"0 5.56 11.12\\\">our</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 105.3953 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 108.75 621.9793)\\\" x=\\\"0 5 10.56 15.56 18.34 23.9 32.23 37.79\\\">customer</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 149.873 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 153.2277 621.9793)\\\" x=\\\"0 5 10.56 13.89 18.89 21.17 26.17\\\">service</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 184.9611 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 188.3158 621.9793)\\\" x=\\\"0 5.56 11.12 16.68 22.24 25.57 28.35 36.68 42.24 47.8\\\">department</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.9017 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 242.2564 621.9793)\\\" x=\\\"0 5.56 8.89\\\">or,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 253.9263 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 257.281 621.9793)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.3396 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 265.6942 621.9793)\\\" x=\\\"0 5.56 10.56 16.12 18.4 20.68 26.24 31.8 34.08\\\">available</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 305.3427 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 308.6973 621.9793)\\\" x=\\\"0 5.56 10.56\\\">use</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 324.8204 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 328.1751 621.9793)\\\" x=\\\"0 5.56 11.12 13.9 19.46 27.79 33.35 36.13 41.69\\\">automated</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.4309 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 378.7856 621.9793)\\\" x=\\\"0 8.33 13.89 19.45 25.01 30.01\\\">means,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 411.5786 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 414.9332 621.9793)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.9918 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 423.3465 621.9793)\\\" x=\\\"0 5.56 10.56 16.12 18.4 20.68 26.24 31.8 34.08 39.64\\\">available,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 465.7733 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 469.128 621.9793)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 477.4678 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 480.8225 621.9793)\\\" x=\\\"0 3.33 8.89 14.45 20.01 25.57 30.57\\\">request</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 514.177 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 517.5316 621.9793)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 523.0932 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 526.4478 621.9793)\\\" x=\\\"0 5 10.56 16.12 21.68 27.24\\\">change</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.2555 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 562.6101 621.9793)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 610.6609)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.0014 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 51.6173 610.6609)\\\" x=\\\"0 5 10 15.56 21.12 26.68 32.24 34.52 40.08\\\">scheduled</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 97.2667 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 101.8826 610.6609)\\\" x=\\\"0 5.56 11.12 13.9 19.46\\\">dates</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 126.3454 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 130.9613 610.6609)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 142.6313 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 147.2471 610.6609)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 163.9317 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 168.5476 610.6609)\\\" x=\\\"0 2.78 6.11 11.67 17.23 22.79 28.35 33.91 38.91\\\">frequency</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 212.4636 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 217.0795 610.6609)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.4193 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 230.0352 610.6609)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 265.1134 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 269.7292 610.6609)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46 44.46\\\">Payments.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 316.9705 610.6609)\\\" x=\\\"0 4.6159\\\">  </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 326.2022 610.6609)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 331.7589 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 336.3748 610.6609)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 349.158 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 353.7739 610.6609)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.68\\\">accept</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.2367 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 387.8526 610.6609)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.4142 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 398.03 610.6609)\\\" x=\\\"0 5 10.56 16.12 21.68 27.24\\\">change</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.8377 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 435.4535 610.6609)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 443.2953 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 447.9112 610.6609)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 461.8126 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 466.4285 610.6609)\\\" x=\\\"0 5 10 15.56 21.12 26.68 32.24 34.52 40.08\\\">scheduled</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.0779 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 516.6938 610.6609)\\\" x=\\\"0 5.56 11.12 13.9 19.46\\\">dates</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 541.1567 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 545.7726 610.6609)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 557.4425 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 562.0584 610.6609)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 599.3426)\\\" x=\\\"0 2.78 6.11 11.67 17.23 22.79 28.35 33.91 38.91\\\">frequency</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 77.016 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 80.7576 599.3426)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 89.0974 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 92.839 599.3426)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 127.9171 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 131.6587 599.3426)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46 44.46\\\">Payments,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 178.8999 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 182.6415 599.3426)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 196.5429 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 200.2844 599.3426)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.6389 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 237.3805 599.3426)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.7204 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 249.4619 599.3426)\\\" x=\\\"0 5.56 11.12 16.12\\\">each</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 271.1465 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 274.8881 599.3426)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 309.9662 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 313.7078 599.3426)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68\\\">Payment</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 353.1707 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 356.9123 599.3426)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 370.9748 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 374.7163 599.3426)\\\" x=\\\"0 5.56 11.12 13.9 19.46 27.79 33.35 36.13 38.41 43.41 48.97 51.25 53.53\\\">automatically</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 433.2515 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 436.9931 599.3426)\\\" x=\\\"0 5.56\\\">be</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 448.1161 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 451.8577 599.3426)\\\" x=\\\"0 8.33 13.89 19.45 21.73 24.51 26.79 32.35\\\">modified</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.7727 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 493.5143 599.3426)\\\" x=\\\"0 5\\\">so</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 504.0758 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 507.8174 599.3426)\\\" x=\\\"0 2.78 8.34 13.9\\\">that</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 524.4971 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 528.2387 599.3426)\\\" x=\\\"0 2.78 8.34 13.9\\\">that</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 544.9184 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 548.6599 599.3426)\\\" x=\\\"0 6.11 11.67 14.45 20.01\\\">Total</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 588.0242)\\\" x=\\\"0 7.22 12.78 17.78 20.56\\\">Cost,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 56.4398 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 60.6221 588.0242)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 77.3067 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.489 588.0242)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 95.3903 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 99.5726 588.0242)\\\" x=\\\"0 5.56 11.12 14.45 16.73 22.29\\\">period</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 127.4291 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 131.6113 588.0242)\\\" x=\\\"0 5.56 10.56 16.12\\\">over</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 151.0645 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 155.2467 588.0242)\\\" x=\\\"0 7.22 12.78 15.06 20.06\\\">which</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 180.8717 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 185.054 588.0242)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 198.9554 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 203.1377 588.0242)\\\" x=\\\"0 6.11 11.67 14.45 20.01\\\">Total</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.4277 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 229.61 588.0242)\\\" x=\\\"0 7.22 12.78 17.78\\\">Cost</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 250.1715 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 254.3538 588.0242)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 261.6341 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 265.8163 588.0242)\\\" x=\\\"0 5.56 11.12 13.4 18.96\\\">paid,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 287.5595 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 291.7418 588.0242)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 305.8043 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 309.9866 588.0242)\\\" x=\\\"0 3.33 8.89 17.22 22.78 25.06\\\">remain</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 340.6116 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 344.7938 588.0242)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 358.6952 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 362.8775 588.0242)\\\" x=\\\"0 5 10.56 18.89\\\">same</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 387.3306 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 391.5129 588.0242)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.0744 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 406.2567 588.0242)\\\" x=\\\"0 5.56 8.89 11.17 16.73\\\">prior</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 426.3202 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 430.5025 588.0242)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 438.8423 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 443.0246 588.0242)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.9259 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 461.1082 588.0242)\\\" x=\\\"0 3.33 8.89 14.45 20.01 25.57 30.57 33.35 38.91\\\">requested</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 505.5858 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 509.768 588.0242)\\\" x=\\\"0 5 10.56 16.12 21.68 27.24 32.8\\\">change.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 545.354 588.0242)\\\" x=\\\"0 4.1823\\\">  </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.7185 588.0242)\\\" x=\\\"0 6.67 12.23\\\">Any</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 576.7059)\\\" x=\\\"0 3.33 8.89 11.67 17.23 22.79 27.79 33.35\\\">refences</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 71.4545 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 75.2825 576.7059)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 83.1243 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 86.9523 576.7059)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 102.5725 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 106.4005 576.7059)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 155.3165 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 159.1445 576.7059)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 167.4844 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 171.3124 576.7059)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 185.2138 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 189.0418 576.7059)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57 33.9\\\">number,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.7264 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 229.5544 576.7059)\\\" x=\\\"0 2.78 6.11 11.67 17.23 22.79 28.35 33.91 38.91 43.91\\\">frequency,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.2488 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 280.0768 576.7059)\\\" x=\\\"0 2.78 5.06 13.39 15.67 21.23\\\">timing</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 306.8688 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 310.6968 576.7059)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 327.3814 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 331.2094 576.7059)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 364.5639 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 368.3919 576.7059)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 376.7318 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 380.5598 576.7059)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 415.6379 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 419.466 576.7059)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46\\\">Payments</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 463.9289 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 467.7569 576.7059)\\\" x=\\\"0 3.33 8.89 11.67 17.23 20.56\\\">refers</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 493.3184 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 497.1465 576.7059)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 505.4863 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 509.3143 576.7059)\\\" x=\\\"0 5 10.56 15.56\\\">such</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 530.4374 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 534.2654 576.7059)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57 33.9\\\">number,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 565.3875)\\\" x=\\\"0 2.78 6.11 11.67 17.23 22.79 28.35 33.91 38.91 43.91 46.69 49.35 52.13 54.41 62.74 68.3 70.96 76.52 82.08 87.64 90.3 95.86 104.19 109.75 115.31 120.87 123.65 126.31 131.87 136.87 139.53 147.86 153.42 158.42 161.08 166.64 172.2 174.86 183.19 188.75 194.31 196.59 199.37 201.65 207.21 212.77 215.43 220.99 225.99 228.65 235.32 240.88 246.44 252 254.66 260.22 263 265.66 270.66 276.22 281.78 285.11 287.77 291.1 296.66 302.22 307.78 313.34 318.34 321.12\\\">frequency, time and amount as may be modified by Snap at your request.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 552.0691)\\\" x=\\\"0 6.67 13.34 20.01 26.68 33.9 40.57 47.24 50.02 55.58 58.36 64.47 71.14\\\">SEVERABILITY.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 107.016 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 110.2288 552.0691)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 115.7855 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 118.9983 552.0691)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 124.5598 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 127.7726 552.0691)\\\" x=\\\"0 5 10.56 16.12 19.45\\\">court</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 150.004 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 153.2169 552.0691)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 162.1085 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 165.3213 552.0691)\\\" x=\\\"0 5.56 8.34 13.9 19.46\\\">other</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 188.1142 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 191.327 552.0691)\\\" x=\\\"0 5.56 7.84 12.84 18.4 23.96 26.74\\\">dispute</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 223.6317 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 226.8445 552.0691)\\\" x=\\\"0 3.33 8.89 13.89 19.45 21.73 27.29 30.07 32.35 37.91\\\">resolution</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 270.3211 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 273.5339 552.0691)\\\" x=\\\"0 5.56 11.12 16.68\\\">body</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 295.2185 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 298.4313 552.0691)\\\" x=\\\"0 2.78 5.06 10.62 16.18\\\">finds</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.6129 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 322.8257 552.0691)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.9488 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 342.1616 552.0691)\\\" x=\\\"0 5.56 11.12 14.45\\\">part</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.393 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 362.6058 552.0691)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 370.9457 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 374.1585 552.0691)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 389.7786 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 392.9914 552.0691)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 441.9074 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 445.1202 552.0691)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 453.4601 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 456.6729 552.0691)\\\" x=\\\"0 5.56\\\">be</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.7959 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 471.0087 552.0691)\\\" x=\\\"0 5 10.56 12.84\\\">void</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.4121 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 492.6249 552.0691)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.5165 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 504.7293 552.0691)\\\" x=\\\"0 5.56 11.12 16.68 22.24 25.02 30.58 33.91 38.91 44.47 50.03 55.59 57.87 63.43\\\">u* D E M O *e,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 540.7508)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 48.7201 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 53.1394 540.7508)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 102.0554 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 106.4747 540.7508)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 113.755 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 118.1743 540.7508)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 126.5142 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 130.9335 540.7508)\\\" x=\\\"0 5.56\\\">be</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 142.0565 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 146.4758 540.7508)\\\" x=\\\"0 3.33 8.89 14.45\\\">read</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 166.4905 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 170.9097 540.7508)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 181.4713 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 185.8906 540.7508)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 190.9492 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 195.3685 540.7508)\\\" x=\\\"0 2.78 8.34 13.9\\\">that</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 212.0482 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 216.4675 540.7508)\\\" x=\\\"0 5.56 11.12 14.45\\\">part</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.6989 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 238.1182 540.7508)\\\" x=\\\"0 7.22 12.78 16.11\\\">were</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.793 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 264.2123 540.7508)\\\" x=\\\"0 5.56 11.12 16.12 21.68\\\">never</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 289.227 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 293.6463 540.7508)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.2078 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 303.6271 540.7508)\\\" x=\\\"0 5.56 11.12 14.45\\\">part</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 320.8585 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 325.2778 540.7508)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 333.6177 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.037 540.7508)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 353.6571 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 358.0764 540.7508)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 409.7707 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 414.19 540.7508)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 431.4215 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 435.8408 540.7508)\\\" x=\\\"0 3.33 8.89 13.89\\\">rest</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 452.5107 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 456.93 540.7508)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 465.2699 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 469.6891 540.7508)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 483.5905 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 488.0098 540.7508)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 536.9258 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 541.3451 540.7508)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 555.4076 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 559.8269 540.7508)\\\" x=\\\"0 5.56\\\">be</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 529.4324)\\\" x=\\\"0 5.56 11.12 13.9 19.46 22.79 27.79 33.35 38.91 44.47 46.75 52.31\\\">enforceable.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 516.1141)\\\" x=\\\"0 6.67 13.89 21.67 28.89 31.67 38.34 41.12 47.23 53.9\\\">PROHIBITED</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 94.2182 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 97.4569 516.1141)\\\" x=\\\"0 6.67 13.89 20 26.67\\\">ACTS.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 126.9051 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 130.1438 516.1141)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 147.9368 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 151.1754 516.1141)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 165.2379 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 168.4766 516.1141)\\\" x=\\\"0 5 10.56 16.12\\\">keep</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 190.1612 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 193.3999 516.1141)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 207.3013 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.5399 516.1141)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 248.3329 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 251.5716 516.1141)\\\" x=\\\"0 2.78 6.11 11.67\\\">free</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 268.8031 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 272.0417 516.1141)\\\" x=\\\"0 2.78 6.11 11.67\\\">from</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 292.0417 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 295.2804 516.1141)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 311.4035 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 314.6422 516.1141)\\\" x=\\\"0 2.28 4.56 10.12 15.68\\\">liens</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.3258 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.5645 516.1141)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 347.4561 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 350.6947 516.1141)\\\" x=\\\"0 5 7.28 12.84 15.12 23.45 28.45\\\">claims.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 381.9252 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 385.1639 516.1141)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.9569 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 406.1956 516.1141)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 420.2581 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 423.4968 516.1141)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 437.3981 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 440.6368 516.1141)\\\" x=\\\"0 5.56 11.12 18.34\\\">pawn</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 464.5431 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 467.7818 516.1141)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 476.6734 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 479.912 516.1141)\\\" x=\\\"0 5.56 7.84 13.4 18.96 24.52\\\">pledge</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.9999 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 513.2386 516.1141)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 527.14 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 530.3787 516.1141)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 504.7957)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 50.893 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 55.1549 504.7957)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 69.2174 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 73.4794 504.7957)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 87.3807 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 91.6427 504.7957)\\\" x=\\\"0 8.33 13.89 18.89\\\">move</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 116.0958 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 120.3578 504.7957)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 134.2592 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 138.5211 504.7957)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 176.3141 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 180.576 504.7957)\\\" x=\\\"0 5.56 11.12 13.9 18.9 21.18 26.74\\\">outside</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 212.8807 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 217.1427 504.7957)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.4825 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 229.7445 504.7957)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 243.6458 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 247.9078 504.7957)\\\" x=\\\"0 5.56 11.12 16.68 20.01 25.57 30.57\\\">address</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 283.484 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 287.7459 504.7957)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 303.869 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 308.1309 504.7957)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29 32.85\\\">provided</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 346.5489 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 350.8109 504.7957)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.1507 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 363.4127 504.7957)\\\" x=\\\"0 5.56 10.56\\\">us,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 376.7525 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 381.0145 504.7957)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 397.699 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 401.961 504.7957)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 412.5225 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 416.7845 504.7957)\\\" x=\\\"0 5.56 11.12 16.68 22.24 25.02 30.58 36.14\\\">updated,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 455.7103 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 459.9722 504.7957)\\\" x=\\\"0 5.56 11.12 13.4 18.96 23.96\\\">unless</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 488.9371 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 493.199 504.7957)\\\" x=\\\"0 2.28\\\">it</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 498.2576 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 502.5196 504.7957)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.7998 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 514.0618 504.7957)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 522.4016 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 526.6636 504.7957)\\\" x=\\\"0 3.33 8.89 11.67 17.23 20.56\\\">return</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.7867 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0486 504.7957)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 493.4773)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 70.893 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 74.775 493.4773)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 83.1148 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 86.9968 493.4773)\\\" x=\\\"0 5.56 10.56\\\">us,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 100.3367 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 104.2187 493.4773)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 113.1103 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 116.9923 493.4773)\\\" x=\\\"0 5.56 11.12\\\">our</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 131.4454 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 135.3274 493.4773)\\\" x=\\\"0 5.56 11.12 16.12 18.4 23.96 29.52 35.08 40.64\\\">designee.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 178.7551 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 182.6371 493.4773)\\\" x=\\\"0 6.11\\\">To</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 194.307 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 198.189 493.4773)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 212.0904 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 215.9724 493.4773)\\\" x=\\\"0 5.56 10.56 13.34 18.9 24.46\\\">extent</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 243.2136 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 247.0956 493.4773)\\\" x=\\\"0 5.56 10.56\\\">use</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 263.2187 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 267.1007 493.4773)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.4405 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 279.3225 493.4773)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 293.2239 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 297.1059 493.4773)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 334.8988 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.7808 493.4773)\\\" x=\\\"0 3.33 8.89 14.45 20.01 22.29 25.62 31.18\\\">requires</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 374.9674 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 378.8494 493.4773)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 394.9724 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 398.8544 493.4773)\\\" x=\\\"0 8.33 10.61 16.17 18.45 26.78 32.34\\\">minimum</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 439.5282 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 443.4102 493.4773)\\\" x=\\\"0 5 8.33 10.61 13.39 18.95 22.28 24.56\\\">criteria</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 473.5323 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 477.4143 493.4773)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.0842 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 492.9662 493.4773)\\\" x=\\\"0 5.56 10.56 16.12\\\">use,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 511.8676 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 515.7496 493.4773)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24 28.52 34.08\\\">including</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 555.3981 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 559.2801 493.4773)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 482.159)\\\" x=\\\"0 5.56 10.56 16.12 24.45 30.01 32.29\\\">example</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 70.9565 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 74.5435 482.159)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 80.105 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 83.6921 482.159)\\\" x=\\\"0 5.56 11.12 14.45 22.78 25.06 27.84\\\">permit,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 114.3123 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 117.8993 482.159)\\\" x=\\\"0 2.28 4.56 9.56 15.12 20.68 25.68 31.24\\\">license,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 151.9228 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 155.5098 482.159)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 164.4014 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 167.9885 482.159)\\\" x=\\\"0 8.33 10.61 16.17 18.45 26.78 32.34\\\">minimum</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 208.6624 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 212.2494 482.159)\\\" x=\\\"0 5.56 11.12 16.68\\\">age,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.7123 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 235.2994 482.159)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 251.4224 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 255.0095 482.159)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 269.072 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 272.6591 482.159)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 286.5605 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 290.1476 482.159)\\\" x=\\\"0 5.56 7.84 10.12 15.68\\\">allow</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 313.0528 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 316.6399 482.159)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 332.7629 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 336.35 482.159)\\\" x=\\\"0 2.28 10.61 16.17 19.5 25.06 30.62 36.18\\\">improper</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.8666 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 379.4537 482.159)\\\" x=\\\"0 5.56 10.56\\\">use</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 395.5767 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 399.1638 482.159)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 407.5037 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 411.0907 482.159)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 424.9921 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 428.5792 482.159)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 469.1505 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 472.7376 482.159)\\\" x=\\\"0 6.67\\\">As</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.4075 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 487.9946 482.159)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64 45.2\\\">applicable,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 535.9828 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 539.5699 482.159)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.2399 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 554.8269 482.159)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 470.8406)\\\" x=\\\"0 5.56 11.12 16.68 19.46\\\">boat,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 55.3412 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 60.5175 470.8406)\\\" x=\\\"0 8.33 13.89 16.67 22.23 25.56 27.84 32.84 38.4\\\">motorized</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 104.4823 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 109.6586 470.8406)\\\" x=\\\"0 5 10.56 16.12 18.4 23.4 25.68 31.24\\\">vehicle,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 143.6821 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.8584 470.8406)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 157.75 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 162.9263 470.8406)\\\" x=\\\"0 5.56 8.34 13.9 19.46 22.79 30.01 32.29 37.29\\\">otherwise</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 205.7827 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.959 470.8406)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64 45.2\\\">applicable,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 258.9473 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 264.1236 470.8406)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.2466 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 285.4229 470.8406)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.4854 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 304.6617 470.8406)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 318.5631 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 323.7394 470.8406)\\\" x=\\\"0 5.56 11.12 14.45 22.78 25.06\\\">permit</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.5812 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 356.7575 470.8406)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 372.8805 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 378.0568 470.8406)\\\" x=\\\"0 5.56 11.12 14.45 19.45 25.01 30.57\\\">person,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 411.4113 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 416.5876 470.8406)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24 28.52 34.08\\\">including</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.236 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 461.4123 470.8406)\\\" x=\\\"0 5 10.56 16.12 19.45 24.45 30.01 32.29 35.07\\\">yourself,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.2639 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 504.4402 470.8406)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.78 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 517.9563 470.8406)\\\" x=\\\"0 5.56 11.12 16.68 20.01 25.57 28.35\\\">operate</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.8723 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0486 470.8406)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 459.5223)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 70.893 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 75.2445 459.5223)\\\" x=\\\"0 7.22 12.78 15.06 17.34\\\">while</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 98.1497 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 102.5012 459.5223)\\\" x=\\\"0 5 10.56 15.56\\\">such</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 123.6243 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 127.9757 459.5223)\\\" x=\\\"0 5.56 11.12 14.45 19.45 25.01\\\">person</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 158.5519 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 162.9034 459.5223)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 170.1837 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 174.5351 459.5223)\\\" x=\\\"0 2.28 10.61 16.17 21.73 24.01 27.34 32.9\\\">impaired</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 213.0019 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 217.3534 459.5223)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 227.915 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 232.2664 459.5223)\\\" x=\\\"0 5.56 8.89 14.45 20.01 25.01\\\">drugs,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 260.0594 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 264.4109 459.5223)\\\" x=\\\"0 5.56 7.84 12.84 18.4 23.96 29.52\\\">alcohol</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 296.2175 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 300.569 459.5223)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 309.4606 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 313.8121 459.5223)\\\" x=\\\"0 2.78 6.11 11.67\\\">from</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 333.8121 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.1636 459.5223)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 354.2866 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 358.6381 459.5223)\\\" x=\\\"0 5.56 8.34 13.9 19.46\\\">other</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 381.4311 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 385.7826 459.5223)\\\" x=\\\"0 5 10.56 16.12 21.12 26.68\\\">cause.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 415.2455 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 419.5969 459.5223)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 437.3899 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 441.7414 459.5223)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 455.8039 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 460.1554 459.5223)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.0567 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 478.4082 459.5223)\\\" x=\\\"0 5.56 10.56\\\">use</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 494.5313 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 498.8828 459.5223)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.7841 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 517.1356 459.5223)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 554.9286 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 559.2801 459.5223)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 448.2039)\\\" x=\\\"0 5 10.56 18.89 27.22 32.78 36.11 41.11 43.39 48.95 51.23 53.89 59.45 65.01 68.34 73.9 79.46 84.46 90.02 95.02\\\">commercial purposes.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 434.8855)\\\" x=\\\"0 9.44 16.11 23.33 30.55 33.33 40.55 48.33\\\">WARNING:</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 84.2084 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 87.8242 434.8855)\\\" x=\\\"0 7.22 12.78 15.06 20.62 25.62\\\">Unless</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 118.4492 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 122.065 434.8855)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 138.188 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 141.8038 434.8855)\\\" x=\\\"0 5.56 11.12 16.12\\\">have</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 163.4883 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 167.1041 434.8855)\\\" x=\\\"0 5.56 10.56 16.12 21.68 23.96 27.29 32.85\\\">acquired</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 205.5221 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 209.1378 434.8855)\\\" x=\\\"0 5.56 12.78 18.34 23.9 27.23 32.23 37.79 40.07\\\">ownership</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 254.7775 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 258.3933 434.8855)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 266.7331 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 270.3489 434.8855)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 284.2503 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 287.866 434.8855)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 328.4373 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 332.0531 434.8855)\\\" x=\\\"0 5.56 8.34 11.12 16.68 25.01 30.57 33.35 35.63 41.19\\\">attempting</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 378.806 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 382.4218 434.8855)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 390.7616 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 394.3774 434.8855)\\\" x=\\\"0 5 10.56 12.84 15.12\\\">sell,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 412.2778 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 415.8936 434.8855)\\\" x=\\\"0 5.56 11.12 18.34 23.9\\\">pawn,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 442.5781 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 446.1939 434.8855)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 455.0855 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 458.7013 434.8855)\\\" x=\\\"0 2.28 4.56 10.12\\\">lien</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.3849 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 478.0007 434.8855)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 491.902 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 495.5178 434.8855)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 533.3108 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 536.9265 434.8855)\\\" x=\\\"0 5 7.28 12.84 15.12 20.68 23.46 29.02\\\">violates</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 423.5672)\\\" x=\\\"0 5 7.78 13.34 16.12 21.68 24.34 26.62 32.18 39.4\\\">state law.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 410.2488)\\\" x=\\\"0 6.67 13.34 20.01 22.79 30.57 37.79 46.12 52.79 60.01 66.12\\\">ASSIGNMENT.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 101.9965 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 104.9066 410.2488)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 122.6995 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 125.6096 410.2488)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 144.5012 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 147.4112 410.2488)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 161.3126 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 164.2227 410.2488)\\\" x=\\\"0 5.56 10.56 15.56 17.84 23.4\\\">assign</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 193.1875 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 196.0976 410.2488)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 211.7177 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 214.6278 410.2488)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 263.5438 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 266.4538 410.2488)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.3454 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 278.2555 410.2488)\\\" x=\\\"0 2.78 6.11 11.67 17.23 22.23 25.01 30.57\\\">transfer</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.1569 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 315.0669 410.2488)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 328.9683 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 331.8784 410.2488)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 369.6713 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 372.5814 410.2488)\\\" x=\\\"0 7.22 9.5 12.28 17.84 23.4 28.96\\\">without</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 404.3246 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.2346 410.2488)\\\" x=\\\"0 5.56 11.12\\\">our</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 421.6877 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 424.5978 410.2488)\\\" x=\\\"0 5.56 8.89 11.17 16.73\\\">prior</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 444.6613 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 447.5713 410.2488)\\\" x=\\\"0 7.22 10.55 12.83 15.61 18.39 23.95\\\">written</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 477.0831 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 479.9931 410.2488)\\\" x=\\\"0 5.56 11.12 14.45 22.78 25.06 30.06 35.06 37.34 42.9 48.46\\\">permission.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 531.2382 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 534.1483 410.2488)\\\" x=\\\"0 9.44\\\">We</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.1483 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 552.0584 410.2488)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 398.9305)\\\" x=\\\"0 5.56 10.56 15.56 17.84 23.4 28.96 31.62 37.18 39.46 41.74 44.4 49.96 52.74 55.4 60.96 66.52 69.85 72.51 75.84 78.12 83.68 89.24 92.02 97.02 99.68 105.24 110.8 116.36 121.92 125.25 127.91 130.69 136.25 138.53 143.53 146.19 152.86 158.42 161.75 167.31 172.87 181.2 186.76 192.32 195.1 197.88 200.54 207.21 212.77 217.77 220.43 225.99 231.55 234.88 239.88 245.44 251 253.66 260.88 266.44 269.1 274.66 279.66 284.66 286.94 292.5 298.06 300.72 303 305.78 308.44 311.22 316.78 319.44 327.77 333.33 338.33 340.99 344.32 349.88 355.44 360.44 365.44 367.72 373.28 378.84 381.5 383.78 386.56\\\">assign all of our ri* D E M O *this Agreement. Any person we assign it to may reassign it.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 385.6121)\\\" x=\\\"0 6.67 13.89 21.11 28.89 36.11\\\">ACCORD</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 76.435 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 79.3433 385.6121)\\\" x=\\\"0 6.67 13.89\\\">AND</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 100.4566 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 103.3649 385.6121)\\\" x=\\\"0 6.67 13.34 19.45 22.23 28.9 35.01 41.68 48.9 55.01 57.79 65.57 72.79\\\">SATISFACTION.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 178.9265 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 181.8348 385.6121)\\\" x=\\\"0 6.67 12.23\\\">Any</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 199.0662 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 201.9746 385.6121)\\\" x=\\\"0 5 7.78 13.34 16.12 21.68 30.01 35.57 41.13\\\">statement</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.8857 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 248.794 385.6121)\\\" x=\\\"0 5.56 10.56 15.56 21.12 29.45 35.01 40.57 46.13 51.13 53.41 58.97\\\">accompanying</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 313.3351 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 316.2434 385.6121)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.6965 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.6049 385.6121)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 376.9593 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 379.8677 385.6121)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.2075 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 391.1159 385.6121)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 405.0172 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.9256 385.6121)\\\" x=\\\"0 5.56 8.34 11.12 16.68 21.68\\\">effect</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 432.3836 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 435.2919 385.6121)\\\" x=\\\"0 2.78 8.34 13.9\\\">that</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 451.9716 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 454.88 385.6121)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.3331 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 477.2414 385.6121)\\\" x=\\\"0 5.56 11.12 13.4 18.96 24.52 29.52\\\">balance</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.3293 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 515.2376 385.6121)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 522.5179 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 525.4263 385.6121)\\\" x=\\\"0 5.56 11.12 13.4\\\">paid</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 544.3911 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 547.2995 385.6121)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 555.1412 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 558.0496 385.6121)\\\" x=\\\"0 2.78 8.34 10.62\\\">full</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 374.2937)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.1625 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 50.8231 374.2937)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 64.7245 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 68.3851 374.2937)\\\" x=\\\"0 5.56 7.84 13.4\\\">bind</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 87.35 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 91.0106 374.2937)\\\" x=\\\"0 5.56 10.56\\\">us.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 104.3505 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 108.0111 374.2937)\\\" x=\\\"0 7.78 13.34\\\">Our</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 124.681 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 128.3417 374.2937)\\\" x=\\\"0 5.56 11.12 16.68 22.24 27.24 29.52\\\">deposit</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.6464 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 164.307 374.2937)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 172.6468 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 176.3075 374.2937)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 192.4305 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 196.0912 374.2937)\\\" x=\\\"0 5 10.56 15.56\\\">such</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 217.2142 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 220.8748 374.2937)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.2293 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 262.89 374.2937)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.9525 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 280.6131 374.2937)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 294.5145 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 298.1751 374.2937)\\\" x=\\\"0 5 10.56 16.12 21.12 23.9 26.18 28.96 34.52 37.3\\\">constitute</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 341.0365 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 344.6971 374.2937)\\\" x=\\\"0 5.56\\\">an</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.8201 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 359.4808 374.2937)\\\" x=\\\"0 5.56 10.56 15.56 21.12 24.45\\\">accord</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 389.4954 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 393.1561 374.2937)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 409.8406 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 413.5013 374.2937)\\\" x=\\\"0 5 10.56 13.34 15.62 20.62 23.4 28.96 33.96 36.74 39.02 44.58 50.14\\\">satisfaction,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.4212 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 470.0818 374.2937)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.7664 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 490.427 374.2937)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 503.2102 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 506.8709 374.2937)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 525.7625 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 529.4231 374.2937)\\\" x=\\\"0 5.56 11.12 16.68 18.96\\\">apply</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.388 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0486 374.2937)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 362.9754)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57 38.35 41.01 43.79 49.35 52.01 57.01 62.57 68.13 71.46 74.12 79.68 84.68 89.68 95.24 100.8 106.36 109.14\\\">payment to your account.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 349.657)\\\" x=\\\"0 2.78 10 16.67 23.89 31.11 37.78 45 52.22 58.89 61.67 64.33 73.77 79.33 81.99 87.55 93.11 95.77 101.33 106.89 109.67 112.33 115.66 121.22 126.78 132.34 134.62 137.95 143.51 146.17 151.17 156.73 162.29 164.95 167.73 173.29 175.95 181.51 187.07 190.4 195.4 200.96 206.52 211.52 217.08 219.74 222.02 227.58 232.58 238.14 241.47 247.03 252.59 257.59 263.15 265.81 268.59 271.92 277.48 285.81 288.47 294.03 299.03 301.69 307.25 312.81 318.37 321.03 328.25 333.81 336.47 342.03 347.59 352.59 358.15 360.81 366.37 371.93 374.71 377.37 382.93 386.26 391.82 396.82 399.1 404.66 410.22 415.78 418.44 424 429.56 434.56 437.22 439.5 445.06 450.06 455.62 458.95 464.51 470.07 475.07 480.63 483.29 486.07 491.63 494.29 499.29 504.85 510.41\\\">INSURANCE. We do not require you to purchase insurance from us and we have not provided any insurance to you.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 336.3387)\\\" x=\\\"0 7.22 13.89 21.11 27.78 30.56 37.23 43.34 46.12 48.78 56 61.56 67.12 72.68 75.34 80.34 85.9 91.46 94.79 97.45 100.78 106.34 111.9 117.46 123.02 128.02 130.8 133.58 136.24 143.46 149.02 151.68 157.24 160.57 166.13 168.79 172.12 177.68 183.24 188.8 191.08 194.41 199.97 205.53 208.19 210.97 216.53 219.19 224.75 228.08 233.64 238.64 240.92 246.48 252.04 254.7 259.7 265.26 270.82 273.48 280.7 282.98 285.76 291.32 293.98 299.54 302.2 309.42 312.75 315.03 317.81 320.59 326.15 331.71 334.37 337.7 343.26 348.26 353.82 356.1 361.66 364.44 367.1 369.88 375.44 378.77 381.43 386.99 392.55 397.55 403.11 405.77 411.33 416.89 421.89 430.22 435.78 441.34 444.12 446.78 455.11 460.67 466.23 471.79\\\">RECEIPT. Upon your request, we are required to provide you with a written receipt for each payment made.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 323.0203)\\\" x=\\\"0 7.78 15.56 22.23 28.9 36.12 43.34 46.12 53.34\\\">GOVERNING</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 94.2182 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 97.2444 323.0203)\\\" x=\\\"0 5.56 12.23 21.67\\\">LAW.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 121.6926 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 124.7189 323.0203)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 141.9503 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 144.9765 323.0203)\\\" x=\\\"0 2.28 7.84\\\">law</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.04 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 163.0663 323.0203)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 171.4061 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 174.4323 323.0203)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 188.3337 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 191.3599 323.0203)\\\" x=\\\"0 5 7.78 13.34 16.12\\\">state</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 213.0396 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 216.0658 323.0203)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 223.9076 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 226.9339 323.0203)\\\" x=\\\"0 7.22 12.78 15.06 20.06\\\">which</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 252.5589 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 255.5851 323.0203)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 271.7082 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 274.7344 323.0203)\\\" x=\\\"0 3.33 8.89 13.89 16.17 21.73\\\">reside</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.0293 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 305.0555 323.0203)\\\" x=\\\"0 7.22 12.78 18.34\\\">when</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 328.9618 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 331.988 323.0203)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.1111 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 351.1373 323.0203)\\\" x=\\\"0 5 7.28 12.84 18.4 23.96\\\">signed</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.6637 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 383.6899 323.0203)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 399.31 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 402.3363 323.0203)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 451.2523 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 454.2785 323.0203)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 470.9631 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 473.9893 323.0203)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64\\\">applicable</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 519.1993 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 522.2255 323.0203)\\\" x=\\\"0 2.78 8.34 13.9 19.46 22.79 28.35\\\">federal</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.8603 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 555.8865 323.0203)\\\" x=\\\"0 2.28 7.84\\\">law</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 311.7019)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.1625 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 50.5142 311.7019)\\\" x=\\\"0 5.56 11.12 16.12 21.68 25.01\\\">govern</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 81.0904 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 84.4421 311.7019)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 98.3434 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 101.6951 311.7019)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 150.6111 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 153.9628 311.7019)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 170.6474 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 173.9991 311.7019)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 187.9005 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 191.2521 311.7019)\\\" x=\\\"0 2.28 7.84 10.62 16.18 19.51 25.07 28.4 33.96 36.74 42.3 45.08 47.36 52.92\\\">interpretation</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 249.7385 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 253.0902 311.7019)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 261.43 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 264.7817 311.7019)\\\" x=\\\"0 2.28 5.06\\\">it,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 272.6186 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 275.9703 311.7019)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.68\\\">except</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 305.4332 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 308.7849 311.7019)\\\" x=\\\"0 2.78 8.34 13.9\\\">that</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 325.4646 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 328.8163 311.7019)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 342.7176 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 346.0693 311.7019)\\\" x=\\\"0 6.11 11.67 17.23 22.79 26.12 31.68\\\">Federal</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.0342 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 383.3859 311.7019)\\\" x=\\\"0 6.67 10 15.56 17.84 20.62 23.95 29.51 32.29 34.57 40.13\\\">Arbitration</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 429.0792 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 432.4309 311.7019)\\\" x=\\\"0 6.67 11.67\\\">Act</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 446.8791 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 450.2308 311.7019)\\\" x=\\\"0 5.56 10.56 16.12 19.45 25.01 30.01 35.01 37.29\\\">expressly</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 492.5258 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 495.8775 311.7019)\\\" x=\\\"0 5.56 11.12 16.12 21.68 25.01 30.57\\\">governs</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 531.4536 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 534.8053 311.7019)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 548.7067 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 552.0584 311.7019)\\\" x=\\\"0 5 10.56 13.89\\\">Jury</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 300.3836)\\\" x=\\\"0 6.11 9.44 11.72 17.28 19.56 22.22 31.66 37.22 39.5 44.5 50.06 53.39 56.05 61.61 67.17 72.73 75.39 82.06 85.39 90.95 93.23 96.01 99.34 104.9 107.68 109.96 115.52 121.08 123.74 130.96 133.24 138.8 144.36 149.36 154.92 157.7 160.36 167.03 172.59 178.15 180.81 186.37 191.37 196.37 201.93 207.49 214.71 216.99 222.55 228.11 233.67 239.23 241.89 244.67 250.23 255.79 258.57 261.23 266.23 271.79 277.35 280.01 283.34 288.9 293.9 296.18 301.74 307.3 309.96 315.52 318.3 320.96 323.74 329.3 334.86 337.52 343.08 348.64 354.2 357.53 363.09 368.09 373.09 375.75 378.03 380.31 385.31 388.09 393.65 399.21 401.87 407.43 412.99 418.55 423.55 429.11 431.77 437.33 442.89 445.55 448.33 453.89 459.45 462.11 468.78 474.34 477.67 483.23 488.79 497.12 502.68 508.24 511.02 513.68 520.9 526.46 529.24 534.8\\\">Trial Waiver and Arbitration Clause. You acknowledge that you reside at the address listed above on the Agreement Date.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 287.0652)\\\" x=\\\"0 7.22 15 22.22 28.89 36.11 44.44 51.11\\\">CONSUMER</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 91.435 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 94.8938 287.0652)\\\" x=\\\"0 7.22 13.89 20.56 28.34 35.56 41.67\\\">REPORT.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 139.3421 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 142.8009 287.0652)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.5939 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 164.0527 287.0652)\\\" x=\\\"0 5.56 11.12 16.12\\\">have</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 185.7373 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 189.1961 287.0652)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 28.35 30.63 35.63 41.19\\\">authorized</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 235.9539 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 239.4128 287.0652)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 249.9743 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 253.4331 287.0652)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 261.773 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 265.2318 287.0652)\\\" x=\\\"0 5.56 11.12 13.9 19.46 21.74\\\">obtain</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 292.5365 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 295.9953 287.0652)\\\" x=\\\"0 5.56 11.12\\\">one</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.6799 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 316.1388 287.0652)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 325.0304 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 328.4892 287.0652)\\\" x=\\\"0 8.33 13.89 17.22\\\">more</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.2724 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 354.7312 287.0652)\\\" x=\\\"0 5 10.56 16.12 21.12 26.68 35.01 40.57\\\">consumer</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 398.6375 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 402.0963 287.0652)\\\" x=\\\"0 3.33 8.89 14.45 20.01 23.34 26.12\\\">reports</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 433.2194 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 436.6782 287.0652)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.8013 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 451.2601 287.0652)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.3832 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 470.842 287.0652)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 478.6838 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 482.1427 287.0652)\\\" x=\\\"0 5 10.56 16.12 21.68 27.24 32.24 35.02 37.3 42.86\\\">connection</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 530.5704 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 534.0292 287.0652)\\\" x=\\\"0 7.22 9.5 12.28\\\">with</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.871 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 555.3299 287.0652)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 275.7469)\\\" x=\\\"0 2.78 6.11 11.67 17.23 22.23 27.79 32.79 35.57 37.85 43.41 48.97\\\">transaction.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 262.4285)\\\" x=\\\"0 7.22 14.44 21.11 28.33 31.11\\\">CREDIT</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 70.3217 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 73.874 262.4285)\\\" x=\\\"0 7.22 13.89 20.56 28.34 35.56 41.67 44.45 51.67 59.45\\\">REPORTING.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.1005 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 139.6529 262.4285)\\\" x=\\\"0 9.44\\\">We</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 154.6529 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 158.2051 262.4285)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 177.0967 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 180.6491 262.4285)\\\" x=\\\"0 3.33 8.89 14.45 20.01 23.34\\\">report</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 206.7721 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.3244 262.4285)\\\" x=\\\"0 2.28 7.84 10.62 16.18 19.51 27.84 33.4 36.18 38.46 44.02\\\">information</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.9094 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 263.4617 262.4285)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 271.8015 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 275.3538 262.4285)\\\" x=\\\"0 5 8.33 13.89 19.45 21.73\\\">credit</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.8655 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 303.4178 262.4285)\\\" x=\\\"0 5.56 11.12 14.45 20.01 25.57 31.13\\\">bureaus</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 339.5555 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 343.1078 262.4285)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.9994 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 355.5517 262.4285)\\\" x=\\\"0 5.56 8.34 13.9 19.46\\\">other</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 378.3447 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 381.897 262.4285)\\\" x=\\\"0 2.78 8.34 10.62 13.95 19.51 22.84 28.4 33.96 37.29 40.07 42.35 47.91\\\">third-parties</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.812 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 438.3644 262.4285)\\\" x=\\\"0 5.56 11.12 16.68 22.24\\\">about</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 463.3888 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 466.9411 262.4285)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.3942 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 489.9465 262.4285)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.68 32.24 35.02\\\">account,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 527.7492 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 531.3015 262.4285)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24 28.52 34.08\\\">including</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 251.1102)\\\" x=\\\"0 2.28 7.84 10.62 16.18 18.84 24.4 27.73 30.39 38.72 41 46 51 56.56 62.12 64.78 70.34 75.9 80.9 89.23 94.79 100.35 103.13 108.13 110.91 113.57 119.13 124.69 130.25 132.91 138.47 144.03 149.03 151.69 157.25 162.81 167.81 170.09 172.87 175.15 180.15 185.71 188.37 193.93 197.26 199.92 205.48 211.04 216.6 222.16 224.94 227.22 232.22 237.78 240.44 246 251 256 261.56 267.12 272.68 275.46 278.12 280.4 285.96 288.74 294.3 297.63 305.96 311.52 314.3 316.58 322.14 327.7 330.36 338.69 344.25 349.25 351.91 357.47 363.03 365.69 369.02 374.58 377.36 379.64 385.2 390.2 392.98 398.54 404.1 406.76 409.04 414.6 417.26 422.26 427.82 433.38 436.71 439.37 444.37 447.7 453.26 458.82 461.1 463.88 466.54 469.87 475.43 480.99 486.55 489.88 492.66\\\">late or missed payments, and any positive or negative account information may be reflected in your credit report.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 237.7918)\\\" x=\\\"0 2.78 10 17.22 23.89 32.22 39.44 42.22 48.33 51.11 58.33 65 71.11 73.89 81.67 88.89\\\">INDEMNIFICATION.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 124.765 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 128.29 237.7918)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.083 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 149.608 237.7918)\\\" x=\\\"0 5.56 11.12 14.45 20.01\\\">agree</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 175.1842 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 178.7092 237.7918)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 187.0491 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 190.5741 237.7918)\\\" x=\\\"0 2.28 7.84 13.4 18.96 27.29 32.85 35.13 37.91\\\">indemnify</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.4891 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 237.0141 237.7918)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.5756 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 251.1006 237.7918)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 267.7852 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 271.3102 237.7918)\\\" x=\\\"0 5.56 11.12 13.4\\\">hold</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.2751 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 293.8001 237.7918)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 304.3616 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 307.8866 237.7918)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 324.5712 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 328.0962 237.7918)\\\" x=\\\"0 5.56 11.12\\\">our</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 342.5493 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 346.0743 237.7918)\\\" x=\\\"0 5.56 10.56 15.56 17.84 23.4 28.96 34.52 40.08 45.08\\\">assignees,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.9405 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 397.4655 237.7918)\\\" x=\\\"0 5.56 11.12 16.68 22.24 25.02 30.02\\\">agents,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.2683 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 433.7933 237.7918)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 450.4779 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 454.0029 237.7918)\\\" x=\\\"0 2.28 7.84 12.84 18.4 21.73 27.29 30.62\\\">insurers</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.6279 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 493.1529 237.7918)\\\" x=\\\"0 5.56 11.12 14.45 22.78 25.06 30.62 35.62\\\">harmless</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 533.7779 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 537.3029 237.7918)\\\" x=\\\"0 2.78 6.11 11.67\\\">from</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 557.3029 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 560.8279 237.7918)\\\" x=\\\"0 5.56 7.84\\\">all</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 226.4734)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57 36.13 41.13\\\">damages,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 77.016 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 80.4241 226.4734)\\\" x=\\\"0 2.28 7.84 10.12 15.68 19.01 21.29 26.85 31.85\\\">injuries,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 115.0579 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 118.466 226.4734)\\\" x=\\\"0 5 7.28 12.84 15.12 23.45 28.45\\\">claims,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 149.6965 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 153.1046 226.4734)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57 36.13 41.13\\\">demands,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 197.0206 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 200.4287 226.4734)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 217.1132 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 220.5214 226.4734)\\\" x=\\\"0 5.56 10.56 16.12 21.68 27.24 32.24 37.8 42.8\\\">expenses,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 266.1073 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 269.5154 226.4734)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24 28.52 34.08\\\">including</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 309.1638 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 312.5719 226.4734)\\\" x=\\\"0 3.33 8.89 14.45 19.45 25.01 30.57 36.13 41.69 43.97\\\">reasonable</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 362.1129 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 365.521 226.4734)\\\" x=\\\"0 5.56 8.34 11.12 16.68 20.01 25.57 31.13 36.13 38.04\\\">attorney&apos;s</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 408.563 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 411.9711 226.4734)\\\" x=\\\"0 2.78 8.34 13.9\\\">fees</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.8725 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 434.2806 226.4734)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 442.6204 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 446.0285 226.4734)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 459.9299 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 463.338 226.4734)\\\" x=\\\"0 5.56 10.56 13.34 18.9 24.46\\\">extent</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 490.5792 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 493.9873 226.4734)\\\" x=\\\"0 5.56 11.12 14.45 22.78 25.06 27.84 30.62 36.18\\\">permitted</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 535.7305 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 539.1386 226.4734)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.7001 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.1082 226.4734)\\\" x=\\\"0 2.28 7.84 15.06\\\">law,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 215.1551)\\\" x=\\\"0 5.56 8.89 11.17 16.17 18.45 24.01\\\">arising</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 62.6752 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 67.1149 215.1551)\\\" x=\\\"0 5.56 11.12\\\">out</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 81.0163 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 85.4561 215.1551)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 93.7959 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 98.2356 215.1551)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 112.137 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 116.5767 215.1551)\\\" x=\\\"0 5 10.56 16.12 21.68 23.96 26.74 29.02 34.58 40.14\\\">condition,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 159.5016 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 163.9413 215.1551)\\\" x=\\\"0 8.33 13.89 16.17 21.73 24.51 30.07 35.63 41.19 46.75 51.75 57.31\\\">maintenance,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 224.039 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 228.4787 215.1551)\\\" x=\\\"0 5.56 10.56\\\">use</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 244.6017 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 249.0415 215.1551)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.9331 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 262.3728 215.1551)\\\" x=\\\"0 5.56 11.12 16.68 20.01 25.57 28.35 30.63 36.19\\\">operation</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 304.1307 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 308.5704 215.1551)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 316.9102 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 321.35 215.1551)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.2514 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 339.6911 215.1551)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.2624 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 384.7021 215.1551)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24 28.52 34.08\\\">including</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 424.3506 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 428.7903 215.1551)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.3518 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 438.7916 215.1551)\\\" x=\\\"0 5 7.28 12.84 15.12\\\">claim</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 462.2437 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 466.6835 215.1551)\\\" x=\\\"0 5.56 11.12 16.68 22.24\\\">under</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 492.2597 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 496.6994 215.1551)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 510.6008 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 515.0405 215.1551)\\\" x=\\\"0 5 7.78 11.11 13.39 18.39\\\">strict</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 536.2075 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 540.6472 215.1551)\\\" x=\\\"0 2.28 4.56 10.12 15.68 17.96 20.24 22.52 25.3\\\">liability</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 203.8367)\\\" x=\\\"0 5.56 11.12 16.12 18.9 22.23 24.51 30.07 35.63\\\">doctrine.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 190.5184)\\\" x=\\\"0 7.2217 15 21.1084 23.8867 31.1084 37.7783 44.4482\\\">NOTICES.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 80.3266 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 82.9828 190.5184)\\\" x=\\\"0 7.2217 12.7832 15.5615 17.8418 22.8418 28.4033\\\">Notices</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 116.3861 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 119.0424 190.5184)\\\" x=\\\"0 8.3301 13.8916\\\">may</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 137.934 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 140.5902 190.5184)\\\" x=\\\"0 5.5615\\\">be</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 151.7133 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 154.3695 190.5184)\\\" x=\\\"0 5.5615 7.8418 12.8418 18.4033\\\">given</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 178.3344 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 180.9906 190.5184)\\\" x=\\\"0 5.5615 11.123 14.4531 19.4531 25.0146 30.5762 36.1377 38.418 40.6982\\\">personally</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 226.6889 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 229.3451 190.5184)\\\" x=\\\"0 5.5615\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.2367 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 240.893 190.5184)\\\" x=\\\"0 5 10.5615 16.123\\\">sent</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.7943 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 262.4506 190.5184)\\\" x=\\\"0 5.5615\\\">by</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 273.0121 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 275.6684 190.5184)\\\" x=\\\"0 2.7783 5.0586 8.3887 13.3887\\\">first</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.8353 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 294.4916 190.5184)\\\" x=\\\"0 5 7.2803 12.8418 17.8418\\\">class</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 317.3334 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 319.9896 190.5184)\\\" x=\\\"0 8.3301 13.8916 16.1719 18.4522\\\">mail.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 341.2201 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 343.8764 190.5184)\\\" x=\\\"0 7.2217 12.7832 15.5615 17.8418 22.8418\\\">Notice</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 372.2797 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 374.9359 190.5184)\\\" x=\\\"0 8.3301 13.8916 16.1719 18.4522 24.0137\\\">mailed</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 404.5111 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.1674 190.5184)\\\" x=\\\"0 2.7783\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 415.5072 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 418.1635 190.5184)\\\" x=\\\"0 5.5615\\\">us</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 428.725 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 431.3812 190.5184)\\\" x=\\\"0 8.3301 13.8916 18.8916\\\">must</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 453.0512 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 455.7074 190.5184)\\\" x=\\\"0 5.5615\\\">be</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.8305 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 469.4867 190.5184)\\\" x=\\\"0 5 10.5615 16.1231\\\">sent</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 488.3881 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 491.0443 190.5184)\\\" x=\\\"0 2.7783\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.3842 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 502.0404 190.5184)\\\" x=\\\"0 2.7783 8.3398\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 515.9418 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 518.5981 190.5184)\\\" x=\\\"0 5.5615 11.123 16.6846 20.0146 25.5762 30.5762\\\">address</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 179.2)\\\" x=\\\"0 5 10.5615 16.1231 23.3447\\\">shown</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 62.0063 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 64.6625 179.2)\\\" x=\\\"0 2.2803\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 72.5043 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 75.1606 179.2)\\\" x=\\\"0 2.7783 8.3398 10.6201\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 90.7807 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 93.4369 179.2)\\\" x=\\\"0 6.6699 12.2314 15.5615 21.123 26.6846 35.0146 40.5762 46.1377 48.916\\\">Agreement,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 145.1312 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 147.7875 179.2)\\\" x=\\\"0 5.6115\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 156.7791 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 159.4854 179.2)\\\" x=\\\"0 5.6115\\\">as</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 170.1469 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 172.8531 179.2)\\\" x=\\\"0 7.2717\\\">we</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 185.7363 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 188.4426 179.2)\\\" x=\\\"0 5.5615 8.3398 13.9014 19.4629 22.793 30.0147 32.2949 37.2949\\\">otherwise</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.299 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 233.9553 179.2)\\\" x=\\\"0 5.5615 7.8418 11.1719 16.7334 21.7334\\\">direct</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 258.467 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 261.1232 179.2)\\\" x=\\\"0 2.7783 6.1084 11.6699\\\">from</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.1232 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 283.7795 179.2)\\\" x=\\\"0 2.7783 5.0586 13.3887\\\">time</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.7297 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 305.3859 179.2)\\\" x=\\\"0 2.8283\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 313.8258 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 316.532 179.2)\\\" x=\\\"0 2.7783 5.0586 13.3887 18.9502\\\">time.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.2605 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 340.9168 179.2)\\\" x=\\\"0 7.2217 12.7832 15.5615 17.8418 22.8418 28.4033\\\">Notices</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 374.3201 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 376.9764 179.2)\\\" x=\\\"0 2.8283\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 385.4162 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 388.1225 179.2)\\\" x=\\\"0 5.6115\\\">us</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 398.784 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 401.4902 179.2)\\\" x=\\\"0 5.5615 8.8916\\\">are</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 415.9434 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 418.5996 179.2)\\\" x=\\\"0 5.5615 11.1231 16.6846 25.0147 30.5762\\\">deemed</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.7373 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 457.3936 179.2)\\\" x=\\\"0 5.5615 7.8418 12.8418 18.4033\\\">given</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 481.3584 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 484.0147 179.2)\\\" x=\\\"0 7.2217 12.7832 18.3447\\\">when</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 507.9209 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 510.5771 179.2)\\\" x=\\\"0 2.7783 8.3398 13.9014\\\">they</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.4785 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 532.1348 179.2)\\\" x=\\\"0 5.5615 8.8916\\\">are</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 167.8816)\\\" x=\\\"0 5.5615 11.1231 14.4531 19.4531 25.0146 30.5762 36.1377 38.418 40.6982\\\">personally</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 78.7982 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.4545 167.8816)\\\" x=\\\"0 5.5615 7.8418 12.8418 18.4033\\\">given</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 105.4193 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 108.0756 167.8816)\\\" x=\\\"0 5.5615\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 116.9672 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 119.6234 167.8816)\\\" x=\\\"0 5.5615 10.5615 13.3398 18.9014 24.4629 26.7432 29.0234\\\">actually</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 153.6469 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 156.3031 167.8816)\\\" x=\\\"0 3.3301 8.8916 13.8916 19.4531 21.7334 26.7334 32.2949\\\">received</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 194.1596 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 196.8158 167.8816)\\\" x=\\\"0 5.6615\\\">at</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 205.3557 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 208.1119 167.8816)\\\" x=\\\"0 5.6115 11.223\\\">our</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 222.715 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 225.4213 167.8816)\\\" x=\\\"0 5.5615 11.123 16.6846 20.0146 25.5762 30.5762 35.5762\\\">address.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 263.7758 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 266.432 167.8816)\\\" x=\\\"0 7.2217 12.7832 15.5615 17.8418 22.8418 28.4033\\\">Notices</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.8353 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 302.4916 167.8816)\\\" x=\\\"0 5.6115 8.9916\\\">are</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 317.0947 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 319.801 167.8816)\\\" x=\\\"0 5.5615 11.123 16.6846 25.0146 30.5762\\\">deemed</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.9387 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 358.5949 167.8816)\\\" x=\\\"0 5.5615 7.8418 12.8418 18.4033\\\">given</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 382.5598 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 385.216 167.8816)\\\" x=\\\"0 2.8783\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.7559 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 396.5121 167.8816)\\\" x=\\\"0 5.05 10.6615\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 412.7852 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 415.4914 167.8816)\\\" x=\\\"0 7.2717 12.8832 18.4947\\\">when</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 439.5977 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 442.3039 167.8816)\\\" x=\\\"0 2.8283 8.4398 14.0514\\\">they</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 461.4053 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 464.1115 167.8816)\\\" x=\\\"0 5.6115 8.9916\\\">are</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 478.7147 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 481.4209 167.8816)\\\" x=\\\"0 5.5615 11.1231 14.4531 19.4531 25.0146 30.5762 36.1377 38.418 40.6982\\\">personally</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 527.1191 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 529.7754 167.8816)\\\" x=\\\"0 5.5615 7.8418 12.8418 18.4033\\\">given</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.7402 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 556.3965 167.8816)\\\" x=\\\"0 5.6615\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 156.5633)\\\" x=\\\"0 7.2717 12.8832 18.4947\\\">when</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 57.2063 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 59.9125 156.5633)\\\" x=\\\"0 5.5615 7.8418 13.4033 18.4033 23.9648\\\">placed</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 89.4389 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 92.0951 156.5633)\\\" x=\\\"0 2.3803\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 100.1369 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 102.8932 156.5633)\\\" x=\\\"0 2.8283 8.4398\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 116.9445 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 119.6508 156.5633)\\\" x=\\\"0 8.3301 13.8916 16.1719 18.4522\\\">mail,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 140.8813 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 143.5375 156.5633)\\\" x=\\\"0 5.5615 11.123 16.6846 20.0147 25.5762 30.5762 35.5762 41.1377\\\">addressed</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 190.2367 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 192.893 156.5633)\\\" x=\\\"0 2.7783\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 201.2328 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 203.8891 156.5633)\\\" x=\\\"0 5 10.5615\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 220.0121 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 222.6684 156.5633)\\\" x=\\\"0 5.5615\\\">at</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.0082 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 233.6645 156.5633)\\\" x=\\\"0 5 10.5615 16.123\\\">your</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 253.1176 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 255.7738 156.5633)\\\" x=\\\"0 5.5615 11.1231 16.6846 20.0147 25.5762 30.5762\\\">address</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.35 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 294.0062 156.5633)\\\" x=\\\"0 2.7783 8.3399 13.9014\\\">then</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 313.4691 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 316.1254 156.5633)\\\" x=\\\"0 5 10.5615 16.1231 23.3447\\\">shown</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 345.0316 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 347.6879 156.5633)\\\" x=\\\"0 5.5615\\\">on</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 358.8109 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 361.4672 156.5633)\\\" x=\\\"0 5.5615 11.1231\\\">our</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.9203 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 378.5766 156.5633)\\\" x=\\\"0 3.3301 8.8916 13.8916 19.4531 22.7832 28.3447 33.3447\\\">records,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 414.6996 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 417.3559 156.5633)\\\" x=\\\"0 5.5615 10.5615 16.123\\\">even</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 439.0404 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 441.6967 156.5633)\\\" x=\\\"0 2.7783 8.3398 13.9014 19.4629 25.0244\\\">though</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 472.2826 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 474.9389 156.5633)\\\" x=\\\"0 5 10.5615\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 491.0619 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 493.7182 156.5633)\\\" x=\\\"0 8.3301 10.6104 16.1719 21.7334\\\">might</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 518.2299 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 520.8861 156.5633)\\\" x=\\\"0 5.5615 11.123\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 145.2449)\\\" x=\\\"0 5.5615 10.5615 13.3398 18.9014 24.4629 26.7432 29.0234\\\">actually</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 67.1234 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 69.7797 145.2449)\\\" x=\\\"0 3.3301 8.8916 13.8916 19.4531 21.7334 26.7334\\\">receive</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 102.0746 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 104.7309 145.2449)\\\" x=\\\"0 5.5615 11.123\\\">our</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 119.184 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 121.8402 145.2449)\\\" x=\\\"0 8.3301 13.8916 16.1719 18.4521 24.0137\\\">mailed</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 151.4154 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 154.0717 145.2449)\\\" x=\\\"0 5.5615 11.1231 13.9014 16.1816 21.1816 26.7432\\\">notice.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 183.5932 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 186.2494 145.2449)\\\" x=\\\"0 6.6699 12.2314\\\">You</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 204.0424 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 206.6986 145.2449)\\\" x=\\\"0 5.8115 11.6231 15.2031 21.0146\\\">agree</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.5248 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 236.4311 145.2449)\\\" x=\\\"0 2.9283 8.6398 14.3514\\\">that</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 253.7107 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 256.517 145.2449)\\\" x=\\\"0 5.8615\\\">30</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 268.24 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 271.1963 145.2449)\\\" x=\\\"0 5.7115 11.4231 16.5731 21.7231\\\">days&apos;</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 294.9785 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 297.7848 145.2449)\\\" x=\\\"0 5.6615 11.3231 14.2014 16.5816 21.6816\\\">notice</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 325.1279 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 327.8842 145.2449)\\\" x=\\\"0 2.5803\\\">is</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.7645 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.7207 145.2449)\\\" x=\\\"0 3.4301 9.0916 14.7531 19.8531 25.5146 31.1762 36.8377 42.4992 44.8795 50.541\\\">reasonable,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 392.14 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 394.8963 145.2449)\\\" x=\\\"0 5.6615 11.3231 13.7033 19.3648 24.4648\\\">unless</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 424.4611 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 427.2174 145.2449)\\\" x=\\\"0 5.15 8.0783 13.7899 16.7182\\\">state</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 449.6471 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 452.4533 145.2449)\\\" x=\\\"0 2.5303 8.3418\\\">law</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.2668 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 471.173 145.2449)\\\" x=\\\"0 3.4301 9.0916 14.7531 20.4146 22.7949 26.225 31.8865\\\">requires</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 508.1596 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 510.9158 145.2449)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 517.0773 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 520.3336 145.2449)\\\" x=\\\"0 2.3803 8.0418 13.7033 19.3649 25.0264\\\">longer</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 133.9266)\\\" x=\\\"0 5.6615 11.3231 14.7531 17.1334 22.7949 28.4564\\\">period,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 64.4348 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 67.191 133.9266)\\\" x=\\\"0 2.5803\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 75.6328 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 78.5891 133.9266)\\\" x=\\\"0 7.3717 13.0832 15.5135 20.6635\\\">which</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 104.9641 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 107.7703 133.9266)\\\" x=\\\"0 5.15 10.8615 16.0115\\\">case</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 129.4934 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 132.2996 133.9266)\\\" x=\\\"0 5.25 11.0615\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 149.1727 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 152.0789 133.9266)\\\" x=\\\"0 5.7115 11.423 14.9031 20.6146\\\">agree</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 178.4051 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 181.2113 133.9266)\\\" x=\\\"0 2.9283 8.6398 14.3514\\\">that</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 198.491 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 201.2973 133.9266)\\\" x=\\\"0 3.0283 8.8398\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 215.9486 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 218.8549 133.9266)\\\" x=\\\"0 5.05 7.8783 13.4898 16.3182 21.9297 25.3098 28.7898 34.5014 40.2129 45.9244 48.3547 51.8348 57.5463\\\">state-required</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 282.1127 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 284.9189 133.9266)\\\" x=\\\"0 5.6615 11.3231 14.7531 17.1334 22.7949\\\">period</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 313.3754 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 316.1316 133.9266)\\\" x=\\\"0 2.5803\\\">is</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 324.0119 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 329.5182 133.9266)\\\" x=\\\"0 3.3301 8.8916 14.4531 19.4531 25.0147 30.5762 36.1377 41.6992 43.9795 49.541\\\">reasonable.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 381.8375 133.9266)\\\" x=\\\"0 2.6562\\\">  </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 387.15 133.9266)\\\" x=\\\"0 6.6699 12.2314\\\">You</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 404.943 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.5992 133.9266)\\\" x=\\\"0 5.5615 11.123 13.9014 19.4629 25.0244 28.3545 30.6348 35.6348\\\">authorize</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 448.7955 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 451.4518 133.9266)\\\" x=\\\"0 5.5615\\\">us</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 462.0133 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 464.6695 133.9266)\\\" x=\\\"0 2.7783\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 473.0094 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 475.6656 133.9266)\\\" x=\\\"0 5 10.5615 16.123\\\">send</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 497.3502 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 500.0064 133.9266)\\\" x=\\\"0 5.5615 11.1231 13.9014 16.1816 21.1816 26.7432\\\">notices</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 531.7496 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 534.4059 133.9266)\\\" x=\\\"0 2.7783\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 542.7457 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 545.402 133.9266)\\\" x=\\\"0 5 10.5615 16.123\\\">your</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 122.6082)\\\" x=\\\"0 5.56 13.89 19.45 21.73 24.01 26.67 32.23 37.79 43.35 46.68 52.24 57.24 62.24 64.9 70.46 76.02 78.3 83.86 88.86 93.86 96.52 102.08 105.41 110.97 116.53 118.81 124.37 126.65 129.43 134.99 140.55 143.21 148.77 153.77 156.43 158.71 164.27 171.49\\\">email address unless prohibited by law.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 109.2898)\\\" x=\\\"0 5 12.22 19.44\\\">JURY</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 59.2133 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 63.5195 109.2898)\\\" x=\\\"0 6.11 13.33 16.11 22.78\\\">TRIAL</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 91.8594 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 96.1656 109.2898)\\\" x=\\\"0 9.44 16.11 18.89 25.56 32.23\\\">WAIVER</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 135.6138 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 139.9201 109.2898)\\\" x=\\\"0 6.67 13.89\\\">AND</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 161.0334 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 165.3396 109.2898)\\\" x=\\\"0 6.67 13.89 20.56 23.34 29.45 36.67 43.34 49.45 52.23 60.01\\\">ARBITRATION</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 232.5662 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 236.8724 109.2898)\\\" x=\\\"0 7.22 12.78 19.45 26.67 33.34 40.01\\\">CLAUSE.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 279.6654 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 283.9716 109.2898)\\\" x=\\\"0 6.67\\\">By</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 295.6415 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 299.9478 109.2898)\\\" x=\\\"0 5 7.28 12.84 18.4 20.68 26.24 31.8\\\">signing,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 334.5327 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.8389 109.2898)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 354.962 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 359.2682 109.2898)\\\" x=\\\"0 5.56 11.12 14.45 20.01\\\">agree</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 384.8444 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 389.1507 109.2898)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 397.4905 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 401.7967 109.2898)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 417.4168 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 421.7231 109.2898)\\\" x=\\\"0 5 10.56 13.89\\\">Jury</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 440.6147 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 444.9209 109.2898)\\\" x=\\\"0 6.11 9.44 11.72 17.28\\\">Trial</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 464.4815 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 468.7877 109.2898)\\\" x=\\\"0 9.44 15 17.28 22.28 27.84\\\">Waiver</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.9596 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 504.2658 109.2898)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 520.9504 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 525.2566 109.2898)\\\" x=\\\"0 6.67 10 15.56 17.84 20.62 23.95 29.51 32.29 34.57 40.13\\\">Arbitration</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 97.9715)\\\" x=\\\"0 7.22 9.5 15.06 20.62 25.62 31.18 33.84 37.17 40.5 47.72 50 55.56 61.12 66.12 71.68 75.01 78.34\\\">Clause (“Clause”).</text></g><clipPath id=\\\"clip3-3\\\"><path d=\\\"M 35 76 L 573 76 L 573 94 L 35 94 L 35 76 z \\\"/></clipPath><path clip-path=\\\"url(#clip3-3)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 93.8719 L 572.95 93.8719 L 572.95 76.8719 L 35.45 76.8719 L 35.45 93.8719 z \\\"/><path clip-path=\\\"url(#clip3-3)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.15 91.8719 L 572.45 91.8719 L 572.45 80.5535 L 39.15 80.5535 L 39.15 91.8719 z \\\"/><path clip-path=\\\"url(#clip3-3)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 253.9396 91.8719 L 357.9396 91.8719 L 357.9396 79.8719 L 253.9396 79.8719 L 253.9396 91.8719 z \\\"/><g clip-path=\\\"url(#clip3-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 253.9396 82.6531)\\\" x=\\\"0 6.67 12.23 17.23 22.23 27.79 31.12 36.68 42.24 47.8 53.36 56.02 61.58 67.14 72.7 75.36 82.03 87.03 92.59 98.15\\\">Background and Scope</text></g><clipPath id=\\\"clip3-4\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip3-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 94.3719 L 573.45 94.3719 L 573.45 93.3719 L 34.95 93.3719 L 34.95 94.3719 z \\\"/><path clip-path=\\\"url(#clip3-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 77.3719 L 573.45 77.3719 L 573.45 76.3719 L 34.95 76.3719 L 34.95 77.3719 z \\\"/><path clip-path=\\\"url(#clip3-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 93.3719 L 573.45 93.3719 L 573.45 77.3719 L 572.45 77.3719 L 572.45 93.3719 z \\\"/><path clip-path=\\\"url(#clip3-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 93.3719 L 35.95 93.3719 L 35.95 77.3719 L 34.95 77.3719 L 34.95 93.3719 z \\\"/><g clip-path=\\\"url(#clip3-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 36.5264)\\\" x=\\\"0 6.498 11.997 14.391 16.785 21.789 26.793 29.295 34.299 39.303 44.307 504 506.3906 508.7812 511.1719 513.5625 515.9531 518.3438 520.7344 523.125 525.5156\\\">UT  07/2019          </text></g><g clip-path=\\\"url(#clip3-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 26.3398)\\\" x=\\\"0 6.003 11.007 16.011 21.015\\\">Page </text></g><g clip-path=\\\"url(#clip3-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 55.8097 26.3398)\\\" x=\\\"0\\\">4</text></g><g clip-path=\\\"url(#clip3-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.815 26.3398)\\\" x=\\\"0 2.394 7.398 9.9\\\"> of </text></g><g clip-path=\\\"url(#clip3-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 73.1021 26.3398)\\\" x=\\\"0\\\">7</text></g><g clip-path=\\\"url(#clip3-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#d9d9d9\\\" style=\\\"font-family:f3-0; font-size:54pt; white-space:pre\\\" transform=\\\"matrix(0.707 0.707 0.707 -0.707 135.6027 198.5094)\\\" x=\\\"0 56.016 96.048 136.08 176.112 216.144 236.16 284.184 324.216 344.232 364.248 416.232 456.264 480.24\\\">* D E M O *are</text></g><g clip-path=\\\"url(#clip3-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#002ba6\\\" style=\\\"font-family:f3-0; font-size:9pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.932 772)\\\" x=\\\"0 9.336 16.008 22.68 29.352 36.024 39.36 47.364 54.036 57.372 60.708 69.372 76.044 80.04 86.712 90.048 94.044 97.38 104.712 111.384 115.38 118.716 126.72 132.72 139.392 142.056 148.728 155.4 158.736 161.4 168.072 174.744 178.08 187.416 194.088 196.752 202.752 206.088 210.084 213.42 220.092 223.428 226.764 233.436 239.436 242.772 246.108 249.444 258.108 266.772 275.436 278.772 285.444 292.116 298.788 305.46 312.132 315.468 321.468 328.14\\\">Qoppa Software - For Evaluation Only - https://www.qoppa.com</text></g></g></svg></svg></g></svg><br>\\n<?xml version='1.0' encoding='UTF-8'?><svg id=\\\"qoppa_document\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" version=\\\"1.1\\\" xmlns=\\\"http://www.w3.org/2000/svg\\\" xmlns:xlink=\\\"http://www.w3.org/1999/xlink\\\"><!-- jPDFWeb v2019R1.03 - Demo Version --><style>title p { display: block; }</style><g id=\\\"qoppa_viewxform\\\" transform=\\\"matrix(1 0 0 1 0 0)\\\"><style type=\\\"text/css\\\">@font-face {font-family:f4-0;src:url(\\\"data:application/font-woff;charset=utf-8;base64,d09GRgABAAAAAAp8AAoAAAAADcAAAQABAAAAAAAAAAAAAAAAAAAAAAAAAABPUy8yAAAA9AAAADcAAABWWd9ZMmNtYXAAAAEsAAAAbAAAAIwCiwM0Z2x5ZgAAAZgAAAdLAAAJ6ArdyapoZWFkAAAI5AAAADEAAAA2GI9khmhoZWEAAAkYAAAAIAAAACQGNwJvaG10eAAACTgAAABeAAAAgDkXBShsb2NhAAAJmAAAAEIAAABCI1gg9G1heHAAAAncAAAAGAAAACAAIwA9bmFtZQAACfQAAAB8AAAA5g9SKYxwb3N0AAAKcAAAAAwAAAAgAAMAAHicY2Bk8mKcwMDKwMDUxbSbARlwMeogc/8DATI/MCDAkUEBCG8y3fyvxxDFdJPhEkwOAMlSDLoAeJxjYGBgZGAGYgYGHgYWhgYgLcMgABThYVBg0GewYnBj8GcIZAhmSGRIZkhjyGQoZ6j8/x+oSoFBFyjriiSbypDBkAOS/f/4//X/Z/8f/r/7/67/O/+v+b/6/6r/K/8v/78MbA9OAAAj1iOqeJxtVktsG9cVnXuHpChTEr/DjyRSHI44/IlUpeGQkvgTbepPkZJlUTQlWVLNWq2h2rHrohsv4iJo4P6SOqmRxIukDYqiWRTtJmgBN0CCBu1CRhZd1E5bdFOgdtuVG7SAAY16Z0gmClAOMPPmzX33nnfueUdigPEzf4QEjDIswwDHy5BQnsJovc7QK9Og+3tMU/2W5gT5vSb91Hnm+DE48VCd5+wS+9HcR27829EgRWNrDRroWxfD2GWJs9LKRrMJP242lQ9a66sUeInWm7SancuK68p5+K5yA3519AQP1/+0/nSdgih+heIlGnZ/Gm8VrCgpN2FF+cUOHtb+sq7cV0OpfuL4E/wzPmTMzBBFO11Ol6HL0CWG6EqntDHNSal0Kk0z8P07W9usbnfv7t3tbYT6xtuXTxcRSzPPXcvnAUslfIjN5i/f2bmA7MUv/fT1y5fLUC7f+db8Aq6svvjCwgKj1Rw9/j0+wUfMIDN5oqb61ArTi6A+qahLpA8G+jDeAhBKq1EqmpSK5m5jk0WfL+Hz+Ya80aAoJKKR9A8IIjQ2X9uanWMxm7k96HSa3S63yxUIBPiwkwPIZvCRbn//JxdmZkdcVktP0eLiBtzdp/Bi890fXrq0DDMzr3/93DnWoDeaTaf0M91Wa38glz17ZW1N63P8+N+4T5yN0QuBEsQ2+vZOQoE20LSzjbq9m/Q4BcB/DInEcm58nGUnJ4vNtbN6Q21j58ZGravRVSisnU4m2e7trYWyLCMuLlz9yuKCEZ7N8Ty43cW009nriMZuXB/7AkxMPW/cCooIPt9M2eOxcpHIxs7YGMjyV1WOReqrHh1MjMmQrlQqCVAXp3IpnCBZ1rikS1YnA7QRvdoL9XK0+i5zxenaQSIBaDDYt7r1OhhNJKbOjcQwl6vFQyEv+PlMjueNoIv4+WhUFNE7OLoXDML1XZ5HiEaXngwT82arxRK22TASmykHg106o7FbjLuc4HInL/ZRPb3VIosODrNZjePg8SfwT7QxfItjFa8GXsV6UqKaIOB7vT6fND88jEP+hsz7DRuWqUztQNXk1OTzSxNpC+xJA/2AqfTGcjbLQnB4wrRNJMLs3IsHy2UdRCKrLW2Kx0+JNydjZAKfVTarIpXG26UFQ7u0yim8g+HwdCESBoMhFpsfDQSs5/vzhfWtuXkdCe3WfLWCIBcjEcRYLDdfH4l7vWOmRljEfOHefqWi1+VzP6f9GqlamjQ1cEJTnMQJdHIFWZLFjnqiRrPZ1s85oNmsVyokigtWj9uGt1hA6O2LT5WUPHxQWuXjCT2yekbj8gzd/kHn3UVKsKbanFHiTstpeM8nhqS1xCjUYdA7nhdFqOOhcszbbQAj8fPKj2Az7vPRVteVv1ImVHMy9zRPU32LgKoJz9Tph4fNLx49I0vr1G7HMZJVogg8PErSfJFhCLKNiWrzXAfVCXSpdtdpmGwNXdZidUAU87IgWAbEYHExHCK8dkc6z/vrDk6a9fpIpQthpxPA7YlEPG7A+Mhp5TtQj/F+xFAorbwPF8PeQWRHR/PKI8JR0rixadxwn+dGaHPzylAonKvSCagD9S4fVLkxLERUJ4kn1pU3YSXj84rBivIHbdPI8HT2uinn5zxVOOGpXOdsqZ7qvZHNqN555WqhAJjJ3FwUxXB4aWVYgHAIbexS+ca3z5yBublvXl1eLmEqtbGblNlsZrmRkluaLR1PooHqOZjhzi7GTxg5iUgduxwtfmUi9lUuGJzYzuVZmMo8N8LzzvrH84EAHYvZJf8Q+P1oKAVIbKXS7YNqRQc2u1fBB5O6YrFSkyRgC/nyYjbTPi+T8LhTWy/I7aKqr0jqzmVJc/DO0aVOwuO6i+dj1zJTmM9dSAeDzpWPV6gkDPnLM8FhCAR+p3hJd7pK9eB2qQQuZ6A0qctkF8v5AguSVKsUiy1tTdOtQbW5k73r/AlRdfMyN9Af8zg4u89iMXMJj4caV4263QBGo2lV9TI2FksrD7W+ATNEnvOA8pGv25NtErs6Qjhh8F3/z+DjSWmvkkxa6jreH40KAqLb4/za3CySo+3WJib6NrqDQXlEGEb9VGY6GwrDC9lwGHm+2pOwO/r6Iv6eXt2gb6i2Go1AKFzvzbvdCA7HWNRitph5P+GzHv8XevG+6hF2zRscbQgaKNWVNK/4Wb1u7uNOdRtNPY4+s308IMD0NN5/t6S8HzxlQgBgqyw90OOpwmLpVotL2vvfiQfNI9RuqXnpwH7a0bT1DXS6StZ0yliv9ofDU3uRKKJB+XWSrN4w0H8TBo6eVUIeD7CSVIFNytlLiR9TTmJ3ACVWYC+//Grjt2c/pFW78NZnHqEjIT2glx4tbgAo1AQCu3P9SmP/G7W3N/e/vPUWrbkEbyjX4KWjZ/CScq2z1nKcgH+1cNO6NtZRaP/TUiAwdnjl/CNOGC5ZTD193b09Jotot5u4D3fuoOHoN7lYDIFl2TUdIthtQxNUaOt/bprEGQB4nGNgZGBgAOL9uy5diOe3+crAzfwCKMJw21zgLIL+r8fMyHQTqI6DgQkkCgBowQuoAAAAeJxjYGRgYLr5X48hitmRgeH/fWZGBqAIClAAAHbABKt4nGNggABGXyAWA9MKQDoKzAbSTLMZ/JmSGQKYuRj0QRjI12XSYVBj/MKgDqTVgWo4gLQzwz0IZnZkcATyXYBYGUqrAc10AKqXB6oVBPKdgGxepksMLEBaAABlFhBuAAAAAAAAAAAAAAAAAA4AGgAoADoAUgBoAKIBAgFUAbQB8AIsAloChAKYAqQC6AMSA0oDiAPGA+4EPgRsBJYEqgTIBPQAAHicY2BkYGBQYLBhYGIAAUYGNAAACboAYXicdcq9CoJgFIfxx+9anRobHCMUoguohq7AIVrEQoMXDROhpWvvD50xObyHH897gIQLAV64BFK9nz05NfssyMwBKzbmUD6ZI/lqjuWRIz1P3gw8aGhVztxxTNqjWk3FQTeO25+fDzv2s71UGXip9XSsKdiSa2buv2bjHPt4nGNgZsALAAB9AAQ=\\\");}@font-face {font-family:f4-1;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f4-2;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}</style><svg id=\\\"qoppa_page_p4\\\" class=\\\"qoppa_page\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\"><rect class=\\\"qoppa_pageborder\\\" x=\\\"0.5pt\\\" y=\\\"0.5pt\\\" width=\\\"611pt\\\" height=\\\"791pt\\\" fill=\\\"none\\\" /><svg class=\\\"qoppa_pagecontents\\\" x=\\\"0pt\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" viewBox=\\\"0 0 612 792\\\" ><g class=\\\"qoppa_contentstream\\\" transform=\\\"matrix(1 0 0 -1 0 792)\\\" fill=\\\"black\\\" stroke=\\\"black\\\" stroke-width=\\\"1\\\" stroke-linecap=\\\"butt\\\" stroke-linejoin=\\\"miter\\\" stroke-miterlimit=\\\"10\\\"><clipPath id=\\\"clip4-1\\\"><path d=\\\"M 35 748 L 130 748 L 130 770 L 35 770 L 35 748 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-1)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 769.7 L 129.35 769.7 L 129.35 748.5906 L 35.45 748.5906 L 35.45 769.7 z \\\"/><path clip-path=\\\"url(#clip4-1)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 767.7 L 125.25 767.7 L 125.25 758.6453 L 39.55 758.6453 L 39.55 767.7 z \\\"/><path clip-path=\\\"url(#clip4-1)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 47.9683 767.7 L 116.9684 767.7 L 116.9684 757.7 L 47.9683 757.7 L 47.9683 767.7 z \\\"/><g clip-path=\\\"url(#clip4-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.9684 760.325)\\\" x=\\\"0 7.552 12 16.448 18.672 20.8 22.624 26.624 28.752 33.2 35.864 40.312 42.136 44.36 47.024 51.472 53.696 55.52 59.968 64.416\\\">What is arbitration?</text></g><clipPath id=\\\"clip4-2\\\"><path d=\\\"M 129 748 L 206 748 L 206 770 L 129 770 L 129 748 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 138.6945 760.325)\\\" x=\\\"0 5.336 9.784 11.912 16.36 18.184 20.408 24.856 27.52 31.968 36.416 38.64 40.464 44.464 48.912 51.04 53.264\\\">An alternative to</text></g><g clip-path=\\\"url(#clip4-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 157.5461 751.2703)\\\" x=\\\"0 4 8.448 12.896 15.56 17.784\\\">court.</text></g><clipPath id=\\\"clip4-3\\\"><path d=\\\"M 205 748 L 573 748 L 573 770 L 205 770 L 205 748 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 760.325)\\\" x=\\\"0 2.224\\\">In</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 216.5219 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 220.3852 760.325)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 26.768 31.216 35.664\\\">arbitration,</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 258.2758 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 262.139 760.325)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 266.5883 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 270.4515 760.325)\\\" x=\\\"0 2.224 6.672 8.496 11.16\\\">third</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 286.0609 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 289.9242 760.325)\\\" x=\\\"0 4.448 8.896 11.56 13.784\\\">party</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 307.7094 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 311.5727 760.325)\\\" x=\\\"0 2.664 5.504 10.84 13.504 17.952 19.776 22 26.448 29.112 31.952\\\">(&quot;Arbiter&quot;)</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 346.1898 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 350.0531 760.325)\\\" x=\\\"0 4 8.448 10.272 14.272 18.72\\\">solves</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 372.7758 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 376.639 760.325)\\\" x=\\\"0 5.776 7.6 11.6 16.048 20.496 22.72 27.168\\\">Disputes</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 407.8109 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 411.6742 760.325)\\\" x=\\\"0 1.824\\\">in</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 417.9477 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 421.8109 760.325)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 426.2601 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 430.1234 760.325)\\\" x=\\\"0 4.448 8.896 13.344 16.008 17.832 22.28\\\">hearing</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.8578 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 460.7211 760.325)\\\" x=\\\"0 2.664 5.504 9.952 14.4 18.848 21.512 23.336 27.784 32.232 35.072 37.736\\\">(&quot;hearing&quot;).</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 500.6859 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 504.5492 760.325)\\\" x=\\\"0 5.336 9.784 14.232\\\">You,</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.0062 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 524.8695 760.325)\\\" x=\\\"0 2.664 7.112 8.936 13.384 15.608 20.056\\\">related</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.3773 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 553.2406 760.325)\\\" x=\\\"0 2.224 6.672 8.496 11.16\\\">third</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 751.2703)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056 24.056 26.28 28.408 32.856 37.304 41.752 43.88 49.656 54.104 56.328 58.456 64.232 68.68 70.504 74.504 78.952 81.08 83.304 87.752 92.2 94.328 96.992 98.816 103.264 107.712 109.936 112.064 114.288 118.736 120.864 125.312 129.76 131.888 134.112 138.56 140.688 144.688 149.136 153.584 156.248 158.472 160.696 162.824 168.16 172.608 176.608 181.056 183.184 186.024 190.472 194.92 197.584 199.808 201.632 206.08 210.08 212.92 215.048 217.272 221.72 224.384 228.832 233.28 235.408 237.232 241.68 244.344 248.344 250.472 252.696 255.36 257.184 261.632 263.456 267.456\\\">parties, and we, waive the right to go to court. Such &quot;parties&quot; forgo jury trials.</text></g><clipPath id=\\\"clip4-4\\\"><path d=\\\"M 35 727 L 130 727 L 130 749 L 35 749 L 35 727 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-4)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 748.5906 L 129.35 748.5906 L 129.35 727.4813 L 35.45 727.4813 L 35.45 748.5906 z \\\"/><path clip-path=\\\"url(#clip4-4)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 746.5906 L 125.25 746.5906 L 125.25 728.4813 L 39.55 728.4813 L 39.55 746.5906 z \\\"/><path clip-path=\\\"url(#clip4-4)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 41.6461 746.5906 L 123.6461 746.5906 L 123.6461 736.5906 L 41.6461 736.5906 L 41.6461 746.5906 z \\\"/><g clip-path=\\\"url(#clip4-4)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 41.6461 739.2156)\\\" x=\\\"0 2.224 6.224 8.352 10.176 12.4 14.528 18.976 20.8 23.024 25.248 29.696 32.36 36.808 41.256 43.48 45.608 47.832 50.496 54.944 61.608 63.736 67.736 72.184 76.632 79.296\\\">Is it different from court</text></g><path clip-path=\\\"url(#clip4-4)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 56.4156 737.5359 L 108.4156 737.5359 L 108.4156 727.5359 L 56.4156 727.5359 L 56.4156 737.5359 z \\\"/><g clip-path=\\\"url(#clip4-4)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 56.4156 730.1609)\\\" x=\\\"0 4.448 8.896 13.344 15.472 17.296 21.744 24.408 28.408 30.536 32.76 35.424 37.248 41.696 43.52 47.52\\\">and jury trials?</text></g><clipPath id=\\\"clip4-5\\\"><path d=\\\"M 129 727 L 206 727 L 206 749 L 129 749 L 129 727 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-5)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 159.5461 739.2156)\\\" x=\\\"0 5.336 9.784 13.784\\\">Yes.</text></g><clipPath id=\\\"clip4-6\\\"><path d=\\\"M 205 727 L 573 727 L 573 749 L 205 749 L 205 727 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 739.2156)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 223.6351 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 226.6552 739.2156)\\\" x=\\\"0 4.448 8.896 13.344 16.008 17.832 22.28\\\">hearing</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 253.3896 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 256.4096 739.2156)\\\" x=\\\"0 1.824\\\">is</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.2338 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 265.2539 739.2156)\\\" x=\\\"0 4.448 7.112 8.936 12.936 17.384 19.608\\\">private</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 289.3125 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 292.3325 739.2156)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 305.6802 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 308.7002 739.2156)\\\" x=\\\"0 1.824 6.272 10.272\\\">less</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 322.9737 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 325.9937 739.2156)\\\" x=\\\"0 2.224 6.672 9.336 16 20.448\\\">formal</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.2672 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 351.2872 739.2156)\\\" x=\\\"0 2.224 6.672 11.12\\\">than</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 366.8575 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 369.8776 739.2156)\\\" x=\\\"0 4 8.448 12.896 15.56 17.784\\\">court.</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 389.8854 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 392.9055 739.2156)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608\\\">Arbiters</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 420.5148 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 423.5349 739.2156)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 438.6482 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 441.6682 739.2156)\\\" x=\\\"0 1.824 3.648 10.312 12.136\\\">limit</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.0276 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 459.0477 739.2156)\\\" x=\\\"0 4.448 7.112 11.56 14.224 18.672 23.12 27.568 30.232 32.056 36.504\\\">pre-hearing</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 500.0086 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 503.0286 739.2156)\\\" x=\\\"0 2.224 6.672 10.672\\\">fact</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 515.9232 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 518.9432 739.2156)\\\" x=\\\"0 2.224 4.048 8.496 12.944 14.768 19.216 23.664\\\">finding,</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 544.8338 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 547.8539 739.2156)\\\" x=\\\"0 4 8.448 10.272 12.096 16.544\\\">called</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 730.1609)\\\" x=\\\"0 2.84 7.288 9.112 13.112 17.112 21.56 25.56 30.008 32.672 36.672 38.896 41.736 43.864 48.752 53.2 57.648 59.776 64.224 68.672 72.672 74.496 78.496 80.32 84.768 89.216 91.344 93.168 97.168 99.296 101.52 103.344 107.792 112.24 114.064 116.288 118.416 124.192 128.64 133.088 135.752 137.976 141.976 144.104 146.768 151.216 153.88 158.328 160.152 164.152 166.28 170.728 174.728 179.176 181.84 184.064 188.512 191.176 195.624 197.752 203.088 205.752 210.2 212.024 214.248 218.696 221.36 225.36\\\">&quot;discovery.&quot; The decision is final. Courts rarely overturn Arbiters.</text></g><clipPath id=\\\"clip4-7\\\"><path d=\\\"M 35 706 L 130 706 L 130 728 L 35 728 L 35 706 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-7)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 727.4813 L 129.35 727.4813 L 129.35 706.3719 L 35.45 706.3719 L 35.45 727.4813 z \\\"/><path clip-path=\\\"url(#clip4-7)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 725.4813 L 125.25 725.4813 L 125.25 707.3719 L 39.55 707.3719 L 39.55 725.4813 z \\\"/><path clip-path=\\\"url(#clip4-7)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 44.2789 725.4813 L 121.2789 725.4813 L 121.2789 715.4813 L 44.2789 715.4813 L 44.2789 725.4813 z \\\"/><g clip-path=\\\"url(#clip4-7)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 44.2789 718.1062)\\\" x=\\\"0 7.552 12 16.448 18.576 23.024 27.472 31.92 35.92 38.048 40.272 44.72 49.168 51.296 57.072 58.896 63.344 67.792 71.792\\\">Who does the Clause</text></g><path clip-path=\\\"url(#clip4-7)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 70.3941 716.4266 L 95.3941 716.4266 L 95.3941 706.4266 L 70.3941 706.4266 L 70.3941 716.4266 z \\\"/><g clip-path=\\\"url(#clip4-7)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 70.3941 709.0516)\\\" x=\\\"0 4 8.448 12.448 16.896 19.56\\\">cover?</text></g><clipPath id=\\\"clip4-8\\\"><path d=\\\"M 129 706 L 206 706 L 206 728 L 129 728 L 129 706 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 144.5226 718.1062)\\\" x=\\\"0 5.336 9.784 14.232 16.456 18.584 24.36 28.36 30.584 32.712 37.16 41.608\\\">You, Us, and</text></g><g clip-path=\\\"url(#clip4-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 154.4348 709.0516)\\\" x=\\\"0 6.224 8.448 12.896 17.344 20.008 24.008\\\">Others.</text></g><clipPath id=\\\"clip4-9\\\"><path d=\\\"M 205 706 L 573 706 L 573 728 L 205 728 L 205 706 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 718.1062)\\\" x=\\\"0 4.888 9.336 11.16\\\">This</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.0101 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 228.5163 718.1062)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496\\\">Clause</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 253.4655 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 256.9716 718.1062)\\\" x=\\\"0 4.448 8.896 12.896 17.344 20.008 24.456\\\">governs</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 285.4326 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 288.9387 718.1062)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 300.0598 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 303.5659 718.1062)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056 24.056\\\">parties,</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.8472 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 333.3533 718.1062)\\\" x=\\\"0 2.224 6.672 11.12 12.944\\\">their</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.9627 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 352.4688 718.1062)\\\" x=\\\"0 4.448 8.896 10.72 13.384 17.384\\\">heirs,</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 372.0782 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 375.5844 718.1062)\\\" x=\\\"0 4 8.448 12.448 16.448 20.896 24.896 28.896 33.344 36.008 40.008\\\">successors,</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 417.8187 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 421.3249 718.1062)\\\" x=\\\"0 4.448 8.448 12.448 14.272 18.72 23.168 27.168\\\">assigns,</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 450.7194 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 454.2255 718.1062)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.5732 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 471.0793 718.1062)\\\" x=\\\"0 2.224 6.672 8.496 11.16\\\">third</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.6887 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 490.1949 718.1062)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056\\\">parties</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 514.2535 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 517.7596 718.1062)\\\" x=\\\"0 2.664 7.112 8.936 13.384 15.608 20.056\\\">related</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 542.2674 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 545.7735 718.1062)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.4454 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 555.9515 718.1062)\\\" x=\\\"0 4.448 8.896\\\">any</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 709.0516)\\\" x=\\\"0 5.776 7.6 11.6 16.048 20.496 22.72 27.168\\\">Dispute.</text></g><clipPath id=\\\"clip4-10\\\"><path d=\\\"M 35 630 L 130 630 L 130 707 L 35 707 L 35 630 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-10)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 706.3719 L 129.35 706.3719 L 129.35 630.9344 L 35.45 630.9344 L 35.45 706.3719 z \\\"/><path clip-path=\\\"url(#clip4-10)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 704.3719 L 125.25 704.3719 L 125.25 686.2625 L 39.55 686.2625 L 39.55 704.3719 z \\\"/><path clip-path=\\\"url(#clip4-10)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 47.7711 704.3719 L 117.7711 704.3719 L 117.7711 694.3719 L 47.7711 694.3719 L 47.7711 704.3719 z \\\"/><g clip-path=\\\"url(#clip4-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.7711 696.9969)\\\" x=\\\"0 7.552 12 13.824 17.824 22.272 24.4 30.176 32 36 40.448 44.896 47.12 51.568 55.568 57.696 62.144 64.808\\\">Which Disputes are</text></g><path clip-path=\\\"url(#clip4-10)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 65.9449 695.3172 L 98.9449 695.3172 L 98.9449 685.3172 L 65.9449 685.3172 L 65.9449 695.3172 z \\\"/><g clip-path=\\\"url(#clip4-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 65.9449 687.9422)\\\" x=\\\"0 4 8.448 12.448 16.896 19.56 24.008 28.456\\\">covered?</text></g><clipPath id=\\\"clip4-11\\\"><path d=\\\"M 129 630 L 206 630 L 206 707 L 129 707 L 129 630 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 145.298 696.9969)\\\" x=\\\"0 5.336 7.16 8.984 11.112 16.888 18.712 22.712 27.16 31.608 33.832 38.28 42.28\\\">All Disputes.</text></g><clipPath id=\\\"clip4-12\\\"><path d=\\\"M 205 630 L 573 630 L 573 707 L 205 707 L 205 630 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 696.9969)\\\" x=\\\"0 2.224\\\">In</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 216.5219 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 220.3165 696.9969)\\\" x=\\\"0 2.224 6.672 8.496\\\">this</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 232.8126 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 236.6072 696.9969)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496 24.944\\\">Clause,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 263.7791 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 267.5738 696.9969)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 278.6949 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 282.4895 696.9969)\\\" x=\\\"0 5.776 10.224 12.888\\\">word</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.8293 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 303.624 696.9969)\\\" x=\\\"0 2.84 8.616 10.44 14.44 18.888 23.336 25.56 30.008 34.008\\\">&quot;Disputes&quot;</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 340.4755 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 344.2702 696.9969)\\\" x=\\\"0 4.448 8.896\\\">has</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 357.1686 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 360.9633 696.9969)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 372.0844 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 375.879 696.9969)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456 24.904 28.904\\\">broadest</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 407.0118 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 410.8065 696.9969)\\\" x=\\\"0 4.448 8.896 12.896 16.896 18.72 23.168 24.992\\\">possible</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 440.2518 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 444.0464 696.9969)\\\" x=\\\"0 6.664 11.112 15.56 20.008 21.832 26.28 30.728\\\">meaning.</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 477.0034 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 480.7981 696.9969)\\\" x=\\\"0 4.888 9.336 11.16\\\">This</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 495.9582 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 499.7529 696.9969)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496\\\">Clause</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 524.7021 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 528.4968 696.9969)\\\" x=\\\"0 4.448 8.896 12.896 17.344 20.008 24.456\\\">governs</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 556.9577 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 560.7523 696.9969)\\\" x=\\\"0 4.448 6.272\\\">all</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 687.9422)\\\" x=\\\"0 2.84 8.616 10.44 14.44 18.888 23.336 25.56 30.008 34.008\\\">&quot;Disputes&quot;</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 246.7015 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 248.8785 687.9422)\\\" x=\\\"0 1.824 6.272 10.272 14.72 16.544 20.544 22.368 26.816\\\">involving</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.148 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 282.3249 687.9422)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 293.446 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 295.6229 687.9422)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056 24.056\\\">parties.</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 321.9041 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 324.081 687.9422)\\\" x=\\\"0 4.888 9.336 11.16\\\">This</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 339.2412 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 341.4181 687.9422)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44\\\">includes</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 370.8634 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 373.0403 687.9422)\\\" x=\\\"0 4.448 6.272\\\">all</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 381.1379 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 383.3148 687.9422)\\\" x=\\\"0 4 5.824 10.272 12.096 18.76\\\">claims</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 406.0765 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 408.2534 687.9422)\\\" x=\\\"0 4.448 8.448 12.896\\\">even</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 425.6011 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 427.778 687.9422)\\\" x=\\\"0 1.824 6.272 10.72 12.544 15.208 19.656 23.656 25.88 27.704\\\">indirectly</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 459.485 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 461.6619 687.9422)\\\" x=\\\"0 2.664 7.112 8.936 13.384 15.608 20.056\\\">related</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.1698 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 488.3466 687.9422)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 495.0185 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 497.1954 687.9422)\\\" x=\\\"0 4 8.448 12.896\\\">your</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.7579 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 514.9348 687.9422)\\\" x=\\\"0 4.448 8.896 13.344 15.168 16.992 20.992 25.44 27.664 29.488 33.936\\\">application</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.3254 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 555.5023 687.9422)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 678.8875)\\\" x=\\\"0 4.448 8.896 11.56 16.008 20.456 27.12 31.568 36.016 38.24\\\">agreements</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 252.0961 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 254.4013 678.8875)\\\" x=\\\"0 5.776 7.6 9.824\\\">with</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 268.6747 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 270.9799 678.8875)\\\" x=\\\"0 4.448 8.448\\\">us.</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.6518 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 283.957 678.8875)\\\" x=\\\"0 4.888 9.336 11.16\\\">This</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.1172 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 301.4224 678.8875)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44\\\">includes</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 330.8677 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 333.1729 678.8875)\\\" x=\\\"0 4 5.824 10.272 12.096 18.76\\\">claims</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.9346 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 358.2398 678.8875)\\\" x=\\\"0 2.664 7.112 8.936 13.384 15.608 20.056\\\">related</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 382.7477 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 385.0529 678.8875)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 391.7247 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 394.0299 678.8875)\\\" x=\\\"0 1.824 6.272 8.496 12.944 15.608 22.272 26.72 28.944 30.768 35.216\\\">information</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 433.6979 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 436.0031 678.8875)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 448.9016 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 451.2068 678.8875)\\\" x=\\\"0 4.448 7.112 11.56 15.56 17.384 21.832 26.28 30.28 32.104\\\">previously</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 487.3161 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 489.6213 678.8875)\\\" x=\\\"0 4.448 8.896 12.896\\\">gave</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 506.969 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 509.2742 678.8875)\\\" x=\\\"0 4.448 8.448\\\">us.</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 519.9461 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 522.2513 678.8875)\\\" x=\\\"0 2.224\\\">It</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.6966 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 529.0018 678.8875)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44\\\">includes</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 558.4471 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 560.7523 678.8875)\\\" x=\\\"0 4.448 6.272\\\">all</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 669.8328)\\\" x=\\\"0 4.448 8.896 12.896\\\">past</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 224.9711 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 227.1634 669.8328)\\\" x=\\\"0 4.448 8.896 11.56 16.008 20.456 27.12 31.568 36.016 38.24 42.24\\\">agreements.</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 271.6321 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 273.8245 669.8328)\\\" x=\\\"0 2.224\\\">It</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 278.2698 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 280.4621 669.8328)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44 29.44\\\">includes,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.13 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 314.3223 669.8328)\\\" x=\\\"0 4.448\\\">as</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 322.7716 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 324.9639 669.8328)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 340.0772 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 342.2695 669.8328)\\\" x=\\\"0 4.448\\\">be</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.1679 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 353.3602 669.8328)\\\" x=\\\"0 4.448 8.896 13.344 15.168 16.992 20.992 25.44 29.888 31.712 36.16\\\">applicable,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 391.7508 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 393.9431 669.8328)\\\" x=\\\"0 4.448 8.896\\\">any</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 406.8416 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 409.0339 669.8328)\\\" x=\\\"0 4.448 8.896 13.344 15.168 17.392 19.216 23.664 28.112 32.56\\\">additional</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 443.4245 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 445.6168 669.8328)\\\" x=\\\"0 4.448 8.896 11.56 13.384 17.832 22.28 26.28\\\">periods,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.1246 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 476.3169 669.8328)\\\" x=\\\"0 4.448 8.448 10.672 15.12 19.568 23.568 25.392 29.84 34.288 38.288\\\">extensions,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 516.8326 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 519.0249 669.8328)\\\" x=\\\"0 2.664 7.112 11.56 16.008 21.784 26.232 28.056 32.056\\\">renewals,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.31 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 555.5023 669.8328)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 660.7781)\\\" x=\\\"0 4.448 6.272 10.72 15.168 19.168\\\">plans.</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.2445 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 233.5225 660.7781)\\\" x=\\\"0 2.224\\\">It</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 237.9678 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 240.2458 660.7781)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44\\\">includes</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 269.6911 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 271.9691 660.7781)\\\" x=\\\"0 4 5.824 10.272 12.096 18.76\\\">claims</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 294.7308 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 297.0088 660.7781)\\\" x=\\\"0 2.664 7.112 8.936 13.384 15.608 20.056\\\">related</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 321.5167 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 323.7946 660.7781)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 330.4665 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 332.7445 660.7781)\\\" x=\\\"0 4.448 8.896 15.56 20.008 24.456 28.904\\\">damaged</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 366.1039 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 368.3819 660.7781)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456 23.12 25.344 29.344\\\">property,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 399.9522 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 402.2302 660.7781)\\\" x=\\\"0 4.448 8.896 12.896 17.344 21.792 24.016\\\">buyout,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 428.4724 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 430.7504 660.7781)\\\" x=\\\"0 2.664 7.112 8.936 13.384 17.384 19.608 24.056 26.28 30.728 37.392 41.84 46.288 48.512\\\">r* D E M O *t,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 481.4887 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 483.7667 660.7781)\\\" x=\\\"0 1.824 6.272 10.272 14.272\\\">loss,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 500.2627 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 502.5408 660.7781)\\\" x=\\\"0 4.448 8.896 15.56 20.008 24.456 28.904\\\">damage,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 533.6736 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 535.9516 660.7781)\\\" x=\\\"0 5.776 10.224 12.888 15.552 20 24.448 26.672 30.672\\\">warranty,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 651.7234)\\\" x=\\\"0 6.664 11.112 12.936 17.384 19.608 24.056 28.504 32.952 37.4 41.4 45.848\\\">maintenance,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.9281 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 260.595 651.7234)\\\" x=\\\"0 4 8.448 10.272 12.096 16.544 20.544 22.768 24.592 29.04 33.488\\\">collection,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 296.3099 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 298.9768 651.7234)\\\" x=\\\"0 4.448 8.896 12.896 16.896 21.344 25.344 29.344 31.168 35.616 40.064\\\">possession,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 341.2697 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 343.9366 651.7234)\\\" x=\\\"0 4.448 7.112 8.936 12.936 17.384 21.384 25.384\\\">privacy,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.546 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 374.2129 651.7234)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 387.5606 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 390.2275 651.7234)\\\" x=\\\"0 4 8.448 12.448 14.672 19.12 25.784 30.232\\\">customer</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 423.1259 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 425.7928 651.7234)\\\" x=\\\"0 1.824 6.272 8.496 12.944 15.608 22.272 26.72 28.944 30.768 35.216 39.664\\\">information.</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.6834 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 470.3503 651.7234)\\\" x=\\\"0 2.224\\\">It</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.7957 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 477.4626 651.7234)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44\\\">includes</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 506.9079 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 509.5748 651.7234)\\\" x=\\\"0 4 5.824 10.272 12.096 18.76\\\">claims</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 532.3365 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 535.0034 651.7234)\\\" x=\\\"0 2.664 7.112 8.936 13.384 15.608 20.056\\\">related</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.5112 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 562.1781 651.7234)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 642.6688)\\\" x=\\\"0 4 8.448 10.672 12.896 14.72 19.168\\\">setting</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.4672 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 236.1411 642.6688)\\\" x=\\\"0 4.448 8.448 10.272 14.72\\\">aside</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 255.313 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 257.987 642.6688)\\\" x=\\\"0 2.224 6.672 8.496\\\">this</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 270.4831 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 273.157 642.6688)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496 24.944\\\">Clause.</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 300.3289 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 303.0029 642.6688)\\\" x=\\\"0 2.224\\\">It</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 307.4482 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 310.1221 642.6688)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44\\\">includes</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 339.5674 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 342.2414 642.6688)\\\" x=\\\"0 4 5.824 10.272 12.096 18.76\\\">claims</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 365.0031 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 367.6771 642.6688)\\\" x=\\\"0 4.448 8.896 13.344 17.792\\\">about</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 387.6966 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 390.3706 642.6688)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 401.4917 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 404.1656 642.6688)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496 24.944 26.472\\\">Clause&apos;s</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.6422 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 437.3161 642.6688)\\\" x=\\\"0 4 8.448 10.272 12.096 16.544 18.368 20.592\\\">validity</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 461.9099 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 464.5838 642.6688)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 477.9315 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 480.6055 642.6688)\\\" x=\\\"0 4 8 12.448 16.896 21.344\\\">scope.</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 504.1758 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 506.8497 642.6688)\\\" x=\\\"0 2.224\\\">It</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 511.295 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 513.969 642.6688)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44\\\">includes</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 543.4143 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 546.0883 642.6688)\\\" x=\\\"0 4 5.824 10.272 12.096 18.76\\\">claims</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 633.6141)\\\" x=\\\"0 4.448 8.896 13.344 17.792 20.016 22.144 27.92 32.368 36.816 39.04 43.488 47.936 50.6 52.728 54.952 59.4 61.528 65.976 68.64 73.088 74.912 77.136 79.8 84.248 86.472 90.92\\\">about whether to arbitrate.</text></g><clipPath id=\\\"clip4-13\\\"><path d=\\\"M 35 578 L 130 578 L 130 631 L 35 631 L 35 578 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-13)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 630.9344 L 129.35 630.9344 L 129.35 578.6609 L 35.45 578.6609 L 35.45 630.9344 z \\\"/><path clip-path=\\\"url(#clip4-13)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 628.9344 L 125.25 628.9344 L 125.25 619.8797 L 39.55 619.8797 L 39.55 628.9344 z \\\"/><path clip-path=\\\"url(#clip4-13)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 41.1227 628.9344 L 124.1227 628.9344 L 124.1227 618.9344 L 41.1227 618.9344 L 41.1227 628.9344 z \\\"/><g clip-path=\\\"url(#clip4-13)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 41.1227 621.5594)\\\" x=\\\"0 5.336 8 12.448 14.576 18.576 23.024 27.472 29.6 35.376 39.824 41.648 45.648 47.472 51.92 56.368 58.496 61.16 62.984 67.432 71.88 74.104 78.104\\\">Are you waiving rights?</text></g><clipPath id=\\\"clip4-14\\\"><path d=\\\"M 129 578 L 206 578 L 206 631 L 129 631 L 129 578 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-14)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 159.5461 621.5594)\\\" x=\\\"0 5.336 9.784 13.784\\\">Yes.</text></g><clipPath id=\\\"clip4-15\\\"><path d=\\\"M 205 578 L 573 578 L 573 631 L 205 631 L 205 578 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-15)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 621.5594)\\\" x=\\\"0 5.336 9.784 14.232\\\">You </text></g><g clip-path=\\\"url(#clip4-15)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 225.85 621.5594)\\\" x=\\\"0 5.776 10.224 12.048 16.048\\\">waive</text></g><path clip-path=\\\"url(#clip4-15)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 225.85 620.213 L 225.85 620.213 L 245.85 620.213 L 246.1833 620.213 L 246.1833 619.5464 L 245.85 619.5464 L 225.85 619.5464 L 225.5167 619.5464 L 225.5167 620.213 z \\\"/><g clip-path=\\\"url(#clip4-15)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.85 621.5594)\\\" x=\\\"0 2.128 6.128 10.576 15.024 17.688 19.816 22.48 24.304 28.752 33.2 35.424 39.424 41.552 43.776 48.224\\\"> your rights to:</text></g><g clip-path=\\\"url(#clip4-15)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 611.5047)\\\" x=\\\"0 4.448 6.672 8.8 14.576 19.024 23.024 27.472 29.6 31.424 35.872 38.536 40.36 44.808 48.808 50.936 54.936 59.384 61.208 65.208 69.656 71.784 77.56 79.384 83.384 87.832 92.28 94.504 98.952 102.952\\\">1. Have juries solve Disputes.</text></g><g clip-path=\\\"url(#clip4-15)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 601.45)\\\" x=\\\"0 4.448 6.672 8.8 14.576 19.024 23.024 27.472 29.6 33.6 38.048 42.496 45.16 47.384 51.384 53.608 55.736 60.184 62.408 66.856 71.304 73.968 76.096 78.32 82.768 87.216 91.664 93.792 97.792 104.456 108.904 110.728 112.552 115.216 119.216 121.04 125.488 127.312 133.976 137.976 140.104 144.104 148.552 153 155.664 157.888 161.888 164.112 166.24 170.24 174.688 176.512 180.512 184.96 187.088 192.864 194.688 198.688 203.136 207.584 209.808 214.256 218.256\\\">2. Have courts, other than small-claims courts, solve Disputes.</text></g><g clip-path=\\\"url(#clip4-15)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 591.3953)\\\" x=\\\"0 4.448 6.672 8.8 14.136 18.584 21.248 25.248 29.696 31.824 36.272 40.272 42.4 46.848 48.976 53.424 56.088 57.912 61.912 66.36 68.584 73.032 75.16 79.608 81.832 84.056 88.504 91.168 95.616 100.064 104.064 106.192 110.64 115.088 119.536 123.984 126.648 131.096 132.92 135.048 139.496 142.16 144.288 146.112 150.56 152.688 157.136 159.264 161.928 166.376 170.824 173.488 177.936 181.936 186.384 190.832 193.056 197.504 199.728 201.552 205.552 210 212.128 216.128 220.576 225.024 229.472 233.472 235.296 237.52 241.52\\\">3. Serve as a private attorney general or in a* D E M O *tive capacity.</text></g><g clip-path=\\\"url(#clip4-15)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 581.3406)\\\" x=\\\"0 4.448 6.672 8.8 14.136 18.584 20.712 22.536 26.984 29.112 33.56 35.688 39.688 41.512 45.96 49.96 53.96 56.088 60.536 64.536 66.76 68.584 73.032 77.48\\\">4. Be in a class action.</text></g><clipPath id=\\\"clip4-16\\\"><path d=\\\"M 35 530 L 130 530 L 130 579 L 35 579 L 35 530 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-16)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 578.6609 L 129.35 578.6609 L 129.35 530.3875 L 35.45 530.3875 L 35.45 578.6609 z \\\"/><path clip-path=\\\"url(#clip4-16)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 576.6609 L 125.25 576.6609 L 125.25 558.5516 L 39.55 558.5516 L 39.55 576.6609 z \\\"/><path clip-path=\\\"url(#clip4-16)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 44.0152 576.6609 L 121.0152 576.6609 L 121.0152 566.6609 L 44.0152 566.6609 L 44.0152 576.6609 z \\\"/><g clip-path=\\\"url(#clip4-16)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 44.0152 569.2859)\\\" x=\\\"0 5.336 8 12.448 14.576 18.576 23.024 27.472 29.6 35.376 39.824 41.648 45.648 47.472 51.92 56.368 58.496 62.496 64.32 68.768 72.768\\\">Are you waiving class</text></g><path clip-path=\\\"url(#clip4-16)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 58.6109 567.6063 L 106.6109 567.6063 L 106.6109 557.6063 L 58.6109 557.6063 L 58.6109 567.6063 z \\\"/><g clip-path=\\\"url(#clip4-16)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 58.6109 560.2312)\\\" x=\\\"0 4.448 8.448 10.672 12.496 16.944 21.392 23.52 26.184 28.008 32.456 36.904 39.128 43.128\\\">action rights?</text></g><clipPath id=\\\"clip4-17\\\"><path d=\\\"M 129 530 L 206 530 L 206 579 L 129 579 L 129 530 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-17)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 159.5461 569.2859)\\\" x=\\\"0 5.336 9.784 13.784\\\">Yes.</text></g><clipPath id=\\\"clip4-18\\\"><path d=\\\"M 205 530 L 573 530 L 573 579 L 205 579 L 205 530 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 569.2859)\\\" x=\\\"0 5.7774 12 17.7774 23.5547 28.4414\\\">COURTS</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 243.6273 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 245.7523 569.2859)\\\" x=\\\"0 5.3359 11.1133\\\">AND</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.643 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 264.768 569.2859)\\\" x=\\\"0 5.3359 11.1133 16.4492 18.6719 23.5586 28.8945 34.6719\\\">ARBITERS</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 304.7758 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 306.9008 569.2859)\\\" x=\\\"0\\\">W</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 306.9008 567.9396 L 306.9008 567.9396 L 314.9008 567.9396 L 315.2341 567.9396 L 315.2341 567.2729 L 314.9008 567.2729 L 306.9008 567.2729 L 306.5674 567.2729 L 306.5674 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 314.4515 569.2859)\\\" x=\\\"0\\\">O</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 314.4515 567.9396 L 314.4515 567.9396 L 320.4515 567.9396 L 320.7849 567.9396 L 320.7849 567.2729 L 320.4515 567.2729 L 314.4515 567.2729 L 314.1182 567.2729 L 314.1182 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 320.6742 569.2859)\\\" x=\\\"0\\\">N</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 320.6742 567.9396 L 320.6742 567.9396 L 326.6742 567.9396 L 327.0075 567.9396 L 327.0075 567.2729 L 326.6742 567.2729 L 320.6742 567.2729 L 320.3409 567.2729 L 320.3409 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 326.4515 569.2859)\\\" x=\\\"0\\\">&apos;</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 326.4515 567.9396 L 326.4515 567.9396 L 328.4515 567.9396 L 328.7849 567.9396 L 328.7849 567.2729 L 328.4515 567.2729 L 326.4515 567.2729 L 326.1182 567.2729 L 326.1182 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 327.9789 569.2859)\\\" x=\\\"0\\\">T</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 327.9789 567.9396 L 327.9789 567.9396 L 332.9789 567.9396 L 333.3122 567.9396 L 333.3122 567.2729 L 332.9789 567.2729 L 327.9789 567.2729 L 327.6456 567.2729 L 327.6456 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 332.8656 569.2859)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 332.8656 567.9396 L 332.8656 567.9396 L 334.8656 567.9396 L 335.1989 567.9396 L 335.1989 567.2729 L 334.8656 567.2729 L 332.8656 567.2729 L 332.5323 567.2729 L 332.5323 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 334.9906 569.2859)\\\" x=\\\"0\\\">A</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 334.9906 567.9396 L 334.9906 567.9396 L 339.9906 567.9396 L 340.3239 567.9396 L 340.3239 567.2729 L 339.9906 567.2729 L 334.9906 567.2729 L 334.6573 567.2729 L 334.6573 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 340.3265 569.2859)\\\" x=\\\"0\\\">L</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 340.3265 567.9396 L 340.3265 567.9396 L 344.3265 567.9396 L 344.6599 567.9396 L 344.6599 567.2729 L 344.3265 567.2729 L 340.3265 567.2729 L 339.9932 567.2729 L 339.9932 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 344.7758 569.2859)\\\" x=\\\"0\\\">L</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 344.7758 567.9396 L 344.7758 567.9396 L 348.7758 567.9396 L 349.1091 567.9396 L 349.1091 567.2729 L 348.7758 567.2729 L 344.7758 567.2729 L 344.4424 567.2729 L 344.4424 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 349.225 569.2859)\\\" x=\\\"0\\\">O</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 349.225 567.9396 L 349.225 567.9396 L 355.225 567.9396 L 355.5583 567.9396 L 355.5583 567.2729 L 355.225 567.2729 L 349.225 567.2729 L 348.8917 567.2729 L 348.8917 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 355.4477 569.2859)\\\" x=\\\"0\\\">W</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 355.4477 567.9396 L 355.4477 567.9396 L 363.4477 567.9396 L 363.781 567.9396 L 363.781 567.2729 L 363.4477 567.2729 L 355.4477 567.2729 L 355.1143 567.2729 L 355.1143 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 362.9984 569.2859)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 362.9984 567.9396 L 362.9984 567.9396 L 364.9984 567.9396 L 365.3318 567.9396 L 365.3318 567.2729 L 364.9984 567.2729 L 362.9984 567.2729 L 362.6651 567.2729 L 362.6651 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 365.1234 569.2859)\\\" x=\\\"0\\\">C</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 365.1234 567.9396 L 365.1234 567.9396 L 371.1234 567.9396 L 371.4568 567.9396 L 371.4568 567.2729 L 371.1234 567.2729 L 365.1234 567.2729 L 364.7901 567.2729 L 364.7901 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 370.9008 569.2859)\\\" x=\\\"0\\\">L</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 370.9008 567.9396 L 370.9008 567.9396 L 374.9008 567.9396 L 375.2341 567.9396 L 375.2341 567.2729 L 374.9008 567.2729 L 370.9008 567.2729 L 370.5674 567.2729 L 370.5674 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 375.35 569.2859)\\\" x=\\\"0\\\">A</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 375.35 567.9396 L 375.35 567.9396 L 380.35 567.9396 L 380.6833 567.9396 L 380.6833 567.2729 L 380.35 567.2729 L 375.35 567.2729 L 375.0167 567.2729 L 375.0167 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 380.6859 569.2859)\\\" x=\\\"0\\\">S</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 380.6859 567.9396 L 380.6859 567.9396 L 385.6859 567.9396 L 386.0193 567.9396 L 386.0193 567.2729 L 385.6859 567.2729 L 380.6859 567.2729 L 380.3526 567.2729 L 380.3526 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 386.0219 569.2859)\\\" x=\\\"0\\\">S</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 386.0219 567.9396 L 386.0219 567.9396 L 391.0219 567.9396 L 391.3552 567.9396 L 391.3552 567.2729 L 391.0219 567.2729 L 386.0219 567.2729 L 385.6885 567.2729 L 385.6885 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 391.3578 569.2859)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 391.3578 567.9396 L 391.3578 567.9396 L 393.3578 567.9396 L 393.6911 567.9396 L 393.6911 567.2729 L 393.3578 567.2729 L 391.3578 567.2729 L 391.0245 567.2729 L 391.0245 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 393.4828 569.2859)\\\" x=\\\"0\\\">A</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 393.4828 567.9396 L 393.4828 567.9396 L 398.4828 567.9396 L 398.8161 567.9396 L 398.8161 567.2729 L 398.4828 567.2729 L 393.4828 567.2729 L 393.1495 567.2729 L 393.1495 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 398.8187 569.2859)\\\" x=\\\"0\\\">C</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 398.8187 567.9396 L 398.8187 567.9396 L 404.8187 567.9396 L 405.1521 567.9396 L 405.1521 567.2729 L 404.8187 567.2729 L 398.8187 567.2729 L 398.4854 567.2729 L 398.4854 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 404.5961 569.2859)\\\" x=\\\"0\\\">T</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 404.5961 567.9396 L 404.5961 567.9396 L 409.5961 567.9396 L 409.9294 567.9396 L 409.9294 567.2729 L 409.5961 567.2729 L 404.5961 567.2729 L 404.2628 567.2729 L 404.2628 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 409.4828 569.2859)\\\" x=\\\"0\\\">I</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 409.4828 567.9396 L 409.4828 567.9396 L 411.4828 567.9396 L 411.8161 567.9396 L 411.8161 567.2729 L 411.4828 567.2729 L 409.4828 567.2729 L 409.1495 567.2729 L 409.1495 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 411.7055 569.2859)\\\" x=\\\"0\\\">O</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 411.7055 567.9396 L 411.7055 567.9396 L 417.7055 567.9396 L 418.0388 567.9396 L 418.0388 567.2729 L 417.7055 567.2729 L 411.7055 567.2729 L 411.3721 567.2729 L 411.3721 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 417.9281 569.2859)\\\" x=\\\"0\\\">N</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 417.9281 567.9396 L 417.9281 567.9396 L 423.9281 567.9396 L 424.2614 567.9396 L 424.2614 567.2729 L 423.9281 567.2729 L 417.9281 567.2729 L 417.5948 567.2729 L 417.5948 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 423.7055 569.2859)\\\" x=\\\"0\\\">S</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 423.7055 567.9396 L 423.7055 567.9396 L 428.7055 567.9396 L 429.0388 567.9396 L 429.0388 567.2729 L 428.7055 567.2729 L 423.7055 567.2729 L 423.3721 567.2729 L 423.3721 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 429.0414 569.2859)\\\" x=\\\"0\\\">.</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 429.0414 567.9396 L 429.0414 567.9396 L 431.0414 567.9396 L 431.3747 567.9396 L 431.3747 567.2729 L 431.0414 567.2729 L 429.0414 567.2729 L 428.7081 567.2729 L 428.7081 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 431.264 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 433.389 569.2859)\\\" x=\\\"0 5.3359 9.7852\\\">You</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.6234 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 449.7484 569.2859)\\\" x=\\\"0\\\">w</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 449.7484 567.9396 L 449.7484 567.9396 L 455.7484 567.9396 L 456.0818 567.9396 L 456.0818 567.2729 L 455.7484 567.2729 L 449.7484 567.2729 L 449.4151 567.2729 L 449.4151 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 455.5258 569.2859)\\\" x=\\\"0\\\">a</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 455.5258 567.9396 L 455.5258 567.9396 L 459.5258 567.9396 L 459.8591 567.9396 L 459.8591 567.2729 L 459.5258 567.2729 L 455.5258 567.2729 L 455.1924 567.2729 L 455.1924 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 459.975 569.2859)\\\" x=\\\"0\\\">i</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 459.975 567.9396 L 459.975 567.9396 L 461.975 567.9396 L 462.3083 567.9396 L 462.3083 567.2729 L 461.975 567.2729 L 459.975 567.2729 L 459.6417 567.2729 L 459.6417 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 461.7992 569.2859)\\\" x=\\\"0\\\">v</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 461.7992 567.9396 L 461.7992 567.9396 L 465.7992 567.9396 L 466.1325 567.9396 L 466.1325 567.2729 L 465.7992 567.2729 L 461.7992 567.2729 L 461.4659 567.2729 L 461.4659 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 465.7992 569.2859)\\\" x=\\\"0\\\">e</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 465.7992 567.9396 L 465.7992 567.9396 L 469.7992 567.9396 L 470.1325 567.9396 L 470.1325 567.2729 L 469.7992 567.2729 L 465.7992 567.2729 L 465.4659 567.2729 L 465.4659 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 470.2484 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 472.3734 569.2859)\\\" x=\\\"0 4 8.4492 12.8984\\\">your</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 487.9359 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 490.0609 569.2859)\\\" x=\\\"0 2.6641 4.4883 8.9375 13.3867 15.6094\\\">rights</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.6703 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 511.7953 569.2859)\\\" x=\\\"0 2.2227\\\">to</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 518.4672 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 520.5922 569.2859)\\\" x=\\\"0 4.4492\\\">be</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.4906 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 531.6156 569.2859)\\\" x=\\\"0 1.8242\\\">in</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 537.889 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 540.014 569.2859)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 544.4633 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 546.5883 569.2859)\\\" x=\\\"0\\\">c</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 546.5883 567.9396 L 546.5883 567.9396 L 550.5883 567.9396 L 550.9216 567.9396 L 550.9216 567.2729 L 550.5883 567.2729 L 546.5883 567.2729 L 546.2549 567.2729 L 546.2549 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 550.5883 569.2859)\\\" x=\\\"0\\\">l</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 550.5883 567.9396 L 550.5883 567.9396 L 552.5883 567.9396 L 552.9216 567.9396 L 552.9216 567.2729 L 552.5883 567.2729 L 550.5883 567.2729 L 550.2549 567.2729 L 550.2549 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 552.4125 569.2859)\\\" x=\\\"0\\\">a</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 552.4125 567.9396 L 552.4125 567.9396 L 556.4125 567.9396 L 556.7458 567.9396 L 556.7458 567.2729 L 556.4125 567.2729 L 552.4125 567.2729 L 552.0792 567.2729 L 552.0792 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 556.8617 569.2859)\\\" x=\\\"0\\\">s</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 556.8617 567.9396 L 556.8617 567.9396 L 560.8617 567.9396 L 561.1951 567.9396 L 561.1951 567.2729 L 560.8617 567.2729 L 556.8617 567.2729 L 556.5284 567.2729 L 556.5284 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 560.8617 569.2859)\\\" x=\\\"0\\\">s</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 560.8617 567.9396 L 560.8617 567.9396 L 564.8617 567.9396 L 565.1951 567.9396 L 565.1951 567.2729 L 564.8617 567.2729 L 560.8617 567.2729 L 560.5284 567.2729 L 560.5284 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 560.2312)\\\" x=\\\"0\\\">a</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 209.85 558.8849 L 209.85 558.8849 L 213.85 558.8849 L 214.1833 558.8849 L 214.1833 558.2182 L 213.85 558.2182 L 209.85 558.2182 L 209.5167 558.2182 L 209.5167 558.8849 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 214.2992 560.2312)\\\" x=\\\"0\\\">c</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 214.2992 558.8849 L 214.2992 558.8849 L 218.2992 558.8849 L 218.6325 558.8849 L 218.6325 558.2182 L 218.2992 558.2182 L 214.2992 558.2182 L 213.9659 558.2182 L 213.9659 558.8849 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 218.2992 560.2312)\\\" x=\\\"0\\\">t</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 218.2992 558.8849 L 218.2992 558.8849 L 220.2992 558.8849 L 220.6325 558.8849 L 220.6325 558.2182 L 220.2992 558.2182 L 218.2992 558.2182 L 217.9659 558.2182 L 217.9659 558.8849 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 220.5219 560.2312)\\\" x=\\\"0\\\">i</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 220.5219 558.8849 L 220.5219 558.8849 L 222.5219 558.8849 L 222.8552 558.8849 L 222.8552 558.2182 L 222.5219 558.2182 L 220.5219 558.2182 L 220.1885 558.2182 L 220.1885 558.8849 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 222.3461 560.2312)\\\" x=\\\"0\\\">o</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 222.3461 558.8849 L 222.3461 558.8849 L 226.3461 558.8849 L 226.6794 558.8849 L 226.6794 558.2182 L 226.3461 558.2182 L 222.3461 558.2182 L 222.0128 558.2182 L 222.0128 558.8849 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 226.7953 560.2312)\\\" x=\\\"0\\\">n</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 226.7953 558.8849 L 226.7953 558.8849 L 230.7953 558.8849 L 231.1286 558.8849 L 231.1286 558.2182 L 230.7953 558.2182 L 226.7953 558.2182 L 226.462 558.2182 L 226.462 558.8849 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 231.2445 560.2312)\\\" x=\\\"0\\\">,</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.4672 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 235.5922 560.2312)\\\" x=\\\"0 4.4492\\\">as</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 244.0414 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 246.1664 560.2312)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 250.6156 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 252.7406 560.2312)\\\" x=\\\"0 2.6641 7.1133 11.5625 14.2266 18.6758 22.6758 27.125 31.5742 33.7969 38.2461 40.4688 42.293 46.293\\\">representative</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 303.4828 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 305.6078 560.2312)\\\" x=\\\"0 4.4492 8.8984\\\">and</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 318.9555 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 321.0805 560.2312)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 325.5297 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 327.6547 560.2312)\\\" x=\\\"0 6.6641 11.1133 17.7773 22.2266 26.6758 29.3398\\\">member.</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.2172 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 361.3422 560.2312)\\\" x=\\\"0 6.2227 10.6719 12.4961\\\">Only</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 377.8383 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 379.9633 560.2312)\\\" x=\\\"0 1.8242 6.2734 10.7227 12.5469 16.5469 18.3711 22.8203 27.2695 31.7188\\\">individual</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 413.5062 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 415.6312 560.2312)\\\" x=\\\"0 4.4492 7.1133 11.5625 13.3867 15.6094 18.2734 22.7227 24.9453 26.7695 31.2188 35.668\\\">arbitration,</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 453.5219 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 455.6469 560.2312)\\\" x=\\\"0 4.4492\\\">or</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 462.7601 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 464.8851 560.2312)\\\" x=\\\"0 4 10.6641 15.1133 16.9375 18.7617 21.4258 25.4258 27.25 31.6992 33.5234 40.1875\\\">small-claims</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.0727 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 511.1977 560.2312)\\\" x=\\\"0 4 8.4492 12.8984 15.5625 17.7851 21.7851\\\">courts,</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 535.2055 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 537.3305 560.2312)\\\" x=\\\"0 5.7773 7.6016 9.4258\\\">will</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 551.1766)\\\" x=\\\"0 4 8.4492 10.2734 14.2734\\\">solve</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 228.5726 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 230.6976 551.1766)\\\" x=\\\"0 5.7773 7.6016 11.6016 16.0508 20.5 22.7227 27.1719 31.1719\\\">Disputes.</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 264.0922 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 266.2172 551.1766)\\\" x=\\\"0 5.3359 9.7852\\\">You</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.4515 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 282.5765 551.1766)\\\" x=\\\"0 5.7774 10.2266 12.0508 16.0508\\\">waive</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 303.0765 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 304.9015 551.1766)\\\" x=\\\"0 4 8.4492 12.8984\\\">your</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 320.464 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 322.289 551.1766)\\\" x=\\\"0 2.6641 4.4883 8.9375 13.3867\\\">right</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 337.8984 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 339.7234 551.1766)\\\" x=\\\"0 2.2227\\\">to</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 346.3953 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 348.2203 551.1766)\\\" x=\\\"0 4.4492 8.8984 12.8984\\\">have</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 365.568 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 367.393 551.1766)\\\" x=\\\"0 2.6641 7.1133 11.5625 14.2266 18.6758 22.6758 27.125 31.5742 33.7969 38.2461 40.4687 42.293 46.293\\\">representative</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 418.1351 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 419.9601 551.1766)\\\" x=\\\"0 4 5.8242 10.2734 12.0977 18.7617 22.7617\\\">claims.</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 444.9445 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 446.7695 551.1766)\\\" x=\\\"0 5.7774 10.2266 12.0508 16.5 20.5\\\">Unless</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 471.2695 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 473.0945 551.1766)\\\" x=\\\"0 2.6641 7.1133 11.1133 15.5625 18.2266 22.2266 26.6758\\\">reversed</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 504.2195 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 506.0445 551.1766)\\\" x=\\\"0 4.4492\\\">on</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 514.943 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 516.768 551.1766)\\\" x=\\\"0 4.4492 8.8984 13.3477 17.7969 22.2461 24.0703\\\">appeal,</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 543.0609 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 544.8859 551.1766)\\\" x=\\\"0 1.8242\\\">if</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 548.9328 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 550.7578 551.1766)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 542.1219)\\\" x=\\\"0 4 8.4492 12.8984 15.5625\\\">court</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 227.6351 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 229.4601 542.1219)\\\" x=\\\"0 1.8242 6.2734 10.2734 14.7227 16.5469 18.3711 22.8203 27.2695 29.4922 33.9414\\\">invalidates</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 267.4015 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 269.2265 542.1219)\\\" x=\\\"0 2.2227 6.6719 8.4961\\\">this</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.7226 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 283.5477 542.1219)\\\" x=\\\"0 5.7773 10.2266 12.0508 16.0508 20.5 23.1641\\\">waiver,</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.9344 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 310.7594 542.1219)\\\" x=\\\"0 2.2226 6.6719 11.1211\\\">then</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 326.3297 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 328.4547 542.1219)\\\" x=\\\"0 2.2227 6.6719\\\">the</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 339.5758 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 341.4008 542.1219)\\\" x=\\\"0 4.4492 8.8984 11.5625 16.0117 20.4609 27.125 31.5742 36.0234\\\">agreement</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 379.6469 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 381.4719 542.1219)\\\" x=\\\"0 2.2227\\\">to</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.1437 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 389.9687 542.1219)\\\" x=\\\"0 4.4492 7.1133 11.5625 13.3867 15.6094 18.2734 22.7227 24.9453\\\">arbitrate</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.3633 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 421.1883 542.1219)\\\" x=\\\"0 5.7774 7.6016 9.4258\\\">will</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 432.4383 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 434.2633 542.1219)\\\" x=\\\"0 4.4492\\\">be</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 443.1617 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 444.9867 542.1219)\\\" x=\\\"0 4 8.4492 10.2734 14.7227\\\">void,</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 461.932 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 463.757 542.1219)\\\" x=\\\"0 4.4492 8.8984\\\">and</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 477.1047 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 478.9297 542.1219)\\\" x=\\\"0 5.7773 7.6016 11.6016 16.0508 20.5 22.7227 27.1719\\\">Disputes</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 510.1016 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 511.9266 542.1219)\\\" x=\\\"0 5.7773 7.6016 9.4258\\\">will</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 523.1766 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 525.0016 542.1219)\\\" x=\\\"0 4.4492\\\">be</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 533.9 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 535.725 542.1219)\\\" x=\\\"0 2.6641 7.1133 11.1133 15.5625 17.3867 21.3867 25.8359\\\">resolved</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 533.0672)\\\" x=\\\"0 4.4492\\\">by</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 218.2992 533.0672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 220.1242 533.0672)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 224.5734 533.0672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 226.3984 533.0672)\\\" x=\\\"0 1.8242 6.2734 10.7227 15.1719 19.6211\\\">judge,</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 248.2422 533.0672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 250.0672 533.0672)\\\" x=\\\"0 4.4492 8.8984\\\">but</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 261.1883 533.0672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 263.0133 533.0672)\\\" x=\\\"0 4.4492 8.8984\\\">not</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 274.1344 533.0672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 275.9594 533.0672)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.4086 533.0672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 282.2336 533.0672)\\\" x=\\\"0 1.8242 6.2734 8.9375 12.9375\\\">jury.</text></g><clipPath id=\\\"clip4-19\\\"><path d=\\\"M 35 491 L 130 491 L 130 531 L 35 531 L 35 491 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-19)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 530.3875 L 129.35 530.3875 L 129.35 491.1688 L 35.45 491.1688 L 35.45 530.3875 z \\\"/><path clip-path=\\\"url(#clip4-19)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 528.3875 L 125.25 528.3875 L 125.25 519.3328 L 39.55 519.3328 L 39.55 528.3875 z \\\"/><path clip-path=\\\"url(#clip4-19)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 49.9664 528.3875 L 114.9664 528.3875 L 114.9664 518.3875 L 49.9664 518.3875 L 49.9664 528.3875 z \\\"/><g clip-path=\\\"url(#clip4-19)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 49.9664 521.0125)\\\" x=\\\"0 7.552 12 16.448 18.672 20.8 22.624 27.072 32.848 34.976 39.424 43.872 48.32 50.144 51.968 56.416 60.416\\\">What law applies?</text></g><clipPath id=\\\"clip4-20\\\"><path d=\\\"M 129 491 L 206 491 L 206 531 L 129 531 L 129 491 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-20)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.009 521.0125)\\\" x=\\\"0 4.888 9.336 13.784 15.912 20.8 25.248 29.696 34.144 36.808 41.256\\\">The Federal</text></g><g clip-path=\\\"url(#clip4-20)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 142.4308 511.9578)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 19.16 23.608 25.832 27.656 32.104 36.552 38.68 44.016 48.016\\\">Arbitration Act</text></g><g clip-path=\\\"url(#clip4-20)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 153.1555 502.9031)\\\" x=\\\"0 2.664 5.504 10.392 15.728 21.064 23.904 26.568\\\">(&quot;FAA&quot;).</text></g><clipPath id=\\\"clip4-21\\\"><path d=\\\"M 205 491 L 573 491 L 573 531 L 205 531 L 205 491 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 521.0125)\\\" x=\\\"0 4.888 9.336 11.16\\\">This</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.0101 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 228.9725 521.0125)\\\" x=\\\"0 2.224 4.888 9.336 13.784 17.784 22.232 26.232 28.456 30.28 34.728\\\">transaction</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 268.1522 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 272.1145 521.0125)\\\" x=\\\"0 1.824 6.272 10.272 14.72 16.544 20.544 24.992\\\">involves</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 301.1106 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 305.0729 521.0125)\\\" x=\\\"0 1.824 6.272 8.496 12.944 15.608 19.608 21.832 26.28 28.504\\\">interstate</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.026 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 341.9884 521.0125)\\\" x=\\\"0 4 8.448 15.112 21.776 26.224 28.888 32.888 37.336\\\">commerce.</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 381.5509 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 385.5132 521.0125)\\\" x=\\\"0 4.888 9.336 13.784 17.784\\\">Thus,</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 405.521 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 409.4834 521.0125)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 420.6045 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 424.5668 521.0125)\\\" x=\\\"0 4.888 10.224\\\">FAA</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 440.1254 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 444.0877 521.0125)\\\" x=\\\"0 4.448 8.896 12.896 17.344 20.008 24.456 28.456\\\">governs.</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.7713 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 478.7336 521.0125)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 483.179 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 487.1413 521.0125)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 491.5905 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 495.5528 521.0125)\\\" x=\\\"0 4 8.448 12.896 15.56\\\">court</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 513.338 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 517.3003 521.0125)\\\" x=\\\"0 2.224 4.048 8.496 12.944\\\">finds</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 534.2456 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 538.208 521.0125)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.3291 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 553.2914 521.0125)\\\" x=\\\"0 4.888 10.224\\\">FAA</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 511.9578)\\\" x=\\\"0 4.448 8.896 13.344 17.344 21.792 23.32\\\">doesn&apos;t</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 235.3969 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 237.5853 511.9578)\\\" x=\\\"0 4.448 8.896 13.344 15.168 19.168\\\">apply,</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 258.9798 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 261.1682 511.9578)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 274.5159 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 276.7043 511.9578)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 287.8254 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 290.0138 511.9578)\\\" x=\\\"0 2.224 4.048 8.496 12.944 14.768 19.216\\\">finding</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 313.6818 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 315.8702 511.9578)\\\" x=\\\"0 4 8.448 12.896 14.424\\\">can&apos;t</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 332.5186 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 334.7071 511.9578)\\\" x=\\\"0 4.448\\\">be</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 343.6055 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 345.7939 511.9578)\\\" x=\\\"0 4.448 8.896 13.344 17.792 22.24 24.064 28.512 32.96\\\">appealed,</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.9853 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 383.1737 511.9578)\\\" x=\\\"0 2.224 6.672 11.12\\\">then</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 398.7441 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 400.9325 511.9578)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 412.0536 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 414.242 511.9578)\\\" x=\\\"0 4 6.224 10.672 12.896\\\">state</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 431.5857 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 433.7742 511.9578)\\\" x=\\\"0 1.824 6.272\\\">law</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 445.825 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 448.0134 511.9578)\\\" x=\\\"0 5.776 10.224 14.672 17.336\\\">where</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 469.8024 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 471.9908 511.9578)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.8893 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 487.0777 511.9578)\\\" x=\\\"0 5.776 10.224 12.888\\\">were</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 504.4175 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 506.606 511.9578)\\\" x=\\\"0 5.776 10.224 14.672\\\">when</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 525.731 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 527.9194 511.9578)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 540.8178 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 543.0062 511.9578)\\\" x=\\\"0 4 5.824 10.272 14.72 19.168 23.616\\\">signed,</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 502.9031)\\\" x=\\\"0 4.448 8.896 12.896 17.344 20.008 24.456 28.456\\\">governs.</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 240.5336 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 243.9142 502.9031)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.6993 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 261.0799 502.9031)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 284.6893 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 288.0699 502.9031)\\\" x=\\\"0 6.664 11.112 15.112\\\">must</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 305.4058 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 308.7864 502.9031)\\\" x=\\\"0 4.448 8.896 13.344 15.168\\\">apply</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 327.9582 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 331.3388 502.9031)\\\" x=\\\"0 4 8.448 12.896 16.896 19.12 23.568 28.016 30.24 32.064 36.064\\\">substantive</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.8545 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 375.235 502.9031)\\\" x=\\\"0 1.824 6.272\\\">law</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 387.2858 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 390.6664 502.9031)\\\" x=\\\"0 4 8.448 12.896 16.896 18.72 22.72 24.944 29.392 33.84\\\">consistent</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 426.7328 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 430.1134 502.9031)\\\" x=\\\"0 5.776 7.6 9.824\\\">with</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 444.3868 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 447.7674 502.9031)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 458.8885 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 462.2691 502.9031)\\\" x=\\\"0 4.888 10.224 15.56\\\">FAA.</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 480.0503 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 483.4309 502.9031)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 497.2161 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 500.5966 502.9031)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 524.206 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 527.5866 502.9031)\\\" x=\\\"0 6.664 11.112 15.112\\\">must</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 544.9225 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 548.3031 502.9031)\\\" x=\\\"0 2.224 6.672 8.496 10.32 14.768\\\">follow</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 493.8484)\\\" x=\\\"0 4 6.224 10.672 12.896 17.344 19.568 24.016 28.016 30.144 34.592 36.816 38.944 40.768 42.592 49.256 51.08 53.304 57.752 59.976 61.8 66.248 70.696 72.824 77.272 81.72 86.168 88.296 92.744 95.408 97.232 101.232 103.056 104.88 109.328 113.776 118.224 120.352 124.352 126.176 130.624 132.448 139.112 143.112\\\">statutes of limitation and privilege claims.</text></g><clipPath id=\\\"clip4-22\\\"><path d=\\\"M 35 433 L 130 433 L 130 492 L 35 492 L 35 433 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-22)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 491.1688 L 129.35 491.1688 L 129.35 433.8406 L 35.45 433.8406 L 35.45 491.1688 z \\\"/><path clip-path=\\\"url(#clip4-22)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 489.1688 L 125.25 489.1688 L 125.25 471.0594 L 39.55 471.0594 L 39.55 489.1688 z \\\"/><path clip-path=\\\"url(#clip4-22)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 45.443 489.1688 L 119.443 489.1688 L 119.443 479.1688 L 45.443 479.1688 L 45.443 489.1688 z \\\"/><g clip-path=\\\"url(#clip4-22)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 45.443 481.7937)\\\" x=\\\"0 5.776 10.224 14.672 16.8 19.024 23.472 27.92 30.048 34.496 38.944 41.608 43.832 45.656 50.104 54.104 56.232 58.456 61.12 65.12 67.248 69.472\\\">Can the * D E M O * to</text></g><path clip-path=\\\"url(#clip4-22)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 46.6363 480.1141 L 118.6363 480.1141 L 118.6363 470.1141 L 46.6363 470.1141 L 46.6363 480.1141 z \\\"/><g clip-path=\\\"url(#clip4-22)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 46.6363 472.7391)\\\" x=\\\"0 4 8.448 10.272 14.272 18.72 20.848 26.624 28.448 32.448 36.896 41.344 43.568 48.016 52.016 54.144 56.368 58.192 60.856 64.856 67.08\\\">solve Disputes first?</text></g><clipPath id=\\\"clip4-23\\\"><path d=\\\"M 129 433 L 206 433 L 206 492 L 129 492 L 129 433 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-23)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 159.5461 481.7937)\\\" x=\\\"0 5.336 9.784 13.784\\\">Yes.</text></g><clipPath id=\\\"clip4-24\\\"><path d=\\\"M 205 433 L 573 433 L 573 492 L 205 492 L 205 433 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 481.7937)\\\" x=\\\"0 7.552\\\">We</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 221.85 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 224.092 481.7937)\\\" x=\\\"0 4 8.448\\\">can</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 236.9904 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 239.2324 481.7937)\\\" x=\\\"0 2.224 4.888\\\">try</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 248.1191 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 250.3611 481.7937)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.033 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 259.275 481.7937)\\\" x=\\\"0 4 8.448 10.272 14.272\\\">solve</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 277.9976 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 280.2396 481.7937)\\\" x=\\\"0 5.776 7.6 11.6 16.048 20.496 22.72 27.168\\\">Disputes</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 311.4115 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 313.6535 481.7937)\\\" x=\\\"0 1.824\\\">if</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 317.7004 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 319.9424 481.7937)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 332.8408 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 335.0828 481.7937)\\\" x=\\\"0 4 8.448 10.272\\\">call</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 347.1805 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 349.4224 481.7937)\\\" x=\\\"0 4.448\\\">us</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 357.8717 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 360.1137 481.7937)\\\" x=\\\"0 4.448\\\">at</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 366.7855 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 369.0275 481.7937)\\\" x=\\\"0 2.664 7.112 11.56 16.008\\\">(100)</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 387.7033 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 389.9453 481.7937)\\\" x=\\\"0 4.448 8.896 13.344 16.008 20.456 24.904 29.352 33.8\\\">000-0006.</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 425.9766 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 428.2185 481.7937)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 432.6639 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 434.9058 481.7937)\\\" x=\\\"0 2.224 6.672 8.496\\\">this</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.4019 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 449.6439 481.7937)\\\" x=\\\"0 4.448 8.896 13.344 17.344 21.792 23.32\\\">doesn&apos;t</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 475.1908 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 477.4328 481.7937)\\\" x=\\\"0 4 8.448 10.272 14.272\\\">solve</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 496.1555 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 498.3974 481.7937)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.5185 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 511.7605 481.7937)\\\" x=\\\"0 5.776 7.6 11.6 16.048 20.496 22.72 27.168\\\">Dispute,</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 541.1551 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 543.3971 481.7937)\\\" x=\\\"0 6.664 11.112 12.936\\\">mail</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 558.1588 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 560.4008 481.7937)\\\" x=\\\"0 4.448\\\">us</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 472.7391)\\\" x=\\\"0 5.776 8.44 10.264 12.488 14.712 19.16\\\">written</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.4594 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 235.6405 472.7391)\\\" x=\\\"0 4.448 8.896 11.12 12.944 16.944 21.392\\\">notice,</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.2577 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 261.4388 472.7391)\\\" x=\\\"0 5.776 7.6 9.824 14.272 16.096\\\">within</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.9857 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 284.1668 472.7391)\\\" x=\\\"0 4.448 8.896\\\">100</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 297.5145 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 299.6956 472.7391)\\\" x=\\\"0 4.448 8.896 12.896\\\">days</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 316.594 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 318.7752 472.7391)\\\" x=\\\"0 4.448\\\">of</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 325.447 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 327.6282 472.7391)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.7493 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 340.9304 472.7391)\\\" x=\\\"0 5.776 7.6 11.6 16.048 20.496 22.72\\\">Dispute</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 368.1023 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 370.2834 472.7391)\\\" x=\\\"0 4.448 8.896 11.12 15.568\\\">date.</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.0763 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 390.2575 472.7391)\\\" x=\\\"0 2.224\\\">In</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 396.9293 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 399.1105 472.7391)\\\" x=\\\"0 4 8.448 12.896\\\">your</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 414.673 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 416.8541 472.7391)\\\" x=\\\"0 4.448 8.896 11.12 12.944 16.944 21.392\\\">notice,</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 440.4713 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 442.6524 472.7391)\\\" x=\\\"0 2.224 6.672 8.496\\\">tell</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 452.9727 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 455.1539 472.7391)\\\" x=\\\"0 4.448\\\">us</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 463.6031 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 465.7842 472.7391)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 476.9053 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 479.0864 472.7391)\\\" x=\\\"0 4.448 8.896 11.12 15.568 17.392 19.216\\\">details</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 502.3052 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 504.4863 472.7391)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 517.834 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 520.0151 472.7391)\\\" x=\\\"0 4.448 8.896\\\">how</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 534.6909 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 536.872 472.7391)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.7704 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 551.9515 472.7391)\\\" x=\\\"0 5.776 10.224 14.672\\\">want</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 463.6844)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 216.5219 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 219.4635 463.6844)\\\" x=\\\"0 4 8.448 10.272 14.272\\\">solve</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.1861 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 241.1277 463.6844)\\\" x=\\\"0 1.824 4.048\\\">it.</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.3973 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 250.3389 463.6844)\\\" x=\\\"0 7.552\\\">We</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.3389 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 265.2805 463.6844)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.5305 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 279.4721 463.6844)\\\" x=\\\"0 2.224 4.888\\\">try</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 288.3588 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 291.3004 463.6844)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 297.9723 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 300.9139 463.6844)\\\" x=\\\"0 4 8.448 10.272 14.272\\\">solve</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.6366 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 322.5782 463.6844)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 333.6993 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 336.6409 463.6844)\\\" x=\\\"0 5.776 7.6 11.6 16.048 20.496 22.72 27.168\\\">Dispute.</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 366.0354 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 368.977 463.6844)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 373.4224 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 376.364 463.6844)\\\" x=\\\"0 5.776\\\">we</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 386.5905 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 389.5321 463.6844)\\\" x=\\\"0 6.664 11.112 15.112\\\">make</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 409.0947 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 412.0363 463.6844)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 416.4855 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 419.4271 463.6844)\\\" x=\\\"0 5.776 8.44 10.264 12.488 14.712 19.16\\\">written</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 443.0365 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 445.9781 463.6844)\\\" x=\\\"0 4.448 6.672 8.896 13.344\\\">offer</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 461.9859 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 464.9275 463.6844)\\\" x=\\\"0 2.664 5.504 10.84 15.288 17.512 19.736 21.56 26.008 32.672 37.12 41.568\\\">(&quot;Settlement</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 508.7205 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 511.6621 463.6844)\\\" x=\\\"0 6.224 8.448 10.672 15.12 17.784 20.624 23.288\\\">Offer&quot;),</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 537.1699 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 540.1115 463.6844)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.0099 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 555.9515 463.6844)\\\" x=\\\"0 4 8.448\\\">can</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 454.6297)\\\" x=\\\"0 2.664 7.112 8.936 13.384 17.384\\\">reject</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 229.4594 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 233.7138 454.6297)\\\" x=\\\"0 1.824\\\">it</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 237.7606 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 242.015 454.6297)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 255.3627 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 259.6171 454.6297)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 29.392\\\">arbitrate.</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.2343 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 295.4887 454.6297)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.934 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 304.1884 454.6297)\\\" x=\\\"0 5.776\\\">we</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 314.4149 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 318.6693 454.6297)\\\" x=\\\"0 4.448 8.896 13.344 14.872\\\">don&apos;t</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.767 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 340.0214 454.6297)\\\" x=\\\"0 4 8.448 10.272 14.272\\\">solve</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 358.744 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 362.9984 454.6297)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 374.1195 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 378.3739 454.6297)\\\" x=\\\"0 5.776 7.6 11.6 16.048 20.496 22.72 27.168\\\">Dispute,</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 407.7684 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 412.0228 454.6297)\\\" x=\\\"0 4.448 6.272 8.496 12.944 17.392\\\">either</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 432.0814 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 436.3358 454.6297)\\\" x=\\\"0 4.448 8.896 11.56 13.784\\\">party</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.121 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 458.3754 454.6297)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 473.4887 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 477.7431 454.6297)\\\" x=\\\"0 4 6.224 10.672 13.336\\\">start</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 493.3016 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 497.556 454.6297)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 26.768 31.216 35.664\\\">arbitration.</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 535.4467 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 539.7011 454.6297)\\\" x=\\\"0 4.888\\\">To</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.037 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 553.2914 454.6297)\\\" x=\\\"0 4 6.224 10.672 13.336\\\">start</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 445.575)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 26.768 31.216 35.664\\\">arbitration,</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.7406 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 250.0233 445.575)\\\" x=\\\"0 4 8.448 12.896 15.12 19.568 23.568\\\">contact</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.8162 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 278.0989 445.575)\\\" x=\\\"0 4.448\\\">an</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 286.9973 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 289.28 445.575)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.8893 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 315.172 445.575)\\\" x=\\\"0 4.448\\\">or</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 322.2853 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 324.5679 445.575)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 26.768 31.216\\\">arbitration</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 360.2359 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 362.5185 445.575)\\\" x=\\\"0 4.448 7.112 11.56 16.008\\\">group</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 382.9795 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 385.2621 445.575)\\\" x=\\\"0 1.824 3.648 7.648 9.872 14.32 18.768\\\">listed.</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 406.2543 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 408.5369 445.575)\\\" x=\\\"0 5.776\\\">No</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 418.7635 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 421.0461 445.575)\\\" x=\\\"0 4.448 8.896 11.56 13.784\\\">party</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 438.8313 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 441.1139 445.575)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 452.3639 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 454.6466 445.575)\\\" x=\\\"0 4.448 6.272 10.272 14.272 16.096 20.544 24.544\\\">disclose</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 483.6427 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 485.9253 445.575)\\\" x=\\\"0 4 8.448 10.672 12.896 14.72 19.168 25.832 30.28 34.728\\\">settlement</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 522.8785 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 525.1611 445.575)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456 24.456 28.904 30.728\\\">proposals</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.8955 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 562.1781 445.575)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 436.5203)\\\" x=\\\"0 2.224 6.672 11.12 13.248 18.584 21.248 25.696 27.52 29.744 34.192 36.856 38.984 43.432 47.88 50.544 52.368 56.816 61.264 63.392 67.84 70.504 74.952 76.776 79 81.664 86.112 88.336 90.16 94.608 99.056\\\">the Arbiter during arbitration.</text></g><clipPath id=\\\"clip4-25\\\"><path d=\\\"M 35 412 L 130 412 L 130 434 L 35 434 L 35 412 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-25)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 433.8406 L 129.35 433.8406 L 129.35 412.7313 L 35.45 412.7313 L 35.45 433.8406 z \\\"/><path clip-path=\\\"url(#clip4-25)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 431.8406 L 125.25 431.8406 L 125.25 413.7313 L 39.55 413.7313 L 39.55 431.8406 z \\\"/><path clip-path=\\\"url(#clip4-25)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 40.0543 431.8406 L 127.0543 431.8406 L 127.0543 421.8406 L 40.0543 421.8406 L 40.0543 431.8406 z \\\"/><g clip-path=\\\"url(#clip4-25)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.0543 424.4656)\\\" x=\\\"0 5.776 10.224 16 18.128 22.128 26.576 31.024 35.472 37.296 41.744 43.872 47.872 52.32 56.768 58.896 62.896 67.344 71.792 74.016 78.464 82.464\\\">How should you contact</text></g><path clip-path=\\\"url(#clip4-25)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 75.9508 422.7859 L 88.9508 422.7859 L 88.9508 412.7859 L 75.9508 412.7859 L 75.9508 422.7859 z \\\"/><g clip-path=\\\"url(#clip4-25)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 75.9508 415.4109)\\\" x=\\\"0 4.448 8.448\\\">us?</text></g><clipPath id=\\\"clip4-26\\\"><path d=\\\"M 129 412 L 206 412 L 206 434 L 129 434 L 129 412 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-26)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 153.3273 424.4656)\\\" x=\\\"0 5.336 9.336 11.464 18.128 22.576 24.4 26.224\\\">By mail.</text></g><clipPath id=\\\"clip4-27\\\"><path d=\\\"M 205 412 L 573 412 L 573 434 L 205 434 L 205 412 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 424.4656)\\\" x=\\\"0 5.336 9.784 14.232\\\">Send</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 228.5336 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 231.2172 424.4656)\\\" x=\\\"0 6.664 11.112 12.936\\\">mail</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.9789 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 248.6625 424.4656)\\\" x=\\\"0 2.224 6.672\\\">to:</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.557 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 260.2406 424.4656)\\\" x=\\\"0 5.336 9.784 14.232\\\">Snap</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 278.9242 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 281.6078 424.4656)\\\" x=\\\"0 5.776 10.664\\\">RTO</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 298.4945 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 301.1781 424.4656)\\\" x=\\\"0 4.448 8.896\\\">LLC</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 315.8539 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 318.5375 424.4656)\\\" x=\\\"0 5.336 7.56 9.784 14.232 18.68 20.904 22.728 27.176 31.624\\\">Attention:</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 352.3851 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 355.0687 424.4656)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 19.16 23.608 25.832 27.656 32.104 36.552\\\">Arbitration.</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.8461 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 396.5297 424.4656)\\\" x=\\\"0 5.336 7.56 13.784\\\">P.O.</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 412.5336 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 415.2172 424.4656)\\\" x=\\\"0 5.336 9.784\\\">Box</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 429.0023 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 431.6859 424.4656)\\\" x=\\\"0 4.448 8.896 13.344 17.792 22.24\\\">26561,</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.1547 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 458.8383 424.4656)\\\" x=\\\"0 5.336 9.784 11.608\\\">Salt</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 472.6703 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 475.3539 424.4656)\\\" x=\\\"0 4.448 8.896 12.896\\\">Lake</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 492.7015 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 495.3851 424.4656)\\\" x=\\\"0 5.776 7.6 9.824 13.824\\\">City,</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 511.432 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 514.1156 424.4656)\\\" x=\\\"0 5.776\\\">UT</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 524.7797 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 527.4633 424.4656)\\\" x=\\\"0 4.448 8.896 13.344 17.792 22.24\\\">84126.</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.932 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 554.6156 424.4656)\\\" x=\\\"0 5.336 9.784\\\">You</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 415.4109)\\\" x=\\\"0 4 8.448 12.896 15.024 19.024 23.472 25.296 27.12 29.248 33.696 37.696 39.824 44.272 46.936 49.064 53.512 57.512 61.96 64.088 68.088 72.536 75.2 77.424 79.248 81.472 83.296 87.744 92.192 94.32 100.984 105.432 107.256 109.08 111.208 113.432 117.88 120.008 124.008 128.456 132.904 135.128 136.952 139.616 146.28 148.408 151.072 155.52 159.52 163.968 165.792 170.24 172.464\\\">can call us or use certified mail to confirm receipt.</text></g><clipPath id=\\\"clip4-28\\\"><path d=\\\"M 35 373 L 130 373 L 130 413 L 35 413 L 35 373 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-28)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 412.7313 L 129.35 412.7313 L 129.35 373.5125 L 35.45 373.5125 L 35.45 412.7313 z \\\"/><path clip-path=\\\"url(#clip4-28)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 410.7313 L 125.25 410.7313 L 125.25 392.6219 L 39.55 392.6219 L 39.55 410.7313 z \\\"/><path clip-path=\\\"url(#clip4-28)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 41.9508 410.7313 L 122.9508 410.7313 L 122.9508 400.7313 L 41.9508 400.7313 L 41.9508 410.7313 z \\\"/><g clip-path=\\\"url(#clip4-28)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 41.9508 403.3562)\\\" x=\\\"0 5.776 10.224 14.672 16.8 20.8 27.464 31.912 33.736 35.56 38.224 42.224 44.048 48.496 50.32 56.984 60.984 63.112 67.112 71.56 76.008 78.672\\\">Can small-claims court</text></g><path clip-path=\\\"url(#clip4-28)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 43.3219 401.6766 L 122.3219 401.6766 L 122.3219 391.6766 L 43.3219 391.6766 L 43.3219 401.6766 z \\\"/><g clip-path=\\\"url(#clip4-28)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 43.3219 394.3016)\\\" x=\\\"0 4 8.448 10.272 14.272 18.72 20.848 24.848 29.296 35.96 40.408 42.536 48.312 50.136 54.136 58.584 63.032 65.256 69.704 73.704\\\">solve s* D E M O *s?</text></g><clipPath id=\\\"clip4-29\\\"><path d=\\\"M 129 373 L 206 373 L 206 413 L 129 413 L 129 373 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-29)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 159.5461 403.3562)\\\" x=\\\"0 5.336 9.784 13.784\\\">Yes.</text></g><clipPath id=\\\"clip4-30\\\"><path d=\\\"M 205 373 L 573 373 L 573 413 L 205 413 L 205 373 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 403.3562)\\\" x=\\\"0 5.3359 9.7852 13.7852\\\">Each</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 228.0844 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 229.9094 403.3562)\\\" x=\\\"0 4.4492 8.8984 11.5625 13.7851\\\">party</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.6945 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 249.5195 403.3562)\\\" x=\\\"0 4.4492 8.8984\\\">has</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.418 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 264.243 403.3562)\\\" x=\\\"0 2.2227 6.6719\\\">the</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.3641 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 277.1891 403.3562)\\\" x=\\\"0 2.6641 4.4883 8.9375 13.3867\\\">right</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 292.7984 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 294.6234 403.3562)\\\" x=\\\"0 2.2227\\\">to</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 301.2953 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 303.1203 403.3562)\\\" x=\\\"0 4.4492 7.1133 11.5625 13.3867 15.6094 18.2734 22.7227 24.9453 29.3945\\\">arbitrate,</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 334.7375 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 336.5625 403.3562)\\\" x=\\\"0 4.4492\\\">or</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 343.6758 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 345.5008 403.3562)\\\" x=\\\"0 2.2227\\\">to</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 352.1727 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 353.9976 403.3562)\\\" x=\\\"0 4.4492\\\">go</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 362.8961 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 364.7211 403.3562)\\\" x=\\\"0 2.2227\\\">to</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.393 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 373.218 403.3562)\\\" x=\\\"0 4 10.6641 15.1133 16.9375 18.7617 21.4258 25.4258 27.25 31.6992 33.5234 40.1875\\\">small-claims</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 417.4055 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 419.2305 403.3562)\\\" x=\\\"0 4 8.4492 12.8984 15.5625\\\">court</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 437.0156 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 438.8406 403.3562)\\\" x=\\\"0 1.8242\\\">if</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 442.8875 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 444.7125 403.3562)\\\" x=\\\"0 2.2227 6.6719\\\">the</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 455.8336 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 457.6586 403.3562)\\\" x=\\\"0 4 10.6641 15.1133 16.9375 18.7617 21.4258 25.4258 27.25 31.6992 33.5234 40.1875\\\">small-claims</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.8461 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 503.6711 403.3562)\\\" x=\\\"0 4 8.4492 12.8984 15.5625\\\">court</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.4562 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 523.2812 403.3562)\\\" x=\\\"0 4.4492 8.8984\\\">has</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 536.1797 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 538.0047 403.3562)\\\" x=\\\"0 2.2227 6.6719\\\">the</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 394.3016)\\\" x=\\\"0 4.4492 8.8984 14.6758 19.125\\\">power</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.639 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 233.464 394.3016)\\\" x=\\\"0 2.2227\\\">to</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 240.1359 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 241.9609 394.3016)\\\" x=\\\"0 4.4492 8.8984 13.3477\\\">hear</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.9726 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 260.0976 394.3016)\\\" x=\\\"0 2.2226 6.6719\\\">the</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 271.2187 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 273.3437 394.3016)\\\" x=\\\"0 5.7773 7.6016 11.6016 16.0508 20.5 22.7227 27.1719\\\">Dispute.</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.7383 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 304.8633 394.3016)\\\" x=\\\"0 5.3359 8 12.4492 14.2734 16.4961 19.1602 23.6094 25.832 27.6562 32.1055\\\">Arbitration</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 341.418 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 343.543 394.3016)\\\" x=\\\"0 5.7773 7.6016 9.4258\\\">will</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 354.793 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 356.918 394.3016)\\\" x=\\\"0 4 8.4492 10.2734 14.2734\\\">solve</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.6406 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 377.7656 394.3016)\\\" x=\\\"0 4.4492 6.2734\\\">all</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 385.8633 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 387.9883 394.3016)\\\" x=\\\"0 5.7774 7.6016 11.6016 16.0508 20.5 22.7227 27.1719\\\">Disputes</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.1601 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 421.2851 394.3016)\\\" x=\\\"0 2.2227 6.6719 11.1211\\\">that</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.6289 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 436.7539 394.3016)\\\" x=\\\"0 2.2226 6.6719\\\">the</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.875 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 450 394.3016)\\\" x=\\\"0 4 10.6641 15.1133 16.9375 18.7617 21.4258 25.4258 27.25 31.6992 33.5234 40.1875\\\">small-claims</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 494.1875 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 496.3125 394.3016)\\\" x=\\\"0 4 8.4492 12.8984 15.5625\\\">court</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 514.0976 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 516.2226 394.3016)\\\" x=\\\"0 4.4492 8.8984 13.3477\\\">does</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 533.5703 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 535.6953 394.3016)\\\" x=\\\"0 4.4492 8.8984\\\">not</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 546.8164 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 548.9414 394.3016)\\\" x=\\\"0 4.4492 8.8984 12.8984\\\">have</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 385.2469)\\\" x=\\\"0 2.2227 6.6719\\\">the</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 220.9711 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 223.0961 385.2469)\\\" x=\\\"0 4.4492 8.8984 14.6758 19.125\\\">power</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 244.8852 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 247.0101 385.2469)\\\" x=\\\"0 2.2227\\\">to</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 253.682 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 255.807 385.2469)\\\" x=\\\"0 4.4492 8.8984 13.3477 16.0117\\\">hear.</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 274.0414 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 276.1664 385.2469)\\\" x=\\\"0 2.2226\\\">If</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.6117 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 282.7367 385.2469)\\\" x=\\\"0 2.2227 6.6719 11.1211 13.7852\\\">there</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 300.9711 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 303.0961 385.2469)\\\" x=\\\"0 1.8242\\\">is</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.9203 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 311.0453 385.2469)\\\" x=\\\"0 4.4492\\\">an</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.9437 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 322.0687 385.2469)\\\" x=\\\"0 4.4492 8.8984 13.3477 17.7969 22.2461\\\">appeal</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 346.139 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 348.264 385.2469)\\\" x=\\\"0 2.2227 4.8867 9.3359\\\">from</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 364.264 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 366.389 385.2469)\\\" x=\\\"0 4 10.6641 15.1133 16.9375 18.7617 21.4258 25.4258 27.25 31.6992 33.5234 40.1875\\\">small-claims</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 410.5765 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 412.7015 385.2469)\\\" x=\\\"0 4 8.4492 12.8984 15.5625 17.7852\\\">court,</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 432.7094 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 434.8344 385.2469)\\\" x=\\\"0 4.4492\\\">or</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 441.9477 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 444.0727 385.2469)\\\" x=\\\"0 1.8242\\\">if</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 448.1195 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 450.2445 385.2469)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.6937 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 456.8187 385.2469)\\\" x=\\\"0 5.7773 7.6016 11.6016 16.0508 20.5 22.7227\\\">Dispute</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 483.9906 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 486.1156 385.2469)\\\" x=\\\"0 4 8.4492 12.8984 17.3476 21.7969 26.2461\\\">changes</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 516.3617 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 518.4867 385.2469)\\\" x=\\\"0 4\\\">so</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.9359 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 529.0609 385.2469)\\\" x=\\\"0 2.2227 6.6719 11.1211\\\">that</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 542.4047 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 544.5297 385.2469)\\\" x=\\\"0 2.2227 6.6719\\\">the</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 376.1922)\\\" x=\\\"0 4 10.6641 15.1133 16.9375 18.7617 21.4258 25.4258 27.25 31.6992 33.5234 40.1875\\\">small-claims</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 254.0375 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 256.1625 376.1922)\\\" x=\\\"0 4 8.4492 12.8984 15.5625\\\">court</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 273.9477 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 276.0727 376.1922)\\\" x=\\\"0 1.8242 6.2734 10.2734 14.7226\\\">loses</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 294.7953 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 296.9203 376.1922)\\\" x=\\\"0 2.2227 6.6719\\\">the</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.0414 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 310.1664 376.1922)\\\" x=\\\"0 4.4492 8.8984 14.6758 19.125\\\">power</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 331.9555 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 333.7805 376.1922)\\\" x=\\\"0 2.2227\\\">to</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 340.4523 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 342.2773 376.1922)\\\" x=\\\"0 4.4492 8.8984 13.3477\\\">hear</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 358.289 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 360.1141 376.1922)\\\" x=\\\"0 1.8242 4.0469\\\">it,</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 366.3836 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 368.2086 376.1922)\\\" x=\\\"0 2.2226 6.6719 11.1211\\\">then</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.7789 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 385.6039 376.1922)\\\" x=\\\"0 2.2227 6.6719\\\">the</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 396.725 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 398.55 376.1922)\\\" x=\\\"0 5.7773 7.6016 11.6016 16.0508 20.5 22.7227\\\">Dispute</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 425.7219 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 427.5469 376.1922)\\\" x=\\\"0 5.7773 7.6016 9.4258\\\">will</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 438.7969 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 440.6219 376.1922)\\\" x=\\\"0 4.4492 8.8984 10.7227\\\">only</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 455.3445 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 457.1695 376.1922)\\\" x=\\\"0 4.4492\\\">be</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.068 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 467.893 376.1922)\\\" x=\\\"0 4.4492 8.8984 13.3477 16.0117\\\">heard</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 488.3539 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 490.1789 376.1922)\\\" x=\\\"0 4.4492\\\">by</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 498.6281 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 500.4531 376.1922)\\\" x=\\\"0 4.4492\\\">an</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.3516 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 511.1766 376.1922)\\\" x=\\\"0 5.3359 8 12.4492 14.2734 16.4961 20.9453 23.6094\\\">Arbiter.</text></g><clipPath id=\\\"clip4-31\\\"><path d=\\\"M 35 343 L 130 343 L 130 374 L 35 374 L 35 343 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-31)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 373.5125 L 129.35 373.5125 L 129.35 343.3484 L 35.45 343.3484 L 35.45 373.5125 z \\\"/><path clip-path=\\\"url(#clip4-31)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 371.5125 L 125.25 371.5125 L 125.25 362.4578 L 39.55 362.4578 L 39.55 371.5125 z \\\"/><path clip-path=\\\"url(#clip4-31)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 41.5875 371.5125 L 123.5875 371.5125 L 123.5875 361.5125 L 41.5875 361.5125 L 41.5875 371.5125 z \\\"/><g clip-path=\\\"url(#clip4-31)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 41.5875 364.1375)\\\" x=\\\"0 5.776 10.224 12.352 16.8 19.024 23.472 27.92 30.584 32.712 37.16 41.608 43.832 45.656 50.104 54.552 58.552 60.68 65.128 69.128 70.952 74.952 77.176\\\">Do other options exist?</text></g><clipPath id=\\\"clip4-32\\\"><path d=\\\"M 129 343 L 206 343 L 206 374 L 129 374 L 129 343 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-32)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 159.5461 364.1375)\\\" x=\\\"0 5.336 9.784 13.784\\\">Yes.</text></g><clipPath id=\\\"clip4-33\\\"><path d=\\\"M 205 343 L 573 343 L 573 374 L 205 374 L 205 343 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 364.1375)\\\" x=\\\"0 5.336 9.784 12.008\\\">Both</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 226.307 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 228.8021 364.1375)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056\\\">parties</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 252.8607 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 255.3557 364.1375)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 270.469 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 272.964 364.1375)\\\" x=\\\"0 4.448 8.448\\\">use</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 285.8625 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 288.3575 364.1375)\\\" x=\\\"0 1.824 6.272 12.048 14.272 18.72\\\">lawful</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.9044 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 311.3995 364.1375)\\\" x=\\\"0 4 8.448 10.272 12.496 15.16 19.608 24.056 25.88\\\">self-help</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 341.7315 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 344.2265 364.1375)\\\" x=\\\"0 2.664 7.112 13.776 18.224 22.672 24.496 28.944 32.944\\\">remedies.</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 379.3984 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 381.8935 364.1375)\\\" x=\\\"0 4.888 9.336 11.16\\\">This</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 397.0536 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 399.5487 364.1375)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44\\\">includes</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 428.994 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 431.489 364.1375)\\\" x=\\\"0 4 8.448 10.672 13.336 17.784 20.008\\\">set-off</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 453.7195 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 456.2146 364.1375)\\\" x=\\\"0 4.448\\\">or</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 463.3279 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 465.8229 364.1375)\\\" x=\\\"0 2.664 7.112 11.56 16.008 20.008 24.008 28.456 32.456 36.456 38.28 42.728\\\">repossession</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 513.0065 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 515.5015 364.1375)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 528.8492 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 531.3443 364.1375)\\\" x=\\\"0 4 8.448 10.272\\\">sale</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 546.0669 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 548.562 364.1375)\\\" x=\\\"0 4.448\\\">of</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 555.2339 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 557.7289 364.1375)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 355.0828)\\\" x=\\\"0 5.336 8 12.448 16.896 21.344 24.008 26.232 30.232\\\">Property.</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 242.307 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 245.9017 355.0828)\\\" x=\\\"0 5.336 9.784 12.008\\\">Both</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.3587 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 265.9534 355.0828)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056\\\">parties</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.0119 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 293.6066 355.0828)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.7199 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 312.3145 355.0828)\\\" x=\\\"0 4 8.448 12.896\\\">seek</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.213 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 332.8076 355.0828)\\\" x=\\\"0 2.664 7.112 13.776 18.224 22.672 24.496 28.944\\\">remedies</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 365.7568 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 369.3515 355.0828)\\\" x=\\\"0 5.776 10.224 12.048 16.048\\\">which</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 389.8515 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 393.4461 355.0828)\\\" x=\\\"0 4.448 8.896 13.344 14.872\\\">don&apos;t</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 410.5438 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 414.1384 355.0828)\\\" x=\\\"0 4 5.824 10.272 12.096\\\">claim</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 432.9002 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 436.4948 355.0828)\\\" x=\\\"0 6.664 11.112 15.56 20.008\\\">money</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 460.5065 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 464.1012 355.0828)\\\" x=\\\"0 4.448 8.896 15.56 20.008 24.456 28.904 32.904\\\">damages.</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.234 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 502.8287 355.0828)\\\" x=\\\"0 4.888 9.336 11.16\\\">This</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 517.9888 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 521.5835 355.0828)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44\\\">includes</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.0288 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 554.6234 355.0828)\\\" x=\\\"0 4.448 7.112 11.56\\\">pre-</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 346.0281)\\\" x=\\\"0 1.824 6.272 10.72 15.168 21.832 26.28 30.728 32.952 35.08 39.08 43.528 45.352 49.352 53.8 56.464 60.912 63.136 65.264 67.088 71.536 73.36 77.808 82.256 86.256 88.48 90.304 94.752 99.2 103.2 105.424 107.552 112 114.664 116.792 121.24 125.688 130.136 131.96 134.184 138.632 143.08 144.904 149.352 151.48 154.144 158.592 160.416 162.24 166.688 168.912\\\">judgment seizure, injunctions, or equitable relief.</text></g><clipPath id=\\\"clip4-34\\\"><path d=\\\"M 35 295 L 130 295 L 130 344 L 35 344 L 35 295 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-34)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 343.3484 L 129.35 343.3484 L 129.35 295.075 L 35.45 295.075 L 35.45 343.3484 z \\\"/><path clip-path=\\\"url(#clip4-34)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 341.3484 L 125.25 341.3484 L 125.25 323.2391 L 39.55 323.2391 L 39.55 341.3484 z \\\"/><path clip-path=\\\"url(#clip4-34)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 55.0406 341.3484 L 110.0406 341.3484 L 110.0406 331.3484 L 55.0406 331.3484 L 55.0406 341.3484 z \\\"/><g clip-path=\\\"url(#clip4-34)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 55.0406 333.9734)\\\" x=\\\"0 7.552 9.376 11.2 13.024 15.152 17.376 21.824 23.648 27.648 29.776 35.552 37.376 41.824 46.272 50.272\\\">Will this Clause</text></g><path clip-path=\\\"url(#clip4-34)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 47.3375 332.2938 L 118.3375 332.2938 L 118.3375 322.2938 L 47.3375 322.2938 L 47.3375 332.2938 z \\\"/><g clip-path=\\\"url(#clip4-34)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.3375 324.9187)\\\" x=\\\"0 4 8.448 12.896 15.12 16.944 21.392 25.84 30.288 32.416 34.64 39.088 41.216 45.664 50.112 54.112 58.56 61.224 65.672\\\">continue to govern?</text></g><clipPath id=\\\"clip4-35\\\"><path d=\\\"M 129 295 L 206 295 L 206 344 L 129 344 L 129 295 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-35)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.8976 333.9734)\\\" x=\\\"0 5.336 9.784 13.784 16.008 18.136 22.584 27.032 28.856 33.304 37.304\\\">Yes, unless</text></g><g clip-path=\\\"url(#clip4-35)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 135.7785 324.9187)\\\" x=\\\"0 4.448 6.672 11.12 15.568 18.232 24.008 25.832 29.832 34.28 36.408 40.856 45.304 47.968 52.416 56.864 61.312\\\">otherwise agreed.</text></g><clipPath id=\\\"clip4-36\\\"><path d=\\\"M 205 295 L 573 295 L 573 344 L 205 344 L 205 295 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 333.9734)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 223.6351 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 227.574 333.9734)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496\\\">Clause</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 252.5233 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 256.4622 333.9734)\\\" x=\\\"0 4 6.224 10.672 14.672\\\">stays</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.134 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 279.0729 333.9734)\\\" x=\\\"0 4.448 6.672 8.896 13.344 17.344 19.568 21.392 25.392 29.84\\\">effective,</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 311.1354 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 315.0743 333.9734)\\\" x=\\\"0 4.448 8.896 10.72 15.168 19.168\\\">unless</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.2462 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 342.1851 333.9734)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 353.3062 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 357.2451 333.9734)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056\\\">parties</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 381.3037 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 385.2426 333.9734)\\\" x=\\\"0 4 5.824 10.272\\\">sign</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 399.9652 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 403.9041 333.9734)\\\" x=\\\"0 4.448\\\">an</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 412.8026 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 416.7415 333.9734)\\\" x=\\\"0 4.448 8.896 11.56 16.008 20.456 27.12 31.568 36.016\\\">agreement</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.9875 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 458.9264 333.9734)\\\" x=\\\"0 4 6.224 10.672 12.896 14.72 19.168\\\">stating</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 482.5436 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 486.4825 333.9734)\\\" x=\\\"0 1.824\\\">it</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 490.5294 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 494.4683 333.9734)\\\" x=\\\"0 4.448 8.896 13.344 17.344 21.792 23.32 25.544\\\">doesn&apos;t.</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 522.2378 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 526.1767 333.9734)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 539.9619 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 543.9008 333.9734)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496\\\">Clause</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 324.9187)\\\" x=\\\"0 4.448 8.896 12.896 17.344 20.008 24.456\\\">governs</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.3109 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 241.2057 324.9187)\\\" x=\\\"0 1.824\\\">if</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.2526 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 248.1473 324.9187)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 261.0458 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 263.9405 324.9187)\\\" x=\\\"0 2.664 7.112 11.112 15.112 16.936 21.384\\\">rescind</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 289.7765 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 292.6712 324.9187)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 303.7923 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 306.6871 324.9187)\\\" x=\\\"0 2.224 4.888 9.336 13.784 17.784 22.232 26.232 28.456 30.28 34.728 39.176\\\">transaction.</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.0894 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 350.9842 324.9187)\\\" x=\\\"0 2.224\\\">It</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.4295 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 358.3243 324.9187)\\\" x=\\\"0 4.448 8.896 12.896 17.344 20.008 24.456\\\">governs</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 386.7852 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 389.68 324.9187)\\\" x=\\\"0 1.824\\\">if</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.7268 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 396.6216 324.9187)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 409.52 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 412.4148 324.9187)\\\" x=\\\"0 4.448 8.896 11.12 15.568 20.016 21.84 24.064\\\">default,</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 438.7038 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 441.5986 324.9187)\\\" x=\\\"0 2.664 7.112 11.56 16.008 21.784\\\">renew,</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 465.6103 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 468.5051 324.9187)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456 24.456\\\">prepay,</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 495.1887 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 498.0834 324.9187)\\\" x=\\\"0 4.448\\\">or</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 505.1967 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 508.0915 324.9187)\\\" x=\\\"0 4.448 8.896 12.896\\\">pay.</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 523.2126 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 526.1073 324.9187)\\\" x=\\\"0 2.224\\\">It</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 530.5527 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 533.4474 324.9187)\\\" x=\\\"0 4.448 8.896 12.896 17.344 20.008 24.456\\\">governs</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 561.9084 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 564.8031 324.9187)\\\" x=\\\"0 1.824\\\">if</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 315.8641)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 222.7484 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 227.0199 315.8641)\\\" x=\\\"0 2.224 6.672 9.336 16 17.824 22.272 26.72 28.944 33.392\\\">terminate,</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.6371 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 266.9086 315.8641)\\\" x=\\\"0 1.824\\\">if</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 270.9555 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 275.2269 315.8641)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 288.1254 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 292.3969 315.8641)\\\" x=\\\"0 2.664 7.112 8.936 13.384 17.384 19.608 24.056 26.28 30.728\\\">reinstate,</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 325.35 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 329.6215 315.8641)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 342.9691 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 347.2406 315.8641)\\\" x=\\\"0 1.824\\\">if</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.2875 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 355.559 315.8641)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 368.4574 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 372.7289 315.8641)\\\" x=\\\"0 2.664 7.112 9.336 13.784 16.448\\\">return</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.6273 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 397.8988 315.8641)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 409.0199 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 413.2914 315.8641)\\\" x=\\\"0 5.336 8 12.448 16.896 21.344 24.008 26.232 30.232\\\">Property.</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 445.7484 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 450.0199 315.8641)\\\" x=\\\"0 2.224\\\">It</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.4652 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 458.7367 315.8641)\\\" x=\\\"0 4.448 8.896 12.896 17.344 20.008 24.456\\\">governs</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 487.1977 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 491.4691 315.8641)\\\" x=\\\"0 1.824\\\">if</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 495.516 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 499.7875 315.8641)\\\" x=\\\"0 4 8.448 12.896\\\">your</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 515.35 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 519.6215 315.8641)\\\" x=\\\"0 5.336 9.784 12.448 16.896 21.344 28.008 32.456 36.904\\\">Agreement</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 558.7543 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 563.0258 315.8641)\\\" x=\\\"0 1.824\\\">is</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 306.8094)\\\" x=\\\"0 1.824 8.488 12.936 17.384 21.384 23.608 28.056\\\">impacted</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 242.3578 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 248.4078 306.8094)\\\" x=\\\"0 4.448\\\">by</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.857 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 262.907 306.8094)\\\" x=\\\"0 4.448 8.896 13.344 17.344 20.008 24.456 28.904 31.128 35.128 39.128\\\">bankruptcy.</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 304.2625 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 310.3125 306.8094)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 324.0976 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 330.1477 306.8094)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496\\\">Clause</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.0969 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 361.1469 306.8094)\\\" x=\\\"0 2.664 7.112 13.776 18.224 20.048 24.496\\\">remains</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 389.6469 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 395.6969 306.8094)\\\" x=\\\"0 4.448 6.672 8.896 13.344 17.344 19.568 21.392 25.392 29.84\\\">effective,</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 427.7594 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 433.8094 306.8094)\\\" x=\\\"0 4.448 8.896 12.896 17.344 19.168 21.392\\\">despite</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 459.6531 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 465.7031 306.8094)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 470.1523 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 476.2023 306.8094)\\\" x=\\\"0 2.224 4.888 9.336 13.784 17.784 22.232 26.232 28.456 30.28 34.728 39.176 40.704\\\">transaction&apos;s</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 520.9094 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 526.9594 306.8094)\\\" x=\\\"0 2.224 6.672 9.336 16 17.824 22.272 26.72 28.944 30.768 35.216 39.664\\\">termination,</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 297.7547)\\\" x=\\\"0 4.448 11.112 15.56 20.008 24.456 31.12 35.568 40.016 42.24 44.464 46.592 51.04 55.04 59.488 61.312 63.976 68.424 70.648 72.472 76.92 81.368 83.592 85.72 90.168 92.832 94.96 99.408 103.856 106.52 108.744 113.192 115.856 122.52 126.968 131.416 135.416 139.864\\\">amendment, expiration, or performance.</text></g><clipPath id=\\\"clip4-37\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 770.2 L 129.85 770.2 L 129.85 769.2 L 34.95 769.2 L 34.95 770.2 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 769.2 L 35.95 769.2 L 35.95 749.0906 L 34.95 749.0906 L 34.95 769.2 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 770.2 L 206.25 770.2 L 206.25 769.2 L 129.85 769.2 L 129.85 770.2 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 769.2 L 129.85 769.2 L 129.85 749.0906 L 128.85 749.0906 L 128.85 769.2 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 770.2 L 573.45 770.2 L 573.45 769.2 L 206.25 769.2 L 206.25 770.2 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 769.2 L 573.45 769.2 L 573.45 749.0906 L 572.45 749.0906 L 572.45 769.2 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 769.2 L 206.25 769.2 L 206.25 749.0906 L 205.25 749.0906 L 205.25 769.2 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 749.0906 L 129.85 749.0906 L 129.85 748.0906 L 34.95 748.0906 L 34.95 749.0906 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 748.0906 L 35.95 748.0906 L 35.95 727.9813 L 34.95 727.9813 L 34.95 748.0906 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 749.0906 L 206.25 749.0906 L 206.25 748.0906 L 129.85 748.0906 L 129.85 749.0906 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 748.0906 L 129.85 748.0906 L 129.85 727.9813 L 128.85 727.9813 L 128.85 748.0906 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 749.0906 L 573.45 749.0906 L 573.45 748.0906 L 206.25 748.0906 L 206.25 749.0906 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 748.0906 L 573.45 748.0906 L 573.45 727.9813 L 572.45 727.9813 L 572.45 748.0906 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 748.0906 L 206.25 748.0906 L 206.25 727.9813 L 205.25 727.9813 L 205.25 748.0906 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 727.9813 L 129.85 727.9813 L 129.85 726.9813 L 34.95 726.9813 L 34.95 727.9813 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 726.9813 L 35.95 726.9813 L 35.95 706.8719 L 34.95 706.8719 L 34.95 726.9813 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 727.9813 L 206.25 727.9813 L 206.25 726.9813 L 129.85 726.9813 L 129.85 727.9813 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 726.9813 L 129.85 726.9813 L 129.85 706.8719 L 128.85 706.8719 L 128.85 726.9813 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 727.9813 L 573.45 727.9813 L 573.45 726.9813 L 206.25 726.9813 L 206.25 727.9813 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 726.9813 L 573.45 726.9813 L 573.45 706.8719 L 572.45 706.8719 L 572.45 726.9813 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 726.9813 L 206.25 726.9813 L 206.25 706.8719 L 205.25 706.8719 L 205.25 726.9813 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 706.8719 L 129.85 706.8719 L 129.85 705.8719 L 34.95 705.8719 L 34.95 706.8719 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 705.8719 L 35.95 705.8719 L 35.95 631.4344 L 34.95 631.4344 L 34.95 705.8719 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 706.8719 L 206.25 706.8719 L 206.25 705.8719 L 129.85 705.8719 L 129.85 706.8719 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 705.8719 L 129.85 705.8719 L 129.85 631.4344 L 128.85 631.4344 L 128.85 705.8719 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 706.8719 L 573.45 706.8719 L 573.45 705.8719 L 206.25 705.8719 L 206.25 706.8719 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 705.8719 L 573.45 705.8719 L 573.45 631.4344 L 572.45 631.4344 L 572.45 705.8719 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 705.8719 L 206.25 705.8719 L 206.25 631.4344 L 205.25 631.4344 L 205.25 705.8719 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 631.4344 L 129.85 631.4344 L 129.85 630.4344 L 34.95 630.4344 L 34.95 631.4344 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 630.4344 L 35.95 630.4344 L 35.95 579.1609 L 34.95 579.1609 L 34.95 630.4344 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 631.4344 L 206.25 631.4344 L 206.25 630.4344 L 129.85 630.4344 L 129.85 631.4344 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 630.4344 L 129.85 630.4344 L 129.85 579.1609 L 128.85 579.1609 L 128.85 630.4344 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 631.4344 L 573.45 631.4344 L 573.45 630.4344 L 206.25 630.4344 L 206.25 631.4344 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 630.4344 L 573.45 630.4344 L 573.45 579.1609 L 572.45 579.1609 L 572.45 630.4344 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 630.4344 L 206.25 630.4344 L 206.25 579.1609 L 205.25 579.1609 L 205.25 630.4344 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 579.1609 L 129.85 579.1609 L 129.85 578.1609 L 34.95 578.1609 L 34.95 579.1609 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 578.1609 L 35.95 578.1609 L 35.95 530.8875 L 34.95 530.8875 L 34.95 578.1609 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 579.1609 L 206.25 579.1609 L 206.25 578.1609 L 129.85 578.1609 L 129.85 579.1609 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 578.1609 L 129.85 578.1609 L 129.85 530.8875 L 128.85 530.8875 L 128.85 578.1609 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 579.1609 L 573.45 579.1609 L 573.45 578.1609 L 206.25 578.1609 L 206.25 579.1609 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 578.1609 L 573.45 578.1609 L 573.45 530.8875 L 572.45 530.8875 L 572.45 578.1609 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 578.1609 L 206.25 578.1609 L 206.25 530.8875 L 205.25 530.8875 L 205.25 578.1609 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 530.8875 L 129.85 530.8875 L 129.85 529.8875 L 34.95 529.8875 L 34.95 530.8875 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 529.8875 L 35.95 529.8875 L 35.95 491.6688 L 34.95 491.6688 L 34.95 529.8875 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 530.8875 L 206.25 530.8875 L 206.25 529.8875 L 129.85 529.8875 L 129.85 530.8875 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 529.8875 L 129.85 529.8875 L 129.85 491.6688 L 128.85 491.6688 L 128.85 529.8875 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 530.8875 L 573.45 530.8875 L 573.45 529.8875 L 206.25 529.8875 L 206.25 530.8875 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 529.8875 L 573.45 529.8875 L 573.45 491.6688 L 572.45 491.6688 L 572.45 529.8875 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 529.8875 L 206.25 529.8875 L 206.25 491.6688 L 205.25 491.6688 L 205.25 529.8875 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 491.6688 L 129.85 491.6688 L 129.85 490.6688 L 34.95 490.6688 L 34.95 491.6688 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 490.6688 L 35.95 490.6688 L 35.95 434.3406 L 34.95 434.3406 L 34.95 490.6688 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 491.6688 L 206.25 491.6688 L 206.25 490.6688 L 129.85 490.6688 L 129.85 491.6688 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 490.6688 L 129.85 490.6688 L 129.85 434.3406 L 128.85 434.3406 L 128.85 490.6688 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 491.6688 L 573.45 491.6688 L 573.45 490.6688 L 206.25 490.6688 L 206.25 491.6688 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 490.6688 L 573.45 490.6688 L 573.45 434.3406 L 572.45 434.3406 L 572.45 490.6688 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 490.6688 L 206.25 490.6688 L 206.25 434.3406 L 205.25 434.3406 L 205.25 490.6688 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 434.3406 L 129.85 434.3406 L 129.85 433.3406 L 34.95 433.3406 L 34.95 434.3406 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 433.3406 L 35.95 433.3406 L 35.95 413.2313 L 34.95 413.2313 L 34.95 433.3406 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 434.3406 L 206.25 434.3406 L 206.25 433.3406 L 129.85 433.3406 L 129.85 434.3406 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 433.3406 L 129.85 433.3406 L 129.85 413.2313 L 128.85 413.2313 L 128.85 433.3406 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 434.3406 L 573.45 434.3406 L 573.45 433.3406 L 206.25 433.3406 L 206.25 434.3406 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 433.3406 L 573.45 433.3406 L 573.45 413.2313 L 572.45 413.2313 L 572.45 433.3406 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 433.3406 L 206.25 433.3406 L 206.25 413.2313 L 205.25 413.2313 L 205.25 433.3406 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 413.2313 L 129.85 413.2313 L 129.85 412.2313 L 34.95 412.2313 L 34.95 413.2313 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 412.2313 L 35.95 412.2313 L 35.95 374.0125 L 34.95 374.0125 L 34.95 412.2313 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 413.2313 L 206.25 413.2313 L 206.25 412.2313 L 129.85 412.2313 L 129.85 413.2313 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 412.2313 L 129.85 412.2313 L 129.85 374.0125 L 128.85 374.0125 L 128.85 412.2313 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 413.2313 L 573.45 413.2313 L 573.45 412.2313 L 206.25 412.2313 L 206.25 413.2313 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 412.2313 L 573.45 412.2313 L 573.45 374.0125 L 572.45 374.0125 L 572.45 412.2313 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 412.2313 L 206.25 412.2313 L 206.25 374.0125 L 205.25 374.0125 L 205.25 412.2313 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 374.0125 L 129.85 374.0125 L 129.85 373.0125 L 34.95 373.0125 L 34.95 374.0125 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 373.0125 L 35.95 373.0125 L 35.95 343.8484 L 34.95 343.8484 L 34.95 373.0125 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 374.0125 L 206.25 374.0125 L 206.25 373.0125 L 129.85 373.0125 L 129.85 374.0125 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 373.0125 L 129.85 373.0125 L 129.85 343.8484 L 128.85 343.8484 L 128.85 373.0125 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 374.0125 L 573.45 374.0125 L 573.45 373.0125 L 206.25 373.0125 L 206.25 374.0125 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 373.0125 L 573.45 373.0125 L 573.45 343.8484 L 572.45 343.8484 L 572.45 373.0125 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 373.0125 L 206.25 373.0125 L 206.25 343.8484 L 205.25 343.8484 L 205.25 373.0125 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 343.8484 L 129.85 343.8484 L 129.85 342.8484 L 34.95 342.8484 L 34.95 343.8484 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 295.575 L 129.85 295.575 L 129.85 294.575 L 34.95 294.575 L 34.95 295.575 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 342.8484 L 35.95 342.8484 L 35.95 295.575 L 34.95 295.575 L 34.95 342.8484 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 343.8484 L 206.25 343.8484 L 206.25 342.8484 L 129.85 342.8484 L 129.85 343.8484 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 295.575 L 206.25 295.575 L 206.25 294.575 L 129.85 294.575 L 129.85 295.575 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 342.8484 L 129.85 342.8484 L 129.85 295.575 L 128.85 295.575 L 128.85 342.8484 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 343.8484 L 573.45 343.8484 L 573.45 342.8484 L 206.25 342.8484 L 206.25 343.8484 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 295.575 L 573.45 295.575 L 573.45 294.575 L 206.25 294.575 L 206.25 295.575 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 342.8484 L 573.45 342.8484 L 573.45 295.575 L 572.45 295.575 L 572.45 342.8484 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 342.8484 L 206.25 342.8484 L 206.25 295.575 L 205.25 295.575 L 205.25 342.8484 z \\\"/><g clip-path=\\\"url(#clip4-37)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 286.1385 282.8562)\\\" x=\\\"0 6.67 10 15.56 20.56 26.12 31.12\\\">Process</text></g><clipPath id=\\\"clip4-38\\\"><path d=\\\"M 35 214 L 128 214 L 128 272 L 35 272 L 35 214 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-38)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.2 271.652 L 127.6 271.652 L 127.6 214.3238 L 35.2 214.3238 L 35.2 271.652 z \\\"/><path clip-path=\\\"url(#clip4-38)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.3 269.652 L 123.5 269.652 L 123.5 251.5426 L 39.3 251.5426 L 39.3 269.652 z \\\"/><path clip-path=\\\"url(#clip4-38)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 44.7652 269.652 L 118.7652 269.652 L 118.7652 259.652 L 44.7652 259.652 L 44.7652 269.652 z \\\"/><g clip-path=\\\"url(#clip4-38)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 44.7652 262.277)\\\" x=\\\"0 5.776 10.224 16 18.128 22.576 27.024 31.472 35.472 37.6 42.048 44.712 49.16 50.984 53.208 55.872 60.32 62.544 64.368 68.816\\\">How does arbitration</text></g><path clip-path=\\\"url(#clip4-38)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 71.3961 260.5973 L 92.3961 260.5973 L 92.3961 250.5973 L 71.3961 250.5973 L 71.3961 260.5973 z \\\"/><g clip-path=\\\"url(#clip4-38)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 71.3961 253.2223)\\\" x=\\\"0 4 6.224 10.672 13.336 15.56\\\">start?</text></g><clipPath id=\\\"clip4-39\\\"><path d=\\\"M 127 214 L 206 214 L 206 272 L 127 272 L 127 214 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-39)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 137.6496 262.277)\\\" x=\\\"0 6.664 11.112 12.936 14.76 16.584 21.032 25.48 27.608 32.056 34.184 38.632 43.08 45.304 47.128 51.128 55.576\\\">Mailing a notice.</text></g><clipPath id=\\\"clip4-40\\\"><path d=\\\"M 205 214 L 574 214 L 574 272 L 205 272 L 205 214 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 262.277)\\\" x=\\\"0 5.336 7.16 9.384 13.832 18.28\\\">Either</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 230.5453 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 233.8153 262.277)\\\" x=\\\"0 4.448 8.896 11.56 13.784\\\">party</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 251.6004 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 254.8704 262.277)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 269.9837 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 273.2536 262.277)\\\" x=\\\"0 6.664 11.112 12.936\\\">mail</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 288.0154 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 291.2853 262.277)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.4064 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 305.6764 262.277)\\\" x=\\\"0 4.448 6.672 11.12 15.568\\\">other</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 323.9108 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 327.1807 262.277)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 331.6299 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 334.8999 262.277)\\\" x=\\\"0 2.664 7.112 11.56 16.008 20.456 24.456\\\">request</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 361.5835 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 364.8535 262.277)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.5253 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 374.7953 262.277)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 29.392\\\">arbitrate,</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 406.4125 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 409.6825 262.277)\\\" x=\\\"0 4.448 8.448 12.896\\\">even</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 427.0301 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 430.3001 262.277)\\\" x=\\\"0 1.824\\\">if</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.3469 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 437.6169 262.277)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 442.0661 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 445.3361 262.277)\\\" x=\\\"0 1.824 6.272 12.048 16.048 20.496 22.32\\\">lawsuit</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 469.883 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 473.1529 262.277)\\\" x=\\\"0 4.448 8.896\\\">has</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.0514 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 489.3213 262.277)\\\" x=\\\"0 4.448 8.896 13.344\\\">been</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 507.1182 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 510.3882 262.277)\\\" x=\\\"0 2.224 4.048 5.872 10.32 14.768\\\">filed.</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 527.3804 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 530.6503 262.277)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 544.4355 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 547.7055 262.277)\\\" x=\\\"0 4.448 8.896 11.12 12.944 16.944\\\">notice</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 253.2223)\\\" x=\\\"0 4 8.448 12.896 17.344 19.168\\\">should</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.2211 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 236.4008 253.2223)\\\" x=\\\"0 4.448 8.896 12.896 16.896 19.56 21.384 25.832\\\">describe</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 266.6859 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 269.8656 253.2223)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.9867 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 284.1664 253.2223)\\\" x=\\\"0 5.776 7.6 11.6 16.048 20.496 22.72\\\">Dispute</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 311.3383 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 314.518 253.2223)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 327.8656 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 331.0453 253.2223)\\\" x=\\\"0 2.664 7.112 8.936 10.76 15.208\\\">relief</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.4789 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 351.6586 253.2223)\\\" x=\\\"0 4 8.448 12.896 17.344 21.792 24.016\\\">sought.</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 377.9008 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 381.0805 253.2223)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 394.8656 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 398.0453 253.2223)\\\" x=\\\"0 2.664 7.112 11.112 15.56 17.384 21.384 23.208 27.656\\\">receiving</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.1547 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 433.3344 253.2223)\\\" x=\\\"0 4.448 8.896 11.56 13.784\\\">party</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 451.1195 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 454.2992 253.2223)\\\" x=\\\"0 6.664 11.112 15.112\\\">must</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 471.6351 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 474.8148 253.2223)\\\" x=\\\"0 6.664 11.112 12.936\\\">mail</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.5765 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 492.7562 253.2223)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 497.2055 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 500.3851 253.2223)\\\" x=\\\"0 2.664 7.112 11.112 15.56 20.008 24.456 28.456\\\">response</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 533.2953 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 536.475 253.2223)\\\" x=\\\"0 5.776 7.6 9.824 14.272 16.096\\\">within</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 557.0219 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 560.2015 253.2223)\\\" x=\\\"0 4.448\\\">20</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 244.1676)\\\" x=\\\"0 4.448 8.896 12.896 16.896\\\">days.</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 228.7211 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 231.1538 244.1676)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 235.5991 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 238.0317 244.1676)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 250.9302 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 253.3629 244.1676)\\\" x=\\\"0 6.664 11.112 12.936\\\">mail</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 268.1246 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 270.5573 244.1676)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.6783 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 284.111 244.1676)\\\" x=\\\"0 4.448 8.896 15.56 20.008 24.456 28.904\\\">demand,</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 315.2438 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 317.6765 244.1676)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 330.575 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 333.0076 244.1676)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.1209 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 350.5536 244.1676)\\\" x=\\\"0 4 8.448 12.896 17.344 21.344\\\">choose</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 376.3505 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 378.7831 244.1676)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 389.9042 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 392.3369 244.1676)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 26.768 31.216\\\">arbitration</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 428.0049 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 430.4375 244.1676)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456\\\">group.</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 453.1211 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 455.5538 244.1676)\\\" x=\\\"0 6.224 8.888\\\">Or,</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.6632 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 469.0959 244.1676)\\\" x=\\\"0 4 8.448 12.896\\\">your</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.6584 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 487.091 244.1676)\\\" x=\\\"0 4.448 8.896 15.56 20.008 24.456\\\">demand</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 516.0012 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 518.4339 244.1676)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 533.5471 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 535.9798 244.1676)\\\" x=\\\"0 4 6.224 10.672 12.896\\\">state</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.3236 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 555.7562 244.1676)\\\" x=\\\"0 2.224 6.672 11.12\\\">that</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 235.1129)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 222.4984 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 224.7098 235.1129)\\\" x=\\\"0 5.776 10.224 14.672\\\">want</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 241.6082 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 243.8196 235.1129)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 254.9407 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 257.152 235.1129)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056\\\">parties</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.2106 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 283.4219 235.1129)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.0938 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 292.3052 235.1129)\\\" x=\\\"0 4 8.448 12.896 17.344 21.344\\\">choose</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 318.1021 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 320.3134 235.1129)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 324.7626 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 326.974 235.1129)\\\" x=\\\"0 1.824 6.272 10.272 14.72\\\">local</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 343.5208 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 345.7322 235.1129)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608\\\">Arbiter.</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.5642 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 373.7756 235.1129)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 378.2209 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 380.4322 235.1129)\\\" x=\\\"0 2.664 7.112 8.936 13.384 15.608 20.056\\\">related</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 404.94 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 407.1514 235.1129)\\\" x=\\\"0 2.224 6.672 8.496 11.16\\\">third</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 422.7608 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 424.9721 235.1129)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056\\\">parties</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 449.0307 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 451.2421 235.1129)\\\" x=\\\"0 4.448\\\">or</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 458.3553 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 460.5667 235.1129)\\\" x=\\\"0 5.776\\\">we</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 470.7932 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 473.0046 235.1129)\\\" x=\\\"0 6.664 11.112 12.936\\\">mail</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 487.7663 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 489.9777 235.1129)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.0988 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 503.3101 235.1129)\\\" x=\\\"0 4.448 8.896 15.56 20.008 24.456 28.904\\\">demand,</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 534.4429 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 536.6543 235.1129)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.5527 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 551.7641 235.1129)\\\" x=\\\"0 6.664 11.112 15.112\\\">must</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 226.0582)\\\" x=\\\"0 2.664 7.112 11.112 15.56 20.008 24.456\\\">respond</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.5101 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 241.2739 226.0582)\\\" x=\\\"0 1.824\\\">in</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.5474 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 250.3112 226.0582)\\\" x=\\\"0 4.448\\\">20</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.2096 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 261.9734 226.0582)\\\" x=\\\"0 4.448 8.896 12.896 16.896\\\">days.</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.0945 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 283.8583 226.0582)\\\" x=\\\"0 5.336 9.784 14.232\\\">Your</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 300.7567 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 303.5205 226.0582)\\\" x=\\\"0 2.664 7.112 11.112 15.56 20.008 24.456 28.456\\\">response</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 336.4306 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 339.1944 226.0582)\\\" x=\\\"0 6.664 11.112 15.112\\\">must</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 356.5304 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 359.2942 226.0582)\\\" x=\\\"0 4 8.448 12.896 17.344 21.344\\\">choose</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 385.091 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 387.8548 226.0582)\\\" x=\\\"0 4.448\\\">an</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 396.7533 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 399.517 226.0582)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 26.768 31.216\\\">arbitration</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 435.185 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 437.9488 226.0582)\\\" x=\\\"0 4.448 7.112 11.56 16.008\\\">group</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 458.4097 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 461.1735 226.0582)\\\" x=\\\"0 4.448\\\">or</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.2868 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 471.0506 226.0582)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456 24.456\\\">propose</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.9607 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 502.7245 226.0582)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 507.1737 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 509.9375 226.0582)\\\" x=\\\"0 1.824 6.272 10.272 14.72\\\">local</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.4844 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 529.2482 226.0582)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608\\\">Arbiter.</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 555.0802 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 557.844 226.0582)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 562.2893 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 565.0531 226.0582)\\\" x=\\\"0 1.824\\\">it</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 217.0035)\\\" x=\\\"0 4.448 8.896 13.344 17.344 21.792 23.32 25.544 27.768 29.896 35.672 40.12 42.248 48.912 53.36 57.36 59.488 63.488 67.936 72.384 76.832 80.832 85.28 87.408 89.632 94.08 98.528 100.656 105.104 107.768 112.216 116.664 121.112\\\">doesn&apos;t, we may choose the group.</text></g><clipPath id=\\\"clip4-41\\\"><path d=\\\"M 35 137 L 128 137 L 128 215 L 35 215 L 35 137 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-41)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.2 214.3238 L 127.6 214.3238 L 127.6 137.8863 L 35.2 137.8863 L 35.2 214.3238 z \\\"/><path clip-path=\\\"url(#clip4-41)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.3 212.3238 L 123.5 212.3238 L 123.5 203.2691 L 39.3 203.2691 L 39.3 212.3238 z \\\"/><path clip-path=\\\"url(#clip4-41)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 53.191 212.3238 L 110.191 212.3238 L 110.191 202.3238 L 53.191 202.3238 L 53.191 212.3238 z \\\"/><g clip-path=\\\"url(#clip4-41)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 53.191 204.9488)\\\" x=\\\"0 7.552 12 16.448 18.576 23.024 25.688 30.136 31.96 34.184 36.848 41.296 43.52 47.968 51.968\\\">* D E M O *tes?</text></g><clipPath id=\\\"clip4-42\\\"><path d=\\\"M 127 137 L 206 137 L 206 215 L 127 215 L 127 137 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-42)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 134.4621 204.9488)\\\" x=\\\"0 5.336 10.672 16.008 18.232 20.36 24.36 29.696 36.36 41.696 43.92 46.048 50.496 53.16 55.288 59.736\\\">AAA, JAMS, or an</text></g><g clip-path=\\\"url(#clip4-42)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 140.1164 195.8941)\\\" x=\\\"0 4.448 8.896 11.56 16.008 20.456 24.904 27.032 32.368 35.032 39.48 41.304 43.528 47.976 50.64\\\">agreed Arbiter.</text></g><clipPath id=\\\"clip4-43\\\"><path d=\\\"M 205 137 L 574 137 L 574 215 L 205 215 L 205 137 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 204.9488)\\\" x=\\\"0 5.336 9.784\\\">You</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 223.8344 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 226.373 204.9488)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 241.4863 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 244.025 204.9488)\\\" x=\\\"0 4 8.448 10.272 14.72 18.72\\\">select</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 264.9703 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 267.509 204.9488)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 278.6301 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 281.1687 204.9488)\\\" x=\\\"0 5.336 12 16.448 19.112 20.936 24.936 29.384\\\">American</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 315.0047 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 317.5433 204.9488)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 19.16 23.608 25.832 27.656 32.104\\\">Arbitration</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 354.098 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 356.6367 204.9488)\\\" x=\\\"0 5.336 9.336 13.336 17.784 21.784 23.608 28.056 30.28 32.104 36.552\\\">Association</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 397.6406 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 400.1793 204.9488)\\\" x=\\\"0 2.664 5.504 10.84 16.176 21.512 24.352\\\">(&quot;AAA&quot;)</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 427.1949 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 429.7336 204.9488)\\\" x=\\\"0 2.664 7.112 9.776 14.224 18.672 23.12 25.784 30.232 34.68 39.128 41.792 46.24 50.688 55.136 59.584\\\">(1-800-778-7879)</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 491.9953 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 494.534 204.9488)\\\" x=\\\"0 4.448 6.672 8.896 13.344 15.568 17.792 20.016 25.792 31.568 37.344 39.568 44.016 48.464 51.128 53.352 57.8 60.464\\\">http://www.adr.org</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.448 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 561.9867 204.9488)\\\" x=\\\"0 4.448\\\">or</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 195.8941)\\\" x=\\\"0 4 9.336 16\\\">JAMS</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 185.8395)\\\" x=\\\"0 2.664 7.112 9.776 14.224 18.672 23.12 25.784 30.232 34.68 39.128 41.792 46.24 50.688 55.136 59.584\\\">(1-800-352-5267)</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 271.8617 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 274.6277 185.8395)\\\" x=\\\"0 4.448 6.672 8.896 13.344 15.568 17.792 20.016 25.792 31.568 37.344 39.568 41.392 45.84 52.504 56.504 60.952 65.4 68.064 70.288 74.288 78.736 85.4\\\">http://www.jamsadr.com.</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 362.2527 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 365.0186 185.8395)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 378.8038 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 381.5697 185.8395)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056\\\">parties</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 405.6283 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 408.3943 185.8395)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 423.5075 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 426.2735 185.8395)\\\" x=\\\"0 4.448 6.272 10.272\\\">also</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 440.9961 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 443.7621 185.8395)\\\" x=\\\"0 4.448 8.896 11.56 16.008\\\">agree</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 464.223 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 466.989 185.8395)\\\" x=\\\"0 1.824\\\">in</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 473.2624 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 476.0284 185.8395)\\\" x=\\\"0 5.776 8.44 10.264 12.488 14.312 18.76\\\">writing</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.2393 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 502.0053 185.8395)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 508.6771 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 511.4431 185.8395)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 515.8923 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 518.6583 185.8395)\\\" x=\\\"0 1.824 6.272 10.272 14.72\\\">local</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 535.2051 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 537.9711 185.8395)\\\" x=\\\"0 4.448 6.672 8.896 13.344 16.008 20.456 24.904 28.904\\\">attorney,</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 176.7848)\\\" x=\\\"0 2.664 7.112 9.336 11.16 13.824 18.272\\\">retired</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 232.3227 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 235.2385 176.7848)\\\" x=\\\"0 1.824 6.272 10.72 15.168 19.616\\\">judge,</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.0823 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 259.9982 176.7848)\\\" x=\\\"0 4.448\\\">or</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 267.1114 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 270.0273 176.7848)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 293.6367 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 296.5526 176.7848)\\\" x=\\\"0 1.824\\\">in</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.826 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 305.7419 176.7848)\\\" x=\\\"0 4.448 8.896 13.344\\\">good</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 323.5388 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 326.4547 176.7848)\\\" x=\\\"0 4 6.224 10.672 15.12 19.568 21.392 25.84\\\">standing</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 356.7477 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 359.6635 176.7848)\\\" x=\\\"0 5.776 7.6 9.824\\\">with</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 373.937 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 376.8529 176.7848)\\\" x=\\\"0 4.448\\\">an</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 385.7513 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 388.6672 176.7848)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 26.768 31.216\\\">arbitration</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 424.3351 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 427.251 176.7848)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456\\\">group.</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 449.9346 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 452.8505 176.7848)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.6357 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 469.5516 176.7848)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 493.1609 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 496.0768 176.7848)\\\" x=\\\"0 6.664 11.112 15.112\\\">must</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 513.4127 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 516.3286 176.7848)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944\\\">arbitrate</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 545.7232 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 548.6391 176.7848)\\\" x=\\\"0 4.448 8.896 13.344 17.792\\\">under</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 167.7301)\\\" x=\\\"0 5.336 10.672\\\">AAA</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.6078 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 228.6503 167.7301)\\\" x=\\\"0 4.448\\\">or</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 235.7636 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 238.8062 167.7301)\\\" x=\\\"0 4 9.336 16\\\">JAMS</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 260.1421 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 263.1846 167.7301)\\\" x=\\\"0 4 8.448 12.896 16.896 21.344 28.008 32.456\\\">consumer</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 298.3096 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 301.3522 167.7301)\\\" x=\\\"0 2.664 7.112 8.936 13.384 17.384\\\">rules.</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 320.9615 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 324.0041 167.7301)\\\" x=\\\"0 5.336 9.784\\\">You</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.2384 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 341.281 167.7301)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 356.3943 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 359.4368 167.7301)\\\" x=\\\"0 4.448 8.896\\\">get</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 370.5579 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 373.6004 167.7301)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 378.0497 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 381.0922 167.7301)\\\" x=\\\"0 4 8.448 12.896\\\">copy</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 397.9906 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 401.0331 167.7301)\\\" x=\\\"0 4.448\\\">of</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 407.705 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 410.7476 167.7301)\\\" x=\\\"0 2.224 6.672 11.12 15.12\\\">these</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.3179 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 433.3604 167.7301)\\\" x=\\\"0 2.664 7.112 8.936 13.384\\\">rules</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 450.7471 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 453.7897 167.7301)\\\" x=\\\"0 2.224 4.888 9.336\\\">from</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 469.7897 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 472.8322 167.7301)\\\" x=\\\"0 4 8.448 12.448\\\">such</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.7306 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 492.7732 167.7301)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456\\\">group.</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 515.4568 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 518.4993 167.7301)\\\" x=\\\"0 5.336 9.784\\\">Any</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 532.2845 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 535.327 167.7301)\\\" x=\\\"0 2.664 7.112 8.936 13.384\\\">rules</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.7137 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 555.7562 167.7301)\\\" x=\\\"0 2.224 6.672 11.12\\\">that</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 158.6754)\\\" x=\\\"0 4 8.448 12.896 15.12 16.944 18.768 22.768\\\">conflict</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 234.5922 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 237.7758 158.6754)\\\" x=\\\"0 5.776 7.6 9.824\\\">with</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 252.0492 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 255.2328 158.6754)\\\" x=\\\"0 4.448 8.896\\\">any</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 268.1312 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 271.3148 158.6754)\\\" x=\\\"0 4.448\\\">of</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 277.9867 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 281.1703 158.6754)\\\" x=\\\"0 4.448 8.896\\\">our</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 292.7328 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 295.9164 158.6754)\\\" x=\\\"0 4.448 8.896 11.56 16.008 20.456 27.12 31.568 36.016 38.24\\\">agreements</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.1625 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 341.3461 158.6754)\\\" x=\\\"0 5.776 7.6 9.824\\\">with</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.6195 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 358.8031 158.6754)\\\" x=\\\"0 4 8.448 12.896\\\">you,</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 373.9242 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 377.1078 158.6754)\\\" x=\\\"0 4.448 8.896 13.344 14.872\\\">don&apos;t</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 394.2055 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 397.389 158.6754)\\\" x=\\\"0 4.448 8.896 13.344 15.168 19.168\\\">apply.</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 418.7836 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 421.9672 158.6754)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 426.4125 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 429.5961 158.6754)\\\" x=\\\"0 2.224 6.672 11.12 15.12\\\">these</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 449.1664 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 452.35 158.6754)\\\" x=\\\"0 4.448 8.896 11.12 12.944 17.392 21.84\\\">options</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 478.1937 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 481.3773 158.6754)\\\" x=\\\"0 4.448 7.112 11.56 16.008 17.536\\\">aren&apos;t</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.139 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 504.3227 158.6754)\\\" x=\\\"0 4.448 8.448 12.896 14.72 16.544 20.992 25.44 27.264 31.712\\\">available,</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 538.264 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 541.4476 158.6754)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 554.7953 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 557.9789 158.6754)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 149.6207)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056\\\">parties</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.6586 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 236.2535 149.6207)\\\" x=\\\"0 4 8.448 12.896 14.424\\\">can&apos;t</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 252.9019 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 255.4968 149.6207)\\\" x=\\\"0 4.448 8.896 11.56 16.008\\\">agree</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.9578 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 278.5527 149.6207)\\\" x=\\\"0 4.448\\\">on</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 287.4511 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 290.046 149.6207)\\\" x=\\\"0 4.448 8.896 13.344 15.568 20.016 24.464 27.128\\\">another,</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.4015 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 321.9964 149.6207)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 326.4456 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 329.0405 149.6207)\\\" x=\\\"0 4 8.448 12.896 15.56\\\">court</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 346.8256 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 349.4205 149.6207)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 364.5338 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 367.1287 149.6207)\\\" x=\\\"0 4 8.448 12.896 17.344 21.344\\\">choose</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 392.9256 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 395.5205 149.6207)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 406.6416 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 409.2365 149.6207)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456\\\">group.</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 431.9201 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 434.515 149.6207)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 448.3001 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 450.895 149.6207)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056\\\">parties</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.9536 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 477.5485 149.6207)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 488.7985 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 491.3934 149.6207)\\\" x=\\\"0 2.224 6.672 11.12\\\">then</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 506.9637 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 509.5586 149.6207)\\\" x=\\\"0 4.448 8.896 11.12 15.568 17.392\\\">obtain</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 531.4024 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 533.9973 149.6207)\\\" x=\\\"0 4.448\\\">an</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 542.8957 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 545.4906 149.6207)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 140.566)\\\" x=\\\"0 4.448 8.896 13.344 17.792 20.456 22.584 26.584 31.032 35.032 39.48 41.608 46.056 48.72 53.168 57.616 62.064 63.592 67.592 69.72 72.384 76.832 78.656 83.104 87.104 89.328 91.456 96.792 101.24 105.24 109.688 111.816 117.152 119.816 124.264 126.088 128.312 132.76 135.424 137.552 144.216 148.664 152.664 154.888 157.016 161.464 165.912 168.136 172.584 175.248 179.248 183.696 185.824 189.824 194.272 198.72 201.384 203.512 207.96 212.408 215.072 219.52 223.968 230.632 235.08 239.528 241.752 245.752 247.88 253.656 255.48 257.704 262.152 264.28 268.728 272.728 274.952 277.08 281.528 285.528 287.656 289.88 294.328 298.776 302.776 304.904 309.352 312.016 316.464 318.592 324.368 327.032 328.856 331.08 333.304 337.752 342.2\\\">under such group&apos;s rules. Such Arbiter must enforce your agreements with us, as they are written.</text></g><clipPath id=\\\"clip4-44\\\"><path d=\\\"M 35 116 L 128 116 L 128 138 L 35 138 L 35 116 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-44)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.2 137.8863 L 127.6 137.8863 L 127.6 116.777 L 35.2 116.777 L 35.2 137.8863 z \\\"/><path clip-path=\\\"url(#clip4-44)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.3 135.8863 L 123.5 135.8863 L 123.5 117.777 L 39.3 117.777 L 39.3 135.8863 z \\\"/><path clip-path=\\\"url(#clip4-44)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.6754 135.8863 L 125.6754 135.8863 L 125.6754 125.8863 L 39.6754 125.8863 L 39.6754 135.8863 z \\\"/><g clip-path=\\\"url(#clip4-44)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 39.6754 128.5113)\\\" x=\\\"0 7.552 9.376 11.2 13.024 15.152 17.376 21.824 26.272 28.4 32.848 37.296 41.744 44.408 46.232 50.68 55.128 57.256 61.704 66.152 68.28 72.728 77.176 79\\\">Will the hearing be held</text></g><path clip-path=\\\"url(#clip4-44)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 66.9449 126.8316 L 95.9449 126.8316 L 95.9449 116.8316 L 66.9449 116.8316 L 66.9449 126.8316 z \\\"/><g clip-path=\\\"url(#clip4-44)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 66.9449 119.4567)\\\" x=\\\"0 4.448 8.896 13.344 16.008 20.456 24.456\\\">nearby?</text></g><clipPath id=\\\"clip4-45\\\"><path d=\\\"M 127 116 L 206 116 L 206 138 L 127 138 L 127 116 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-45)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 158.5461 128.5113)\\\" x=\\\"0 5.336 9.784 13.784\\\">Yes.</text></g><clipPath id=\\\"clip4-46\\\"><path d=\\\"M 205 116 L 574 116 L 574 138 L 205 138 L 205 116 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-46)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 128.5113)\\\" x=\\\"0 4.888 9.336 13.784 15.912 21.248 23.912 28.36 30.184 32.408 36.856 39.52 41.648 47.424 49.248 51.072 52.896 55.024 59.472 62.136 66.584 71.032 73.696 75.824 78.048 82.496 86.944 89.072 93.52 97.968 102.416 105.08 106.904 111.352 115.8 117.928 123.704 125.528 127.752 132.2 134.024 138.472 140.6 145.048 149.496 151.624 158.288 160.112 161.936 166.384 170.384 172.512 176.96 179.184 181.312 185.312 189.76 194.208 196.872 199 203.448 207.896 214.56 219.008 221.136 225.584 228.248 230.376 236.152 240.6 245.048 247.712 252.16 254.288 256.512 260.96 265.408 267.536 269.76 272.424 276.872 281.32 285.32 289.768 293.768 295.992 297.816 302.264 306.712 308.84 313.288 317.288 321.288 325.736 328.4 331.064 335.512 339.96\\\">The Arbiter will order the hearing within 30 miles of your home or where the transaction occurred.</text></g><clipPath id=\\\"clip4-47\\\"><path d=\\\"M 35 74 L 128 74 L 128 117 L 35 117 L 35 74 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-47)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.2 116.777 L 127.6 116.777 L 127.6 74.777 L 35.2 74.777 L 35.2 116.777 z \\\"/><path clip-path=\\\"url(#clip4-47)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.3 114.777 L 123.5 114.777 L 123.5 105.7223 L 39.3 105.7223 L 39.3 114.777 z \\\"/><path clip-path=\\\"url(#clip4-47)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 43.6695 114.777 L 119.6695 114.777 L 119.6695 104.777 L 43.6695 104.777 L 43.6695 114.777 z \\\"/><g clip-path=\\\"url(#clip4-47)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 43.6695 107.402)\\\" x=\\\"0 7.552 12 16.448 18.672 20.8 25.248 29.696 34.144 38.592 40.816 42.944 47.392 51.84 56.288 60.736 65.184 67.008 71.008\\\">What about appeals?</text></g><clipPath id=\\\"clip4-48\\\"><path d=\\\"M 127 74 L 206 74 L 206 117 L 127 117 L 127 74 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-48)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 145.2277 107.402)\\\" x=\\\"0 5.336 9.784 14.232 18.68 23.128 24.952 28.952 31.08 35.528 38.192\\\">Appeals are</text></g><g clip-path=\\\"url(#clip4-48)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 153.8098 98.3473)\\\" x=\\\"0 1.824 3.648 10.312 12.136 14.36 18.808 23.256\\\">limited.</text></g><clipPath id=\\\"clip4-49\\\"><path d=\\\"M 205 74 L 574 74 L 574 117 L 205 117 L 205 74 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 107.402)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 223.3852 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 227.8141 107.402)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608 25.136\\\">Arbiter&apos;s</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.9508 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 261.3798 107.402)\\\" x=\\\"0 4.448 8.896 12.896 14.72 18.72 20.544 24.992\\\">decision</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.8251 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 295.2541 107.402)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 306.5041 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 310.933 107.402)\\\" x=\\\"0 4.448\\\">be</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.8314 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 324.2604 107.402)\\\" x=\\\"0 2.224 4.048 8.496 12.944 14.768\\\">final.</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 341.2526 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 345.6815 107.402)\\\" x=\\\"0\\\">A</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.0175 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 355.4464 107.402)\\\" x=\\\"0 4.448 8.896 11.56 13.784\\\">party</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 373.2316 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 377.6605 107.402)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 392.7738 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 397.2028 107.402)\\\" x=\\\"0 2.224 4.048 5.872\\\">file</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 407.5231 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 411.952 107.402)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 423.0731 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 427.5021 107.402)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608 25.136\\\">Arbiter&apos;s</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.6388 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 461.0678 107.402)\\\" x=\\\"0 4.448 10.224 14.672 17.336\\\">award</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 482.8568 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 487.2858 107.402)\\\" x=\\\"0 5.776 7.6 9.824\\\">with</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.5592 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 505.9882 107.402)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 517.1093 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 521.5382 107.402)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456\\\">proper</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 544.6632 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 549.0922 107.402)\\\" x=\\\"0 4 8.448 12.896 15.56 17.784\\\">court.</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 98.3473)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 19.16 23.608 25.832 27.656 32.104\\\">Arbitration</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 246.1547 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 248.4088 98.3473)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.6588 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 261.913 98.3473)\\\" x=\\\"0 4 8.448 10.272 14.272\\\">solve</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.6356 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 282.8898 98.3473)\\\" x=\\\"0 4.448 8.896 13.344 17.792 22.24 24.064\\\">appeals</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 310.9601 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 313.2142 98.3473)\\\" x=\\\"0 4.448\\\">of</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.8861 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 322.1403 98.3473)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 326.5895 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 328.8436 98.3473)\\\" x=\\\"0 4 10.664 15.112 16.936 18.76 21.424 25.424 27.248 31.696 33.52 40.184\\\">small-claims</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 373.0311 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 375.2853 98.3473)\\\" x=\\\"0 4 8.448 12.896 15.56\\\">court</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.0704 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 395.3246 98.3473)\\\" x=\\\"0 1.824 6.272 10.72 15.168 19.616 26.28 30.728 35.176 37.4\\\">judgement.</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.9535 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 437.2077 98.3473)\\\" x=\\\"0\\\">A</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 442.5436 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 444.7977 98.3473)\\\" x=\\\"0 4.448 8.896 11.56 13.784\\\">party</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 462.5829 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 464.837 98.3473)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 479.9503 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 482.2045 98.3473)\\\" x=\\\"0 4.448 8.896 13.344 17.792 22.24\\\">appeal</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 506.2748 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 508.5289 98.3473)\\\" x=\\\"0 4.448 8.896 13.344 17.792\\\">under</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 528.9899 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 531.244 98.3473)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 542.3651 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 544.6193 98.3473)\\\" x=\\\"0 4.888 10.224 15.56\\\">FAA.</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 562.4005 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 564.6547 98.3473)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 89.2926)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 220.7211 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 223.3349 89.2926)\\\" x=\\\"0 4.448 11.112 15.56 20.008 24.456\\\">amount</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 250.0185 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 252.6324 89.2926)\\\" x=\\\"0 1.824\\\">in</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 258.9058 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 261.5196 89.2926)\\\" x=\\\"0 4 8.448 12.896 15.12 17.784 22.232 26.232 30.68 33.344 37.344\\\">controversy</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.8673 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 305.4811 89.2926)\\\" x=\\\"0 4.448 8.448 12.448 16.896 21.344 25.792\\\">exceeds</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.278 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 337.8918 89.2926)\\\" x=\\\"0 4.448 8.896 11.12 15.568 20.016 24.464 26.688 31.136 35.584\\\">$1,500.00,</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.7043 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 378.3182 89.2926)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 382.7674 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 385.3812 89.2926)\\\" x=\\\"0 4.448 8.896 11.56 13.784\\\">party</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.1664 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 405.7802 89.2926)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 420.8935 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 423.5074 89.2926)\\\" x=\\\"0 4.448 8.896 13.344 17.792 22.24\\\">appeal</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.5777 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 450.1915 89.2926)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 461.3126 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 463.9264 89.2926)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608 25.136\\\">Arbiter&apos;s</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 493.0632 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 495.677 89.2926)\\\" x=\\\"0 2.224 4.048 8.496 12.944 14.768 19.216 23.664\\\">finding.</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.5676 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 524.1815 89.2926)\\\" x=\\\"0 5.336 9.784 13.784\\\">Such</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 542.4158 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 545.0297 89.2926)\\\" x=\\\"0 4.448 8.896 13.344 17.792 22.24\\\">appeal</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 80.2379)\\\" x=\\\"0 5.776 7.6 9.424 11.248 13.376 17.824 22.272 24.4 26.624 31.072 33.2\\\">will be to a</text></g><clipPath id=\\\"clip4-50\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 272.152 L 128.1 272.152 L 128.1 271.152 L 34.7 271.152 L 34.7 272.152 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 271.152 L 35.7 271.152 L 35.7 214.8238 L 34.7 214.8238 L 34.7 271.152 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.1 272.152 L 206 272.152 L 206 271.152 L 128.1 271.152 L 128.1 272.152 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127.1 271.152 L 128.1 271.152 L 128.1 214.8238 L 127.1 214.8238 L 127.1 271.152 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 272.152 L 573.7 272.152 L 573.7 271.152 L 206 271.152 L 206 272.152 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.7 271.152 L 573.7 271.152 L 573.7 214.8238 L 572.7 214.8238 L 572.7 271.152 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 271.152 L 206 271.152 L 206 214.8238 L 205 214.8238 L 205 271.152 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 214.8238 L 128.1 214.8238 L 128.1 213.8238 L 34.7 213.8238 L 34.7 214.8238 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 213.8238 L 35.7 213.8238 L 35.7 138.3863 L 34.7 138.3863 L 34.7 213.8238 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.1 214.8238 L 206 214.8238 L 206 213.8238 L 128.1 213.8238 L 128.1 214.8238 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127.1 213.8238 L 128.1 213.8238 L 128.1 138.3863 L 127.1 138.3863 L 127.1 213.8238 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 214.8238 L 573.7 214.8238 L 573.7 213.8238 L 206 213.8238 L 206 214.8238 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.7 213.8238 L 573.7 213.8238 L 573.7 138.3863 L 572.7 138.3863 L 572.7 213.8238 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 213.8238 L 206 213.8238 L 206 138.3863 L 205 138.3863 L 205 213.8238 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 138.3863 L 128.1 138.3863 L 128.1 137.3863 L 34.7 137.3863 L 34.7 138.3863 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 137.3863 L 35.7 137.3863 L 35.7 117.277 L 34.7 117.277 L 34.7 137.3863 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.1 138.3863 L 206 138.3863 L 206 137.3863 L 128.1 137.3863 L 128.1 138.3863 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127.1 137.3863 L 128.1 137.3863 L 128.1 117.277 L 127.1 117.277 L 127.1 137.3863 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 138.3863 L 573.7 138.3863 L 573.7 137.3863 L 206 137.3863 L 206 138.3863 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.7 137.3863 L 573.7 137.3863 L 573.7 117.277 L 572.7 117.277 L 572.7 137.3863 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 137.3863 L 206 137.3863 L 206 117.277 L 205 117.277 L 205 137.3863 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 117.277 L 128.1 117.277 L 128.1 116.277 L 34.7 116.277 L 34.7 117.277 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 75.277 L 128.1 75.277 L 128.1 74.277 L 34.7 74.277 L 34.7 75.277 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 116.277 L 35.7 116.277 L 35.7 75.277 L 34.7 75.277 L 34.7 116.277 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.1 117.277 L 206 117.277 L 206 116.277 L 128.1 116.277 L 128.1 117.277 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.1 75.277 L 206 75.277 L 206 74.277 L 128.1 74.277 L 128.1 75.277 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127.1 116.277 L 128.1 116.277 L 128.1 75.277 L 127.1 75.277 L 127.1 116.277 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 117.277 L 573.7 117.277 L 573.7 116.277 L 206 116.277 L 206 117.277 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 75.277 L 573.7 75.277 L 573.7 74.277 L 206 74.277 L 206 75.277 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.7 116.277 L 573.7 116.277 L 573.7 75.277 L 572.7 75.277 L 572.7 116.277 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 116.277 L 206 116.277 L 206 75.277 L 205 75.277 L 205 116.277 z \\\"/><g clip-path=\\\"url(#clip4-50)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 36.5264)\\\" x=\\\"0 6.498 11.997 14.391 16.785 21.789 26.793 29.295 34.299 39.303 44.307 504 506.3906 508.7812 511.1719 513.5625 515.9531 518.3438 520.7344 523.125 525.5156\\\">UT  07/2019          </text></g><g clip-path=\\\"url(#clip4-50)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 26.3398)\\\" x=\\\"0 6.003 11.007 16.011 21.015\\\">Page </text></g><g clip-path=\\\"url(#clip4-50)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 55.8097 26.3398)\\\" x=\\\"0\\\">5</text></g><g clip-path=\\\"url(#clip4-50)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.815 26.3398)\\\" x=\\\"0 2.394 7.398 9.9\\\"> of </text></g><g clip-path=\\\"url(#clip4-50)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 73.1021 26.3398)\\\" x=\\\"0\\\">7</text></g><g clip-path=\\\"url(#clip4-50)\\\"><text stroke=\\\"none\\\" fill=\\\"#d9d9d9\\\" style=\\\"font-family:f4-0; font-size:54pt; white-space:pre\\\" transform=\\\"matrix(0.707 0.707 0.707 -0.707 135.6027 198.5094)\\\" x=\\\"0 56.016 96.048 136.08 176.112 216.144 236.16 284.184 324.216 344.232 364.248 416.232 456.264 480.24\\\">Qoppa Software</text></g><g clip-path=\\\"url(#clip4-50)\\\"><text stroke=\\\"none\\\" fill=\\\"#002ba6\\\" style=\\\"font-family:f4-0; font-size:9pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.932 772)\\\" x=\\\"0 9.336 16.008 22.68 29.352 36.024 39.36 47.364 54.036 57.372 60.708 69.372 76.044 80.04 86.712 90.048 94.044 97.38 104.712 111.384 115.38 118.716 126.72 132.72 139.392 142.056 148.728 155.4 158.736 161.4 168.072 174.744 178.08 187.416 194.088 196.752 202.752 206.088 210.084 213.42 220.092 223.428 226.764 233.436 239.436 242.772 246.108 249.444 258.108 266.772 275.436 278.772 285.444 292.116 298.788 305.46 312.132 315.468 321.468 328.14\\\">Qoppa Software - For Evaluation Only - https://www.qoppa.com</text></g></g></svg></svg></g></svg><br>\\n<?xml version='1.0' encoding='UTF-8'?><svg id=\\\"qoppa_document\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" version=\\\"1.1\\\" xmlns=\\\"http://www.w3.org/2000/svg\\\" xmlns:xlink=\\\"http://www.w3.org/1999/xlink\\\"><!-- jPDFWeb v2019R1.03 - Demo Version --><style>title p { display: block; }</style><g id=\\\"qoppa_viewxform\\\" transform=\\\"matrix(1 0 0 1 0 0)\\\"><style type=\\\"text/css\\\">@font-face {font-family:f5-0;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f5-1;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f5-2;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}</style><svg id=\\\"qoppa_page_p5\\\" class=\\\"qoppa_page\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\"><rect class=\\\"qoppa_pageborder\\\" x=\\\"0.5pt\\\" y=\\\"0.5pt\\\" width=\\\"611pt\\\" height=\\\"791pt\\\" fill=\\\"none\\\" /><svg class=\\\"qoppa_pagecontents\\\" x=\\\"0pt\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" viewBox=\\\"0 0 612 792\\\" ><g class=\\\"qoppa_contentstream\\\" transform=\\\"matrix(1 0 0 -1 0 792)\\\" fill=\\\"black\\\" stroke=\\\"black\\\" stroke-width=\\\"1\\\" stroke-linecap=\\\"butt\\\" stroke-linejoin=\\\"miter\\\" stroke-miterlimit=\\\"10\\\"><clipPath id=\\\"clip5-1\\\"><path d=\\\"M 35 727 L 128 727 L 128 770 L 35 770 L 35 727 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-1)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.2 769.7 L 127.6 769.7 L 127.6 727.7 L 35.2 727.7 L 35.2 769.7 z \\\"/><clipPath id=\\\"clip5-2\\\"><path d=\\\"M 205 727 L 574 727 L 574 770 L 205 770 L 205 727 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 760.325)\\\" x=\\\"0 4.448 7.112 12.448 15.112 19.56 21.384 23.608 28.056\\\">3-Arbiter</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 240.3227 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 243.109 760.325)\\\" x=\\\"0 4.448 8.896 13.344 17.792\\\">panel</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.7301 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 265.5165 760.325)\\\" x=\\\"0 2.224 4.888 9.336\\\">from</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.5165 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 284.3029 760.325)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 295.424 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 298.2103 760.325)\\\" x=\\\"0 4 8.448 15.112\\\">same</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 317.7728 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 320.5592 760.325)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 26.768 31.216\\\">arbitration</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 356.2272 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 359.0136 760.325)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456\\\">group.</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 381.6972 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 384.4835 760.325)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 398.2687 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 401.0551 760.325)\\\" x=\\\"0 4.448 8.896 13.344 17.792 22.24\\\">appeal</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 425.1254 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 427.9118 760.325)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 439.1618 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 441.9481 760.325)\\\" x=\\\"0 4.448\\\">be</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 450.8466 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 453.6329 760.325)\\\" x=\\\"0 4.448\\\">de</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 462.5314 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 465.3178 760.325)\\\" x=\\\"0 4.448 8.896 12.896 17.344\\\">novo,</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.8881 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 487.6745 760.325)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.0221 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 503.8085 760.325)\\\" x=\\\"0 4 8.448 10.272 14.272 18.72\\\">solved</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.9804 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 529.7667 760.325)\\\" x=\\\"0 4.448\\\">by</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 538.216 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 541.0023 760.325)\\\" x=\\\"0 6.664 11.112 12.936 17.384 20.048 21.872 24.096\\\">majority</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 751.2703)\\\" x=\\\"0 4 8.448 10.672 15.12\\\">vote.</text></g><clipPath id=\\\"clip5-3\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-3)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 770.2 L 128.1 770.2 L 128.1 769.2 L 34.7 769.2 L 34.7 770.2 z \\\"/><path clip-path=\\\"url(#clip5-3)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 728.2 L 128.1 728.2 L 128.1 727.2 L 34.7 727.2 L 34.7 728.2 z \\\"/><path clip-path=\\\"url(#clip5-3)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 769.2 L 35.7 769.2 L 35.7 728.2 L 34.7 728.2 L 34.7 769.2 z \\\"/><path clip-path=\\\"url(#clip5-3)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.1 770.2 L 206 770.2 L 206 769.2 L 128.1 769.2 L 128.1 770.2 z \\\"/><path clip-path=\\\"url(#clip5-3)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.1 728.2 L 206 728.2 L 206 727.2 L 128.1 727.2 L 128.1 728.2 z \\\"/><path clip-path=\\\"url(#clip5-3)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127.1 769.2 L 128.1 769.2 L 128.1 728.2 L 127.1 728.2 L 127.1 769.2 z \\\"/><path clip-path=\\\"url(#clip5-3)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 770.2 L 573.7 770.2 L 573.7 769.2 L 206 769.2 L 206 770.2 z \\\"/><path clip-path=\\\"url(#clip5-3)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 728.2 L 573.7 728.2 L 573.7 727.2 L 206 727.2 L 206 728.2 z \\\"/><path clip-path=\\\"url(#clip5-3)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.7 769.2 L 573.7 769.2 L 573.7 728.2 L 572.7 728.2 L 572.7 769.2 z \\\"/><path clip-path=\\\"url(#clip5-3)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 769.2 L 206 769.2 L 206 728.2 L 205 728.2 L 205 769.2 z \\\"/><g clip-path=\\\"url(#clip5-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 241.2386 715.4812)\\\" x=\\\"0 6.67 10 15.56 17.84 20.62 23.95 29.51 32.29 34.57 40.13 45.69 48.35 54.46 60.02 65.58 70.58 73.24 78.8 84.36 89.92 92.58 99.25 106.47 112.03 115.36 120.92\\\">Ar* D E M O *ees and Awards</text></g><clipPath id=\\\"clip5-4\\\"><path d=\\\"M 35 680 L 128 680 L 128 705 L 35 705 L 35 680 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-4)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.6 704.277 L 127.5 704.277 L 127.5 680.277 L 35.6 680.277 L 35.6 704.277 z \\\"/><path clip-path=\\\"url(#clip5-4)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.7 700.777 L 123.4 700.777 L 123.4 682.6676 L 39.7 682.6676 L 39.7 700.777 z \\\"/><path clip-path=\\\"url(#clip5-4)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 52.677 700.777 L 110.677 700.777 L 110.677 690.777 L 52.677 690.777 L 52.677 700.777 z \\\"/><g clip-path=\\\"url(#clip5-4)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 52.677 693.4019)\\\" x=\\\"0 7.552 9.376 11.2 13.024 15.152 20.928 25.376 27.504 31.952 36.4 40.4 44.848 49.296 53.296\\\">Will we advance</text></g><path clip-path=\\\"url(#clip5-4)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 51.093 691.7223 L 112.093 691.7223 L 112.093 681.7223 L 51.093 681.7223 L 51.093 691.7223 z \\\"/><g clip-path=\\\"url(#clip5-4)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 51.093 684.3473)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 19.16 23.608 25.832 27.656 32.104 36.552 38.68 43.568 48.016 52.464 56.464\\\">Arbitration Fees?</text></g><clipPath id=\\\"clip5-5\\\"><path d=\\\"M 127 680 L 206 680 L 206 705 L 127 705 L 127 680 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-5)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 135.7422 693.4019)\\\" x=\\\"0 5.336 9.784 13.784 16.008 18.136 22.584 27.032 29.256 31.384 35.384 39.832 44.28 46.408 53.072 57.52\\\">Yes, but you may</text></g><g clip-path=\\\"url(#clip5-5)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 148.541 684.3473)\\\" x=\\\"0 4.448 8.896 12.896 15.024 19.024 23.472 27.472 29.696 33.696\\\">pay costs.</text></g><clipPath id=\\\"clip5-6\\\"><path d=\\\"M 205 680 L 573 680 L 573 705 L 205 705 L 205 680 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 693.4019)\\\" x=\\\"0 7.552\\\">We</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 221.6 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 224.0728 693.4019)\\\" x=\\\"0 4.448 8.896 12.896 17.344 21.792 25.792\\\">advance</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 254.3189 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 256.7917 693.4019)\\\" x=\\\"0 4 8.448 12.896\\\">your</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 272.3542 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 274.827 693.4019)\\\" x=\\\"0 2.84 8.176 10.84 15.288 17.112 19.336 22 26.448 28.672 30.496 34.944\\\">&quot;Arbitration</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 314.2216 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 316.6944 693.4019)\\\" x=\\\"0 4.888 9.336 13.784 17.784\\\">Fees&quot;</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 337.3194 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 339.7922 693.4019)\\\" x=\\\"0 1.824\\\">if</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 343.8391 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 346.3119 693.4019)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.2103 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 361.6831 693.4019)\\\" x=\\\"0 4.448 8.448\\\">ask</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 374.1323 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 376.6051 693.4019)\\\" x=\\\"0 4.448\\\">us</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 385.0544 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 387.5272 693.4019)\\\" x=\\\"0 2.224 6.672\\\">to.</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 396.4217 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 398.8945 693.4019)\\\" x=\\\"0 4.888 9.336 11.16\\\">This</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 414.0547 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 416.5275 693.4019)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44\\\">includes</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 445.9728 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 448.4456 693.4019)\\\" x=\\\"0 2.224 4.048 5.872 7.696 12.144 16.592\\\">filing,</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.262 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 469.7348 693.4019)\\\" x=\\\"0 4.448 8.896 15.56 17.384 21.832 23.656 27.656 29.88 32.544 36.992 39.216 41.04 45.04 49.488\\\">administrative,</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.4497 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 523.9225 693.4019)\\\" x=\\\"0 4.448 8.896 13.344 16.008 17.832 22.28 26.728\\\">hearing,</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.8795 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 555.3523 693.4019)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 684.3473)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608 25.136 29.136 31.264 33.488 37.936 42.384 46.384 48.608 50.736 56.072 60.52 64.968 67.096 71.544 75.992 79.992 82.12 86.12 90.568 95.016 97.68 99.808 104.256 106.48 108.704 113.152 115.816 120.264 124.712 128.712 130.84 133.064 137.512 141.96 145.96 148.088 152.536 156.984 161.432 163.56 168.008 170.232 174.68 179.128 181.792 183.92 188.368 192.368 196.816 201.264 205.712 209.712 214.16 218.16\\\">Arbiter&apos;s fees. You pay your attorney fees and other expenses.</text></g><clipPath id=\\\"clip5-7\\\"><path d=\\\"M 35 656 L 128 656 L 128 681 L 35 681 L 35 656 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-7)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.6 680.277 L 127.5 680.277 L 127.5 656.6769 L 35.6 656.6769 L 35.6 680.277 z \\\"/><path clip-path=\\\"url(#clip5-7)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.7 676.277 L 123.4 676.277 L 123.4 658.1676 L 39.7 658.1676 L 39.7 676.277 z \\\"/><path clip-path=\\\"url(#clip5-7)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 50.0715 676.277 L 113.0715 676.277 L 113.0715 666.277 L 50.0715 666.277 L 50.0715 676.277 z \\\"/><g clip-path=\\\"url(#clip5-7)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 50.0715 668.9019)\\\" x=\\\"0 5.336 8 12.448 14.576 19.024 23.472 30.136 34.584 39.032 43.48 47.48 49.608 54.056 58.504\\\">Are damages and</text></g><path clip-path=\\\"url(#clip5-7)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 40.4641 667.2223 L 123.4641 667.2223 L 123.4641 657.2223 L 40.4641 657.2223 L 40.4641 667.2223 z \\\"/><g clip-path=\\\"url(#clip5-7)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.4641 659.8473)\\\" x=\\\"0 4.448 6.672 8.896 13.344 16.008 20.456 24.904 28.904 31.032 33.256 37.704 42.152 46.152 48.28 52.728 57.176 61.176 65.176 67 71.448 73.272 77.72\\\">attorney fees possible?</text></g><clipPath id=\\\"clip5-8\\\"><path d=\\\"M 127 656 L 206 656 L 206 681 L 127 681 L 127 656 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 139.625 668.9019)\\\" x=\\\"0 5.336 9.784 13.784 16.008 18.136 19.96 22.184 24.312 28.76 30.584 32.408 36.856 42.632 47.08 51.528\\\">Yes, if allowed.</text></g><clipPath id=\\\"clip5-9\\\"><path d=\\\"M 205 656 L 573 656 L 573 681 L 205 681 L 205 656 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 668.9019)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 223.3852 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 225.9124 668.9019)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 249.5218 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 252.049 668.9019)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 267.1623 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 269.6895 668.9019)\\\" x=\\\"0 4.448 10.224 14.672 17.336\\\">award</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.4786 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 294.0058 668.9019)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 305.1269 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 307.6542 668.9019)\\\" x=\\\"0 4 8.448 15.112\\\">same</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 327.2167 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 329.7439 668.9019)\\\" x=\\\"0 4.448 8.896 15.56 20.008 24.456 28.904\\\">damages</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 362.6541 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 365.1813 668.9019)\\\" x=\\\"0 4.448\\\">as</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 373.6305 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 376.1578 668.9019)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.607 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 383.1342 668.9019)\\\" x=\\\"0 4 8.448 12.896 15.56 17.784\\\">court.</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.142 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 405.6693 668.9019)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608\\\">Arbiters</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 433.2786 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 435.8059 668.9019)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 450.9192 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 453.4464 668.9019)\\\" x=\\\"0 4.448 10.224 14.672 17.336\\\">award</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 475.2355 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 477.7627 668.9019)\\\" x=\\\"0 2.664 7.112 11.56 15.56 20.008 24.456 28.904 33.352 35.176\\\">reasonable</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 517.3955 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 519.9227 668.9019)\\\" x=\\\"0 4.448 6.672 8.896 13.344 16.008 20.456 24.904\\\">attorney</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 548.829 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 551.3562 668.9019)\\\" x=\\\"0 2.224 6.672 11.12 15.12\\\">fees,</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 659.8473)\\\" x=\\\"0 4.448 8.896 13.344 15.472 19.92 23.92 28.368 32.816 37.264 41.264 45.712 49.712 51.936 54.064 55.888 58.112 60.24 64.688 66.512 68.336 72.784 78.56 83.008 87.456 89.584 94.032 98.032 100.16 101.984 106.432 112.208\\\">and expenses, * D E M O *by law.</text></g><clipPath id=\\\"clip5-10\\\"><path d=\\\"M 35 633 L 128 633 L 128 657 L 35 657 L 35 633 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-10)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.6 656.6769 L 127.5 656.6769 L 127.5 633.077 L 35.6 633.077 L 35.6 656.6769 z \\\"/><path clip-path=\\\"url(#clip5-10)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.7 652.6769 L 123.4 652.6769 L 123.4 634.5676 L 39.7 634.5676 L 39.7 652.6769 z \\\"/><path clip-path=\\\"url(#clip5-10)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 40.675 652.6769 L 124.675 652.6769 L 124.675 642.6769 L 40.675 642.6769 L 40.675 652.6769 z \\\"/><g clip-path=\\\"url(#clip5-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 645.3019)\\\" x=\\\"0 7.552 9.376 11.2 13.024 15.152 19.152 23.6 28.048 30.176 34.624 39.072 43.072 45.2 50.536 53.2 57.648 59.472 61.696 64.36 68.808 71.032 72.856 77.304\\\">Will you pay Arbitration</text></g><path clip-path=\\\"url(#clip5-10)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 52.7473 643.6223 L 110.7473 643.6223 L 110.7473 633.6223 L 52.7473 633.6223 L 52.7473 643.6223 z \\\"/><g clip-path=\\\"url(#clip5-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 52.7473 636.2473)\\\" x=\\\"0 4.888 9.336 13.784 17.784 19.912 21.736 23.96 26.088 30.088 34.536 38.984 41.112 46.888 48.712 53.16\\\">Fees if you win?</text></g><clipPath id=\\\"clip5-11\\\"><path d=\\\"M 127 633 L 206 633 L 206 657 L 127 657 L 127 633 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 160.2754 645.3019)\\\" x=\\\"0 5.776 10.224\\\">No.</text></g><clipPath id=\\\"clip5-12\\\"><path d=\\\"M 205 633 L 573 633 L 573 657 L 205 657 L 205 633 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 645.3019)\\\" x=\\\"0 2.224 4.448 6.576 8.8 13.248 17.696 19.824 25.16 27.824 32.272 34.096 36.32 40.768 43.432 45.56 50.008 55.784 60.232 62.896 67.344 71.344 73.472 77.472 81.92 86.368 88.496 90.72 95.168 99.616 104.064 108.064 110.288 112.416 116.416 120.864 125.312 127.44 131.888 136.336 140.784 142.312 144.536 146.664 149.328 153.776 155.6 162.264 166.712 171.16 173.824 177.824 182.272 184.4 188.848 192.848 194.976 197.2 201.648 206.096 208.224 213.56 216.224 220.672 222.496 224.72 227.384 231.832 234.056 235.88 240.328 244.776 246.904 251.792 256.24 260.688 264.688\\\">If the Arbiter awards you funds, you don&apos;t reimburse us the Arbitration Fees.</text></g><clipPath id=\\\"clip5-13\\\"><path d=\\\"M 35 601 L 128 601 L 128 634 L 35 634 L 35 601 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-13)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.6 633.077 L 127.5 633.077 L 127.5 601.9129 L 35.6 601.9129 L 35.6 633.077 z \\\"/><path clip-path=\\\"url(#clip5-13)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.7 629.077 L 123.4 629.077 L 123.4 610.9676 L 39.7 610.9676 L 39.7 629.077 z \\\"/><path clip-path=\\\"url(#clip5-13)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 51.1711 629.077 L 112.1711 629.077 L 112.1711 619.077 L 51.1711 619.077 L 51.1711 629.077 z \\\"/><g clip-path=\\\"url(#clip5-13)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 51.1711 621.702)\\\" x=\\\"0 7.552 9.376 11.2 13.024 15.152 19.152 23.6 28.048 30.176 34.624 38.624 43.072 45.736 47.864 52.312 56.76\\\">Will you ever pay</text></g><path clip-path=\\\"url(#clip5-13)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 51.093 620.0223 L 112.093 620.0223 L 112.093 610.0223 L 51.093 610.0223 L 51.093 620.0223 z \\\"/><g clip-path=\\\"url(#clip5-13)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 51.093 612.6473)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 19.16 23.608 25.832 27.656 32.104 36.552 38.68 43.568 48.016 52.464 56.464\\\">Arbitration Fees?</text></g><clipPath id=\\\"clip5-14\\\"><path d=\\\"M 127 601 L 206 601 L 206 634 L 127 634 L 127 601 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-14)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 152.2715 621.702)\\\" x=\\\"0 5.336 9.784 13.784 16.008 21.784 26.232\\\">Yes/No.</text></g><clipPath id=\\\"clip5-15\\\"><path d=\\\"M 205 601 L 573 601 L 573 634 L 205 634 L 205 601 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 621.702)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 214.0453 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 217.6688 621.702)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 228.7898 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 232.4133 621.702)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.0227 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 259.6461 621.702)\\\" x=\\\"0 4.448 8.896 13.344 17.344 21.792 23.32\\\">doesn&apos;t</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 285.193 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 288.8164 621.702)\\\" x=\\\"0 4.448 10.224 14.672 17.336\\\">award</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 310.6055 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 314.2289 621.702)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 327.1273 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 330.7508 621.702)\\\" x=\\\"0 2.224 6.672 11.12 15.568 19.568\\\">funds,</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 352.5437 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 356.1672 621.702)\\\" x=\\\"0 2.224 6.672 11.12\\\">then</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.7375 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 375.3609 621.702)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.2594 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 391.8828 621.702)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 406.9961 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 410.6195 621.702)\\\" x=\\\"0 2.664 7.112 11.56 16.008\\\">repay</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.6312 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 434.2547 621.702)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 445.3758 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 448.9992 621.702)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 19.16 23.608 25.832 27.656 32.104\\\">Arbitration</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 485.5539 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 489.1773 621.702)\\\" x=\\\"0 4.888 9.336 13.784 17.784\\\">Fees.</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.1851 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 512.8086 621.702)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.5937 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 530.2172 621.702)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.8265 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 557.45 621.702)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 612.6473)\\\" x=\\\"0 4.448 8.896 12.896 14.72 19.168\\\">decide</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.2211 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 236.7228 612.6473)\\\" x=\\\"0 5.776 10.224 14.672 16.896 21.344 25.792\\\">whether</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 265.1838 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 268.6855 612.6473)\\\" x=\\\"0 4 8.448 12.896 14.424 16.248\\\">you&apos;ll</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 286.7597 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 290.2614 612.6473)\\\" x=\\\"0 4.448 8.896 12.896\\\">pay.</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 305.3825 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 308.8842 612.6473)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 313.3295 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 316.8312 612.6473)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.7297 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 333.2314 612.6473)\\\" x=\\\"0 6.664 11.112 15.112\\\">must</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 350.5673 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 354.0691 612.6473)\\\" x=\\\"0 4.448 8.896\\\">pay</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 366.9675 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 370.4692 612.6473)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 19.16 23.608 25.832 27.656 32.104\\\">Arbitration</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 407.0239 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 410.5256 612.6473)\\\" x=\\\"0 4.888 9.336 13.784 17.784\\\">Fees,</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.5334 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 434.0351 612.6473)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 445.1562 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 448.658 612.6473)\\\" x=\\\"0 4.448 11.112 15.56 20.008 24.456\\\">amount</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 475.3415 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 478.8433 612.6473)\\\" x=\\\"0 5.776 10.224 14.672 16.2\\\">won&apos;t</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 497.269 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 500.7708 612.6473)\\\" x=\\\"0 4.448 8.448 12.448 16.896 21.344\\\">exceed</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.5676 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 530.0694 612.6473)\\\" x=\\\"0 4 6.224 10.672 12.896\\\">state</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 547.4131 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 550.9148 612.6473)\\\" x=\\\"0 4 8.448 12.896 15.56\\\">court</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 603.5926)\\\" x=\\\"0 4 8.448 12.448 14.672 18.672\\\">costs.</text></g><clipPath id=\\\"clip5-16\\\"><path d=\\\"M 35 534 L 128 534 L 128 602 L 35 602 L 35 534 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-16)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.6 601.9129 L 127.5 601.9129 L 127.5 534.5301 L 35.6 534.5301 L 35.6 601.9129 z \\\"/><path clip-path=\\\"url(#clip5-16)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.7 597.9129 L 123.4 597.9129 L 123.4 579.8035 L 39.7 579.8035 L 39.7 597.9129 z \\\"/><path clip-path=\\\"url(#clip5-16)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 45.2063 597.9129 L 118.2063 597.9129 L 118.2063 587.9129 L 45.2063 587.9129 L 45.2063 597.9129 z \\\"/><g clip-path=\\\"url(#clip5-16)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 45.2063 590.5379)\\\" x=\\\"0 7.552 12 16.448 18.672 20.8 25.248 29.696 34.144 38.592 43.04 47.488 51.488 53.616 55.44 57.664 59.792 63.792 68.24\\\">What happens if you</text></g><path clip-path=\\\"url(#clip5-16)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 73.3 588.8582 L 90.3 588.8582 L 90.3 578.8582 L 73.3 578.8582 L 73.3 588.8582 z \\\"/><g clip-path=\\\"url(#clip5-16)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 73.3 581.4832)\\\" x=\\\"0 5.776 7.6 12.048\\\">win?</text></g><clipPath id=\\\"clip5-17\\\"><path d=\\\"M 127 534 L 206 534 L 206 602 L 127 602 L 127 534 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-17)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 131.9356 590.5379)\\\" x=\\\"0 5.336 9.784 14.232 16.36 20.36 24.808 29.256 31.08 35.528 37.656 42.104 46.552 48.776 50.904 57.568 62.016 64.68\\\">You could get more</text></g><g clip-path=\\\"url(#clip5-17)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 139.2246 581.4832)\\\" x=\\\"0 2.224 6.672 11.12 15.568 17.696 19.92 24.368 28.816 30.944 36.28 38.944 43.392 45.216 47.44 51.888\\\">than the Arbiter</text></g><g clip-path=\\\"url(#clip5-17)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 150.0449 572.4285)\\\" x=\\\"0 4.448 10.224 14.672 17.336 21.784 26.232 30.68\\\">awarded.</text></g><clipPath id=\\\"clip5-18\\\"><path d=\\\"M 205 534 L 573 534 L 573 602 L 205 602 L 205 534 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 590.5379)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 214.0453 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 216.367 590.5379)\\\" x=\\\"0 4.448\\\">an</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.2654 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 227.5871 590.5379)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608 25.136\\\">Arbiter&apos;s</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.7238 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 259.0455 590.5379)\\\" x=\\\"0 4.448 10.224 14.672 17.336\\\">award</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.8345 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 283.1562 590.5379)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 289.8281 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 292.1498 590.5379)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 305.0482 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 307.3699 590.5379)\\\" x=\\\"0 4.448 8.448 12.448 16.896 21.344 25.792\\\">exceeds</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 337.1667 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 339.4884 590.5379)\\\" x=\\\"0 4.448 8.896\\\">our</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.0509 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 353.3726 590.5379)\\\" x=\\\"0 1.824 6.272 10.272\\\">last</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 365.8687 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 368.1903 590.5379)\\\" x=\\\"0 5.336 9.784 12.008 14.232 16.056 20.504 27.168 31.616 36.064\\\">Settlement</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 406.4794 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 408.8011 590.5379)\\\" x=\\\"0 6.224 8.448 10.672 15.12 17.784\\\">Offer,</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 428.805 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 431.1266 590.5379)\\\" x=\\\"0 5.776\\\">we</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 441.3532 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 443.6749 590.5379)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.9249 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 457.2465 590.5379)\\\" x=\\\"0 4.448 8.896\\\">pay</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 470.145 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 472.4666 590.5379)\\\" x=\\\"0\\\">3</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 476.9159 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 479.2375 590.5379)\\\" x=\\\"0 4.448 11.112 15.56 20.008 24.456 26.68 30.68\\\">amounts.</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.1438 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 514.4654 590.5379)\\\" x=\\\"0 7.552\\\">We</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.4654 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 528.7871 590.5379)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 540.0371 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 542.3588 590.5379)\\\" x=\\\"0 4.448 8.896\\\">pay</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 555.2572 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 557.5789 590.5379)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 581.4832)\\\" x=\\\"0 4.448 7.112 11.56 16.008 18.232 22.68\\\">greater</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 234.9477 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 238.6632 581.4832)\\\" x=\\\"0 4.448\\\">of</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.3351 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 249.0506 581.4832)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 260.1717 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 263.8872 581.4832)\\\" x=\\\"0 4.448 10.224 14.672 17.336\\\">award</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 285.6762 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 289.3918 581.4832)\\\" x=\\\"0 4.448 11.112 15.56 20.008 24.456\\\">amount</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 316.0754 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 319.7909 581.4832)\\\" x=\\\"0 4.448\\\">or</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 326.9042 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 330.6197 581.4832)\\\" x=\\\"0 4.448 8.896 13.344 17.792 20.016 24.464\\\">$500.00</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.5376 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 363.2532 581.4832)\\\" x=\\\"0 2.664 5.504 9.952 14.4 18.848 23.296\\\">(&quot;bonus</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 390.5539 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 394.2695 581.4832)\\\" x=\\\"0 4.448 8.896 12.896 19.56 24.008 28.456 30.68 33.52 36.184\\\">payment&quot;).</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 432.6796 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 436.3951 581.4832)\\\" x=\\\"0 7.552\\\">We</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 448.3951 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 452.1107 581.4832)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 463.3607 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 467.0762 581.4832)\\\" x=\\\"0 4.448 8.896\\\">pay</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 479.9746 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 483.6901 581.4832)\\\" x=\\\"0 4 8.448 12.896\\\">your</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.2526 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 502.9682 581.4832)\\\" x=\\\"0 4.448 6.672 8.896 13.344 16.008 20.456 24.904\\\">attorney</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 531.8744 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 535.5899 581.4832)\\\" x=\\\"0 2.224 8 9.824 13.824\\\">twice</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.8634 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 557.5789 581.4832)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 572.4285)\\\" x=\\\"0 4.448 6.672 8.896 13.344 16.008 20.456 24.904\\\">attorney</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.5063 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 242.1723 572.4285)\\\" x=\\\"0 2.224 6.672 11.12\\\">fees</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.2934 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 260.9594 572.4285)\\\" x=\\\"0 4 8.448 12.896 15.12 19.568 22.232 24.896 29.344\\\">conferred</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 294.7563 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 298.4224 572.4285)\\\" x=\\\"0 2.664 5.504 9.952 12.176 14.4 18.848 21.512 25.96 30.408\\\">(&quot;attorney</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 332.8325 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 336.4986 572.4285)\\\" x=\\\"0 4.448 7.112 11.56 18.224 20.048 24.496 31.16 34 36.664\\\">premium&quot;).</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.3892 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 379.0552 572.4285)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.5005 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 387.1666 572.4285)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 398.2877 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 401.9537 572.4285)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 425.5631 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 429.2291 572.4285)\\\" x=\\\"0 4.448 7.112 11.56 16.008 18.672 22.672\\\">orders,</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.1276 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 457.7936 572.4285)\\\" x=\\\"0 5.776\\\">we</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.0202 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 471.6862 572.4285)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 482.9362 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 486.6023 572.4285)\\\" x=\\\"0 4.448 8.896\\\">pay</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.5007 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 503.1667 572.4285)\\\" x=\\\"0 2.664 7.112 11.56 15.56 20.008 24.456 28.904 33.352 35.176\\\">reasonable</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 542.7996 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 546.4656 572.4285)\\\" x=\\\"0 4.448 8.448 12.896 17.344 20.008\\\">expert</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 563.3738)\\\" x=\\\"0 5.776 7.6 9.824 14.272 18.72 22.72\\\">witness</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 236.3227 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 238.5023 563.3738)\\\" x=\\\"0 4 8.448 12.448 14.672\\\">costs</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.1741 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 259.3537 563.3738)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 272.7014 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 274.881 563.3738)\\\" x=\\\"0 4.448 6.672 11.12 15.568\\\">other</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 293.1153 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 295.2949 563.3738)\\\" x=\\\"0 4 8.448 12.448 14.672\\\">costs</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 313.9668 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 316.1464 563.3738)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.0448 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 331.2244 563.3738)\\\" x=\\\"0 1.824 6.272 10.272 14.72 17.384 20.048 24.496\\\">incurred</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 360.1736 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 362.3532 563.3738)\\\" x=\\\"0 2.664 5.504 9.504 13.952 17.952\\\">(&quot;cost</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 382.529 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 384.7086 563.3738)\\\" x=\\\"0 4.448 7.112 11.56 18.224 20.048 24.496 31.16 34 36.664\\\">premium&quot;).</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 423.5992 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 425.7788 563.3738)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.2241 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 432.4037 563.3738)\\\" x=\\\"0 5.776\\\">we</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 442.6303 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 444.8099 563.3738)\\\" x=\\\"0 4.448 8.896 12.896 17.344\\\">never</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 464.8216 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 467.0012 563.3738)\\\" x=\\\"0 6.664 11.112 15.56\\\">made</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 487.0129 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 489.1925 563.3738)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 493.6417 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 495.8213 563.3738)\\\" x=\\\"0 5.336 9.784 12.008 14.232 16.056 20.504 27.168 31.616 36.064\\\">Settlement</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 534.1103 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 536.2899 563.3738)\\\" x=\\\"0 6.224 8.448 10.672 15.12 17.784\\\">Offer,</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 556.2938 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 558.4734 563.3738)\\\" x=\\\"0 5.776\\\">we</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 554.3191)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 220.85 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 224.1983 554.3191)\\\" x=\\\"0 4.448 8.896\\\">pay</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 237.0968 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 240.4451 554.3191)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 251.5662 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 254.9145 554.3191)\\\" x=\\\"0 4.448 8.896 13.344 17.792\\\">bonus</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.7114 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 280.0597 554.3191)\\\" x=\\\"0 4.448 8.896 12.896 19.56 24.008 28.456 30.68\\\">payment,</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.966 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 316.3143 554.3191)\\\" x=\\\"0 4.448 6.672 8.896 13.344 16.008 20.456 24.904\\\">attorney</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 345.2206 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 348.5689 554.3191)\\\" x=\\\"0 4.448 7.112 11.56 18.224 20.048 24.496 31.16\\\">premium,</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 381.9556 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 385.3039 554.3191)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 398.6516 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 401.9999 554.3191)\\\" x=\\\"0 4.448 8.896\\\">any</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 414.8984 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 418.2467 554.3191)\\\" x=\\\"0 4 8.448 12.448\\\">cost</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 432.9186 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 436.2669 554.3191)\\\" x=\\\"0 4.448 7.112 11.56 18.224 20.048 24.496 31.16\\\">premium.</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 469.6536 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 473.002 554.3191)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.7871 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 490.1355 554.3191)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 513.7448 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 517.0932 554.3191)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 532.2064 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 535.5548 554.3191)\\\" x=\\\"0 4.448 7.112 11.56 16.008\\\">order</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 554.2306 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 557.5789 554.3191)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 545.2645)\\\" x=\\\"0 4.448 7.112 11.56 15.56 20.008 24.008\\\">process</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 237.6117 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 240.0494 545.2645)\\\" x=\\\"0 2.224 6.672\\\">for</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 249.3853 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 251.8229 545.2645)\\\" x=\\\"0 4.448 8.896 12.896 19.56 24.008 28.456 30.68\\\">payment.</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 284.7292 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 287.1668 545.2645)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.6121 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 294.0498 545.2645)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 298.499 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 300.9366 545.2645)\\\" x=\\\"0 1.824 6.272\\\">law</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.9874 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 315.425 545.2645)\\\" x=\\\"0 4.448 6.272 8.096 12.544 18.32\\\">allows</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 337.7493 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 340.1869 545.2645)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 353.0853 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 355.523 545.2645)\\\" x=\\\"0 6.664 11.112 13.776 18.224\\\">more,</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.9722 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 378.4098 545.2645)\\\" x=\\\"0 2.224 6.672 8.496\\\">this</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 390.9059 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 393.3436 545.2645)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496\\\">Clause</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 418.2928 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 420.7304 545.2645)\\\" x=\\\"0 5.776 10.224 14.672 16.2\\\">won&apos;t</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 439.1562 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 441.5938 545.2645)\\\" x=\\\"0 4.448 7.112 11.56 15.56 20.008 24.456\\\">prevent</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.2774 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 470.7151 545.2645)\\\" x=\\\"0 4 8.448 12.448\\\">such</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 487.6135 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 490.0511 545.2645)\\\" x=\\\"0 4.448 10.224 14.672 17.336 21.784\\\">award.</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 514.0628 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 516.5005 545.2645)\\\" x=\\\"0 7.552\\\">We</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 528.5005 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 530.9381 545.2645)\\\" x=\\\"0 5.776 10.224 14.672 16.2\\\">won&apos;t</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.3639 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 551.8015 545.2645)\\\" x=\\\"0 4 8.448 12.896\\\">seek</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 536.2098)\\\" x=\\\"0 4.448 6.672 8.896 13.344 16.008 20.456 24.904 28.904 31.032 33.256 37.704 42.152 46.152 48.28 52.728 57.176 61.624 63.752 68.2 72.2 76.648 81.096 85.544 89.544 93.992 97.992\\\">attorney fees and expenses.</text></g><clipPath id=\\\"clip5-19\\\"><path d=\\\"M 35 510 L 128 510 L 128 535 L 35 535 L 35 510 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-19)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.6 534.5301 L 127.5 534.5301 L 127.5 510.5301 L 35.6 510.5301 L 35.6 534.5301 z \\\"/><path clip-path=\\\"url(#clip5-19)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.7 530.5301 L 123.4 530.5301 L 123.4 512.4207 L 39.7 512.4207 L 39.7 530.5301 z \\\"/><path clip-path=\\\"url(#clip5-19)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 51.2317 530.5301 L 112.2317 530.5301 L 112.2317 520.5301 L 51.2317 520.5301 L 51.2317 530.5301 z \\\"/><g clip-path=\\\"url(#clip5-19)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 51.2317 523.1551)\\\" x=\\\"0 5.776 10.224 14.672 16.8 21.248 25.696 27.824 32.272 38.048 42.496 45.16 49.608 51.736 56.184\\\">Can an award be</text></g><path clip-path=\\\"url(#clip5-19)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 62.1535 521.4754 L 101.1535 521.4754 L 101.1535 511.4754 L 62.1535 511.4754 L 62.1535 521.4754 z \\\"/><g clip-path=\\\"url(#clip5-19)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 62.1535 514.1004)\\\" x=\\\"0 4.448 8.448 12.896 14.72 19.168 20.992 25.44 29.888 34.336\\\">explained?</text></g><clipPath id=\\\"clip5-20\\\"><path d=\\\"M 127 510 L 206 510 L 206 535 L 127 535 L 127 510 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-20)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 158.4961 523.1551)\\\" x=\\\"0 5.336 9.784 13.784\\\">Yes.</text></g><clipPath id=\\\"clip5-21\\\"><path d=\\\"M 205 510 L 573 510 L 573 535 L 205 535 L 205 510 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 523.1551)\\\" x=\\\"0\\\">A</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 214.9359 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 218.2265 523.1551)\\\" x=\\\"0 4.448 8.896 11.56 13.784\\\">party</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 236.0117 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 239.3023 523.1551)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 254.4155 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 257.7061 523.1551)\\\" x=\\\"0 2.664 7.112 11.56 16.008 20.456 24.456\\\">request</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 284.3897 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 287.6803 523.1551)\\\" x=\\\"0 4.448 8.896 11.12 15.568 17.392 19.216\\\">details</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 310.899 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 314.1896 523.1551)\\\" x=\\\"0 2.224 4.888 9.336\\\">from</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 330.1896 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 333.4802 523.1551)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 344.6013 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 347.8919 523.1551)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608\\\">Arbiter,</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 373.7239 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 377.0145 523.1551)\\\" x=\\\"0 5.776 7.6 9.824 14.272 16.096\\\">within</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 397.5613 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 400.8519 523.1551)\\\" x=\\\"0 4.448\\\">14</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 409.7504 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 413.0409 523.1551)\\\" x=\\\"0 4.448 8.896 12.896\\\">days</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 429.9394 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 433.23 523.1551)\\\" x=\\\"0 4.448\\\">of</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 439.9018 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 443.1924 523.1551)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.3135 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 457.6041 523.1551)\\\" x=\\\"0 2.664 7.112 8.936 10.76 15.208 19.656\\\">ruling.</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 479.4869 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 482.7775 523.1551)\\\" x=\\\"0 5.776 10.224 14.672\\\">Upon</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.9025 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 505.193 523.1551)\\\" x=\\\"0 4 8.448 12.448\\\">such</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 522.0915 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 525.3821 523.1551)\\\" x=\\\"0 2.664 7.112 11.56 16.008 20.456 24.456 26.68\\\">request,</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 554.2883 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 557.5789 523.1551)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 514.1004)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608 25.736 31.512 33.336 35.16 36.984 39.112 43.56 47.56 52.008 53.832 58.28 60.104 64.552 66.68 68.904 73.352 77.8 79.928 82.592 87.04 88.864 90.688 95.136 99.584 101.712 103.536 107.984 110.112 115.888 118.552 120.376 122.6 124.424 128.872 133.32\\\">Arbiter will explain the ruling in writing.</text></g><clipPath id=\\\"clip5-22\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 704.777 L 128 704.777 L 128 703.777 L 35.1 703.777 L 35.1 704.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 703.777 L 36.1 703.777 L 36.1 680.777 L 35.1 680.777 L 35.1 703.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128 704.777 L 206 704.777 L 206 703.777 L 128 703.777 L 128 704.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127 703.777 L 128 703.777 L 128 680.777 L 127 680.777 L 127 703.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 704.777 L 573.3 704.777 L 573.3 703.777 L 206 703.777 L 206 704.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.3 703.777 L 573.3 703.777 L 573.3 680.777 L 572.3 680.777 L 572.3 703.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 703.777 L 206 703.777 L 206 680.777 L 205 680.777 L 205 703.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 680.777 L 128 680.777 L 128 679.777 L 35.1 679.777 L 35.1 680.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 679.777 L 36.1 679.777 L 36.1 657.1769 L 35.1 657.1769 L 35.1 679.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128 680.777 L 206 680.777 L 206 679.777 L 128 679.777 L 128 680.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127 679.777 L 128 679.777 L 128 657.1769 L 127 657.1769 L 127 679.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 680.777 L 573.3 680.777 L 573.3 679.777 L 206 679.777 L 206 680.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.3 679.777 L 573.3 679.777 L 573.3 657.1769 L 572.3 657.1769 L 572.3 679.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 679.777 L 206 679.777 L 206 657.1769 L 205 657.1769 L 205 679.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 657.1769 L 128 657.1769 L 128 656.1769 L 35.1 656.1769 L 35.1 657.1769 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 656.1769 L 36.1 656.1769 L 36.1 633.577 L 35.1 633.577 L 35.1 656.1769 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128 657.1769 L 206 657.1769 L 206 656.1769 L 128 656.1769 L 128 657.1769 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127 656.1769 L 128 656.1769 L 128 633.577 L 127 633.577 L 127 656.1769 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 657.1769 L 573.3 657.1769 L 573.3 656.1769 L 206 656.1769 L 206 657.1769 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.3 656.1769 L 573.3 656.1769 L 573.3 633.577 L 572.3 633.577 L 572.3 656.1769 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 656.1769 L 206 656.1769 L 206 633.577 L 205 633.577 L 205 656.1769 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 633.577 L 128 633.577 L 128 632.577 L 35.1 632.577 L 35.1 633.577 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 632.577 L 36.1 632.577 L 36.1 602.4129 L 35.1 602.4129 L 35.1 632.577 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128 633.577 L 206 633.577 L 206 632.577 L 128 632.577 L 128 633.577 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127 632.577 L 128 632.577 L 128 602.4129 L 127 602.4129 L 127 632.577 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 633.577 L 573.3 633.577 L 573.3 632.577 L 206 632.577 L 206 633.577 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.3 632.577 L 573.3 632.577 L 573.3 602.4129 L 572.3 602.4129 L 572.3 632.577 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 632.577 L 206 632.577 L 206 602.4129 L 205 602.4129 L 205 632.577 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 602.4129 L 128 602.4129 L 128 601.4129 L 35.1 601.4129 L 35.1 602.4129 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 601.4129 L 36.1 601.4129 L 36.1 535.0301 L 35.1 535.0301 L 35.1 601.4129 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128 602.4129 L 206 602.4129 L 206 601.4129 L 128 601.4129 L 128 602.4129 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127 601.4129 L 128 601.4129 L 128 535.0301 L 127 535.0301 L 127 601.4129 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 602.4129 L 573.3 602.4129 L 573.3 601.4129 L 206 601.4129 L 206 602.4129 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.3 601.4129 L 573.3 601.4129 L 573.3 535.0301 L 572.3 535.0301 L 572.3 601.4129 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 601.4129 L 206 601.4129 L 206 535.0301 L 205 535.0301 L 205 601.4129 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 535.0301 L 128 535.0301 L 128 534.0301 L 35.1 534.0301 L 35.1 535.0301 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 511.0301 L 128 511.0301 L 128 510.0301 L 35.1 510.0301 L 35.1 511.0301 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 534.0301 L 36.1 534.0301 L 36.1 511.0301 L 35.1 511.0301 L 35.1 534.0301 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128 535.0301 L 206 535.0301 L 206 534.0301 L 128 534.0301 L 128 535.0301 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128 511.0301 L 206 511.0301 L 206 510.0301 L 128 510.0301 L 128 511.0301 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127 534.0301 L 128 534.0301 L 128 511.0301 L 127 511.0301 L 127 534.0301 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 535.0301 L 573.3 535.0301 L 573.3 534.0301 L 206 534.0301 L 206 535.0301 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 511.0301 L 573.3 511.0301 L 573.3 510.0301 L 206 510.0301 L 206 511.0301 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.3 534.0301 L 573.3 534.0301 L 573.3 511.0301 L 572.3 511.0301 L 572.3 534.0301 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 534.0301 L 206 534.0301 L 206 511.0301 L 205 511.0301 L 205 534.0301 z \\\"/><g clip-path=\\\"url(#clip5-22)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 273.1062 500.3113)\\\" x=\\\"0 7.78 10.56 16.12 21.68 25.01 27.67 35.45 41.01 43.79 46.07 51.63 57.19\\\">Other Options</text></g><clipPath id=\\\"clip5-23\\\"><path d=\\\"M 35 438 L 128 438 L 128 490 L 35 490 L 35 438 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-23)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.6 489.107 L 127.5 489.107 L 127.5 438.107 L 35.6 438.107 L 35.6 489.107 z \\\"/><path clip-path=\\\"url(#clip5-23)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.7 485.607 L 123.4 485.607 L 123.4 458.443 L 39.7 458.443 L 39.7 485.607 z \\\"/><path clip-path=\\\"url(#clip5-23)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 48.2942 485.607 L 115.2942 485.607 L 115.2942 475.607 L 48.2942 475.607 L 48.2942 485.607 z \\\"/><g clip-path=\\\"url(#clip5-23)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 48.2942 478.232)\\\" x=\\\"0 2.224 4.448 6.576 10.576 15.024 19.472 21.6 26.048 30.496 34.944 36.472 38.696 40.824 46.6 51.048 55.496 57.72 59.848 62.072\\\">If you don&apos;t want to</text></g><path clip-path=\\\"url(#clip5-23)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 43.8078 476.5524 L 119.8078 476.5524 L 119.8078 466.5524 L 43.8078 466.5524 L 43.8078 476.5524 z \\\"/><g clip-path=\\\"url(#clip5-23)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 43.8078 469.1774)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 29.392 31.616 33.744 37.744 42.192 46.64 48.768 52.768 57.216 61.664 63.792 67.792 70.016 71.84 73.664\\\">arbitrate, can you still</text></g><path clip-path=\\\"url(#clip5-23)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 49.8254 467.4977 L 113.8254 467.4977 L 113.8254 457.4977 L 49.8254 457.4977 L 49.8254 467.4977 z \\\"/><g clip-path=\\\"url(#clip5-23)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 49.8254 460.1227)\\\" x=\\\"0 4.448 8.896 11.12 13.248 17.696 19.824 22.048 24.712 29.16 33.608 37.608 42.056 46.056 48.28 50.104 54.552 59\\\">get a transaction?</text></g><clipPath id=\\\"clip5-24\\\"><path d=\\\"M 127 438 L 206 438 L 206 490 L 127 490 L 127 438 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-24)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.1817 478.232)\\\" x=\\\"0 5.336 9.784 13.784 16.008 18.136 23.472 27.92 32.368 34.496 38.496 42.944 47.392 49.52 53.968 58.416\\\">Yes. You can get</text></g><g clip-path=\\\"url(#clip5-24)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 137.2266 469.1774)\\\" x=\\\"0 4.448 8.896 11.56 13.688 17.688 22.136 24.8 28.8 30.624 34.624 39.072 43.072 45.2 49.648 54.096\\\">our* D E M O *nd</text></g><g clip-path=\\\"url(#clip5-24)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 143.668 460.1227)\\\" x=\\\"0 4.448 8.896 12.896 14.72 19.168 23.616 25.744 30.192 34.64 36.864 38.992 41.216\\\">decide not to</text></g><g clip-path=\\\"url(#clip5-24)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 150.6914 451.068)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 29.392\\\">arbitrate.</text></g><clipPath id=\\\"clip5-25\\\"><path d=\\\"M 205 438 L 573 438 L 573 490 L 205 490 L 205 438 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-25)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 478.232)\\\" x=\\\"0 5.776 10.224 14.672 18.672 20.496 24.944 29.392 32.056 34.184 36.408 40.856 45.304 49.304 53.752 55.88 59.88 64.328 68.776 70.6 74.6 79.048 83.048\\\">Consider these choices:</text></g><g clip-path=\\\"url(#clip5-25)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 469.1774)\\\" x=\\\"0 4.448 6.672 8.8 11.024 15.472 17.696 22.144 24.808 31.472 35.92 37.744 39.872 45.648 47.472 51.472 55.92 60.368 62.592 67.04 69.168 74.944 79.392 83.392 87.84 89.664 94.112 96.336 98.16 102.608 107.056 109.28 111.408 117.184 121.632 126.08 128.304 132.752 136.752 138.976 141.104 145.552 149.552 151.776 153.904 158.352 162.8 167.248 169.376 173.824 176.048 178.272 182.72 189.384 193.832 196.056 198.184 200.408 204.856 206.984 210.984 215.432 217.656 219.88 221.704 226.152 228.28 232.728 237.176 241.176 243.304 249.08 250.904 254.904 259.352 263.8 266.024 270.472 274.472\\\">1. Informal Dispute Resolution. Contact us, and attempt to settle any Disputes.</text></g><g clip-path=\\\"url(#clip5-25)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 460.1227)\\\" x=\\\"0 4.448 6.672 8.8 14.136 20.8 25.248 27.072 28.896 31.56 35.56 37.384 41.832 43.656 50.32 54.32 56.448 62.224 66.672 71.12 73.784 76.008 78.232 80.36 85.696 90.144 94.592 98.592 100.72 102.944 107.392 109.52 113.52 117.968 119.792 123.792 128.24 130.368 136.144 137.968 141.968 146.416 150.864 153.088 157.536 161.536 163.664 165.488 169.936 172.064 176.064 182.728 187.176 189 190.824 193.488 197.488 199.312 203.76 205.584 212.248 216.248 218.376 222.376 226.824 231.272 233.936 236.16 238.384 240.512 246.288 248.112 250.336 254.784 256.608 261.056 263.184 267.184 269.408 273.856 276.08 280.528 282.656 284.48 288.928 294.704 296.832 298.656 300.48 307.144 308.968 311.192 315.192\\\">2. Small-claims Court. Seek to solve Disputes in small-claims court, within state law limits.</text></g><g clip-path=\\\"url(#clip5-25)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 451.068)\\\" x=\\\"0 4.448 6.672 8.8 15.024 19.472 21.696 23.824 28.272 30.4 34.848 39.296 43.744 47.744 52.192 54.32 61.872 63.696 65.92 70.368 74.816 79.264 81.488 83.616 85.84 90.288 94.736 96.864 102.64 104.464 108.912 113.36 117.36 121.808 124.032 126.16 133.712 136.376 138.2 140.424 144.872 147 149.224 153.672 155.8 160.248 164.248 166.376 170.824 175.272 179.72 181.848 186.296 190.296 194.296 196.424 198.648 203.096 205.76 207.888 212.336 216.784 218.912 224.248 228.696 231.36 235.808 240.256 246.92 251.368 255.816 258.04 260.168 265.944 267.768 269.992 274.44 278.888 283.336 285.56 287.688 289.912 294.36 298.808 300.936 306.712 308.536 312.984 317.432 321.432 325.88\\\">3. Get a Lease Without the Clause. Write to us and ask for an Agreement without the Clause.</text></g><g clip-path=\\\"url(#clip5-25)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 442.0133)\\\" x=\\\"0 4.448 6.672 8.8 15.024 19.472 21.696 24.36 30.584 35.032 37.256 39.384 43.832 46.056 48.184 53.52 56.184 60.632 62.456 64.68 67.344 71.792 74.016 75.84 80.288 84.736 86.96 89.088 94.424 96.248 100.696 105.144 107.272 111.72 116.168 120.616 122.744 124.968 129.416 133.864 138.312 140.44 142.664 144.488 151.152 155.6 157.424 161.424 163.552 168 172.448 174.672 177.336 181.784 186.232 188.456\\\">4. Opt-Out of Arbitration. Sign and then timely opt-out.</text></g><clipPath id=\\\"clip5-26\\\"><path d=\\\"M 35 405 L 128 405 L 128 439 L 35 439 L 35 405 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-26)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.6 438.107 L 127.5 438.107 L 127.5 405.107 L 35.6 405.107 L 35.6 438.107 z \\\"/><path clip-path=\\\"url(#clip5-26)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.7 434.607 L 123.4 434.607 L 123.4 416.4977 L 39.7 416.4977 L 39.7 434.607 z \\\"/><path clip-path=\\\"url(#clip5-26)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 42.1633 434.607 L 121.1633 434.607 L 121.1633 424.607 L 42.1633 424.607 L 42.1633 434.607 z \\\"/><g clip-path=\\\"url(#clip5-26)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 42.1633 427.232)\\\" x=\\\"0 5.776 10.224 14.672 16.8 20.8 25.248 29.696 31.824 36.272 40.72 42.944 45.608 50.056 54.504 56.728 58.856 63.304 65.528 67.656 69.88 74.328\\\">Can you opt-out of the</text></g><path clip-path=\\\"url(#clip5-26)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 66.8508 425.5524 L 96.8508 425.5524 L 96.8508 415.5524 L 66.8508 415.5524 L 66.8508 425.5524 z \\\"/><g clip-path=\\\"url(#clip5-26)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 66.8508 418.1774)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496 24.944\\\">Clause?</text></g><clipPath id=\\\"clip5-27\\\"><path d=\\\"M 127 405 L 206 405 L 206 439 L 127 439 L 127 405 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-27)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 140.7617 427.232)\\\" x=\\\"0 5.336 9.784 13.784 16.008 18.136 25.688 27.512 29.736 34.184 36.008 40.456 42.584 47.032\\\">Yes. Within 60</text></g><g clip-path=\\\"url(#clip5-27)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 156.9395 418.1774)\\\" x=\\\"0 4.448 8.896 12.896 16.896\\\">days.</text></g><clipPath id=\\\"clip5-28\\\"><path d=\\\"M 205 405 L 573 405 L 573 439 L 205 439 L 205 405 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 427.232)\\\" x=\\\"0 7.552 10.216 12.04 14.264\\\">Write</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 228.3109 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 232.8069 427.232)\\\" x=\\\"0 4.448\\\">us</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 241.2562 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 245.7522 427.232)\\\" x=\\\"0 5.776 7.6 9.824 14.272 16.096\\\">within</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 266.299 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 270.795 427.232)\\\" x=\\\"0 4.448\\\">60</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 279.6935 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 284.1895 427.232)\\\" x=\\\"0 4 8.448 10.272 14.72 19.168 23.616 28.064\\\">calendar</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 314.9238 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 319.4198 427.232)\\\" x=\\\"0 4.448 8.896 12.896\\\">days</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 336.3183 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 340.8143 427.232)\\\" x=\\\"0 4.448\\\">of</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 347.4861 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 351.9821 427.232)\\\" x=\\\"0 4 5.824 10.272 14.72 16.544 20.992\\\">signing</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 377.4274 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 381.9234 427.232)\\\" x=\\\"0 4 8.448 12.896\\\">your</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 397.4859 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 401.9819 427.232)\\\" x=\\\"0 4.448 8.896 11.56 16.008 20.456 27.12 31.568 36.016\\\">agreement</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 440.228 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 444.724 427.232)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 451.3959 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 455.8919 427.232)\\\" x=\\\"0 4.448 8.896 11.12 13.784 18.232 22.68\\\">opt-out</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 480.7981 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 485.2941 427.232)\\\" x=\\\"0 4.448\\\">of</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 491.966 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 496.462 427.232)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 507.5831 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 512.0791 427.232)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496\\\">Clause</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 537.0283 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 541.5243 427.232)\\\" x=\\\"0 2.224 6.672\\\">for</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 550.8602 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 555.3562 427.232)\\\" x=\\\"0 2.224 6.672 11.12\\\">that</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 418.1774)\\\" x=\\\"0 4.448 8.896 11.56 16.008 20.456 27.12 31.568 36.016 38.24\\\">agreement.</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 250.0688 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 252.4616 418.1774)\\\" x=\\\"0 4.448 6.272 10.272\\\">List</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 264.9577 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 267.3505 418.1774)\\\" x=\\\"0 4 8.448 12.896\\\">your</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 282.913 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 285.3058 418.1774)\\\" x=\\\"0 4.448 8.896 15.56 20.008\\\">name,</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 307.5402 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 309.933 418.1774)\\\" x=\\\"0 4.448 8.896 13.344 16.008 20.456 24.456 28.456\\\">address,</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 340.6166 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 343.0095 418.1774)\\\" x=\\\"0 4.448 8.448 12.448 16.896 21.344 25.792\\\">account</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.029 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 373.4218 418.1774)\\\" x=\\\"0 4.448 8.896 15.56 20.008 24.456\\\">number</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 400.5468 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 402.9397 418.1774)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 416.2873 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 418.6801 418.1774)\\\" x=\\\"0 4.448 8.896 11.12 15.568\\\">date.</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 436.4731 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 438.8659 418.1774)\\\" x=\\\"0 4.448 6.272 10.272\\\">List</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 451.362 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 453.7549 418.1774)\\\" x=\\\"0 2.224 6.672 11.12\\\">that</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.0986 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 469.4914 418.1774)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 482.3899 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 484.7827 418.1774)\\\" x=\\\"0 2.84 7.288 11.736\\\">&quot;opt</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 498.7437 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 501.1365 418.1774)\\\" x=\\\"0 4.448 8.896 11.12 13.344\\\">out.&quot;</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 517.3201 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 519.7129 418.1774)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 524.1582 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 526.551 418.1774)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 539.4495 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 541.8423 418.1774)\\\" x=\\\"0 4.448 8.896\\\">opt</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.9634 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 555.3562 418.1774)\\\" x=\\\"0 4.448 8.896 11.12\\\">out,</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 409.1227)\\\" x=\\\"0 1.824 4.048 6.176 11.952 13.776 15.6 17.424 19.552 24 28.448 30.272 34.272 36.4 40.848 45.296 49.744 51.568 55.568 57.696 59.92 64.368 66.496 68.72 73.168 77.616 79.84 81.968 86.416 90.864 93.528 97.976 102.424 109.088 113.536 117.984 120.208\\\">it will only apply to that agreement.</text></g><clipPath id=\\\"clip5-29\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 489.607 L 128 489.607 L 128 488.607 L 35.1 488.607 L 35.1 489.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 488.607 L 36.1 488.607 L 36.1 438.607 L 35.1 438.607 L 35.1 488.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128 489.607 L 206 489.607 L 206 488.607 L 128 488.607 L 128 489.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127 488.607 L 128 488.607 L 128 438.607 L 127 438.607 L 127 488.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 489.607 L 573.3 489.607 L 573.3 488.607 L 206 488.607 L 206 489.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.3 488.607 L 573.3 488.607 L 573.3 438.607 L 572.3 438.607 L 572.3 488.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 488.607 L 206 488.607 L 206 438.607 L 205 438.607 L 205 488.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 438.607 L 128 438.607 L 128 437.607 L 35.1 437.607 L 35.1 438.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 405.607 L 128 405.607 L 128 404.607 L 35.1 404.607 L 35.1 405.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 437.607 L 36.1 437.607 L 36.1 405.607 L 35.1 405.607 L 35.1 437.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128 438.607 L 206 438.607 L 206 437.607 L 128 437.607 L 128 438.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128 405.607 L 206 405.607 L 206 404.607 L 128 404.607 L 128 405.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127 437.607 L 128 437.607 L 128 405.607 L 127 405.607 L 127 437.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 438.607 L 573.3 438.607 L 573.3 437.607 L 206 437.607 L 206 438.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 405.607 L 573.3 405.607 L 573.3 404.607 L 206 404.607 L 206 405.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.3 437.607 L 573.3 437.607 L 573.3 405.607 L 572.3 405.607 L 572.3 437.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 437.607 L 206 437.607 L 206 405.607 L 205 405.607 L 205 437.607 z \\\"/><g clip-path=\\\"url(#clip5-29)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 162.1492 377.7699)\\\" x=\\\"0 6.67 10 12.28 17.84 20.62 23.28 28.84 34.4 39.96 42.62 45.95 51.51 54.29 59.85 62.13 67.69 70.35 75.91 78.57 84.13 89.69 93.02 98.58 101.24 106.24 111.8 117.36 122.36 125.02 130.58 133.91 136.57 142.13 144.41 149.97 154.97 157.75 161.08 166.64 172.2 174.48 179.48 182.14 187.14 192.7 198.26 203.26 205.92 211.48 214.26 216.92 219.7 225.26 227.54 232.54 235.2 241.87 247.43 250.76 256.32 261.88 270.21 275.77 281.33\\\">Print and retain a hard copy or electronic copy of this Agreement</text></g><g clip-path=\\\"url(#clip5-29)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 36.5264)\\\" x=\\\"0 6.498 11.997 14.391 16.785 21.789 26.793 29.295 34.299 39.303 44.307 504 506.3906 508.7812 511.1719 513.5625 515.9531 518.3438 520.7344 523.125 525.5156\\\">UT  07/2019          </text></g><g clip-path=\\\"url(#clip5-29)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 26.3398)\\\" x=\\\"0 6.003 11.007 16.011 21.015\\\">Page </text></g><g clip-path=\\\"url(#clip5-29)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 55.8097 26.3398)\\\" x=\\\"0\\\">6</text></g><g clip-path=\\\"url(#clip5-29)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.815 26.3398)\\\" x=\\\"0 2.394 7.398 9.9\\\"> of </text></g><g clip-path=\\\"url(#clip5-29)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 73.1021 26.3398)\\\" x=\\\"0\\\">7</text></g><g clip-path=\\\"url(#clip5-29)\\\"><text stroke=\\\"none\\\" fill=\\\"#d9d9d9\\\" style=\\\"font-family:f5-0; font-size:54pt; white-space:pre\\\" transform=\\\"matrix(0.707 0.707 0.707 -0.707 135.6027 198.5094)\\\" x=\\\"0 56.016 96.048 136.08 176.112 216.144 236.16 284.184 324.216 344.232 364.248 416.232 456.264 480.24\\\">Qoppa Software</text></g><g clip-path=\\\"url(#clip5-29)\\\"><text stroke=\\\"none\\\" fill=\\\"#002ba6\\\" style=\\\"font-family:f5-0; font-size:9pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.932 772)\\\" x=\\\"0 9.336 16.008 22.68 29.352 36.024 39.36 47.364 54.036 57.372 60.708 69.372 76.044 80.04 86.712 90.048 94.044 97.38 104.712 111.384 115.38 118.716 126.72 132.72 139.392 142.056 148.728 155.4 158.736 161.4 168.072 174.744 178.08 187.416 194.088 196.752 202.752 206.088 210.084 213.42 220.092 223.428 226.764 233.436 239.436 242.772 246.108 249.444 258.108 266.772 275.436 278.772 285.444 292.116 298.788 305.46 312.132 315.468 321.468 328.14\\\">Qoppa Software - For Evaluation Only - https://www.qoppa.com</text></g></g></svg></svg></g></svg><br>\\n<?xml version='1.0' encoding='UTF-8'?><svg id=\\\"qoppa_document\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" version=\\\"1.1\\\" xmlns=\\\"http://www.w3.org/2000/svg\\\" xmlns:xlink=\\\"http://www.w3.org/1999/xlink\\\"><!-- jPDFWeb v2019R1.03 - Demo Version --><style>title p { display: block; }</style><g id=\\\"qoppa_viewxform\\\" transform=\\\"matrix(1 0 0 1 0 0)\\\"><style type=\\\"text/css\\\">@font-face {font-family:f6-0;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f6-1;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f6-2;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}</style><svg id=\\\"qoppa_page_p6\\\" class=\\\"qoppa_page\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\"><rect class=\\\"qoppa_pageborder\\\" x=\\\"0.5pt\\\" y=\\\"0.5pt\\\" width=\\\"611pt\\\" height=\\\"791pt\\\" fill=\\\"none\\\" /><svg class=\\\"qoppa_pagecontents\\\" x=\\\"0pt\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" viewBox=\\\"0 0 612 792\\\" ><g class=\\\"qoppa_contentstream\\\" transform=\\\"matrix(1 0 0 -1 0 792)\\\" fill=\\\"black\\\" stroke=\\\"black\\\" stroke-width=\\\"1\\\" stroke-linecap=\\\"butt\\\" stroke-linejoin=\\\"miter\\\" stroke-miterlimit=\\\"10\\\"><clipPath id=\\\"clip6-1\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 284.4843 735.5809)\\\" x=\\\"0 6.67 11.67 17.23 19.51 25.07 27.35\\\">Exhibit</text></g><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(0.99 0 0 -1 314.4843 735.5809)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 317.4843 735.5809)\\\" x=\\\"0\\\">A</text></g><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 94.4 699.1621)\\\" x=\\\"0 3.2783 9.3398 14.8398 20.9014 23.6816 29.1816\\\">Invoice</text></g><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 129.6432 699.1621)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 132.7994 699.1621)\\\" x=\\\"0\\\">#</text></g><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 138.8609 699.1621)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 142.0172 699.1621)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 142.0172 697.4792 L 142.0172 697.4792 L 145.0172 697.4792 L 145.4339 697.4792 L 145.4339 696.6458 L 145.0172 696.6458 L 142.0172 696.6458 L 141.6005 696.6458 L 141.6005 697.4792 z \\\"/><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 145.1734 699.1621)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 145.1734 697.4792 L 145.1734 697.4792 L 148.1734 697.4792 L 148.5901 697.4792 L 148.5901 696.6458 L 148.1734 696.6458 L 145.1734 696.6458 L 144.7568 696.6458 L 144.7568 697.4792 z \\\"/><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 148.3297 699.1621)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 148.3297 697.4792 L 148.3297 697.4792 L 151.3297 697.4792 L 151.7464 697.4792 L 151.7464 696.6458 L 151.3297 696.6458 L 148.3297 696.6458 L 147.913 696.6458 L 147.913 697.4792 z \\\"/><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 151.4859 699.1621)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 151.4859 697.4792 L 151.4859 697.4792 L 154.4859 697.4792 L 154.9026 697.4792 L 154.9026 696.6458 L 154.4859 696.6458 L 151.4859 696.6458 L 151.0693 696.6458 L 151.0693 697.4792 z \\\"/><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 154.6422 699.1621)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 154.6422 697.4792 L 154.6422 697.4792 L 157.6422 697.4792 L 158.0589 697.4792 L 158.0589 696.6458 L 157.6422 696.6458 L 154.6422 696.6458 L 154.2255 696.6458 L 154.2255 697.4792 z \\\"/><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 157.7984 699.1621)\\\" x=\\\"0\\\">0</text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 157.7984 697.4792 L 157.7984 697.4792 L 163.7984 697.4792 L 164.2151 697.4792 L 164.2151 696.6458 L 163.7984 696.6458 L 157.7984 696.6458 L 157.3818 696.6458 L 157.3818 697.4792 z \\\"/><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 163.86 699.1621)\\\" x=\\\"0\\\">4</text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 163.86 697.4792 L 163.86 697.4792 L 169.86 697.4792 L 170.2766 697.4792 L 170.2766 696.6458 L 169.86 696.6458 L 163.86 696.6458 L 163.4433 696.6458 L 163.4433 697.4792 z \\\"/><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 169.9215 699.1621)\\\" x=\\\"0\\\">1</text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 169.9215 697.4792 L 169.9215 697.4792 L 175.9215 697.4792 L 176.3382 697.4792 L 176.3382 696.6458 L 175.9215 696.6458 L 169.9215 696.6458 L 169.5048 696.6458 L 169.5048 697.4792 z \\\"/><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 175.983 699.1621)\\\" x=\\\"0\\\">2</text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 175.983 697.4792 L 175.983 697.4792 L 181.983 697.4792 L 182.3997 697.4792 L 182.3997 696.6458 L 181.983 696.6458 L 175.983 696.6458 L 175.5663 696.6458 L 175.5663 697.4792 z \\\"/><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 182.0445 699.1621)\\\" x=\\\"0\\\">9</text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 182.0445 697.4792 L 182.0445 697.4792 L 188.0445 697.4792 L 188.4612 697.4792 L 188.4612 696.6458 L 188.0445 696.6458 L 182.0445 696.6458 L 181.6279 696.6458 L 181.6279 697.4792 z \\\"/><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 188.1061 699.1621)\\\" x=\\\"0\\\">9</text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 188.1061 697.4792 L 188.1061 697.4792 L 194.1061 697.4792 L 194.5227 697.4792 L 194.5227 696.6458 L 194.1061 696.6458 L 188.1061 696.6458 L 187.6894 696.6458 L 187.6894 697.4792 z \\\"/><clipPath id=\\\"clip6-2\\\"><path d=\\\"M 71 551 L 537 551 L 537 572 L 71 572 L 71 551 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 286.9417 561.1477)\\\" x=\\\"0 6.003 9 14.004 19.008 24.012 28.512 31.014\\\">Products</text></g><clipPath id=\\\"clip6-3\\\"><path d=\\\"M 71 531 L 165 531 L 165 552 L 71 552 L 71 531 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 106.4173 541.1477)\\\" x=\\\"0 7.497 12.501 17.505 22.509\\\">Model</text></g><clipPath id=\\\"clip6-4\\\"><path d=\\\"M 164 531 L 258 531 L 258 552 L 164 552 L 164 531 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-4)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 189.1385 541.1477)\\\" x=\\\"0 6.498 11.502 16.002 20.502 23.499 25.551 30.555 33.057 35.109 40.113\\\">Description</text></g><clipPath id=\\\"clip6-5\\\"><path d=\\\"M 257 531 L 351 531 L 351 552 L 257 552 L 257 531 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-5)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 297.6995 541.1477)\\\" x=\\\"0 7.002 9.504\\\">Qty</text></g><clipPath id=\\\"clip6-6\\\"><path d=\\\"M 350 531 L 444 531 L 444 552 L 350 552 L 350 531 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-6)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 387.4212 541.1477)\\\" x=\\\"0 6.003 9 11.052 15.552\\\">Price</text></g><clipPath id=\\\"clip6-7\\\"><path d=\\\"M 443 531 L 537 531 L 537 552 L 443 552 L 443 531 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-7)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 460.2107 541.1477)\\\" x=\\\"0 6.003 10.503 13.005 18.009 23.013 28.017 33.021 38.025 40.419 46.422 49.419 51.471 55.971\\\">Extended Price</text></g><clipPath id=\\\"clip6-8\\\"><path d=\\\"M 164 511 L 258 511 L 258 532 L 164 532 L 164 511 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 178.6472 522.0696)\\\" x=\\\"0 5.336 9.784 12.448 16.448 18.272 22.272 26.72 30.72 32.848 37.296 41.744 46.192 48.32 53.208 57.656 62.104\\\">Services and Fees</text></g><clipPath id=\\\"clip6-9\\\"><path d=\\\"M 257 511 L 351 511 L 351 532 L 257 532 L 257 511 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 302.4754 522.0696)\\\" x=\\\"0\\\">1</text></g><clipPath id=\\\"clip6-10\\\"><path d=\\\"M 350 511 L 444 511 L 444 532 L 350 532 L 350 511 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 378.8426 522.0696)\\\" x=\\\"0 4.448 6.576 11.024 13.248 17.696 22.144 26.592 28.816 33.264\\\">$ 3,784.97</text></g><clipPath id=\\\"clip6-11\\\"><path d=\\\"M 443 511 L 537 511 L 537 532 L 443 532 L 443 511 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 471.8426 522.0696)\\\" x=\\\"0 4.448 6.576 11.024 13.248 17.696 22.144 26.592 28.816 33.264\\\">$ 3,784.97</text></g><clipPath id=\\\"clip6-12\\\"><path d=\\\"M 164 491 L 258 491 L 258 512 L 164 512 L 164 491 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 196.364 502.0696)\\\" x=\\\"0 6.664 11.112 13.336 15.56 18.224 22.672 26.672\\\">Mattress</text></g><clipPath id=\\\"clip6-13\\\"><path d=\\\"M 257 491 L 351 491 L 351 512 L 257 512 L 257 491 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-13)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 302.4754 502.0696)\\\" x=\\\"0\\\">1</text></g><clipPath id=\\\"clip6-14\\\"><path d=\\\"M 350 491 L 444 491 L 444 512 L 350 512 L 350 491 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-14)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 386.6277 502.0696)\\\" x=\\\"0 4.448 6.576 11.024 13.248 17.696\\\">$ 1.00</text></g><clipPath id=\\\"clip6-15\\\"><path d=\\\"M 443 491 L 537 491 L 537 512 L 443 512 L 443 491 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 479.6277 502.0696)\\\" x=\\\"0 4.448 6.576 11.024 13.248 17.696\\\">$ 1.00</text></g><clipPath id=\\\"clip6-16\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 71.2 572.4446 L 537.2 572.4446 L 537.2 571.4446 L 71.2 571.4446 L 71.2 572.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 536.2 571.4446 L 537.2 571.4446 L 537.2 552.4446 L 536.2 552.4446 L 536.2 571.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 71.2 571.4446 L 72.2 571.4446 L 72.2 552.4446 L 71.2 552.4446 L 71.2 571.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 71.2 552.4446 L 165.2 552.4446 L 165.2 551.4446 L 71.2 551.4446 L 71.2 552.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 71.2 551.4446 L 72.2 551.4446 L 72.2 532.4446 L 71.2 532.4446 L 71.2 551.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 165.2 552.4446 L 258.2 552.4446 L 258.2 551.4446 L 165.2 551.4446 L 165.2 552.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 164.2 551.4446 L 165.2 551.4446 L 165.2 532.4446 L 164.2 532.4446 L 164.2 551.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 258.2 552.4446 L 351.2 552.4446 L 351.2 551.4446 L 258.2 551.4446 L 258.2 552.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 257.2 551.4446 L 258.2 551.4446 L 258.2 532.4446 L 257.2 532.4446 L 257.2 551.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 351.2 552.4446 L 444.2 552.4446 L 444.2 551.4446 L 351.2 551.4446 L 351.2 552.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 350.2 551.4446 L 351.2 551.4446 L 351.2 532.4446 L 350.2 532.4446 L 350.2 551.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 444.2 552.4446 L 537.2 552.4446 L 537.2 551.4446 L 444.2 551.4446 L 444.2 552.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 536.2 551.4446 L 537.2 551.4446 L 537.2 532.4446 L 536.2 532.4446 L 536.2 551.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 443.2 551.4446 L 444.2 551.4446 L 444.2 532.4446 L 443.2 532.4446 L 443.2 551.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 71.2 532.4446 L 165.2 532.4446 L 165.2 531.4446 L 71.2 531.4446 L 71.2 532.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 71.2 531.4446 L 72.2 531.4446 L 72.2 512.4446 L 71.2 512.4446 L 71.2 531.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 165.2 532.4446 L 258.2 532.4446 L 258.2 531.4446 L 165.2 531.4446 L 165.2 532.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 164.2 531.4446 L 165.2 531.4446 L 165.2 512.4446 L 164.2 512.4446 L 164.2 531.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 258.2 532.4446 L 351.2 532.4446 L 351.2 531.4446 L 258.2 531.4446 L 258.2 532.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 257.2 531.4446 L 258.2 531.4446 L 258.2 512.4446 L 257.2 512.4446 L 257.2 531.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 351.2 532.4446 L 444.2 532.4446 L 444.2 531.4446 L 351.2 531.4446 L 351.2 532.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 350.2 531.4446 L 351.2 531.4446 L 351.2 512.4446 L 350.2 512.4446 L 350.2 531.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 444.2 532.4446 L 537.2 532.4446 L 537.2 531.4446 L 444.2 531.4446 L 444.2 532.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 536.2 531.4446 L 537.2 531.4446 L 537.2 512.4446 L 536.2 512.4446 L 536.2 531.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 443.2 531.4446 L 444.2 531.4446 L 444.2 512.4446 L 443.2 512.4446 L 443.2 531.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 71.2 512.4446 L 165.2 512.4446 L 165.2 511.4446 L 71.2 511.4446 L 71.2 512.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 71.2 492.4446 L 165.2 492.4446 L 165.2 491.4446 L 71.2 491.4446 L 71.2 492.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 71.2 511.4446 L 72.2 511.4446 L 72.2 492.4446 L 71.2 492.4446 L 71.2 511.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 165.2 512.4446 L 258.2 512.4446 L 258.2 511.4446 L 165.2 511.4446 L 165.2 512.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 165.2 492.4446 L 258.2 492.4446 L 258.2 491.4446 L 165.2 491.4446 L 165.2 492.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 164.2 511.4446 L 165.2 511.4446 L 165.2 492.4446 L 164.2 492.4446 L 164.2 511.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 258.2 512.4446 L 351.2 512.4446 L 351.2 511.4446 L 258.2 511.4446 L 258.2 512.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 258.2 492.4446 L 351.2 492.4446 L 351.2 491.4446 L 258.2 491.4446 L 258.2 492.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 257.2 511.4446 L 258.2 511.4446 L 258.2 492.4446 L 257.2 492.4446 L 257.2 511.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 351.2 512.4446 L 444.2 512.4446 L 444.2 511.4446 L 351.2 511.4446 L 351.2 512.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 351.2 492.4446 L 444.2 492.4446 L 444.2 491.4446 L 351.2 491.4446 L 351.2 492.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 350.2 511.4446 L 351.2 511.4446 L 351.2 492.4446 L 350.2 492.4446 L 350.2 511.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 444.2 512.4446 L 537.2 512.4446 L 537.2 511.4446 L 444.2 511.4446 L 444.2 512.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 444.2 492.4446 L 537.2 492.4446 L 537.2 491.4446 L 444.2 491.4446 L 444.2 492.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 536.2 511.4446 L 537.2 511.4446 L 537.2 492.4446 L 536.2 492.4446 L 536.2 511.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 443.2 511.4446 L 444.2 511.4446 L 444.2 492.4446 L 443.2 492.4446 L 443.2 511.4446 z \\\"/><clipPath id=\\\"clip6-17\\\"><path d=\\\"M 264 464 L 404 464 L 404 478 L 264 478 L 264 464 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-17)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.9359 468.3239)\\\" x=\\\"0 5.336 9.784 14.232 16.36 21.248 25.696 27.92 32.368 34.192\\\">Sub Total:</text></g><clipPath id=\\\"clip6-18\\\"><path d=\\\"M 403 464 L 535 464 L 535 478 L 403 478 L 403 464 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.55 468.3239)\\\" x=\\\"0 4.448 6.576 11.024 13.248 17.696 22.144 26.592 28.816 33.264\\\">$ 3,785.97</text></g><clipPath id=\\\"clip6-19\\\"><path d=\\\"M 264 451 L 404 451 L 404 465 L 264 465 L 264 451 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-19)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 358.6078 454.8239)\\\" x=\\\"0 5.336 9.784 11.608 16.056 20.056 22.184 27.072 31.52 35.52\\\">Sales Tax:</text></g><clipPath id=\\\"clip6-20\\\"><path d=\\\"M 403 451 L 535 451 L 535 465 L 403 465 L 403 451 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-20)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.55 454.8239)\\\" x=\\\"0 4.448 6.576 11.024 15.472 17.696 22.144\\\">$ 86.03</text></g><clipPath id=\\\"clip6-21\\\"><path d=\\\"M 264 437 L 404 437 L 404 452 L 264 452 L 264 437 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.7758 441.3239)\\\" x=\\\"0 4.888 9.336 11.56 16.008 17.832 19.96 22.184 26.632 30.632 35.08 36.904 40.904 45.352\\\">Total Invoice:</text></g><clipPath id=\\\"clip6-22\\\"><path d=\\\"M 403 437 L 535 437 L 535 452 L 403 452 L 403 437 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-22)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.55 441.3239)\\\" x=\\\"0 4.448 6.576 11.024 13.248 17.696 22.144 26.592 28.816 33.264\\\">$ 3,872.00</text></g><clipPath id=\\\"clip6-23\\\"><path d=\\\"M 264 424 L 404 424 L 404 438 L 264 438 L 264 424 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-23)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 284.3578 427.8239)\\\" x=\\\"0 5.336 12 14.224 16.352 22.128 26.576 31.024 33.152 38.04 42.488 46.936 51.384 55.384 57.512 60.176 65.952 68.176 72.624 74.752 80.088 82.752 87.2 91.2 93.328 98.216 102.664 107.112 109.776\\\">Amt Due Today (w/o Proc Fee):</text></g><clipPath id=\\\"clip6-24\\\"><path d=\\\"M 403 424 L 535 424 L 535 438 L 403 438 L 403 424 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.55 427.8239)\\\" x=\\\"0 4.448 6.576 11.024 13.248 17.696 22.144 26.592 28.816 33.264\\\">$ 3,784.30</text></g><clipPath id=\\\"clip6-25\\\"><path d=\\\"M 264 410 L 404 410 L 404 425 L 264 425 L 264 410 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-25)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.4242 414.3239)\\\" x=\\\"0 5.336 9.784 14.232 16.056 18.184 23.96 28.408 32.408 34.632 36.76 42.536 46.984 50.984 55.432 57.56 62.896 67.344 69.472 74.36 78.808 83.256 87.704 91.704\\\">Addl Cust Cash Pd Today:</text></g><clipPath id=\\\"clip6-26\\\"><path d=\\\"M 403 410 L 535 410 L 535 425 L 403 425 L 403 410 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-26)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.55 414.3239)\\\" x=\\\"0 4.448 6.576 11.024 13.248 17.696\\\">$ 0.00</text></g><clipPath id=\\\"clip6-27\\\"><path d=\\\"M 264 397 L 404 397 L 404 411 L 264 411 L 264 397 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 333.8422 400.8239)\\\" x=\\\"0 5.336 9.784 14.232 18.68 20.808 26.584 31.032 35.032 39.48 41.608 47.384 51.384 55.832 60.28\\\">Snap Cash Used:</text></g><clipPath id=\\\"clip6-28\\\"><path d=\\\"M 403 397 L 535 397 L 535 411 L 403 411 L 403 397 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.55 400.8239)\\\" x=\\\"0 4.448 6.576 11.024 15.472 17.696 22.144\\\">$ 87.70</text></g><clipPath id=\\\"clip6-29\\\"><path d=\\\"M 264 383 L 404 383 L 404 398 L 264 398 L 264 383 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-29)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 274.8227 387.3239)\\\" x=\\\"0 5.336 8 12.448 16.448 18.576 23.464 27.912 32.36 34.488 40.264 44.712 46.536 48.36 52.808 56.808 59.032 63.48 67.928 70.056 72.72 77.168 81.168 83.296 89.96 94.408 97.072 101.072 105.52 109.968 114.416 116.64 119.304\\\">Proc Fee Collected (by Merchant):</text></g><clipPath id=\\\"clip6-30\\\"><path d=\\\"M 403 383 L 535 383 L 535 398 L 403 398 L 403 383 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.55 387.3239)\\\" x=\\\"0 4.448 6.576 11.024 13.248 17.696\\\">$ 0.00</text></g><clipPath id=\\\"clip6-31\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip6-31)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 403.55 464.9489 L 534.3 464.9489 L 534.3 464.4489 L 403.55 464.4489 L 403.55 464.9489 z \\\"/><path clip-path=\\\"url(#clip6-31)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 403.55 451.4489 L 534.3 451.4489 L 534.3 450.9489 L 403.55 450.9489 L 403.55 451.4489 z \\\"/><path clip-path=\\\"url(#clip6-31)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 403.55 437.9489 L 534.3 437.9489 L 534.3 437.4489 L 403.55 437.4489 L 403.55 437.9489 z \\\"/><path clip-path=\\\"url(#clip6-31)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 403.55 424.4489 L 534.3 424.4489 L 534.3 423.9489 L 403.55 423.9489 L 403.55 424.4489 z \\\"/><path clip-path=\\\"url(#clip6-31)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 403.55 410.9489 L 534.3 410.9489 L 534.3 410.4489 L 403.55 410.4489 L 403.55 410.9489 z \\\"/><path clip-path=\\\"url(#clip6-31)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 403.55 397.4489 L 534.3 397.4489 L 534.3 396.9489 L 403.55 396.9489 L 403.55 397.4489 z \\\"/><path clip-path=\\\"url(#clip6-31)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 403.55 383.9489 L 534.3 383.9489 L 534.3 383.4489 L 403.55 383.4489 L 403.55 383.9489 z \\\"/><g clip-path=\\\"url(#clip6-31)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 36.5264)\\\" x=\\\"0 6.498 11.997 14.391 16.785 21.789 26.793 29.295 34.299 39.303 44.307 504 506.3906 508.7812 511.1719 513.5625 515.9531 518.3438 520.7344 523.125 525.5156\\\">UT  07/2019          </text></g><g clip-path=\\\"url(#clip6-31)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 26.3398)\\\" x=\\\"0 6.003 11.007 16.011 21.015\\\">Page </text></g><g clip-path=\\\"url(#clip6-31)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 55.8097 26.3398)\\\" x=\\\"0\\\">7</text></g><g clip-path=\\\"url(#clip6-31)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.815 26.3398)\\\" x=\\\"0 2.394 7.398 9.9\\\"> of </text></g><g clip-path=\\\"url(#clip6-31)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 73.1021 26.3398)\\\" x=\\\"0\\\">7</text></g><g clip-path=\\\"url(#clip6-31)\\\"><text stroke=\\\"none\\\" fill=\\\"#d9d9d9\\\" style=\\\"font-family:f6-0; font-size:54pt; white-space:pre\\\" transform=\\\"matrix(0.707 0.707 0.707 -0.707 135.6027 198.5094)\\\" x=\\\"0 56.016 96.048 136.08 176.112 216.144 236.16 284.184 324.216 344.232 364.248 416.232 456.264 480.24\\\">Qoppa Software</text></g><g clip-path=\\\"url(#clip6-31)\\\"><text stroke=\\\"none\\\" fill=\\\"#002ba6\\\" style=\\\"font-family:f6-0; font-size:9pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.932 772)\\\" x=\\\"0 9.336 16.008 22.68 29.352 36.024 39.36 47.364 54.036 57.372 60.708 69.372 76.044 80.04 86.712 90.048 94.044 97.38 104.712 111.384 115.38 118.716 126.72 132.72 139.392 142.056 148.728 155.4 158.736 161.4 168.072 174.744 178.08 187.416 194.088 196.752 202.752 206.088 210.084 213.42 220.092 223.428 226.764 233.436 239.436 242.772 246.108 249.444 258.108 266.772 275.436 278.772 285.444 292.116 298.788 305.46 312.132 315.468 321.468 328.14\\\">Qoppa Software - For Evaluation Only - https://www.qoppa.com</text></g></g></svg></svg></g></svg><br>\\n</body> \\n </html>\\n\"\n        }\n    },\n    \"success\": true,\n    \"status\": 200\n}"},{"id":"b76601c7-6799-4fb6-8777-63dc4bd40f78","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Content-Type","value":"application/json"},{"key":"Request-Id","value":"123"}],"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/agreement"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"136"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 16 Jul 2020 17:02:21 GMT"},{"key":"x-amzn-RequestId","value":"7bdbe015-ee4e-47a5-a8c5-70f56a2cde04"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"Pxo0aFo-PHcFy6A="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f10881c-f4d45cc21e4bc05a15184b31"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 0a72bb7be10458e1aefa37a097f21894.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"Zcwg0uNr6gJ8ilLNW9-r5krSpR6T7Z-LLnNpLYvub6tAYp-Dx30msw=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"status\": 404,\n    \"error\": [\n        {\n            \"code\": \"application_invalid\",\n            \"type\": \"invalid_request_error\",\n            \"message\": \"Application not found\"\n        }\n    ]\n}"}],"_postman_id":"30102122-bf2c-49ae-acb7-4ed3f8203d9d"},{"name":"Sign agreement","event":[{"listen":"test","script":{"exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});\r","pm.test(\"Success message\", function () {\r","    pm.expect(pm.response.text()).to.include(\"success\");\r","});"],"type":"text/javascript","id":"d84e49dd-2fdb-462d-9175-a32ed62c5c23"}}],"id":"d311a0be-1b1c-49b2-a7c4-f62682338697","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"<p>(optional - ID generated by the client)</p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"agreementInformation\": {\r\n    \"signedTime\": \"2020-02-21T18:00:00Z\",\r\n    \"signedMethod\": \"acceptance\",\r\n    \"signedBy\": \"John Doe\",\r\n    \"device\": \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36\",\r\n    \"deviceIP\": \"10.1.1.10\"\r\n  }\r\n}"},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/signed?document=agreement","description":"<h1 id=\"sign-agreement\">Sign Agreement</h1>\n<p>This endpoint sets the signed date on the application, marks the agreement as signed, and changes the application status from PENDING_SIGNED_DOCS to PENDING_DEL (Pending Delivery) status and PENDING_SHIPPING sub-status.</p>\n<h1 id=\"request-object\">Request Object</h1>\n<h2 id=\"customerinformationhash\"><code>customerInformation:hash</code></h2>\n<blockquote>\n<h4 id=\"signedtimestring\"><code>signedTime:string</code></h4>\n<ul>\n<li>Required</li>\n<li>Date time at which the agreement sign date is in UTC Standard. Example 2020-02-21T18:00:00Z</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"signedmethodstring\"><code>signedMethod:string</code></h4>\n<ul>\n<li>Required</li>\n<li>Signed method. Valid value is only acceptance</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"signedbystring\"><code>signedBy:string</code></h4>\n<ul>\n<li>Optional</li>\n<li>Name of the person signing the lease</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"devicestring\"><code>device:string</code></h4>\n<ul>\n<li>Optional</li>\n<li>Device type on which the agreement is signed</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"deviceipstring\"><code>deviceIP:string</code></h4>\n<ul>\n<li>Optional</li>\n<li>Device address from where the agreement is signed</li>\n</ul>\n</blockquote>\n<h1 id=\"response-object\">Response Object</h1>\n<h2 id=\"datahash\"><code>data:hash</code></h2>\n<blockquote>\n<ul>\n<li>Empty value ( {} ) for successful responses.</li>\n</ul>\n</blockquote>\n<h2 id=\"successboolean\"><code>success:boolean</code></h2>\n<blockquote>\n<ul>\n<li>Value with the result of the request. Possible values are true or false</li>\n</ul>\n</blockquote>\n<h2 id=\"captureboolean\"><code>capture:boolean</code></h2>\n<blockquote>\n<ul>\n<li>Value indicating if the capture endpoint needs to be called to complete the application process. Possible values are true or false</li>\n</ul>\n</blockquote>\n<h2 id=\"statusinteger\"><code>status:integer</code></h2>\n<blockquote>\n<ul>\n<li>Value with status code of the request. For example: 200, 400, 404</li>\n</ul>\n</blockquote>\n","urlObject":{"path":["platform","v1","application","{{applicationId}}","signed"],"host":["{{baseUrl}}"],"query":[{"key":"document","value":"agreement"}],"variable":[]}},"response":[{"id":"5304aaa7-290e-44f2-891b-0cfad070638a","name":"Not Found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123"}],"body":{"mode":"raw","raw":"{\r\n  \"agreementInformation\": {\r\n    \"signedTime\": \"2020-02-21T18:00:00Z\",\r\n    \"signedMethod\": \"acceptance\",\r\n    \"signedBy\": \"John Doe\",\r\n    \"device\": \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36\",\r\n    \"deviceIP\": \"10.1.1.10\"\r\n  }\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{baseUrl}}/platform/v1/application/{{applicationId}}/signed?document=agreement","host":["{{baseUrl}}"],"path":["platform","v1","application","{{applicationId}}","signed"],"query":[{"key":"document","value":"agreement"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"133"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 16 Jul 2020 17:03:16 GMT"},{"key":"x-amzn-RequestId","value":"d596e661-4e08-4944-a32a-e2e9d077101f"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"Pxo9DGyiPHcF25Q="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f108853-ef2b033fb25f0eb879f3d58e"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 0a72bb7be10458e1aefa37a097f21894.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"BW7lO-fv-dBAE-rM71lbkJaSyoAtnfHQkpMjtTQ6XjLCR9GCTyzCBA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"status\": 404,\n    \"error\": [\n        {\n            \"type\": \"validation_error\",\n            \"message\": \"Application not found\",\n            \"code\": \"application_not_found\"\n        }\n    ]\n}"},{"id":"490f8cf7-785d-43d0-b461-0f90da82de97","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123"}],"body":{"mode":"raw","raw":"{\r\n  \"agreementInformation\": {\r\n    \"signedTime\": \"2020-02-21T18:00:00Z\",\r\n    \"signedMethod\": \"acceptance\",\r\n    \"signedBy\": \"John Doe\",\r\n    \"device\": \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36\",\r\n    \"deviceIP\": \"10.1.1.10\"\r\n  }\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{baseUrl}}/platform/v1/application/{{applicationId}}/signed?document=agreement","host":["{{baseUrl}}"],"path":["platform","v1","application","{{applicationId}}","signed"],"query":[{"key":"document","value":"agreement"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"39"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:25:11 GMT"},{"key":"x-amzn-RequestId","value":"1fb9d04e-d5d8-4c52-ab99-f280f30974e6"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P02TZGf6vHcFvIA="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d0e2-d14a91504ec81fad79cc0598"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"TGhuOXXJY2_ad54jcWoH4dSCFk37DVH5IoBeHg8qehauxewnMC9pxA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {},\n    \"status\": 200,\n    \"capture\": true \n}"},{"id":"d27d0a89-0e61-4d02-a9b3-4f17b1a1e88f","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123"}],"body":{"mode":"raw","raw":"{\r\n  \"agreementInformation\": {\r\n    \"signedTime\": \"2020-02-21T18:00:00Z\",\r\n    \"signedMethod\": \"acceptance\",\r\n    \"signedBy\": \"John Doe\",\r\n    \"device\": \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36\",\r\n    \"deviceIP\": \"10.1.1.10\"\r\n  }\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{baseUrl}}/platform/v1/application/{{applicationId}}/signed?document=agreement","host":["{{baseUrl}}"],"path":["platform","v1","application","{{applicationId}}","signed"],"query":[{"key":"document","value":"agreement"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"39"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:25:11 GMT"},{"key":"x-amzn-RequestId","value":"1fb9d04e-d5d8-4c52-ab99-f280f30974e6"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P02TZGf6vHcFvIA="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d0e2-d14a91504ec81fad79cc0598"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"TGhuOXXJY2_ad54jcWoH4dSCFk37DVH5IoBeHg8qehauxewnMC9pxA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {},\n    \"status\": 200,\n    \"capture\": true \n}"},{"id":"a3d67dd3-7726-4c78-b406-13c263a37245","name":"Not Found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123"}],"body":{"mode":"raw","raw":"{\r\n  \"agreementInformation\": {\r\n    \"signedTime\": \"2020-02-21T18:00:00Z\",\r\n    \"signedMethod\": \"acceptance\",\r\n    \"signedBy\": \"John Doe\",\r\n    \"device\": \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36\",\r\n    \"deviceIP\": \"10.1.1.10\"\r\n  }\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{baseUrl}}/platform/v1/application/{{applicationId}}/signed?document=agreement","host":["{{baseUrl}}"],"path":["platform","v1","application","{{applicationId}}","signed"],"query":[{"key":"document","value":"agreement"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"133"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 16 Jul 2020 17:03:16 GMT"},{"key":"x-amzn-RequestId","value":"d596e661-4e08-4944-a32a-e2e9d077101f"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"Pxo9DGyiPHcF25Q="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f108853-ef2b033fb25f0eb879f3d58e"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 0a72bb7be10458e1aefa37a097f21894.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"BW7lO-fv-dBAE-rM71lbkJaSyoAtnfHQkpMjtTQ6XjLCR9GCTyzCBA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"status\": 404,\n    \"error\": [\n        {\n            \"type\": \"validation_error\",\n            \"message\": \"Application not found\",\n            \"code\": \"application_not_found\"\n        }\n    ]\n}"}],"_postman_id":"d311a0be-1b1c-49b2-a7c4-f62682338697"},{"name":"Capture Application","event":[{"listen":"test","script":{"exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});\r","pm.test(\"Success message\", function () {\r","    pm.expect(pm.response.text()).to.include(\"success\");\r","});"],"type":"text/javascript","id":"f09f9aa5-3aef-40ac-a3cb-cced5aa33700"}}],"id":"0207b9fa-9f9b-4136-9b9a-de90cc36ce95","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"<p>(optional - ID generated by the client)</p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"deliveryDate\": \"2020-07-08\"\r\n}"},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/capture","description":"<h1 id=\"capture-application\">Capture Application</h1>\n<p>This endpoint updates the application delivery date changes its status from PENDING_DEL to COMPLETE and initiates the process to fund the application.</p>\n<h1 id=\"request-object\">Request Object</h1>\n<blockquote>\n<h2 id=\"deliverydatestring-date\"><code>deliveryDate:string (Date)</code></h2>\n<ul>\n<li>Required</li>\n<li>Date should be in YYYY-MM-DD format. Delivery Date in ISO format</li>\n</ul>\n</blockquote>\n<h1 id=\"response-object\">Response Object</h1>\n<h2 id=\"datahash\"><code>data:hash</code></h2>\n<blockquote>\n<ul>\n<li>Empty value ( {} ) for successful responses.</li>\n</ul>\n</blockquote>\n<h2 id=\"successboolean\"><code>success:boolean</code></h2>\n<blockquote>\n<ul>\n<li>Value with the result of the request. Possible values are TRUE or FALSE</li>\n</ul>\n</blockquote>\n<h2 id=\"statusinteger\"><code>status:integer</code></h2>\n<blockquote>\n<ul>\n<li>Value with status code of the request. For example: 200, 400, 404</li>\n</ul>\n</blockquote>\n","urlObject":{"path":["platform","v1","application","{{applicationId}}","capture"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"f854e3ee-651e-438d-9a83-8bf9d6c5e9c5","name":"Not Found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123"}],"body":{"mode":"raw","raw":"{\r\n\t\"deliveryDate\": \"2020-07-08\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/capture"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"133"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 16 Jul 2020 18:26:55 GMT"},{"key":"x-amzn-RequestId","value":"1473e786-3ec1-4200-9c73-39d1dec008cd"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"Px1NXHxcPHcFhSQ="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f109bef-9cb725502fac17205c442a40"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 6492b42e2fc3684cc00b54d685c2328c.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"ma8Z6BOstjyboUIGZiQ8QtDYb4JzTQsi-XrqvRI5Zqd1rnmd9xcfsw=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"status\": 404,\n    \"error\": [\n        {\n            \"type\": \"validation_error\",\n            \"message\": \"Application not found\",\n            \"code\": \"application_not_found\"\n        }\n    ]\n}"},{"id":"76e654f1-fef3-48ca-9565-e3a564498b69","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123"}],"body":{"mode":"raw","raw":"{\r\n\t\"deliveryDate\": \"2020-07-08\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/capture"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"39"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:26:10 GMT"},{"key":"x-amzn-RequestId","value":"925cf780-dcfc-4f9b-86a5-720b308c2514"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P02dPHvfvHcF4Sw="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d121-f3cf0d83e94684f53be9c37d"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"bSFAKB6f-njXKj6ZNGK2dnkYOt15wbujC4tyWTxf6YIqdCOwiNAlJQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {},    \n    \"status\": 200\n}"},{"id":"5918b50a-79c6-48df-b35a-f13b66b81732","name":"Not Found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123"}],"body":{"mode":"raw","raw":"{\r\n\t\"deliveryDate\": \"2020-07-08\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/capture"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"133"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 16 Jul 2020 18:26:55 GMT"},{"key":"x-amzn-RequestId","value":"1473e786-3ec1-4200-9c73-39d1dec008cd"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"Px1NXHxcPHcFhSQ="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f109bef-9cb725502fac17205c442a40"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 6492b42e2fc3684cc00b54d685c2328c.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"ma8Z6BOstjyboUIGZiQ8QtDYb4JzTQsi-XrqvRI5Zqd1rnmd9xcfsw=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"status\": 404,\n    \"error\": [\n        {\n            \"type\": \"validation_error\",\n            \"message\": \"Application not found\",\n            \"code\": \"application_not_found\"\n        }\n    ]\n}"},{"id":"7b3c89f3-7a96-4db3-b4c4-6c6f6f93aa82","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123"}],"body":{"mode":"raw","raw":"{\r\n\t\"deliveryDate\": \"2020-07-08\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/capture"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"39"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:26:10 GMT"},{"key":"x-amzn-RequestId","value":"925cf780-dcfc-4f9b-86a5-720b308c2514"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P02dPHvfvHcF4Sw="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d121-f3cf0d83e94684f53be9c37d"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"bSFAKB6f-njXKj6ZNGK2dnkYOt15wbujC4tyWTxf6YIqdCOwiNAlJQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {},    \n    \"status\": 200\n}"}],"_postman_id":"0207b9fa-9f9b-4136-9b9a-de90cc36ce95"},{"name":"Refund","event":[{"listen":"test","script":{"exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});\r","pm.test(\"Success message\", function () {\r","    pm.expect(pm.response.text()).to.include(\"success\");\r","});"],"type":"text/javascript","id":"5c30a675-834a-4fa0-b12c-0cdfa04c915f"}}],"id":"1f5376fe-4ab2-4285-bf72-2debb387019c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"<p>(optional - ID generated by the client)</p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"products\": [\r\n    {\r\n      \"amount\": \"1.00\",\r\n      \"itemId\": \"ABC\",\r\n      \"quantity\": 1\r\n    }\r\n  ]\r\n}"},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/refund","description":"<h1 id=\"refund\">Refund</h1>\n<p>This endpoint refunds full or partial payment on LTO applications and changes its sub-status to either Refunded or Partially Refunded. There are two ways to do it, check the next request options.</p>\n<h1 id=\"request-object-option-1\">Request Object Option 1</h1>\n<p>Using specific information of a product(s):</p>\n<blockquote>\n<h2 id=\"productshash-array\"><code>products:hash array</code></h2>\n<ul>\n<li>Required</li>\n<li>An array with at least one product</li>\n</ul>\n<h4 id=\"productsamountstring-numeric\"><code>products.amount:string (Numeric)</code></h4>\n<blockquote>\n<ul>\n<li>Required</li>\n<li>Exact price of the product</li>\n</ul>\n</blockquote>\n<h4 id=\"productsitemidstring\"><code>products.itemId:string</code></h4>\n<blockquote>\n<ul>\n<li>Required</li>\n<li>Item ID of the product</li>\n</ul>\n</blockquote>\n<h4 id=\"productsquantityinteger\"><code>products.quantity:Integer</code></h4>\n<blockquote>\n<ul>\n<li>Required</li>\n<li>Quantity of the product</li>\n</ul>\n</blockquote>\n</blockquote>\n<h1 id=\"request-object-option-2\">Request Object Option 2</h1>\n<p>Using an specific amount:</p>\n<blockquote>\n<h2 id=\"adjustmenthash\"><code>adjustment:hash</code></h2>\n<h4 id=\"amountstring-numeric\"><code>amount:string (Numeric)</code></h4>\n<blockquote>\n<ul>\n<li>Required</li>\n<li>Negative refund amount</li>\n</ul>\n</blockquote>\n</blockquote>\n<h1 id=\"response-object\">Response Object</h1>\n<h2 id=\"datahash\"><code>data:hash</code></h2>\n<blockquote>\n<ul>\n<li>Empty value ( {} ) for successful responses.</li>\n</ul>\n</blockquote>\n<h2 id=\"successboolean\"><code>success:boolean</code></h2>\n<blockquote>\n<ul>\n<li>Value with the result of the request. Possible values are TRUE or FALSE</li>\n</ul>\n</blockquote>\n<h2 id=\"statusinteger\"><code>status:integer</code></h2>\n<blockquote>\n<ul>\n<li>Value with status code of the request. For example: 200, 400, 404</li>\n</ul>\n</blockquote>\n","urlObject":{"path":["platform","v1","application","{{applicationId}}","refund"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"0b9b99ec-f9e7-4809-8c4a-81d7546bc8a0","name":"OK Option 2","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"adjustment\": \r\n    {\r\n      \"amount\": \"-50.00\"\r\n    }\r\n}"},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/refund"},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{    \r\n    \"success\": true,\r\n    \"data\": {},\r\n    \"status\": 200\r\n}"},{"id":"9348005f-b0d7-417e-83f3-311ef79a559a","name":"OK Option 1","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123"}],"body":{"mode":"raw","raw":"{\r\n  \"products\": [\r\n    {\r\n      \"amount\": \"1.00\",\r\n      \"itemId\": \"ABC\",\r\n      \"quantity\": 1\r\n    }\r\n  ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/refund"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"39"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:26:57 GMT"},{"key":"x-amzn-RequestId","value":"0cb73793-f0dd-4438-829c-415c7155efcf"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P02kwF5hPHcF8_g="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d151-db105366d62996e40114bb32"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"9BdrvPsnb7WioJYWC4JtSltOW4weJHXSdPS6hO4PeZYYukvhSSSg5A=="}],"cookie":[],"responseTime":null,"body":"{    \n    \"success\": true,\n    \"data\": {},\n    \"status\": 200\n}"},{"id":"3686bdc6-fb50-4f1c-a00d-f1a1bed9e8dc","name":"Not Found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123"}],"body":{"mode":"raw","raw":"{\r\n  \"products\": [\r\n    {\r\n      \"amount\": \"1.00\",\r\n      \"itemId\": \"ABC\",\r\n      \"quantity\": 1\r\n    }\r\n  ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/refund"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"133"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:21:20 GMT"},{"key":"x-amzn-RequestId","value":"88317457-385d-42c2-8a60-b6109127bbcc"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P01wCEOjvHcFZVg="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d000-bbce4d1ff03d29d0fd1a8420"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"16cCiP5eIHIHnMoJ09EmaduydYyFgSDM_PsbyiGc54g12GLNGF57MA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,    \n    \"error\": [\n        {\n            \"type\": \"validation_error\",\n            \"message\": \"Application not found\",\n            \"code\": \"application_not_found\"\n        }\n    ],\n    \"status\": 404\n}"},{"id":"262a6d67-2a3c-4a1d-beec-486233b88023","name":"OK Option 2","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"adjustment\": \r\n    {\r\n      \"amount\": \"-50.00\"\r\n    }\r\n}"},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/refund"},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{    \r\n    \"success\": true,\r\n    \"data\": {},\r\n    \"status\": 200\r\n}"},{"id":"b616e8e4-a614-4cad-be75-7435d9d5e0e2","name":"Not Found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123"}],"body":{"mode":"raw","raw":"{\r\n  \"products\": [\r\n    {\r\n      \"amount\": \"1.00\",\r\n      \"itemId\": \"ABC\",\r\n      \"quantity\": 1\r\n    }\r\n  ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/refund"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"133"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:21:20 GMT"},{"key":"x-amzn-RequestId","value":"88317457-385d-42c2-8a60-b6109127bbcc"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P01wCEOjvHcFZVg="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d000-bbce4d1ff03d29d0fd1a8420"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"16cCiP5eIHIHnMoJ09EmaduydYyFgSDM_PsbyiGc54g12GLNGF57MA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,    \n    \"error\": [\n        {\n            \"type\": \"validation_error\",\n            \"message\": \"Application not found\",\n            \"code\": \"application_not_found\"\n        }\n    ],\n    \"status\": 404\n}"},{"id":"4c8b1a66-dd5c-4e2d-ad80-6db99989c144","name":"OK Option 1","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123"}],"body":{"mode":"raw","raw":"{\r\n  \"products\": [\r\n    {\r\n      \"amount\": \"1.00\",\r\n      \"itemId\": \"ABC\",\r\n      \"quantity\": 1\r\n    }\r\n  ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/refund"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"39"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:26:57 GMT"},{"key":"x-amzn-RequestId","value":"0cb73793-f0dd-4438-829c-415c7155efcf"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P02kwF5hPHcF8_g="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d151-db105366d62996e40114bb32"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"9BdrvPsnb7WioJYWC4JtSltOW4weJHXSdPS6hO4PeZYYukvhSSSg5A=="}],"cookie":[],"responseTime":null,"body":"{    \n    \"success\": true,\n    \"data\": {},\n    \"status\": 200\n}"}],"_postman_id":"1f5376fe-4ab2-4285-bf72-2debb387019c"},{"name":"Cancel application","event":[{"listen":"test","script":{"exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});\r","pm.test(\"Success message\", function () {\r","    pm.expect(pm.response.text()).to.include(\"success\");\r","});"],"type":"text/javascript","id":"aecc0a3c-4de4-4dad-9425-7026d6dca4d2"}}],"id":"20418f10-3264-4ee8-b299-2d0387195c44","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"<p>(optional - ID generated by the client)</p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"reason\": \"Cancellation reason\"\r\n}"},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/cancel","description":"<h1 id=\"cancel-application\">Cancel Application</h1>\n<p>This endpoint cancels the application that is not funded and changes the application status to Withdrawn.</p>\n<h2 id=\"path-params\">PATH PARAMS</h2>\n<blockquote>\n<h2 id=\"applicationidstring\"><code>applicationId:string</code></h2>\n<ul>\n<li>Required</li>\n<li>ApplicationId is returned when calling the create application endpoint</li>\n</ul>\n</blockquote>\n<p><strong>Important:</strong></p>\n<p><em>This endpoint could be called just if the application has the status: Pending Sign Documents, Pending Delivery, or Complete.</em></p>\n<h1 id=\"request-object\">Request Object</h1>\n<blockquote>\n<h2 id=\"reasonstring\"><code>reason:string</code></h2>\n<ul>\n<li>Required</li>\n<li>Cancel reason</li>\n</ul>\n</blockquote>\n<h1 id=\"response-object\">Response Object</h1>\n<h2 id=\"datahash\"><code>data:hash</code></h2>\n<blockquote>\n<ul>\n<li>Empty value ( {} ) for successful responses.</li>\n</ul>\n</blockquote>\n<h2 id=\"successboolean\"><code>success:boolean</code></h2>\n<blockquote>\n<ul>\n<li>Value with the result of the request. Possible values are TRUE or FALSE</li>\n</ul>\n</blockquote>\n<h2 id=\"statusinteger\"><code>status:integer</code></h2>\n<blockquote>\n<ul>\n<li>Value with status code of the request. For example: 200, 400, 404</li>\n</ul>\n</blockquote>\n","urlObject":{"path":["platform","v1","application","{{applicationId}}","cancel"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"aed2beed-9a7c-404f-9553-0ce380f8cacd","name":"Payment Required","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123"}],"body":{"mode":"raw","raw":"{\r\n  \"reason\": \"Just testing\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/cancel"},"status":"Payment Required","code":402,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"151"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:29:25 GMT"},{"key":"x-amzn-RequestId","value":"77c416aa-f789-4e69-a93c-17495af51014"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P027vEpuvHcFo3A="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d1e4-e3ee5d7f37aa94e31d23df69"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"pL1yn6tOUtAkDwobO--gyPVNysomUz0yDMCvY4E05pjbg273scoTJQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"status\": 402,\n    \"error\": [\n        {\n            \"type\": \"validation_error\",\n            \"message\": \"Application already in a canceled status\",\n            \"code\": \"application_canceled\"\n        }\n    ]\n}"},{"id":"404281ac-055f-4e09-a529-15e271dacf18","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123"}],"body":{"mode":"raw","raw":"{\r\n  \"reason\": \"Just testing\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/cancel"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"39"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:29:58 GMT"},{"key":"x-amzn-RequestId","value":"199232de-ba00-41d0-a06c-e24528b078bd"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P03A7HF7vHcFxFw="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d205-2e6265be9b369c6c0d906ec8"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"f7vbn4H0wim_lwjCA-23_AoRofr_dvM5Fl3yCcUSLEfkg3eK6wtkzQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {},\n    \"status\": 200\n}"},{"id":"01ec4e36-e3b3-478a-bdcf-d1ac52557a8d","name":"Payment Required","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123"}],"body":{"mode":"raw","raw":"{\r\n  \"reason\": \"Just testing\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/cancel"},"status":"Payment Required","code":402,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"151"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:29:25 GMT"},{"key":"x-amzn-RequestId","value":"77c416aa-f789-4e69-a93c-17495af51014"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P027vEpuvHcFo3A="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d1e4-e3ee5d7f37aa94e31d23df69"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"pL1yn6tOUtAkDwobO--gyPVNysomUz0yDMCvY4E05pjbg273scoTJQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"status\": 402,\n    \"error\": [\n        {\n            \"type\": \"validation_error\",\n            \"message\": \"Application already in a canceled status\",\n            \"code\": \"application_canceled\"\n        }\n    ]\n}"},{"id":"3482e461-ac62-4b9d-9ac7-e453842bddbf","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123"}],"body":{"mode":"raw","raw":"{\r\n  \"reason\": \"Just testing\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/cancel"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"39"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:29:58 GMT"},{"key":"x-amzn-RequestId","value":"199232de-ba00-41d0-a06c-e24528b078bd"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P03A7HF7vHcFxFw="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d205-2e6265be9b369c6c0d906ec8"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"f7vbn4H0wim_lwjCA-23_AoRofr_dvM5Fl3yCcUSLEfkg3eK6wtkzQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {},\n    \"status\": 200\n}"}],"_postman_id":"20418f10-3264-4ee8-b299-2d0387195c44"},{"name":"Reporting Applications","event":[{"listen":"test","script":{"exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});\r","pm.test(\"Success message\", function () {\r","    pm.expect(pm.response.text()).to.include(\"success\");\r","});"],"type":"text/javascript","packages":{},"id":"d5e153ff-2034-4f3e-8cc7-767946055e55"}}],"id":"010a9044-76ef-467e-9866-5f380938eddd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"<p>(optional - ID generated by the client)</p>\n","type":"text"}],"url":"{{baseUrl}}/platform/v1/reporting/applications?limit=20&offset=0&startDatetime=2021-01-25&endDatetime=2024-02-09","description":"<h1 id=\"reporting-applications\">Reporting Applications</h1>\n<p>This endpoint retrieves the applications for the given time period.</p>\n<h2 id=\"query-params\">QUERY PARAMS</h2>\n<h2 id=\"limitinteger\"><code>limit:Integer</code></h2>\n<ul>\n<li>Required</li>\n</ul>\n<h2 id=\"offsetinteger\"><code>offset:Integer</code></h2>\n<ul>\n<li>Required</li>\n</ul>\n<h2 id=\"startdatetimedate\"><code>startDatetime:Date</code></h2>\n<ul>\n<li>Required</li>\n</ul>\n<h2 id=\"enddatetimedate\"><code>endDatetime:Date</code></h2>\n<ul>\n<li>Required</li>\n</ul>\n<h1 id=\"response-object\">Response Object</h1>\n<h2 id=\"datahash\"><code>data:hash</code></h2>\n<h4 id=\"totalapplicationsstring\"><code>totalApplications:string</code></h4>\n<blockquote>\n<p>Value with count of applications </p>\n</blockquote>\n<h2 id=\"linkshash-relstring\"><code>links:hash rel:string</code></h2>\n<p>value with result of request : Possible values are self or next</p>\n<h2 id=\"hrefstring\"><code>href:string</code></h2>\n<p>value with result of request : endpoint URL</p>\n<h2 id=\"applicationshash-applicationidstring\"><code>applications:hash applicationId:string</code></h2>\n<p>value with result of request : application Id</p>\n<h2 id=\"applicationcreatetimedate\"><code>applicationCreateTime:date</code></h2>\n<p>value with result of request : application created date and time</p>\n<h2 id=\"applicationupdatetimedate\"><code>applicationUpdateTime:date</code></h2>\n<p>value with result of request : application last updated date and time</p>\n<h2 id=\"statusstring\"><code>status:string</code></h2>\n<p>value with result of request : application status</p>\n<h2 id=\"amountstring\"><code>amount:string</code></h2>\n<p>value with result of request : amount</p>\n<h2 id=\"emailstring\"><code>email:string</code></h2>\n<p>value with result of request : Email id</p>\n<h2 id=\"firstnamestring\"><code>firstname:string</code></h2>\n<p>value with result of request : first name</p>\n<h2 id=\"lastnamestring\"><code>lastname:string</code></h2>\n<p>value with result of request : last name</p>\n<h2 id=\"mobilephonestring\"><code>mobilePhone:string</code></h2>\n<p>value with result of request : Mobile phone number</p>\n<h2 id=\"successboolean\"><code>success:boolean</code></h2>\n<blockquote>\n<p>&lt;ul &gt;&lt;li &gt;&lt;p &gt;Value with the result of the request. Possible values are TRUE or False&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt; </p>\n</blockquote>\n<h2 id=\"statusinteger\"><code>status:integer</code></h2>\n<blockquote>\n<p>&lt;ul &gt;&lt;li &gt;&lt;p &gt;Value with status code of the request. For example: 200, 400, 404&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;</p>\n</blockquote>\n","urlObject":{"path":["platform","v1","reporting","applications"],"host":["{{baseUrl}}"],"query":[{"key":"limit","value":"20"},{"key":"offset","value":"0"},{"key":"startDatetime","value":"2021-01-25"},{"key":"endDatetime","value":"2024-02-09"}],"variable":[]}},"response":[{"id":"a97c2cd8-58d9-4e40-9564-c9a05891851b","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer pORU5GTWtNeE1UQkJPVE5DUl....JiWYvnmRQSSCozUr6Xt7RXRK","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Content-Type","value":"application/json"},{"key":"Request-Id","value":"123"}],"url":{"raw":"https://api-sandbox.snapfinance.com/platform/v1/reporting/applications?limit=20&offset=0&startDatetime=2021-01-25&endDatetime=2024-02-09","protocol":"https","host":["api-sandbox","snapfinance","com"],"path":["platform","v1","reporting","applications"],"query":[{"key":"limit","value":"20"},{"key":"offset","value":"0"},{"key":"startDatetime","value":"2021-01-25"},{"key":"endDatetime","value":"2024-02-09"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"244"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:24:19 GMT"},{"key":"x-amzn-RequestId","value":"f42aea7e-5211-4753-a26a-e8db4014d312"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P02LeGszvHcFsxg="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d0af-3504dad84d30e4d08259a3b0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"jen45MDpH8DQoOEaPFvDVJdGipmCzTuiyeN1iMqlvOUBQG5Kixtyow=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"totalApplications\": \"3804\",\n        \"links\": [\n            {\n                \"rel\": \"self\",\n                \"href\": \"/platform/v1/reporting/applications?endDatetime=2024-02-09&limit=20&offset=0&startDatetime=2021-01-25\"\n            },\n            {\n                \"rel\": \"next\",\n                \"href\": \"/platform/v1/reporting/applications?endDatetime=2024-02-09&limit=20&offset=20&startDatetime=2021-01-25\"\n            }\n        ],\n        \"applications\": [\n            {\n                \"applicationId\": \"240209000NUT\",\n                \"applicationCreateTime\": \"2024-02-09T20:33:55.260Z\",\n                \"applicationUpdateTime\": \"2024-02-09T20:34:36.141Z\",\n                \"status\": \"COMPLETE\",\n                \"amount\": \"600.00\",\n                \"email\": \"ralvarado@snapfinance.com\",\n                \"firstName\": \"John\",\n                \"lastName\": \"Test\",\n                \"mobilePhone\": \"4707891088\"\n            },\n            {\n                \"applicationId\": \"240209000NUT\",\n                \"applicationCreateTime\": \"2024-02-09T20:33:55.260Z\",\n                \"applicationUpdateTime\": \"2024-02-09T20:34:36.141Z\",\n                \"status\": \"COMPLETE\",\n                \"amount\": \"600.00\",\n                \"email\": \"ralvarado@snapfinance.com\",\n                \"firstName\": \"John\",\n                \"lastName\": \"Test\",\n                \"mobilePhone\": \"1000000033\"\n            },\n            {\n                \"applicationId\": \"240209000MCA\",\n                \"applicationCreateTime\": \"2024-02-09T20:32:26.551Z\",\n                \"applicationUpdateTime\": \"2024-03-12T17:31:51.251Z\",\n                \"status\": \"PENDING_DOCS\",\n                \"amount\": \"222.00\",\n                \"email\": \"test@test.com\",\n                \"firstName\": \"Valentino\",\n                \"lastName\": \"Rossi\",\n                \"mobilePhone\": \"4012131232\"\n            },\n            {\n                \"applicationId\": \"240209000LUT\",\n                \"applicationCreateTime\": \"2024-02-09T20:30:14.562Z\",\n                \"applicationUpdateTime\": \"2024-02-09T20:30:16.762Z\",\n                \"status\": \"PREQUALIFIED\",\n                \"amount\": null,\n                \"email\": \"ralvarado@snapfinance.com\",\n                \"firstName\": \"John\",\n                \"lastName\": \"Test\",\n                \"mobilePhone\": \"4707891088\"\n            },\n            {\n                \"applicationId\": \"240209000LUT\",\n                \"applicationCreateTime\": \"2024-02-09T20:30:14.562Z\",\n                \"applicationUpdateTime\": \"2024-02-09T20:30:16.762Z\",\n                \"status\": \"PREQUALIFIED\",\n                \"amount\": null,\n                \"email\": \"ralvarado@snapfinance.com\",\n                \"firstName\": \"John\",\n                \"lastName\": \"Test\",\n                \"mobilePhone\": \"1000000033\"\n            },\n            {\n                \"applicationId\": \"240209000KUT\",\n                \"applicationCreateTime\": \"2024-02-09T20:27:22.862Z\",\n                \"applicationUpdateTime\": \"2024-02-09T20:34:16.586Z\",\n                \"status\": \"WITHDRAWN\",\n                \"amount\": \"600.00\",\n                \"email\": \"ralvarado@snapfinance.com\",\n                \"firstName\": \"John\",\n                \"lastName\": \"Test\",\n                \"mobilePhone\": \"1000000033\"\n            },\n            {\n                \"applicationId\": \"240209000KUT\",\n                \"applicationCreateTime\": \"2024-02-09T20:27:22.862Z\",\n                \"applicationUpdateTime\": \"2024-02-09T20:34:16.586Z\",\n                \"status\": \"WITHDRAWN\",\n                \"amount\": \"600.00\",\n                \"email\": \"ralvarado@snapfinance.com\",\n                \"firstName\": \"John\",\n                \"lastName\": \"Test\",\n                \"mobilePhone\": \"4707891088\"\n            },\n            {\n                \"applicationId\": \"240208000VUT\",\n                \"applicationCreateTime\": \"2024-02-09T05:42:06.693Z\",\n                \"applicationUpdateTime\": \"2024-02-09T05:43:26.434Z\",\n                \"status\": \"WITHDRAWN\",\n                \"amount\": null,\n                \"email\": \"test@test.com\",\n                \"firstName\": \"John\",\n                \"lastName\": \"Smith\",\n                \"mobilePhone\": \"1000000019\"\n            },\n            {\n                \"applicationId\": \"240208000RUT\",\n                \"applicationCreateTime\": \"2024-02-08T21:37:19.399Z\",\n                \"applicationUpdateTime\": \"2024-02-09T20:34:16.586Z\",\n                \"status\": \"WITHDRAWN\",\n                \"amount\": \"600.00\",\n                \"email\": \"ralvarado@snapfinance.com\",\n                \"firstName\": \"John\",\n                \"lastName\": \"Test\",\n                \"mobilePhone\": \"1000000033\"\n            },\n            {\n                \"applicationId\": \"240208000RUT\",\n                \"applicationCreateTime\": \"2024-02-08T21:37:19.399Z\",\n                \"applicationUpdateTime\": \"2024-02-09T20:34:16.586Z\",\n                \"status\": \"WITHDRAWN\",\n                \"amount\": \"600.00\",\n                \"email\": \"ralvarado@snapfinance.com\",\n                \"firstName\": \"John\",\n                \"lastName\": \"Test\",\n                \"mobilePhone\": \"4707891088\"\n            },\n            {\n                \"applicationId\": \"240208000PUT\",\n                \"applicationCreateTime\": \"2024-02-08T17:55:57.255Z\",\n                \"applicationUpdateTime\": \"2024-02-09T20:34:16.586Z\",\n                \"status\": \"WITHDRAWN\",\n                \"amount\": \"600.00\",\n                \"email\": \"ralvarado@snapfinance.com\",\n                \"firstName\": \"John\",\n                \"lastName\": \"Test\",\n                \"mobilePhone\": \"1000000033\"\n            },\n            {\n                \"applicationId\": \"240208000PUT\",\n                \"applicationCreateTime\": \"2024-02-08T17:55:57.255Z\",\n                \"applicationUpdateTime\": \"2024-02-09T20:34:16.586Z\",\n                \"status\": \"WITHDRAWN\",\n                \"amount\": \"600.00\",\n                \"email\": \"ralvarado@snapfinance.com\",\n                \"firstName\": \"John\",\n                \"lastName\": \"Test\",\n                \"mobilePhone\": \"4707891088\"\n            },\n            {\n                \"applicationId\": \"240208000MUT\",\n                \"applicationCreateTime\": \"2024-02-08T17:53:11.085Z\",\n                \"applicationUpdateTime\": \"2024-03-12T17:32:12.135Z\",\n                \"status\": \"WITHDRAWN\",\n                \"amount\": \"600.00\",\n                \"email\": \"ralvarado@snapfinance.com\",\n                \"firstName\": \"John\",\n                \"lastName\": \"Test\",\n                \"mobilePhone\": \"4707891088\"\n            },\n            {\n                \"applicationId\": \"240208000MUT\",\n                \"applicationCreateTime\": \"2024-02-08T17:53:11.085Z\",\n                \"applicationUpdateTime\": \"2024-03-12T17:32:12.135Z\",\n                \"status\": \"WITHDRAWN\",\n                \"amount\": \"600.00\",\n                \"email\": \"ralvarado@snapfinance.com\",\n                \"firstName\": \"John\",\n                \"lastName\": \"Test\",\n                \"mobilePhone\": \"1000000033\"\n            },\n            {\n                \"applicationId\": \"240208000LTX\",\n                \"applicationCreateTime\": \"2024-02-08T17:52:27.019Z\",\n                \"applicationUpdateTime\": \"2024-02-08T17:52:31.385Z\",\n                \"status\": \"PREQUALIFIED\",\n                \"amount\": null,\n                \"email\": \"ralvarado@snapfinance.com\",\n                \"firstName\": \"Test\",\n                \"lastName\": \"Test\",\n                \"mobilePhone\": \"2014148954\"\n            },\n            {\n                \"applicationId\": \"240206000HCA\",\n                \"applicationCreateTime\": \"2024-02-06T19:08:23.448Z\",\n                \"applicationUpdateTime\": \"2024-03-12T17:31:49.397Z\",\n                \"status\": \"PENDING_DOCS\",\n                \"amount\": \"222.00\",\n                \"email\": \"test@test.com\",\n                \"firstName\": \"Valentino\",\n                \"lastName\": \"Rossi\",\n                \"mobilePhone\": \"4707891088\"\n            },\n            {\n                \"applicationId\": \"240206000FAZ\",\n                \"applicationCreateTime\": \"2024-02-06T19:04:46.020Z\",\n                \"applicationUpdateTime\": \"2024-02-06T19:05:58.781Z\",\n                \"status\": \"COMPLETE\",\n                \"amount\": \"600.00\",\n                \"email\": \"ralvarado@snapfinance.com\",\n                \"firstName\": \"John\",\n                \"lastName\": \"Test\",\n                \"mobilePhone\": \"4707891088\"\n            },\n            {\n                \"applicationId\": \"240206000FAZ\",\n                \"applicationCreateTime\": \"2024-02-06T19:04:46.020Z\",\n                \"applicationUpdateTime\": \"2024-02-06T19:05:58.781Z\",\n                \"status\": \"COMPLETE\",\n                \"amount\": \"600.00\",\n                \"email\": \"ralvarado@snapfinance.com\",\n                \"firstName\": \"John\",\n                \"lastName\": \"Test\",\n                \"mobilePhone\": \"1000000033\"\n            },\n            {\n                \"applicationId\": \"240205000JCA\",\n                \"applicationCreateTime\": \"2024-02-05T21:22:36.219Z\",\n                \"applicationUpdateTime\": \"2024-03-12T17:31:48.479Z\",\n                \"status\": \"PENDING_DOCS\",\n                \"amount\": \"222.00\",\n                \"email\": \"test@test.com\",\n                \"firstName\": \"Valentino\",\n                \"lastName\": \"Rossi\",\n                \"mobilePhone\": \"4707891088\"\n            },\n            {\n                \"applicationId\": \"240205000FAZ\",\n                \"applicationCreateTime\": \"2024-02-05T20:01:23.698Z\",\n                \"applicationUpdateTime\": \"2024-02-05T20:03:34.151Z\",\n                \"status\": \"COMPLETE\",\n                \"amount\": \"600.00\",\n                \"email\": \"ralvarado@snapfinance.com\",\n                \"firstName\": \"John\",\n                \"lastName\": \"Test\",\n                \"mobilePhone\": \"1000000033\"\n            }\n        ]\n    },\n    \"status\": 200\n}"},{"id":"8ed13348-3b6f-4fad-ba2b-128634085148","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer pORU5GTWtNeE1UQkJPVE5DUl....JiWYvnmRQSSCozUr6Xt7RXRK","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Content-Type","value":"application/json"},{"key":"Request-Id","value":"123"}],"url":{"raw":"https://api-sandbox.snapfinance.com/platform/v1/reporting/applications?limit=20&offset=0&startDatetime=2024-01-25&endDatetime=2024-02-09","protocol":"https","host":["api-sandbox","snapfinance","com"],"path":["platform","v1","reporting","applications"],"query":[{"key":"limit","value":"20"},{"key":"offset","value":"0"},{"key":"startDatetime","value":"2024-01-25"},{"key":"endDatetime","value":"2024-02-09"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"136"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 15:58:33 GMT"},{"key":"x-amzn-RequestId","value":"e686de7a-4a8b-472a-99bb-c3810ca266ad"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P0yadGxZPHcFgJQ="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11caa9-a9e85c6759f66b046f148f15"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 4c6f3dc807d213a0da966381e4886b08.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"YxjE8a_vRBiTtIchTjpRj97HIPvHhb2UFEne1JzTFnB4twNJS3u6QA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"status\": 400,\n    \"error\": [\n        {\n            \"type\": \"validation_error\",\n            \"code\": \"reporting_api_endDatetime_invalid\",\n            \"message\": \"Query string [endDatetime] is null, empty, contains less than the required number of characters, or has an invalid format\"\n        }\n    ]\n}"},{"id":"b76955b3-5e67-434c-90ac-8c107700dd39","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer pORU5GTWtNeE1UQkJPVE5DUl....JiWYvnmRQSSCozUr6Xt7RXRK","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Content-Type","value":"application/json"},{"key":"Request-Id","value":"123"}],"url":{"raw":"https://api-sandbox.snapfinance.com/platform/v1/reporting/applications?limit=20&offset=0&startDatetime=2024-01-25&endDatetime=2024-02-09","protocol":"https","host":["api-sandbox","snapfinance","com"],"path":["platform","v1","reporting","applications"],"query":[{"key":"limit","value":"20"},{"key":"offset","value":"0"},{"key":"startDatetime","value":"2024-01-25"},{"key":"endDatetime","value":"2024-02-09"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"136"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 15:58:33 GMT"},{"key":"x-amzn-RequestId","value":"e686de7a-4a8b-472a-99bb-c3810ca266ad"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P0yadGxZPHcFgJQ="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11caa9-a9e85c6759f66b046f148f15"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 4c6f3dc807d213a0da966381e4886b08.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"YxjE8a_vRBiTtIchTjpRj97HIPvHhb2UFEne1JzTFnB4twNJS3u6QA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"status\": 400,\n    \"error\": [\n        {\n            \"type\": \"validation_error\",\n            \"code\": \"reporting_api_endDatetime_invalid\",\n            \"message\": \"Query string [endDatetime] is null, empty, contains less than the required number of characters, or has an invalid format\"\n        }\n    ]\n}"},{"id":"cf9caced-5400-4705-bce0-f97c722a3276","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer pORU5GTWtNeE1UQkJPVE5DUl....JiWYvnmRQSSCozUr6Xt7RXRK","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Content-Type","value":"application/json"},{"key":"Request-Id","value":"123"}],"url":{"raw":"https://api-sandbox.snapfinance.com/platform/v1/reporting/applications?limit=20&offset=0&startDatetime=2021-01-25&endDatetime=2024-02-09","protocol":"https","host":["api-sandbox","snapfinance","com"],"path":["platform","v1","reporting","applications"],"query":[{"key":"limit","value":"20"},{"key":"offset","value":"0"},{"key":"startDatetime","value":"2021-01-25"},{"key":"endDatetime","value":"2024-02-09"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"244"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:24:19 GMT"},{"key":"x-amzn-RequestId","value":"f42aea7e-5211-4753-a26a-e8db4014d312"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P02LeGszvHcFsxg="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d0af-3504dad84d30e4d08259a3b0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"jen45MDpH8DQoOEaPFvDVJdGipmCzTuiyeN1iMqlvOUBQG5Kixtyow=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"totalApplications\": \"3804\",\n        \"links\": [\n            {\n                \"rel\": \"self\",\n                \"href\": \"/platform/v1/reporting/applications?endDatetime=2024-02-09&limit=20&offset=0&startDatetime=2021-01-25\"\n            },\n            {\n                \"rel\": \"next\",\n                \"href\": \"/platform/v1/reporting/applications?endDatetime=2024-02-09&limit=20&offset=20&startDatetime=2021-01-25\"\n            }\n        ],\n        \"applications\": [\n            {\n                \"applicationId\": \"240209000NUT\",\n                \"applicationCreateTime\": \"2024-02-09T20:33:55.260Z\",\n                \"applicationUpdateTime\": \"2024-02-09T20:34:36.141Z\",\n                \"status\": \"COMPLETE\",\n                \"amount\": \"600.00\",\n                \"email\": \"ralvarado@snapfinance.com\",\n                \"firstName\": \"John\",\n                \"lastName\": \"Test\",\n                \"mobilePhone\": \"4707891088\"\n            },\n            {\n                \"applicationId\": \"240209000NUT\",\n                \"applicationCreateTime\": \"2024-02-09T20:33:55.260Z\",\n                \"applicationUpdateTime\": \"2024-02-09T20:34:36.141Z\",\n                \"status\": \"COMPLETE\",\n                \"amount\": \"600.00\",\n                \"email\": \"ralvarado@snapfinance.com\",\n                \"firstName\": \"John\",\n                \"lastName\": \"Test\",\n                \"mobilePhone\": \"1000000033\"\n            },\n            {\n                \"applicationId\": \"240209000MCA\",\n                \"applicationCreateTime\": \"2024-02-09T20:32:26.551Z\",\n                \"applicationUpdateTime\": \"2024-03-12T17:31:51.251Z\",\n                \"status\": \"PENDING_DOCS\",\n                \"amount\": \"222.00\",\n                \"email\": \"test@test.com\",\n                \"firstName\": \"Valentino\",\n                \"lastName\": \"Rossi\",\n                \"mobilePhone\": \"4012131232\"\n            },\n            {\n                \"applicationId\": \"240209000LUT\",\n                \"applicationCreateTime\": \"2024-02-09T20:30:14.562Z\",\n                \"applicationUpdateTime\": \"2024-02-09T20:30:16.762Z\",\n                \"status\": \"PREQUALIFIED\",\n                \"amount\": null,\n                \"email\": \"ralvarado@snapfinance.com\",\n                \"firstName\": \"John\",\n                \"lastName\": \"Test\",\n                \"mobilePhone\": \"4707891088\"\n            },\n            {\n                \"applicationId\": \"240209000LUT\",\n                \"applicationCreateTime\": \"2024-02-09T20:30:14.562Z\",\n                \"applicationUpdateTime\": \"2024-02-09T20:30:16.762Z\",\n                \"status\": \"PREQUALIFIED\",\n                \"amount\": null,\n                \"email\": \"ralvarado@snapfinance.com\",\n                \"firstName\": \"John\",\n                \"lastName\": \"Test\",\n                \"mobilePhone\": \"1000000033\"\n            },\n            {\n                \"applicationId\": \"240209000KUT\",\n                \"applicationCreateTime\": \"2024-02-09T20:27:22.862Z\",\n                \"applicationUpdateTime\": \"2024-02-09T20:34:16.586Z\",\n                \"status\": \"WITHDRAWN\",\n                \"amount\": \"600.00\",\n                \"email\": \"ralvarado@snapfinance.com\",\n                \"firstName\": \"John\",\n                \"lastName\": \"Test\",\n                \"mobilePhone\": \"1000000033\"\n            },\n            {\n                \"applicationId\": \"240209000KUT\",\n                \"applicationCreateTime\": \"2024-02-09T20:27:22.862Z\",\n                \"applicationUpdateTime\": \"2024-02-09T20:34:16.586Z\",\n                \"status\": \"WITHDRAWN\",\n                \"amount\": \"600.00\",\n                \"email\": \"ralvarado@snapfinance.com\",\n                \"firstName\": \"John\",\n                \"lastName\": \"Test\",\n                \"mobilePhone\": \"4707891088\"\n            },\n            {\n                \"applicationId\": \"240208000VUT\",\n                \"applicationCreateTime\": \"2024-02-09T05:42:06.693Z\",\n                \"applicationUpdateTime\": \"2024-02-09T05:43:26.434Z\",\n                \"status\": \"WITHDRAWN\",\n                \"amount\": null,\n                \"email\": \"test@test.com\",\n                \"firstName\": \"John\",\n                \"lastName\": \"Smith\",\n                \"mobilePhone\": \"1000000019\"\n            },\n            {\n                \"applicationId\": \"240208000RUT\",\n                \"applicationCreateTime\": \"2024-02-08T21:37:19.399Z\",\n                \"applicationUpdateTime\": \"2024-02-09T20:34:16.586Z\",\n                \"status\": \"WITHDRAWN\",\n                \"amount\": \"600.00\",\n                \"email\": \"ralvarado@snapfinance.com\",\n                \"firstName\": \"John\",\n                \"lastName\": \"Test\",\n                \"mobilePhone\": \"1000000033\"\n            },\n            {\n                \"applicationId\": \"240208000RUT\",\n                \"applicationCreateTime\": \"2024-02-08T21:37:19.399Z\",\n                \"applicationUpdateTime\": \"2024-02-09T20:34:16.586Z\",\n                \"status\": \"WITHDRAWN\",\n                \"amount\": \"600.00\",\n                \"email\": \"ralvarado@snapfinance.com\",\n                \"firstName\": \"John\",\n                \"lastName\": \"Test\",\n                \"mobilePhone\": \"4707891088\"\n            },\n            {\n                \"applicationId\": \"240208000PUT\",\n                \"applicationCreateTime\": \"2024-02-08T17:55:57.255Z\",\n                \"applicationUpdateTime\": \"2024-02-09T20:34:16.586Z\",\n                \"status\": \"WITHDRAWN\",\n                \"amount\": \"600.00\",\n                \"email\": \"ralvarado@snapfinance.com\",\n                \"firstName\": \"John\",\n                \"lastName\": \"Test\",\n                \"mobilePhone\": \"1000000033\"\n            },\n            {\n                \"applicationId\": \"240208000PUT\",\n                \"applicationCreateTime\": \"2024-02-08T17:55:57.255Z\",\n                \"applicationUpdateTime\": \"2024-02-09T20:34:16.586Z\",\n                \"status\": \"WITHDRAWN\",\n                \"amount\": \"600.00\",\n                \"email\": \"ralvarado@snapfinance.com\",\n                \"firstName\": \"John\",\n                \"lastName\": \"Test\",\n                \"mobilePhone\": \"4707891088\"\n            },\n            {\n                \"applicationId\": \"240208000MUT\",\n                \"applicationCreateTime\": \"2024-02-08T17:53:11.085Z\",\n                \"applicationUpdateTime\": \"2024-03-12T17:32:12.135Z\",\n                \"status\": \"WITHDRAWN\",\n                \"amount\": \"600.00\",\n                \"email\": \"ralvarado@snapfinance.com\",\n                \"firstName\": \"John\",\n                \"lastName\": \"Test\",\n                \"mobilePhone\": \"4707891088\"\n            },\n            {\n                \"applicationId\": \"240208000MUT\",\n                \"applicationCreateTime\": \"2024-02-08T17:53:11.085Z\",\n                \"applicationUpdateTime\": \"2024-03-12T17:32:12.135Z\",\n                \"status\": \"WITHDRAWN\",\n                \"amount\": \"600.00\",\n                \"email\": \"ralvarado@snapfinance.com\",\n                \"firstName\": \"John\",\n                \"lastName\": \"Test\",\n                \"mobilePhone\": \"1000000033\"\n            },\n            {\n                \"applicationId\": \"240208000LTX\",\n                \"applicationCreateTime\": \"2024-02-08T17:52:27.019Z\",\n                \"applicationUpdateTime\": \"2024-02-08T17:52:31.385Z\",\n                \"status\": \"PREQUALIFIED\",\n                \"amount\": null,\n                \"email\": \"ralvarado@snapfinance.com\",\n                \"firstName\": \"Test\",\n                \"lastName\": \"Test\",\n                \"mobilePhone\": \"2014148954\"\n            },\n            {\n                \"applicationId\": \"240206000HCA\",\n                \"applicationCreateTime\": \"2024-02-06T19:08:23.448Z\",\n                \"applicationUpdateTime\": \"2024-03-12T17:31:49.397Z\",\n                \"status\": \"PENDING_DOCS\",\n                \"amount\": \"222.00\",\n                \"email\": \"test@test.com\",\n                \"firstName\": \"Valentino\",\n                \"lastName\": \"Rossi\",\n                \"mobilePhone\": \"4707891088\"\n            },\n            {\n                \"applicationId\": \"240206000FAZ\",\n                \"applicationCreateTime\": \"2024-02-06T19:04:46.020Z\",\n                \"applicationUpdateTime\": \"2024-02-06T19:05:58.781Z\",\n                \"status\": \"COMPLETE\",\n                \"amount\": \"600.00\",\n                \"email\": \"ralvarado@snapfinance.com\",\n                \"firstName\": \"John\",\n                \"lastName\": \"Test\",\n                \"mobilePhone\": \"4707891088\"\n            },\n            {\n                \"applicationId\": \"240206000FAZ\",\n                \"applicationCreateTime\": \"2024-02-06T19:04:46.020Z\",\n                \"applicationUpdateTime\": \"2024-02-06T19:05:58.781Z\",\n                \"status\": \"COMPLETE\",\n                \"amount\": \"600.00\",\n                \"email\": \"ralvarado@snapfinance.com\",\n                \"firstName\": \"John\",\n                \"lastName\": \"Test\",\n                \"mobilePhone\": \"1000000033\"\n            },\n            {\n                \"applicationId\": \"240205000JCA\",\n                \"applicationCreateTime\": \"2024-02-05T21:22:36.219Z\",\n                \"applicationUpdateTime\": \"2024-03-12T17:31:48.479Z\",\n                \"status\": \"PENDING_DOCS\",\n                \"amount\": \"222.00\",\n                \"email\": \"test@test.com\",\n                \"firstName\": \"Valentino\",\n                \"lastName\": \"Rossi\",\n                \"mobilePhone\": \"4707891088\"\n            },\n            {\n                \"applicationId\": \"240205000FAZ\",\n                \"applicationCreateTime\": \"2024-02-05T20:01:23.698Z\",\n                \"applicationUpdateTime\": \"2024-02-05T20:03:34.151Z\",\n                \"status\": \"COMPLETE\",\n                \"amount\": \"600.00\",\n                \"email\": \"ralvarado@snapfinance.com\",\n                \"firstName\": \"John\",\n                \"lastName\": \"Test\",\n                \"mobilePhone\": \"1000000033\"\n            }\n        ]\n    },\n    \"status\": 200\n}"}],"_postman_id":"010a9044-76ef-467e-9866-5f380938eddd"},{"name":"Send SMS Link","event":[{"listen":"test","script":{"exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});"],"type":"text/javascript","id":"9fcc8623-93ed-4eed-9e4d-762d04f86410"}}],"id":"8dbc02e5-8fcc-4836-9e8d-69964baeff36","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{accessToken}}","type":"text"},{"key":"x-snap-api-version","value":"v1","type":"text"},{"key":"correlation-id","value":"a751b6ae-ce62-438e-8202-fac8f798c199","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"phoneNumber\": \"1234567890\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/sms-link","description":"<p>Send SMS link to customer's phone number. This endpoint allows partners to send an SMS with a link to start the application process.</p>\n","urlObject":{"path":["platform","v1","sms-link"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"c7e413d1-673e-4dab-a717-cc4d4499f3d6","name":"Success Response","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"phoneNumber\": \"1234567890\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/sms-link"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"SMS sent successfully\"\n}"}],"_postman_id":"8dbc02e5-8fcc-4836-9e8d-69964baeff36"}],"id":"75ac10d2-111c-460b-b2f2-78eda829e508","_postman_id":"75ac10d2-111c-460b-b2f2-78eda829e508","description":""},{"name":"CCB","item":[{"name":"Get Token","event":[{"listen":"test","script":{"exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","    ","    var jsonData = pm.response.json();","    pm.environment.set(\"bearerToken\", jsonData.access_token);","});","","pm.environment.set(\"social_4\", _.random(1000, 9999));","pm.environment.set(\"social_9\", _.random(100000000, 999999999));","pm.environment.set(\"account_number\", _.random(1000000000, 9999999999));"],"type":"text/javascript","id":"e5df0b6d-b94b-425b-a13a-a6c82ff4af66"}}],"id":"3cefe8de-4e42-4b32-8ed4-c54cb7927aa1","protocolProfileBehavior":{"disabledSystemHeaders":{"accept":true,"accept-encoding":true,"connection":true,"user-agent":true},"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"client_id\": \"{{authClientId}}\",\r\n\t\"client_secret\": \"{{authClientSecret}}\",\r\n\t\"audience\": \"{{authClientAudience}}\",\r\n\t\"grant_type\": \"client_credentials\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{authHostUrl}}/oauth/token","description":"<h1 id=\"get-token\">Get Token</h1>\n<p>This endpoint gets the token to make Snap Finance API calls.</p>\n<h2 id=\"environment-information\">Environment information</h2>\n<ul>\n<li><p>Sandbox base URL: <a href=\"https://api-sandbox.snapfinance.com/platform/v1\">https://api-sandbox.snapfinance.com/platform/v1</a></p>\n</li>\n<li><p>Production base URL:  <a href=\"https://api.snapfinance.com/platform/v1\">https://api.snapfinance.com/platform/v1</a></p>\n</li>\n</ul>\n<p><strong>Note:</strong> Production credentials will be provided after the integration is ready and tested in sandbox.</p>\n<h2 id=\"request-object\">Request Object</h2>\n<blockquote>\n<h4 id=\"client_idstring\"><code>client_id:string</code></h4>\n<ul>\n<li>Required</li>\n<li>Is the client ID provided by Snap</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"client_secretstring\"><code>client_secret:string</code></h4>\n<ul>\n<li>Required</li>\n<li>Is the client secret provided by Snap</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"audiencestring\"><code>audience:string</code></h4>\n<ul>\n<li>Required</li>\n<li>Value must be <a href=\"https://api-release.snapfinance.com/platform/v1\">https://api-release.snapfinance.com/platform/v1</a> for sandbox environment</li>\n<li>Value must be <a href=\"https://api.snapfinance.com/platform/v1\">https://api.snapfinance.com/platform/v1</a> for production environment</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"grant_typestring\"><code>grant_type:string</code></h4>\n<ul>\n<li>Required</li>\n<li>Value must be <code>client_credentials</code></li>\n</ul>\n</blockquote>\n","urlObject":{"path":["oauth","token"],"host":["{{authHostUrl}}"],"query":[],"variable":[]}},"response":[{"id":"e5437082-e9d0-469d-b7ef-625217d5ecd8","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"client_id\": \"{{authClientId}}\",\r\n\t\"client_secret\": \"{{authClientSecret}}\",\r\n\t\"audience\": \"{{authClientAudience}}\",\r\n\t\"grant_type\": \"client_credentials\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{authHostUrl}}/oauth/token"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"openresty"},{"key":"Date","value":"Thu, 30 Jul 2020 14:37:07 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"ot-tracer-spanid","value":"362f5d543a9ee2b1"},{"key":"ot-tracer-traceid","value":"37f1cde43a952051"},{"key":"ot-tracer-sampled","value":"true"},{"key":"ot-baggage-auth0-request-id","value":"8822-1596119827.955-34.218.23.159-518-277619999-1-0.000"},{"key":"X-Auth0-RequestId","value":"78e01254a6018eab26a6"},{"key":"X-RateLimit-Limit","value":"1000000"},{"key":"X-RateLimit-Remaining","value":"999999"},{"key":"X-RateLimit-Reset","value":"1596119828"},{"key":"Cache-Control","value":"no-store"},{"key":"Pragma","value":"no-cache"},{"key":"X-Robots-Tag","value":"noindex, nofollow, nosnippet, noarchive"},{"key":"Content-Encoding","value":"gzip"},{"key":"Strict-Transport-Security","value":"max-age=15768000"}],"cookie":[],"responseTime":null,"body":"{\n    \"access_token\": \"{{bearerToken}}\",\n    \"scope\": \"array of scopes\",\n    \"expires_in\": 86400,\n    \"token_type\": \"Bearer\"\n}"},{"id":"77927b53-efb3-4df0-b565-70cfe49bddcc","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"client_id\": \"{{authClientId}}\",\r\n\t\"client_secret\": \"{{authClientSecret}}\",\r\n\t\"audience\": \"{{authClientAudience}}\",\r\n\t\"grant_type\": \"client_credentials\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{authHostUrl}}/oauth/token"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"openresty"},{"key":"Date","value":"Thu, 30 Jul 2020 14:37:56 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"60"},{"key":"Connection","value":"keep-alive"},{"key":"ot-tracer-spanid","value":"49376030724ae640"},{"key":"ot-tracer-traceid","value":"778c6f7b38c6efa2"},{"key":"ot-tracer-sampled","value":"true"},{"key":"ot-baggage-auth0-request-id","value":"8822-1596119876.679-34.218.23.159-518-277619999-2-0.000"},{"key":"X-Auth0-RequestId","value":"b202aa024e7109101a82"},{"key":"X-RateLimit-Limit","value":"1000000"},{"key":"X-RateLimit-Remaining","value":"999999"},{"key":"X-RateLimit-Reset","value":"1596119877"},{"key":"cache-control","value":"private, no-store, no-cache, must-revalidate, post-check=0, pre-check=0, no-transform"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"access_denied\",\n    \"error_description\": \"Unauthorized\"\n}"},{"id":"7cea185b-e799-4286-9e1e-5e74eeb016d9","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"client_id\": \"{{authClientId}}\",\r\n\t\"client_secret\": \"{{authClientSecret}}\",\r\n\t\"audience\": \"{{authClientAudience}}\",\r\n\t\"grant_type\": \"client_credentials\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{authHostUrl}}/oauth/token"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"openresty"},{"key":"Date","value":"Thu, 30 Jul 2020 14:37:07 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept-Encoding"},{"key":"ot-tracer-spanid","value":"362f5d543a9ee2b1"},{"key":"ot-tracer-traceid","value":"37f1cde43a952051"},{"key":"ot-tracer-sampled","value":"true"},{"key":"ot-baggage-auth0-request-id","value":"8822-1596119827.955-34.218.23.159-518-277619999-1-0.000"},{"key":"X-Auth0-RequestId","value":"78e01254a6018eab26a6"},{"key":"X-RateLimit-Limit","value":"1000000"},{"key":"X-RateLimit-Remaining","value":"999999"},{"key":"X-RateLimit-Reset","value":"1596119828"},{"key":"Cache-Control","value":"no-store"},{"key":"Pragma","value":"no-cache"},{"key":"X-Robots-Tag","value":"noindex, nofollow, nosnippet, noarchive"},{"key":"Content-Encoding","value":"gzip"},{"key":"Strict-Transport-Security","value":"max-age=15768000"}],"cookie":[],"responseTime":null,"body":"{\n    \"access_token\": \"{{bearerToken}}\",\n    \"scope\": \"array of scopes\",\n    \"expires_in\": 86400,\n    \"token_type\": \"Bearer\"\n}"},{"id":"860ca9ef-5d3c-440d-a754-1bc5d6a03e01","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"client_id\": \"{{authClientId}}\",\r\n\t\"client_secret\": \"{{authClientSecret}}\",\r\n\t\"audience\": \"{{authClientAudience}}\",\r\n\t\"grant_type\": \"client_credentials\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{authHostUrl}}/oauth/token"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"openresty"},{"key":"Date","value":"Thu, 30 Jul 2020 14:37:56 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"60"},{"key":"Connection","value":"keep-alive"},{"key":"ot-tracer-spanid","value":"49376030724ae640"},{"key":"ot-tracer-traceid","value":"778c6f7b38c6efa2"},{"key":"ot-tracer-sampled","value":"true"},{"key":"ot-baggage-auth0-request-id","value":"8822-1596119876.679-34.218.23.159-518-277619999-2-0.000"},{"key":"X-Auth0-RequestId","value":"b202aa024e7109101a82"},{"key":"X-RateLimit-Limit","value":"1000000"},{"key":"X-RateLimit-Remaining","value":"999999"},{"key":"X-RateLimit-Reset","value":"1596119877"},{"key":"cache-control","value":"private, no-store, no-cache, must-revalidate, post-check=0, pre-check=0, no-transform"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"access_denied\",\n    \"error_description\": \"Unauthorized\"\n}"}],"_postman_id":"3cefe8de-4e42-4b32-8ed4-c54cb7927aa1"},{"name":"Create Application","event":[{"listen":"test","script":{"exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","pm.test(\"Success message\", function () {","    pm.expect(pm.response.text()).to.include(\"success\");","});","","pm.test(\"Set the application ID\", function () {","    var jsonData = pm.response.json();","    pm.environment.set(\"applicationId\", jsonData.data.applicationId);","});"],"type":"text/javascript","packages":{},"id":"e16ed574-89eb-4e98-8edd-54e45e3d8f47"}}],"id":"66a14be7-5368-4f05-8923-afd2a2a6a8e3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"<p>(optional - ID generated by the client)</p>\n","type":"text"},{"key":"Idempotency-Key","value":"","description":"<p>(optional - Idempotency key generated by the client)</p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"customerInformation\": {\r\n\t\t\"dobDate\": \"1977-07-07\",\r\n\t\t\"customerId\": \"{{social_4}}\",\r\n\t\t\"customerIdType\": \"SSN4\",\r\n\t\t\"mobilePhone\": \"1000000019\",\r\n\t\t\"mobilePhoneCountry\": \"US\",\r\n\t\t\"email\": \"test@test.com\",\r\n\t\t\"firstName\": \"John\",\r\n\t\t\"lastName\": \"Smith\",\r\n\t\t\"salutation\": \"MR\",\r\n\t\t\"billingAddress\": {\r\n\t\t\t\"streetAddress\": \"123MainSt\",\r\n\t\t\t\"city\": \"SaltLakeCity\",\r\n\t\t\t\"state\": \"UT\",\r\n\t\t\t\"country\": \"US\",\r\n\t\t\t\"postalCode\": \"84001\"\r\n\t\t},\r\n\t\t\"driversLicenseNumber\": \"123456879\",\r\n\t\t\"driversLicenseState\": \"FL\",\r\n\t\t\"language\": \"EN\",\r\n\t\t\"rentOwn\": \"OWN\",\r\n\t\t\"timeAddressYears\": 0,\r\n\t\t\"timeAddressMonths\": 2,\r\n\t\t\"phoneOptIn\": true\r\n\t},\r\n\t\"supplementalDataInformation\": {\r\n\t\t\"customerPastApps\": \"2\",\r\n\t\t\"customerIP\": \"127.X.0.1\"\r\n\t},\r\n\t\"cartInformation\": {\r\n\t\t\"currencyCode\": \"USD\",\r\n\t\t\"taxAmount\": \"35.00\",\r\n\t\t\"shippingAmount\": \"15.00\",\r\n\t\t\"totalAmount\": \"320.00\",\r\n\t\t\"discountAmount\": \"0.00\",\r\n\t\t\"orderId\": \"041299\",\r\n\t\t\"items\": [\r\n\t\t\t{\r\n\t\t\t\t\"price\": \"150.00\",\r\n\t\t\t\t\"itemId\": \"ABC\",\r\n\t\t\t\t\"description\": \"Mattress\",\r\n\t\t\t\t\"sku\": \"D1234\",\r\n\t\t\t\t\"quantity\": 1,\r\n\t\t\t\t\"leasable\":true\r\n\t\t\t},\r\n            \t\t\t{\r\n\t\t\t\t\"price\": \"100.00\",\r\n\t\t\t\t\"itemId\": \"DEF\",\r\n\t\t\t\t\"description\": \"TV\",\r\n\t\t\t\t\"sku\": \"D1235\",\r\n\t\t\t\t\"quantity\": 1,\r\n\t\t\t\t\"leasable\":true,\r\n                \"itemType\": \"PRODUCT\"\r\n\t\t\t},\r\n            \t\t\t{\r\n\t\t\t\t\"price\": \"20.00\",\r\n\t\t\t\t\"itemId\": \"LMN\",\r\n\t\t\t\t\"description\": \"Misc Fee\",\r\n\t\t\t\t\"sku\": \"A0001\",\r\n\t\t\t\t\"quantity\": 1,\r\n\t\t\t\t\"leasable\":true,\r\n                \"itemType\": \"SERVICE\"\r\n\t\t\t}\r\n\t\t],\r\n\t\t\"shippingAddress\": {\r\n\t\t\t\"streetAddress\": \"456BroadwaySt\",\r\n\t\t\t\"city\": \"SaltLakeCity\",\r\n\t\t\t\"state\": \"UT\",\r\n\t\t\t\"country\": \"US\",\r\n\t\t\t\"postalCode\": \"84001\"\r\n\t\t}\r\n\t},\r\n\t\"incomeInformation\": [{\r\n\t\t\"employerName\": \"AcmeCorporation\",\r\n\t\t\"frequency\": \"BI_WEEKLY\",\r\n\t\t\"incomeAmount\": \"5000.00\",\r\n\t\t\"phone\": \"1234567890\",\r\n\t\t\"phoneCountryCode\": \"US\",\r\n\t\t\"positionHeld\": \"Associate\",\r\n\t\t\"type\": \"FULL_TIME\",\r\n\t\t\"lastPayDate\": \"2020-02-07\",\r\n\t\t\"nextPayDate\": \"2020-02-21\"\r\n\t}],\r\n    \"complianceDisclosures\": {\r\n        \"termsConditions\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"electronicTransaction\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"prequalifiedTermsConditions\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"eConsent\": {\r\n            \"timestamp\": \"10/23/2022\"\r\n        }\r\n    }\r\n}"},"url":"{{baseUrl}}/platform/v1/application","description":"<h1 id=\"create-application\">Create Application</h1>\n<p>This endpoint creates an application and returns the decision on the application. It returns an applicationId if the application is approved and marks the application status as PREQUALIFIED/APPROVED/DENIED. Check the example requests to get one for each scenario.</p>\n<p><strong>Note</strong>: incomeInformation, cartInformation, and bankInformation objects are <strong>MANDATORY</strong> for a final approval (You can send those using the PATCH endpoint). If you are enrolled for a prequalification experience the customer can get PREQUALIFIED with customerInformation only. Check with your integrator for the experience selected.</p>\n<h1 id=\"request-object\">Request Object</h1>\n<h2 id=\"customerinformationhash\"><code>customerInformation:hash</code></h2>\n<h4 id=\"dobdatestring\"><code>dobDate:string</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Date should be in YYYY-MM-DD format. The customer should be older than 18 years to apply. Date of birth in ISO format</p>\n</li>\n</ul>\n<h4 id=\"customeridstring\"><code>customerId:string</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>SSN number of the customer, four digits for SSN4 or 9 digits for SSN</p>\n</li>\n</ul>\n<h4 id=\"customeridtypestring\"><code>customerIdType:string</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Customer identification type in the country. Supported types are SSN or SSN4</p>\n</li>\n</ul>\n<h4 id=\"mobilephonestring\"><code>mobilePhone:string</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Verified customer phone number 10 digits</p>\n</li>\n</ul>\n<h4 id=\"mobilephonecountrystring\"><code>mobilePhoneCountry:string</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Country code in ISO 3166-1 alpha-2. Only US carriers are supported for now</p>\n</li>\n</ul>\n<h4 id=\"emailstring\"><code>email:string</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Properly formatted valid email address</p>\n</li>\n</ul>\n<h4 id=\"firstnamestring\"><code>firstName:string</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Can not be null or blank. It needs to be more than two characters</p>\n</li>\n</ul>\n<h4 id=\"lastnamestring\"><code>lastName:string</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Can not be null or blank. It needs to be more than two characters</p>\n</li>\n</ul>\n<h4 id=\"salutationstring\"><code>salutation:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Customer salutation. Supported values are MR, MRS, MISS or NONE</p>\n</li>\n</ul>\n<h4 id=\"driverslicensenumberstring\"><code>driversLicenseNumber:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Customer drivers license number. Valid driver license number</p>\n</li>\n</ul>\n<h4 id=\"driverslicensestatestring\"><code>driversLicenseState:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Customer drivers license state. Valid US state in two characters</p>\n</li>\n</ul>\n<h4 id=\"languagestring\"><code>language:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Language code preference of the customer. Supported values are EN or ES</p>\n</li>\n</ul>\n<h4 id=\"rentownstring\"><code>rentOwn:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Customers current residential type whether it is rental or owned. Supported values are RENT or OWN</p>\n</li>\n</ul>\n<h4 id=\"timeaddressyearsstring\"><code>timeAddressYears:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Positive number | Number of years the customer has lived at his or her current residential address</p>\n</li>\n</ul>\n<h4 id=\"timeaddressmonthsstring\"><code>timeAddressMonths:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Positive number. Number of months the customer has lived at his or her current address</p>\n</li>\n</ul>\n<h4 id=\"phoneoptinboolean\"><code>phoneOptIn:boolean</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Phone communication opt in for the customer. The customer must explicitly agree or disagree with phone communication</p>\n</li>\n</ul>\n<h4 id=\"billingaddresshash\"><code>billingAddress:hash</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Billing address of customer. Mostly will be his or her current residential address. Billing address used for lease agreement</p>\n<h4 id=\"billingaddressstreetaddressstring\"><code>billingAddress.streetAddress:string</code></h4>\n<blockquote>\n<p>&lt;ul &gt;&lt;li &gt;&lt;div&gt;Required&lt;/div&gt;&lt;/li&gt;&lt;li &gt;&lt;div&gt;Street address of customer&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt;</p>\n</blockquote>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>#### `billingAddress.city:string`\n&gt; &lt;ul class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;Required&lt;/div&gt;&lt;/li&gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;Any valid US city within LTO/SLN supported state&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; \n#### `billingAddress.state:string`\n&gt; &lt;ul class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;Required&lt;/div&gt;&lt;/li&gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;State or province of the customer. LTO/SLN supported states (NJ, MN and WI are non LTO states) &lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; \n#### `billingAddress.country:string`\n&gt; &lt;ul class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;Required&lt;/div&gt;&lt;/li&gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;Residence country of the customer. Only US is supported &lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; \n#### `billingAddress.postalCode:string`\n&gt; &lt;ul class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;Required&lt;/div&gt;&lt;/li&gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;Valid US zip code five digits &lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; \n#### `billingAddress.unit :string`\n&gt; &lt;ul class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;Optional&lt;/div&gt;&lt;/li&gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;Unit number of the customer address &lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; \n\n</code></pre><h2 id=\"cartinformationhash--conditional\"><code>cartInformation:hash</code> * Conditional</h2>\n<h4 id=\"currencycodestring\"><code>currencyCode:string</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Currency code of the cart only USD is allowed. Allowed value is USD only</p>\n</li>\n</ul>\n<h4 id=\"taxamountstring-numeric\"><code>taxAmount:string (Numeric)</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Valid amount. Sales tax as per the customer and merchant state. Funding will be done accordingly for states where snap must collect sales tax</p>\n</li>\n</ul>\n<h4 id=\"shippingamountstring-numeric\"><code>shippingAmount:string (Numeric)</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Valid shipping amount can be zero for free shipping product. Shipping amount for all the items within the cart</p>\n</li>\n</ul>\n<h4 id=\"totalamountstring-numeric\"><code>totalAmount:string (Numeric)</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Total amount of the cart Information. (ItemPrice * Qty) + taxAmount + shippingAmount - discount</p>\n</li>\n</ul>\n<h4 id=\"discountamountstring-numeric\"><code>discountAmount:string (Numeric)</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Discount amount of the cart information. Valid positive amount</p>\n</li>\n</ul>\n<h4 id=\"orderidstring\"><code>orderId:string</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Order ID within merchant's order management system. Any alpha numeric value</p>\n</li>\n</ul>\n<h4 id=\"itemshash-array\"><code>items:hash array</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>An array with at least one item. Leasable (for LTO) items within the cart</p>\n<h4 id=\"itemspricestring-numeric\"><code>items.price:string (Numeric)</code></h4>\n<blockquote>\n<p>&lt;ul &gt;&lt;li &gt;&lt;div&gt;Required&lt;/div&gt;&lt;/li&gt;&lt;li &gt;&lt;div&gt;Positive value. Unit price of an Item&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt;</p>\n</blockquote>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>#### `items.itemId:string`\n&gt; &lt;ul class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;Required&lt;/div&gt;&lt;/li&gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;Within the same Order can not have two items with the same item ID. Unique item ID within customer order management system&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; \n#### `items.description:string`\n&gt; &lt;ul class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;Required&lt;/div&gt;&lt;/li&gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;Title of the item&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; \n#### `items.sku:string`\n&gt; &lt;ul class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;Optional&lt;/div&gt;&lt;/li&gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;SKU number associated with the item &lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; \n#### `items.quantity:Integer`\n&gt; &lt;ul class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;Required&lt;/div&gt;&lt;/li&gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;Quantity of each item&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; \n#### `items.leasable:boolean`\n&gt; &lt;ul class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;Required for LTO and optional for SLN&lt;/div&gt;&lt;/li&gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;All the items within the cart should be leasable for LTO. Indicator flag provided by the merchant as agreed with Snap Finance&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; \n#### `items.itemType:string`\n&gt; &lt;ul class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;Optional&lt;/div&gt;&lt;/li&gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;Item type indicates whether the item is a physical product or not. Accepted values PRODUCT | SERVICE. Default value: PRODUCT&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; \n\n</code></pre><h4 id=\"shippingaddresshash\"><code>shippingAddress:hash</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Shipping address object</p>\n<h4 id=\"shippingaddressstreetaddressstring\"><code>shippingAddress.streetAddress:string</code></h4>\n<blockquote>\n<p>&lt;ul &gt;&lt;li &gt;&lt;div&gt;Required&lt;/div&gt;&lt;/li&gt;&lt;li &gt;&lt;div&gt;P.O boxes are not allowed. Street address where the item will be shipped&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt;</p>\n</blockquote>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>#### `shippingAddress.city:string`\n&gt; &lt;ul class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;Required&lt;/div&gt;&lt;/li&gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;P.O boxes are not allowed. City where the items will be shipped&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; \n#### `shippingAddress.state:string`\n&gt; &lt;ul class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;Required&lt;/div&gt;&lt;/li&gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;Valid US state. US state where the item will be shipped &lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; \n#### `shippingAddress.country:string`\n&gt; &lt;ul class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;Required&lt;/div&gt;&lt;/li&gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;Only US is supported &lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; \n#### `shippingAddress.postalCode:string`\n&gt; &lt;ul class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;Required&lt;/div&gt;&lt;/li&gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;Valid US zip code. Postal code of the shipping address&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; \n#### `shippingAddress.unit :string`\n&gt; &lt;ul class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;Optional&lt;/div&gt;&lt;/li&gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;Unit number of the customer address &lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; \n\n</code></pre><h2 id=\"bankinformationhash--conditional\"><code>bankInformation:hash</code> * Conditional</h2>\n<h4 id=\"routingnumberstring\"><code>routingNumber:string</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Nine digits routing number | Customers bank routing number</p>\n</li>\n</ul>\n<h4 id=\"accountnumberstring\"><code>accountNumber:string</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Four to fifteen digits account number | Customers bank account number</p>\n</li>\n</ul>\n<h4 id=\"banknamestring\"><code>bankName:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Customers bank name</p>\n</li>\n</ul>\n<h4 id=\"bankcitystring\"><code>bankCity:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>City of the customers banking branch</p>\n</li>\n</ul>\n<h4 id=\"bankstatestring\"><code>bankState:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>State of the customers banking branch</p>\n</li>\n</ul>\n<h4 id=\"directdepositboolean\"><code>directDeposit:boolean</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Whether the account has a direct deposit of the customer's salary</p>\n</li>\n</ul>\n<h2 id=\"incomeinformationhash-array--conditional\"><code>incomeInformation:hash array</code> * Conditional</h2>\n<h4 id=\"frequencystring\"><code>frequency:string</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Frequency of the customer's earnings. Allowed values are WEEKLY, BI_WEEKLY, SEMI_MONTHLY or MONTHLY</p>\n</li>\n</ul>\n<h4 id=\"incomeamountstring\"><code>incomeAmount:string</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Income per frequency specified. Positive amount</p>\n</li>\n</ul>\n<h4 id=\"lastpaydatestring-date\"><code>lastPayDate:string (Date)</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Last pay date of the customer. Format YYYY-MM-DD</p>\n</li>\n</ul>\n<h4 id=\"nextpaydatestring-date\"><code>nextPayDate:string (Date)</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Next pay date of the customer. Format YYYY-MM-DD</p>\n</li>\n</ul>\n<h4 id=\"typestring\"><code>type:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Type of customer income. Allowed values are FULL_TIME, PART_TIME, SELF_EMPLOYMENT, BENEFITS or OTHER</p>\n</li>\n</ul>\n<h4 id=\"positionheldstring\"><code>positionHeld:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Position held of the income information</p>\n</li>\n</ul>\n<h4 id=\"phonestring\"><code>phone:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Customers employer phone number. Ten digits string number</p>\n</li>\n</ul>\n<h4 id=\"phonecountrycodestring\"><code>phoneCountryCode:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Employers' phone country code. Only US phone numbers are supported</p>\n</li>\n</ul>\n<h4 id=\"employernamestring\"><code>employerName:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Employer name of the income information</p>\n</li>\n</ul>\n<h2 id=\"supplementaldatainformationhash\"><code>supplementalDataInformation:hash</code></h2>\n<h4 id=\"annualincomestring\"><code>annualIncome:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Annual income amount. Positive amount</p>\n</li>\n</ul>\n<h4 id=\"customeripstring\"><code>customerIP:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Customer IP Address</p>\n</li>\n</ul>\n<h4 id=\"customerpastappsstring\"><code>customerPastApps:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Customer number of past applications</p>\n</li>\n</ul>\n<h2 id=\"partnerinformationhash\"><code>partnerInformation:hash</code></h2>\n<h4 id=\"uniqueidentifierstring\"><code>uniqueIdentifier:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Partner Store Id</p>\n</li>\n</ul>\n<h4 id=\"uniqueapplicationidstring\"><code>uniqueApplicationId:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Partner Application Id</p>\n</li>\n</ul>\n<h4 id=\"uniquetransactionidstring\"><code>uniqueTransactionId:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Partner Transaction Id / API unique Request Id</p>\n</li>\n</ul>\n<h2 id=\"compliancedisclosureshash\"><code>complianceDisclosures:hash</code></h2>\n<h4 id=\"termsconditionshash\"><code>termsConditions:hash</code></h4>\n<h5 id=\"version--string\"><code>version : string</code></h5>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Disclosure version</p>\n</li>\n</ul>\n<h5 id=\"timestamp--string\"><code>timestamp : string</code></h5>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Date of acceptance of the terms and conditions</p>\n</li>\n</ul>\n<h4 id=\"electronictransactionhash\"><code>electronicTransaction:hash</code></h4>\n<h5 id=\"version--string-1\"><code>version : string</code></h5>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Disclosure version</p>\n</li>\n</ul>\n<h5 id=\"timestamp--string-1\"><code>timestamp : string</code></h5>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Date of electronic transaction</p>\n</li>\n</ul>\n<h4 id=\"prequalifiedtermsconditionshash\"><code>prequalifiedTermsConditions:hash</code></h4>\n<h5 id=\"version--string-2\"><code>version : string</code></h5>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Disclosure version</p>\n</li>\n</ul>\n<h5 id=\"timestamp--string-2\"><code>timestamp : string</code></h5>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Date of acceptance of the terms and conditions for prequal apps</p>\n</li>\n</ul>\n<h4 id=\"econsenthash\"><code>eConsent:hash</code></h4>\n<h5 id=\"version--string-3\"><code>version : string</code></h5>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Disclosure version</p>\n</li>\n</ul>\n<h5 id=\"timestamp--string-3\"><code>timestamp : string</code></h5>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>E-consent date signed</p>\n</li>\n</ul>\n<h1 id=\"response-object\">Response Object</h1>\n<h2 id=\"datahash\"><code>data:hash</code></h2>\n<h4 id=\"applicationstatusstring\"><code>applicationStatus:string</code></h4>\n<ul>\n<li>Status of the application</li>\n</ul>\n<h4 id=\"applicationsubstatusstring\"><code>applicationSubStatus:string</code></h4>\n<ul>\n<li>Sub-status of the application</li>\n</ul>\n<h4 id=\"applicationidstring\"><code>applicationId:string</code></h4>\n<ul>\n<li>Application ID</li>\n</ul>\n<h4 id=\"messagestring\"><code>message:string</code></h4>\n<ul>\n<li>Application information</li>\n</ul>\n<h4 id=\"applicationtypestring\"><code>applicationType:string</code></h4>\n<ul>\n<li>Application type. Posibble values are LTO for lease merchants and SLN for loan merchants</li>\n</ul>\n<h4 id=\"processingfeestring\"><code>processingFee:string</code></h4>\n<ul>\n<li>Processing fee amount</li>\n</ul>\n<h4 id=\"currencycodestring-1\"><code>currencyCode:string</code></h4>\n<ul>\n<li>Currency code</li>\n</ul>\n<h4 id=\"approvedamountstring\"><code>approvedAmount:string</code></h4>\n<ul>\n<li>Approved amount</li>\n</ul>\n<h4 id=\"applicationcreatetimestring\"><code>applicationCreateTime:string</code></h4>\n<ul>\n<li>Application creation time in UTC Standard. Example 2020-02-21T18:00:00Z</li>\n</ul>\n<h4 id=\"applicationupdatetimestring\"><code>applicationUpdateTime:string</code></h4>\n<ul>\n<li>Application update time in UTC Standard. Example 2020-02-21T18:00:00Z</li>\n</ul>\n<h4 id=\"stbsboolean\"><code>stbs:boolean</code></h4>\n<ul>\n<li>Sales tax by snap flag</li>\n</ul>\n<h4 id=\"additionalinformationhash\"><code>additionalInformation:hash</code></h4>\n<ul>\n<li><p>Information of the application</p>\n<h4 id=\"additionalinformationcustomerinformationstring\"><code>additionalInformation.customerInformation:string</code></h4>\n<blockquote>\n<p>&lt;ul &gt;&lt;li &gt;&lt;div&gt;Status of the customer information. Possible values are VERIFIED or PENDING&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt;</p>\n</blockquote>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>#### `additionalInformation.bankInformation:string`\n&gt; &lt;ul class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;Status of the bank information. Possible values are VERIFIED or PENDING&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; \n#### `additionalInformation.incomeInformation:string`\n&gt; &lt;ul class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;Status of the income information. Possible values are VERIFIED or PENDING&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; \n#### `additionalInformation.cartInformation:string`\n&gt; &lt;ul class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;li class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; &gt;&lt;div class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;Status of the cart information. Possible values are VERIFIED or PENDING&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; \n\n</code></pre><h2 id=\"successboolean\"><code>success:boolean</code></h2>\n<blockquote>\n<p>&lt;ul &gt;&lt;li &gt;&lt;div&gt;Value with the result of the request. Possible values are TRUE or FALSE&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; </p>\n</blockquote>\n<h2 id=\"statusinteger\"><code>status:integer</code></h2>\n<blockquote>\n<p>&lt;ul &gt;&lt;li &gt;&lt;div&gt;Value with status code of the request. For example: 200, 400, 404&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt;</p>\n</blockquote>\n","urlObject":{"path":["platform","v1","application"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"6f0bc461-fe26-44ab-a58b-5f1991896457","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-Id","value":"(optional - ID generated by the client)","type":"text"},{"key":"Idempotency-Key","value":"(optional - Idempotency key generated by the client)","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"customerInformation\": {\r\n\t\t\"dobDate\": \"1977-07-07\",\r\n\t\t\"customerId\": \"{{social_4}}\",\r\n\t\t\"customerIdType\": \"SSN4\",\r\n\t\t\"mobilePhone\": \"1000000019\",\r\n\t\t\"mobilePhoneCountry\": \"US\",\r\n\t\t\"email\": \"test@test.com\",\r\n\t\t\"firstName\": \"John\",\r\n\t\t\"lastName\": \"Smith\",\r\n\t\t\"salutation\": \"MR\",\r\n\t\t\"billingAddress\": {\r\n\t\t\t\"streetAddress\": \"123MainSt\",\r\n\t\t\t\"city\": \"SaltLakeCity\",\r\n\t\t\t\"state\": \"UT\",\r\n\t\t\t\"country\": \"US\",\r\n\t\t\t\"postalCode\": \"84001\"\r\n\t\t},\r\n\t\t\"driversLicenseNumber\": \"123456879\",\r\n\t\t\"driversLicenseState\": \"FL\",\r\n\t\t\"language\": \"EN\",\r\n\t\t\"rentOwn\": \"OWN\",\r\n\t\t\"timeAddressYears\": 0,\r\n\t\t\"timeAddressMonths\": 2,\r\n\t\t\"phoneOptIn\": true\r\n\t},\r\n\t\"supplementalDataInformation\": {\r\n\t\t\"customerPastApps\": \"2\",\r\n\t\t\"customerIP\": \"127.X.0.1\",\r\n        \"annualIncome\": \"50000.00\"\r\n\t},\r\n\t\"cartInformation\": {\r\n\t\t\"currencyCode\": \"USD\",\r\n\t\t\"taxAmount\": \"35.00\",\r\n\t\t\"shippingAmount\": \"15.00\",\r\n\t\t\"totalAmount\": \"320.00\",\r\n\t\t\"discountAmount\": \"0.00\",\r\n\t\t\"orderId\": \"041299\",\r\n\t\t\"items\": [\r\n\t\t\t{\r\n\t\t\t\t\"price\": \"150.00\",\r\n\t\t\t\t\"itemId\": \"ABC\",\r\n\t\t\t\t\"description\": \"Mattress\",\r\n\t\t\t\t\"sku\": \"D1234\",\r\n\t\t\t\t\"quantity\": 1,\r\n\t\t\t\t\"leasable\":true\r\n\t\t\t},\r\n            \t\t\t{\r\n\t\t\t\t\"price\": \"100.00\",\r\n\t\t\t\t\"itemId\": \"DEF\",\r\n\t\t\t\t\"description\": \"TV\",\r\n\t\t\t\t\"sku\": \"D1235\",\r\n\t\t\t\t\"quantity\": 1,\r\n\t\t\t\t\"leasable\":true,\r\n                \"itemType\": \"PRODUCT\"\r\n\t\t\t},\r\n            \t\t\t{\r\n\t\t\t\t\"price\": \"20.00\",\r\n\t\t\t\t\"itemId\": \"LMN\",\r\n\t\t\t\t\"description\": \"Misc Fee\",\r\n\t\t\t\t\"sku\": \"A0001\",\r\n\t\t\t\t\"quantity\": 1,\r\n\t\t\t\t\"leasable\":true,\r\n                \"itemType\": \"SERVICE\"\r\n\t\t\t}\r\n\t\t],\r\n\t\t\"shippingAddress\": {\r\n\t\t\t\"streetAddress\": \"456BroadwaySt\",\r\n\t\t\t\"city\": \"SaltLakeCity\",\r\n\t\t\t\"state\": \"UT\",\r\n\t\t\t\"country\": \"US\",\r\n\t\t\t\"postalCode\": \"84001\"\r\n\t\t}\r\n\t},\r\n\t\"incomeInformation\": [{\r\n\t\t\"employerName\": \"AcmeCorporation\",\r\n\t\t\"frequency\": \"BI_WEEKLY\",\r\n\t\t\"incomeAmount\": \"5000.00\",\r\n\t\t\"phone\": \"1234567890\",\r\n\t\t\"phoneCountryCode\": \"US\",\r\n\t\t\"positionHeld\": \"Associate\",\r\n\t\t\"type\": \"FULL_TIME\",\r\n\t\t\"lastPayDate\": \"2020-02-07\",\r\n\t\t\"nextPayDate\": \"2020-02-21\"\r\n\t}],\r\n    \"complianceDisclosures\": {\r\n        \"termsConditions\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"electronicTransaction\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"prequalifiedTermsConditions\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"eConsent\": {\r\n            \"timestamp\": \"10/23/2022\"\r\n        }\r\n    }\r\n}"},"url":"{{baseUrl}}/platform/v1/application"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"501"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:22:59 GMT"},{"key":"x-amzn-RequestId","value":"e23d261c-bd07-4f18-a450-563b74cffb98"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P01-cF-yvHcFqOA="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d05c-8ca7863001e6343c261bb0c4"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"oIqDWJQfKIdYPDwb0_5KbpoIfWv8EZUOWffcIB1Ac026PPjmaSAwWQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"applicationId\": \"{{applicationId}}\",\n        \"applicationStatus\": \"PREQUALIFIED\",\n        \"applicationSubStatus\": \"\",\n        \"message\": \"Application Prequalified\",\n        \"approvedAmount\": \"1810.00\",\n        \"applicationType\": \"LTO\",\n        \"currencyCode\": \"USD\",\n        \"applicationCreateTime\": \"2021-01-04T14:48:43.364Z\",\n        \"applicationUpdateTime\": \"2021-01-04T14:48:43.366Z\",\n  \"stbs\": false,\n       \"additionalInformation\": {\n            \"customerInformation\": \"Verified\",\n            \"cartInformation\": \"Verified\",\n            \"bankInformation\": \"Pending\",\n            \"incomeInformation\": \"Verified\",\n            \"cardInformation\": \"Pending\"\n        }\n            },\n    \"status\": 200\n}"},{"id":"b02b92f3-6e6f-4fb8-b17e-a4cff3c771a5","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-Id","value":"123","type":"text"},{"key":"Idempotency-Key","value":"f18fc09a-450d-4ad8-a429-4b1d632fbb64","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"customerInformation\": {\r\n\t\t\"dobDate\": \"1977-07-07\",\r\n\t\t\"customerId\": \"{{social_4}}\",\r\n\t\t\"customerIdType\": \"SSN4\",\r\n\t\t\"mobilePhone\": \"1000000019\",\r\n\t\t\"firstName\": \"John\",\r\n\t\t\"lastName\": \"Smith\",\r\n\t\t\"salutation\": \"MR\",\r\n\t\t\"billingAddress\": {\r\n\t\t\t\"streetAddress\": \"123MainSt\",\r\n\t\t\t\"city\": \"SaltLakeCity\",\r\n\t\t\t\"state\": \"UT\",\r\n\t\t\t\"country\": \"US\",\r\n\t\t\t\"postalCode\": \"84001\",\r\n\t\t\t\"unit\": \"12\"\r\n\t\t},\r\n\t\t\"driversLicenseNumber\": \"123456879\",\r\n\t\t\"driversLicenseState\": \"FL\",\r\n\t\t\"language\": \"EN\",\r\n\t\t\"rentOwn\": \"OWN\",\r\n\t\t\"timeAddressYears\": 0,\r\n\t\t\"timeAddressMonths\": 2,\r\n\t\t\"phoneOptIn\": true\r\n\t},\r\n\t\"supplementalDataInformation\": {\r\n\t\t\"customerPastApps\": \"2\",\r\n\t\t\"customerIP\": \"127.X.0.1\"\r\n\t},\r\n\t\"cartInformation\": {\r\n\t\t\"currencyCode\": \"USD\",\r\n\t\t\"taxAmount\": \"86.03\",\r\n\t\t\"shippingAmount\": \"15.00\",\r\n\t\t\"totalAmount\": \"3872.00\",\r\n\t\t\"discountAmount\": \"0.00\",\r\n\t\t\"orderId\": \"041299\",\r\n\t\t\"items\": [\r\n\t\t\t{\r\n\t\t\t\t\"price\": \"1.00\",\r\n\t\t\t\t\"itemId\": \"ABC\",\r\n\t\t\t\t\"description\": \"Mattress\",\r\n\t\t\t\t\"sku\": \"D1234\",\r\n\t\t\t\t\"quantity\": 1,\r\n\t\t\t\t\"leasable\":true\r\n\t\t\t}\r\n\t\t],\r\n\t\t\"shippingAddress\": {\r\n\t\t\t\"streetAddress\": \"456BroadwaySt\",\r\n\t\t\t\"city\": \"SaltLakeCity\",\r\n\t\t\t\"state\": \"UT\",\r\n\t\t\t\"country\": \"US\",\r\n\t\t\t\"postalCode\": \"84001\",\r\n\t\t\t\"unit\": \"12\"\r\n\t\t}\r\n\t},\r\n\t\"incomeInformation\": [{\r\n\t\t\"employerName\": \"AcmeCorporation\",\r\n\t\t\"frequency\": \"BI_WEEKLY\",\r\n\t\t\"incomeAmount\": \"5000.00\",\r\n\t\t\"phone\": \"1234567890\",\r\n\t\t\"phoneCountryCode\": \"US\",\r\n\t\t\"positionHeld\": \"Associate\",\r\n\t\t\"type\": \"FULL_TIME\",\r\n\t\t\"lastPayDate\": \"2020-02-07\",\r\n\t\t\"nextPayDate\": \"2020-02-21\"\r\n\t}],\r\n    \"complianceDisclosures\": {\r\n        \"termsConditions\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"electronicTransaction\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"prequalifiedTermsConditions\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"eConsent\": {\r\n            \"timestamp\": \"10/23/2022\"\r\n        }\r\n    }\r\n}"},"url":"{{baseUrl}}/platform/v1/application"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"309"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 21:55:44 GMT"},{"key":"x-amzn-RequestId","value":"851d86b2-205d-459f-ab0a-0ae317f87cb7"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P1mvCFRMPHcFV3Q="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f121e60-2d34f3d0a424dff4c50cfdbc"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 880eb84cefca849ee159a7c4d89c31ea.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"_llfqhKZaTjGHP6IrWAtmfcMgvxflPD5-FleE3Gjzn2GzoII_mblWA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"status\": 400,\n    \"error\": [\n        {\n            \"code\": \"customerInformation_mobilePhoneCountry_missing\",\n            \"type\": \"invalid_request_error\",\n            \"message\": \"Customer mobile phone country code is missing\"\n        },\n        {\n            \"code\": \"customerInformation_email_missing\",\n            \"type\": \"invalid_request_error\",\n            \"message\": \"Customer email address is missing\"\n        }\n    ]\n}"},{"id":"9cd1e19d-c30c-4fe6-86f0-775fa1d2f833","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-Id","value":"(optional - ID generated by the client)","type":"text"},{"key":"Idempotency-Key","value":"(optional - Idempotency key generated by the client)","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"customerInformation\": {\r\n\t\t\"dobDate\": \"1977-07-07\",\r\n\t\t\"customerId\": \"{{social_4}}\",\r\n\t\t\"customerIdType\": \"SSN4\",\r\n\t\t\"mobilePhone\": \"1000000019\",\r\n\t\t\"mobilePhoneCountry\": \"US\",\r\n\t\t\"email\": \"test@test.com\",\r\n\t\t\"firstName\": \"John\",\r\n\t\t\"lastName\": \"Smith\",\r\n\t\t\"salutation\": \"MR\",\r\n\t\t\"billingAddress\": {\r\n\t\t\t\"streetAddress\": \"123MainSt\",\r\n\t\t\t\"city\": \"SaltLakeCity\",\r\n\t\t\t\"state\": \"UT\",\r\n\t\t\t\"country\": \"US\",\r\n\t\t\t\"postalCode\": \"84001\"\r\n\t\t},\r\n\t\t\"driversLicenseNumber\": \"123456879\",\r\n\t\t\"driversLicenseState\": \"FL\",\r\n\t\t\"language\": \"EN\",\r\n\t\t\"rentOwn\": \"OWN\",\r\n\t\t\"timeAddressYears\": 0,\r\n\t\t\"timeAddressMonths\": 2,\r\n\t\t\"phoneOptIn\": true\r\n\t},\r\n\t\"supplementalDataInformation\": {\r\n\t\t\"customerPastApps\": \"2\",\r\n\t\t\"customerIP\": \"127.X.0.1\",\r\n        \"annualIncome\": \"50000.00\"\r\n\t},\r\n\t\"cartInformation\": {\r\n\t\t\"currencyCode\": \"USD\",\r\n\t\t\"taxAmount\": \"35.00\",\r\n\t\t\"shippingAmount\": \"15.00\",\r\n\t\t\"totalAmount\": \"320.00\",\r\n\t\t\"discountAmount\": \"0.00\",\r\n\t\t\"orderId\": \"041299\",\r\n\t\t\"items\": [\r\n\t\t\t{\r\n\t\t\t\t\"price\": \"150.00\",\r\n\t\t\t\t\"itemId\": \"ABC\",\r\n\t\t\t\t\"description\": \"Mattress\",\r\n\t\t\t\t\"sku\": \"D1234\",\r\n\t\t\t\t\"quantity\": 1,\r\n\t\t\t\t\"leasable\":true\r\n\t\t\t},\r\n            \t\t\t{\r\n\t\t\t\t\"price\": \"100.00\",\r\n\t\t\t\t\"itemId\": \"DEF\",\r\n\t\t\t\t\"description\": \"TV\",\r\n\t\t\t\t\"sku\": \"D1235\",\r\n\t\t\t\t\"quantity\": 1,\r\n\t\t\t\t\"leasable\":true,\r\n                \"itemType\": \"PRODUCT\"\r\n\t\t\t},\r\n            \t\t\t{\r\n\t\t\t\t\"price\": \"20.00\",\r\n\t\t\t\t\"itemId\": \"LMN\",\r\n\t\t\t\t\"description\": \"Misc Fee\",\r\n\t\t\t\t\"sku\": \"A0001\",\r\n\t\t\t\t\"quantity\": 1,\r\n\t\t\t\t\"leasable\":true,\r\n                \"itemType\": \"SERVICE\"\r\n\t\t\t}\r\n\t\t],\r\n\t\t\"shippingAddress\": {\r\n\t\t\t\"streetAddress\": \"456BroadwaySt\",\r\n\t\t\t\"city\": \"SaltLakeCity\",\r\n\t\t\t\"state\": \"UT\",\r\n\t\t\t\"country\": \"US\",\r\n\t\t\t\"postalCode\": \"84001\"\r\n\t\t}\r\n\t},\r\n\t\"incomeInformation\": [{\r\n\t\t\"employerName\": \"AcmeCorporation\",\r\n\t\t\"frequency\": \"BI_WEEKLY\",\r\n\t\t\"incomeAmount\": \"5000.00\",\r\n\t\t\"phone\": \"1234567890\",\r\n\t\t\"phoneCountryCode\": \"US\",\r\n\t\t\"positionHeld\": \"Associate\",\r\n\t\t\"type\": \"FULL_TIME\",\r\n\t\t\"lastPayDate\": \"2020-02-07\",\r\n\t\t\"nextPayDate\": \"2020-02-21\"\r\n\t}],\r\n    \"complianceDisclosures\": {\r\n        \"termsConditions\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"electronicTransaction\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"prequalifiedTermsConditions\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"eConsent\": {\r\n            \"timestamp\": \"10/23/2022\"\r\n        }\r\n    }\r\n}"},"url":"{{baseUrl}}/platform/v1/application"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"501"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:22:59 GMT"},{"key":"x-amzn-RequestId","value":"e23d261c-bd07-4f18-a450-563b74cffb98"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P01-cF-yvHcFqOA="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d05c-8ca7863001e6343c261bb0c4"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"oIqDWJQfKIdYPDwb0_5KbpoIfWv8EZUOWffcIB1Ac026PPjmaSAwWQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"applicationId\": \"{{applicationId}}\",\n        \"applicationStatus\": \"PREQUALIFIED\",\n        \"applicationSubStatus\": \"\",\n        \"message\": \"Application Prequalified\",\n        \"approvedAmount\": \"1810.00\",\n        \"applicationType\": \"LTO\",\n        \"currencyCode\": \"USD\",\n        \"applicationCreateTime\": \"2021-01-04T14:48:43.364Z\",\n        \"applicationUpdateTime\": \"2021-01-04T14:48:43.366Z\",\n  \"stbs\": false,\n       \"additionalInformation\": {\n            \"customerInformation\": \"Verified\",\n            \"cartInformation\": \"Verified\",\n            \"bankInformation\": \"Pending\",\n            \"incomeInformation\": \"Verified\",\n            \"cardInformation\": \"Pending\"\n        }\n            },\n    \"status\": 200\n}"},{"id":"4472dd4d-0d14-40a0-b212-763455d7ae34","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-Id","value":"123","type":"text"},{"key":"Idempotency-Key","value":"f18fc09a-450d-4ad8-a429-4b1d632fbb64","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"customerInformation\": {\r\n\t\t\"dobDate\": \"1977-07-07\",\r\n\t\t\"customerId\": \"{{social_4}}\",\r\n\t\t\"customerIdType\": \"SSN4\",\r\n\t\t\"mobilePhone\": \"1000000019\",\r\n\t\t\"firstName\": \"John\",\r\n\t\t\"lastName\": \"Smith\",\r\n\t\t\"salutation\": \"MR\",\r\n\t\t\"billingAddress\": {\r\n\t\t\t\"streetAddress\": \"123MainSt\",\r\n\t\t\t\"city\": \"SaltLakeCity\",\r\n\t\t\t\"state\": \"UT\",\r\n\t\t\t\"country\": \"US\",\r\n\t\t\t\"postalCode\": \"84001\",\r\n\t\t\t\"unit\": \"12\"\r\n\t\t},\r\n\t\t\"driversLicenseNumber\": \"123456879\",\r\n\t\t\"driversLicenseState\": \"FL\",\r\n\t\t\"language\": \"EN\",\r\n\t\t\"rentOwn\": \"OWN\",\r\n\t\t\"timeAddressYears\": 0,\r\n\t\t\"timeAddressMonths\": 2,\r\n\t\t\"phoneOptIn\": true\r\n\t},\r\n\t\"supplementalDataInformation\": {\r\n\t\t\"customerPastApps\": \"2\",\r\n\t\t\"customerIP\": \"127.X.0.1\"\r\n\t},\r\n\t\"cartInformation\": {\r\n\t\t\"currencyCode\": \"USD\",\r\n\t\t\"taxAmount\": \"86.03\",\r\n\t\t\"shippingAmount\": \"15.00\",\r\n\t\t\"totalAmount\": \"3872.00\",\r\n\t\t\"discountAmount\": \"0.00\",\r\n\t\t\"orderId\": \"041299\",\r\n\t\t\"items\": [\r\n\t\t\t{\r\n\t\t\t\t\"price\": \"1.00\",\r\n\t\t\t\t\"itemId\": \"ABC\",\r\n\t\t\t\t\"description\": \"Mattress\",\r\n\t\t\t\t\"sku\": \"D1234\",\r\n\t\t\t\t\"quantity\": 1,\r\n\t\t\t\t\"leasable\":true\r\n\t\t\t}\r\n\t\t],\r\n\t\t\"shippingAddress\": {\r\n\t\t\t\"streetAddress\": \"456BroadwaySt\",\r\n\t\t\t\"city\": \"SaltLakeCity\",\r\n\t\t\t\"state\": \"UT\",\r\n\t\t\t\"country\": \"US\",\r\n\t\t\t\"postalCode\": \"84001\",\r\n\t\t\t\"unit\": \"12\"\r\n\t\t}\r\n\t},\r\n\t\"incomeInformation\": [{\r\n\t\t\"employerName\": \"AcmeCorporation\",\r\n\t\t\"frequency\": \"BI_WEEKLY\",\r\n\t\t\"incomeAmount\": \"5000.00\",\r\n\t\t\"phone\": \"1234567890\",\r\n\t\t\"phoneCountryCode\": \"US\",\r\n\t\t\"positionHeld\": \"Associate\",\r\n\t\t\"type\": \"FULL_TIME\",\r\n\t\t\"lastPayDate\": \"2020-02-07\",\r\n\t\t\"nextPayDate\": \"2020-02-21\"\r\n\t}],\r\n    \"complianceDisclosures\": {\r\n        \"termsConditions\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"electronicTransaction\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"prequalifiedTermsConditions\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"eConsent\": {\r\n            \"timestamp\": \"10/23/2022\"\r\n        }\r\n    }\r\n}"},"url":"{{baseUrl}}/platform/v1/application"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"309"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 21:55:44 GMT"},{"key":"x-amzn-RequestId","value":"851d86b2-205d-459f-ab0a-0ae317f87cb7"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P1mvCFRMPHcFV3Q="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f121e60-2d34f3d0a424dff4c50cfdbc"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 880eb84cefca849ee159a7c4d89c31ea.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"_llfqhKZaTjGHP6IrWAtmfcMgvxflPD5-FleE3Gjzn2GzoII_mblWA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"status\": 400,\n    \"error\": [\n        {\n            \"code\": \"customerInformation_mobilePhoneCountry_missing\",\n            \"type\": \"invalid_request_error\",\n            \"message\": \"Customer mobile phone country code is missing\"\n        },\n        {\n            \"code\": \"customerInformation_email_missing\",\n            \"type\": \"invalid_request_error\",\n            \"message\": \"Customer email address is missing\"\n        }\n    ]\n}"}],"_postman_id":"66a14be7-5368-4f05-8923-afd2a2a6a8e3"},{"name":"Application Status","event":[{"listen":"test","script":{"exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});\r","pm.test(\"Success message\", function () {\r","    pm.expect(pm.response.text()).to.include(\"success\");\r","});"],"type":"text/javascript","id":"3b34a50c-3f24-4d67-91d6-b1a003c22338"}}],"id":"d9ba8356-4790-4758-bd8c-79d6d37772a0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"<p>(optional - ID generated by the client)</p>\n","type":"text"}],"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/status","description":"<h1 id=\"application-status\">Application Status</h1>\n<p>This endpoint gets the current status of the application.</p>\n<h2 id=\"path-params\">PATH PARAMS</h2>\n<blockquote>\n<h2 id=\"applicationidstring\"><code>applicationId:string</code></h2>\n<ul>\n<li>Required</li>\n<li>ApplicationId is returned when calling the create application endpoint</li>\n</ul>\n</blockquote>\n<h2 id=\"possible-status-values\">Possible Status Values</h2>\n<ul>\n<li>PREQUALIFIED : Application was prequalified</li>\n<li>PENDING : Application is being created </li>\n<li>APPROVED : Application approved</li>\n<li>PENDING_SIGNED_DOCS : Customer needs to sign the agreement </li>\n<li>PENDING_DEL : Agreement was signed, pending product delivery</li>\n<li>COMPLETE : Product delivered. Application ready</li>\n<li>DENIED : Application denied</li>\n<li>WITHDRAWN : Application withdrawn</li>\n</ul>\n<h2 id=\"possible-sub-status-values\">Possible Sub-status Values</h2>\n<ul>\n<li>PENDING_SHIPPING : Pending product shipping</li>\n<li>SHIPPED : Product(s) shipped</li>\n<li>PARTIALLY_REFUNDED : Canceled item within an originated order</li>\n<li>REFUNDED : Products totally refunded</li>\n<li>PENDING_CART_ADJUSTMENT : Cart amount higher than the approved amount</li>\n</ul>\n<h1 id=\"response-object\">Response Object</h1>\n<h2 id=\"datahash\"><code>data:hash</code></h2>\n<blockquote>\n<h4 id=\"applicationstatusstring\"><code>applicationStatus:string</code></h4>\n<ul>\n<li>Status of the application</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"applicationsubstatusstring\"><code>applicationSubStatus:string</code></h4>\n<ul>\n<li>Sub-status of the application</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"applicationidstring-1\"><code>applicationId:string</code></h4>\n<ul>\n<li>Application ID</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"applicationtypestring\"><code>applicationType:string</code></h4>\n<ul>\n<li>Application type. Possible values are LTO for lease merchants and SLN for loan merchants</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"approvedamountstring\"><code>approvedAmount:string</code></h4>\n<ul>\n<li>Approved amount</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"applicationcreatetimestring\"><code>applicationCreateTime:string</code></h4>\n<ul>\n<li>Application creation time in UTC Standard. Example 2020-02-21T18:00:00Z</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"applicationupdatetimestring\"><code>applicationUpdateTime:string</code></h4>\n<ul>\n<li>Application update time in UTC Standard. Example 2020-02-21T18:00:00Z</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"additionalinformationhash\"><code>additionalInformation:hash</code></h4>\n<ul>\n<li>Information of the application</li>\n</ul>\n<h4 id=\"additionalinformationcustomerinformationstring\"><code>additionalInformation.customerInformation:string</code></h4>\n<blockquote>\n<ul>\n<li>Status of the customer information. Possible values are  VERIFIED or PENDING</li>\n</ul>\n</blockquote>\n<h4 id=\"additionalinformationbankinformationstring\"><code>additionalInformation.bankInformation:string</code></h4>\n<blockquote>\n<ul>\n<li>Status of the bank information. Possible values are  VERIFIED or PENDING</li>\n</ul>\n</blockquote>\n<h4 id=\"additionalinformationincomeinformationstring\"><code>additionalInformation.incomeInformation:string</code></h4>\n<blockquote>\n<ul>\n<li>Status of the income information. Possible values are  VERIFIED or PENDING</li>\n</ul>\n</blockquote>\n<h4 id=\"additionalinformationcartinformationstring\"><code>additionalInformation.cartInformation:string</code></h4>\n<blockquote>\n<ul>\n<li>Status of the cart information. Possible values are  VERIFIED or PENDING</li>\n</ul>\n</blockquote>\n</blockquote>\n<blockquote>\n<h4 id=\"reapplydatestring\"><code>reApplyDate:string</code></h4>\n<ul>\n<li>Only with DENIED status, it indicates the date when the customer can reapply. Example 2020-02-21</li>\n</ul>\n</blockquote>\n<h2 id=\"successboolean\"><code>success:boolean</code></h2>\n<blockquote>\n<ul>\n<li>Value with the result of the request. Possible values are TRUE or FALSE</li>\n</ul>\n</blockquote>\n<h2 id=\"statusinteger\"><code>status:integer</code></h2>\n<blockquote>\n<ul>\n<li>Value with status code of the request. For example: 200, 400, 404</li>\n</ul>\n</blockquote>\n","urlObject":{"path":["platform","v1","application","{{applicationId}}","status"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"2d0faead-6f62-43d3-9133-6c4b7ce476c7","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-Id","value":"","description":"(optional)","type":"text"},{"key":"Content-Type","value":"application/json"}],"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/status"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"403"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:24:00 GMT"},{"key":"x-amzn-RequestId","value":"930f2434-ec1e-4ebf-8b33-b06582917abb"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P02InFzZPHcFSJg="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d09d-a8df3630a441a87823d4b3c0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"KpjwnZUscUgG94UQBRc9j34v_i47NHzBaMUa6weVzDo_UA3YrLRLlQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"status\": 200,\n    \"data\": {\n        \"applicationStatus\": \"APPROVED\",\n        \"applicationSubStatus\": \"\",\n        \"applicationId\": \"{{applicationId}}\",\n        \"approvedAmount\": \"3520.00\",\n        \"applicationCreateTime\": \"2020-07-17T10:22:55.105Z\",\n        \"applicationUpdateTime\": \"2020-07-17T10:23:28.493Z\",\n        \"additionalInformation\": {\n            \"customerInformation\": \"Verified\",\n            \"bankInformation\": \"Verified\",\n            \"incomeInformation\": \"Verified\",\n            \"cartInformation\": \"Verified\"\n        }\n    }\n}"},{"id":"b3e2392f-4aa5-4d5e-a8fb-07184fd8ee8d","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-Id","value":"","description":"(optional)","type":"text"},{"key":"Content-Type","value":"application/json"}],"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/status"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"133"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 16 Jul 2020 15:49:56 GMT"},{"key":"x-amzn-RequestId","value":"10aaa6ec-e54a-4307-a5a7-1f23473556db"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"PxeNfEZcvHcFaYw="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f107723-680f497015e9048e20a08d84"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 f9c5e5b9a4e739792ecd46afc5cf785d.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"Sj04b1p_EZavyRj0_bQt4EyExO4i4UGB5zNIhMnksgqCstwp1UptFw=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"error\": [\n        {\n            \"code\": \"application_not_found\",\n            \"type\": \"validation_error\",\n            \"message\": \"Application not found\"\n        }\n    ],\n    \"status\": 404\n}"},{"id":"4d579e15-4dc9-4611-9cda-86aff49d5965","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-Id","value":"","description":"(optional)","type":"text"},{"key":"Content-Type","value":"application/json"}],"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/status"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"403"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:24:00 GMT"},{"key":"x-amzn-RequestId","value":"930f2434-ec1e-4ebf-8b33-b06582917abb"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P02InFzZPHcFSJg="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d09d-a8df3630a441a87823d4b3c0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"KpjwnZUscUgG94UQBRc9j34v_i47NHzBaMUa6weVzDo_UA3YrLRLlQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"status\": 200,\n    \"data\": {\n        \"applicationStatus\": \"APPROVED\",\n        \"applicationSubStatus\": \"\",\n        \"applicationId\": \"{{applicationId}}\",\n        \"approvedAmount\": \"3520.00\",\n        \"applicationCreateTime\": \"2020-07-17T10:22:55.105Z\",\n        \"applicationUpdateTime\": \"2020-07-17T10:23:28.493Z\",\n        \"additionalInformation\": {\n            \"customerInformation\": \"Verified\",\n            \"bankInformation\": \"Verified\",\n            \"incomeInformation\": \"Verified\",\n            \"cartInformation\": \"Verified\"\n        }\n    }\n}"},{"id":"8443aa7b-a330-4a8d-915d-07d5eb3c756a","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-Id","value":"","description":"(optional)","type":"text"},{"key":"Content-Type","value":"application/json"}],"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/status"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"133"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 16 Jul 2020 15:49:56 GMT"},{"key":"x-amzn-RequestId","value":"10aaa6ec-e54a-4307-a5a7-1f23473556db"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"PxeNfEZcvHcFaYw="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f107723-680f497015e9048e20a08d84"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 f9c5e5b9a4e739792ecd46afc5cf785d.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"Sj04b1p_EZavyRj0_bQt4EyExO4i4UGB5zNIhMnksgqCstwp1UptFw=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"error\": [\n        {\n            \"code\": \"application_not_found\",\n            \"type\": \"validation_error\",\n            \"message\": \"Application not found\"\n        }\n    ],\n    \"status\": 404\n}"}],"_postman_id":"d9ba8356-4790-4758-bd8c-79d6d37772a0"},{"name":"Update Application","event":[{"listen":"test","script":{"exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","pm.test(\"Success message\", function () {","    pm.expect(pm.response.text()).to.include(\"success\");","});"],"type":"text/javascript","packages":{},"id":"fce969af-1a04-4fcd-9124-c50290a037cf"}}],"id":"0ba20c03-42a9-4214-ae9a-d9b083099f91","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"<p>(optional - ID generated by the client)</p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"customerInformation\": {\r\n\t\t\"driversLicenseNumber\": \"123456879\",\r\n\t\t\"driversLicenseState\": \"FL\",\r\n\t\t\"language\": \"EN\",\r\n\t\t\"rentOwn\": \"OWN\",\r\n\t\t\"timeAddressYears\": 0,\r\n\t\t\"timeAddressMonths\": 2,\r\n\t\t\"phoneOptIn\": true\r\n\t},\r\n\t\"supplementalDataInformation\": {\r\n\t\t\"customerPastApps\": \"2\",\r\n\t\t\"customerIP\": \"127.X.0.1\"\r\n\t},\r\n\t\"cartInformation\": {\r\n\t\t\"currencyCode\": \"USD\",\r\n\t\t\"taxAmount\": \"35.00\",\r\n\t\t\"shippingAmount\": \"15.00\",\r\n\t\t\"totalAmount\": \"320.00\",\r\n\t\t\"discountAmount\": \"0.00\",\r\n\t\t\"orderId\": \"041299\",\r\n\t\t\"items\": [\r\n\t\t\t{\r\n\t\t\t\t\"price\": \"150.00\",\r\n\t\t\t\t\"itemId\": \"ABC\",\r\n\t\t\t\t\"description\": \"Mattress\",\r\n\t\t\t\t\"sku\": \"D1234\",\r\n\t\t\t\t\"quantity\": 1,\r\n\t\t\t\t\"leasable\":true\r\n\t\t\t},\r\n            \t\t\t{\r\n\t\t\t\t\"price\": \"100.00\",\r\n\t\t\t\t\"itemId\": \"DEF\",\r\n\t\t\t\t\"description\": \"TV\",\r\n\t\t\t\t\"sku\": \"D1235\",\r\n\t\t\t\t\"quantity\": 1,\r\n\t\t\t\t\"leasable\":true,\r\n                \"itemType\": \"PRODUCT\"\r\n\t\t\t},\r\n            \t\t\t{\r\n\t\t\t\t\"price\": \"20.00\",\r\n\t\t\t\t\"itemId\": \"LMN\",\r\n\t\t\t\t\"description\": \"Misc Fee\",\r\n\t\t\t\t\"sku\": \"A0001\",\r\n\t\t\t\t\"quantity\": 1,\r\n\t\t\t\t\"leasable\":true,\r\n                \"itemType\": \"SERVICE\"\r\n\t\t\t}\r\n\t\t],\r\n\t\t\"shippingAddress\": {\r\n\t\t\t\"streetAddress\": \"456BroadwaySt\",\r\n\t\t\t\"city\": \"SaltLakeCity\",\r\n\t\t\t\"state\": \"UT\",\r\n\t\t\t\"country\": \"US\",\r\n\t\t\t\"postalCode\": \"84001\",\r\n\t\t\t\"unit\": \"12\"\r\n\t\t}\r\n\t},\r\n\t\"bankInformation\": {\r\n\t\t\"bankName\": \"superBank\",\r\n\t\t\"bankCity\": \"miami\",\r\n\t\t\"bankState\": \"FL\",\r\n\t\t\"routingNumber\": \"051501451\",\r\n\t\t\"accountNumber\": \"{{account_number}}\",\r\n\t\t\"directDeposit\": true\r\n\t},\r\n\t\"incomeInformation\": [{\r\n\t\t\"employerName\": \"AcmeCorporation\",\r\n\t\t\"frequency\": \"BI_WEEKLY\",\r\n\t\t\"incomeAmount\": \"5000.00\",\r\n\t\t\"phone\": \"1234567890\",\r\n\t\t\"phoneCountryCode\": \"US\",\r\n\t\t\"positionHeld\": \"Associate\",\r\n\t\t\"type\": \"FULL_TIME\",\r\n\t\t\"lastPayDate\": \"2020-02-07\",\r\n\t\t\"nextPayDate\": \"2020-02-21\"\r\n\t}],\r\n    \"complianceDisclosures\": {\r\n        \"termsConditions\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"electronicTransaction\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"prequalifiedTermsConditions\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"eConsent\": {\r\n            \"timestamp\": \"10/23/2022\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}","description":"<h1 id=\"update-application\">Update Application</h1>\n<p>This endpoint updates an application with additional applicant information. Additional information is not used for decisioning but needed before acceptance</p>\n<h1 id=\"request-object\">Request Object</h1>\n<h2 id=\"customerinformationhash\"><code>customerInformation:hash</code></h2>\n<blockquote>\n</blockquote>\n<h4 id=\"driverslicensenumberstring\"><code>driversLicenseNumber:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Customer drivers license number. Valid driver license number</p>\n</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"driverslicensestatestring\"><code>driversLicenseState:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Customer drivers license state. Valid US state in two characters</p>\n</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"languagestring\"><code>language:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Language code preference of the customer. Supported values are EN or ES</p>\n</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"rentownstring\"><code>rentOwn:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Customer's current residential type whether it is rental or owned. Supported values are RENT or OWN</p>\n</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"timeaddressyearsstring\"><code>timeAddressYears:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Positive number. Number of years the customer has lived at his or her current residential address</p>\n</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"timeaddressmonthsstring\"><code>timeAddressMonths:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Positive number. Number of months the customer has lived at his current address</p>\n</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"phoneoptinboolean\"><code>phoneOptIn:boolean</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Phone communication opt in for customer. Customer must explicitly agree or disagree to phone communication</p>\n</li>\n</ul>\n<h2 id=\"cartinformationhash\"><code>cartInformation:hash</code></h2>\n<blockquote>\n</blockquote>\n<h4 id=\"currencycodestring\"><code>currencyCode:string</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Currency code of the cart only USD is allowed. Allowed value is USD only</p>\n</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"taxamountstring-numeric\"><code>taxAmount:string (Numeric)</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Valid amount. Sales tax as per the customer and merchant state. Funding will be done accordingly for states where Snap Finance must collect sales tax</p>\n</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"shippingamountstring-numeric\"><code>shippingAmount:string (Numeric)</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Valid shipping amount can be zero for free shipping product. Shipping amount for all the items within the cart</p>\n</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"totalamountstring-numeric\"><code>totalAmount:string (Numeric)</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Total amount of the cart information. (ItemPrice * Qty) + taxAmount + shippingAmount - discount</p>\n</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"discountamountstring-numeric\"><code>discountAmount:string (Numeric)</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Discount amount of the cart information. Valid positive amount</p>\n</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"orderidstring\"><code>orderId:string</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Order Id within merchant's order management system. Any alpha-numeric value</p>\n</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"itemshash-array\"><code>items:hash array</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>An array with at least one item. Leasable (for LTO) items within the cart</p>\n<h4 id=\"itemspricestring-numeric\"><code>items.price:string (Numeric)</code></h4>\n<blockquote>\n<p>&lt;ul &gt;&lt;li &gt;&lt;div&gt;Required&lt;/div&gt;&lt;/li&gt;&lt;li &gt;&lt;div&gt;Positive value. Unit price of an Item&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; </p>\n</blockquote>\n<h4 id=\"itemsitemidstring\"><code>items.itemId:string</code></h4>\n<blockquote>\n<p>&lt;ul &gt;&lt;li &gt;&lt;div&gt;Required&lt;/div&gt;&lt;/li&gt;&lt;li &gt;&lt;div&gt;Within the same order can not have two items with the same item ID. Unique item id within customer order management system&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; </p>\n</blockquote>\n<h4 id=\"itemsdescriptionstring\"><code>items.description:string</code></h4>\n<blockquote>\n<p>&lt;ul &gt;&lt;li &gt;&lt;div&gt;Required&lt;/div&gt;&lt;/li&gt;&lt;li &gt;&lt;div&gt;Title of the item&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; </p>\n</blockquote>\n<h4 id=\"itemsskustring\"><code>items.sku:string</code></h4>\n<blockquote>\n<p>&lt;ul &gt;&lt;li &gt;&lt;div&gt;Optional&lt;/div&gt;&lt;/li&gt;&lt;li &gt;&lt;div&gt;SKU number associated with the item&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; </p>\n</blockquote>\n<h4 id=\"itemsquantityinteger\"><code>items.quantity:Integer</code></h4>\n<blockquote>\n<p>&lt;ul &gt;&lt;li &gt;&lt;div&gt;Required&lt;/div&gt;&lt;/li&gt;&lt;li &gt;&lt;div&gt;Quantity of each item&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; </p>\n</blockquote>\n<h4 id=\"itemsleasableboolean\"><code>items.leasable:boolean</code></h4>\n<blockquote>\n<p>&lt;ul &gt;&lt;li &gt;&lt;div&gt;Required for LTO and optional for SLN&lt;/div&gt;&lt;/li&gt;&lt;li &gt;&lt;div&gt;All the items within the cart should be leasable for LTO. Indicator flag provided by the merchant as agreed with Snap Finance&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; </p>\n</blockquote>\n<h4 id=\"itemsitemtypestring\"><code>items.itemType:string</code></h4>\n<blockquote>\n<p>&lt;ul &gt;&lt;li &gt;&lt;div&gt;Optional&lt;/div&gt;&lt;/li&gt;&lt;li &gt;&lt;div&gt;Item type indicates whether the item is a physical product or not. Accepted values PRODUCT | SERVICE. Default value: PRODUCT.&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt;</p>\n</blockquote>\n</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"shippingaddresshash\"><code>shippingAddress:hash</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Shipping Address Object</p>\n<h4 id=\"shippingaddressstreetaddressstring\"><code>shippingAddress.streetAddress:string</code></h4>\n<blockquote>\n<p>&lt;ul &gt;&lt;li &gt;&lt;div&gt;Required&lt;/div&gt;&lt;/li&gt;&lt;li &gt;&lt;div&gt;P.O boxes are not allowed. Street address where the item will be shipped&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; </p>\n</blockquote>\n<h4 id=\"shippingaddresscitystring\"><code>shippingAddress.city:string</code></h4>\n<blockquote>\n<p>&lt;ul &gt;&lt;li &gt;&lt;div&gt;Required&lt;/div&gt;&lt;/li&gt;&lt;li &gt;&lt;div&gt;P.O boxes are not allowed. City where the items will be shipped&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; </p>\n</blockquote>\n<h4 id=\"shippingaddressstatestring\"><code>shippingAddress.state:string</code></h4>\n<blockquote>\n<p>&lt;ul &gt;&lt;li &gt;&lt;div&gt;Required&lt;/div&gt;&lt;/li&gt;&lt;li &gt;&lt;div&gt;Valid US state. US state where the item will be shipped&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; </p>\n</blockquote>\n<h4 id=\"shippingaddresscountrystring\"><code>shippingAddress.country:string</code></h4>\n<blockquote>\n<p>&lt;ul &gt;&lt;li &gt;&lt;div&gt;Required&lt;/div&gt;&lt;/li&gt;&lt;li &gt;&lt;div&gt;Only US is supported&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; </p>\n</blockquote>\n<h4 id=\"shippingaddresspostalcodestring\"><code>shippingAddress.postalCode:string</code></h4>\n<blockquote>\n<p>&lt;ul &gt;&lt;li &gt;&lt;div&gt;Required&lt;/div&gt;&lt;/li&gt;&lt;li &gt;&lt;div&gt;Valid US zip code. Postal code of the shipping address&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; </p>\n</blockquote>\n<h4 id=\"shippingaddressunit-string\"><code>shippingAddress.unit :string</code></h4>\n<blockquote>\n<p>&lt;ul &gt;&lt;li &gt;&lt;div&gt;Optional&lt;/div&gt;&lt;/li&gt;&lt;li &gt;&lt;div&gt;Unit number of the customer address&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt;</p>\n</blockquote>\n</li>\n</ul>\n<h2 id=\"bankinformationhash\"><code>bankInformation:hash</code></h2>\n<blockquote>\n</blockquote>\n<h4 id=\"routingnumberstring\"><code>routingNumber:string</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Nine digits routing number | Customers bank routing number</p>\n</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"accountnumberstring\"><code>accountNumber:string</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Four to fifteen digits account number | Customers bank account number</p>\n</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"banknamestring\"><code>bankName:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Customers bank name</p>\n</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"bankcitystring\"><code>bankCity:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>City of the customers banking branch</p>\n</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"bankstatestring\"><code>bankState:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>State of the customers banking branch</p>\n</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"directdepositboolean\"><code>directDeposit:boolean</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Whether the account has a direct deposit of the customer's salary</p>\n</li>\n</ul>\n<h2 id=\"incomeinformationhash-array\"><code>incomeInformation:hash array</code></h2>\n<blockquote>\n</blockquote>\n<h4 id=\"frequencystring\"><code>frequency:string</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Frequency of your earnings. Allowed values are WEEKLY, BI_WEEKLY, SEMI_MONTHLY or MONTHLY</p>\n</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"incomeamountstring\"><code>incomeAmount:string</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Income per frequency specified. Positive amount</p>\n</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"lastpaydatestring-date\"><code>lastPayDate:string (Date)</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Last pay date of the customer. Format YYYY-MM-DD</p>\n</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"nextpaydatestring-date\"><code>nextPayDate:string (Date)</code></h4>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Next pay date of the customer. Format YYYY-MM-DD</p>\n</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"typestring\"><code>type:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Type of customer income. Allowed values are FULL_TIME, PART_TIME, SELF_EMPLOYMENT, BENEFITS, or OTHER</p>\n</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"positionheldstring\"><code>positionHeld:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Position held of the Income Information</p>\n</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"phonestring\"><code>phone:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Customers employer phone number. Ten digits string number</p>\n</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"phonecountrycodestring\"><code>phoneCountryCode:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Employers' phone country code. Only US phone numbers are supported</p>\n</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"employernamestring\"><code>employerName:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Employer name of the income information</p>\n</li>\n</ul>\n<h2 id=\"supplementaldatainformationhash\"><code>supplementalDataInformation:hash</code></h2>\n<blockquote>\n</blockquote>\n<h4 id=\"annualincomestring\"><code>annualIncome:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Annual income amount. Positive amount</p>\n</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"customeripstring\"><code>customerIP:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Customer IP Address</p>\n</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"customerpastappsstring\"><code>customerPastApps:string</code></h4>\n<ul>\n<li><p>Optional</p>\n</li>\n<li><p>Customer number of past applications</p>\n</li>\n</ul>\n<h2 id=\"compliancedisclosureshash\"><code>complianceDisclosures:hash</code></h2>\n<h4 id=\"termsconditionshash\"><code>termsConditions:hash</code></h4>\n<h5 id=\"version--string\"><code>version : string</code></h5>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Disclosure version</p>\n</li>\n</ul>\n<h5 id=\"timestamp--string\"><code>timestamp : string</code></h5>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Date of acceptance of the terms and conditions</p>\n</li>\n</ul>\n<h4 id=\"electronictransactionhash\"><code>electronicTransaction:hash</code></h4>\n<h5 id=\"version--string-1\"><code>version : string</code></h5>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Disclosure version</p>\n</li>\n</ul>\n<h5 id=\"timestamp--string-1\"><code>timestamp : string</code></h5>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Date of electronic transaction</p>\n</li>\n</ul>\n<h4 id=\"prequalifiedtermsconditionshash\"><code>prequalifiedTermsConditions:hash</code></h4>\n<h5 id=\"version--string-2\"><code>version : string</code></h5>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Disclosure version</p>\n</li>\n</ul>\n<h5 id=\"timestamp--string-2\"><code>timestamp : string</code></h5>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Date of acceptance of the terms and conditions for prequal apps</p>\n</li>\n</ul>\n<h4 id=\"econsenthash\"><code>eConsent:hash</code></h4>\n<h5 id=\"version--string-3\"><code>version : string</code></h5>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>Disclosure version</p>\n</li>\n</ul>\n<h5 id=\"timestamp--string-3\"><code>timestamp : string</code></h5>\n<ul>\n<li><p>Required</p>\n</li>\n<li><p>E-consent date signed</p>\n</li>\n</ul>\n<h1 id=\"response-object\">Response Object</h1>\n<h2 id=\"datahash\"><code>data:hash</code></h2>\n<blockquote>\n</blockquote>\n<h4 id=\"applicationstatusstring\"><code>applicationStatus:string</code></h4>\n<ul>\n<li>Status of the application</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"applicationsubstatusstring\"><code>applicationSubStatus:string</code></h4>\n<ul>\n<li>Sub-status of the application</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"applicationidstring\"><code>applicationId:string</code></h4>\n<ul>\n<li>Application ID</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"messagestring\"><code>message:string</code></h4>\n<ul>\n<li>Application information</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"applicationtypestring\"><code>applicationType:string</code></h4>\n<ul>\n<li>Application type. Possible values are LTO for lease merchants and SLN for loan merchants</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"processingfeestring\"><code>processingFee:string</code></h4>\n<ul>\n<li>Processing fee amount</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"currencycodestring-1\"><code>currencyCode:string</code></h4>\n<ul>\n<li>Currency code</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"approvedamountstring\"><code>approvedAmount:string</code></h4>\n<ul>\n<li>Approved amount</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"applicationcreatetimestring\"><code>applicationCreateTime:string</code></h4>\n<ul>\n<li>Application creation time in UTC Standard. Example 2020-02-21T18:00:00Z</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"applicationupdatetimestring\"><code>applicationUpdateTime:string</code></h4>\n<ul>\n<li>Application update time in UTC Standard. Example 2020-02-21T18:00:00Z</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"stbsboolean\"><code>stbs:boolean</code></h4>\n<ul>\n<li>Sales tax by snap flag</li>\n</ul>\n<blockquote>\n</blockquote>\n<h4 id=\"additionalinformationhash\"><code>additionalInformation:hash</code></h4>\n<ul>\n<li><p>Information of the application</p>\n<h4 id=\"additionalinformationcustomerinformationstring\"><code>additionalInformation.customerInformation:string</code></h4>\n<blockquote>\n<p>&lt;ul &gt;&lt;li &gt;&lt;div&gt;Status of the customer information. Possible values are VERIFIED or PENDING&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; </p>\n</blockquote>\n<h4 id=\"additionalinformationbankinformationstring\"><code>additionalInformation.bankInformation:string</code></h4>\n<blockquote>\n<p>&lt;ul &gt;&lt;li &gt;&lt;div&gt;Status of the bank information. Possible values are VERIFIED or PENDING&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; </p>\n</blockquote>\n<h4 id=\"additionalinformationincomeinformationstring\"><code>additionalInformation.incomeInformation:string</code></h4>\n<blockquote>\n<p>&lt;ul &gt;&lt;li &gt;&lt;div&gt;Status of the income information. Possible values are VERIFIED or PENDING&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; </p>\n</blockquote>\n<h4 id=\"additionalinformationcartinformationstring\"><code>additionalInformation.cartInformation:string</code></h4>\n<blockquote>\n<p>&lt;ul &gt;&lt;li &gt;&lt;div&gt;Status of the cart information. Possible values are VERIFIED or PENDING&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt;</p>\n</blockquote>\n</li>\n</ul>\n<h2 id=\"successboolean\"><code>success:boolean</code></h2>\n<blockquote>\n<p>&lt;ul &gt;&lt;li &gt;&lt;div&gt;Value with the result of the request. Possible values are TRUE or FALSE&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt; </p>\n</blockquote>\n<h2 id=\"statusinteger\"><code>status:integer</code></h2>\n<blockquote>\n<p>&lt;ul &gt;&lt;li &gt;&lt;div&gt;Value with status code of the request. For example: 200, 400, 404&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt;</p>\n</blockquote>\n","urlObject":{"path":["platform","v1","application","{{applicationId}}"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"0016233d-c8e4-4286-9f52-134933d5240c","name":"OK","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-Id","value":"123","description":"(optional)","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"customerInformation\": {\r\n\t\t\"driversLicenseNumber\": \"123456879\",\r\n\t\t\"driversLicenseState\": \"FL\",\r\n\t\t\"language\": \"EN\",\r\n\t\t\"rentOwn\": \"OWN\",\r\n\t\t\"timeAddressYears\": 0,\r\n\t\t\"timeAddressMonths\": 2,\r\n\t\t\"phoneOptIn\": true\r\n\t},\r\n\t\"supplementalDataInformation\": {\r\n\t\t\"customerPastApps\": \"2\",\r\n\t\t\"customerIP\": \"127.X.0.1\",\r\n        \"annualIncome\": \"50000.00\"\r\n\t},\r\n\t\"cartInformation\": {\r\n\t\t\"currencyCode\": \"USD\",\r\n\t\t\"taxAmount\": \"35.00\",\r\n\t\t\"shippingAmount\": \"15.00\",\r\n\t\t\"totalAmount\": \"320.00\",\r\n\t\t\"discountAmount\": \"0.00\",\r\n\t\t\"orderId\": \"041299\",\r\n\t\t\"items\": [\r\n\t\t\t{\r\n\t\t\t\t\"price\": \"150.00\",\r\n\t\t\t\t\"itemId\": \"ABC\",\r\n\t\t\t\t\"description\": \"Mattress\",\r\n\t\t\t\t\"sku\": \"D1234\",\r\n\t\t\t\t\"quantity\": 1,\r\n\t\t\t\t\"leasable\":true\r\n\t\t\t},\r\n            \t\t\t{\r\n\t\t\t\t\"price\": \"100.00\",\r\n\t\t\t\t\"itemId\": \"DEF\",\r\n\t\t\t\t\"description\": \"TV\",\r\n\t\t\t\t\"sku\": \"D1235\",\r\n\t\t\t\t\"quantity\": 1,\r\n\t\t\t\t\"leasable\":true,\r\n                \"itemType\": \"PRODUCT\"\r\n\t\t\t},\r\n            \t\t\t{\r\n\t\t\t\t\"price\": \"20.00\",\r\n\t\t\t\t\"itemId\": \"LMN\",\r\n\t\t\t\t\"description\": \"Misc Fee\",\r\n\t\t\t\t\"sku\": \"A0001\",\r\n\t\t\t\t\"quantity\": 1,\r\n\t\t\t\t\"leasable\":true,\r\n                \"itemType\": \"SERVICE\"\r\n\t\t\t}\r\n\t\t],\r\n\t\t\"shippingAddress\": {\r\n\t\t\t\"streetAddress\": \"456BroadwaySt\",\r\n\t\t\t\"city\": \"SaltLakeCity\",\r\n\t\t\t\"state\": \"UT\",\r\n\t\t\t\"country\": \"US\",\r\n\t\t\t\"postalCode\": \"84001\"\r\n\t\t}\r\n\t},\r\n\t\"bankInformation\": {\r\n\t\t\"bankName\": \"superBank\",\r\n\t\t\"bankCity\": \"miami\",\r\n\t\t\"bankState\": \"FL\",\r\n\t\t\"routingNumber\": \"051501451\",\r\n\t\t\"accountNumber\": \"{{account_number}}\",\r\n\t\t\"directDeposit\": true\r\n\t},\r\n\t\"incomeInformation\": [{\r\n\t\t\"employerName\": \"AcmeCorporation\",\r\n\t\t\"frequency\": \"BI_WEEKLY\",\r\n\t\t\"incomeAmount\": \"5000.00\",\r\n\t\t\"phone\": \"1234567890\",\r\n\t\t\"phoneCountryCode\": \"US\",\r\n\t\t\"positionHeld\": \"Associate\",\r\n\t\t\"type\": \"FULL_TIME\",\r\n\t\t\"lastPayDate\": \"2020-02-07\",\r\n\t\t\"nextPayDate\": \"2020-02-21\"\r\n\t}],\r\n    \"complianceDisclosures\": {\r\n        \"termsConditions\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"electronicTransaction\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"prequalifiedTermsConditions\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"eConsent\": {\r\n            \"timestamp\": \"10/23/2022\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"501"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:23:29 GMT"},{"key":"x-amzn-RequestId","value":"7b7a7e93-8b08-488e-807b-baff3746edc9"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P02D7HmRPHcFoeg="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d07f-228d9c3f28aea220b26950d2"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"bn3cAogOXeSE8fzq2QIF9wZmIiuUnnkTfd_b1nvfrHcUBbNzK9-YJw=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"applicationId\": \"{{applicationId}}\",\n        \"applicationStatus\": \"APPROVED\",\n        \"applicationSubStatus\": \"\",\n        \"message\": \"Application Approved\",\n        \"approvedAmount\": \"3520.00\",\n        \"applicationType\": \"LTO\",\n        \"processingFee\": \"0\",\n        \"currencyCode\": \"USD\",\n        \"applicationCreateTime\": \"2020-07-17T10:22:55.105Z\",\n        \"applicationUpdateTime\": \"2020-07-17T10:23:28.493Z\",\n        \"additionalInformation\": {\n            \"customerInformation\": \"Verified\",\n            \"cartInformation\": \"Verified\",\n            \"bankInformation\": \"Verified\",\n            \"incomeInformation\": \"Verified\"\n        }\n    },\n    \"status\": 200\n}"},{"id":"51b69cb0-99b3-41ec-91a3-7f6b497bc5b8","name":"Bad Request","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-Id","value":"123","description":"(optional)","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"customerInformation\": {\r\n\t\t\"driversLicenseNumber\": \"123456879\",\r\n\t\t\"driversLicenseState\": \"FL\",\r\n\t\t\"language\": \"EN\",\r\n\t\t\"rentOwn\": \"OWN\",\r\n\t\t\"timeAddressYears\": 0,\r\n\t\t\"timeAddressMonths\": 2,\r\n\t\t\"phoneOptIn\": true\r\n\t},\r\n\t\"supplementalDataInformation\": {\r\n\t\t\"customerPastApps\": \"2\",\r\n\t\t\"customerIP\": \"127.X.0.1\"\r\n\t},\r\n\t\"cartInformation\": {\r\n\t\t\"currencyCode\": \"USD\",\r\n\t\t\"taxAmount\": \"86.03\",\r\n\t\t\"shippingAmount\": \"15.00\",\r\n\t\t\"discountAmount\": \"0.00\",\r\n\t\t\"orderId\": \"041299\",\r\n\t\t\"items\": [\r\n\t\t\t{\r\n\t\t\t\t\"price\": \"1.00\",\r\n\t\t\t\t\"itemId\": \"ABC\",\r\n\t\t\t\t\"description\": \"Mattress\",\r\n\t\t\t\t\"sku\": \"D1234\",\r\n\t\t\t\t\"quantity\": 1,\r\n\t\t\t\t\"leasable\": true\r\n\t\t\t}\r\n\t\t],\r\n\t\t\"shippingAddress\": {\r\n\t\t\t\"streetAddress\": \"456BroadwaySt\",\r\n\t\t\t\"city\": \"SaltLakeCity\",\r\n\t\t\t\"state\": \"UT\",\r\n\t\t\t\"country\": \"US\",\r\n\t\t\t\"postalCode\": \"84001\"\r\n\t\t}\r\n\t},\r\n\t\"bankInformation\": {\r\n\t\t\"bankName\": \"superBank\",\r\n\t\t\"bankCity\": \"miami\",\r\n\t\t\"bankState\": \"FL\",\r\n\t\t\"routingNumber\": \"051501451\",\r\n\t\t\"accountNumber\": \"{{account_number}}\",\r\n\t\t\"directDeposit\": true\r\n\t},\r\n\t\"incomeInformation\": [{\r\n\t\t\"employerName\": \"AcmeCorporation\",\r\n\t\t\"frequency\": \"BI_WEEKLY\",\r\n\t\t\"incomeAmount\": \"5000.00\",\r\n\t\t\"phone\": \"1234567890\",\r\n\t\t\"phoneCountryCode\": \"US\",\r\n\t\t\"positionHeld\": \"Associate\",\r\n\t\t\"type\": \"FULL_TIME\",\r\n\t\t\"lastPayDate\": \"2018-06-06\",\r\n\t\t\"nextPayDate\": \"2018-06-21\"\r\n\t}],\r\n    \"complianceDisclosures\": {\r\n        \"termsConditions\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"electronicTransaction\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"prequalifiedTermsConditions\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"eConsent\": {\r\n            \"timestamp\": \"10/23/2022\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"159"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 16 Jul 2020 15:47:14 GMT"},{"key":"x-amzn-RequestId","value":"12a6933d-323a-4a4e-ba23-263f54f638b0"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"Pxd0TGxFPHcFkjw="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f107681-5abf786c414827605f8a6088"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 f9c5e5b9a4e739792ecd46afc5cf785d.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"pVDtqDoj_rc8lT9s3Rmd2CA9WYsC-uYPuUaCcTQ3nJwB0Jhlr-aLGQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"status\": 400,\n    \"error\": [\n        {\n            \"code\": \"cartInformation_totalAmount_missing\",\n            \"type\": \"invalid_request_error\",\n            \"message\": \"Cart total amount is missing\"\n        }\n    ]\n}"},{"id":"64342020-abbb-4a3f-8ec4-0f984fc4aa8c","name":"Bad Request","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-Id","value":"123","description":"(optional)","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"customerInformation\": {\r\n\t\t\"driversLicenseNumber\": \"123456879\",\r\n\t\t\"driversLicenseState\": \"FL\",\r\n\t\t\"language\": \"EN\",\r\n\t\t\"rentOwn\": \"OWN\",\r\n\t\t\"timeAddressYears\": 0,\r\n\t\t\"timeAddressMonths\": 2,\r\n\t\t\"phoneOptIn\": true\r\n\t},\r\n\t\"supplementalDataInformation\": {\r\n\t\t\"customerPastApps\": \"2\",\r\n\t\t\"customerIP\": \"127.X.0.1\"\r\n\t},\r\n\t\"cartInformation\": {\r\n\t\t\"currencyCode\": \"USD\",\r\n\t\t\"taxAmount\": \"86.03\",\r\n\t\t\"shippingAmount\": \"15.00\",\r\n\t\t\"discountAmount\": \"0.00\",\r\n\t\t\"orderId\": \"041299\",\r\n\t\t\"items\": [\r\n\t\t\t{\r\n\t\t\t\t\"price\": \"1.00\",\r\n\t\t\t\t\"itemId\": \"ABC\",\r\n\t\t\t\t\"description\": \"Mattress\",\r\n\t\t\t\t\"sku\": \"D1234\",\r\n\t\t\t\t\"quantity\": 1,\r\n\t\t\t\t\"leasable\": true\r\n\t\t\t}\r\n\t\t],\r\n\t\t\"shippingAddress\": {\r\n\t\t\t\"streetAddress\": \"456BroadwaySt\",\r\n\t\t\t\"city\": \"SaltLakeCity\",\r\n\t\t\t\"state\": \"UT\",\r\n\t\t\t\"country\": \"US\",\r\n\t\t\t\"postalCode\": \"84001\"\r\n\t\t}\r\n\t},\r\n\t\"bankInformation\": {\r\n\t\t\"bankName\": \"superBank\",\r\n\t\t\"bankCity\": \"miami\",\r\n\t\t\"bankState\": \"FL\",\r\n\t\t\"routingNumber\": \"051501451\",\r\n\t\t\"accountNumber\": \"{{account_number}}\",\r\n\t\t\"directDeposit\": true\r\n\t},\r\n\t\"incomeInformation\": [{\r\n\t\t\"employerName\": \"AcmeCorporation\",\r\n\t\t\"frequency\": \"BI_WEEKLY\",\r\n\t\t\"incomeAmount\": \"5000.00\",\r\n\t\t\"phone\": \"1234567890\",\r\n\t\t\"phoneCountryCode\": \"US\",\r\n\t\t\"positionHeld\": \"Associate\",\r\n\t\t\"type\": \"FULL_TIME\",\r\n\t\t\"lastPayDate\": \"2018-06-06\",\r\n\t\t\"nextPayDate\": \"2018-06-21\"\r\n\t}],\r\n    \"complianceDisclosures\": {\r\n        \"termsConditions\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"electronicTransaction\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"prequalifiedTermsConditions\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"eConsent\": {\r\n            \"timestamp\": \"10/23/2022\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"159"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 16 Jul 2020 15:47:14 GMT"},{"key":"x-amzn-RequestId","value":"12a6933d-323a-4a4e-ba23-263f54f638b0"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"Pxd0TGxFPHcFkjw="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f107681-5abf786c414827605f8a6088"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 f9c5e5b9a4e739792ecd46afc5cf785d.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"pVDtqDoj_rc8lT9s3Rmd2CA9WYsC-uYPuUaCcTQ3nJwB0Jhlr-aLGQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"status\": 400,\n    \"error\": [\n        {\n            \"code\": \"cartInformation_totalAmount_missing\",\n            \"type\": \"invalid_request_error\",\n            \"message\": \"Cart total amount is missing\"\n        }\n    ]\n}"},{"id":"e400fea9-e2af-461b-8654-b177867bfd3c","name":"OK","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-Id","value":"123","description":"(optional)","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"customerInformation\": {\r\n\t\t\"driversLicenseNumber\": \"123456879\",\r\n\t\t\"driversLicenseState\": \"FL\",\r\n\t\t\"language\": \"EN\",\r\n\t\t\"rentOwn\": \"OWN\",\r\n\t\t\"timeAddressYears\": 0,\r\n\t\t\"timeAddressMonths\": 2,\r\n\t\t\"phoneOptIn\": true\r\n\t},\r\n\t\"supplementalDataInformation\": {\r\n\t\t\"customerPastApps\": \"2\",\r\n\t\t\"customerIP\": \"127.X.0.1\",\r\n        \"annualIncome\": \"50000.00\"\r\n\t},\r\n\t\"cartInformation\": {\r\n\t\t\"currencyCode\": \"USD\",\r\n\t\t\"taxAmount\": \"35.00\",\r\n\t\t\"shippingAmount\": \"15.00\",\r\n\t\t\"totalAmount\": \"320.00\",\r\n\t\t\"discountAmount\": \"0.00\",\r\n\t\t\"orderId\": \"041299\",\r\n\t\t\"items\": [\r\n\t\t\t{\r\n\t\t\t\t\"price\": \"150.00\",\r\n\t\t\t\t\"itemId\": \"ABC\",\r\n\t\t\t\t\"description\": \"Mattress\",\r\n\t\t\t\t\"sku\": \"D1234\",\r\n\t\t\t\t\"quantity\": 1,\r\n\t\t\t\t\"leasable\":true\r\n\t\t\t},\r\n            \t\t\t{\r\n\t\t\t\t\"price\": \"100.00\",\r\n\t\t\t\t\"itemId\": \"DEF\",\r\n\t\t\t\t\"description\": \"TV\",\r\n\t\t\t\t\"sku\": \"D1235\",\r\n\t\t\t\t\"quantity\": 1,\r\n\t\t\t\t\"leasable\":true,\r\n                \"itemType\": \"PRODUCT\"\r\n\t\t\t},\r\n            \t\t\t{\r\n\t\t\t\t\"price\": \"20.00\",\r\n\t\t\t\t\"itemId\": \"LMN\",\r\n\t\t\t\t\"description\": \"Misc Fee\",\r\n\t\t\t\t\"sku\": \"A0001\",\r\n\t\t\t\t\"quantity\": 1,\r\n\t\t\t\t\"leasable\":true,\r\n                \"itemType\": \"SERVICE\"\r\n\t\t\t}\r\n\t\t],\r\n\t\t\"shippingAddress\": {\r\n\t\t\t\"streetAddress\": \"456BroadwaySt\",\r\n\t\t\t\"city\": \"SaltLakeCity\",\r\n\t\t\t\"state\": \"UT\",\r\n\t\t\t\"country\": \"US\",\r\n\t\t\t\"postalCode\": \"84001\"\r\n\t\t}\r\n\t},\r\n\t\"bankInformation\": {\r\n\t\t\"bankName\": \"superBank\",\r\n\t\t\"bankCity\": \"miami\",\r\n\t\t\"bankState\": \"FL\",\r\n\t\t\"routingNumber\": \"051501451\",\r\n\t\t\"accountNumber\": \"{{account_number}}\",\r\n\t\t\"directDeposit\": true\r\n\t},\r\n\t\"incomeInformation\": [{\r\n\t\t\"employerName\": \"AcmeCorporation\",\r\n\t\t\"frequency\": \"BI_WEEKLY\",\r\n\t\t\"incomeAmount\": \"5000.00\",\r\n\t\t\"phone\": \"1234567890\",\r\n\t\t\"phoneCountryCode\": \"US\",\r\n\t\t\"positionHeld\": \"Associate\",\r\n\t\t\"type\": \"FULL_TIME\",\r\n\t\t\"lastPayDate\": \"2020-02-07\",\r\n\t\t\"nextPayDate\": \"2020-02-21\"\r\n\t}],\r\n    \"complianceDisclosures\": {\r\n        \"termsConditions\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"electronicTransaction\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"prequalifiedTermsConditions\": {\r\n            \"version\": \"3.4\"\r\n        },\r\n        \"eConsent\": {\r\n            \"timestamp\": \"10/23/2022\"\r\n        }\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"501"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:23:29 GMT"},{"key":"x-amzn-RequestId","value":"7b7a7e93-8b08-488e-807b-baff3746edc9"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P02D7HmRPHcFoeg="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d07f-228d9c3f28aea220b26950d2"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"bn3cAogOXeSE8fzq2QIF9wZmIiuUnnkTfd_b1nvfrHcUBbNzK9-YJw=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"applicationId\": \"{{applicationId}}\",\n        \"applicationStatus\": \"APPROVED\",\n        \"applicationSubStatus\": \"\",\n        \"message\": \"Application Approved\",\n        \"approvedAmount\": \"3520.00\",\n        \"applicationType\": \"LTO\",\n        \"processingFee\": \"0\",\n        \"currencyCode\": \"USD\",\n        \"applicationCreateTime\": \"2020-07-17T10:22:55.105Z\",\n        \"applicationUpdateTime\": \"2020-07-17T10:23:28.493Z\",\n        \"additionalInformation\": {\n            \"customerInformation\": \"Verified\",\n            \"cartInformation\": \"Verified\",\n            \"bankInformation\": \"Verified\",\n            \"incomeInformation\": \"Verified\"\n        }\n    },\n    \"status\": 200\n}"}],"_postman_id":"0ba20c03-42a9-4214-ae9a-d9b083099f91"},{"name":"Payment Plan","event":[{"listen":"test","script":{"exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});\r","pm.test(\"Success message\", function () {\r","    pm.expect(pm.response.text()).to.include(\"success\");\r","});"],"type":"text/javascript","id":"2c6b2ee4-65df-4ef7-b0f2-5b0634e14e49"}}],"id":"b35fc1ff-a29c-49a7-807e-75ccf51cbbf0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"<p>(optional - ID generated by the client)</p>\n","type":"text"}],"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/paymentPlan","description":"<h1 id=\"payment-plan\">Payment Plan</h1>\n<p>This endpoint gets the payment schedule. Read the fields as leaseField or loanField depending on the merchant type</p>\n<h2 id=\"path-params\">PATH PARAMS</h2>\n<blockquote>\n<h2 id=\"applicationidstring\"><code>applicationId:string</code></h2>\n<ul>\n<li>Required</li>\n<li>ApplicationId is returned when calling the create application endpoint</li>\n</ul>\n</blockquote>\n<h1 id=\"response-object\">Response Object</h1>\n<h2 id=\"datahash\"><code>data:hash</code></h2>\n<blockquote>\n<h3 id=\"documentshash\"><code>documents:hash</code></h3>\n<ul>\n<li>Documents details<blockquote>\n<h4 id=\"documentsdocumentstring\"><code>documents.document:string</code></h4>\n</blockquote>\n</li>\n</ul>\n<blockquote>\n<ul>\n<li>Document type agreement/addendum</li>\n</ul>\n<h4 id=\"documentssignstring\"><code>documents.sign:string</code></h4>\n<ul>\n<li>Sign document url</li>\n</ul>\n<h4 id=\"documentsprioritystring\"><code>documents.priority:string</code></h4>\n<ul>\n<li>priority</li>\n</ul>\n<h4 id=\"documentsrenderstring\"><code>documents.render:string</code></h4>\n<ul>\n<li>Get agreement url</li>\n</ul>\n</blockquote>\n</blockquote>\n<blockquote>\n<h3 id=\"paymentplansummaryhash\"><code>paymentPlanSummary:hash</code></h3>\n<ul>\n<li>Payment plan details<blockquote>\n<h4 id=\"paymentplansummarylastpaymentamountstring\"><code>paymentPlanSummary.lastPaymentAmount:string</code></h4>\n</blockquote>\n</li>\n</ul>\n<blockquote>\n<ul>\n<li>Last payment amount</li>\n</ul>\n<h4 id=\"paymentplansummarypaymentamountstring\"><code>paymentPlanSummary.paymentAmount:string</code></h4>\n<ul>\n<li>Regular payment amount</li>\n</ul>\n<h4 id=\"paymentplansummaryleaseterminmonthsstring\"><code>paymentPlanSummary.leaseTermInMonths:string</code></h4>\n<ul>\n<li>Lease/Loan term</li>\n</ul>\n<h4 id=\"paymentplansummaryprocessingfeestring\"><code>paymentPlanSummary.processingFee:string</code></h4>\n<ul>\n<li>Processing fee amount</li>\n</ul>\n<h4 id=\"paymentplansummaryleaseamountstring\"><code>paymentPlanSummary.leaseAmount:string</code></h4>\n<ul>\n<li>Lease/Loan amount</li>\n</ul>\n<h4 id=\"paymentplansummaryleasecoststring\"><code>paymentPlanSummary.leaseCost:string</code></h4>\n<ul>\n<li>Lease/Loan cost</li>\n</ul>\n<h4 id=\"paymentplansummaryleasetotalamountstring\"><code>paymentPlanSummary.leaseTotalAmount:string</code></h4>\n<ul>\n<li>Lease/Loan total amount</li>\n</ul>\n<h4 id=\"paymentplansummarypaymentfrequencystring\"><code>paymentPlanSummary.paymentFrequency:string</code></h4>\n<ul>\n<li>Payment frequency</li>\n</ul>\n<h4 id=\"paymentplansummarycurrencycodestring\"><code>paymentPlanSummary.currencyCode:string</code></h4>\n<ul>\n<li>Currency code</li>\n</ul>\n<h4 id=\"paymentplansummarystbsboolean\"><code>paymentPlanSummary.stbs:boolean</code></h4>\n<ul>\n<li>Sales tax by snap flag</li>\n</ul>\n<h4 id=\"paymentplansummarystbssalestaxpercentstring\"><code>paymentPlanSummary.stbsSalesTaxPercent:string</code></h4>\n<ul>\n<li>Sales tax percent</li>\n</ul>\n<h4 id=\"paymentplansummarycpodatestring\"><code>paymentPlanSummary.cpoDate:string</code></h4>\n<ul>\n<li>Cash payoff date</li>\n</ul>\n<h4 id=\"paymentplansummarycpoamountstring\"><code>paymentPlanSummary.cpoAmount:string</code></h4>\n<ul>\n<li>Cash payoff amount</li>\n</ul>\n<h4 id=\"paymentplansummarycponumberofpaymentsstring\"><code>paymentPlanSummary.cpoNumberOfPayments:string</code></h4>\n<ul>\n<li>Cash payoff number of payments</li>\n</ul>\n<h4 id=\"paymentplansummarycpopaymentsamountstring\"><code>paymentPlanSummary.cpoPaymentsAmount:string</code></h4>\n<ul>\n<li>Cash payoff payment amount</li>\n</ul>\n<h4 id=\"paymentplansummarycpolastpaymentamountstring\"><code>paymentPlanSummary.cpoLastPaymentAmount:string</code></h4>\n<ul>\n<li>Cash payoff last payment amount</li>\n</ul>\n<h4 id=\"paymentplansummarycpoleasecoststring\"><code>paymentPlanSummary.cpoLeaseCost:string</code></h4>\n<ul>\n<li>Cash payoff least cost</li>\n</ul>\n<h4 id=\"paymentplansummaryinitialpaymentstring\"><code>paymentPlanSummary.initialPayment:string</code></h4>\n<ul>\n<li>Initial payment amount</li>\n</ul>\n<h4 id=\"paymentplansummarynumberofpaymentswithsameamountstring\"><code>paymentPlanSummary.numberOfPaymentsWithSameAmount:string</code></h4>\n<ul>\n<li>Number of payments with same amount</li>\n<li>Initial payment amount</li>\n</ul>\n<h4 id=\"paymentplansummarytotalnumberofpaymentsstring\"><code>paymentPlanSummary.totalNumberOfPayments:string</code></h4>\n<ul>\n<li>Total number of payments</li>\n</ul>\n<h4 id=\"paymentplansummarylastpaymentdatestring\"><code>paymentPlanSummary.lastPaymentDate:string</code></h4>\n<ul>\n<li>Last payment date</li>\n</ul>\n</blockquote>\n</blockquote>\n<h2 id=\"successboolean\"><code>success:boolean</code></h2>\n<blockquote>\n<ul>\n<li>Value with the result of the request. Possible values are TRUE or False</li>\n</ul>\n</blockquote>\n<h2 id=\"statusinteger\"><code>status:integer</code></h2>\n<blockquote>\n<ul>\n<li>Value with status code of the request. For example: 200, 400, 404</li>\n</ul>\n</blockquote>\n","urlObject":{"path":["platform","v1","application","{{applicationId}}","paymentPlan"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"948d36ab-b7cf-4b9f-bb44-bcd4d492d815","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Content-Type","value":"application/json"},{"key":"Request-Id","value":"123"}],"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/paymentPlan"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"244"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:24:19 GMT"},{"key":"x-amzn-RequestId","value":"f42aea7e-5211-4753-a26a-e8db4014d312"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P02LeGszvHcFsxg="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d0af-3504dad84d30e4d08259a3b0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"jen45MDpH8DQoOEaPFvDVJdGipmCzTuiyeN1iMqlvOUBQG5Kixtyow=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"cpoDays\": 100,\n        \"documents\": [\n            {\n                \"document\": \"agreement\",\n                \"priority\": 1,\n                \"render\": \"https://api-qa.snapfinance.com/platform/v1/application/2410280079UT/agreement?renderType=html&document=agreement\",\n                \"sign\": \"https://api-qa.snapfinance.com/platform/v1/application/2410280079UT/signed?document=agreement\"\n            }\n        ],\n        \"paymentPlanSummary\": {\n            \"cpoAmount\": \"330.00\",\n            \"cpoDate\": \"2025-05-05\",\n            \"cpoLastPaymentAmount\": \"47.16\",\n            \"cpoLeaseCost\": \"0.00\",\n            \"cpoNumberOfPayments\": \"6\",\n            \"cpoPaymentsAmount\": \"47.14\",\n            \"currencyCode\": \"USD\",\n            \"finalNumberOfPayments\": \"39\",\n            \"firstPaymentDate\": \"2025-02-14\",\n            \"hangtagState\": false,\n            \"initialPayment\": \"0.00\",\n            \"lastPaymentAmount\": \"19.48\",\n            \"lastPaymentDate\": \"2026-07-31\",\n            \"leaseAmount\": \"320.00\",\n            \"leaseCost\": \"442.00\",\n            \"leaseTermInMonths\": \"18\",\n            \"leaseTotalAmount\": \"762.00\",\n            \"numberOfPaymentsWithSameAmount\": \"38\",\n            \"paymentAmount\": \"19.54\",\n            \"paymentFrequency\": \"BI_WEEKLY\",\n            \"processingFee\": \"10.00\",\n            \"propertyCondition\": \"New\",\n            \"stbs\": false,\n            \"stbsSalesTaxPercent\": \"0.00\",\n            \"summaryAcceptanceRequired\": false,\n            \"totalNumberOfPayments\": \"39\"\n        }\n    },\n    \"status\": 200,\n    \"success\": true\n}"},{"id":"233b5b6a-1fce-4fc2-ae8f-fd389759d10a","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Content-Type","value":"application/json"},{"key":"Request-Id","value":"123"}],"url":{"raw":"{{baseUrl}}/platform/v1/application/{{applicationId}}/paymentPlan?frequency=BW","host":["{{baseUrl}}"],"path":["platform","v1","application","{{applicationId}}","paymentPlan"],"query":[{"key":"frequency","value":"BW"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"136"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 15:58:33 GMT"},{"key":"x-amzn-RequestId","value":"e686de7a-4a8b-472a-99bb-c3810ca266ad"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P0yadGxZPHcFgJQ="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11caa9-a9e85c6759f66b046f148f15"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 4c6f3dc807d213a0da966381e4886b08.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"YxjE8a_vRBiTtIchTjpRj97HIPvHhb2UFEne1JzTFnB4twNJS3u6QA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"status\": 404,\n    \"error\": [\n        {\n            \"code\": \"application_invalid\",\n            \"type\": \"invalid_request_error\",\n            \"message\": \"Application not found\"\n        }\n    ]\n}"},{"id":"f82ea42a-f213-4fa6-bfdb-f98572358f78","name":"Oklahoma","originalRequest":{"method":"GET","header":[{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"}],"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/paymentPlan"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1298"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Mon, 28 Oct 2024 05:49:08 GMT"},{"key":"X-Amzn-Trace-Id","value":"Root=1-671f25d3-71b827a74d0ce4ea2c443859"},{"key":"x-amzn-RequestId","value":"a495ab78-002c-4fa2-879c-193e421f9a10"},{"key":"X-XSS-Protection","value":"0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"AWLZIGy1vHcEv5Q="},{"key":"Cache-Control","value":"no-store"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 09a1a54fdbf13d19927a903f4a7d5186.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"SEA900-P2"},{"key":"X-Amz-Cf-Id","value":"jKBBVOPfk0QQWLHUEXf79MNyBoYph7MLZLGoRj7xY5c80hxih3gAPA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"documents\": [\n            {\n                \"document\": \"addendum\",\n                \"sign\": \"https://api-qa.snapfinance.com/platform/v1/application/241027000MOK/signed?document=addendum\",\n                \"priority\": 1,\n                \"render\": \"https://api-qa.snapfinance.com/platform/v1/application/241027000MOK/agreement?renderType=html&document=addendum\"\n            },\n            {\n                \"document\": \"agreement\",\n                \"sign\": \"https://api-qa.snapfinance.com/platform/v1/application/241027000MOK/signed?document=agreement\",\n                \"priority\": 2,\n                \"render\": \"https://api-qa.snapfinance.com/platform/v1/application/241027000MOK/agreement?renderType=html&document=agreement\"\n            }\n        ],\n        \"paymentPlanSummary\": {\n            \"lastPaymentAmount\": \"19.48\",\n            \"paymentAmount\": \"19.54\",\n            \"leaseTermInMonths\": \"18\",\n            \"processingFee\": \"10.00\",\n            \"leaseAmount\": \"320.00\",\n            \"leaseCost\": \"442.00\",\n            \"leaseTotalAmount\": \"762.00\",\n            \"paymentFrequency\": \"BI_WEEKLY\",\n            \"currencyCode\": \"USD\",\n            \"stbs\": false,\n            \"summaryAcceptanceRequired\": false,\n            \"hangtagState\": false,\n            \"stbsSalesTaxPercent\": \"0.00\",\n            \"cpoDate\": \"2025-05-05\",\n            \"cpoAmount\": \"330.00\",\n            \"cpoNumberOfPayments\": \"6\",\n            \"cpoPaymentsAmount\": \"47.14\",\n            \"cpoLastPaymentAmount\": \"47.16\",\n            \"cpoLeaseCost\": \"0.00\",\n            \"initialPayment\": \"0.00\",\n            \"totalNumberOfPayments\": \"39\",\n            \"lastPaymentDate\": \"2026-07-31\",\n            \"firstPaymentDate\": \"2025-02-14\",\n            \"propertyCondition\": \"New\",\n            \"finalNumberOfPayments\": \"39\",\n            \"numberOfPaymentsWithSameAmount\": \"38\"\n        },\n        \"cpoDays\": 100\n    },\n    \"success\": true,\n    \"status\": 200\n}"},{"id":"509f85ab-e17b-42f4-a739-06f0e1bf06cc","name":"Oklahoma","originalRequest":{"method":"GET","header":[{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"}],"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/paymentPlan"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1298"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Mon, 28 Oct 2024 05:49:08 GMT"},{"key":"X-Amzn-Trace-Id","value":"Root=1-671f25d3-71b827a74d0ce4ea2c443859"},{"key":"x-amzn-RequestId","value":"a495ab78-002c-4fa2-879c-193e421f9a10"},{"key":"X-XSS-Protection","value":"0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"AWLZIGy1vHcEv5Q="},{"key":"Cache-Control","value":"no-store"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 09a1a54fdbf13d19927a903f4a7d5186.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"SEA900-P2"},{"key":"X-Amz-Cf-Id","value":"jKBBVOPfk0QQWLHUEXf79MNyBoYph7MLZLGoRj7xY5c80hxih3gAPA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"documents\": [\n            {\n                \"document\": \"addendum\",\n                \"sign\": \"https://api-qa.snapfinance.com/platform/v1/application/241027000MOK/signed?document=addendum\",\n                \"priority\": 1,\n                \"render\": \"https://api-qa.snapfinance.com/platform/v1/application/241027000MOK/agreement?renderType=html&document=addendum\"\n            },\n            {\n                \"document\": \"agreement\",\n                \"sign\": \"https://api-qa.snapfinance.com/platform/v1/application/241027000MOK/signed?document=agreement\",\n                \"priority\": 2,\n                \"render\": \"https://api-qa.snapfinance.com/platform/v1/application/241027000MOK/agreement?renderType=html&document=agreement\"\n            }\n        ],\n        \"paymentPlanSummary\": {\n            \"lastPaymentAmount\": \"19.48\",\n            \"paymentAmount\": \"19.54\",\n            \"leaseTermInMonths\": \"18\",\n            \"processingFee\": \"10.00\",\n            \"leaseAmount\": \"320.00\",\n            \"leaseCost\": \"442.00\",\n            \"leaseTotalAmount\": \"762.00\",\n            \"paymentFrequency\": \"BI_WEEKLY\",\n            \"currencyCode\": \"USD\",\n            \"stbs\": false,\n            \"summaryAcceptanceRequired\": false,\n            \"hangtagState\": false,\n            \"stbsSalesTaxPercent\": \"0.00\",\n            \"cpoDate\": \"2025-05-05\",\n            \"cpoAmount\": \"330.00\",\n            \"cpoNumberOfPayments\": \"6\",\n            \"cpoPaymentsAmount\": \"47.14\",\n            \"cpoLastPaymentAmount\": \"47.16\",\n            \"cpoLeaseCost\": \"0.00\",\n            \"initialPayment\": \"0.00\",\n            \"totalNumberOfPayments\": \"39\",\n            \"lastPaymentDate\": \"2026-07-31\",\n            \"firstPaymentDate\": \"2025-02-14\",\n            \"propertyCondition\": \"New\",\n            \"finalNumberOfPayments\": \"39\",\n            \"numberOfPaymentsWithSameAmount\": \"38\"\n        },\n        \"cpoDays\": 100\n    },\n    \"success\": true,\n    \"status\": 200\n}"},{"id":"ee51ffb6-8631-4ff2-bd6d-592e0bd04b00","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Content-Type","value":"application/json"},{"key":"Request-Id","value":"123"}],"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/paymentPlan"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"244"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:24:19 GMT"},{"key":"x-amzn-RequestId","value":"f42aea7e-5211-4753-a26a-e8db4014d312"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P02LeGszvHcFsxg="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d0af-3504dad84d30e4d08259a3b0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"jen45MDpH8DQoOEaPFvDVJdGipmCzTuiyeN1iMqlvOUBQG5Kixtyow=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"cpoDays\": 100,\n        \"documents\": [\n            {\n                \"document\": \"agreement\",\n                \"priority\": 1,\n                \"render\": \"https://api-qa.snapfinance.com/platform/v1/application/2410280079UT/agreement?renderType=html&document=agreement\",\n                \"sign\": \"https://api-qa.snapfinance.com/platform/v1/application/2410280079UT/signed?document=agreement\"\n            }\n        ],\n        \"paymentPlanSummary\": {\n            \"cpoAmount\": \"330.00\",\n            \"cpoDate\": \"2025-05-05\",\n            \"cpoLastPaymentAmount\": \"47.16\",\n            \"cpoLeaseCost\": \"0.00\",\n            \"cpoNumberOfPayments\": \"6\",\n            \"cpoPaymentsAmount\": \"47.14\",\n            \"currencyCode\": \"USD\",\n            \"finalNumberOfPayments\": \"39\",\n            \"firstPaymentDate\": \"2025-02-14\",\n            \"hangtagState\": false,\n            \"initialPayment\": \"0.00\",\n            \"lastPaymentAmount\": \"19.48\",\n            \"lastPaymentDate\": \"2026-07-31\",\n            \"leaseAmount\": \"320.00\",\n            \"leaseCost\": \"442.00\",\n            \"leaseTermInMonths\": \"18\",\n            \"leaseTotalAmount\": \"762.00\",\n            \"numberOfPaymentsWithSameAmount\": \"38\",\n            \"paymentAmount\": \"19.54\",\n            \"paymentFrequency\": \"BI_WEEKLY\",\n            \"processingFee\": \"10.00\",\n            \"propertyCondition\": \"New\",\n            \"stbs\": false,\n            \"stbsSalesTaxPercent\": \"0.00\",\n            \"summaryAcceptanceRequired\": false,\n            \"totalNumberOfPayments\": \"39\"\n        }\n    },\n    \"status\": 200,\n    \"success\": true\n}"},{"id":"2262377f-cf8a-4bf1-bc4c-e42c6a3e0c08","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Content-Type","value":"application/json"},{"key":"Request-Id","value":"123"}],"url":{"raw":"{{baseUrl}}/platform/v1/application/{{applicationId}}/paymentPlan?frequency=BW","host":["{{baseUrl}}"],"path":["platform","v1","application","{{applicationId}}","paymentPlan"],"query":[{"key":"frequency","value":"BW"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"136"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 15:58:33 GMT"},{"key":"x-amzn-RequestId","value":"e686de7a-4a8b-472a-99bb-c3810ca266ad"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P0yadGxZPHcFgJQ="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11caa9-a9e85c6759f66b046f148f15"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 4c6f3dc807d213a0da966381e4886b08.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"YxjE8a_vRBiTtIchTjpRj97HIPvHhb2UFEne1JzTFnB4twNJS3u6QA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"status\": 404,\n    \"error\": [\n        {\n            \"code\": \"application_invalid\",\n            \"type\": \"invalid_request_error\",\n            \"message\": \"Application not found\"\n        }\n    ]\n}"}],"_postman_id":"b35fc1ff-a29c-49a7-807e-75ccf51cbbf0"},{"name":"Payment Estimate","id":"080fabb9-78ad-41e5-9624-40141f791312","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"items\": [\n    {\n      \"price\": 1250,\n      \"itemId\": \"ABC\"\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/hangtag/paymentestimate?frequency=W","description":"<h1 id=\"payment-estimate\">Payment Estimate</h1>\n<p>Returns a payment estimate for hangtag items.</p>\n<h2 id=\"query-parameters\">Query parameters</h2>\n<h3 id=\"frequency-string-required\">frequency (string, required)</h3>\n<p>Payment schedule frequency for the estimate. Allowed values:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>BW</td>\n<td>Bi-Weekly</td>\n</tr>\n<tr>\n<td>W</td>\n<td>Weekly</td>\n</tr>\n<tr>\n<td>M</td>\n<td>Monthly</td>\n</tr>\n<tr>\n<td>MW</td>\n<td>Monthly Weekly</td>\n</tr>\n<tr>\n<td>SM</td>\n<td>Semi-Monthly</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"request-body\">Request body</h2>\n<p>Send a JSON body with an <code>items</code> array. Each element includes <code>price</code> and <code>itemId</code> (see example).</p>\n","urlObject":{"path":["platform","v1","hangtag","paymentestimate"],"host":["{{baseUrl}}"],"query":[{"disabled":true,"description":{"content":"<p>Bi-Weekly</p>\n","type":"text/plain"},"key":"frequency","value":"BW"},{"description":{"content":"<p>Weekly</p>\n","type":"text/plain"},"key":"frequency","value":"W"},{"disabled":true,"description":{"content":"<p>Monthly</p>\n","type":"text/plain"},"key":"frequency","value":"M"},{"disabled":true,"description":{"content":"<p>Monthly Weekly</p>\n","type":"text/plain"},"key":"frequency","value":"MW"},{"disabled":true,"description":{"content":"<p>Semi-Monthly</p>\n","type":"text/plain"},"key":"frequency","value":"SM"}],"variable":[]}},"response":[{"id":"9690dfea-c820-45b8-8967-c4808e2005f8","name":"OK","originalRequest":{"method":"POST","header":[],"url":{"raw":"{{baseUrl}}/platform/v1/hangtag/paymentestimate?frequency=W","host":["{{baseUrl}}"],"path":["platform","v1","hangtag","paymentestimate"],"query":[{"key":"frequency","value":"BW","description":"Bi-Weekly","disabled":true},{"key":"frequency","value":"W","description":"Weekly"},{"key":"frequency","value":"M","description":"Monthly","disabled":true},{"key":"frequency","value":"MW","description":"Monthly Weekly","disabled":true},{"key":"frequency","value":"SM","description":"Semi-Monthly","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"price\": 1250,\n        \"itemId\": \"ABC\",\n        \"paymentScheduleAmount\": 51.48,\n        \"lastPaymentAmount\": 51.02,\n        \"frequency\": \"W\",\n        \"totalCost\": 2487.5,\n        \"costOfLease\": 1237.5,\n        \"salesTaxAmount\": 199,\n        \"totalPayments\": 2686.5,\n        \"hundredDayPaymentDueDate\": \"2025-04-17\",\n        \"hundredDayPaymentAmount\": 1431\n    },\n    \"status\": 200\n}"},{"id":"fbda279d-c12b-4832-8099-18cbb5919c30","name":"Bad Request","originalRequest":{"method":"POST","header":[],"url":{"raw":"{{baseUrl}}/platform/v1/hangtag/paymentestimate?frequency=W","host":["{{baseUrl}}"],"path":["platform","v1","hangtag","paymentestimate"],"query":[{"key":"frequency","value":"BW","description":"Bi-Weekly","disabled":true},{"key":"frequency","value":"W","description":"Weekly"},{"key":"frequency","value":"M","description":"Monthly","disabled":true},{"key":"frequency","value":"MW","description":"Monthly Weekly","disabled":true},{"key":"frequency","value":"SM","description":"Semi-Monthly","disabled":true}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n  \"success\": false,\n  \"status\": 400,\n  \"error\": [\n    {\n      \"type\": \"validation_error\",\n      \"code\": \"payment_estimate_price_missing\",\n      \"message\": \"Price in product item is missing\"\n    }\n  ]\n}"}],"_postman_id":"080fabb9-78ad-41e5-9624-40141f791312"},{"name":"Customer Communication Preferences","id":"2c68b1b3-35f8-4cc8-8dd0-c8bc9eb01771","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"app-origin-id","value":"originations","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"customerId\": \"1234567890\",\n  \"communicationChannel\": \"EMAIL\",\n  \"consentType\": \"SDLR_ECONSENT\",\n  \"consentStatus\": true\n}"},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/comm-preferences","description":"<h1 id=\"create-customer-communication-preferences\">Create Customer Communication Preferences</h1>\n<p>This endpoint creates or updates a customer's communication preferences for regulatory and marketing consents.</p>\n<h2 id=\"request-body\">Request Body</h2>\n<ul>\n<li><code>customerId</code> (string, required if applicationId not in header): Unique id of the Customer.</li>\n<li><code>communicationChannel</code> (string, required for most consent types): One of <code>EMAIL</code>, <code>SMS</code>, <code>PUSH_NOTIFICATION</code>, <code>CALL</code>, <code>NOT_APPLICABLE</code>.</li>\n<li><code>consentType</code> (string, required): Consent type, e.g. <code>SDLR_ECONSENT</code>, <code>NO_EMAIL</code>, <code>DO_NOT_SHARE_GLBA</code>, etc.</li>\n<li><code>consentStatus</code> (boolean, required): Consent status, true or false.</li>\n</ul>\n<h2 id=\"example-request\">Example Request</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"customerId\": \"1234567890\",\n  \"communicationChannel\": \"EMAIL\",\n  \"consentType\": \"SDLR_ECONSENT\",\n  \"consentStatus\": true\n}\n</code></pre>\n<h2 id=\"success-response\">Success Response</h2>\n<ul>\n<li><code>200 OK</code></li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"success\": true,\n  \"message\": \"Preferences updated successfully\"\n}\n</code></pre>\n<h2 id=\"error-response\">Error Response</h2>\n<ul>\n<li><code>400 Bad Request</code></li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"errors\": [\n    { \"code\": \"4105\", \"message\": \"customerId is mandatory in case applicationId is not provided in the header\" },\n    { \"code\": \"4106\", \"message\": \"communicationChannel can't be null and value should be any one these : [CALL, EMAIL, PUSH_NOTIFICATION, SMS]\" },\n    { \"code\": \"4107\", \"message\": \"consentType can't be null and value should be any one these : [SDLR_ECONSENT, NO_EMAIL, NO_SMS, NO_CALL, NEGATIVE_OPTIONRULE_ECONSENT]\" },\n    { \"code\": \"4108\", \"message\": \"app-origin-id header shouldn't be null or empty and value should be any one these : [originations]\" },\n    { \"code\": \"4178\", \"message\": \"application-id header is missing\" }\n  ]\n}\n</code></pre>\n","urlObject":{"path":["platform","v1","application","{{applicationId}}","comm-preferences"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"f425df8a-9006-490b-b24e-52ccff25afa3","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{bearerToken}}"},{"key":"app-origin-id","value":"originations"}],"body":{"mode":"raw","raw":"{\n  \"customerId\": \"1234567890\",\n  \"communicationChannel\": \"EMAIL\",\n  \"consentType\": \"SDLR_ECONSENT\",\n  \"consentStatus\": true\n}"},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/comm-preferences"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"success\": true,\n  \"message\": \"Preferences updated successfully\"\n}"},{"id":"89d9458c-3c6d-4a6b-933b-1e54be68ec5f","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{bearerToken}}"},{"key":"app-origin-id","value":"originations"}],"body":{"mode":"raw","raw":"{\n  \"customerId\": \"\",\n  \"communicationChannel\": \"\",\n  \"consentType\": \"\",\n  \"consentStatus\": false\n}"},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/comm-preferences"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"errors\": [\n    { \"code\": \"4105\", \"message\": \"customerId is mandatory in case applicationId is not provided in the header\" },\n    { \"code\": \"4106\", \"message\": \"communicationChannel can't be null and value should be any one these : [CALL, EMAIL, PUSH_NOTIFICATION, SMS]\" },\n    { \"code\": \"4107\", \"message\": \"consentType can't be null and value should be any one these : [SDLR_ECONSENT, NO_EMAIL, NO_SMS, NO_CALL, NEGATIVE_OPTIONRULE_ECONSENT]\" },\n    { \"code\": \"4108\", \"message\": \"app-origin-id header shouldn't be null or empty and value should be any one these : [originations]\" },\n    { \"code\": \"4178\", \"message\": \"application-id header is missing\" }\n  ]\n}"},{"id":"3f7e6db1-667e-4621-b331-38327333f0e6","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{bearerToken}}"},{"key":"app-origin-id","value":"originations"}],"body":{"mode":"raw","raw":"{\n  \"customerId\": \"\",\n  \"communicationChannel\": \"\",\n  \"consentType\": \"\",\n  \"consentStatus\": false\n}"},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/comm-preferences"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"errors\": [\n    { \"code\": \"4105\", \"message\": \"customerId is mandatory in case applicationId is not provided in the header\" },\n    { \"code\": \"4106\", \"message\": \"communicationChannel can't be null and value should be any one these : [CALL, EMAIL, PUSH_NOTIFICATION, SMS]\" },\n    { \"code\": \"4107\", \"message\": \"consentType can't be null and value should be any one these : [SDLR_ECONSENT, NO_EMAIL, NO_SMS, NO_CALL, NEGATIVE_OPTIONRULE_ECONSENT]\" },\n    { \"code\": \"4108\", \"message\": \"app-origin-id header shouldn't be null or empty and value should be any one these : [originations]\" },\n    { \"code\": \"4178\", \"message\": \"application-id header is missing\" }\n  ]\n}"},{"id":"38ec28f2-5fd5-41a7-839d-7626c1ec7a70","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{bearerToken}}"},{"key":"app-origin-id","value":"originations"}],"body":{"mode":"raw","raw":"{\n  \"customerId\": \"1234567890\",\n  \"communicationChannel\": \"EMAIL\",\n  \"consentType\": \"SDLR_ECONSENT\",\n  \"consentStatus\": true\n}"},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/comm-preferences"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"success\": true,\n  \"message\": \"Preferences updated successfully\"\n}"}],"_postman_id":"2c68b1b3-35f8-4cc8-8dd0-c8bc9eb01771"},{"name":"Agreement Details","event":[{"listen":"test","script":{"exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});\r","pm.test(\"Success message\", function () {\r","    pm.expect(pm.response.text()).to.include(\"success\");\r","});"],"type":"text/javascript","id":"9fc0a904-2a47-4acf-bf01-eb1e1a9fe85d"}}],"id":"6aee82df-81d2-4b62-b8e2-386d679214da","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"<p>(optional - ID generated by the client)</p>\n","type":"text"}],"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/agreement?renderType=html&document=agreement","description":"<h1 id=\"agreement-details\">Agreement Details</h1>\n<p>This endpoint fetches the agreement details which the consumer needs to accept and sign.</p>\n<h2 id=\"path-params\">PATH PARAMS</h2>\n<blockquote>\n<h2 id=\"applicationidstring\"><code>applicationId:string</code></h2>\n<ul>\n<li>Required</li>\n<li>ApplicationId is returned when calling the create application endpoint</li>\n</ul>\n</blockquote>\n<h2 id=\"query-parameters\">QUERY PARAMETERS</h2>\n<blockquote>\n<h2 id=\"rendertype\"><code>renderType</code></h2>\n<ul>\n<li>Optional</li>\n<li>Render type</li>\n</ul>\n</blockquote>\n<blockquote>\n<h2 id=\"document\"><code>document</code></h2>\n<ul>\n<li>Optional</li>\n<li>agreement/addendum</li>\n</ul>\n</blockquote>\n<blockquote>\n<h2 id=\"svgonly\"><code>svgonly</code></h2>\n<ul>\n<li>Optional</li>\n<li>Generate HTML agreement version</li>\n</ul>\n</blockquote>\n<blockquote>\n<h2 id=\"language\"><code>language</code></h2>\n<ul>\n<li>Optional</li>\n<li>Agreement language EN(English) / ES(Spanish)</li>\n</ul>\n</blockquote>\n<blockquote>\n<h2 id=\"summaryacceptance\"><code>summaryAcceptance</code></h2>\n<ul>\n<li>Mandatory, send true value</li>\n<li>Acceptance viewed and acknowledge agreement terms</li>\n</ul>\n</blockquote>\n<h1 id=\"response-object\">Response Object</h1>\n<h2 id=\"datahash\"><code>data:hash</code></h2>\n<blockquote>\n<h4 id=\"agreementinformationhash\"><code>agreementInformation:hash</code></h4>\n<ul>\n<li>Payment plan details</li>\n</ul>\n<h4 id=\"agreementinformationapplicationidstring\"><code>agreementInformation.applicationId:string</code></h4>\n<blockquote>\n<ul>\n<li>Application ID</li>\n</ul>\n</blockquote>\n<h4 id=\"agreementinformationcustomerinformationhash\"><code>agreementInformation.customerInformation:hash</code></h4>\n<blockquote>\n<ul>\n<li>Customer information details</li>\n</ul>\n<h4 id=\"customerinformationdobdatestring\"><code>customerInformation.dobDate:string</code></h4>\n<blockquote>\n<ul>\n<li>Date of birth</li>\n</ul>\n</blockquote>\n<h4 id=\"customerinformationcustomeridstring\"><code>customerInformation.customerId:string</code></h4>\n<blockquote>\n<ul>\n<li>Customer ID</li>\n</ul>\n</blockquote>\n<h4 id=\"customerinformationcustomeridtypestring\"><code>customerInformation.customerIdType:string</code></h4>\n<blockquote>\n<ul>\n<li>Customer ID type</li>\n</ul>\n</blockquote>\n<h4 id=\"customerinformationmobilephonestring\"><code>customerInformation.mobilePhone:string</code></h4>\n<blockquote>\n<ul>\n<li>Mobile phone</li>\n</ul>\n</blockquote>\n<h4 id=\"customerinformationmobilephonecountrystring\"><code>customerInformation.mobilePhoneCountry:string</code></h4>\n<blockquote>\n<ul>\n<li>Mobile phone country</li>\n</ul>\n</blockquote>\n<h4 id=\"customerinformationemailstring\"><code>customerInformation.email:string</code></h4>\n<blockquote>\n<ul>\n<li>Email</li>\n</ul>\n</blockquote>\n<h4 id=\"customerinformationfirstnamestring\"><code>customerInformation.firstName:string</code></h4>\n<blockquote>\n<ul>\n<li>First name</li>\n</ul>\n</blockquote>\n<h4 id=\"customerinformationlastnamestring\"><code>customerInformation.lastName:string</code></h4>\n<blockquote>\n<ul>\n<li>Last name</li>\n</ul>\n</blockquote>\n<h4 id=\"customerinformationbillingaddresshash\"><code>customerInformation.billingAddress:hash</code></h4>\n<blockquote>\n<ul>\n<li>Snap address</li>\n</ul>\n<h4 id=\"billingaddressstreetaddressstring\"><code>billingAddress.streetAddress:string</code></h4>\n<blockquote>\n<ul>\n<li>Street address</li>\n</ul>\n</blockquote>\n<h4 id=\"billingaddresscitystring\"><code>billingAddress.city:string</code></h4>\n<blockquote>\n<ul>\n<li>City</li>\n</ul>\n</blockquote>\n<h4 id=\"billingaddressstatestring\"><code>billingAddress.state:string</code></h4>\n<blockquote>\n<ul>\n<li>State</li>\n</ul>\n</blockquote>\n<h4 id=\"billingaddresscountrystring\"><code>billingAddress.country:string</code></h4>\n<blockquote>\n<ul>\n<li>Country</li>\n</ul>\n</blockquote>\n<h4 id=\"billingaddresspostalcodestring\"><code>billingAddress.postalCode:string</code></h4>\n<blockquote>\n<ul>\n<li>Postal code</li>\n</ul>\n</blockquote>\n</blockquote>\n</blockquote>\n<h4 id=\"agreementinformationsnapfinanceinformationhash\"><code>agreementInformation.snapFinanceInformation:hash</code></h4>\n<blockquote>\n<ul>\n<li>Snap information details</li>\n</ul>\n<h4 id=\"agreementinformationsnapfinanceinformationbusinessnamestring\"><code>agreementInformation.snapFinanceInformation.businessName:string</code></h4>\n<blockquote>\n<ul>\n<li>Business name</li>\n</ul>\n</blockquote>\n<h4 id=\"snapfinanceinformationemailstring\"><code>snapFinanceInformation.email:string</code></h4>\n<blockquote>\n<ul>\n<li>Email</li>\n</ul>\n</blockquote>\n<h4 id=\"snapfinanceinformationphonenumberstring\"><code>snapFinanceInformation.phoneNumber:string</code></h4>\n<blockquote>\n<ul>\n<li>Phone number</li>\n</ul>\n</blockquote>\n<h4 id=\"snapfinanceinformationphonenumbercodestring\"><code>snapFinanceInformation.phoneNumberCode:string</code></h4>\n<blockquote>\n<ul>\n<li>Phone number code</li>\n</ul>\n</blockquote>\n<h4 id=\"snapfinanceinformationsnapaddresshash\"><code>snapFinanceInformation.snapAddress:hash</code></h4>\n<blockquote>\n<ul>\n<li>Snap address</li>\n</ul>\n<h4 id=\"snapaddressstreetaddressstring\"><code>snapAddress.streetAddress:string</code></h4>\n<blockquote>\n<ul>\n<li>Street address</li>\n</ul>\n</blockquote>\n<h4 id=\"snapaddresscitystring\"><code>snapAddress.city:string</code></h4>\n<blockquote>\n<ul>\n<li>City</li>\n</ul>\n</blockquote>\n<h4 id=\"snapaddressstatestring\"><code>snapAddress.state:string</code></h4>\n<blockquote>\n<ul>\n<li>State</li>\n</ul>\n</blockquote>\n<h4 id=\"snapaddresscountrystring\"><code>snapAddress.country:string</code></h4>\n<blockquote>\n<ul>\n<li>Country</li>\n</ul>\n</blockquote>\n<h4 id=\"snapaddresspostalcodestring\"><code>snapAddress.postalCode:string</code></h4>\n<blockquote>\n<ul>\n<li>Postal code</li>\n</ul>\n</blockquote>\n</blockquote>\n</blockquote>\n<h4 id=\"agreementinformationagreementdetailsstring\"><code>agreementInformation.agreementDetails:string</code></h4>\n<blockquote>\n<ul>\n<li>Agreement information using HTML format</li>\n</ul>\n</blockquote>\n</blockquote>\n","urlObject":{"path":["platform","v1","application","{{applicationId}}","agreement"],"host":["{{baseUrl}}"],"query":[{"key":"renderType","value":"html"},{"key":"document","value":"agreement"}],"variable":[]}},"response":[{"id":"c91cc869-1964-4fbd-8d34-fb32aa2395aa","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer pORU5GTWtNeE1UQkJPVE5DUl....JiWYvnmRQSSCozUr6Xt7RXRK","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Content-Type","value":"application/json"},{"key":"Request-Id","value":"123"}],"url":{"raw":"https://api-sandbox.snapfinance.com/platform/v1/application/{{applicationId}}/agreement?renderType=html&document=agreement","protocol":"https","host":["api-sandbox","snapfinance","com"],"path":["platform","v1","application","{{applicationId}}","agreement"],"query":[{"key":"renderType","value":"html"},{"key":"document","value":"agreement"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"136"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 16 Jul 2020 17:02:21 GMT"},{"key":"x-amzn-RequestId","value":"7bdbe015-ee4e-47a5-a8c5-70f56a2cde04"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"Pxo0aFo-PHcFy6A="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f10881c-f4d45cc21e4bc05a15184b31"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 0a72bb7be10458e1aefa37a097f21894.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"Zcwg0uNr6gJ8ilLNW9-r5krSpR6T7Z-LLnNpLYvub6tAYp-Dx30msw=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"status\": 404,\n    \"error\": [\n        {\n            \"code\": \"application_invalid\",\n            \"type\": \"invalid_request_error\",\n            \"message\": \"Application not found\"\n        }\n    ]\n}"},{"id":"6bbac550-9c36-45b0-82b3-ffdaeba520ec","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Content-Type","value":"application/json"},{"key":"Request-Id","value":"123"}],"url":{"raw":"{{baseUrl}}/platform/v1/application/{{applicationId}}/agreement?renderType=html&document=agreement","host":["{{baseUrl}}"],"path":["platform","v1","application","{{applicationId}}","agreement"],"query":[{"key":"renderType","value":"html"},{"key":"document","value":"agreement"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1825083"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:24:43 GMT"},{"key":"x-amzn-RequestId","value":"40b52282-2a30-4df6-8cdf-82aa447ca6b3"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P02OxEfnPHcF9yw="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d0c4-8b923ff4b1bf11f48fb3b3b8"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"OcTSGzIIqa3esIfeYqbdx2iywfRfpBgLnbSAPl3aJcuDg_Vl84kX2A=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"agreementInformation\": {\n            \"applicationId\": \"{{applicationId}}\",\n            \"customerInformation\": {\n                \"dobDate\": \"1977-07-07\",\n                \"customerId\": \"000007777\",\n                \"customerIdType\": \"SSN4\",\n                \"mobilePhone\": \"1000000019\",\n                \"mobilePhoneCountry\": \"US\",\n                \"email\": \"test@test.com\",\n                \"firstName\": \"John\",\n                \"lastName\": \"Smith\",\n                \"billingAddress\": {\n                    \"streetAddress\": \"123mainst\",\n                    \"city\": \"Saltlakecity\",\n                    \"state\": \"UT\",\n                    \"country\": \"US\",\n                    \"postalCode\": \"84001\"\n                }\n            },\n            \"snapFinanceInformation\": {\n                \"businessName\": \"Snap RTO LLC\",\n                \"snapAddress\": {\n                    \"streetAddress\": \"Any street in town\",\n                    \"city\": \"Salt Lake City\",\n                    \"state\": \"UT\",\n                    \"country\": \"US\",\n                    \"postalCode\": \"84126\"\n                },\n                \"email\": \"test@test.com\",\n                \"phoneNumber\": \"1000000007\",\n                \"phoneNumberCode\": \"US\"\n            },\n            \"agreementDetails\": \"<!DOCTYPE html>\\n<html>\\n\\t<head>\\n\\t\\t<meta charset=\\\"utf-8\\\">\\n\\t\\t<style type=\\\"text/css\\\">\\n\\t\\t\\tbody {background-color:lightgray; text-align:center;}\\n\\t\\t\\t.qoppa_pageborder {fill:white;}\\n\\t\\t\\t#qoppa_document {padding:5px; margin:auto;}\\n\\t\\t</style>\\n\\t</head>\\n\\t<body>\\n<?xml version='1.0' encoding='UTF-8'?><svg id=\\\"qoppa_document\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" version=\\\"1.1\\\" xmlns=\\\"http://www.w3.org/2000/svg\\\" xmlns:xlink=\\\"http://www.w3.org/1999/xlink\\\"><!-- jPDFWeb v2019R1.03 - Demo Version --><style>title p { display: block; }</style><g id=\\\"qoppa_viewxform\\\" transform=\\\"matrix(1 0 0 1 0 0)\\\"><style type=\\\"text/css\\\">@font-face {font-family:f0-0;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f0-1;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f0-2;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}</style><svg id=\\\"qoppa_page_p0\\\" class=\\\"qoppa_page\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\"><rect class=\\\"qoppa_pageborder\\\" x=\\\"0.5pt\\\" y=\\\"0.5pt\\\" width=\\\"611pt\\\" height=\\\"791pt\\\" fill=\\\"none\\\" /><svg class=\\\"qoppa_pagecontents\\\" x=\\\"0pt\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" viewBox=\\\"0 0 612 792\\\" ><g class=\\\"qoppa_contentstream\\\" transform=\\\"matrix(1 0 0 -1 0 792)\\\" fill=\\\"black\\\" stroke=\\\"black\\\" stroke-width=\\\"1\\\" stroke-linecap=\\\"butt\\\" stroke-linejoin=\\\"miter\\\" stroke-miterlimit=\\\"10\\\"><clipPath id=\\\"clip0-1\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><g clip-path=\\\"url(#clip0-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:8.25pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 213.8098 759.5594)\\\" x=\\\"0 7.942 15.279 23.221 29.942 37.279 43.395 47.058 54.395 62.337 70.279 78.221 86.163 93.5 100.837 108.174 111.1 118.437 126.995 134.937 142.274 149.611 158.774 166.111 174.053\\\">RENTAL-PURCHASE AGREEMENT</text></g><clipPath id=\\\"clip0-2\\\"><path d=\\\"M 35 701 L 285 701 L 285 758 L 35 758 L 35 701 z \\\"/></clipPath><g clip-path=\\\"url(#clip0-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 745.5311)\\\" x=\\\"0 5.56 11.12 16.68 21.68 27.24 29.9 37.12 42.68 51.01 56.57 62.13 67.69 72.69 75.35 78.68 84.24 89.8 94.8 99.8 105.36 108.69 112.02 114.8 117.46 124.13 131.35 138.02 144.69 147.35 154.57 160.68 168.46 171.12 176.68 182.24\\\">Lease Company (Lessor): SNAP RTO LLC</text></g><g clip-path=\\\"url(#clip0-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 732.2127)\\\" x=\\\"0 6.67 9.45 17.23 20.01 22.67 29.34 34.9 39.9 42.56 48.12 53.68 59.24 64.8\\\">P.O. Box 26561</text></g><g clip-path=\\\"url(#clip0-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 718.8943)\\\" x=\\\"0 6.67 12.23 14.51 17.29 19.95 25.51 31.07 36.07 41.63 44.29 51.51 53.79 56.57 61.57 64.35 67.01 74.23 80.34 83 88.56 94.12 99.68 105.24\\\">Salt Lake City, UT 84126</text></g><g clip-path=\\\"url(#clip0-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 705.576)\\\" x=\\\"0 6.67 12.23 17.79 23.35 28.91 31.69 34.35 37.68 43.24 48.8 54.36 57.69 60.35 65.91 71.47 77.03 80.36 85.92 91.48 97.04\\\">Phone: (877) 557-3769</text></g><clipPath id=\\\"clip0-3\\\"><path d=\\\"M 284 701 L 574 701 L 574 758 L 284 758 L 284 701 z \\\"/></clipPath><g clip-path=\\\"url(#clip0-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.225 745.5311)\\\" x=\\\"0 5.56 11.12 16.12 21.12 26.68 32.24 35.02 37.68 42.68 48.24 53.8 59.36 62.02 64.68 71.35 79.68 81.96 84.74\\\">Lessee: John  Smith</text></g><g clip-path=\\\"url(#clip0-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 290.225 732.2127)\\\" x=\\\"0 5.56 11.12 16.68 25.01 30.57 32.85 38.41 43.41\\\">123mainst</text></g><g clip-path=\\\"url(#clip0-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.225 718.8943)\\\" x=\\\"0 6.67 12.23 14.51 17.29 19.57 25.13 30.13 35.69 40.69 42.97 45.75 50.75 53.53 56.19 63.41 69.52 72.18 77.74 83.3 88.86 94.42\\\">Saltlakecity, UT 84001</text></g><g clip-path=\\\"url(#clip0-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 290.225 705.576)\\\" x=\\\"0 2.28 7.84 13.4 15.68 21.24 26.8 32.36 37.36 47.51 53.07 58.07 66.4 71.96 74.74 79.74 85.3\\\">jbolanos@acme.com</text></g><clipPath id=\\\"clip0-4\\\"><path d=\\\"M 35 674 L 285 674 L 285 702 L 35 702 L 35 674 z \\\"/></clipPath><g clip-path=\\\"url(#clip0-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 689.7576)\\\" x=\\\"0 6.67 12.23 17.79 20.07 22.35 27.35 32.91 35.69 37.97 43.53 49.09 51.75 54.53 61.75 64.53 67.19 72.75 78.31 83.87 89.43 94.99 100.55 106.11 111.67 117.23 126.67 133.89\\\">Application ID: 200717000WUT</text></g><clipPath id=\\\"clip0-5\\\"><path d=\\\"M 284 674 L 428 674 L 428 702 L 284 702 L 284 674 z \\\"/></clipPath><g clip-path=\\\"url(#clip0-5)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.225 689.7576)\\\" x=\\\"0 5.56 11.12 16.68 21.68 27.24 29.9 37.12 42.68 45.46 51.02 53.8 56.46 62.02 67.58 70.36 75.92 81.48 84.26 89.82 95.38 100.94\\\">Lease Date: 07/17/2020</text></g><g clip-path=\\\"url(#clip0-5)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.225 678.4393)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 27.68 34.35\\\">10:22 AM</text></g><clipPath id=\\\"clip0-6\\\"><path d=\\\"M 427 674 L 574 674 L 574 702 L 427 702 L 427 674 z \\\"/></clipPath><g clip-path=\\\"url(#clip0-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 433.375 689.7576)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79 40.45 47.67 53.23 58.79 64.35 66.63 69.41 71.69 77.25 82.81 85.59 88.25 95.47 101.03\\\">Property Condition: New</text></g><clipPath id=\\\"clip0-7\\\"><path d=\\\"M 35 631 L 574 631 L 574 675 L 35 675 L 35 631 z \\\"/></clipPath><g clip-path=\\\"url(#clip0-7)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 662.6209)\\\" x=\\\"0 7.22 12.78 17.78 22.78 26.11 28.39 33.95 36.73 39.01 44.57 50.13 52.79 58.35 61.13 63.79 69.35 74.91 80.47 86.03 91.03 93.69 99.25 104.81 107.09 112.65 118.21 120.87 126.43 131.99 135.32 140.32 145.88 151.44 156.44 162 167.56 170.22 173 176.33 181.89 190.22 192.88 195.66 201.22 206.78 209.44 216.66 222.22 225 230.56 232.84 235.12 240.68 244.01 246.67 250 252.78 258.34 263.9 266.56 269.89 276.56 279.89 285.45 291.01 296.57 299.9 302.68 307.68 311.01 314.34 317 319.78 325.34 328.67 331.45 337.01 342.57 345.9 348.56 354.12 359.12 364.68 366.96 372.52 374.8 380.36 385.92 391.48 394.14 396.42 401.98 404.64 411.31 416.31 421.87 424.15 429.71 431.99 434.77 437.43 444.1\\\">Description of goods being purchased from th* D E M O *(the “Property”) further explained in Exhibit A:</text></g><g clip-path=\\\"url(#clip0-7)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 649.3025)\\\" x=\\\"0 6.67 12.23 15.56 20.56 22.84 27.84 33.4 38.4 41.06 46.62 52.18 57.74 60.4 66.51 72.07 77.63 82.63 85.41 88.07 96.4 101.96 104.74 107.52 110.85 116.41 121.41\\\">Services and Fees, Mattress</text></g><clipPath id=\\\"clip0-8\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.025 757.4998 L 285.075 757.4998 L 285.075 756.9998 L 35.025 756.9998 L 35.025 757.4998 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.025 756.9998 L 35.525 756.9998 L 35.525 701.7264 L 35.025 701.7264 L 35.025 756.9998 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 285.075 757.4998 L 573.375 757.4998 L 573.375 756.9998 L 285.075 756.9998 L 285.075 757.4998 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.875 756.9998 L 573.375 756.9998 L 573.375 701.7264 L 572.875 701.7264 L 572.875 756.9998 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 284.575 756.9998 L 285.075 756.9998 L 285.075 701.7264 L 284.575 701.7264 L 284.575 756.9998 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.025 701.7264 L 285.075 701.7264 L 285.075 701.2264 L 35.025 701.2264 L 35.025 701.7264 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.025 701.2264 L 35.525 701.2264 L 35.525 674.5897 L 35.025 674.5897 L 35.025 701.2264 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 285.075 701.7264 L 428.225 701.7264 L 428.225 701.2264 L 285.075 701.2264 L 285.075 701.7264 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 284.575 701.2264 L 285.075 701.2264 L 285.075 674.5897 L 284.575 674.5897 L 284.575 701.2264 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 428.225 701.7264 L 573.375 701.7264 L 573.375 701.2264 L 428.225 701.2264 L 428.225 701.7264 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.875 701.2264 L 573.375 701.2264 L 573.375 674.5897 L 572.875 674.5897 L 572.875 701.2264 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 427.725 701.2264 L 428.225 701.2264 L 428.225 674.5897 L 427.725 674.5897 L 427.725 701.2264 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.025 674.5897 L 573.375 674.5897 L 573.375 674.0897 L 35.025 674.0897 L 35.025 674.5897 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.025 632.1346 L 573.375 632.1346 L 573.375 631.6346 L 35.025 631.6346 L 35.025 632.1346 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.875 674.0897 L 573.375 674.0897 L 573.375 632.1346 L 572.875 632.1346 L 572.875 674.0897 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.025 674.0897 L 35.525 674.0897 L 35.525 632.1346 L 35.025 632.1346 L 35.025 674.0897 z \\\"/><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 620.1658)\\\" x=\\\"0 6.11 13.89 21.11 29.44 36.11 42.22 45 52.78\\\">FORMATION</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 93.0951 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 97.0295 620.1658)\\\" x=\\\"0 7.78\\\">OF</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 110.9162 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 114.8506 620.1658)\\\" x=\\\"0 6.67 14.45 21.67 28.34 35.01 43.34 50.01 57.23 63.34\\\">AGREEMENT.</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 180.9688 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 184.9032 620.1658)\\\" x=\\\"0 6.67\\\">By</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 196.5731 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 200.5075 620.1658)\\\" x=\\\"0 5 7.28 12.84 18.4 20.68 26.24\\\">signing</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 232.3141 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 236.2485 620.1658)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 251.8686 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 255.803 620.1658)\\\" x=\\\"0 7.22 12.78 18.34 21.12 26.68 28.96 32.29 38.96 44.52 47.85 52.85 58.41 63.97 68.97\\\">Rental-Purchase</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 330.344 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 334.2784 620.1658)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement,</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 385.9727 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 389.9071 620.1658)\\\" x=\\\"0 5.56 7.84 12.84\\\">also</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 408.3105 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 412.2448 620.1658)\\\" x=\\\"0 5 10.56 16.12 23.34\\\">known</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 441.1511 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 445.0855 620.1658)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 455.647 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 459.5814 620.1658)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 465.1429 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 469.0773 620.1658)\\\" x=\\\"0 5.56 11.12 16.68 21.68\\\">Lease</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 496.3234 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 500.2578 620.1658)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.1738 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.1082 620.1658)\\\" x=\\\"0 7.22 9.5 12.28\\\">with</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 608.8475)\\\" x=\\\"0 7.78 13.34 16.12 18.4 23.96\\\">Option</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 62.6215 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 66.5575 608.8475)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 74.8974 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 78.8334 608.8475)\\\" x=\\\"0 6.67 12.23 15.56 20.56 26.12 31.68 36.68\\\">Purchase</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 121.0795 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 125.0155 608.8475)\\\" x=\\\"0 3.33 6.11 11.67 13.95\\\">(this</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 143.9657 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 147.9017 608.8475)\\\" x=\\\"0 3.33 10 15.56 18.89 24.45 30.01 38.34 43.9 49.46 52.24 55.57 58.9\\\">“Agreement”),</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.5863 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 213.5223 608.8475)\\\" x=\\\"0 5 10.56 16.12\\\">you,</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 232.4237 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 236.3597 608.8475)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 250.2611 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 254.1971 608.8475)\\\" x=\\\"0 7.22 12.78 17.78 20.56 26.12 34.45 40.01 43.34 46.67 51.67\\\">Customer(s)</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 309.202 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 313.138 608.8475)\\\" x=\\\"0 3.33 6.66 11.66 17.22 22.78\\\">(“you”</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 339.2513 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 343.1873 608.8475)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.8719 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 363.8079 608.8475)\\\" x=\\\"0 3.33 8.33 13.89 19.45 22.78 26.11\\\">“your”)</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.2513 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 397.1873 608.8475)\\\" x=\\\"0 5 10.56 16.12 21.68 26.68\\\">choose</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 429.4334 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 433.3695 608.8475)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 441.7093 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 445.6453 608.8475)\\\" x=\\\"0 2.28 7.84 13.4 18.4\\\">lease</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 469.6102 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 473.5462 608.8475)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 487.4476 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 491.3836 608.8475)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.1766 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 533.1126 608.8475)\\\" x=\\\"0 2.78 6.11 11.67\\\">from</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.1126 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0486 608.8475)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 597.5291)\\\" x=\\\"0 5.56 11.12 16.68 21.68\\\">Lease</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.3461 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 63.7235 597.5291)\\\" x=\\\"0 7.22 12.78 21.11 26.67 32.23 37.79\\\">Company</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 106.5213 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 109.8987 597.5291)\\\" x=\\\"0 3.33 6.66 13.88 19.44 22.22\\\">(“we,”</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 135.4505 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 138.8278 597.5291)\\\" x=\\\"0 3.33 8.89 13.89 16.67\\\">“us,”</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 158.8278 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 162.2052 597.5291)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 178.8898 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 182.2672 597.5291)\\\" x=\\\"0 3.33 8.89 14.45 17.78 21.11\\\">“our”)</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 206.7105 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.0879 597.5291)\\\" x=\\\"0 5.56 10.56 15.56 21.12 24.45 30.01 32.29 37.85\\\">according</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 253.5059 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 256.8832 597.5291)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 265.2231 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 268.6005 597.5291)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 282.5018 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 285.8792 597.5291)\\\" x=\\\"0 2.78 8.34 11.67 20\\\">terms</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 310.8792 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 314.2566 597.5291)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 322.5964 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 325.9738 597.5291)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 341.5939 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 344.9713 597.5291)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement.</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 396.6656 597.5291)\\\" x=\\\"0 3.3774\\\">  </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 403.4204 597.5291)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 420.6518 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 424.0292 597.5291)\\\" x=\\\"0 2.78 8.34 11.67\\\">term</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 444.0292 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 447.4066 597.5291)\\\" x=\\\"0 3.33 10.55 16.11 18.89 24.45 26.73 29.01 34.57 37.9\\\">“Retailer”</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 488.6419 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 492.0193 597.5291)\\\" x=\\\"0 8.33 13.89 19.45 25.01 30.01 36.68 42.24 47.8 52.8 57.8 61.13 67.8 73.36\\\">meansEbaycrYou</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 586.2107)\\\" x=\\\"0 5.56 11.12 16.12 21.68 24.34 27.12 32.68 38.24 40.9 44.23 46.51 52.07 57.63 60.41 63.19 65.85 71.41 76.97 79.75 82.41 87.97 93.53 96.31 98.97 101.75 107.31 112.87 115.53 121.09 126.65 128.93 131.21 136.77 142.33 145.11 147.39 152.95 158.51 161.29 163.95 166.73 172.29 174.95 180.51 185.51 191.07 196.63 198.91 202.24 207.8 210.46 216.02 223.24 228.8 234.36 237.69 242.69 248.25 250.53 256.09 258.75 264.31 267.09 269.75 272.53 278.09 283.65 286.31 292.98 296.31 301.87 307.43 312.99 316.32 319.1 324.1 326.76 332.32 337.32 339.98 345.54 351.1 356.1 361.1 364.43 366.71 372.27 377.83 383.39 386.05 391.61 397.17 400.5 406.06 408.34 413.9\\\">have the right, but not the obligation, to acquire ownership of the Property as described herein.</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 572.8924)\\\" x=\\\"0 6.67 13.89 21.67 28.89 31.67 38.34 41.12 47.23 50.01 57.79\\\">ACQUISITION</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 98.1049 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 101.7037 572.8924)\\\" x=\\\"0 7.78\\\">OF</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 115.5905 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 119.1893 572.8924)\\\" x=\\\"0 6.67 13.89 21.67 28.34 35.01 42.23 48.34\\\">PROPERTY</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 174.1991 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 177.798 572.8924)\\\" x=\\\"0 6.67\\\">AS</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 191.1378 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 194.7367 572.8924)\\\" x=\\\"0 6.67 14.45 21.12 28.34 34.45\\\">AGENT;</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.9632 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 235.5621 572.8924)\\\" x=\\\"0 7.22 13.89\\\">NEW</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 258.8922 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 262.4911 572.8924)\\\" x=\\\"0 7.22 15 22.22 29.44 32.22 38.33 41.11 48.89 56.11\\\">CONDITION;</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 321.3778 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 324.9766 572.8924)\\\" x=\\\"0 7.22 13.89 20.56 27.78 35 37.78 44.45 50.56 53.34 61.12 68.34\\\">DESCRIPTION.</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 396.0948 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 399.6937 572.8924)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 417.4866 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 421.0855 572.8924)\\\" x=\\\"0 5.56 8.89\\\">are</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 435.5386 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 439.1375 572.8924)\\\" x=\\\"0 5.56 11.12 13.9 19.46 21.74 27.3 29.58 35.14\\\">obtaining</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 479.8455 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 483.4444 572.8924)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 497.3458 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 500.9446 572.8924)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 538.7376 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 542.3365 572.8924)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.898 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 556.4968 572.8924)\\\" x=\\\"0 5.56 11.12\\\">our</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 561.574)\\\" x=\\\"0 5.56 11.12 16.68 22.24 25.02\\\">agent.</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.9027 561.574)\\\" x=\\\"0 4.0087\\\">  </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 68.9202 561.574)\\\" x=\\\"0 9.44\\\">We</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 83.9202 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 87.9288 561.574)\\\" x=\\\"0 5.56 12.78\\\">own</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 106.2736 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 110.2823 561.574)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 124.1837 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 128.1924 561.574)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 165.9853 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 169.994 561.574)\\\" x=\\\"0 5.56 11.12 13.4 18.96 23.96\\\">unless</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 198.9589 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 202.9676 561.574)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 219.6522 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 223.6609 561.574)\\\" x=\\\"0 5.56 11.12 13.9 16.18\\\">until</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 242.1228 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 246.1315 561.574)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.2545 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 266.2632 561.574)\\\" x=\\\"0 8.33 13.89 18.89\\\">make</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.7163 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 294.7251 561.574)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.6264 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 312.6351 561.574)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57 38.35\\\">payments</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.9896 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 359.9983 561.574)\\\" x=\\\"0 5.56 11.12 16.12 21.68 26.68 31.68 37.24 40.57\\\">necessary</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 405.5745 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 409.5832 561.574)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 417.923 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 421.9318 561.574)\\\" x=\\\"0 5.56 10.56 16.12 21.68 23.96 27.29\\\">acquire</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.7882 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 458.7969 561.574)\\\" x=\\\"0 5.56 12.78 18.34 23.9 27.23 32.23 37.79 40.07 45.63\\\">ownership.</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 507.2149 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 511.2236 561.574)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.0165 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 533.0253 561.574)\\\" x=\\\"0 5.56 11.12 14.45 20.01\\\">agree</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 558.6014 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 562.6101 561.574)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 550.2557)\\\" x=\\\"0 5.56 11.12 13.9 19.46 21.74 27.3 29.96 32.74 36.07 41.63 49.96 52.62 55.4 60.96 66.52 69.18 76.4 81.96 84.74 90.3 92.58 94.86 100.42 103.75 106.41 111.97 117.53 119.81 124.81 127.47 133.03 138.59 145.81 148.47 154.03 159.59 165.15 170.71 175.71 178.37 181.15 186.71 190.04 192.7 198.26 203.82 207.15 212.15 217.71 223.27 228.83 231.11 233.89 236.55 239.33 244.89 253.22 255.5 257.78 262.78 265.44 271 274.33 276.99 282.55 288.11 293.67 298.67 304.23 309.79 315.35 317.63 323.19 325.85 331.41 336.97 340.3 345.86 351.42 356.42 361.98 366.98\\\">obtain from the Retailer only new goods for personal, family or household purposes.</text></g><clipPath id=\\\"clip0-9\\\"><path d=\\\"M 35 529 L 574 529 L 574 547 L 35 547 L 35 529 z \\\"/></clipPath><path clip-path=\\\"url(#clip0-9)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 35.3 546.1561 L 573.1 546.1561 L 573.1 529.8377 L 35.3 529.8377 L 35.3 546.1561 z \\\"/><path clip-path=\\\"url(#clip0-9)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 40.7 543.1561 L 555.4 543.1561 L 555.4 531.8377 L 40.7 531.8377 L 40.7 543.1561 z \\\"/><path clip-path=\\\"url(#clip0-9)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 96.7096 543.1561 L 499.7096 543.1561 L 499.7096 531.1561 L 96.7096 531.1561 L 96.7096 543.1561 z \\\"/><g clip-path=\\\"url(#clip0-9)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 96.7096 533.9373)\\\" x=\\\"0 2.78 11.11 17.78 25.56 32.78 38.89 45.56 52.78 58.89 61.55 68.77 75.44 82.66 88.77 95.44 101 104.33 111 118.22 125.44 132.66 139.88 146.55 153.22 159.89 162.55 169.77 172.55 179.22 186.44 192 199.78 206.45 213.67 220.89 227.56 234.23 236.89 239.82 242.48 245.26 252.48 259.7 265.26 272.48 279.7 282.48 289.7 297.48 300.14 307.36 315.14 321.81 327.92 330.58 337.25 344.47 351.69 354.35 361.02 367.69 374.36 382.69 389.36 396.58\\\">IMPORTANT RENTAL-PURCHASE DISCLOSURES – INCLUDING COST AND PAYMENT</text></g><clipPath id=\\\"clip0-10\\\"><path d=\\\"M 35 81 L 574 81 L 574 530 L 35 530 L 35 81 z \\\"/></clipPath><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 517.619)\\\" x=\\\"0 6.11 13.33 16.11\\\">THIS</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 63.4783 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 68.7771 517.619)\\\" x=\\\"0 6.11 13.33 20 27.22 33.89 40.56 47.78 53.89 56.67 64.45\\\">TRANSACTION</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 140.447 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 145.7457 517.619)\\\" x=\\\"0 2.78\\\">IS</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 155.194 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 160.4927 517.619)\\\" x=\\\"0\\\">A</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 167.1627 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 172.4614 517.619)\\\" x=\\\"0 5.56 12.23 18.9 25.57\\\">LEASE</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 204.7026 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.0014 517.619)\\\" x=\\\"0 6.67 14.45 21.67 28.34 35.01 43.34 50.01 57.23\\\">AGREEMENT</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 273.3412 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 278.64 517.619)\\\" x=\\\"0 9.44 12.22 18.33\\\">WITH</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 304.1868 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 309.4856 517.619)\\\" x=\\\"0 7.78 14.45 20.56 23.34 31.12\\\">OPTION</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 347.8206 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 353.1193 517.619)\\\" x=\\\"0 6.11\\\">TO</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 367.006 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 372.3048 517.619)\\\" x=\\\"0 6.67 13.89 21.11 28.33 35.55 42.22 48.89 55.56\\\">PURCHASE.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.6495 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 435.9483 517.619)\\\" x=\\\"0 6.67 14.45\\\">YOU</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 457.6182 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 462.9169 517.619)\\\" x=\\\"0 9.44 12.22 17.78\\\">WILL</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.2568 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 491.5555 517.619)\\\" x=\\\"0 7.22 15\\\">NOT</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.6639 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 517.9627 517.619)\\\" x=\\\"0 7.78 17.22\\\">OWN</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 542.4012 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 547.6999 517.619)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 506.3006)\\\" x=\\\"0 6.67 13.89 21.67 28.34 35.01 42.23 48.34\\\">PROPERTY</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 95.7098 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 100.6852 506.3006)\\\" x=\\\"0 7.22 14.44 20.55 23.33\\\">UNTIL</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 129.5768 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 134.5522 506.3006)\\\" x=\\\"0 6.67 14.45\\\">YOU</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 156.2221 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 161.1975 506.3006)\\\" x=\\\"0 7.22 13.89 20.56\\\">HAVE</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 188.429 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 193.4044 506.3006)\\\" x=\\\"0 6.67 13.34 16.12\\\">PAID</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 216.7442 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 221.7197 506.3006)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 241.7197 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 246.6951 506.3006)\\\" x=\\\"0 6.11 13.89 20 26.67\\\">TOTAL</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 278.9216 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 283.8971 506.3006)\\\" x=\\\"0 6.67 13.34 20.01 28.34 35.01 42.23 48.34\\\">PAYMENTS</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.9068 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 343.8822 506.3006)\\\" x=\\\"0 7.22 13.89 21.11 27.78 34.45 41.12 47.79 55.01\\\">NECESSARY</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 405.5668 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 410.5422 506.3006)\\\" x=\\\"0 6.11\\\">TO</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 424.4289 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 429.4044 506.3006)\\\" x=\\\"0 6.67 13.89 21.67 28.89 31.67 38.89\\\">ACQUIRE</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.9659 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 479.9413 506.3006)\\\" x=\\\"0 7.78 17.22 24.44 31.11 38.33 45 52.22 55\\\">OWNERSHIP</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 541.6112 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 546.5866 506.3006)\\\" x=\\\"0 6.67 13.89\\\">AND</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 494.9822)\\\" x=\\\"0 7.22 15 23.33 30 35.56\\\">COMPLY</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 82.9314 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 86.988 494.9822)\\\" x=\\\"0 9.44 12.22 18.33\\\">WITH</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 112.5348 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 116.5913 494.9822)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.5913 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 140.6478 494.9822)\\\" x=\\\"0 7.78 17.22 24.44 31.11 38.33 45 52.22 55\\\">OWNERSHIP</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 202.3178 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 206.3743 494.9822)\\\" x=\\\"0 6.11 12.78 20 28.33 35\\\">TERMS.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 244.1526 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 248.2091 494.9822)\\\" x=\\\"0 6.67 14.45\\\">YOU</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 269.879 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 273.9355 494.9822)\\\" x=\\\"0 6.67 13.89\\\">ARE</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 294.497 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 298.5535 494.9822)\\\" x=\\\"0 7.22 15\\\">NOT</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.6619 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 323.7184 494.9822)\\\" x=\\\"0 7.78 14.45 20.01 22.79 30.57 37.24 43.35 50.02\\\">OBLIGATED</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.9548 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 385.0113 494.9822)\\\" x=\\\"0 6.11\\\">TO</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 398.898 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 402.9545 494.9822)\\\" x=\\\"0 6.67 13.34\\\">PAY</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 422.9643 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 427.0208 494.9822)\\\" x=\\\"0\\\">A</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 433.6907 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 437.7472 494.9822)\\\" x=\\\"0 6.67 13.89\\\">SUM</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 459.9689 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 464.0254 494.9822)\\\" x=\\\"0 7.78 15 21.67 28.34 34.45 41.12\\\">GREATER</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.3652 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 516.4217 494.9822)\\\" x=\\\"0 6.11 13.33 20\\\">THAN</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 543.6434 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 547.6999 494.9822)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 483.6639)\\\" x=\\\"0 6.11 13.89 20 26.67 32.23 34.89 41.56 48.23 54.9 63.23 69.9 77.12 83.23 89.9 92.56 98.67 106.45 113.67 116.33 123 125.66 132.33 135.11 142.33 150.11 155.67 162.34 165 170.56 177.23 183.9 190.57 197.24 199.9 206.01 212.68 219.9 228.23\\\">TOTAL PAYMENTS FOR A SINGLE LEASE TERM.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 470.3455)\\\" x=\\\"0 7.22 12.78 17.78\\\">Cash</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 64.0447 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 67.2085 470.3455)\\\" x=\\\"0 6.67 10 12.28 17.28\\\">Price</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 90.0503 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 93.214 470.3455)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 101.5539 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 104.7176 470.3455)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 145.2889 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.4527 470.3455)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 165.6841 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 168.8478 470.3455)\\\" x=\\\"0 7.22 12.78 17.78\\\">Cash</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 192.1926 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 195.3563 470.3455)\\\" x=\\\"0 6.67 10 12.28 17.28\\\">Price</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 218.1981 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 221.3619 470.3455)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 229.7017 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 232.8655 470.3455)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 246.7668 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 249.9306 470.3455)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 287.7235 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 290.8873 470.3455)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 298.1676 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 301.3313 470.3455)\\\" x=\\\"0\\\">$</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 306.8928 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 310.0566 470.3455)\\\" x=\\\"0 5.56 8.34 13.9 19.46 25.02 27.8 33.36 38.92\\\">3,872.00,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.7607 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 354.9244 470.3455)\\\" x=\\\"0 7.22 12.78 15.06 20.06\\\">which</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.5494 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 383.7132 470.3455)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 390.9935 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 394.1572 470.3455)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 408.0586 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 411.2223 470.3455)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 444.5768 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 447.7406 470.3455)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 463.8636 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 467.0274 470.3455)\\\" x=\\\"0 7.22 12.78 18.34 20.62\\\">would</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 493.2139 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 496.3776 470.3455)\\\" x=\\\"0 5.56 11.12 16.12\\\">have</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 518.0622 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 521.226 470.3455)\\\" x=\\\"0 5.56 11.12 13.4\\\">paid</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 540.1908 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 543.3545 470.3455)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 548.4131 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 551.5769 470.3455)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 459.0271)\\\" x=\\\"0 5.56 11.12\\\">had</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 57.3846 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 60.336 459.0271)\\\" x=\\\"0 5.56 11.12 14.45 19.45 25.01 30.57 35.57 41.13\\\">purchased</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 107.0352 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 109.9866 459.0271)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 123.888 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 126.8394 459.0271)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 164.6324 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 167.5838 459.0271)\\\" x=\\\"0 2.78 6.11 11.67\\\">from</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 187.5838 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 190.5352 459.0271)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 204.4366 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 207.388 459.0271)\\\" x=\\\"0 7.22 12.78 15.56 21.12 23.4 25.68 31.24\\\">Retailer</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 241.9632 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 244.9147 459.0271)\\\" x=\\\"0 7.22 9.5 12.28\\\">with</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.7565 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 265.7079 459.0271)\\\" x=\\\"0 5 10.56 15.56\\\">cash</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 286.8309 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 289.7824 459.0271)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 300.9054 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 303.8568 459.0271)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 317.7582 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 320.7096 459.0271)\\\" x=\\\"0 5.56 11.12\\\">day</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 336.8327 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 339.7841 459.0271)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.1239 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 351.0754 459.0271)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 366.6955 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 369.6469 459.0271)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 421.3412 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 424.2927 459.0271)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 25.68 27.96 32.96\\\">inclusive</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 462.8181 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 465.7695 459.0271)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.1093 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 477.0607 459.0271)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 493.1838 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 496.1352 459.0271)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64\\\">applicable</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 541.3452 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 544.2966 459.0271)\\\" x=\\\"0 5 10.56 12.84 18.4\\\">sales</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 447.7088)\\\" x=\\\"0 5.56 8.89 11.55 17.11 22.11 27.67 30.33 33.11 38.67 43.67\\\">or use tax.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 434.3904)\\\" x=\\\"0 6.11 11.67 14.45 20.01\\\">Total</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 62.99 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 66.9187 434.3904)\\\" x=\\\"0 7.22 12.78 17.78\\\">Cost</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 87.4803 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 91.409 434.3904)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 99.7488 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 103.6775 434.3904)\\\" x=\\\"0 5.56 11.12 16.68 21.68 27.24\\\">Lease;</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 133.7019 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 137.6306 434.3904)\\\" x=\\\"0 6.67 12.23 15.56 17.84 23.4 28.96 31.24\\\">Periodic</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 173.8758 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 177.8045 434.3904)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46 44.46\\\">Payments;</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.0457 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 228.9744 434.3904)\\\" x=\\\"0 6.67 10 15.56 20.56 26.12 31.12 36.12 38.4 43.96\\\">Processing</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 278.5007 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 282.4295 434.3904)\\\" x=\\\"0 6.11 11.67 17.23\\\">Fee;</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.4392 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 306.3679 434.3904)\\\" x=\\\"0 2.78 8.34 10.62 13.4 15.68 21.24\\\">Initial</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.8884 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 333.8171 434.3904)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46\\\">Payment;</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 376.0584 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 379.9871 434.3904)\\\" x=\\\"0 7.22 12.78 17.78\\\">Cost</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 400.5486 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 404.4773 434.3904)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 412.8171 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 416.7459 434.3904)\\\" x=\\\"0 7.22 12.78 18.34 21.12 26.68 28.96\\\">Rental.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 448.489 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 452.4177 434.3904)\\\" x=\\\"0 7.22 12.78 15.06 20.62 25.62\\\">Unless</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 483.0427 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 486.9714 434.3904)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 503.0945 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 507.0232 434.3904)\\\" x=\\\"0 5.56 10.56 16.12 19.45 24.45 26.73 31.73\\\">exercise</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 544.3181 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 548.2468 434.3904)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 423.0721)\\\" x=\\\"0 5.56 11.12 16.68 20.01 27.23 32.79\\\">100-Day</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 78.4979 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.2541 423.0721)\\\" x=\\\"0 7.78 13.34 16.12 18.4 23.96\\\">Option</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 110.7756 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 113.5318 423.0721)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 122.4234 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 125.1797 423.0721)\\\" x=\\\"0 6.67 12.23 15.56 17.84\\\">Early</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 148.0215 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 150.7777 423.0721)\\\" x=\\\"0 6.67 12.23 17.23 20.56 28.34 33.9\\\">Buy-Out</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 187.4574 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 190.2136 423.0721)\\\" x=\\\"0 7.78 13.34 16.12 18.4 23.96\\\">Option</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 219.7351 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 222.4914 423.0721)\\\" x=\\\"0 5 10.56\\\">set</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 235.8312 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 238.5875 423.0721)\\\" x=\\\"0 2.78 8.34 11.67 14.45\\\">forth</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 258.5972 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 261.3535 423.0721)\\\" x=\\\"0 5.56 11.12 13.4 18.96 26.18\\\">below,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.3183 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 293.0746 423.0721)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 306.9759 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 309.7322 423.0721)\\\" x=\\\"0 3.33 9.44 15 17.78 23.34\\\">“Total</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.3523 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.1086 423.0721)\\\" x=\\\"0 7.22 12.78 17.78 20.56\\\">Cost”</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 362.0002 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 364.7564 423.0721)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 373.0962 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 375.8525 423.0721)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 389.7539 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 392.5101 423.0721)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.3031 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 433.0593 423.0721)\\\" x=\\\"0 5.56 11.12 16.68 22.24\\\">under</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 458.6355 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 461.3917 423.0721)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 477.0119 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 479.7681 423.0721)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 528.6841 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 531.4404 423.0721)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 545.5029 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 548.2591 423.0721)\\\" x=\\\"0 5.56\\\">be</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.3822 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 562.1384 423.0721)\\\" x=\\\"0\\\">$</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 411.7537)\\\" x=\\\"0 5.56 8.34 13.9 19.46 25.02 27.8 33.36 38.92\\\">3,965.32.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 82.4041 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 85.187 411.7537)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 102.4184 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 105.2013 411.7537)\\\" x=\\\"0 6.11 11.67 14.45 20.01\\\">Total</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 127.4913 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 130.2742 411.7537)\\\" x=\\\"0 7.22 12.78 17.78\\\">Cost</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 150.8357 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 153.6186 411.7537)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.8989 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 163.6817 411.7537)\\\" x=\\\"0 5.56 11.12 16.12 21.68\\\">based</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 190.9279 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 193.7107 411.7537)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 204.8338 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 207.6166 411.7537)\\\" x=\\\"0 5.56\\\">an</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 218.7397 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 221.5226 411.7537)\\\" x=\\\"0 2.78 8.34 10.62 13.4 15.68 21.24\\\">Initial</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.0431 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 247.8259 411.7537)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68\\\">Payment</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 287.2888 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 290.0717 411.7537)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 298.4115 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 301.1944 411.7537)\\\" x=\\\"0\\\">$</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 306.7559 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 309.5388 411.7537)\\\" x=\\\"0 5.56 8.34 13.9\\\">0.00</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.0017 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 331.7846 411.7537)\\\" x=\\\"0 5.56 11.12 16.12 21.68 27.24 29.52\\\">payable</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 366.8725 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 369.6554 411.7537)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.7784 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 383.5613 411.7537)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 397.4626 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 400.2455 411.7537)\\\" x=\\\"0 5.56 11.12 13.9\\\">date</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.7084 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 422.4913 411.7537)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.8311 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 433.614 411.7537)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 449.2341 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 452.017 411.7537)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 500.933 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 503.7159 411.7537)\\\" x=\\\"0 3.33 6.11 11.67\\\">(the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 520.9473 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 523.7302 411.7537)\\\" x=\\\"0 3.33 10.55 16.11 21.67 27.23 29.51 32.84 38.4\\\">“Required</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 400.4353)\\\" x=\\\"0 2.78 8.34 10.62 13.4 15.68 21.24\\\">Initial</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 64.2205 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 68.4622 400.4353)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46 42.79 46.12\\\">Payment”),</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 117.3635 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 121.6052 400.4353)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 126.6638 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 130.9055 400.4353)\\\" x=\\\"0 5.56 11.12 16.12\\\">any,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 149.8068 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 154.0485 400.4353)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 159.61 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 163.8517 400.4353)\\\" x=\\\"0 5.56 8.89 14.45 19.45 25.01 30.01 35.01 37.29 42.85\\\">processing</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 212.2697 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 216.5114 400.4353)\\\" x=\\\"0 2.78 8.34\\\">fee</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 230.4127 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 234.6544 400.4353)\\\" x=\\\"0 3.33 10.55 16.11 18.39 23.39\\\">(which</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 263.6095 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 267.8511 400.4353)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.1314 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 279.3731 400.4353)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 293.2745 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 297.5161 400.4353)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 303.0777 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 307.3193 400.4353)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 345.6738 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 349.9155 400.4353)\\\" x=\\\"0 2.78 8.34 15.56 21.12 24.45 30.01\\\">towards</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 384.9301 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 389.1718 400.4353)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.0732 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.3149 400.4353)\\\" x=\\\"0 5 10.56 15.56\\\">cost</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 425.6547 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 429.8964 400.4353)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 438.2362 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 442.4779 400.4353)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 461.931 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 466.1727 400.4353)\\\" x=\\\"0 3.33 8.89 14.45 17.23 22.79 25.07\\\">rental)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 494.576 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 498.8177 400.4353)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 507.1575 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 511.3992 400.4353)\\\" x=\\\"0\\\">$</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 516.9607 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 521.2024 400.4353)\\\" x=\\\"0 5.56 11.12 13.9 19.46\\\">10.00</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 546.2268 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 550.4685 400.4353)\\\" x=\\\"0 3.33 6.11 11.67\\\">(the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 389.117)\\\" x=\\\"0 3.33 10 13.33 18.89 23.89 29.45 34.45 39.45 41.73 47.29\\\">“Processing</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 93.5564 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 97.3241 389.117)\\\" x=\\\"0 6.11 11.67 17.23 20.56 23.89\\\">Fee”),</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 123.9941 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 127.7617 389.117)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 132.8203 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 136.588 389.117)\\\" x=\\\"0 5.56 11.12 16.12\\\">any,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 155.4894 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 159.2571 389.117)\\\" x=\\\"0 5.56\\\">26</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 170.3801 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 174.1478 389.117)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.74 24.02 29.58 35.14 40.7\\\">additional</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 217.1361 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 220.9038 389.117)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57 38.35\\\">payments</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 264.2583 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 268.026 389.117)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.3658 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 280.1335 389.117)\\\" x=\\\"0\\\">$</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 285.695 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 289.4627 389.117)\\\" x=\\\"0 5.56 8.34 13.9\\\">6.97</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.9256 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 312.6933 389.117)\\\" x=\\\"0 3.33 8.89\\\">(as</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 326.5849 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 330.3526 389.117)\\\" x=\\\"0 5.56 11.12 13.4 18.96 23.96 26.74 32.3 37.86\\\">adjusted,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 370.9971 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 374.7648 389.117)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.3263 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 384.094 389.117)\\\" x=\\\"0 3.33 10.55 16.11 21.67 27.23 29.51 35.07\\\">“Regular</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 422.5022 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 426.2699 389.117)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46 42.79\\\">Payment”)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 472.393 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 476.1607 389.117)\\\" x=\\\"0 5.56 11.12 16.12 21.68\\\">each,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 500.6235 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 504.3912 389.117)\\\" x=\\\"0 5.56 11.12 16.12 21.68 27.24 29.52\\\">payable</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 539.4791 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 543.2468 389.117)\\\" x=\\\"0 5.56 10.56 16.12 19.45\\\">every</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 377.7986)\\\" x=\\\"0 5.56 8.34 13.9 19.46\\\">other</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 63.493 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 66.4195 377.7986)\\\" x=\\\"0 7.22 12.78 18.34 23.34\\\">week.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 92.5426 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 95.4692 377.7986)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 112.7006 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 115.6272 377.7986)\\\" x=\\\"0 6.11 11.67 14.45 20.01\\\">Total</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 137.9172 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 140.8438 377.7986)\\\" x=\\\"0 7.22 12.78 17.78\\\">Cost</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 161.4053 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 164.3319 377.7986)\\\" x=\\\"0 5.56 7.84 12.84\\\">also</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 182.7352 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 185.6617 377.7986)\\\" x=\\\"0 3.33 8.89 11.67 13.95 19.51 24.51 27.29\\\">reflects</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 217.9518 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 220.8784 377.7986)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 237.0014 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 239.928 377.7986)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.74 24.02 29.58 35.14 40.7\\\">additional</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 282.9163 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 285.8428 377.7986)\\\" x=\\\"0 5 10.56 15.56\\\">cash</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 306.9659 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 309.8924 377.7986)\\\" x=\\\"0 5.56 11.12 13.4\\\">paid</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 328.8573 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 331.7839 377.7986)\\\" x=\\\"0 2.78 8.34 13.9 19.46 24.46\\\">today,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.0251 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 361.9516 377.7986)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 367.0102 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 369.9368 377.7986)\\\" x=\\\"0 5.56 11.12 16.12\\\">any.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.8382 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 391.7647 377.7986)\\\" x=\\\"0 6.67 12.23 17.79\\\">Your</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 412.8878 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 415.8143 377.7986)\\\" x=\\\"0 2.78 8.34 11.12 16.68\\\">total</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.7743 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 437.7009 377.7986)\\\" x=\\\"0 2.28 7.84 10.12 12.9 15.18 20.74\\\">initial</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 460.7233 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 463.6499 377.7986)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 502.0044 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 504.931 377.7986)\\\" x=\\\"0 5.56 11.12\\\">due</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.6155 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 524.5421 377.7986)\\\" x=\\\"0 2.78 8.34 13.9 19.46\\\">today</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.005 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 551.9316 377.7986)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.2118 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 562.1384 377.7986)\\\" x=\\\"0\\\">$</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 366.4803)\\\" x=\\\"0 5.56 8.34 13.9 19.46\\\">0.00,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 62.9412 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 66.7951 366.4803)\\\" x=\\\"0 7.22 12.78 15.06 20.06\\\">which</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 92.4201 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 96.274 366.4803)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 103.5543 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 107.4082 366.4803)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 121.3096 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 125.1635 366.4803)\\\" x=\\\"0 5 10.56\\\">sum</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 144.0551 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 147.909 366.4803)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 156.2488 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 160.1027 366.4803)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 174.0041 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 177.858 366.4803)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 29.51 35.07\\\">Required</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 218.4976 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 222.3515 366.4803)\\\" x=\\\"0 2.78 8.34 10.62 13.4 15.68 21.24\\\">Initial</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.872 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 249.7259 366.4803)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46\\\">Payment,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.9672 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 295.8211 366.4803)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 300.8797 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 304.7336 366.4803)\\\" x=\\\"0 5.56 11.12 16.12\\\">any,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 323.6349 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 327.4888 366.4803)\\\" x=\\\"0 6.67 10 15.56 20.56 26.12 31.12 36.12 38.4 43.96\\\">Processing</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 377.0152 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 380.8691 366.4803)\\\" x=\\\"0 6.11 11.67 17.23\\\">Fee,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 400.8789 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 404.7328 366.4803)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 409.7914 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 413.6453 366.4803)\\\" x=\\\"0 5.56 11.12 16.12\\\">any,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 432.5466 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 436.4005 366.4803)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 453.0851 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 456.939 366.4803)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 473.062 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 476.916 366.4803)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.74 24.02 29.58 35.14 40.7\\\">additional</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 519.9042 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 523.7581 366.4803)\\\" x=\\\"0 5 10.56 15.56\\\">cash</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 544.8812 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 548.7351 366.4803)\\\" x=\\\"0 5.56 11.12 13.4\\\">paid</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 355.1619)\\\" x=\\\"0 2.78 8.34 13.9 19.46 24.46\\\">today.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 67.9412 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 70.9372 355.1619)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 76.4938 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 79.4898 355.1619)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 95.6128 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 98.6088 355.1619)\\\" x=\\\"0 5.56\\\">do</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 109.7318 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 112.7278 355.1619)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 126.6291 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 129.6251 355.1619)\\\" x=\\\"0 3.33 8.89 17.22 19.5\\\">remit</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 151.9054 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 154.9013 355.1619)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 171.0244 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 174.0203 355.1619)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64\\\">applicable</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 219.2303 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 222.2262 355.1619)\\\" x=\\\"0 6.67 10 15.56 20.56 26.12 31.12 36.12 38.4 43.96\\\">Processing</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 271.7526 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 274.7486 355.1619)\\\" x=\\\"0 6.11 11.67\\\">Fee</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.98 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 294.976 355.1619)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 303.8676 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 306.8635 355.1619)\\\" x=\\\"0 2.78 8.34 10.62 13.4 15.68 21.24\\\">Initial</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 330.3841 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 333.38 355.1619)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68\\\">Payment</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 372.8429 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 375.8388 355.1619)\\\" x=\\\"0 5.56\\\">at</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 384.1787 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 387.1747 355.1619)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 401.076 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 404.072 355.1619)\\\" x=\\\"0 2.78 5.06 13.39\\\">time</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 423.0222 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 426.0181 355.1619)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.358 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 437.3539 355.1619)\\\" x=\\\"0 5.56 11.12 14.45 19.45 25.01 30.57 35.57 41.13\\\">purchase,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 481.2699 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 484.2659 355.1619)\\\" x=\\\"0 2.28\\\">it</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.3245 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 492.3205 355.1619)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.6007 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 502.5967 355.1619)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24 31.8\\\">included</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 539.9649 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 542.9608 355.1619)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 550.8026 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.7986 355.1619)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 343.8436)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 75.7781 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 78.9772 343.8436)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46\\\">Payments</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 123.44 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 126.6391 343.8436)\\\" x=\\\"0 5 10.56\\\">set</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 139.9789 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 143.1779 343.8436)\\\" x=\\\"0 2.78 8.34 11.67 14.45\\\">forth</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 163.1877 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 166.3868 343.8436)\\\" x=\\\"0 5.56 11.12 16.68 21.68 27.24\\\">above.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 196.4112 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 199.6102 343.8436)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 216.8416 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 220.0407 343.8436)\\\" x=\\\"0 6.11 11.67 14.45 20.01\\\">Total</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 242.3307 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 245.5297 343.8436)\\\" x=\\\"0 7.22 12.78 17.78\\\">Cost</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 266.0913 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 269.2903 343.8436)\\\" x=\\\"0 5.56 11.12 16.68\\\">does</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.9749 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 294.1739 343.8436)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.0753 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 311.2743 343.8436)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24\\\">include</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 343.0809 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 346.28 343.8436)\\\" x=\\\"0 2.28 7.84 10.62\\\">late</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 362.4616 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 365.6606 343.8436)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57 38.35\\\">payment,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 406.7935 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 409.9925 343.8436)\\\" x=\\\"0 5.56 11.12 16.68 21.68 27.24 30.02 32.8 35.08 40.08 42.36 47.92 53.48\\\">nonsufficient</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.2571 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 469.4562 343.8436)\\\" x=\\\"0 2.78 8.34 13.9 19.46 24.46\\\">funds,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 496.6974 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 499.8964 343.8436)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 27.3 30.08\\\">default,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 532.7577 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 535.9568 343.8436)\\\" x=\\\"0 5.56 7.84 12.84 17.84 23.4 28.96\\\">pickup,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 332.5252)\\\" x=\\\"0 3.33 8.89 11.17 16.73 21.73 24.51 30.07 32.85 38.41 46.74 52.3 57.86 60.64\\\">reinstatement,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 104.1228 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 108.8966 332.5252)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 117.7882 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 122.5619 332.5252)\\\" x=\\\"0 5.56 8.34 13.9 19.46\\\">other</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 145.3549 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 150.1286 332.5252)\\\" x=\\\"0 2.78 8.34 13.9 18.9\\\">fees,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 171.8083 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 176.5821 332.5252)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 181.6407 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 186.4144 332.5252)\\\" x=\\\"0 5.56 11.12 16.12\\\">any,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 205.3158 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.0895 332.5252)\\\" x=\\\"0 5.56 7.84 12.84 17.84 20.12 25.68 30.68 36.24\\\">disclosed</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 251.8962 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 256.6699 332.5252)\\\" x=\\\"0 5.56 11.12 13.4 18.96 26.18\\\">below.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 285.6347 332.5252)\\\" x=\\\"0 4.7737\\\">  </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 295.1822 332.5252)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.4137 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 317.1874 332.5252)\\\" x=\\\"0 5 10.56 15.56\\\">cost</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.5273 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 340.301 332.5252)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.6409 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 353.4146 332.5252)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 372.8677 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 377.6415 332.5252)\\\" x=\\\"0 3.33 8.89 14.45 17.23 22.79\\\">rental</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.7147 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.4884 332.5252)\\\" x=\\\"0 3.33 6.66 13.88 19.44 24.44\\\">(“Cost</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.7101 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 439.4839 332.5252)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.8237 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 452.5975 332.5252)\\\" x=\\\"0 7.22 12.78 18.34 21.12 26.68 28.96 32.29\\\">Rental”)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 488.2225 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 492.9962 332.5252)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 500.2765 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 505.0502 332.5252)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 518.9516 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 523.7253 332.5252)\\\" x=\\\"0 5.56 7.84 10.62 13.4 18.96 22.29 27.85 33.41 38.41\\\">difference</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 321.2068)\\\" x=\\\"0 5.56 11.12 13.9 21.12 26.68 32.24 37.8 40.46 43.24 48.8 54.36 57.02 63.13 68.69 71.47 77.03 79.31 81.97 89.19 94.75 99.75 102.53 105.19 110.75 116.31 121.87 124.53 131.75 137.31 142.31 147.87 150.53 157.2 160.53 162.81 167.81 173.37 176.15 178.81 184.37 189.93 195.49 198.15 205.37 207.65 209.93 212.21 214.87 220.43 225.99 228.65 234.21 236.87 242.43 247.99 250.77 256.33 261.89\\\">between the Total Cost and Cash Price, and will be $ 93.32.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 309.8885)\\\" x=\\\"0 6.67 11.67 17.23 22.79 27.79 30.57 36.13\\\">Expected</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 82.3943 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 86.3823 309.8885)\\\" x=\\\"0 7.22 12.78 15.06 17.34 22.34 27.9 31.23\\\">Delivery</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 122.6177 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 126.6057 309.8885)\\\" x=\\\"0 7.22 12.78 15.56 21.12\\\">Date;</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 150.507 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 154.495 309.8885)\\\" x=\\\"0 6.11 8.39 11.72 16.72\\\">First</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 173.9921 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 177.9801 309.8885)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 213.0582 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 217.0462 309.8885)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46\\\">Payment.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.2874 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 263.2754 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 267.2634 309.8885)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 284.4948 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 288.4828 309.8885)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 29.51 35.07\\\">Required</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.1225 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 333.1105 309.8885)\\\" x=\\\"0 2.78 8.34 10.62 13.4 15.68 21.24\\\">Initial</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 356.631 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 360.619 309.8885)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46\\\">Payment,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.8602 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 406.8482 309.8885)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 411.9068 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 415.8947 309.8885)\\\" x=\\\"0 5.56 11.12 16.12\\\">any,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.7961 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 438.7841 309.8885)\\\" x=\\\"0 5 10.56 15.56 21.12 24.45\\\">covers</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.2372 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 472.2252 309.8885)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.1266 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 490.1146 309.8885)\\\" x=\\\"0 3.33 8.89 14.45 17.23 22.79\\\">rental</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 515.1878 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 519.1758 309.8885)\\\" x=\\\"0 5.56 11.12 14.45 16.73 22.29\\\">period</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 547.0323 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 551.0202 309.8885)\\\" x=\\\"0 2.78 8.34 13.9\\\">that</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 298.5701)\\\" x=\\\"0 5.56 11.12 16.68 18.96 24.52\\\">begins</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 70.2264 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 73.3394 298.5701)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 84.4625 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 87.5755 298.5701)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 101.4769 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 104.59 298.5701)\\\" x=\\\"0 5.56 11.12 13.9\\\">date</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 124.0529 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 127.166 298.5701)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 143.289 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 146.4021 298.5701)\\\" x=\\\"0 3.33 8.89 13.89 19.45 21.73 26.73\\\">receive</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 178.697 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 181.8101 298.5701)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 195.7114 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 198.8245 298.5701)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 236.6175 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 239.7305 298.5701)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.4151 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 259.5282 298.5701)\\\" x=\\\"0 5.56 11.12 16.68\\\">ends</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.2128 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 284.3258 298.5701)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 295.4489 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 298.562 298.5701)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 318.0151 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 321.1281 298.5701)\\\" x=\\\"0 2.78 5.06 8.39 13.39\\\">first</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 337.2951 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 340.4082 298.5701)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.4863 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 378.5994 298.5701)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68\\\">Payment</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 418.0623 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 421.1754 298.5701)\\\" x=\\\"0 5.56 11.12 13.9 19.46\\\">date.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 443.4166 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 446.5297 298.5701)\\\" x=\\\"0 6.67 12.23 17.79\\\">Your</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.6527 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 470.7658 298.5701)\\\" x=\\\"0 2.78 5.06 8.39 13.39\\\">first</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.9328 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 490.0459 298.5701)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 525.124 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 528.237 298.5701)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68\\\">Payment</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 287.2518)\\\" x=\\\"0 5.56 11.12 13.9\\\">date</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.1629 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 63.9277 287.2518)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 77.9902 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.7549 287.2518)\\\" x=\\\"0 5.56\\\">be</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 92.878 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 96.6428 287.2518)\\\" x=\\\"0 5.56\\\">at</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 104.9826 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 108.7474 287.2518)\\\" x=\\\"0 2.28 7.84 13.4 18.4\\\">least</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 129.929 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 133.6938 287.2518)\\\" x=\\\"0 5 10.56 15.56 21.12\\\">seven</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.3784 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 164.1432 287.2518)\\\" x=\\\"0 5.56 11.12 16.12\\\">days</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 185.2662 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 189.031 287.2518)\\\" x=\\\"0 5.56 8.34 11.12 16.68\\\">after</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.0407 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 212.8055 287.2518)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 226.7069 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 230.4717 287.2518)\\\" x=\\\"0 2.28 7.84 10.62 16.18\\\">later</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 249.9834 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 253.7482 287.2518)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.088 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 265.8528 287.2518)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 27.8 33.36 38.92 44.48\\\">07/24/2020</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 315.9016 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 319.6664 287.2518)\\\" x=\\\"0 3.33 5.61\\\">(i)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 328.6068 287.2518)\\\" x=\\\"0 3.7648\\\">  </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 336.1364 287.2518)\\\" x=\\\"0 3.33 6.11 11.67\\\">(the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 353.3678 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 357.1326 287.2518)\\\" x=\\\"0 3.33 10 15 20.56 26.12 31.12 33.9 39.46\\\">“Expected</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.157 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 405.9218 287.2518)\\\" x=\\\"0 7.22 12.78 15.06 17.34 22.34 27.9 31.23\\\">Delivery</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 442.1572 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 445.9219 287.2518)\\\" x=\\\"0 7.22 12.78 15.56 21.12 24.45 27.78\\\">Date”),</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 476.4835 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 480.2482 287.2518)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 496.9328 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 500.6976 287.2518)\\\" x=\\\"0 3.33 5.61 7.89\\\">(ii)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 511.9183 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 515.6831 287.2518)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.5844 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 533.3492 287.2518)\\\" x=\\\"0 5.56 11.12 13.9\\\">date</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.8121 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 556.5769 287.2518)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 275.9334)\\\" x=\\\"0 7.22 12.78 15.06 20.06 25.62 28.28 31.06 36.62 42.18 44.84 51.51 54.84 60.4 65.96 71.52 74.85 77.63 82.63 85.29 87.57 92.57 95.23 100.79 104.12 109.68 114.68 116.96 122.52 128.08 133.64 136.3 141.86 145.19 147.85 153.41 158.97 161.25 163.53 168.53 174.09 177.42 182.98 188.54 191.2 193.98 199.54 202.2 207.2 212.76 218.32\\\">which the Property is provided or delivered to you.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 264.615)\\\" x=\\\"0 5.56 11.12 16.68 20.01 27.23 32.79\\\">100-Day</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 78.4979 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.9917 264.615)\\\" x=\\\"0 7.78 13.34 16.12 18.4 23.96 29.52\\\">Option.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 114.2915 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 117.7853 264.615)\\\" x=\\\"0 6.67\\\">At</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 127.2335 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 130.7273 264.615)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.8504 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 150.3442 264.615)\\\" x=\\\"0 2.78 5.06 13.39\\\">time</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 169.2944 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 172.7882 264.615)\\\" x=\\\"0 5.56 11.12 14.45 16.73 22.29\\\">during</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 200.6446 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 204.1385 264.615)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 218.0398 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 221.5336 264.615)\\\" x=\\\"0 2.78 5.06 8.39 13.39\\\">first</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 237.7006 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 241.1944 264.615)\\\" x=\\\"0 5.56 11.12\\\">100</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.879 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 261.3728 264.615)\\\" x=\\\"0 2.78 6.11 11.67\\\">from</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.3728 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 284.8666 264.615)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 298.768 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 302.2618 264.615)\\\" x=\\\"0 6.67 11.67 17.23 22.79 27.79 30.57 36.13\\\">Expected</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 343.9561 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 347.45 264.615)\\\" x=\\\"0 7.22 12.78 15.06 17.34 22.34 27.9 31.23\\\">Delivery</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.6853 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 387.1791 264.615)\\\" x=\\\"0 7.22 12.78 15.56 21.12\\\">Date,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 411.0805 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 414.5743 264.615)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 428.4757 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 431.9695 264.615)\\\" x=\\\"0 3.33 8.89 14.45 20.01 23.34 30.56 36.12\\\">“100-Day</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 473.0974 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 476.5912 264.615)\\\" x=\\\"0 7.78 13.34 16.12 18.4 23.96 29.52\\\">Option”</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.4428 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 512.9366 264.615)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.8 31.8\\\">applies,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 547.5215 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 551.0154 264.615)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 253.2967)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 56.823 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 59.7295 253.2967)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 78.6211 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.5276 253.2967)\\\" x=\\\"0 5.56 10.56 16.12 21.68 23.96 27.29\\\">acquire</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 114.384 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 117.2905 253.2967)\\\" x=\\\"0 5.56 12.78 18.34 23.9 27.23 32.23 37.79 40.07\\\">ownership</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 162.9301 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 165.8366 253.2967)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 174.1764 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 177.0829 253.2967)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 190.9843 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 193.8907 253.2967)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.6837 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 234.5901 253.2967)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.1517 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 248.0581 253.2967)\\\" x=\\\"0 5.56 11.12 16.12 18.4 23.96\\\">paying</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 277.5845 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 280.4909 253.2967)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.0525 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 293.9589 253.2967)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 307.8603 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 310.7667 253.2967)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 344.1212 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 347.0277 253.2967)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 357.5892 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 360.4957 253.2967)\\\" x=\\\"0 7.22 12.78 15.06 20.06\\\">which</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 386.1207 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 389.0271 253.2967)\\\" x=\\\"0 3.33 5.61\\\">(i)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 397.9676 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 400.874 253.2967)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 414.7754 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 417.6819 253.2967)\\\" x=\\\"0 5 10.56\\\">sum</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 436.5735 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 439.4799 253.2967)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.8198 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 450.7262 253.2967)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 464.6276 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 467.5341 253.2967)\\\" x=\\\"0 5.56 11.12\\\">100</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.2186 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 487.1251 253.2967)\\\" x=\\\"0\\\">–</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 490.0548 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 492.9612 253.2967)\\\" x=\\\"0 7.22 12.78\\\">Day</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 510.7444 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 513.6509 253.2967)\\\" x=\\\"0 6.67 15 20.56 26.12 31.68 34.46\\\">Amount,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 550.8921 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.7986 253.2967)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 241.9783)\\\" x=\\\"0 6.67 10 15.56 20.56 26.12 31.12 36.12 38.4 43.96\\\">Processing</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 90.2264 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 92.924 241.9783)\\\" x=\\\"0 6.11 11.67 17.23\\\">Fee,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 112.9338 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 115.6314 241.9783)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 120.69 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 123.3877 241.9783)\\\" x=\\\"0 5.56 11.12 16.12\\\">any,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 142.289 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 144.9867 241.9783)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64\\\">applicable</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 190.1967 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 192.8943 241.9783)\\\" x=\\\"0 5 10.56 12.84 18.4\\\">sales</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 216.2976 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 218.9953 241.9783)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 227.8869 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 230.5845 241.9783)\\\" x=\\\"0 5.56 10.56\\\">use</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 246.7076 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 249.4052 241.9783)\\\" x=\\\"0 2.78 8.34 13.34 18.9 23.9\\\">taxes,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.0849 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 278.7826 241.9783)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 295.4672 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 298.1648 241.9783)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 314.2879 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 316.9855 241.9783)\\\" x=\\\"0 5.56 11.12 16.68 22.24 24.52\\\">unpaid</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 347.0734 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 349.771 241.9783)\\\" x=\\\"0 2.78 8.34 13.9\\\">fees</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 368.6724 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 371.3701 241.9783)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 384.1533 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 386.8509 241.9783)\\\" x=\\\"0 5.56 11.12 16.12\\\">have</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 408.5355 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 411.2331 241.9783)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01 30.57 36.13\\\">charged,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 450.1492 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 452.8468 241.9783)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.68 32.24\\\">exceeds</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 490.0929 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 492.7906 241.9783)\\\" x=\\\"0 3.33 5.61 7.89\\\">(ii)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 504.0113 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 506.7089 241.9783)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 520.6103 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 523.3079 241.9783)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 556.6624 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 559.3601 241.9783)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 230.66)\\\" x=\\\"0 5.56 11.12 16.12 18.78 21.56 27.12 29.4 32.18 34.46 40.02 42.3 44.96 51.63 57.19 62.19 70.52 76.08 81.64 84.42 87.08 92.64 98.2 103.76 106.42 113.64 119.2 124.76 130.32 132.6 138.16 141.49 144.15 150.82 156.38 161.38 169.71 175.27 180.83 183.61 188.61 191.27 196.27 201.83 207.39 210.05 215.61 221.17 226.17 231.73 234.39 242.72 248.28 253.84 259.4 262.18 264.84 270.95 276.51 282.07 284.73 290.29 295.85 301.41 304.07 311.29 316.85 321.85 324.51 331.18 339.51 345.07 350.63 356.19 358.97 361.63 363.91 368.91 371.57 377.13 379.79 385.35 390.91 393.69 399.25 404.81\\\">any Initial Payment and Regular Payments you have made. The 100 Day Amount is $ 97.70.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 219.3416)\\\" x=\\\"0 6.67 12.23 15.56 17.84\\\">Early</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 63.5418 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 66.4605 219.3416)\\\" x=\\\"0 6.67 12.23 17.23 20.56 28.34 33.9\\\">Buy-Out</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 103.1401 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 106.0588 219.3416)\\\" x=\\\"0 7.78 13.34 16.12 18.4 23.96 29.52\\\">Option.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 138.3586 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 141.2772 219.3416)\\\" x=\\\"0 6.67 9.45 12.23 17.79\\\">After</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 162.3954 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 165.3141 219.3416)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 184.7672 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 187.6858 219.3416)\\\" x=\\\"0 5.56 11.12 16.68 20.01 27.23 32.79\\\">100-Day</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.4837 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 228.4024 219.3416)\\\" x=\\\"0 7.22 12.78 17.78\\\">Cash</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 251.7471 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 254.6657 219.3416)\\\" x=\\\"0 6.67 12.23 17.23 22.79 25.57\\\">Payoff</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 283.0153 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 285.934 219.3416)\\\" x=\\\"0 7.78 13.34 16.12 18.4 23.96\\\">Option</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 315.4555 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 318.3741 219.3416)\\\" x=\\\"0 5.56 11.12\\\">has</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 334.4972 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 337.4158 219.3416)\\\" x=\\\"0 5.56 10.56 16.12 18.4 21.73 27.29 32.85\\\">expired,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 373.0506 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 375.9693 219.3416)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 389.8706 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 392.7893 219.3416)\\\" x=\\\"0 3.33 10 15.56 18.89 21.17\\\">“Early</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 418.9611 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 421.8798 219.3416)\\\" x=\\\"0 6.67 12.23 17.23 20.56 28.34 33.9\\\">Buy-Out</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 458.5595 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 461.4781 219.3416)\\\" x=\\\"0 7.78 13.34 16.12 18.4 23.96 29.52\\\">Option”</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 494.3297 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 497.2484 219.3416)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.8\\\">applies</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.055 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 531.9737 219.3416)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 548.6582 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 551.5769 219.3416)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 208.0232)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 59.5916 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 63.2372 208.0232)\\\" x=\\\"0 5.56 11.12 14.45 19.45 25.01 30.57 35.57\\\">purchase</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 104.3748 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 108.0204 208.0232)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 121.9218 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 125.5673 208.0232)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 163.3603 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 167.0058 208.0232)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 177.5674 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 181.2129 208.0232)\\\" x=\\\"0 5.56 11.12 16.12 18.4 23.96\\\">paying</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 210.7393 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 214.3849 208.0232)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 224.9464 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 228.5919 208.0232)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 242.4933 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 246.1389 208.0232)\\\" x=\\\"0 5 10.56\\\">sum</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 265.0305 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 268.676 208.0232)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 277.0159 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 280.6614 208.0232)\\\" x=\\\"0 3.33 8.89\\\">(1)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 292.8831 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 296.5286 208.0232)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.6517 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 316.2972 208.0232)\\\" x=\\\"0 5.56 11.12 16.12\\\">past</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.1986 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.8442 208.0232)\\\" x=\\\"0 5.56 11.12\\\">due</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.5287 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 359.1743 208.0232)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 394.2524 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 397.898 208.0232)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46 44.46\\\">Payments,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 445.1392 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 448.7847 208.0232)\\\" x=\\\"0 5.56 11.12 16.68 22.24 24.52\\\">unpaid</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 478.8726 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 482.5182 208.0232)\\\" x=\\\"0 2.78 8.34 13.9\\\">fees</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.4196 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 505.0651 208.0232)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.7497 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 525.3952 208.0232)\\\" x=\\\"0 5 10.56 12.84 18.4 23.4 26.18 31.74 36.74\\\">sales/use</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 196.7049)\\\" x=\\\"0 2.78 8.34 13.34 18.9 23.9\\\">taxes,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 67.3797 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 70.748 196.7049)\\\" x=\\\"0 3.33 8.89\\\">(2)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 82.9697 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 86.338 196.7049)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02\\\">70.00%</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 120.254 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 123.6223 196.7049)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 131.9621 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 135.3305 196.7049)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 149.2318 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 152.6001 196.7049)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 185.9546 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 189.3229 196.7049)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 199.8845 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 203.2528 196.7049)\\\" x=\\\"0 7.22 12.78 15.06 20.06\\\">which</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 228.8778 196.7049)\\\" x=\\\"0 3.3683\\\">  </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 235.6144 196.7049)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 249.5157 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 252.8841 196.7049)\\\" x=\\\"0 6.11 11.67 14.45 20.01\\\">Total</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.1741 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 278.5424 196.7049)\\\" x=\\\"0 7.22 12.78 17.78\\\">Cost</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.1039 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 302.4722 196.7049)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.68 32.24\\\">exceeds</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 339.7183 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 343.0866 196.7049)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 356.988 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 360.3563 196.7049)\\\" x=\\\"0 2.78 8.34 10.62 13.4 15.68 21.24\\\">Initial</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.8768 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 387.2451 196.7049)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46\\\">Payment,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 429.4863 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 432.8546 196.7049)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 437.9132 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 441.2815 196.7049)\\\" x=\\\"0 5.56 11.12 16.12\\\">any,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 460.1829 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 463.5512 196.7049)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 480.2358 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 483.6041 196.7049)\\\" x=\\\"0 5 10 15.56 21.12 26.68 32.24 34.52 40.08\\\">scheduled</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.2535 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 532.6218 196.7049)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 185.3865)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46 44.46 47.12 49.9 55.46 58.79 64.35 69.91 75.47 81.03 83.69 86.47 92.03 97.59 100.25 105.81 111.37 114.15 119.71 122.37 127.37 132.93 138.49 141.15 146.71 151.71 157.27 160.6 165.6 167.88 172.88 178.44 181.1 186.1 191.66 197.22 200.55 203.21 208.77 214.33 217.11 219.39 224.95 230.51 233.17 238.73 244.29 249.85 252.51 255.84 261.4 264.73 267.39 272.95 278.51 284.07 286.35 288.63 293.63 299.19 304.75 307.03 312.59 315.25 320.25 325.81 328.09 333.65 338.65 341.31 346.87 350.2 352.86 358.42 363.42 368.98 371.64 374.42 379.98 384.98 390.54 395.54\\\">Payments through the date you exercise your option and (3) applicable sales or use taxes.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 174.0682)\\\" x=\\\"0 7.22 12.78 15.44 22.11 27.67 32.67 38.23 41.56 43.84 46.62 51.62 54.28 61.5 67.06 72.62 78.18 83.18 85.46 88.24 90.9 98.12 103.68 109.24 114.8 117.08 120.41 125.97 131.53 134.31 136.97 144.19 149.75 152.41 157.41 162.97 167.97 173.53 176.86 179.14 181.92 186.92 189.58 195.14 200.7 206.26 211.82 216.82 219.1 221.88 224.54 226.82 231.82 234.48 237.81 243.37 248.93 254.49 256.77 260.1 265.66 271.22 273.88 279.44 285 290.56 296.12 299.45 302.11 304.89 310.45 312.73 317.73 320.39 327.06 332.62 335.95 341.51 347.07 355.4 360.96 366.52 369.3\\\">No Security Deposit Required. No security deposit is required under this Agreement.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 162.7498)\\\" x=\\\"0 5.56 11.12 16.68 21.68\\\">Lease</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 67.9461 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 72.4996 162.7498)\\\" x=\\\"0 6.11 11.67 15 23.33\\\">Term,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 98.608 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 103.1616 162.7498)\\\" x=\\\"0 6.67 12.23 17.79 22.79 28.35 33.91 39.47 45.03 50.59\\\">Subsequent</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 156.5405 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 161.094 162.7498)\\\" x=\\\"0 6.11 11.67 15 23.33 28.33\\\">Terms;</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 192.2024 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 196.7559 162.7498)\\\" x=\\\"0 7.22 12.78 18.34 23.9 31.12 36.68 38.96\\\">Renewal.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.504 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 243.0575 162.7498)\\\" x=\\\"0 6.67 12.23 17.79\\\">Your</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 264.1806 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 268.7341 162.7498)\\\" x=\\\"0 2.28 7.84 10.12 12.9 15.18 20.74\\\">initial</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.7566 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 296.3101 162.7498)\\\" x=\\\"0 2.28 7.84 13.4 18.4\\\">lease</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 320.2749 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 324.8285 162.7498)\\\" x=\\\"0 2.78 8.34 11.67\\\">term</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 344.8285 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 349.382 162.7498)\\\" x=\\\"0 5.56 10.56 16.12 18.4 21.73 27.29\\\">expires</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 381.6769 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 386.2305 162.7498)\\\" x=\\\"0 5.56\\\">60</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 397.3535 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 401.907 162.7498)\\\" x=\\\"0 5.56 11.12 16.12\\\">days</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 423.0301 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 427.5836 162.7498)\\\" x=\\\"0 2.78 6.11 11.67\\\">from</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.5836 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 452.1372 162.7498)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.0385 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 470.5921 162.7498)\\\" x=\\\"0 2.28 7.84 10.62 16.18\\\">later</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 490.1038 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 494.6573 162.7498)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 502.9972 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 507.5507 162.7498)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.4521 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 526.0056 162.7498)\\\" x=\\\"0 6.67 11.67 17.23 22.79 27.79 30.57 36.13\\\">Expected</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 151.4315)\\\" x=\\\"0 7.22 12.78 15.06 17.34 22.34 27.9 31.23\\\">Delivery</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 76.9353 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.1545 151.4315)\\\" x=\\\"0 7.22 12.78 15.56\\\">Date</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 102.2775 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 106.4967 151.4315)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 115.3883 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 119.6074 151.4315)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 133.5088 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 137.7279 151.4315)\\\" x=\\\"0 5.56 11.12 13.9\\\">date</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 157.1908 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 161.4099 151.4315)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 172.533 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 176.7521 151.4315)\\\" x=\\\"0 7.22 12.78 15.06 20.06\\\">which</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 202.3771 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 206.5963 151.4315)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 220.4976 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 224.7168 151.4315)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.5097 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 266.7289 151.4315)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 274.0091 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 278.2283 151.4315)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29 32.85\\\">provided</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 316.6463 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 320.8654 151.4315)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.757 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 333.9761 151.4315)\\\" x=\\\"0 5.56 11.12 13.4 15.68 20.68 26.24 29.57 35.13\\\">delivered</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 374.6744 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 378.8935 151.4315)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 387.2334 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 391.4525 151.4315)\\\" x=\\\"0 5 10.56 16.12\\\">you.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 410.3539 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 414.573 151.4315)\\\" x=\\\"0 7.22 12.78 15.56 17.84\\\">Until</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.6951 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 438.9142 151.4315)\\\" x=\\\"0 3.33 5.61\\\">(i)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.8546 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 452.0738 151.4315)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.1968 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 472.416 151.4315)\\\" x=\\\"0 5.56 11.12 13.9 19.46 21.74\\\">obtain</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.7206 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 503.9398 151.4315)\\\" x=\\\"0 5.56 12.78 18.34 23.9 27.23 32.23 37.79 40.07\\\">ownership</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.5794 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.7986 151.4315)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 140.1131)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 78.493 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 82.2535 140.1131)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 92.815 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 96.5756 140.1131)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29 32.85\\\">provided</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 134.9936 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 138.7541 140.1131)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.5959 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 150.3565 140.1131)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 165.9766 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 169.7371 140.1131)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 221.4315 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 225.192 140.1131)\\\" x=\\\"0 3.33 5.61 7.89\\\">(ii)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 236.4127 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 240.1733 140.1131)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.2963 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 260.0569 140.1131)\\\" x=\\\"0 2.78 8.34 11.67 20 22.28 27.84 33.4 36.18\\\">terminate</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 301.8001 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 305.5606 140.1131)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 321.1807 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 324.9413 140.1131)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 373.8573 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 377.6179 140.1131)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.1794 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 391.9399 140.1131)\\\" x=\\\"0 5.56 11.12 14.45 22.78 25.06 27.84 30.62 36.18\\\">permitted</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 433.6831 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 437.4437 140.1131)\\\" x=\\\"0 5.56 11.12 14.45 20.01 25.57 31.13 36.69 42.25\\\">hereunder</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 483.0345 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 486.795 140.1131)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 503.4796 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 507.2402 140.1131)\\\" x=\\\"0 5 10.56 13.89 17.22 22.78 28.34 33.9 39.46\\\">surrender</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 550.038 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.7986 140.1131)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 128.7947)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 78.493 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.5631 128.7947)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 89.4049 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 92.4749 128.7947)\\\" x=\\\"0 2.28 5.06\\\">its</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 102.5335 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 105.6036 128.7947)\\\" x=\\\"0 5.56 8.89 11.17 16.73 19.01 24.57 30.13\\\">original</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 138.0206 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 141.0907 128.7947)\\\" x=\\\"0 5 10.56 16.12 21.68 23.96 26.74 29.02 34.58 40.14\\\">condition,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 184.0155 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 187.0856 128.7947)\\\" x=\\\"0 2.28 7.84 12.84\\\">less</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 204.9274 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 207.9975 128.7947)\\\" x=\\\"0 3.33 8.89 14.45 19.45 25.01 30.57 36.13 41.69 43.97\\\">reasonable</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.5385 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 260.6086 128.7947)\\\" x=\\\"0 7.22 12.78 18.34\\\">wear</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 282.2834 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 285.3535 128.7947)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.038 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 305.1081 128.7947)\\\" x=\\\"0 2.78 8.34 13.9 17.23\\\">tear,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 325.1179 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 328.188 128.7947)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.7495 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 341.8196 128.7947)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 350.1594 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 353.2295 128.7947)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 367.1309 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 370.201 128.7947)\\\" x=\\\"0 5.56 11.12\\\">end</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 386.8855 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 389.9556 128.7947)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 398.2955 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 401.3656 128.7947)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 406.9271 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 409.9972 128.7947)\\\" x=\\\"0 2.28 7.84 13.4 18.4\\\">lease</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 433.962 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 437.0321 128.7947)\\\" x=\\\"0 2.78 8.34 11.67 20\\\">term,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 459.8104 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 462.8805 128.7947)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 471.7721 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 474.8422 128.7947)\\\" x=\\\"0 3.33 5.61 7.89 10.17\\\">(iii)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 488.3432 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 491.4133 128.7947)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 504.1965 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 507.2666 128.7947)\\\" x=\\\"0 2.78 8.34 11.67 20 22.28 27.84 33.4 36.18\\\">terminate</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.0097 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 552.0798 128.7947)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 117.4764)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 89.616 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 93.7725 117.4764)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 101.6143 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 105.7709 117.4764)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 111.3324 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 115.4889 117.4764)\\\" x=\\\"0 8.33 13.89 19.45 25.01 30.57\\\">manner</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 149.3952 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 153.5517 117.4764)\\\" x=\\\"0 5.56 11.12 14.45 22.78 25.06 27.84 30.62 36.18\\\">permitted</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 195.2948 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 199.4514 117.4764)\\\" x=\\\"0 5.56 11.12 14.45 20.01 25.57 31.13 36.69 42.25 45.58\\\">hereunder,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.8205 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 251.977 117.4764)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 267.5971 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 271.7537 117.4764)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 320.6697 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 324.8262 117.4764)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.8887 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 343.0452 117.4764)\\\" x=\\\"0 5.56 11.12 13.9 19.46 27.79 33.35 36.13 38.41 43.41 48.97 51.25 53.53\\\">automatically</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 401.5804 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 405.7369 117.4764)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 422.4215 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 426.578 117.4764)\\\" x=\\\"0 3.33 8.89 14.45 20.01 25.57 28.35 33.91 39.47 41.75\\\">repeatedly</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 473.3358 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 477.4923 117.4764)\\\" x=\\\"0 3.33 8.89 14.45 20.01\\\">renew</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 504.7287 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 508.8852 117.4764)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 520.5551 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 524.7116 117.4764)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.74 24.02 29.58 35.14 40.7\\\">additional</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 106.158)\\\" x=\\\"0 2.28 7.84 13.4 18.4 23.96 26.62 29.4 34.96 38.29 46.62 51.62 54.4 57.06 62.62 68.18 73.18 78.74 81.4 86.96 92.52 95.18 100.74 106.3 111.3 116.3 118.96 121.24 126.8 129.46 131.74 137.3 142.86 148.42 151.2 156.76\\\">lease terms, each 60 days in length.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 94.8397)\\\" x=\\\"0 8.33 13.89 16.17 21.73 24.51 30.07 35.63 41.19 46.75 51.75\\\">Maintenance</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 98.0193 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 101.2487 94.8397)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 109.5885 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 112.8178 94.8397)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 126.7192 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 129.9485 94.8397)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 170.5198 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 173.7491 94.8397)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 191.5421 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 194.7714 94.8397)\\\" x=\\\"0 5.56 8.89\\\">are</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.2246 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 212.4539 94.8397)\\\" x=\\\"0 3.33 8.89 13.89 19.45 25.01 30.57 35.57 37.85 43.41 45.69\\\">responsible</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 263.7136 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 266.943 94.8397)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 278.6129 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 281.8422 94.8397)\\\" x=\\\"0 8.33 13.89 16.17 21.73 24.51 30.07 32.35 37.91 40.19 45.75\\\">maintaining</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 333.1606 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 336.3899 94.8397)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 345.2815 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 348.5108 94.8397)\\\" x=\\\"0 5 10.56 13.89 18.89 21.17 26.17 28.45 34.01\\\">servicing</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.086 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 391.3154 94.8397)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 405.2167 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 408.446 94.8397)\\\" x=\\\"0 5.56 8.89 14.45 20.01 25.57 28.9 31.68\\\">property</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 445.1306 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 448.3599 94.8397)\\\" x=\\\"0 7.22 12.78 15.06 17.34\\\">while</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 471.2652 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 474.4945 94.8397)\\\" x=\\\"0 2.28\\\">it</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 479.5531 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 482.7825 94.8397)\\\" x=\\\"0 2.28 5.06\\\">its</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 492.8411 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 496.0704 94.8397)\\\" x=\\\"0 5.56 11.12 13.4 18.96\\\">being</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 520.5968 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 523.8261 94.8397)\\\" x=\\\"0 2.28 7.84 13.4 18.4 23.96 29.52\\\">leased.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 556.1308 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 559.3601 94.8397)\\\" x=\\\"0 2.78\\\">In</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 83.5213)\\\" x=\\\"0 5.56 10.56 15.56 21.12 24.45 30.01 35.57 41.13 46.13\\\">accordance</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 92.3992 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 95.7041 83.5213)\\\" x=\\\"0 7.22 9.5 12.28\\\">with</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 113.5459 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 116.8509 83.5213)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 132.471 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 135.7759 83.5213)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 187.4702 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 190.7752 83.5213)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 206.8982 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.2031 83.5213)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 224.2656 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 227.5706 83.5213)\\\" x=\\\"0 5 10.56 16.12 21.68 27.24 32.24\\\">conduct</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.595 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 265.8999 83.5213)\\\" x=\\\"0 5.56 7.84\\\">all</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.022 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 279.3269 83.5213)\\\" x=\\\"0 8.33 13.89 16.17 21.73 24.51 30.07 35.63 41.19 46.75 51.75 57.31\\\">maintenance,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 339.4246 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 342.7295 83.5213)\\\" x=\\\"0 3.33 8.89 14.45 20.01 22.29 25.62 30.62\\\">repairs,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 376.1328 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 379.4377 83.5213)\\\" x=\\\"0 5.56 11.12 16.12 21.68 27.24\\\">upkeep</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 412.2454 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 415.5503 83.5213)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 432.2349 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 435.5398 83.5213)\\\" x=\\\"0 5 10.56 13.89 19.45\\\">care.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 457.7712 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 461.0762 83.5213)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.6328 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 469.9377 83.5213)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.0608 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 489.3657 83.5213)\\\" x=\\\"0 8.33 13.89 19.45 25.01 27.79 33.35 38.35 41.13 46.69 50.02 55.58 58.91 61.13\\\">manufacturer’s</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 555.5034 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 558.8083 83.5213)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 83.5213)\\\" x=\\\"0\\\"> </text></g><clipPath id=\\\"clip0-11\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip0-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 546.6561 L 573.6 546.6561 L 573.6 545.6561 L 34.8 545.6561 L 34.8 546.6561 z \\\"/><path clip-path=\\\"url(#clip0-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.6 545.6561 L 573.6 545.6561 L 573.6 530.3377 L 572.6 530.3377 L 572.6 545.6561 z \\\"/><path clip-path=\\\"url(#clip0-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 545.6561 L 35.8 545.6561 L 35.8 530.3377 L 34.8 530.3377 L 34.8 545.6561 z \\\"/><path clip-path=\\\"url(#clip0-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 530.3377 L 573.6 530.3377 L 573.6 529.3377 L 34.8 529.3377 L 34.8 530.3377 z \\\"/><path clip-path=\\\"url(#clip0-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 81.9217 L 573.6 81.9217 L 573.6 80.9217 L 34.8 80.9217 L 34.8 81.9217 z \\\"/><path clip-path=\\\"url(#clip0-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.6 529.3377 L 573.6 529.3377 L 573.6 81.9217 L 572.6 81.9217 L 572.6 529.3377 z \\\"/><path clip-path=\\\"url(#clip0-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 529.3377 L 35.8 529.3377 L 35.8 81.9217 L 34.8 81.9217 L 34.8 529.3377 z \\\"/><g clip-path=\\\"url(#clip0-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 36.5264)\\\" x=\\\"0 6.498 11.997 14.391 16.785 21.789 26.793 29.295 34.299 39.303 44.307 504 506.3906 508.7812 511.1719 513.5625 515.9531 518.3438 520.7344 523.125 525.5156\\\">UT  07/2019          </text></g><g clip-path=\\\"url(#clip0-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 26.3398)\\\" x=\\\"0 6.003 11.007 16.011 21.015\\\">Page </text></g><g clip-path=\\\"url(#clip0-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 55.8097 26.3398)\\\" x=\\\"0\\\">1</text></g><g clip-path=\\\"url(#clip0-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.815 26.3398)\\\" x=\\\"0 2.394 7.398 9.9\\\"> of </text></g><g clip-path=\\\"url(#clip0-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 73.1021 26.3398)\\\" x=\\\"0\\\">7</text></g><g clip-path=\\\"url(#clip0-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#d9d9d9\\\" style=\\\"font-family:f0-0; font-size:54pt; white-space:pre\\\" transform=\\\"matrix(0.707 0.707 0.707 -0.707 135.6027 198.5094)\\\" x=\\\"0 56.016 96.048 136.08 176.112 216.144 236.16 284.184 324.216 344.232 364.248 416.232 456.264 480.24\\\">Qoppa Software</text></g><g clip-path=\\\"url(#clip0-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#002ba6\\\" style=\\\"font-family:f0-0; font-size:9pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.932 772)\\\" x=\\\"0 9.336 16.008 22.68 29.352 36.024 39.36 47.364 54.036 57.372 60.708 69.372 76.044 80.04 86.712 90.048 94.044 97.38 104.712 111.384 115.38 118.716 126.72 132.72 139.392 142.056 148.728 155.4 158.736 161.4 168.072 174.744 178.08 187.416 194.088 196.752 202.752 206.088 210.084 213.42 220.092 223.428 226.764 233.436 239.436 242.772 246.108 249.444 258.108 266.772 275.436 278.772 285.444 292.116 298.788 305.46 312.132 315.468 321.468 328.14\\\">Qoppa Software - For Evaluation Only - https://www.qoppa.com</text></g></g></svg></svg></g></svg><br>\\n<?xml version='1.0' encoding='UTF-8'?><svg id=\\\"qoppa_document\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" version=\\\"1.1\\\" xmlns=\\\"http://www.w3.org/2000/svg\\\" xmlns:xlink=\\\"http://www.w3.org/1999/xlink\\\"><!-- jPDFWeb v2019R1.03 - Demo Version --><style>title p { display: block; }</style><g id=\\\"qoppa_viewxform\\\" transform=\\\"matrix(1 0 0 1 0 0)\\\"><style type=\\\"text/css\\\">@font-face {font-family:f1-0;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f1-1;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f1-2;src:url(\\\"data:application/font-woff;charset=utf-8;base64,d09GRgABAAAAAAW8AAoAAAAABzQAAQABAAAAAAAAAAAAAAAAAAAAAAAAAABPUy8yAAAA9AAAADcAAABWWalZZmNtYXAAAAEsAAAAUwAAAGwBegIKZ2x5ZgAAAYAAAALfAAADgId/tkZoZWFkAAAEYAAAADMAAAA2GHlkumhoZWEAAASUAAAAIAAAACQGIAKxaG10eAAABLQAAAA0AAAARCRzAuxsb2NhAAAE6AAAACQAAAAkBYYGdm1heHAAAAUMAAAAGAAAACAAFAAzbmFtZQAABSQAAACMAAABPhepMhlwb3N0AAAFsAAAAAwAAAAgAAMAAHicY2Bk8mKcwMDKwMDUxbSbARlwMeogc/8DATI/MCDAkUEBCG8y3fifzBDFdINhLkwOAMp0DLgAeJxjYGBgZGAGYgYGHgYWhgQgLcIgABRhYVBgcGRwZXBn8GTwZwhmCGWI//8fKAsSdQaL+sBE/z/+f/j/of8H/x/4v+//7v+7/m8Em4cBADR/GXUAeJx9kk1ME0EYhmcGu42lUTZQQEgKy5oWQktLt0vbAG20WwJ0m1YskKalbKG7EH7CQYkajAnFGIrCRaUGEE1MxL+bBw/ECzdT0YsHUG8cvZDozXTrbFuMJ2eyySQz7/e+37MfQAAvtImyAAENALAcQtpIqWnIwL1b1+Hnqcvyl+A4JCV4Hgbkt/L3w0P8Fj8EbflfaBsdAAoAVZPRwNodHYytprqGNhgNdJOa0FXVVDM2R4eDIdQEXMhE8crMDwxoEgTLXpr14DUdttvVCU0wpB1PvnqdTHo8E97m5n7/vRU/39ISuOJ241QhnO8J9iQACUAl00hWULRDKczajYZWGDqCM/KDo/jSpsvlcm4toay8LWfCfb23F3t6lJyKXsT6cgBaIEnpShuJuR9IJUfgXXkevkPZwa+DP//29QH3Rf+/L5ZmKZI2EjC9KQijoxuLQ4PlY4TLFZvjvBw3t8G/h7Xe2j5tUnzxUhQ97kmf0ejnV9I8L80Oyff9w4pXFDvu4mxlADA0yewKggK3mFmDj6pCZoakkEbuicMYyubSJ/fH+F4LAEWTZXQZidX1kEHHkf3wfmRtb28NCbmnhS+be4PCJU0Ka04rGqgIcGWUGpPTEQFeiyJ77iN+m0UsZq4w+IYZnAUN2A53r6tSE3SJRmWJ/QkMeGcdAxDWM0IiIaxP+ziOm5rx+TgfOpCknR1RFKXnO5KUmwnwy7h9nk8v8wFQYG3CPhPYp73I2shUF2dGKa/sf+CfuBW3kgfGH/n9p2Lqzq5wsN1qsy0ssB09vqs3+vtVI2eeBU2tdJMw6nLigerTermpkMHQSDk76+vr6ixtgWGn0+WUUnp9uxlX0+mqWk29I91dCiecSeF0rpTJwOIfUJrlwlGtzPPkTbe7oiJutURjFovQ0OBxa63WCxeH4LacXDWbTOZVuCWPpbrdej2A+d/5cWTOP1T+s4piKWTOfUK2xzYA/gBtBuJcAHicY2BkYGAA4rxdv17H89t8ZeBmfgEUYbhtLnAWRv///T+Z6QPTDaA6DgYmkCgAl1oOtgB4nGNgZGBguvE/mSGK2fH/7/+/mT4wAEVQgCAAvv0H1HicY2CAAEZfCGaaDcSXGPSAOADIDmDmYtBjFGOIZtIBsh2BYpcgYkA5HbAajf+/AR7DC3wAAAAAAAAAAAAAABwAUABwAIgAvgDKANoA9AEKAT4BiAGyAcB4nGNgZGBgEGQwYmBiAAFGBjQAAAcrAEh4nJWOMQ6CUBBEH4KKrZUlpRURQkUptZWJhZ1RURPiJ0BD41E8BudzhH8AyGaTN7OTyQJLzrg43gpYawd22EoNPMMntewSsrfsiUvLczZ8LS/kd2QYXVsqXjx40nAQXaUNtTaXE3Dkwlv6T/c+m6vfUHAbnf+QEE9Mn3pdyzFKBET6eaeZ1PIDR/8t33icY2BmwAsAAH0ABA==\\\");}@font-face {font-family:f1-3;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}</style><svg id=\\\"qoppa_page_p1\\\" class=\\\"qoppa_page\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\"><rect class=\\\"qoppa_pageborder\\\" x=\\\"0.5pt\\\" y=\\\"0.5pt\\\" width=\\\"611pt\\\" height=\\\"791pt\\\" fill=\\\"none\\\" /><svg class=\\\"qoppa_pagecontents\\\" x=\\\"0pt\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" viewBox=\\\"0 0 612 792\\\" ><g class=\\\"qoppa_contentstream\\\" transform=\\\"matrix(1 0 0 -1 0 792)\\\" fill=\\\"black\\\" stroke=\\\"black\\\" stroke-width=\\\"1\\\" stroke-linecap=\\\"butt\\\" stroke-linejoin=\\\"miter\\\" stroke-miterlimit=\\\"10\\\"><clipPath id=\\\"clip1-1\\\"><path d=\\\"M 35 487 L 574 487 L 574 770 L 35 770 L 35 487 z \\\"/></clipPath><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 759.4812)\\\" x=\\\"0 5 10.56 12.84 15.12 20.68 24.01 26.23\\\">seller’s</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 71.9353 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 75.2187 759.4812)\\\" x=\\\"0 7.22 12.78 16.11 19.44 25 30.56 33.34\\\">warranty</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 113.5635 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 116.8468 759.4812)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 124.1271 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 127.4105 759.4812)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 135.2523 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 138.5357 759.4812)\\\" x=\\\"0 2.78 8.34 11.67 16.67\\\">force</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.7671 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 164.0505 759.4812)\\\" x=\\\"0 7.22 12.78 18.34\\\">when</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 187.9567 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 191.2401 759.4812)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 207.3631 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.6465 759.4812)\\\" x=\\\"0 5.56 10.56 16.12 21.68 23.96 27.29\\\">acquire</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 243.503 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 246.7863 759.4812)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 260.6877 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 263.9711 759.4812)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 304.5424 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 307.8258 759.4812)\\\" x=\\\"0 2.28\\\">it</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.8844 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 316.1677 759.4812)\\\" x=\\\"0 5 10.56 16.12 18.4\\\">shall</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 336.8513 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 340.1347 759.4812)\\\" x=\\\"0 5.56\\\">be</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.2578 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 354.5411 759.4812)\\\" x=\\\"0 2.78 6.11 11.67 17.23 22.23 25.01 30.57 33.9 37.23 42.79\\\">transferred</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.8956 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 406.179 759.4812)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 414.5188 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 417.8022 759.4812)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 433.9253 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 437.2086 759.4812)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 442.2672 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 445.5506 759.4812)\\\" x=\\\"0 5.56 7.84 10.12 15.68 22.9 28.46\\\">allowed</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 479.5789 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 482.8623 759.4812)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 493.4238 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 496.7072 759.4812)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 510.6086 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 513.892 759.4812)\\\" x=\\\"0 2.78 8.34 11.67 20\\\">terms</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 538.892 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 542.1754 759.4812)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 550.5152 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.7986 759.4812)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 748.1629)\\\" x=\\\"0 7.22 12.78 16.11 19.44 25 30.56 33.34 38.34\\\">warranty.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 736.8445)\\\" x=\\\"0 5.56 11.12 16.12 18.9\\\">Lost,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 62.3797 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 65.5493 736.8445)\\\" x=\\\"0 6.67 9.45 15.01 17.29 22.85 28.41\\\">Stolen,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 96.7407 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 99.9104 736.8445)\\\" x=\\\"0 7.22 12.78 21.11 26.67 32.23 37.79 43.35\\\">Damaged,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.0481 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 149.2177 736.8445)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 158.1093 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 161.279 736.8445)\\\" x=\\\"0 7.22 12.78 17.78 20.56 23.89 29.45 34.45 40.01\\\">Destroyed</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 206.8552 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.0248 736.8445)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 250.5961 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 253.7657 736.8445)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.3224 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 262.492 736.8445)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.3934 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 279.563 736.8445)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 317.356 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 320.5256 736.8445)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 327.8059 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 330.9756 736.8445)\\\" x=\\\"0 2.28 7.84 12.84 15.62\\\">lost,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 349.374 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 352.5437 736.8445)\\\" x=\\\"0 5 7.78 13.34 15.62 21.18 26.74\\\">stolen,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 382.0651 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 385.2348 736.8445)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57 36.13\\\">damaged</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 426.934 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 430.1037 736.8445)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 438.9952 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 442.1649 736.8445)\\\" x=\\\"0 5.56 11.12 16.12 18.9 22.23 27.79 32.79 38.35 43.91\\\">destroyed,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 488.8592 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 492.0289 736.8445)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 508.1519 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 511.3216 736.8445)\\\" x=\\\"0 5.56 11.12 14.45 20.01\\\">agree</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 536.8977 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 540.0674 736.8445)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 548.4072 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 551.5769 736.8445)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 725.5262)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 51.2615 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 55.736 725.5262)\\\" x=\\\"0 5.56\\\">at</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 64.0758 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 68.5503 725.5262)\\\" x=\\\"0 5.56 11.12 16.12\\\">once</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 90.2349 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 94.7094 725.5262)\\\" x=\\\"0 5.56\\\">an</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 105.8324 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 110.3069 725.5262)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 143.6614 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.1359 725.5262)\\\" x=\\\"0 5.56 11.12 16.68 22.24\\\">equal</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 172.6622 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 177.1367 725.5262)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 185.4766 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 189.951 725.5262)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 203.8524 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 208.3269 725.5262)\\\" x=\\\"0 2.28 7.84 12.84 17.84 23.4\\\">lesser</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 235.0603 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 239.5348 725.5262)\\\" x=\\\"0 5.56 8.34\\\">of:</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 250.6529 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 255.1274 725.5262)\\\" x=\\\"0 3.33 8.89\\\">(1)</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 267.3491 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 271.8236 725.5262)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 285.7249 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 290.1994 725.5262)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79 40.01\\\">Property’s</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.2141 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 339.6885 725.5262)\\\" x=\\\"0 2.78 8.34 10.62\\\">fair</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 353.6387 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 358.1132 725.5262)\\\" x=\\\"0 8.33 13.89 17.22 22.22 27.78\\\">market</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.6747 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 393.1492 725.5262)\\\" x=\\\"0 5 10.56 12.84 18.4 23.96\\\">value,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.8924 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 424.3669 725.5262)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.9284 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 439.4029 725.5262)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.7427 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 452.2172 725.5262)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.1185 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 470.593 725.5262)\\\" x=\\\"0 2.78 5.06 13.39\\\">time</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.5432 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 494.0177 725.5262)\\\" x=\\\"0 2.28\\\">it</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.0763 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 503.5508 725.5262)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 510.831 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 515.3055 725.5262)\\\" x=\\\"0 2.28 7.84 12.84 15.62\\\">lost,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 533.704 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 538.1785 725.5262)\\\" x=\\\"0 5 7.78 13.34 15.62 21.18 26.74\\\">stolen,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 714.2078)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57 36.13\\\">damaged</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 82.3992 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 86.9016 714.2078)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 95.7932 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 100.2955 714.2078)\\\" x=\\\"0 5.56 11.12 16.12 18.9 22.23 27.79 32.79 38.35\\\">destroyed</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 144.2115 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.7139 714.2078)\\\" x=\\\"0 3.33 8.89 14.45 17.23 22.79 26.12 34.45 36.73 42.29 47.85\\\">(determined</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 202.1319 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 206.6342 714.2078)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 217.1958 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 221.6981 714.2078)\\\" x=\\\"0 5.56 10.56\\\">us,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 235.038 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 239.5403 714.2078)\\\" x=\\\"0 5.56 10.56 12.84 18.4\\\">using</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 263.5052 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 268.0075 714.2078)\\\" x=\\\"0 5.56\\\">an</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 279.1306 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 283.6329 714.2078)\\\" x=\\\"0 2.28 7.84 13.4 18.96 23.96 26.74 30.07\\\">industry</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 318.7062 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 323.2085 714.2078)\\\" x=\\\"0 5 10.56 12.84 18.4\\\">value</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 347.1734 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 351.6758 714.2078)\\\" x=\\\"0 5.56 11.12 13.4 18.96\\\">guide</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 376.2021 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 380.7045 714.2078)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.4877 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 397.99 714.2078)\\\" x=\\\"0 5 10.56 12.84 18.4 23.4 26.18\\\">select,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 426.95 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 431.4524 714.2078)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 436.511 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 441.0133 714.2078)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 457.1364 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 461.6387 714.2078)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.919 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 473.4214 714.2078)\\\" x=\\\"0 5.56 10.56 16.12 18.4 20.68 26.24 31.8 34.08 39.64 42.97\\\">available);</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 519.1782 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 523.6806 714.2078)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 532.5722 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 537.0745 714.2078)\\\" x=\\\"0 3.33 8.89\\\">(2)</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.2962 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.7986 714.2078)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 702.8895)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57 33.35 36.01 41.01 46.57 52.13 54.79 62.01 67.57 73.13 75.41 80.97 83.63 89.19 94.75 100.31 105.87 108.53 111.31 116.87 119.53 125.09 130.65 135.65 138.31 143.87 146.65 149.31 154.31 159.87 164.87 170.43 173.09 175.87 178.15 186.48 192.04 194.7 197.48 203.04 205.7 211.26 216.26 221.82 225.15 230.15 232.43 237.43 242.99 245.65 248.43 253.99 259.55 262.21 267.77 273.33 278.89 282.22 289.44 295 300 302.66 310.44 316 318.78 321.06 326.62 332.18 334.84 340.4 343.73 346.39 353.06 358.62 361.95 364.23 369.23 371.89 378.56 384.12 389.12 392.45 400.23 405.79 408.57 411.23 419.01 424.57 427.35 429.63 435.19 440.75 443.53 446.19 451.75 456.75 459.41 464.97 470.53 476.09 478.37 480.65 485.65 491.21 496.77 499.05 504.61\\\">amount you would need to pay at such time to exercise the 100-Day Option or Early Buy-Out Option, as applicable.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 691.5711)\\\" x=\\\"0 7.22 12.78 15.06 20.62 25.62 28.4 33.96 36.74 42.3 50.63 56.19 61.75\\\">Reinstatement</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 105.2361 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 108.6807 691.5711)\\\" x=\\\"0 7.22 9.5 15.06 20.62 23.4 28.4\\\">Rights.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 139.8623 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 143.3069 691.5711)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 148.8635 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 152.3081 691.5711)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 168.4311 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 171.8757 691.5711)\\\" x=\\\"0 5.56 8.89\\\">are</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 186.3288 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 189.7734 691.5711)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 197.6152 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 201.0597 691.5711)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 27.3\\\">default</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.1428 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 234.5873 691.5711)\\\" x=\\\"0 5.56 11.12 16.68 19.46 25.02\\\">and/or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.9418 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 266.3864 691.5711)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.2877 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 283.7323 691.5711)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 321.5253 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 324.9698 691.5711)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 332.2501 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 335.6947 691.5711)\\\" x=\\\"0 5 10.56 13.89 17.22 22.78 28.34 33.9 39.46 42.79 48.35\\\">surrendered</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 389.6156 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 393.0601 691.5711)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 401.9517 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 405.3963 691.5711)\\\" x=\\\"0 3.33 8.89 14.45 20.01 25.01 30.01 35.57 40.57 45.57 51.13 56.69\\\">repossessed,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 464.8738 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 468.3184 691.5711)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.4414 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 487.886 691.5711)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 506.7776 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 510.2222 691.5711)\\\" x=\\\"0 3.33 8.89 11.17 16.73 21.73 24.51 30.07 32.85\\\">reinstate</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 548.6353 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 552.0798 691.5711)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 680.2527)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 89.616 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 92.7055 680.2527)\\\" x=\\\"0 7.22 9.5 12.28 17.84 23.4 28.96\\\">without</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 124.4487 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 127.5382 680.2527)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68\\\">losing</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 153.7833 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 156.8728 680.2527)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 172.9958 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 176.0853 680.2527)\\\" x=\\\"0 3.33 5.61 11.17 16.73 19.51\\\">rights</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 200.597 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 203.6865 680.2527)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 212.5781 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 215.6676 680.2527)\\\" x=\\\"0 5.56 11.12 13.9 16.18 21.74 27.3\\\">options</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.9723 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 251.0618 680.2527)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 261.6234 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 264.7129 680.2527)\\\" x=\\\"0 5.56 11.12 16.12 18.4 23.96 29.52\\\">paying:</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 297.0175 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 300.1071 680.2527)\\\" x=\\\"0 3.33 5.61\\\">(i)</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 309.0475 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 312.137 680.2527)\\\" x=\\\"0 5.56 7.84\\\">all</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 322.2591 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 325.3485 680.2527)\\\" x=\\\"0 5.56 11.12 16.12\\\">past</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 344.2499 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 347.3394 680.2527)\\\" x=\\\"0 5.56 11.12\\\">due</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 364.024 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 367.1135 680.2527)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01 30.57 35.57\\\">charges;</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 405.468 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 408.5575 680.2527)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 425.242 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 428.3315 680.2527)\\\" x=\\\"0 3.33 5.61 7.89\\\">(ii)</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 439.5523 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 442.6418 680.2527)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.7003 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 450.7898 680.2527)\\\" x=\\\"0 5.56 7.84 10.12 15.68 22.9 28.46\\\">allowed</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.8182 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 487.9077 680.2527)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 498.4692 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 501.5587 680.2527)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64\\\">applicable</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 546.7686 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 549.8581 680.2527)\\\" x=\\\"0 2.28 7.84 15.06\\\">law,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 668.9344)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 54.6014 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 59.0196 668.9344)\\\" x=\\\"0 3.33 8.89 14.45 19.45 25.01 30.57 36.13 41.69 43.97\\\">reasonable</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 108.5606 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 112.9789 668.9344)\\\" x=\\\"0 5 10.56 15.56 18.34\\\">costs</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.3187 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 140.737 668.9344)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 149.0768 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 153.4951 668.9344)\\\" x=\\\"0 5.56 7.84 12.84 17.84 23.4\\\">pickup</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 182.4599 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 186.8782 668.9344)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 203.5627 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 207.981 668.9344)\\\" x=\\\"0 3.33 8.89 14.45 20.01 22.29 24.57 29.57 35.13 38.46 43.46\\\">redelivery.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 254.2261 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 258.6444 668.9344)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.4373 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 280.8556 668.9344)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.7472 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 304.1654 668.9344)\\\" x=\\\"0 5.56 10.56 16.12 19.45 24.45 26.73 31.73\\\">exercise</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 341.4604 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 345.8786 668.9344)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 365.3317 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 369.75 668.9344)\\\" x=\\\"0 3.33 8.89 11.17 16.73 21.73 24.51 30.07 32.85 38.41 46.74 52.3 57.86\\\">reinstatement</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.3945 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 434.8128 668.9344)\\\" x=\\\"0 3.33 5.61 11.17 16.73\\\">right</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.3245 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 458.7428 668.9344)\\\" x=\\\"0 7.22 9.5 12.28 17.84 20.12\\\">within</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.4263 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 488.8446 668.9344)\\\" x=\\\"0 5.56 11.12\\\">180</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 505.5292 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 509.9474 668.9344)\\\" x=\\\"0 5.56 11.12 16.12\\\">days</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 531.0705 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 535.4887 668.9344)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 543.8286 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 548.2468 668.9344)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 657.616)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 27.3 30.08 32.74 38.3 41.63 44.29 49.29 54.85 58.18 61.51 67.07 72.63 78.19 83.75 87.08 89.86 93.19 98.75 104.31 109.87 114.87 119.87 125.43 130.43 135.43 137.71 143.27 148.83 151.49 157.05 159.83 162.49 165.27 170.83 176.39 179.05 185.72 189.05 194.61 200.17 205.73 209.06 211.84 216.84 219.5 225.06 228.39 231.05 236.05 241.61 246.61 252.17 254.83 257.11 262.67 268.23 273.79 279.35 282.68 285.34 290.9 296.46 299.79 302.07 307.63 313.19 315.85 321.41 324.74 330.3 335.3 337.58 343.14 348.7 354.26 356.92 359.7 365.26 367.92 372.92 378.48 384.04 386.7 392.26 397.82 403.38 408.94 412.27 414.93 420.49 426.05 431.61 433.89 436.17 441.17 446.73 452.29 454.57 460.13 462.79 465.07 470.63 477.85\\\">default or surrender/repossession of the Property or such longer period provided to you under applicable law.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 646.2977)\\\" x=\\\"0 7.22 9.5 15.06 20.62\\\">Right</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 64.1033 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 66.9139 646.2977)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 75.2537 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 78.0643 646.2977)\\\" x=\\\"0 6.11 11.67 15 23.33 25.61 31.17 36.73 39.51 45.07\\\">Terminate.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 125.9158 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 128.7263 646.2977)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.5193 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 149.3299 646.2977)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 168.2215 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 171.032 646.2977)\\\" x=\\\"0 2.78 8.34 11.67 20 22.28 27.84 33.4 36.18\\\">terminate</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 212.7752 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 215.5857 646.2977)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 235.0388 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 237.8494 646.2977)\\\" x=\\\"0 2.28 7.84 13.4 18.4\\\">lease</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 261.8142 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 264.6248 646.2977)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.9793 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 305.7898 646.2977)\\\" x=\\\"0 5.56 11.12 13.4 15.68 21.24 26.8 29.58 31.86 37.42 42.98\\\">obligations</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 353.7781 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 356.5886 646.2977)\\\" x=\\\"0 5.56 11.12 16.68 22.24\\\">under</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 382.1648 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 384.9753 646.2977)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 400.5955 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 403.406 646.2977)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 452.322 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 455.1326 646.2977)\\\" x=\\\"0 7.22 9.5 12.28 17.84 23.4 28.96\\\">without</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.8757 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 489.6863 646.2977)\\\" x=\\\"0 5.56 11.12 16.68 22.24 24.52 27.3\\\">penalty</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.991 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 524.8015 646.2977)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 535.363 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 538.1736 646.2977)\\\" x=\\\"0 5.56 11.12 16.12 18.4 23.96\\\">paying</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 634.9793)\\\" x=\\\"0 5.56 7.84\\\">all</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 50.8221 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 53.7614 634.9793)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 88.8395 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 91.7789 634.9793)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46 44.46\\\">Payments,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 139.0201 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 141.9594 634.9793)\\\" x=\\\"0 2.78 8.34 13.9\\\">fees</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.8608 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 163.8001 634.9793)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 180.4847 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 183.424 634.9793)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01 30.57\\\">charges</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 219.0002 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 221.9396 634.9793)\\\" x=\\\"0 2.78 8.34 13.9\\\">that</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.6192 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 241.5586 634.9793)\\\" x=\\\"0 5.56 8.89\\\">are</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.0117 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 258.951 634.9793)\\\" x=\\\"0 5.56 11.12\\\">due</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.6356 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 278.575 634.9793)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 287.4666 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 290.4059 634.9793)\\\" x=\\\"0 5.56 11.12 16.12\\\">past</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 309.3073 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 312.2466 634.9793)\\\" x=\\\"0 5.56 11.12\\\">due</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 328.9312 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 331.8705 634.9793)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.5551 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 351.4944 634.9793)\\\" x=\\\"0 5 10.56 12.84 18.4 23.96 26.74 32.3 35.63 37.91 40.19\\\">voluntarily</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 396.6898 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 399.6291 634.9793)\\\" x=\\\"0 5 10.56 13.89 17.22 22.78 28.34 33.9 39.46 42.79 45.07 50.63\\\">surrendering</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 455.8303 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 458.7696 634.9793)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.6612 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 470.6005 634.9793)\\\" x=\\\"0 3.33 8.89 11.67 17.23 20.56 26.12 28.4 33.96\\\">returning</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 510.1269 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 513.0663 634.9793)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.9676 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 529.907 634.9793)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 623.6609)\\\" x=\\\"0 2.28 7.84 10.5 12.78 15.56 20.56 23.22 28.78 32.11 34.39 39.95 42.23 47.79 53.35 55.63 58.29 63.29 68.85 74.41 79.97 82.25 85.03 87.31 92.87 98.43 101.21 103.87 106.15 111.71 116.71 121.71 124.37 127.7 133.26 138.82 143.82 149.38 154.94 160.5 166.06 168.34 173.9 176.56 183.78 189.34 194.9 198.23 200.89 206.45 212.01 217.57 220.23 223.01 228.57 234.13 237.46 240.12 245.68 248.46 251.12 253.9 259.46 265.02 267.68 273.24 278.24 283.8 286.08 289.41 294.97 297.75 300.03 305.59 311.15 313.81 319.37 322.15 324.81 330.37 335.93 340.93 343.59 345.87 351.43 356.99 361.99 367.55 370.21 372.99 378.55 381.88 390.21\\\">in its original condition, less reasonable wear and tear at the expiration of any lease term.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 612.3426)\\\" x=\\\"0 5.56 11.12 13.9\\\">Late</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.1629 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 63.3819 612.3426)\\\" x=\\\"0 6.11 11.67 17.23 22.23\\\">Fees.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 88.3917 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 91.6107 612.3426)\\\" x=\\\"0 9.44\\\">We</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 106.6107 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 109.8297 612.3426)\\\" x=\\\"0 3.33 8.89 13.89 19.45 22.78 27.78\\\">reserve</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 143.1744 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 146.3934 612.3426)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.2948 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 163.5138 612.3426)\\\" x=\\\"0 3.33 5.61 11.17 16.73\\\">right</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 183.0255 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 186.2445 612.3426)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 194.5844 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 197.8034 612.3426)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01\\\">charge</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 228.3796 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 231.5986 612.3426)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 237.1601 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 240.3791 612.3426)\\\" x=\\\"0 2.28 7.84 10.62\\\">late</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.5608 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 259.7798 612.3426)\\\" x=\\\"0 2.78 8.34\\\">fee</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 273.6811 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 276.9002 612.3426)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 288.5701 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 291.7891 612.3426)\\\" x=\\\"0 5.56 11.12 16.12\\\">past</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 310.6905 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 313.9095 612.3426)\\\" x=\\\"0 5.56 11.12\\\">due</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 330.594 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 333.8131 612.3426)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57 38.35 43.35\\\">payments,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 379.9459 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 383.1649 612.3426)\\\" x=\\\"0 5.56 8.34 11.12 16.68\\\">after</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.1747 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 406.3937 612.3426)\\\" x=\\\"0 5.56 7.84 10.12 15.68 22.9 25.18 30.74\\\">allowing</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 442.7023 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 445.9213 612.3426)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 457.5912 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 460.8102 612.3426)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 476.9333 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 480.1523 612.3426)\\\" x=\\\"0 5.56 8.89 14.45 19.45\\\">grace</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 505.1669 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 508.3859 612.3426)\\\" x=\\\"0 5.56 11.12 14.45 16.73 22.29 27.85\\\">period,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 539.0207 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 542.2397 612.3426)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 550.5796 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.7986 612.3426)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 601.0242)\\\" x=\\\"0 2.28 7.84 12.84 17.84 23.4\\\">lesser</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 67.4334 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 70.2009 601.0242)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 78.5407 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.3082 601.0242)\\\" x=\\\"0 3.33 5.61\\\">(i)</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 90.2486 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 93.0161 601.0242)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 106.9175 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 109.6849 601.0242)\\\" x=\\\"0 3.33 8.89 11.67\\\">rate</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 126.9164 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 129.6839 601.0242)\\\" x=\\\"0 5.56 7.84 10.12 15.68 22.9 28.46\\\">allowed</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 163.7122 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 166.4797 601.0242)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 177.0412 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 179.8087 601.0242)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64\\\">applicable</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.0186 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 227.7861 601.0242)\\\" x=\\\"0 2.28 7.84\\\">law</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 242.8496 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 245.6171 601.0242)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 254.5087 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 257.2761 601.0242)\\\" x=\\\"0 3.33 5.61 7.89\\\">(ii)</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 268.4968 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 271.2643 601.0242)\\\" x=\\\"0 5.56 11.12 13.9 19.46\\\">$2.00</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 296.2887 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 299.0562 601.0242)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 310.7261 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 313.4936 601.0242)\\\" x=\\\"0 7.22 12.78 18.34 23.34 25.62 30.62\\\">weekly,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 346.8969 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 349.6644 601.0242)\\\" x=\\\"0 5.56 7.84 15.06 20.62 26.18 31.18 33.46 38.46\\\">biweekly,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 390.9095 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 393.677 601.0242)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.5686 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 405.3361 601.0242)\\\" x=\\\"0 5 10.56 18.89 21.17 24.5 32.83 38.39 43.95 46.73 52.29 54.57\\\">semi-monthly</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 464.9113 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 467.6787 601.0242)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57 38.35 43.35\\\">payments,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 513.8116 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 516.579 601.0242)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 525.4706 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 528.2381 601.0242)\\\" x=\\\"0 5.56 11.12 13.9 19.46\\\">$5.00</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.2625 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 556.03 601.0242)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 589.7059)\\\" x=\\\"0 8.33 13.89 19.45 22.23 27.79 30.07 35.07 37.73 43.29 48.85 53.85 62.18 67.74 73.3 76.08 81.08\\\">monthly payments.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 578.3875)\\\" x=\\\"0 7.7783 10.5566 16.1182 21.6797\\\">Other</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 65.7098 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 68.366 578.3875)\\\" x=\\\"0 2.7783 11.1084 16.6699 22.2315 25.5615 28.3398 33.9014 39.4629\\\">Important</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 110.6072 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 113.2635 578.3875)\\\" x=\\\"0 6.1084 11.6699 15 23.3301 28.3301\\\">Terms.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 144.3719 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 147.0281 578.3875)\\\" x=\\\"0 6.6699 12.2314\\\">See</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 164.8211 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 167.4773 578.3875)\\\" x=\\\"0 2.7783 8.3398\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 181.3787 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 184.035 578.3875)\\\" x=\\\"0 5.5615 8.3398 13.9014 19.4629\\\">other</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 206.8279 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 209.4842 578.3875)\\\" x=\\\"0 5.5615 11.123 14.4531 17.2314\\\">parts</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.7156 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 234.3719 578.3875)\\\" x=\\\"0 5.5615\\\">of</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 242.7117 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 245.368 578.3875)\\\" x=\\\"0 2.7783 8.3398 10.6201\\\">this</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 260.9881 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 263.6443 578.3875)\\\" x=\\\"0 6.6699 12.2314 15.5615 21.123 26.6846 35.0147 40.5762 46.1377\\\">Agreement</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.5603 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 315.2166 578.3875)\\\" x=\\\"0 2.7783 8.3398\\\">for</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 326.8865 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 329.5428 578.3875)\\\" x=\\\"0 5.5615 11.1231 16.6846 18.9648 21.7432 24.0234 29.585 35.1465 40.708\\\">additional</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 372.531 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 375.1873 578.3875)\\\" x=\\\"0 2.2803 10.6103 16.1719 21.7334 25.0635 27.8418 33.4033 38.9648\\\">important</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 416.9305 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 419.5867 578.3875)\\\" x=\\\"0 2.2803 7.8418 10.6201 16.1816 19.5117 27.8418 33.4033 36.1816 38.4619 44.0234\\\">information</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 469.1717 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 471.8279 578.3875)\\\" x=\\\"0 5.5615\\\">on</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 482.951 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 485.6072 578.3875)\\\" x=\\\"0 2.7783 8.3398 11.6699 20 22.2803 27.8418 33.4033 36.1816 38.4619 44.0234\\\">termination</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 567.0691)\\\" x=\\\"0 5.5615 8.8916 14.4531 19.4531 25.0146 30.5762 36.1377 39.4678 45.0293 50.0293\\\">procedures,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 93.5076 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 96.1639 567.0691)\\\" x=\\\"0 5.5615 11.1231 14.4531 19.4531 25.0146 30.5762 35.5762\\\">purchase</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 137.3016 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 139.9578 567.0691)\\\" x=\\\"0 5.5615 11.123 13.9014 16.1816 21.7432\\\">option</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 167.2625 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 169.9187 567.0691)\\\" x=\\\"0 3.4301 5.8103 11.4719 17.1334 20.0117 25.1117\\\">rights,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 197.9088 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 200.665 567.0691)\\\" x=\\\"0 3.3801 8.9916 14.0416 19.6531 25.2646 30.8762 35.9262 38.2565 43.868 46.1983 48.5285 50.8588 53.6871 56.0174 61.6289\\\">responsibilities</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 267.3439 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 270.0502 567.0691)\\\" x=\\\"0 3.0283 8.8399\\\">for</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 282.4701 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 285.3764 567.0691)\\\" x=\\\"0 2.4303 8.1418 13.2918 18.4418\\\">loss,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 306.7465 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 309.5527 567.0691)\\\" x=\\\"0 5.6615 11.3231 19.7531 25.4146 31.0762\\\">damage</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 346.2904 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 349.0467 567.0691)\\\" x=\\\"0 5.8615\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 358.5383 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 361.4945 567.0691)\\\" x=\\\"0 5.6115 11.2231 16.2731 19.1014 22.4814 28.093 33.143 35.9713 38.3016 43.9131\\\">destruction</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 411.0191 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 413.7254 567.0691)\\\" x=\\\"0 5.8615\\\">of</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 422.6652 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 425.6215 567.0691)\\\" x=\\\"0 3.0283 8.8398\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 440.2729 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 443.1791 567.0691)\\\" x=\\\"0 6.7699 10.2 15.8615 21.523 27.1846 30.6146 33.493 38.593\\\">Property,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.6504 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 487.4066 567.0691)\\\" x=\\\"0 5.6615 10.7615 13.6398 19.3014 24.9629\\\">actual</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 514.7498 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 517.506 567.0691)\\\" x=\\\"0 5.6615\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.5976 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 529.3539 567.0691)\\\" x=\\\"0 2.3803 10.8103 16.4719 18.8522 21.2324 26.894\\\">implied</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 555.7508)\\\" x=\\\"0 7.2717 12.8832 16.2633 19.6434 25.2549 30.8664 33.6947 36.025 41.6365 46.6865\\\">warranties,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 90.2148 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 92.9211 555.7508)\\\" x=\\\"0 2.8283 8.4398 13.4898 19.1014 24.1514\\\">taxes,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 119.9008 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 122.607 555.7508)\\\" x=\\\"0 5.7115 8.6398 14.3514 20.0629\\\">other</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.15 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.9563 555.7508)\\\" x=\\\"0 5.1 10.7615 16.423 19.8531 25.5146 31.1762\\\">charges</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 185.2324 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 187.9887 555.7508)\\\" x=\\\"0 5.6115 11.223\\\">and</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 204.8232 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 207.5295 555.7508)\\\" x=\\\"0 5.5615 11.1231 16.6846 22.2461 24.5264 27.3047 29.585 35.1465\\\">penalties</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.676 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 250.3322 555.7508)\\\" x=\\\"0 5 10.5615\\\">you</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 266.4553 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 269.1115 555.7508)\\\" x=\\\"0 8.3301 13.8916\\\">may</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 288.0031 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 290.6594 555.7508)\\\" x=\\\"0 2.2803 7.8418 12.8418 18.4033 21.7334\\\">incur,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 315.1711 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 317.8273 555.7508)\\\" x=\\\"0 5.5615 11.123\\\">and</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 334.5119 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 337.1682 555.7508)\\\" x=\\\"0 5.5615 8.3398 13.9014 19.4629\\\">other</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.9611 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 362.6174 555.7508)\\\" x=\\\"0 2.2803 10.6103 16.1719 21.7334 25.0635 27.8418 33.4033 38.9648\\\">important</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 404.3605 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.0168 555.7508)\\\" x=\\\"0 2.2803 7.8418 10.6201 16.1816 19.5117 27.8418 33.4033 36.1816 38.4619 44.0234 49.585\\\">information.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 459.3801 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 462.0363 555.7508)\\\" x=\\\"0 6.6699 12.2314\\\">You</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 479.8293 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 482.4855 555.7508)\\\" x=\\\"0 5.5615 10.5615 15.5615 21.1231 26.6846 33.9063 36.1865 41.7481 47.3096 52.8711\\\">acknowledge</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 540.9182 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 543.5744 555.7508)\\\" x=\\\"0 2.7783 8.3398 13.9014\\\">that</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 544.4324)\\\" x=\\\"0 7.2717\\\">we</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 53.5832 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 56.2895 544.4324)\\\" x=\\\"0 5.5615 8.8916 14.4531 19.4531 21.7334 27.2949 32.8564\\\">provided</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 94.7074 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 97.3637 544.4324)\\\" x=\\\"0 5 10.5615\\\">you</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 113.4867 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 116.143 544.4324)\\\" x=\\\"0 7.2217 9.502 12.2803\\\">with</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 133.9848 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 136.641 544.4324)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 142.4525 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 145.3588 544.4324)\\\" x=\\\"0 5 10.5615 18.8916 24.4531 26.7334 32.2949 35.0733 40.6348\\\">completed</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 191.5551 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 194.2113 544.4324)\\\" x=\\\"0 5 10.5615 16.1231\\\">copy</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 215.3344 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 217.9906 544.4324)\\\" x=\\\"0 5.6115\\\">of</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 226.4305 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 229.1367 544.4324)\\\" x=\\\"0 2.7783 8.3398 10.6201\\\">this</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 244.7568 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 247.4131 544.4324)\\\" x=\\\"0 6.6699 12.2315 15.5615 21.123 26.6846 35.0146 40.5762 46.1377 48.916\\\">Agreement.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.1074 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 301.7637 544.4324)\\\" x=\\\"0 6.6699 12.2314\\\">You</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.5566 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 322.2129 544.4324)\\\" x=\\\"0 5.5615 10.5615 15.5615 21.123 26.6846 33.9062 36.1865 41.748 47.3096 52.8711\\\">acknowledge</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.6455 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 383.3017 544.4324)\\\" x=\\\"0 2.7783 8.3399 13.9014\\\">that</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 399.9814 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 402.6377 544.4324)\\\" x=\\\"0 7.2717\\\">we</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 415.5209 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 418.2271 544.4324)\\\" x=\\\"0 8.3301 13.8916 19.4531\\\">made</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 443.2418 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 445.898 544.4324)\\\" x=\\\"0 2.7783 8.3399\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 459.7994 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 462.8557 544.4324)\\\" x=\\\"0 5.5615 7.8418 12.8418 17.8418 20.1221 25.6836 30.6836 36.2451 39.5752 45.1367\\\">disclosures</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.9924 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 516.0486 544.4324)\\\" x=\\\"0 5.6115\\\">at</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 524.4885 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 527.5447 544.4324)\\\" x=\\\"0 5.6115\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 533.1141)\\\" x=\\\"0 5.5615 11.123 13.9014 19.4629 22.793\\\">before</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 69.0545 533.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 72.1107 533.1141)\\\" x=\\\"0 2.7783 8.3398\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 86.0121 533.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 89.0684 533.1141)\\\" x=\\\"0 5 10.5615 16.123 21.123 26.6846 35.0146 43.3447 48.9062 51.6846 53.9648 59.5264\\\">consummation</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 154.1562 533.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 157.2125 533.1141)\\\" x=\\\"0 5.6115\\\">of</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 165.6523 533.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 168.7086 533.1141)\\\" x=\\\"0 2.7783 8.3398\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 182.61 533.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 185.6662 533.1141)\\\" x=\\\"0 6.6699 12.2314 15.5615 21.123 26.6846 35.0146 40.5762 46.1377 48.916\\\">Agreement.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 519.7957)\\\" x=\\\"0 6.67 8.95 11.23 13.89 19.45 22.23 27.79 33.35 36.68 39.34 42.12 47.68 53.24 58.24 60.9 68.12 73.68 75.96 80.96 86.52 89.18 97.51 103.07 108.07 110.73 116.29 121.85 124.51 129.51 135.07 140.63 143.96 149.52 155.08 160.64 163.42 166.08 168.36 173.92 178.92 181.2 186.76 192.32 197.88 200.54 203.32 208.88 214.44 219.44 222.1 224.88 230.44 233.77\\\">All other fees which may be charged, include fees for:</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 22.7 506.4773)\\\" x=\\\"0 3.33 8.89\\\">(1)</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 506.4773)\\\" x=\\\"0 3.33 8.89 12.22 14.88 22.1 27.66 30.44 36 39.33 44.89 50.45 56.01 58.67 65.34 70.9 75.9 84.23 89.79 95.35 98.13 103.13 105.79 111.35 114.68 117.34 124.56 130.12 135.68 140.68 146.24 149.02 151.8 154.08 159.08 161.36 166.92 172.48 175.26 177.92 184.03 189.59 195.15 200.71 205.71 208.37 214.48 220.04 225.6 228.38 231.04 236.6 239.26 244.82 250.38 253.16 258.72\\\">(1) Returned Payments or Nonsufficient Funds Fee: $ 20.00</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:8.25pt\\\" transform=\\\"matrix(1 0 0 -1 22.7 495.159)\\\" x=\\\"0 3.663 9.779\\\">(2)</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 495.159)\\\" x=\\\"0 3.33 8.89 12.22 14.88 22.1 27.66 29.94 35.5 40.5 43.28 48.84 51.62 57.18 65.51 71.07 76.63 79.41 82.07 88.18 93.74 99.3 104.3 107.08 109.74 116.96 122.52 128.08 133.64 136.3 139.63 145.19 147.97 153.53 159.09 162.42 165.08 167.86 173.42 178.98 184.54 187.2 192.76 195.04 200.04 205.04 210.6 216.16 218.82 224.38 229.94 235.5 238.16 241.49 247.05 252.61 258.17 260.45 262.73 267.73 273.29 276.62 281.62 284.28 289.28 294.84 300.4 303.73 309.29 314.85 319.85 322.51 328.07 330.35 332.63 338.19 345.41 350.97 356.53 359.19 364.75 369.75 372.41 374.69 380.25 387.47\\\">(2) Reinstatement Fees: None (other than pickup and redelivery charges allowed by law)</text></g><clipPath id=\\\"clip1-2\\\"><path d=\\\"M 35 448 L 574 448 L 574 488 L 35 488 L 35 448 z \\\"/></clipPath><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 35.3 487.0594 L 573.1 487.0594 L 573.1 448.1043 L 35.3 448.1043 L 35.3 487.0594 z \\\"/><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 40.7 484.0594 L 567.7 484.0594 L 567.7 450.1043 L 40.7 450.1043 L 40.7 484.0594 z \\\"/><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 40.7 484.0594 L 52.7 484.0594 L 52.7 472.0594 L 40.7 472.0594 L 40.7 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 474.8406)\\\" x=\\\"0 6.67\\\">By</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 52.3699 484.0594 L 55.3699 484.0594 L 55.3699 472.0594 L 52.3699 472.0594 L 52.3699 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 52.3699 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 55.339 484.0594 L 90.339 484.0594 L 90.339 472.0594 L 55.339 472.0594 L 55.339 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 55.339 474.8406)\\\" x=\\\"0 5 7.28 12.84 18.4 20.68 26.24 31.8\\\">signing,</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 89.924 484.0594 L 92.924 484.0594 L 92.924 472.0594 L 89.924 472.0594 L 89.924 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 89.924 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 92.8931 484.0594 L 109.8931 484.0594 L 109.8931 472.0594 L 92.8931 472.0594 L 92.8931 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 92.8931 474.8406)\\\" x=\\\"0 5 10.56\\\">you</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 109.0162 484.0594 L 112.0162 484.0594 L 112.0162 472.0594 L 109.0162 472.0594 L 109.0162 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 109.0162 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 111.9853 484.0594 L 137.9853 484.0594 L 137.9853 472.0594 L 111.9853 472.0594 L 111.9853 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 111.9853 474.8406)\\\" x=\\\"0 5.56 11.12 14.45 20.01\\\">agree</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 137.5614 484.0594 L 140.5614 484.0594 L 140.5614 472.0594 L 137.5614 472.0594 L 137.5614 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 137.5615 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 140.5306 484.0594 L 157.5306 484.0594 L 157.5306 472.0594 L 140.5306 472.0594 L 140.5306 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 140.5306 474.8406)\\\" x=\\\"0 2.78 8.34 13.9\\\">that</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 157.2103 484.0594 L 160.2103 484.0594 L 160.2103 472.0594 L 157.2103 472.0594 L 157.2103 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 157.2103 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 160.1794 484.0594 L 177.1794 484.0594 L 177.1794 472.0594 L 160.1794 472.0594 L 160.1794 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 160.1794 474.8406)\\\" x=\\\"0 5 10.56\\\">you</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 176.3024 484.0594 L 179.3024 484.0594 L 179.3024 472.0594 L 176.3024 472.0594 L 176.3024 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 176.3024 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 179.2715 484.0594 L 217.2715 484.0594 L 217.2715 472.0594 L 179.2715 472.0594 L 179.2715 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 179.2715 474.8406)\\\" x=\\\"0 3.33 8.89 13.89 19.45 21.73 26.73 32.29\\\">received</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 217.128 484.0594 L 220.128 484.0594 L 220.128 472.0594 L 217.128 472.0594 L 217.128 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 217.128 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 220.0971 484.0594 L 226.0971 484.0594 L 226.0971 472.0594 L 220.0971 472.0594 L 220.0971 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 220.0971 474.8406)\\\" x=\\\"0\\\">a</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 225.6586 484.0594 L 228.6586 484.0594 L 228.6586 472.0594 L 225.6586 472.0594 L 225.6586 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.6586 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 228.6277 484.0594 L 258.6277 484.0594 L 258.6277 472.0594 L 228.6277 472.0594 L 228.6277 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 228.6277 474.8406)\\\" x=\\\"0 2.28 7.84 13.4 15.68 21.24 23.52\\\">legible</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 257.7147 484.0594 L 260.7147 484.0594 L 260.7147 472.0594 L 257.7147 472.0594 L 257.7147 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.7147 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 260.6838 484.0594 L 282.6838 484.0594 L 282.6838 472.0594 L 260.6838 472.0594 L 260.6838 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 260.6838 474.8406)\\\" x=\\\"0 5 10.56 16.12\\\">copy</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 281.8068 484.0594 L 284.8068 484.0594 L 284.8068 472.0594 L 281.8068 472.0594 L 281.8068 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.8068 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 284.7759 484.0594 L 293.7759 484.0594 L 293.7759 472.0594 L 284.7759 472.0594 L 284.7759 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 284.7759 474.8406)\\\" x=\\\"0 5.56\\\">of</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 293.1158 484.0594 L 296.1158 484.0594 L 296.1158 472.0594 L 293.1158 472.0594 L 293.1158 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 293.1158 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 296.0849 484.0594 L 312.0849 484.0594 L 312.0849 472.0594 L 296.0849 472.0594 L 296.0849 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 296.0849 474.8406)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 311.705 484.0594 L 314.705 484.0594 L 314.705 472.0594 L 311.705 472.0594 L 311.705 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 311.705 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 314.6742 484.0594 L 366.6742 484.0594 L 366.6742 472.0594 L 314.6742 472.0594 L 314.6742 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 314.6741 474.8406)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement.</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 366.3685 484.0594 L 369.3685 484.0594 L 369.3685 472.0594 L 366.3685 472.0594 L 366.3685 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 366.3685 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 369.3376 484.0594 L 387.3376 484.0594 L 387.3376 472.0594 L 369.3376 472.0594 L 369.3376 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 369.3376 474.8406)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 387.1306 484.0594 L 390.1306 484.0594 L 390.1306 472.0594 L 387.1306 472.0594 L 387.1306 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 387.1306 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 390.0997 484.0594 L 416.0997 484.0594 L 416.0997 472.0594 L 390.0997 472.0594 L 390.0997 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 390.0997 474.8406)\\\" x=\\\"0 5.56 11.12 14.45 20.01\\\">agree</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 415.6759 484.0594 L 418.6759 484.0594 L 418.6759 472.0594 L 415.6759 472.0594 L 415.6759 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 415.6759 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 418.645 484.0594 L 427.645 484.0594 L 427.645 472.0594 L 418.645 472.0594 L 418.645 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 418.645 474.8406)\\\" x=\\\"0 2.78\\\">to</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 426.9848 484.0594 L 429.9848 484.0594 L 429.9848 472.0594 L 426.9848 472.0594 L 426.9848 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 426.9848 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 429.9539 484.0594 L 443.9539 484.0594 L 443.9539 472.0594 L 429.9539 472.0594 L 429.9539 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 429.9539 474.8406)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 443.8553 484.0594 L 446.8553 484.0594 L 446.8553 472.0594 L 443.8553 472.0594 L 443.8553 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 443.8553 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 446.8244 484.0594 L 471.8244 484.0594 L 471.8244 472.0594 L 446.8244 472.0594 L 446.8244 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 446.8244 474.8406)\\\" x=\\\"0 2.78 8.34 11.67 20\\\">terms</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 471.8244 484.0594 L 474.8244 484.0594 L 474.8244 472.0594 L 471.8244 472.0594 L 471.8244 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 471.8244 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 474.7935 484.0594 L 483.7935 484.0594 L 483.7935 472.0594 L 474.7935 472.0594 L 474.7935 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 474.7935 474.8406)\\\" x=\\\"0 5.56\\\">of</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 483.1334 484.0594 L 486.1334 484.0594 L 486.1334 472.0594 L 483.1334 472.0594 L 483.1334 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 483.1334 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 486.1025 484.0594 L 502.1025 484.0594 L 502.1025 472.0594 L 486.1025 472.0594 L 486.1025 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 486.1025 474.8406)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 501.7226 484.0594 L 504.7226 484.0594 L 504.7226 472.0594 L 501.7226 472.0594 L 501.7226 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.7226 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 504.6917 484.0594 L 553.6918 484.0594 L 553.6918 472.0594 L 504.6917 472.0594 L 504.6917 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 504.6917 474.8406)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 553.6078 484.0594 L 556.6078 484.0594 L 556.6078 472.0594 L 553.6078 472.0594 L 553.6078 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.6078 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 556.5769 484.0594 L 568.5769 484.0594 L 568.5769 472.0594 L 556.5769 472.0594 L 556.5769 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 556.5769 474.8406)\\\" x=\\\"0 5.56\\\">on</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 567.7 484.0594 L 570.7 484.0594 L 570.7 472.0594 L 567.7 472.0594 L 567.7 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 40.7 472.741 L 51.7 472.741 L 51.7 460.741 L 40.7 460.741 L 40.7 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 463.5223)\\\" x=\\\"0 5.56 7.84\\\">all</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 50.8221 472.741 L 54.8221 472.741 L 54.8221 460.741 L 50.8221 460.741 L 50.8221 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 50.8221 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 54.1471 472.741 L 60.1471 472.741 L 60.1471 460.741 L 54.1471 460.741 L 54.1471 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 54.1471 463.5223)\\\" x=\\\"0\\\">6</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 59.7087 472.741 L 63.7087 472.741 L 63.7087 460.741 L 59.7087 460.741 L 59.7087 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 59.7087 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 63.0337 472.741 L 94.0337 472.741 L 94.0337 460.741 L 63.0337 460.741 L 63.0337 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 63.0337 463.5223)\\\" x=\\\"0 5.56 11.12 16.68 22.24 27.24\\\">pages,</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 93.0582 472.741 L 97.0582 472.741 L 97.0582 460.741 L 93.0582 460.741 L 93.0582 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 93.0582 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 96.3832 472.741 L 136.3832 472.741 L 136.3832 460.741 L 96.3832 460.741 L 96.3832 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 96.3832 463.5223)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24 28.52 34.08\\\">including</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 136.0317 472.741 L 140.0317 472.741 L 140.0317 460.741 L 136.0317 460.741 L 136.0317 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.0317 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 139.3568 472.741 L 153.3568 472.741 L 153.3568 460.741 L 139.3568 460.741 L 139.3568 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 139.3568 463.5223)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 153.2581 472.741 L 157.2581 472.741 L 157.2581 460.741 L 153.2581 460.741 L 153.2581 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 153.2581 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 156.5832 472.741 L 203.5832 472.741 L 203.5832 460.741 L 156.5832 460.741 L 156.5832 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 156.5832 463.5223)\\\" x=\\\"0 3.55 10.77 16.33 21.33 24.11 29.67 38 43.56\\\">&quot;Customer</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 203.4777 472.741 L 207.4777 472.741 L 207.4777 460.741 L 203.4777 460.741 L 203.4777 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 203.4777 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 206.8028 472.741 L 265.8028 472.741 L 265.8028 460.741 L 206.8028 460.741 L 206.8028 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 206.8028 463.5223)\\\" x=\\\"0 6.67 12.23 15.01 20.57 26.13 29.46 31.74 36.74 42.3 45.08 47.36 52.92\\\">Authorization</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 265.2891 472.741 L 269.2891 472.741 L 269.2891 460.741 L 265.2891 460.741 L 265.2891 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 265.2891 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 268.6142 472.741 L 280.6142 472.741 L 280.6142 460.741 L 268.6142 460.741 L 268.6142 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 268.6142 463.5223)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 280.2841 472.741 L 284.2841 472.741 L 284.2841 460.741 L 280.2841 460.741 L 280.2841 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.2841 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 283.6092 472.741 L 328.6092 472.741 L 328.6092 460.741 L 283.6092 460.741 L 283.6092 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 283.6092 463.5223)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46\\\">Payments</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 328.0721 472.741 L 332.0721 472.741 L 332.0721 460.741 L 328.0721 460.741 L 328.0721 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 328.0721 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 331.3972 472.741 L 344.3972 472.741 L 344.3972 460.741 L 331.3972 460.741 L 331.3972 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 331.3972 463.5223)\\\" x=\\\"0 5 7.28\\\">via</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 344.239 472.741 L 348.239 472.741 L 348.239 460.741 L 344.239 460.741 L 344.239 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 344.239 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 347.564 472.741 L 375.564 472.741 L 375.564 460.741 L 347.564 460.741 L 347.564 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 347.564 463.5223)\\\" x=\\\"0 6.67 13.89 21.11 23.89\\\">ACH,&quot;</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 375.0055 472.741 L 379.0055 472.741 L 379.0055 460.741 L 375.0055 460.741 L 375.0055 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.0054 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 378.3305 472.741 L 392.3305 472.741 L 392.3305 460.741 L 378.3305 460.741 L 378.3305 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 378.3305 463.5223)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 392.2319 472.741 L 396.2319 472.741 L 396.2319 460.741 L 392.2319 460.741 L 392.2319 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 392.2319 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 395.557 472.741 L 445.557 472.741 L 445.557 460.741 L 395.557 460.741 L 395.557 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 395.557 463.5223)\\\" x=\\\"0 3.55 10.22 13.55 19.11 21.39 24.17 27.5 33.06 35.84 38.12 43.68\\\">&quot;Arbitration</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 444.8001 472.741 L 448.8001 472.741 L 448.8001 460.741 L 444.8001 460.741 L 444.8001 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 444.8001 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 448.1252 472.741 L 480.1252 472.741 L 480.1252 460.741 L 448.1252 460.741 L 448.1252 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 448.1252 463.5223)\\\" x=\\\"0 7.22 9.5 15.06 20.62 25.62\\\">Clause</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 479.3117 472.741 L 483.3117 472.741 L 483.3117 460.741 L 479.3117 460.741 L 479.3117 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 479.3117 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 482.6368 472.741 L 499.6368 472.741 L 499.6368 460.741 L 482.6368 460.741 L 482.6368 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 482.6368 463.5223)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 499.3214 472.741 L 503.3214 472.741 L 503.3214 460.741 L 499.3214 460.741 L 499.3214 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.3214 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 502.6465 472.741 L 534.6465 472.741 L 534.6465 460.741 L 502.6465 460.741 L 502.6465 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 502.6465 463.5223)\\\" x=\\\"0 9.44 15 17.28 22.28 27.84\\\">Waiver</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 533.8184 472.741 L 537.8184 472.741 L 537.8184 460.741 L 533.8184 460.741 L 533.8184 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 533.8183 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 537.1434 472.741 L 546.1434 472.741 L 546.1434 460.741 L 537.1434 460.741 L 537.1434 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 537.1434 463.5223)\\\" x=\\\"0 5.56\\\">of</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 545.4833 472.741 L 549.4833 472.741 L 549.4833 460.741 L 545.4833 460.741 L 545.4833 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 545.4833 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 548.8083 472.741 L 567.8083 472.741 L 567.8083 460.741 L 548.8083 460.741 L 548.8083 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 548.8083 463.5223)\\\" x=\\\"0 5 10.56 13.89\\\">Jury</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 567.7 472.741 L 570.7 472.741 L 570.7 460.741 L 567.7 460.741 L 567.7 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 40.7 461.4227 L 187.7 461.4227 L 187.7 449.4227 L 40.7 449.4227 L 40.7 461.4227 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 452.2039)\\\" x=\\\"0 6.11 9.44 11.72 17.28 19.56 22.34 25.89 28.55 34.11 39.67 45.23 47.89 50.67 56.23 61.79 64.45 70.01 72.79 78.35 83.91 87.24 89.9 92.68 98.24 101.57 109.9 114.9 117.56 123.12 128.68 130.96 136.52 143.74\\\">Trial,&quot; and the other terms below.</text></g><clipPath id=\\\"clip1-3\\\"><path d=\\\"M 35 404 L 574 404 L 574 449 L 35 449 L 35 404 z \\\"/></clipPath><g clip-path=\\\"url(#clip1-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 435.7132)\\\" x=\\\"0 7.22 12.78 17.78 20.56 26.12 34.45 40.01 43.34 46 52.67 54.95 60.51 66.07 71.63 74.41 79.97 83.3 88.86\\\">Customer Signature:</text></g><clipPath id=\\\"clip1-4\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip1-4)\\\" fill=\\\"#fff\\\" stroke=\\\"none\\\" d=\\\"M 409.8 425.0359 L 439.8433 425.0359 L 439.8433 417.0244 L 409.8 417.0244 L 409.8 425.0359 z \\\"/><clipPath id=\\\"clip1-5\\\"><path d=\\\"M 409 417 L 440 417 L 440 426 L 409 426 L 409 417 z \\\"/></clipPath><path clip-path=\\\"url(#clip1-5)\\\" fill=\\\"#fff\\\" stroke=\\\"none\\\" d=\\\"M 409.8 425.0359 L 439.55 425.0359 L 439.55 423.9041 L 409.8 423.9041 L 409.8 425.0359 z \\\"/><path clip-path=\\\"url(#clip1-5)\\\" fill=\\\"#fff\\\" stroke=\\\"none\\\" d=\\\"M 409.8 425.0359 L 416.8 425.0359 L 416.8 423.0359 L 409.8 423.0359 L 409.8 425.0359 z \\\"/><g clip-path=\\\"url(#clip1-5)\\\"><text stroke=\\\"none\\\" fill=\\\"#fff\\\" style=\\\"font-family:f1-2; font-size:0.75pt\\\" transform=\\\"matrix(1 0 0 -1 409.8 424.1141)\\\" x=\\\"0 0.722 1.5 2.222 2.944 3.496 4.163 4.996 5.663 5.941\\\">DOCU_EMAIL</text></g><clipPath id=\\\"clip1-6\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip1-6)\\\" fill=\\\"#fff\\\" stroke=\\\"none\\\" d=\\\"M 164.15 417.4676 L 192.2025 417.4676 L 192.2025 406.447 L 164.15 406.447 L 164.15 417.4676 z \\\"/><clipPath id=\\\"clip1-7\\\"><path d=\\\"M 164 407 L 192 407 L 192 418 L 164 418 L 164 407 z \\\"/></clipPath><g clip-path=\\\"url(#clip1-7)\\\"><text stroke=\\\"none\\\" fill=\\\"#fff\\\" style=\\\"font-family:f1-2; font-size:0.75pt\\\" transform=\\\"matrix(1 0 0 -1 164.15 416.5457)\\\" x=\\\"0 0.722 1.5 2.222 2.944 3.496 4.163 4.441 5.219\\\">DOCU_SIGN</text></g><clipPath id=\\\"clip1-8\\\"><path d=\\\"M 35 343 L 389 343 L 389 405 L 35 405 L 35 343 z \\\"/></clipPath><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 392.5858)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 57.9314 392.5858)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 62.5791 392.5858)\\\" x=\\\"0 5.56 11.12 16.68 21.68\\\">Lease</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 89.8252 392.5858)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 94.4728 392.5858)\\\" x=\\\"0 7.22 12.78 21.11 26.67 32.23 37.79 42.79 44.7\\\">Company&apos;s</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 144.1798 392.5858)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.8275 392.5858)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 28.35 30.63 35.63 41.19\\\">authorized</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 195.5853 392.5858)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 200.2329 392.5858)\\\" x=\\\"0 5 7.28 12.84 18.4 23.96 26.74 32.3 35.63\\\">signature</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 241.4292 392.5858)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 246.0768 392.5858)\\\" x=\\\"0 2.28 7.84 13.4 15.68 20.68 26.24 29.02 34.58\\\">indicates</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 285.6618 392.5858)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 290.3094 392.5858)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 304.2108 392.5858)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 308.8584 392.5858)\\\" x=\\\"0 5.56 11.12 16.68 21.68\\\">Lease</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 336.1045 392.5858)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 340.7521 392.5858)\\\" x=\\\"0 7.22 12.78 21.11 26.67 32.23 37.79\\\">Company</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.55 392.5858)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 381.2675)\\\" x=\\\"0 5.56 11.12\\\">has</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 56.823 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 59.5613 381.2675)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.68 29.46 35.02\\\">accepted</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 100.1472 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 102.8854 381.2675)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 116.7868 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 119.525 381.2675)\\\" x=\\\"0 2.78 8.34 11.67 20 25\\\">terms,</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 147.3033 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 150.0416 381.2675)\\\" x=\\\"0 5 10.56 16.12 21.68 23.96 26.74 29.02 34.58 40.14\\\">conditions</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 195.1881 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 197.9263 381.2675)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 214.6109 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 217.3491 381.2675)\\\" x=\\\"0 5.56 11.12 13.4 15.68 21.24 26.8 29.58 31.86 37.42 42.98\\\">obligations</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 265.3374 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 268.0756 381.2675)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.4154 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 279.1537 381.2675)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 293.055 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 295.7933 381.2675)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 344.7093 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 347.4475 381.2675)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 364.1321 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 366.8703 381.2675)\\\" x=\\\"0 2.78 8.34 13.9\\\">that</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.55 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 369.9491)\\\" x=\\\"0 2.78 8.34 13.9 16.56 22.12 27.68 33.24 38.24 43.8 46.46 53.68 59.24 67.57 73.13 78.69 84.25 89.25 91.91 97.47 103.03 106.36 111.92 117.48 122.48 125.14 127.92 133.48 136.14 138.92 144.48 146.76 151.76 154.42 161.09 166.65 169.98 175.54 181.1 189.43 194.99 200.55 203.33\\\">the Lease Company agrees to this Agreement.</text></g><clipPath id=\\\"clip1-10\\\"><path d=\\\"M 388 343 L 574 343 L 574 405 L 388 405 L 388 343 z \\\"/></clipPath><g clip-path=\\\"url(#clip1-10)\\\"><g transform=\\\"matrix(0.75 0 0 -0.7619 416.525 401.8046)\\\"><image xlink:href=\\\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAKwAAAAqCAYAAAAu2LAdAAAO/ElEQVR42u1cCXRVxRl+eYGELOSFkEAgaAQjEJICCoEWkM0QEFJJaBISkCwkhCSyGJVFtBAW2VRcKqsIVcCCC63Fc6BwtGrbA21FbN1btdUerFuPtHgqSoV+X/gnjuO7yX3Jw7yH9z9nztx379y5y3zzzb/d53I54ogjLZZst9s9x3kNjgSFREREzEWV67wJR4JBQlHuRIl0XoUjrSmXoiTbaHcFSpnzuhxpVWnbtu3D0dHRaTaaUh3o4bwxR1pTJkEvXWuj3UUej2eB87ocaW05EBYW1seOsQUm7u+8rgtHKisrLy0vL8+vqKi4FiU1GO650O1277LRLg7lVmeILwwBSAcBoL9DOWuUR6dNmxYVqPfdBnrrW2DXdIvjRXFxcZXcQJtrUV1up9O0tLQwnoIS4kCjdYXgAwiLUUarfTNmzMjE788FoJ+i7AeAH0P9Mfdh+2cB+TDp6el1CQkJB62Ox8bG7qXeitIBZYlxOEo8C4PCw8PHUg8mwAFs+menYF8V6gmRkZHlUCNKsT0Rpb0DofO+xHcB6K4jSAHMnqjfEWDu5vH8/PwwbL8rwFyN9g3uyaqqqk7Y/wGP4dy0QHieRSjh3Ni2bVtCUlLScWwmacd5813at2/fm+BDOQq9dRjqhxITEx9BvQHlZoBwJupNoaGhR1DWY/vHqEvatGkzEtu91DUUi6N9F9RjAeaVJGAHVn4BZiTAF2ruB9jGCEBfQDmAcgbg+xXqMjk+Wo7v5++ampro6dOnZ+H3CgD4N6i/kOO3tPYzDmjXrt0yWaZjMjIydgNIxwgklKkAXAXqsqioKAJ1DMD3InRburDqUN6A6rCCxwHmnrLc14ORrIl+6eYahP6uRj/FAOZS9FPi5R5uwPFAjJCFBQNIZ8+eHQ5QzQeY3hJQnQQY19TV1bkNFeA0ypey3I80AF0s576Evo5IW12H/R/KUZTKb/v5PMJ2ozwez0DUO2k0gTEnA3Q3Yfs5gDILSzfbdHSdi2ApuQwg/Az1Wpz7ZkxMzFgfrz2I707XLqAL30DAGtcJFFmIcjsm3IBAuSEsz0llZWUJ6vfUqVNjAKLnvRhJLLcZBtURWdZ/7sXYGmecS0Y9TPUA9XheRxllYPG25/s5k8FsU8BwXPpvh+64DixJVl0A0O1CoaUfjn08XmvVSUhIyFPoY1XHjh3ngxHvb4HxlAg9uFhUiasDlbk2b97MgemLsgITeExzlmfqjn604LeIjpnjhTkfBRAzsIy3R50rxtMp6p8ai64VMD5o9i3APyX9l+g6LKW0tDQWx+p4LVzjB35/2QBlBl80gPoU6r3CYte4zkWj6pc6glgBBiySA8DudFlEq8C6Y1JSUl7D5hVoR52z0Mdb4gwd7DoXvqUelBmgrNrYytSonD17lhM4BAM+lLogWYqWNXVKLsEA0mw7F0Lb7ig7aAThnGxt/05hyFyjfZEBYOqrrws4qzXAT5B9hy0mxJ1y/A1cYy77RZknnoJTcu1/A8zD/PFCqa+wo/VgwmdQ7wfIlgO4Aw1jR0kEWGOTsGQqmJPLh6V+Eh8ffwxqwAow64+EhVOauJ9oUT2mAeDbUd+LQv21exDbNCGY2F1R853+UPRxgnCmrBil/fr1WyN6Yr3ehwF+kjqmDPiZ4uLijnqHWN4vQpsaspoXA4nlmFrJFMOiTDJvDH3051KvgKWVvRrje+TevjAZVHkKOMEs1Asy9m6Ubs1+ewBcijDVEmzzxugnu566po3T86CPVsrLqKY6gN+XWLTNxUA9j1IDnZPW/GJzIMWVNZneAkyUu1EvhaoxC/Uc9F0LNYLuqyJMoBkyMcj2yYGOUNHXhuO5aWiyFOI98N5HofSB7n+xvO/+9JwUFBT8lgOcnZ39Khg3RQPhc/pyTtcSltZe4qgnIE4QUDwm1jn3/UvOyZc+7pH9eQbDjtSASkD+QQP3x7rqJl4C9nmV1TPj3oZQ/0XZJtcsNydaswTAYPz+VrDjRDGQmlyyAMpVZFece5c8SAmYs9KKXXGOG/3vA+h2CyjHgVmmfc3xGhWViML+bkQZgZKg36aXbslSYwQAt4C1rzHO0dWIxQCLN/3xYllVzpvgHY2T91WO0tuLzt4DhmqJTFQ+w3AsyYcEKEUKmHiHvQGQ9QKUv6B+X9rsEBD9Un4vknPGStubuQRj+zWqFWIANQBYA+FB1R90zUTpI02xI9qna23vkv3LgmFJy8IA0A11GZiOg9BHIlXVEghQMgEg2kuAgzWG4vfLKNkCznkuH7KywPxbcI3ejS2z0dHRZKtb0HaOTIpzPqWwsDRxdz2gt8e912A/DbYqBdpevXpxEtwBAMVbTTwu3bjGpTZv/QaZUOHGSvKVP3DAANNaDgEQ7hNA/FUBc+XKlU97WWI/JIiFUftRXeC+2traCM1ip6tpodrG/sWiRxYYgD0sbTiWIWDqwcKkx6V9jcaeudL22YBHK/2gnKkYtNuphwF8ZES6bGYZzLKOYyys/TgYeGu91eHxcLD3iHFhR/qLv7aBMcXapuE1HcCrxm9OhETVHvdE11ol3Wqw0qlnJWH7Xq2PvmD7VfVKu9u9WgPUcICYk2Mbtod6uRdeaw3UlPvwfEsxcbkSxKmDBIpyuAP0E2UyKJCOktWjs9WD0nJWIUwTmDt27Lhfokj1vk1vVjatfGk/B6C6WoBWCMZsJ1Gpt8nA0maysYTfarijWP9dDCdub2t4CdXVHbB/BsCfEuh4ZYL1zKSkpO+jPiDGQhcM8gxZXhuMJQzmywDTJuiduQJcBagROLbR7gXBzrXQ93jddjBKuHTy93iyKI4xktYD4KGhWIjJ0EE7NV38w0OhDixHnaEduxxG5aNy/+y7gyzHKr0xEfdO9WQpni2HIWEA+2Zpr4T9laampm7Jy8t7BQD6VAb2NADyNu6Jy+Uino/7Wigekc6GFT+ewFJuI7BavLDkcStgKiakte4FsKmif75LPVf3BkjGFO/vzwrI+rn0DNC400D7Almb9yTqQPDlbghz9QV7PChL/BCAoZvudx02bFgHAJKz8RcYLDLfQyh6RIQx/052rgcWDgVYqH6koV4swGxKuuG6ZPNwtL8SQOO9EpzxADhdYrMAxuuo1wL4P5GVgc9FfTHCWE3SUWhN5xoTUgFknjbAZ2Ctf1JSUvJPgm306NHscwuuwcnZ1nAL/clgUILzHhpnKBc3BkxGnwRwayzcWTukz8eN80OM4ECRhYHYRfe7BrN0BQBukijTeC13lWBVuY70zTICUgzQLkJ7Jm73bO4FMdhkscO41nRxcdlyG+HanCCPCcu5AeB9wp7jxPBxaffbrHQ3sE8PCTUSFNtRGrwVdXV1bageyM+JVCOo02MCVgiDcuM/koL3sgaiDRqwV8u+tYafsyk/aIpMgDMC7EzDE6CMqCmuC1y4hNzm+npYNF4iWw32EYMNMlgnUFr0UshwAN2SZp7OZf9VcdbTjZbnz5fBARdAvGKjeftOnTpVgYE/l2V+K6NJWl/5KkZPj4CAa7wA64jBgA1+UL0Pg2W3asAcbjB0Ifq4Qs8RuBAlDCyxTqJL4QaIcy0CEANbckExympFv2yuxGn3e+PIkSPb+BGwVwkoXvfmQPcCoklsD/32fU58qFXleuRLc7ZT31VhTjL4aTPpWbPo68Q7UK7rulQraDCh7GFQwfUdlCLor+9BBzQjFNRRF52na3bHoJb6qzMwf5UPakWTIqHSN7UIzgeyzP8X5T2GIhk50gBZIYz8iEycXKwefHfl0dHRnXB8pvS1SwPmUdk3xgBsuRdPwkaXI7Lux8dni/7nsnC++11iY2Oph17pp+7IsqupWzbV0CoX1II1u6t4v0Uo8gQYro8AVvlF/2i4/wjGuszMzF1yfI/poMe5y009HcBfJ66qN3iO6Vd15NuXsZK07Q+hpyHL6qCdXNDGhBOBSzj1S8m676ZZ6du1Jb4+9GkmfvA8APsfEo59ICgd9N91gaXfXbwDLTHa6L1YJp/WeBVfckF9EZzbV/r4SNu3QTEvwLhALP7rJdRKcH84ePBg+ntXQwXrHEwOekfOyUzozT5Z91AlYlFlgp1vhG7IcOIltKYx6NMY5ZFUuwYnuC+5oD4CtkzA+Ynax09GVAK0WbD/b7Tepekg+TxohAOBIHSneTweGif5oiLQj9pH/uuA2/2xfywGmMkcjLhVJycn1xQUFDDUWEwdUsXDVQEgn1bZ7wIuW7mgFjpvvNKN6fhnVEiSnNXnIVsNY40qQzXaPYH610yEZhSKaok59/BcdS7fc4YdCRC3Gv2TQwHM8TKIhTExMVOysrJW5OTkbJ4wYQIzxWIEgPrHcgfFPXRAQo/KQHpYv4CdXFALJt0o/X+k5bCqifGk6SsF6yf4ZC2Gh8/GMzv/NxaMon9m3BhzGh/LnQRoBmrAHKISodFfbwGd7VxQU6iHcjlHu8/kwzwy84ON5Irmde3a1ad/Z4QuX+FPF58j35L4wpyarvi42Q/aP6RyRaVf27mgfpD8yMjI5gRVmPCe7aDgPAkNGOZQ0tDhpxsKCDZA+Y0sJi8GUpPMqZJEUH7q5Rrl+r+Q+JIL2lJhojoqpma28/HUENiTd9N74qDLjyIO8te9WMKnMPBLrXybTWUxae1sMaeWJPKSl3al0u4J+W07F9RPMhTA5SdAvn7bRPcW83jdDtL8w6qlmuHxjuiBtJifaSyEKIxnK4vJLnNqSSJn9a9GOWGw75C0u1MxdyvkgvZ2u913yPdpcXZPwjmzoM/Oc9DWQsHyfYnE0eu/9THDoOLb/EKylRqiTvKt+kk5b3NTWUy+MKf6WI7GkHx+vFBj6C8JStOoa4Vc0EymYrrOJYczFN22Ca8BWXavg7iWG0SrBAj7GlEXFkubQ9p5k2TfW96YzMxi8oU5VSye3gM68PXPjbGvKsBeIRn3OoB3Kbb5uTf/zdGbNyEVbZxQrR8A+6y3P2jQRdiULHtafY6sZzFZgNxbFpMt5lSfifDzaH5iTOOPLjH+VU8Av0pOWv5TDAMh9Z+4o+SEhobyz0oY9btDfNGOtFB/fVGAl9EEsH8v7YZoRto3spi0fudaZTE1xZwEqejGp/ghXpC+2u8BoEURERHzsV0r37F9J+X/Z2wKY979C/EAAAAASUVORK5CYII=\\\" width=\\\"172\\\" height=\\\"42\\\" id=\\\"img43-0-9\\\"/></g></g><g clip-path=\\\"url(#clip1-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 394.35 359.0858)\\\" x=\\\"0 6.67 12.23 17.79 23.35 26.01 33.23 39.34 47.12 49.78 55.34 60.9 68.12 70.78 77.45 82.45 85.23 87.89 96.22 101.78 104.56 107.34 110 116.67 120 125.56 132.78 138.34 140.62 146.18\\\">Snap RTO LLC By: Matt Browning</text></g><g clip-path=\\\"url(#clip1-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 394.35 347.7675)\\\" x=\\\"0 6.11 8.39 11.17 13.45 19.01 21.79 24.45 31.67 39.45\\\">Title: COO</text></g><clipPath id=\\\"clip1-11\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 770.2 L 573.6 770.2 L 573.6 769.2 L 34.8 769.2 L 34.8 770.2 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.6 769.2 L 573.6 769.2 L 573.6 487.5594 L 572.6 487.5594 L 572.6 769.2 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 769.2 L 35.8 769.2 L 35.8 487.5594 L 34.8 487.5594 L 34.8 769.2 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 487.5594 L 573.6 487.5594 L 573.6 486.5594 L 34.8 486.5594 L 34.8 487.5594 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.6 486.5594 L 573.6 486.5594 L 573.6 448.6043 L 572.6 448.6043 L 572.6 486.5594 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 486.5594 L 35.8 486.5594 L 35.8 448.6043 L 34.8 448.6043 L 34.8 486.5594 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 448.6043 L 573.6 448.6043 L 573.6 447.6043 L 34.8 447.6043 L 34.8 448.6043 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.6 447.6043 L 573.6 447.6043 L 573.6 405.3046 L 572.6 405.3046 L 572.6 447.6043 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 447.6043 L 35.8 447.6043 L 35.8 405.3046 L 34.8 405.3046 L 34.8 447.6043 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 405.3046 L 389.45 405.3046 L 389.45 404.3046 L 34.8 404.3046 L 34.8 405.3046 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 344.1679 L 389.45 344.1679 L 389.45 343.1679 L 34.8 343.1679 L 34.8 344.1679 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 404.3046 L 35.8 404.3046 L 35.8 344.1679 L 34.8 344.1679 L 34.8 404.3046 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 389.45 405.3046 L 573.6 405.3046 L 573.6 404.3046 L 389.45 404.3046 L 389.45 405.3046 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 389.45 344.1679 L 573.6 344.1679 L 573.6 343.1679 L 389.45 343.1679 L 389.45 344.1679 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.6 404.3046 L 573.6 404.3046 L 573.6 344.1679 L 572.6 344.1679 L 572.6 404.3046 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 388.45 404.3046 L 389.45 404.3046 L 389.45 344.1679 L 388.45 344.1679 L 388.45 404.3046 z \\\"/><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 331.4491)\\\" x=\\\"0 7.22 15 21.11 23.89 31.11\\\">NOTICE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 70.8783 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 73.8798 331.4491)\\\" x=\\\"0 6.11\\\">TO</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 87.7666 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 90.7681 331.4491)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 110.7681 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 113.7696 331.4491)\\\" x=\\\"0 7.22 15 22.22 28.89 36.11 44.44 51.11 58.33\\\">CONSUMER:</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 174.8829 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 177.8844 331.4491)\\\" x=\\\"0 6.67 14.45\\\">YOU</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 199.5543 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 202.5558 331.4491)\\\" x=\\\"0 7.22 13.89 20.56\\\">HAVE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 229.7873 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 232.7888 331.4491)\\\" x=\\\"0 7.22\\\">NO</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.7888 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 250.7903 331.4491)\\\" x=\\\"0 7.78 17.22 24.44 31.11 38.33 45 52.22 55\\\">OWNERSHIP</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.4603 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 315.4618 331.4491)\\\" x=\\\"0 7.22 10 17.78 25 31.11\\\">RIGHTS</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 353.2401 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 356.2416 331.4491)\\\" x=\\\"0 2.78\\\">IN</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 366.2416 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 369.2431 331.4491)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 389.2431 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 392.2447 331.4491)\\\" x=\\\"0 6.67 13.89 21.67 28.34 35.01 42.23 48.34\\\">PROPERTY</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.2544 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 450.256 331.4491)\\\" x=\\\"0 7.22 14.44 20 26.67 33.34\\\">UNLESS</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 490.2706 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 493.2721 331.4491)\\\" x=\\\"0 6.67 13.89\\\">AND</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 514.3854 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 517.3869 331.4491)\\\" x=\\\"0 7.22 14.44 20.55 23.33\\\">UNTIL</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 546.2785 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 549.2801 331.4491)\\\" x=\\\"0 6.67 14.45\\\">YOU</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 320.1308)\\\" x=\\\"0 6.67 12.23 18.9 26.12\\\">ELECT</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 65.3315 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 71.359 320.1308)\\\" x=\\\"0 6.11\\\">TO</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 85.2457 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 91.2732 320.1308)\\\" x=\\\"0 6.67 13.34 20.56 28.34 36.67\\\">BECOME</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 134.613 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 140.6406 320.1308)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.6406 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 166.6681 320.1308)\\\" x=\\\"0 7.78 17.22 24.44 31.11\\\">OWNER</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 204.9982 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 211.0257 320.1308)\\\" x=\\\"0 7.78\\\">OF</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 224.9124 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 230.9399 320.1308)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 250.9399 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 256.9675 320.1308)\\\" x=\\\"0 6.67 13.89 21.67 28.34 35.01 42.23 48.34\\\">PROPERTY</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 311.9772 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 318.0048 320.1308)\\\" x=\\\"0 6.67 12.78 18.89 25.56\\\">AFTER</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 350.7831 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 356.8106 320.1308)\\\" x=\\\"0 8.33 15 21.67 24.45 31.67\\\">MAKING</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 396.2588 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 402.2864 320.1308)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 422.2864 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 428.3139 320.1308)\\\" x=\\\"0 7.22 13.89 21.11 27.78 34.45 41.12 47.79 55.01\\\">NECESSARY</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.9984 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 496.026 320.1308)\\\" x=\\\"0 6.67 13.34 20.01 28.34 35.01 42.23 48.34\\\">PAYMENTS</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.0357 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0633 320.1308)\\\" x=\\\"0 6.11\\\">TO</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 308.8124)\\\" x=\\\"0 6.67 13.89 21.67 28.89 31.67 38.89\\\">ACQUIRE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 78.6615 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 82.9084 308.8124)\\\" x=\\\"0 7.78 17.22 24.44 31.11 38.33 45 52.22 55 61.67\\\">OWNERSHIP,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 147.3567 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 151.6035 308.8124)\\\" x=\\\"0 6.67 13.89\\\">AND</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 172.7168 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 176.9637 308.8124)\\\" x=\\\"0 6.67 14.45\\\">YOU</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 198.6336 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 202.8805 308.8124)\\\" x=\\\"0 7.22 13.89 20.56\\\">HAVE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 230.112 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 234.3589 308.8124)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 254.3589 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 258.6057 308.8124)\\\" x=\\\"0 5.56 12.23 20.01 26.68\\\">LEGAL</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.8469 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 295.0938 308.8124)\\\" x=\\\"0 6.67 13.89 20 27.22 35 42.22 45 51.11\\\">AUTHORITY</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 352.8722 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 357.119 308.8124)\\\" x=\\\"0 6.11\\\">TO</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.0058 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 375.2527 308.8124)\\\" x=\\\"0 6.67 13.89 21.11 27.78 34.45\\\">ACCEPT</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 415.8142 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 420.0611 308.8124)\\\" x=\\\"0 6.11 8.89 15 20.56\\\">TITLE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.2876 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 451.5345 308.8124)\\\" x=\\\"0 6.11\\\">TO</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 465.4212 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 469.6681 308.8124)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.6681 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 493.915 308.8124)\\\" x=\\\"0 6.67 13.89 21.67 28.34 35.01 42.23 48.34 55.01\\\">PROPERTY.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.7031 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 555.95 308.8124)\\\" x=\\\"0 7.22\\\">DO</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 297.494)\\\" x=\\\"0 7.22 15\\\">NOT</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 54.2084 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 57.2636 297.494)\\\" x=\\\"0 6.67 9.45 17.23\\\">SIGN</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 81.7118 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 84.767 297.494)\\\" x=\\\"0 6.11 13.33 16.11\\\">THIS</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 107.5453 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 110.6005 297.494)\\\" x=\\\"0 6.67 14.45 21.67 28.34 35.01 43.34 50.01 57.23\\\">AGREEMENT</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 173.9404 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 176.9956 297.494)\\\" x=\\\"0 6.67 13.34 19.45 27.23 34.45\\\">BEFORE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 218.1137 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 221.1689 297.494)\\\" x=\\\"0 6.67 14.45\\\">YOU</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 242.8389 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 245.8941 297.494)\\\" x=\\\"0 7.22 13.89 20.56\\\">READ</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 273.6773 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 276.7325 297.494)\\\" x=\\\"0 6.67 12.23\\\">ALL</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 294.5254 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 297.5806 297.494)\\\" x=\\\"0 6.67 13.34 21.12 27.79\\\">PAGES</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 332.0386 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 335.0938 297.494)\\\" x=\\\"0 7.78\\\">OF</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.9805 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 352.0357 297.494)\\\" x=\\\"0 2.78\\\">IT</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 360.9225 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 363.9777 297.494)\\\" x=\\\"0 7.78\\\">OR</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 378.9777 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 382.0329 297.494)\\\" x=\\\"0 2.78\\\">IF</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 390.9196 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 393.9748 297.494)\\\" x=\\\"0 2.78\\\">IT</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.8615 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 405.9167 297.494)\\\" x=\\\"0 7.22 15 22.22 28.33 35 37.78 45\\\">CONTAINS</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 457.5866 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 460.6418 297.494)\\\" x=\\\"0 6.67 13.89\\\">ANY</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 481.2033 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 484.2585 297.494)\\\" x=\\\"0 6.67 12.23 18.9 26.12\\\">BLANK</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 517.0515 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 520.1067 297.494)\\\" x=\\\"0 6.67 13.34 20.01 27.23\\\">SPACE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 554.0081 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0633 297.494)\\\" x=\\\"0 6.11\\\">TO</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 286.1757)\\\" x=\\\"0 6.67\\\">BE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 46.4398 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 49.3908 286.1757)\\\" x=\\\"0 6.11 8.89 14.45 20.01 26.68\\\">FILLED</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 83.2922 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 86.2431 286.1757)\\\" x=\\\"0 2.78 10\\\">IN.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 99.0214 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 101.9724 286.1757)\\\" x=\\\"0 6.67 14.45\\\">YOU</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 123.6423 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 126.5933 286.1757)\\\" x=\\\"0 6.67 13.89\\\">ARE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 147.1548 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 150.1057 286.1757)\\\" x=\\\"0 6.67 13.89 20 22.78 28.89 34.45 41.12\\\">ENTITLED</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 198.4456 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 201.3965 286.1757)\\\" x=\\\"0 6.11\\\">TO</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 215.2832 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 218.2342 286.1757)\\\" x=\\\"0\\\">A</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 224.9041 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 227.8551 286.1757)\\\" x=\\\"0 7.22 15 23.33 30 35.56 42.23 48.34 55.01 60.57\\\">COMPLETELY</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 295.0963 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 298.0472 286.1757)\\\" x=\\\"0 6.11 8.89 14.45 20.01 26.68 33.9 37.23 40.01\\\">FILLED-IN</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 345.2787 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 348.2296 286.1757)\\\" x=\\\"0 7.22 15 21.67\\\">COPY</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 376.5695 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 379.5204 286.1757)\\\" x=\\\"0 7.78\\\">OF</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.4071 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 396.3581 286.1757)\\\" x=\\\"0 6.11 13.33 16.11\\\">THIS</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.1364 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 422.0874 286.1757)\\\" x=\\\"0 6.67 14.45 21.67 28.34 35.01 43.34 50.01 57.23\\\">AGREEMENT</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 485.4272 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 488.3781 286.1757)\\\" x=\\\"0 9.44 16.66 23.33\\\">WHEN</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 518.9299 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 521.8809 286.1757)\\\" x=\\\"0 6.67 14.45\\\">YOU</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 543.5508 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 546.5017 286.1757)\\\" x=\\\"0 6.67 9.45 17.23\\\">SIGN</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 274.8573)\\\" x=\\\"0 2.78 8.89\\\">IT.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 261.539)\\\" x=\\\"0 6.11 12.78 20 28.33 31.11 38.33 45 51.11 53.89 61.67 68.89\\\">TERMINATION.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 104.765 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 108.0706 261.539)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 125.8636 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 129.1692 261.539)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 148.0608 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 151.3663 261.539)\\\" x=\\\"0 2.78 8.34 11.67 20 22.28 27.84 33.4 36.18\\\">terminate</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 193.1095 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 196.4151 261.539)\\\" x=\\\"0 3.33 8.89 14.45 20.01\\\">(end)</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 219.7598 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 223.0654 261.539)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.6855 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 241.9911 261.539)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.9071 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 294.2127 261.539)\\\" x=\\\"0 5.56\\\">at</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.5525 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 305.8581 261.539)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.7595 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 323.065 261.539)\\\" x=\\\"0 5.56 11.12\\\">end</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 339.7496 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 343.0552 261.539)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.395 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 354.7006 261.539)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 370.8236 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 374.1292 261.539)\\\" x=\\\"0 2.28 7.84 13.4 18.4\\\">lease</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 398.0941 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 401.3996 261.539)\\\" x=\\\"0 2.78 8.34 11.67\\\">term</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 421.3996 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 424.7052 261.539)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 435.2667 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 438.5723 261.539)\\\" x=\\\"0 5 10.56 13.34 15.62 20.62 23.4 28.4 30.68 36.24\\\">satisfying</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 480.3741 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 483.6796 261.539)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 497.581 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 500.8866 261.539)\\\" x=\\\"0 3.33 8.89 14.45 20.01 22.29 25.62 31.18 39.51 45.07 50.63 53.41\\\">requirements</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.3046 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 562.6101 261.539)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 250.2206)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 48.7201 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 51.7761 250.2206)\\\" x=\\\"0 5.56 11.12 14.45 20.01 25.57 28.9 34.46 40.02 45.58\\\">paragraph.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 100.1453 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 103.2013 250.2206)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 120.9943 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 124.0503 250.2206)\\\" x=\\\"0 8.33 13.89 18.89\\\">must</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 145.7202 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.7762 250.2206)\\\" x=\\\"0 5.56 8.89 14.45 22.78 28.34 31.12 33.4\\\">promptly</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 187.1795 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 190.2355 250.2206)\\\" x=\\\"0 3.33 8.89 11.67 17.23 20.56\\\">return</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 216.3586 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 219.4146 250.2206)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.3159 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 236.3719 250.2206)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 274.1649 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 277.2209 250.2206)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 285.5608 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 288.6168 250.2206)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.1783 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 302.2343 250.2206)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 310.0761 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 313.1321 250.2206)\\\" x=\\\"0 5.56 10.56 15.56 21.12 24.45 30.01 35.57 41.13 46.13\\\">accordance</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 364.8313 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 367.8874 250.2206)\\\" x=\\\"0 7.22 9.5 12.28\\\">with</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 385.7291 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 388.7852 250.2206)\\\" x=\\\"0 5.56 11.12\\\">our</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.2383 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 406.2943 250.2206)\\\" x=\\\"0 5.56 7.84 11.17 16.73 21.73 24.51 26.79 32.35 37.91\\\">directions</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 449.2093 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 452.2653 250.2206)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.9499 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 472.0059 250.2206)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 488.129 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 491.185 250.2206)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57 33.35\\\">amounts</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.5395 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 532.5955 250.2206)\\\" x=\\\"0 5.56 10.56 15.56 18.89 24.45 30.01 35.57\\\">accrued.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 238.9022)\\\" x=\\\"0 9.44\\\">We</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 48.1 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 51.2677 238.9022)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 70.1593 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 73.327 238.9022)\\\" x=\\\"0 2.78 8.34 11.67 20 22.28 27.84 33.4 36.18\\\">terminate</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 115.0702 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 118.2379 238.9022)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 133.858 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 137.0257 238.9022)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 185.9417 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 189.1094 238.9022)\\\" x=\\\"0 5.56\\\">at</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 197.4493 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 200.617 238.9022)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 216.74 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 219.9077 238.9022)\\\" x=\\\"0 2.78 5.06 13.39\\\">time</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.8579 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 242.0256 238.9022)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.0842 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 250.2519 238.9022)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 266.375 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 269.5427 238.9022)\\\" x=\\\"0 5.56 8.89\\\">are</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 283.9958 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 287.1635 238.9022)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 295.0053 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 298.173 238.9022)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 27.3\\\">default</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 328.256 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 331.4237 238.9022)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 339.7636 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 342.9313 238.9022)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 362.3844 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 365.5521 238.9022)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.9066 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.0743 238.9022)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 415.9659 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 419.1336 238.9022)\\\" x=\\\"0 5.56 8.34 13.9 19.46\\\">other</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 441.9266 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 445.0943 238.9022)\\\" x=\\\"0 5.56 11.12 13.4 15.68 21.24 26.8 29.58 31.86 37.42 42.98 47.98\\\">obligations.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 495.8609 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 499.0286 238.9022)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 516.8216 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 519.9893 238.9022)\\\" x=\\\"0 8.33 13.89 18.89\\\">must</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 541.6592 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 544.8269 238.9022)\\\" x=\\\"0 3.33 8.89 11.67 17.23 20.56\\\">return</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 227.5839)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.0014 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 50.6007 227.5839)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 88.3937 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 91.9931 227.5839)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 100.3329 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 103.9323 227.5839)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 117.8336 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 121.433 227.5839)\\\" x=\\\"0 5.56 7.84 13.4 18.4\\\">place</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 145.3978 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.9972 227.5839)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 161.7804 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 165.3797 227.5839)\\\" x=\\\"0 5.56 11.12 16.12 18.4 23.96 29.52 35.08 37.86 43.42\\\">designate.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 211.5858 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 215.1852 227.5839)\\\" x=\\\"0 7.22 12.78 18.34\\\">Upon</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 239.0914 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 242.6908 227.5839)\\\" x=\\\"0 2.78 8.34 11.67 20 22.28 27.84 33.4 36.18 38.46 44.02 49.58\\\">termination,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 295.0541 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 298.6534 227.5839)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 314.7765 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 318.3758 227.5839)\\\" x=\\\"0 5.56 11.12 14.45 20.01\\\">agree</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 343.952 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 347.5513 227.5839)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.8912 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 359.4905 227.5839)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.6136 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 379.2129 227.5839)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.1143 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 396.7137 227.5839)\\\" x=\\\"0 2.78 8.34 10.62 12.9 18.46 25.68 27.96 33.52\\\">following</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 435.8006 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 439.3999 227.5839)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01 30.57 35.57\\\">charges:</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 477.7544 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 481.3538 227.5839)\\\" x=\\\"0 6.67 12.23\\\">Any</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 498.5852 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 502.1846 227.5839)\\\" x=\\\"0 5.56 11.12 16.68 22.24 24.52\\\">unpaid</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 532.2725 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 535.8718 227.5839)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 216.2655)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46 44.46\\\">Payments,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 80.3412 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 83.8455 216.2655)\\\" x=\\\"0 2.78 8.34 13.9\\\">fees</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 102.7469 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 106.2512 216.2655)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 122.9358 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 126.4401 216.2655)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01 30.57 35.57\\\">charges,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 164.7946 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 168.299 216.2655)\\\" x=\\\"0 5.56 7.84 13.4\\\">plus</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 186.7023 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 190.2066 216.2655)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 206.3297 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 209.834 216.2655)\\\" x=\\\"0 5.56 8.34 11.12 13.4 18.4 20.68 26.24\\\">official</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.3545 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 241.8588 216.2655)\\\" x=\\\"0 2.78 8.34 13.9\\\">fees</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 260.7602 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 264.2645 216.2655)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.9491 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 284.4534 216.2655)\\\" x=\\\"0 2.78 8.34 13.34 18.9\\\">taxes</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.3548 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 311.8591 216.2655)\\\" x=\\\"0 2.28 10.61 16.17 21.73 26.73 32.29\\\">imposed</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 349.7156 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 353.2199 216.2655)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 361.0617 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 364.566 216.2655)\\\" x=\\\"0 5 10.56 16.12 21.68 27.24 32.24 35.02 37.3 42.86\\\">connection</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 412.9938 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 416.4981 216.2655)\\\" x=\\\"0 7.22 9.5 12.28\\\">with</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.3399 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 437.8442 216.2655)\\\" x=\\\"0 2.78 8.34 11.67 20 22.28 27.84 33.4 36.18 38.46 44.02 49.58\\\">termination,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 490.2075 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 493.7118 216.2655)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24 28.52 34.08 39.64\\\">including,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 536.1386 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 539.6429 216.2655)\\\" x=\\\"0 5.56 11.12\\\">but</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.5443 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0486 216.2655)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 204.9472)\\\" x=\\\"0 2.28 4.56 12.89 15.17 17.95 23.51\\\">limited</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 62.1723 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 64.9349 204.9472)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 73.2747 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 76.0373 204.9472)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 92.1604 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 94.923 204.9472)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64\\\">applicable</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 140.133 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 142.8956 204.9472)\\\" x=\\\"0 2.78 5.06 10.62 16.18 21.18\\\">fines,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 166.8555 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 169.6182 204.9472)\\\" x=\\\"0 5 10.56 13.89 18.89 24.45 30.01 33.34 38.9 44.46 49.46\\\">surcharges,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 221.8642 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 224.6269 204.9472)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 241.3114 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 244.0741 204.9472)\\\" x=\\\"0 2.78 8.34 13.34 18.9 23.9\\\">taxes.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 270.7537 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 273.5164 204.9472)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.3093 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 294.0719 204.9472)\\\" x=\\\"0 8.33 13.89 18.89\\\">must</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 315.7419 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 318.5045 204.9472)\\\" x=\\\"0 5.56 7.84 12.84\\\">also</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 336.9078 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 339.6704 204.9472)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.7935 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 358.5561 204.9472)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 374.6791 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 377.4417 204.9472)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.12 31.12 33.4 38.4\\\">excessive</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 421.4066 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 424.1692 204.9472)\\\" x=\\\"0 7.22 12.78 18.34\\\">wear</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 445.844 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 448.6066 204.9472)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 465.2912 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 468.0538 204.9472)\\\" x=\\\"0 5.56 10.56\\\">use</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.1769 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 486.9395 204.9472)\\\" x=\\\"0 2.78 8.34 13.9\\\">fees</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 505.8408 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 508.6035 204.9472)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 519.165 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 521.9276 204.9472)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29 32.85\\\">provided</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 560.3456 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 563.1082 204.9472)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 193.6288)\\\" x=\\\"0 2.78 8.34 10.62 15.62 18.28 24.95 30.51 33.84 39.4 44.96 53.29 58.85 64.41 67.19 69.97 72.63 77.63 83.19 88.75 91.03 96.59 101.59 104.37 107.03 109.81 115.37 118.03 120.31 122.59 130.92 133.2 135.98 141.54 144.32 146.6 152.16 157.72 162.72 165.38 170.94 173.72 176.38 181.94 187.5 193.06 195.34 197.62 202.62 208.18 213.74 216.02 221.58 224.24 226.52 232.08 239.3\\\">this Agreement, subject to limitations of applicable law.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 180.3105)\\\" x=\\\"0 8.33 15 17.78 25 31.11 37.78 45 51.67 58.89 66.11 72.78\\\">MAINTENANCE.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 108.6615 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 111.6829 180.3105)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 129.4758 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 132.4972 180.3105)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.5597 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 149.581 180.3105)\\\" x=\\\"0 5 10.56 16.12\\\">keep</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 171.2656 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 174.287 180.3105)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 188.1883 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 191.2097 180.3105)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 229.0026 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 232.024 180.3105)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 239.8658 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 242.8871 180.3105)\\\" x=\\\"0 5.56 11.12 16.68\\\">good</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 265.1332 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 268.1546 180.3105)\\\" x=\\\"0 7.22 12.78 16.11 21.11 23.39 28.95\\\">working</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.6712 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 305.6925 180.3105)\\\" x=\\\"0 5.56 8.89 14.45 20.01\\\">order</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.0373 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 332.0586 180.3105)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.7432 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 351.7645 180.3105)\\\" x=\\\"0 3.33 8.89 14.45 20.01 22.29 25.62\\\">repair.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.1679 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 383.1892 180.3105)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 400.9822 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 404.0035 180.3105)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 418.066 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 421.0874 180.3105)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 437.2104 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 440.2318 180.3105)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.3548 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 459.3762 180.3105)\\\" x=\\\"0 5.56 11.12 16.68 20.01 25.57 28.35 30.63 36.19\\\">operating</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.134 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 504.1553 180.3105)\\\" x=\\\"0 5 10.56 15.56 18.34 23.34\\\">costs.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 530.2735 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 533.2948 180.3105)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.0878 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 554.1092 180.3105)\\\" x=\\\"0 7.22 9.5 11.78 14.06\\\">will,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 168.9921)\\\" x=\\\"0 5.56\\\">at</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 41.4398 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 44.1473 168.9921)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 63.6004 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 66.3078 168.9921)\\\" x=\\\"0 5.56 10.56 16.12 21.68 27.24 32.24 37.8\\\">expense,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 106.8938 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 109.6012 168.9921)\\\" x=\\\"0 5 10.56 13.89 18.89 21.17 26.17\\\">service</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 141.3346 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 144.042 168.9921)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 157.9434 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 160.6508 168.9921)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 198.4438 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 201.1512 168.9921)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 208.993 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 211.7005 168.9921)\\\" x=\\\"0 5.56 10.56 15.56 21.12 24.45 30.01 35.57 41.13 46.13\\\">accordance</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 263.3997 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 266.1071 168.9921)\\\" x=\\\"0 7.22 9.5 12.28\\\">with</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 283.9489 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 286.6563 168.9921)\\\" x=\\\"0 8.33 13.89 19.45 25.01 27.79 33.35 38.35 41.13 46.69 50.02 55.58\\\">manufacturer</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 345.5723 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 348.2798 168.9921)\\\" x=\\\"0 5 7.78 13.34 18.9 24.46 30.02 33.35 38.91 43.91\\\">standards.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 394.9741 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 397.6815 168.9921)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.2382 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 405.9456 168.9921)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.847 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 422.5544 168.9921)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 460.3474 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 463.0548 168.9921)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 470.3351 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 473.0425 168.9921)\\\" x=\\\"0 3.33 8.89 13.89 19.45 21.73 24.01 29.57 35.13\\\">recalled,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 510.9576 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 513.665 168.9921)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.788 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 532.4955 168.9921)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 546.558 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 549.2654 168.9921)\\\" x=\\\"0 5.56 11.12 16.12\\\">have</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 157.6738)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.0014 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 51.506 157.6738)\\\" x=\\\"0 3.33 8.89 13.89 19.45 21.73\\\">recall</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 75.5196 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 80.0242 157.6738)\\\" x=\\\"0 3.33 8.89 14.45 20.01 22.29 25.62\\\">repairs</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 110.6492 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 115.1538 157.6738)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 124.0454 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 128.5499 157.6738)\\\" x=\\\"0 5 10.56 13.89 18.89 21.17 26.17\\\">service</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.2833 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 164.7879 157.6738)\\\" x=\\\"0 5.56 11.12 14.45 17.23 22.79 26.12 34.45 40.01 45.57\\\">performed.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 213.1424 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 217.647 157.6738)\\\" x=\\\"0 2.78\\\">In</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.9868 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 230.4914 157.6738)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 244.3928 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 248.8974 157.6738)\\\" x=\\\"0 5.56 10.56 16.12 21.68\\\">event</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 273.3603 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 277.8648 157.6738)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.7662 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 296.2708 157.6738)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 334.0637 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.5683 157.6738)\\\" x=\\\"0 5.56 11.12\\\">has</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 354.6914 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 359.1959 157.6738)\\\" x=\\\"0 8.33 13.89 18.89 24.45 30.01 35.57 37.85 42.85 48.41\\\">mechanical</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 409.8942 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 414.3988 157.6738)\\\" x=\\\"0 5.56 8.89 14.45 20.01 22.29 27.85 36.18 41.18\\\">problems,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 458.3636 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 462.8682 157.6738)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 478.9912 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 483.4958 157.6738)\\\" x=\\\"0 5.56 11.12 14.45 20.01\\\">agree</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.072 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 513.5766 157.6738)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.9164 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 526.421 157.6738)\\\" x=\\\"0 3.33 8.89 11.67 17.23 20.56\\\">return</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.544 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0486 157.6738)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 146.3554)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79 40.45 43.23 48.79 51.45 57.01 62.01 64.67 67.45 73.01 76.34 79 84.56 89.56 95.12 97.4 102.96 108.52 111.3 113.58 119.14 124.7 127.48 130.14 135.7 141.26 146.82 149.6 152.26 154.54 157.32 159.98 165.54 171.1 176.1 181.66 186.66 191.66 197.22 200.55 205.55 208.33 210.99 214.32 219.88 225.44 231 233.28 236.61\\\">Property to us for evaluation, and, if necessary, repair.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 133.037)\\\" x=\\\"0 6.67 12.78 19.45 26.67 33.89 40.56 47.78 55\\\">STANDARDS</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 94.7748 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 97.7681 133.037)\\\" x=\\\"0 6.11 13.89\\\">FOR</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 118.8765 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 121.8699 133.037)\\\" x=\\\"0 9.44 16.11 22.78\\\">WEAR</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 151.8699 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 154.8632 133.037)\\\" x=\\\"0 6.67 13.89\\\">AND</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 175.9765 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 178.9698 133.037)\\\" x=\\\"0 7.22 13.89 20.56\\\">USE.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 202.3096 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 205.303 133.037)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 223.0959 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 226.0893 133.037)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 244.9809 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 247.9742 133.037)\\\" x=\\\"0 5.56\\\">be</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.0972 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 262.0906 133.037)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01 30.57\\\">charged</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 298.2283 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 301.2216 133.037)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.8915 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 315.8849 133.037)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.12\\\">excess</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 347.0079 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 350.0012 133.037)\\\" x=\\\"0 7.22 12.78 18.34\\\">wear</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.676 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 374.6694 133.037)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 391.3539 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 394.3473 133.037)\\\" x=\\\"0 5.56 10.56\\\">use</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 410.4703 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 413.4636 133.037)\\\" x=\\\"0 7.22 12.78 18.34\\\">when</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 437.3699 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 440.3632 133.037)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.4863 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 459.4796 133.037)\\\" x=\\\"0 3.33 8.89 11.67 17.23 20.56\\\">return</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 485.6026 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 488.596 133.037)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 502.4973 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 505.4907 133.037)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 543.2836 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 546.277 133.037)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 554.6168 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.6101 133.037)\\\" x=\\\"0 5.56 10.56\\\">us.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 121.7187)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 50.3314 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 54.7254 121.7187)\\\" x=\\\"0 2.78 8.34 10.62 12.9 18.46 25.68 27.96 33.52\\\">following</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 93.8123 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 98.2062 121.7187)\\\" x=\\\"0 5 7.78 13.34 18.9 24.46 30.02 33.35 38.91\\\">standards</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 142.1222 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 146.5161 121.7187)\\\" x=\\\"0 5.56 11.12 16.68 18.96\\\">apply</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 170.4809 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 174.8748 121.7187)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 186.5447 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 190.9386 121.7187)\\\" x=\\\"0 5.56 11.12 13.9 19.46 22.79 31.12 33.4 38.96 41.24 46.8\\\">determining</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 243.3068 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 247.7007 121.7187)\\\" x=\\\"0 5.56 11.12 14.45 20.01 25.57 30.57 36.13 41.69 47.25 52.81 55.09\\\">unreasonable</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.3648 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 312.7587 121.7187)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 321.6503 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 326.0442 121.7187)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.12\\\">excess</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 357.1672 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 361.5611 121.7187)\\\" x=\\\"0 7.22 12.78 18.34\\\">wear</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.2359 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 387.6298 121.7187)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 404.3144 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 408.7083 121.7187)\\\" x=\\\"0 5.56 10.56 16.12\\\">use:</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 427.6097 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 432.0036 121.7187)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 449.7965 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 454.1904 121.7187)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.2529 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 472.6468 121.7187)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.5482 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 490.9421 121.7187)\\\" x=\\\"0 5.56 11.12 13.4 18.96\\\">paint</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.6853 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 517.0792 121.7187)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 525.9708 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 530.3647 121.7187)\\\" x=\\\"0 2.28 7.84 10.62 13.4 18.96\\\">letter</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.6547 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0486 121.7187)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 110.4003)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 70.893 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 75.8495 110.4003)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 84.7411 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 89.6976 110.4003)\\\" x=\\\"0 8.33 13.89 19.45 21.73 24.51\\\">modify</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 119.2094 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 124.1659 110.4003)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 140.2889 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 145.2455 110.4003)\\\" x=\\\"0 2.28 7.84 13.4 18.96 21.74 24.02 26.8 29.08 34.08 39.64 42.42 44.7 50.26\\\">identification</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 201.0707 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 206.0272 110.4003)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57\\\">number</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 239.9335 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 244.89 110.4003)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 253.2298 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 258.1864 110.4003)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 272.0877 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 277.0443 110.4003)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 317.6156 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 322.5721 110.4003)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 340.3651 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 345.3216 110.4003)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.3841 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 364.3407 110.4003)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 378.242 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 383.1985 110.4003)\\\" x=\\\"0 5.56 11.12 16.68\\\">add,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.6614 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.618 110.4003)\\\" x=\\\"0 3.33 8.89 17.22 22.78 27.78\\\">remove</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 440.9627 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 445.9192 110.4003)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.8108 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 459.7674 110.4003)\\\" x=\\\"0 8.33 13.89 19.45 21.73 24.51\\\">modify</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.2791 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 494.2356 110.4003)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 510.3587 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 515.3152 110.4003)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.12 31.12 36.68 40.01 42.29 47.85 52.85\\\">accessories,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 99.082)\\\" x=\\\"0 5.56 11.12 16.68 18.96 24.52 32.85 38.41 43.97\\\">equipment</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 79.8578 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 83.9642 99.082)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 92.8558 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 96.9621 99.082)\\\" x=\\\"0 5.56 11.12 14.45 17.23\\\">parts</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 119.1936 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 123.2999 99.082)\\\" x=\\\"0 7.22 9.5 12.28 17.84 23.4 28.96\\\">without</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 155.0431 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 159.1494 99.082)\\\" x=\\\"0 5.56 11.12\\\">our</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 173.6025 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 177.7089 99.082)\\\" x=\\\"0 5.56 8.89 11.17 16.73\\\">prior</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 197.7724 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 201.8787 99.082)\\\" x=\\\"0 7.22 10.55 12.83 15.61 18.39 23.95\\\">written</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.3904 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 235.4968 99.082)\\\" x=\\\"0 5.56 11.12 14.45 22.78 25.06 30.06 35.06 37.34 42.9 48.46\\\">permission.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 286.7419 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 290.8482 99.082)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.0797 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 312.186 99.082)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 349.979 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 354.0853 99.082)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 368.1478 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 372.2542 99.082)\\\" x=\\\"0 5.56 11.12 13.9\\\">not:</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.9339 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 393.0402 99.082)\\\" x=\\\"0 7.22 12.78 17.78\\\">Have</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 416.3849 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 420.4913 99.082)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57 36.13\\\">damage,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 459.4073 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 463.5136 99.082)\\\" x=\\\"0 8.33 13.89 18.89 24.45 30.01 35.57 37.85 42.85 48.41\\\">mechanical</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 514.2119 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 518.3182 99.082)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 527.2098 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 531.3162 99.082)\\\" x=\\\"0 5.56 7.84 13.4 18.4 21.18 24.51 26.79 31.79 37.35\\\">electrical</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 87.7636)\\\" x=\\\"0 8.33 13.89 16.17 18.95 24.51 30.07 35.07 37.85 40.13 45.69\\\">malfunction</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 84.3549 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 87.8075 87.7636)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 98.369 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 101.8216 87.7636)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64 45.2\\\">applicable;</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 149.8099 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 153.2625 87.7636)\\\" x=\\\"0 5.56\\\">be</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 164.3855 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 167.8382 87.7636)\\\" x=\\\"0 2.78 8.34 11.67 17.23\\\">torn,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 187.8479 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 191.3005 87.7636)\\\" x=\\\"0 5.56 11.12 14.45 20.01 25.57 31.13\\\">burned,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.2165 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 228.6691 87.7636)\\\" x=\\\"0 5 7.78 13.34 15.62 21.18 26.74\\\">stained</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 260.9738 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 264.4264 87.7636)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 273.318 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 276.7706 87.7636)\\\" x=\\\"0 5 10.56 13.89 19.45 25.01 30.57 36.13 41.69\\\">shredded;</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 321.2482 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 324.7008 87.7636)\\\" x=\\\"0 5.56 11.12 16.12\\\">have</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 346.3853 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 349.8379 87.7636)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 365.961 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 369.4136 87.7636)\\\" x=\\\"0 5.56 11.12 16.68 19.46 24.46\\\">dents,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 396.6548 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 400.1074 87.7636)\\\" x=\\\"0 8.33 13.89 16.17 21.73\\\">mold,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 424.6191 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 428.0717 87.7636)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 436.9633 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 440.4159 87.7636)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57\\\">damage</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 476.5536 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 480.0062 87.7636)\\\" x=\\\"0 2.78 6.11 11.67\\\">from</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 500.0062 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 503.4588 87.7636)\\\" x=\\\"0 7.22 12.78 15.56 21.12 24.45\\\">water,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 530.6903 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 534.1429 87.7636)\\\" x=\\\"0 5 10.56 16.12 21.68\\\">sand,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 558.6058 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 562.0584 87.7636)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 76.4452)\\\" x=\\\"0 2.78 6.11 11.67 17.23 22.23 24.51 30.07 35.63 38.41 41.07 46.63 49.96 52.62 58.18 63.74 68.74 74.3 76.96 79.24 84.8 90.36 95.92 101.48 104.81 110.37 115.93 118.21 123.77 126.43 131.99 137.55 140.88 143.66 148.66 151.44 154.1 160.77 166.33 171.89 174.55 182.88 188.44 193.44 196.22 198.88 202.21 207.77 210.55 216.11 219.44 225 227.66 230.44 236 241.56 244.22 250.89 254.22 259.78 265.34 270.9 274.23 277.01 282.01 284.67 291.89 294.17 296.95 302.51 305.17 310.73 313.01 315.29 317.95 323.51 326.29 328.95 331.23 334.01 339.01 341.67 347.23 350.56 352.84 358.4 360.68 366.24 371.8 374.08 376.74 382.3 387.86 391.19 393.97 398.97\\\">freezing; or have inoperable parts. You must return the Property with all of its original parts.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 36.5264)\\\" x=\\\"0 6.498 11.997 14.391 16.785 21.789 26.793 29.295 34.299 39.303 44.307 504 506.3906 508.7812 511.1719 513.5625 515.9531 518.3438 520.7344 523.125 525.5156\\\">UT  07/2019          </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 26.3398)\\\" x=\\\"0 6.003 11.007 16.011 21.015\\\">Page </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 55.8097 26.3398)\\\" x=\\\"0\\\">2</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.815 26.3398)\\\" x=\\\"0 2.394 7.398 9.9\\\"> of </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 73.1021 26.3398)\\\" x=\\\"0\\\">7</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#d9d9d9\\\" style=\\\"font-family:f1-0; font-size:54pt; white-space:pre\\\" transform=\\\"matrix(0.707 0.707 0.707 -0.707 135.6027 198.5094)\\\" x=\\\"0 56.016 96.048 136.08 176.112 216.144 236.16 284.184 324.216 344.232 364.248 416.232 456.264 480.24\\\">Qoppa Software</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#002ba6\\\" style=\\\"font-family:f1-0; font-size:9pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.932 772)\\\" x=\\\"0 9.336 16.008 22.68 29.352 36.024 39.36 47.364 54.036 57.372 60.708 69.372 76.044 80.04 86.712 90.048 94.044 97.38 104.712 111.384 115.38 118.716 126.72 132.72 139.392 142.056 148.728 155.4 158.736 161.4 168.072 174.744 178.08 187.416 194.088 196.752 202.752 206.088 210.084 213.42 220.092 223.428 226.764 233.436 239.436 242.772 246.108 249.444 258.108 266.772 275.436 278.772 285.444 292.116 298.788 305.46 312.132 315.468 321.468 328.14\\\">Qoppa Software - For Evaluation Only - https://www.qoppa.com</text></g></g></svg></svg></g></svg><br>\\n<?xml version='1.0' encoding='UTF-8'?><svg id=\\\"qoppa_document\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" version=\\\"1.1\\\" xmlns=\\\"http://www.w3.org/2000/svg\\\" xmlns:xlink=\\\"http://www.w3.org/1999/xlink\\\"><!-- jPDFWeb v2019R1.03 - Demo Version --><style>title p { display: block; }</style><g id=\\\"qoppa_viewxform\\\" transform=\\\"matrix(1 0 0 1 0 0)\\\"><style type=\\\"text/css\\\">@font-face {font-family:f2-0;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f2-1;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f2-2;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}</style><svg id=\\\"qoppa_page_p2\\\" class=\\\"qoppa_page\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\"><rect class=\\\"qoppa_pageborder\\\" x=\\\"0.5pt\\\" y=\\\"0.5pt\\\" width=\\\"611pt\\\" height=\\\"791pt\\\" fill=\\\"none\\\" /><svg class=\\\"qoppa_pagecontents\\\" x=\\\"0pt\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" viewBox=\\\"0 0 612 792\\\" ><g class=\\\"qoppa_contentstream\\\" transform=\\\"matrix(1 0 0 -1 0 792)\\\" fill=\\\"black\\\" stroke=\\\"black\\\" stroke-width=\\\"1\\\" stroke-linecap=\\\"butt\\\" stroke-linejoin=\\\"miter\\\" stroke-miterlimit=\\\"10\\\"><clipPath id=\\\"clip2-1\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 758.4812)\\\" x=\\\"0 9.44 16.11 23.33 30.55 37.22 44.44 50.55 53.33 60 66.67\\\">WARRANTIES.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 102.5482 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 106.2624 758.4812)\\\" x=\\\"0 9.44\\\">We</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 121.2624 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 124.9766 758.4812)\\\" x=\\\"0 8.33 13.89 18.89\\\">make</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 149.4298 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 153.1439 758.4812)\\\" x=\\\"0 5.56\\\">no</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 164.267 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 167.9812 758.4812)\\\" x=\\\"0 5.56 10.56 16.12 19.45 25.01 30.01\\\">express</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 202.9958 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 206.71 758.4812)\\\" x=\\\"0 7.22 12.78 16.11 19.44 25 30.56 33.34\\\">warranty</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.0548 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 248.769 758.4812)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.892 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 263.6062 758.4812)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 277.5076 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 281.2218 758.4812)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 321.7931 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 325.5072 758.4812)\\\" x=\\\"0 5.56 11.12 16.68\\\">and,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 344.9701 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 348.6843 758.4812)\\\" x=\\\"0 5.56 11.12 13.4 18.96 23.96\\\">unless</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 377.6492 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 381.3634 758.4812)\\\" x=\\\"0 5.56 8.89 14.45 20.01 22.29 27.85 30.13 32.91 38.47\\\">prohibited</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 425.4015 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 429.1157 758.4812)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 439.6772 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 443.3914 758.4812)\\\" x=\\\"0 2.28 7.84 15.06\\\">law,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 461.2332 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 464.9474 758.4812)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 478.8487 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 482.5629 758.4812)\\\" x=\\\"0 2.78 8.34 10.62 12.9 18.46 25.68 27.96 33.52\\\">following</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.6498 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 525.364 758.4812)\\\" x=\\\"0 5 10.56 16.12 18.9 24.46 30.02 35.02 40.58\\\">sentences</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 747.1629)\\\" x=\\\"0 5.56 11.12 16.68 18.96 23.96\\\">apply.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 59.8432 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 63.102 747.1629)\\\" x=\\\"0 6.67 14.45\\\">YOU</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 84.772 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 88.0308 747.1629)\\\" x=\\\"0 6.67 13.89\\\">ARE</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 108.5924 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 111.8512 747.1629)\\\" x=\\\"0 5.56 12.23 18.9 25.57 28.35 35.57\\\">LEASING</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 155.2008 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 158.4597 747.1629)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 178.4597 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 181.7186 747.1629)\\\" x=\\\"0 6.67 13.89 21.67 28.34 35.01 42.23 48.34\\\">PROPERTY</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 236.7284 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 239.9872 747.1629)\\\" x=\\\"0 3.33 10\\\">“AS</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.6572 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 259.916 747.1629)\\\" x=\\\"0 2.78 9.45 12.78\\\">IS”.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.4727 747.1629)\\\" x=\\\"0 3.2589\\\">  </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 281.9904 747.1629)\\\" x=\\\"0 9.44\\\">WE</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 298.0988 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 301.3577 747.1629)\\\" x=\\\"0 8.33 15 21.67\\\">MAKE</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.6975 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 332.9564 747.1629)\\\" x=\\\"0 7.22\\\">NO</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 347.9564 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 351.2153 747.1629)\\\" x=\\\"0 6.67 13.34 20.01 27.23 33.9 40.57\\\">EXPRESS</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 398.4565 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 401.7153 747.1629)\\\" x=\\\"0 9.44 16.11 23.33 30.55 37.22 44.44 50.55 53.33 60\\\">WARRANTIES</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.3853 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 471.6442 747.1629)\\\" x=\\\"0 7.78\\\">ON</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.6442 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 489.903 747.1629)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.903 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 513.1619 747.1629)\\\" x=\\\"0 6.67 13.89 21.67 28.34 35.01 42.23 48.34 55.01\\\">PROPERTY.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 735.8445)\\\" x=\\\"0 9.44\\\">WE</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 49.2084 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 59.5638 735.8445)\\\" x=\\\"0 7.22 10 16.67 23.89 29.45 36.12 38.9\\\">DISCLAIM</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 106.7953 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 117.1507 735.8445)\\\" x=\\\"0 6.67 13.89\\\">ANY</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 137.7122 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.0676 735.8445)\\\" x=\\\"0 9.44 16.11 23.33 30.55 37.22 44.44 50.55 53.33 60\\\">WARRANTIES</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 214.7375 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 225.0929 735.8445)\\\" x=\\\"0 2.78 11.11 17.78 23.34 26.12 32.79\\\">IMPLIED</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 265.1027 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 275.4581 735.8445)\\\" x=\\\"0 6.67\\\">BY</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 288.798 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 299.1534 735.8445)\\\" x=\\\"0 5.56 12.23 21.67\\\">LAW,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 323.6016 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 333.957 735.8445)\\\" x=\\\"0 2.78 10 17.22 22.78 30 37.22 40 47.22\\\">INCLUDING</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.9619 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 399.3173 735.8445)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.3173 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 429.6728 735.8445)\\\" x=\\\"0 2.78 11.11 17.78 23.34 26.12 32.79\\\">IMPLIED</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 469.6825 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 480.0379 735.8445)\\\" x=\\\"0 9.44 16.11 23.33 30.55 37.22 44.44 50.55 53.33 60\\\">WARRANTIES</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 546.7079 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0633 735.8445)\\\" x=\\\"0 7.78\\\">OF</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 724.5262)\\\" x=\\\"0 8.33 15 22.22 29.44 36.66 43.33 50.55 56.66 63.33 70 72.78 78.34 81.12 87.23 93.9 96.56 103.23 110.45 117.67 120.33 126.44 129.22 135.33 142.55 149.22 155.89 162.56 165.22 171.33 179.11 186.33 188.99 195.66 202.88 209.55 212.21 218.88 225.55 232.77 238.88 241.66 248.88 256.1 261.66 268.33 275.55 278.21 284.88 292.1 299.32 305.99 313.77 320.44 327.11\\\">MERCHANTABILITY AND FITNESS FOR ANY PARTICULAR PURPOSE.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 711.2078)\\\" x=\\\"0 7.22 13.89 20 26.67 33.89 39.45 45.56 48.34 51 58.22 64.89 71.56 79.34 86.01 92.68 99.35 106.02 112.69 115.47 123.25 130.47 133.25 135.91 142.58 149.8 157.02 159.68 167.46 173.57 180.79 187.46 194.68 197.34 204.56 211.23 219.56 226.23 233.45 236.23 242.9 249.57 252.35 255.01 261.68 267.24 272.8 275.46 282.68 284.96 287.24 289.52 292.18 297.74 303.3 305.96 308.24 313.8 316.46 322.02 327.58 330.36 335.92 341.48 343.76 346.54 349.2 354.76 357.54 360.2 362.98 368.54 370.82 375.82 378.48 385.15 390.71 394.04 399.6 405.16 413.49 419.05 424.61 427.39 430.05 432.33 435.11\\\">DEFAULT, REPOSSESSION, AND OTHER REMEDIES. You will be in default of this Agreement if:</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 697.8895)\\\" x=\\\"0 3.33 5.99 12.66 18.22 23.78 26.44 32 37.56 40.22 45.78 51.34 54.12 56.78 62.34 67.9 72.9 75.56 81.12 86.68 91.68 94.34 99.9 105.46 110.46 118.79 124.35 129.91 132.69 135.35 140.91 144.24 146.9 152.46 155.24 160.8 166.36 169.69 172.35 177.91 186.24 191.8 197.36 202.92 205.7 208.36 213.92 219.48 225.04 230.6 233.93 236.59 239.37 244.93 250.49 253.15 259.82 265.38 268.71 274.27 279.83 288.16 293.72 299.28 302.06 304.72 310.28 315.28 317.94 323.5 326.83 332.39 337.39 339.67 345.23 350.79 356.35 359.01 364.57 367.9 370.56 377.78 383.34 388.9 394.46 397.12 404.34 409.9 412.56 420.89 426.45 431.45 437.01 439.67 445.23 450.79 459.12 464.68 470.24 475.8\\\">- You do not pay any payment or other amount under the Agreement as provided or when we make demand.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 684.5711)\\\" x=\\\"0 3.33 5.99 12.66 18.22 23.78 26.44 32 34.28 39.28 44.84 47.5 53.06 58.06 60.72 66.28 71.84 76.84 79.5 82.28 87.84 90.12 95.12 100.68 103.34 108.9 112.23 114.89 123.22 125.5 130.5 132.78 138.34 143.9 149.46 151.74 157.3 162.86 165.52 167.8 173.36 176.14 181.7 185.03 193.36 198.92 201.7 203.98 209.54 215.1\\\">- You give us any false or misleading information.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 671.2527)\\\" x=\\\"0\\\">-</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 36.4301 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.1823 671.2527)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 57.9753 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 61.7275 671.2527)\\\" x=\\\"0 2.28 7.84 12.84\\\">lose</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 80.1308 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 83.883 671.2527)\\\" x=\\\"0 5.56 11.12 16.12 21.12 26.68 31.68 36.68 38.96 44.52\\\">possession</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 133.9709 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 137.7231 671.2527)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.0629 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 149.8151 671.2527)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 163.7165 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 167.4687 671.2527)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 205.2617 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 209.0139 671.2527)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 219.5754 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 223.3276 671.2527)\\\" x=\\\"0 5 10.56 16.12 18.9 21.18 26.18 31.18 36.74 39.52 41.8 47.36 52.92\\\">confiscation,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 279.0307 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 282.7829 671.2527)\\\" x=\\\"0 2.78 8.34 11.67 14.45 20.01 22.29 25.07 30.63 33.96\\\">forfeiture</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 322.3044 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 326.0566 671.2527)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 334.9482 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.7004 671.2527)\\\" x=\\\"0 5.56 8.34 13.9 19.46\\\">other</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 361.4934 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 365.2456 671.2527)\\\" x=\\\"0 2.28 7.84 12.84 18.4 20.68 26.24 31.8 34.58 40.14 43.47\\\">involuntary</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 413.7222 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 417.4744 671.2527)\\\" x=\\\"0 2.78 6.11 11.67 17.23 22.23 25.01 30.57\\\">transfer</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 451.3757 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 455.1279 671.2527)\\\" x=\\\"0 3.33 8.89 14.45 20.01 23.34 28.9 31.18 36.74 41.74\\\">regardless</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.876 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 505.6282 671.2527)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 513.968 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 517.7202 671.2527)\\\" x=\\\"0 7.22 12.78 18.34 21.12 26.68 32.24\\\">whether</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.2964 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0486 671.2527)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 659.9344)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79 40.45 42.73 47.73 50.39 53.17 58.73 64.29 66.95 71.95 77.51 83.07 85.35 90.91 95.91 98.69 101.35 106.91 109.69 112.35 114.63 120.19 125.75 128.03 133.03 135.31 140.87 143.15 145.81 151.37 154.7 157.36 162.92 168.48 176.81 179.09 184.65 186.93 191.93 194.71 198.04 203.6 206.38 208.66 213.66 219.22 221.88 227.44 230.77 236.33 241.33 246.89 252.45 258.01 260.29 265.85 271.41 276.41\\\">Property is the subject of judicial or administrative proceedings.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 646.616)\\\" x=\\\"0 3.33 5.99 12.66 18.22 23.78 26.44 32 34.28 39.84 42.5 48.06 53.62 59.18 61.84 64.62 70.18 75.74 79.07 84.63 87.29 89.57 94.57 97.23 102.79 108.35 111.01 116.01 121.57 124.9 129.9 132.18 137.18 139.46 145.02 150.58 153.24 158.24 163.8 168.8 171.58 177.14 185.47 191.03 194.36\\\">- You die and there is no surviving customer.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 633.2977)\\\" x=\\\"0 3.33 5.99 12.1 17.66 23.22 25.88 32.55 35.88 41.44 47 52.56 55.89 58.67 63.67 66.33 68.61 73.61 76.27 78.55 84.11 89.11 91.89 94.67 97.33 102.33 105.11 110.67 112.95 118.51 124.07 126.73 132.29 135.62 138.28 143.84 149.4 157.73 163.29 168.85 174.41 179.97 182.63 188.19 193.75 198.75 204.31 209.87 215.43 218.09 221.42 226.98 232.54 238.1 240.38 243.71\\\">- The Property is lost, stolen or damaged beyond repair.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 619.9793)\\\" x=\\\"0 3.33 5.99 12.66 18.22 23.78 26.44 32 37 42 44.28 49.84 55.4 58.06 60.84 66.4 71.96 74.62 81.29 86.85 90.18 95.74 101.3 109.63 115.19 120.75 123.53 126.19 131.75 135.08 137.74 140.52 143.85 149.41 154.97 159.97 162.75 168.31 171.64 174.3 177.08 182.64 188.2 190.86 197.53 200.86 206.42 211.98 217.54 220.87 223.65 228.65\\\">- You assign the Agreement or transfer the Property.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 606.6609)\\\" x=\\\"0 3.33 5.99 13.21 18.77 21.05 26.61 31.61 36.61 39.27 44.83 48.16 53.72 59.28 61.56 67.12 69.4 72.18 77.74 83.3 85.96 91.52 96.52 99.18 101.46 107.02 114.24 117.02 119.68 124.68 130.24 135.8 138.46 143.46 145.74 151.3 153.58 159.14 161.92 167.48 170.14 175.7 181.26 186.26 188.92 195.59 201.15 204.48 210.04 215.6 223.93 229.49 235.05 237.83 240.49 243.27 248.83 252.16 260.49\\\">- Unless prohibited by law, you violate any Agreement term.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 593.3426)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 38.6566 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 41.5168 593.3426)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 57.1369 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 59.9971 593.3426)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 108.9131 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 111.7732 593.3426)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 119.0535 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 121.9136 593.3426)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 129.7554 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 132.6156 593.3426)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 27.3 30.08\\\">default,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 165.4769 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 168.3371 593.3426)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 181.1202 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 183.9804 593.3426)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 202.872 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 205.7321 593.3426)\\\" x=\\\"0 5.56\\\">at</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 214.072 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 216.9321 593.3426)\\\" x=\\\"0 5.56 11.12\\\">our</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.3853 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 234.2454 593.3426)\\\" x=\\\"0 5.56 7.84 13.4 18.4 21.18 23.46 29.02 34.58\\\">election,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 271.6087 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 274.4688 593.3426)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.1534 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 294.0135 593.3426)\\\" x=\\\"0 5 10.56 16.12 18.4 23.96 28.96\\\">subject</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 325.7567 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 328.6169 593.3426)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 336.9567 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 339.8168 593.3426)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.9399 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 358.8 593.3426)\\\" x=\\\"0 7.22 12.78 15.06 17.84 20.12 25.68\\\">waiting</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 390.0452 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 392.9053 593.3426)\\\" x=\\\"0 5.56 11.12 14.45 16.73 22.29\\\">period</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 420.7618 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 423.6219 593.3426)\\\" x=\\\"0 2.28 10.61 16.17 21.73 26.73 32.29\\\">imposed</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 461.4783 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 464.3385 593.3426)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.9 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 477.7602 593.3426)\\\" x=\\\"0 2.28 7.84 15.06\\\">law,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 495.602 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 498.4621 593.3426)\\\" x=\\\"0 2.78 8.34 13.34\\\">take</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 517.3635 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 520.2236 593.3426)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 536.3467 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 539.2068 593.3426)\\\" x=\\\"0 5.56 10.56 13.34 15.62 21.18 26.74\\\">actions</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 582.0242)\\\" x=\\\"0 5.56 11.12 14.45 22.78 25.06 27.84 30.62 36.18 41.74 44.4 49.96 54.96 57.62 59.9 65.46 72.68 75.46 78.12 80.4 85.96 90.96 93.24 98.8 104.36 106.64 112.2 117.76 120.42 127.64 129.92 132.7 138.26 143.82 149.38 152.16 154.82 157.1 159.38 167.71 169.99 172.77 178.33 181.11 183.39 188.95 194.51 197.17 202.73 208.29 213.85 216.51 222.07 224.85 227.51 230.29 235.85 241.41 244.07 246.85 252.41 254.69 256.97 262.53 269.75 272.03 277.59 283.15 285.81 291.37 296.37 299.15 301.43 306.99 312.55 317.55 320.33 322.99 328.55 334.11 339.67 345.23 347.89 353.45 356.23 358.89 366.11 371.67 373.95 378.95 384.51 387.17 394.39 396.67 398.95 401.23 403.89 408.89 414.45 417.78 423.34 426 431 436.56 442.12 445.45 448.11 453.67 459.23 462.01 467.57 473.13 475.41 478.19\\\">permitted by law, including without limitation one of the following actions, none of which will cure your default:</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 568.7059)\\\" x=\\\"0 3.33 10.55 16.11 18.89 21.17\\\">-Until</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 56.5522 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 59.9757 568.7059)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 76.0988 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 79.5223 568.7059)\\\" x=\\\"0 5.56 11.12 14.45 19.45 25.01 30.57 35.57\\\">purchase</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 120.66 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 124.0836 568.7059)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 137.985 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 141.4086 568.7059)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 179.2015 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 182.6251 568.7059)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 193.1866 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 196.6102 568.7059)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29 32.85\\\">provided</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 235.0282 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 238.4518 568.7059)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 246.2936 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 249.7171 568.7059)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 265.3372 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 268.7608 568.7059)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 320.4552 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 323.8787 568.7059)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 332.7703 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 336.1939 568.7059)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 350.0953 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 353.5189 568.7059)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 391.3118 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 394.7354 568.7059)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.0157 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 405.4393 568.7059)\\\" x=\\\"0 3.33 8.89 14.45 20.01 25.01 30.01 35.57 40.57 45.57 51.13\\\">repossessed</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 462.1385 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 465.5621 568.7059)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.4537 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 477.8772 568.7059)\\\" x=\\\"0 5 10.56 13.89 17.22 22.78 28.34 33.9 39.46 42.79 48.35 53.91\\\">surrendered,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 534.5765 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 538 568.7059)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 545.8418 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 549.2654 568.7059)\\\" x=\\\"0 5.56 11.12 16.12\\\">each</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 557.3875)\\\" x=\\\"0 5 10.56 15.56\\\">case</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 54.2231 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 56.9386 557.3875)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 67.5001 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 70.2156 557.3875)\\\" x=\\\"0 5.56 11.12 14.45 22.78 25.06 27.84 30.62 36.18\\\">permitted</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 111.9588 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 114.6743 557.3875)\\\" x=\\\"0 5.56 11.12 16.68 22.24\\\">under</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 140.2505 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 142.966 557.3875)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 158.5862 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 161.3017 557.3875)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 212.996 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 215.7115 557.3875)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.3317 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 234.0472 557.3875)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 282.9632 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 285.6787 557.3875)\\\" x=\\\"0 5 10.56 16.12 18.4\\\">shall</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 306.3623 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 309.0779 557.3875)\\\" x=\\\"0 5 10.56 16.12 18.9 21.18 26.74 32.3\\\">continue</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 346.9441 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 349.6596 557.3875)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 357.9994 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 360.715 557.3875)\\\" x=\\\"0 3.33 8.89 14.45 20.01 27.23\\\">renew,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 390.7296 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 393.4452 557.3875)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 410.1297 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 412.8453 557.3875)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 425.6285 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 428.344 557.3875)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.2356 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 449.9511 557.3875)\\\" x=\\\"0 5 10.56 16.12 18.9 21.18 26.74 32.3\\\">continue</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 487.8173 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 490.5329 557.3875)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 498.8727 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 501.5882 557.3875)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01\\\">charge</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 532.1644 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 534.88 557.3875)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.003 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.7185 557.3875)\\\" x=\\\"0 3.33 8.89 14.45\\\">rent</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 546.0691)\\\" x=\\\"0 5.56 11.12 16.68 22.24 25.57 28.23 31.01 36.57 42.13 44.79 47.57 53.13 56.46 64.79 69.79 72.45 78.01 80.79 83.45 86.23 91.79 94.07 99.07 101.73 108.4 113.96 117.29 122.85 128.41 136.74 142.3 147.86 150.64\\\">under the terms of this Agreement.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 532.7508)\\\" x=\\\"0 3.33 12.77 18.33 20.99 29.32 34.88 39.88 42.54 45.32 50.88 55.88 61.44 64.1 69.66 75.22 80.22 82.88 88.44 93.44 96.22 98.5 104.06 109.62 112.28 119.5 125.06 127.72 133.28 138.84 141.12 143.4 148.96 153.96 159.52 162.18 164.96 170.52 173.18 178.74 184.3 186.96 192.52 198.08 203.08 208.64 213.64 218.64 224.2 227.53 232.53 235.19 240.75 244.08 246.74 252.3 257.86 262.86 265.14 270.14 275.7 281.26 283.54 289.1 291.76 294.54 300.1 302.76 308.32 311.65 317.21 319.99 325.55 330.55 333.33 335.99 341.55 347.11 350.44 353.1 355.38 360.94 363.72 369.28 372.61 378.17 383.17 385.95 388.61 390.89 396.45 399.11 401.89 407.45 413.01 415.67 422.34 425.67 431.23 436.79 442.35 445.68 448.46 453.46\\\">-We may take any action we believe to be necessary or advisable to protect our interest in the Property.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 519.4324)\\\" x=\\\"0 3.33 12.77\\\">-We</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 51.4301 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 54.7506 519.4324)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 73.6422 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 76.9627 519.4324)\\\" x=\\\"0 5.56 11.12 16.68 21.68 27.24 30.02 35.58 37.86 40.14\\\">peacefully</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 122.1092 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 125.4297 519.4324)\\\" x=\\\"0 3.33 8.89 14.45 20.01 25.01 30.01 35.57 40.57\\\">repossess</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 171.0058 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 174.3263 519.4324)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 188.2277 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 191.5482 519.4324)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 229.3411 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 232.6616 519.4324)\\\" x=\\\"0 7.22 12.78 18.34 21.67 27.23 32.23 37.79\\\">wherever</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 273.7896 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 277.1101 519.4324)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 289.8933 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 293.2138 519.4324)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.1054 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 315.4259 519.4324)\\\" x=\\\"0 2.78 5.06 10.62\\\">find</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 331.6075 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 334.928 519.4324)\\\" x=\\\"0 2.28 5.06\\\">it.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 342.7649 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 346.0854 519.4324)\\\" x=\\\"0 9.44\\\">We</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 361.0854 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 364.4059 519.4324)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 378.4684 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 381.7889 519.4324)\\\" x=\\\"0 5.56 7.84 12.84\\\">give</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 400.1922 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 403.5127 519.4324)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.6358 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 422.9563 519.4324)\\\" x=\\\"0 3.33 8.89 14.45 20.01 25.01 30.01 35.57 40.57 45.57 47.85 53.41\\\">repossession</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 481.9358 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 485.2562 519.4324)\\\" x=\\\"0 5.56 11.12 13.9 16.18 21.18 26.74\\\">notices</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 516.9994 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 520.3199 519.4324)\\\" x=\\\"0 3.33 8.89 14.45 20.01 22.29 25.62 31.18\\\">required</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 557.068 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 560.3885 519.4324)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 508.1141)\\\" x=\\\"0 2.28 7.84 15.06\\\">law.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 50.9418 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 53.8695 508.1141)\\\" x=\\\"0 6.67 9.45 12.23 17.79\\\">After</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 74.9876 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 77.9153 508.1141)\\\" x=\\\"0 3.33 8.89 14.45 20.01 25.01 30.01 35.57 40.57 45.57 47.85 53.41\\\">repossession</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.8948 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 139.8224 508.1141)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 148.714 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 151.6417 508.1141)\\\" x=\\\"0 5 10.56 13.89 17.22 22.78 28.34 33.9 39.46 42.79\\\">surrender,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 197.2178 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 200.1455 508.1141)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 212.9287 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 215.8564 508.1141)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 229.9189 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 232.8465 508.1141)\\\" x=\\\"0 5.56 11.12 13.4\\\">hold</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 251.8114 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 254.739 508.1141)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 268.6404 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 271.568 508.1141)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.1393 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 315.067 508.1141)\\\" x=\\\"0 5 10.56 16.12 18.4 23.96 28.96\\\">subject</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 346.8101 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 349.7378 508.1141)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 358.0776 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 361.0053 508.1141)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 377.1283 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 380.056 508.1141)\\\" x=\\\"0 3.33 5.61 11.17 16.73\\\">right</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 399.5677 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 402.4954 508.1141)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 418.6184 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 421.5461 508.1141)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 440.4377 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 443.3653 508.1141)\\\" x=\\\"0 5.56 11.12 16.12\\\">have</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 465.0499 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 467.9776 508.1141)\\\" x=\\\"0 5.56 11.12 16.68 22.24\\\">under</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 493.5537 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 496.4814 508.1141)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64\\\">applicable</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 541.6914 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 544.619 508.1141)\\\" x=\\\"0 2.28 7.84\\\">law</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.6825 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 562.6101 508.1141)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 496.7957)\\\" x=\\\"0 5 10.56 13.89 19.45 22.11 24.89 30.45 36.01 38.67 44.23 49.79 52.57 58.13 63.69 65.97 68.75 71.41 76.97 80.3 82.96 86.29 91.85 96.85 102.41 107.41 112.97 116.3 118.96 121.74 127.3 132.86 135.52 142.19 145.52 151.08 156.64 162.2 165.53 168.31 173.31\\\">cure the default or recover the Property.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 483.4773)\\\" x=\\\"0 3.33 10 15.56 23.89 28.89 31.55 38.77 44.33 46.99 51.99 57.55 63.11 68.67 74.23 76.89 79.67 85.23 90.23 92.51 98.07 103.63 106.29 111.85 117.41 122.41 125.07 130.63 136.19 139.52 147.85 150.13 152.91 155.69 161.25 166.81 169.47 175.03 180.03 182.81 185.09 190.65 196.21 198.87 206.09 208.37 210.65 212.93 215.59 221.15 226.71 229.37 234.93 240.49 246.05 251.61 257.17 259.83 262.61 268.17 270.83 273.61 279.17 284.73 287.39 292.95 301.28 306.84 312.4 317.96 320.74 323.4 328.96 333.96 338.96 342.29 347.85 353.41 358.97 361.75 364.41 369.97 375.53 377.81 383.37 388.37 393.37 396.03 401.59 404.92 410.48 416.04 418.32 423.88 426.16 428.94 434.5 440.06 442.72 448.28 453.28 455.94 458.22 463.78 471\\\">-Sums we spend taking any permitted action will be added to the amount accrued, unless prohibited by law.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 456.8406)\\\" x=\\\"0 6.11 12.78 19.45 26.12 32.79\\\">TAXES.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 68.6664 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 72.5196 456.8406)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 90.3126 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 94.1658 456.8406)\\\" x=\\\"0 8.33 13.89 18.89\\\">must</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 115.8357 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 119.689 456.8406)\\\" x=\\\"0 2.28 10.61 18.94 24.5 30.06 32.34 37.9 40.68 46.24 48.52\\\">immediately</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 173.2144 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 177.0676 456.8406)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 193.1906 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 197.0439 456.8406)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 205.9355 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 209.7887 456.8406)\\\" x=\\\"0 3.33 8.89 11.17 19.5 25.06 30.62 33.95 38.95\\\">reimburse</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 254.3053 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 258.1585 456.8406)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 268.72 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 272.5733 456.8406)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 277.6319 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 281.4851 456.8406)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 294.2683 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 298.1215 456.8406)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 314.2446 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 318.0978 456.8406)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.7677 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 333.6209 456.8406)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 349.744 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 353.5972 456.8406)\\\" x=\\\"0 5.56 7.84\\\">all</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 363.7193 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 367.5725 456.8406)\\\" x=\\\"0 5.56 11.12 16.12 21.68 25.01 30.57 38.9 44.46 50.02\\\">government</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 420.3801 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 424.2334 456.8406)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01 30.57\\\">charges</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 459.8095 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 463.6628 456.8406)\\\" x=\\\"0 3.33 8.89 11.17 16.73 19.51 21.79 27.35\\\">relating</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 496.5778 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 500.431 456.8406)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 508.7709 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 512.6241 456.8406)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.5255 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 530.3787 456.8406)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 445.5223)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24 28.52 34.08 39.64\\\">including,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 75.5268 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 78.3573 445.5223)\\\" x=\\\"0 5.56 11.12\\\">but</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 92.2586 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 95.0891 445.5223)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 108.9905 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 111.8209 445.5223)\\\" x=\\\"0 2.28 4.56 12.89 15.17 17.95 23.51\\\">limited</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 140.8932 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 143.7237 445.5223)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 152.0635 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 154.894 445.5223)\\\" x=\\\"0 2.78 8.34 13.9 18.9\\\">fees,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 176.5737 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 179.4042 445.5223)\\\" x=\\\"0 2.78 8.34 13.34 18.9 23.9\\\">taxes,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 206.0839 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 208.9144 445.5223)\\\" x=\\\"0 2.78 5.06 10.62 16.18\\\">fines</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 230.096 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 232.9265 445.5223)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 249.6111 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 252.4416 445.5223)\\\" x=\\\"0 5 10.56 13.89 18.89 24.45 30.01 33.34 38.9 44.46 49.46\\\">surcharges,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 304.6877 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 307.5181 445.5223)\\\" x=\\\"0 7.22 12.78 18.34 21.12 26.68 32.24\\\">whether</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 343.0943 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 345.9248 445.5223)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.12 31.12 36.68\\\">assessed</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.1709 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 391.0014 445.5223)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.1244 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 404.9549 445.5223)\\\" x=\\\"0 5 10.56 16.12\\\">you,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 423.8563 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 426.6868 445.5223)\\\" x=\\\"0 5.56 10.56\\\">us,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 440.0266 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 442.8571 445.5223)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 451.7487 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 454.5792 445.5223)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.4806 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 471.311 445.5223)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 511.8823 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 514.7128 445.5223)\\\" x=\\\"0 9.44\\\">We</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.7128 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 532.5433 445.5223)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.4349 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 554.2654 445.5223)\\\" x=\\\"0 5.56 11.12\\\">add</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 434.2039)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.0014 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 50.123 434.2039)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 83.4775 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 86.5991 434.2039)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 94.9389 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 98.0606 434.2039)\\\" x=\\\"0 7.22 12.78 18.34\\\">what</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 119.1836 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 122.3052 434.2039)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 138.4283 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 141.5499 434.2039)\\\" x=\\\"0 5.56 12.78\\\">owe</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 159.8946 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 163.0162 434.2039)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 173.5777 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 176.6994 434.2039)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 181.758 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 184.8796 434.2039)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 201.0026 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 204.1242 434.2039)\\\" x=\\\"0 5.56\\\">do</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 215.2473 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 218.3689 434.2039)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 232.2703 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 235.3919 434.2039)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 251.5149 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 254.6365 434.2039)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 265.1981 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 268.3197 434.2039)\\\" x=\\\"0 7.22 12.78 18.34\\\">when</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 292.2259 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 295.3476 434.2039)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.1307 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 311.2524 434.2039)\\\" x=\\\"0 8.33 13.89 18.89\\\">make</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.7055 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.8271 434.2039)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57 36.13\\\">demand.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 377.7431 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 380.8647 434.2039)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 386.4214 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 389.543 434.2039)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 405.666 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 408.7877 434.2039)\\\" x=\\\"0 5.56\\\">do</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.9107 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 423.0323 434.2039)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 436.9337 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 440.0553 434.2039)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.1783 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 459.3 434.2039)\\\" x=\\\"0 5 10.56 15.56\\\">such</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 480.423 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 483.5446 434.2039)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57 33.35\\\">amounts</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.8991 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 525.0207 434.2039)\\\" x=\\\"0 7.22 12.78 18.34\\\">when</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 548.927 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 552.0486 434.2039)\\\" x=\\\"0 2.78 8.34 13.9\\\">they</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 422.8855)\\\" x=\\\"0 5.56 8.89\\\">are</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.5531 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 50.576 422.8855)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.12 31.12 36.68\\\">assessed</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 92.8221 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 95.845 422.8855)\\\" x=\\\"0 3.33 8.89 14.45 16.73 22.29 27.29\\\">(unless</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 128.1399 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 131.1627 422.8855)\\\" x=\\\"0 5 10.56 15.56\\\">such</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 152.2858 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 155.3087 422.8855)\\\" x=\\\"0 3.33 8.89 13.89 19.45 21.73 24.51\\\">results</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 184.8204 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 187.8433 422.8855)\\\" x=\\\"0 2.78 6.11 11.67\\\">from</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 207.8433 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.8661 422.8855)\\\" x=\\\"0 5.56 11.12\\\">our</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.3192 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 228.3421 422.8855)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.8 32.36 37.92 42.92 48.48 51.81\\\">negligence),</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 282.9417 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 285.9646 422.8855)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.0876 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 305.1105 422.8855)\\\" x=\\\"0 8.33 13.89 18.89\\\">must</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 326.7804 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 329.8033 422.8855)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 345.9264 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 348.9492 422.8855)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 365.0723 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 368.0951 422.8855)\\\" x=\\\"0 5.56 11.12 16.68 22.24 24.52 27.3 29.58 35.14\\\">penalties</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 408.2416 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 411.2645 422.8855)\\\" x=\\\"0 7.22 12.78 18.34\\\">when</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 435.1707 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 438.1936 422.8855)\\\" x=\\\"0 5.56 11.12\\\">due</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.8782 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 457.9011 422.8855)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.7927 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 469.8155 422.8855)\\\" x=\\\"0 3.33 8.89 11.17 19.5 25.06 30.62 33.95 38.95\\\">reimburse</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 514.3321 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 517.355 422.8855)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 527.9165 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 530.9394 422.8855)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 535.998 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 539.0209 422.8855)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.8041 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 554.8269 422.8855)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 411.5672)\\\" x=\\\"0 2.78 8.34 13.9 22.23\\\">them.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 58.1098 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 61.0597 411.5672)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 78.8527 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.8026 411.5672)\\\" x=\\\"0 8.33 13.89 18.89\\\">must</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 103.4725 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 106.4225 411.5672)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 122.5455 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 125.4955 411.5672)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 139.3968 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 142.3467 411.5672)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01 30.57\\\">charges</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 177.9229 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 180.8729 411.5672)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 188.7147 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 191.6646 411.5672)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 207.2847 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.2346 411.5672)\\\" x=\\\"0 5.56 11.12 14.45 20.01 25.57 28.9 34.46 40.02\\\">paragraph</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 255.8255 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 258.7754 411.5672)\\\" x=\\\"0 5.56 10.56 16.12\\\">even</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.46 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 283.4099 411.5672)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 288.4685 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 291.4184 411.5672)\\\" x=\\\"0 5 10.56 15.56\\\">such</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.5415 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 315.4914 411.5672)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01 30.57\\\">charges</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.0676 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 354.0175 411.5672)\\\" x=\\\"0 5.56 8.89\\\">are</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 368.4707 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 371.4206 411.5672)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 385.322 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 388.2719 411.5672)\\\" x=\\\"0 5.56 7.84 10.12 12.4 17.96\\\">billed</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 411.7973 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 414.7472 411.5672)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 423.0871 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 426.037 411.5672)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 436.5985 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 439.5485 411.5672)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 448.4401 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 451.39 411.5672)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 459.7298 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 462.6798 411.5672)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 478.8028 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 481.7528 411.5672)\\\" x=\\\"0 5.56 11.12 13.9 16.18\\\">until</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 500.2147 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 503.1646 411.5672)\\\" x=\\\"0 5.56 8.34 11.12 16.68\\\">after</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 523.1744 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 526.1243 411.5672)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 540.0257 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 542.9756 411.5672)\\\" x=\\\"0 5.56 11.12\\\">end</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.6602 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 562.6101 411.5672)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 400.2488)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.0014 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 49.7259 400.2488)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 98.6419 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 101.3665 400.2488)\\\" x=\\\"0 2.78 8.34 11.67 20\\\">term,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 124.1448 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 126.8693 400.2488)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 137.4308 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 140.1554 400.2488)\\\" x=\\\"0 2.28 7.84 13.4\\\">long</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 159.1202 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 161.8448 400.2488)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 172.4063 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 175.1308 400.2488)\\\" x=\\\"0 5 10.56 15.56\\\">such</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 196.2539 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 198.9784 400.2488)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01 30.57\\\">charges</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 234.5546 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 237.2791 400.2488)\\\" x=\\\"0 5.56 8.89\\\">are</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 251.7322 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 254.4568 400.2488)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64\\\">applicable</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.6667 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 302.3913 400.2488)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 310.7311 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 313.4556 400.2488)\\\" x=\\\"0 5 10.56 18.89\\\">some</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 337.9088 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 340.6333 400.2488)\\\" x=\\\"0 5.56 11.12 14.45\\\">part</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 357.8648 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 360.5893 400.2488)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 368.9291 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 371.6537 400.2488)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 385.555 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 388.2796 400.2488)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 437.1956 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 439.9201 400.2488)\\\" x=\\\"0 2.78 8.34 11.67 20\\\">term.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 462.6985 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 465.423 400.2488)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 483.216 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 485.9405 400.2488)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 500.003 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 502.7275 400.2488)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 516.6289 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 519.3534 400.2488)\\\" x=\\\"0 5.56 11.12 16.12\\\">have</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 541.038 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 543.7625 400.2488)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.1024 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 554.8269 400.2488)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 388.9305)\\\" x=\\\"0 5.56 11.12 14.45 17.11 19.39 24.95 29.95 35.51 43.84 49.4 52.06 54.84 60.4 65.4 70.96 75.96\\\">our income taxes.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 375.6121)\\\" x=\\\"0 6.11 8.89 15 20.56 27.23 30.01 32.67 42.11 47.67 50.33 53.66 59.22 62 67.56 69.84 75.4 78.06 80.84 83.12 85.9 88.18 93.74 96.4 99.18 104.74 107.4 110.18 115.74 121.3 123.96 130.63 133.96 139.52 145.08 150.64 153.97 156.75 161.75 164.41 167.19 172.75 176.08 178.74 181.52 187.08 192.64 195.3 198.08 203.64 206.97 215.3 217.96 223.52 226.3 228.96 231.74 237.3 242.86 245.52 247.8 253.36 258.92 263.92 269.48 272.14 277.7 283.26 288.82 291.48 297.04 302.6 305.38 307.66 309.94 312.6 317.6 323.16 328.72 331.38 336.94 341.94 347.5 353.06 355.34 358.67 364.23 366.89 372.45 379.67 385.23 390.79 394.12 399.12 404.68 406.96 412.52\\\">TITLE. We retain title to the Property for the term of the lease and until you acquire ownership.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 362.2937)\\\" x=\\\"0 6.67 13.34 20.01 28.34 35.01 42.23 48.34 55.01 57.79 60.45 69.89 75.45 78.11 83.67 89.23 94.23 99.79 102.45 107.45 112.45 118.01 123.57 129.13 134.69 136.97 142.53 148.09 150.75 156.31 161.87 167.43 169.71 172.49 177.49 180.15 182.93 186.26 191.82 200.15 202.81 207.81 213.37 218.93 222.26 224.92 229.92 235.48 241.04 246.04 251.04 253.32 258.88 264.44 267.1 272.66 277.66 282.66 288.22 293.78 299.34 302.12 304.9 307.56 313.12 318.12 320.78 326.34 329.67 335.23 340.23 342.51 348.07 353.63 359.19 361.85 367.41 372.97 375.25 380.81 388.03\\\">PAYMENTS. We have scheduled debits from your checking account, as provided below:</text></g><clipPath id=\\\"clip2-2\\\"><path d=\\\"M 35 328 L 574 328 L 574 345 L 35 345 L 35 328 z \\\"/></clipPath><g clip-path=\\\"url(#clip2-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.2825 332.657)\\\" x=\\\"0 7.22 15 22.22 28.89 36.11 44.44 51.11 58.33 60.99 67.66 74.88 80.99 88.21 95.99 103.21 105.99 112.1 118.77 124.88 127.66 135.44 142.66 145.32 151.43 159.21 166.43 169.09 175.76 182.43 189.1 197.43 204.1 211.32 217.43 224.1 226.76 233.43 236.21 242.88 245.54 252.21 259.43 266.65 269.31 272.64 279.31 286.53 293.75 296.41 303.63 310.3 316.97 319.75 325.86 332.53\\\">CONSUMER AUTHORIZATION FOR PAYMENTS VIA ACH (ACH DEBITS)</text></g><clipPath id=\\\"clip2-3\\\"><path d=\\\"M 35 79 L 574 79 L 574 329 L 35 329 L 35 79 z \\\"/></clipPath><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 316.3387)\\\" x=\\\"0 6.67 13.89\\\">ACH</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 61.7883 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 66.1692 316.3387)\\\" x=\\\"0 7.22 12.78 18.34 20.62 23.4\\\">Debits</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 94.5725 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 98.9533 316.3387)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 110.6233 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 115.0041 316.3387)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46 42.79 47.79\\\">Payment(s)</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 166.1272 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 170.508 316.3387)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 187.1926 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 191.5735 316.3387)\\\" x=\\\"0 7.22 12.78 18.34 23.9\\\">Range</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 221.0412 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 225.4221 316.3387)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.762 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 238.1428 316.3387)\\\" x=\\\"0 7.22 12.78 18.34 20.62 23.4 28.4\\\">Debits.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 269.3245 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 273.7053 316.3387)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.4983 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 295.8792 316.3387)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 28.35 30.63 35.63\\\">authorize</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 337.0754 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 341.4563 316.3387)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 352.0178 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 356.3987 316.3387)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 364.7385 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 369.1194 316.3387)\\\" x=\\\"0 5.56 11.12 16.68 18.96\\\">debit</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 390.8626 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 395.2434 316.3387)\\\" x=\\\"0 2.78 8.34 13.9 19.46\\\">funds</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.7063 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 424.0872 316.3387)\\\" x=\\\"0 2.78 6.11 11.67\\\">from</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 444.0872 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 448.4681 316.3387)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.9212 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 472.3021 316.3387)\\\" x=\\\"0 5.56 11.12 16.68\\\">bank</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 493.9866 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 498.3675 316.3387)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.68 32.24\\\">account</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 533.3919 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 537.7728 316.3387)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.4427 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.8236 316.3387)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.7249 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 305.0203)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 74.0295 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 77.2781 305.0203)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 85.6179 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 88.8665 305.0203)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 102.7678 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 106.0164 305.0203)\\\" x=\\\"0 2.28 7.84 13.4 18.4\\\">lease</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 129.9813 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 133.2298 305.0203)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57 38.35\\\">payments</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 176.5843 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 179.8329 305.0203)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 196.5174 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 199.766 305.0203)\\\" x=\\\"0 5.56 7.84\\\">all</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.8881 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 213.1366 305.0203)\\\" x=\\\"0 5.56 8.34 13.9 19.46\\\">other</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 235.9296 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 239.1782 305.0203)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57 33.35\\\">amounts</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 277.5327 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 280.7812 305.0203)\\\" x=\\\"0 5.56 10.56 15.56 18.89 24.45 30.01\\\">accrued</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 316.3574 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 319.606 305.0203)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 330.1675 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 333.4161 305.0203)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29 32.85\\\">provided</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.834 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 375.0826 305.0203)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 382.9244 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 386.173 305.0203)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 401.7931 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 405.0417 305.0203)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement,</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.736 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 459.9846 305.0203)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.8264 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 471.0749 305.0203)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.9763 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 488.2249 305.0203)\\\" x=\\\"0 2.78 8.34 10.62 12.9 18.46 25.68 27.96 33.52\\\">following</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 527.3118 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 530.5603 305.0203)\\\" x=\\\"0 3.33 8.89 14.45 20.01\\\">range</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 556.1365 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 559.3851 305.0203)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.7249 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 293.7019)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57 33.35\\\">amounts</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 79.0295 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.706 293.7019)\\\" x=\\\"0 5.56 11.12 13.9 19.46\\\">$1.00</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 106.7305 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 109.407 293.7019)\\\" x=\\\"0\\\">-</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 112.7371 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 115.4136 293.7019)\\\" x=\\\"0 5.56 11.12 16.68 22.24 25.02 30.58 36.14\\\">$500.00.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 154.3394 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 157.016 293.7019)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 174.8089 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 177.4855 293.7019)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 28.35 30.63 35.63\\\">authorize</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 218.6818 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 221.3583 293.7019)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.9198 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 234.5964 293.7019)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 242.9362 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 245.6128 293.7019)\\\" x=\\\"0 5.56 11.12 16.68 18.96\\\">debit</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 267.3559 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 270.0325 293.7019)\\\" x=\\\"0 2.28 7.84 12.84 17.84 23.4\\\">lesser</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 296.7659 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 299.4424 293.7019)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57 33.35\\\">amounts</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 337.7969 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 340.4735 293.7019)\\\" x=\\\"0 2.78 8.34 13.9\\\">than</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.9364 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 362.6129 293.7019)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 382.066 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 384.7426 293.7019)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57 38.35\\\">payment,</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 425.8754 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 428.5519 293.7019)\\\" x=\\\"0 5.56 11.12 16.12 21.68\\\">based</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 455.798 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 458.4746 293.7019)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 469.5976 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 472.2742 293.7019)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 491.7273 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 494.4038 293.7019)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 532.7583 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 535.4349 293.7019)\\\" x=\\\"0 5.56 7.84 12.84 15.62 21.18 24.51 29.51\\\">history.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.7249 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 282.3836)\\\" x=\\\"0 7.78 13.34 16.67 19.33 24.89 30.45 36.01 38.29 41.07 46.07 48.73 55.95 58.23 60.51 62.79 65.45 71.01 76.57 79.23 81.51 87.07 89.73 94.73 100.29 105.29 110.85 113.51 116.84 122.4 127.96 133.52 139.08 141.86 144.52 150.08 155.64 157.92 163.48 168.48 173.48 176.14 183.36 188.92 191.58 197.14 202.7 205.48 207.76 210.54 215.54 218.2 223.2 228.76 234.32\\\">Our debits will be in such range, unless we notify you.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 269.0652)\\\" x=\\\"0 6.67 13.89 21.11 23.77 30.99 36.55 42.11 44.39 47.17 52.17 54.83 57.61 63.17 66.5 69.16 76.38 81.94 84.72 90.28 93.61 99.17 104.73 110.29 112.95 119.62 125.18 130.18 138.51 144.07 149.63 152.41 155.07 161.18 166.74 172.3 175.08 177.74 184.41 189.97 195.53 198.19 203.75 209.31 212.09 217.65 223.21 226.54 228.82 233.82 239.38 242.04 247.6 252.6 255.26 258.04 263.6 266.26 271.82 277.38 282.94 285.22 288 290.66 296.22 298.88 304.44 310 312.78 318.34 323.9 326.56 329.34 334.9 338.23 340.89 346.45 352.01 357.01 359.67 363 368.56 371.34 376.9 380.23 385.79 391.35 396.91 399.57 405.13 410.69 415.69 424.02 429.58 435.14 437.92 440.58 443.36 448.92 454.48\\\">ACH Debits for Returned Payment Fee. You authorize us to debit $ 20.00 for an* D E M O *payment fee.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 255.7469)\\\" x=\\\"0 7.22 12.78 15.56 17.84 22.84\\\">Notice</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 69.0783 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 72.6034 255.7469)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 80.9433 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 84.4684 255.7469)\\\" x=\\\"0 6.67 12.23 15.56 17.84 23.4 26.18 28.46 34.02 39.58\\\">Variation.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 126.8317 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 130.3568 255.7469)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 135.9135 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 139.4386 255.7469)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 145.0001 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.5253 255.7469)\\\" x=\\\"0 5.56 11.12 16.68 18.96\\\">debit</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 170.2684 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 173.7935 255.7469)\\\" x=\\\"0 2.78 8.34 10.62 12.9\\\">falls</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 191.6939 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 195.2191 255.7469)\\\" x=\\\"0 5.56 11.12 13.9 18.9 21.18 26.74\\\">outside</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 227.5238 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 231.0489 255.7469)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 244.9503 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 248.4754 255.7469)\\\" x=\\\"0 5 10.56 16.12 21.12 23.4 26.18 28.46 34.02\\\">specified</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 288.0603 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 291.5855 255.7469)\\\" x=\\\"0 3.33 8.89 14.45 20.01 25.57\\\">range,</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.94 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 323.4651 255.7469)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 336.2483 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 339.7734 255.7469)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 353.8359 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 357.3611 255.7469)\\\" x=\\\"0 5.56 13.89 19.45 21.73\\\">email</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 381.3747 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 384.8999 255.7469)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 401.0229 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 404.548 255.7469)\\\" x=\\\"0 5.56 11.12 13.9 16.18 21.18\\\">notice</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 431.2912 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 434.8163 255.7469)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 443.1562 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 446.6813 255.7469)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 460.5827 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 464.1078 255.7469)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 497.4623 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 500.9874 255.7469)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 517.672 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 521.1971 255.7469)\\\" x=\\\"0 5.56 11.12 13.9\\\">date</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 540.66 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 544.1852 255.7469)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 555.3082 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 558.8333 255.7469)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.7249 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 244.4285)\\\" x=\\\"0 5.56 8.34 11.12 16.68 20.01 22.67 29.89 35.45 37.73 42.73 48.29 50.95 58.17 63.73 66.39 73.61 75.89 78.17 80.45 83.11 88.67 94.23 99.79 102.07 104.85 107.51 112.51 118.07 123.07 128.63 131.29 136.85 145.18 150.74 156.3 161.86 164.64 167.42 170.08 176.75 182.31 187.87 190.53 197.75 200.03 202.31 204.59 207.25 212.81 218.37 221.15 223.81 229.37 232.15 234.81 237.09 242.65 248.21 253.21 255.99 258.65 264.21 269.77 272.43 277.43 282.99 285.27 290.83 296.39 301.95 307.51 310.84 313.5 319.06 324.62 329.62 334.62 336.53 339.19 344.75 350.31 353.09 355.37 360.37 365.93\\\">after which we will debit such amount. You will get at least 10 calendar days&apos; notice.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 231.1102)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68\\\">Payment</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 80.1379 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 85.2907 231.1102)\\\" x=\\\"0 7.22 12.78 15.56 21.12 26.12\\\">Dates.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 114.192 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 119.3448 231.1102)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 137.1377 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 142.2905 231.1102)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 28.35 30.63 35.63\\\">authorize</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 183.4868 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 188.6395 231.1102)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.74\\\">debits</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 215.3827 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 220.5354 231.1102)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.6585 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 236.8113 231.1102)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.7028 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 250.8556 231.1102)\\\" x=\\\"0 5.56 8.34 11.12 16.68\\\">after</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 270.8654 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 276.0181 231.1102)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 289.9195 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 295.0722 231.1102)\\\" x=\\\"0 5.56 11.12 13.9 19.46\\\">dates</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.5351 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 324.6879 231.1102)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 336.3578 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 341.5106 231.1102)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 379.865 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 385.0178 231.1102)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29 32.85\\\">provided</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 423.4358 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 428.5885 231.1102)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 436.4303 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 441.5831 231.1102)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 455.4844 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 460.6372 231.1102)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement,</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.3315 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 517.4843 231.1102)\\\" x=\\\"0 5.56 11.12 13.4 18.96 23.96\\\">unless</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 546.4491 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 551.6019 231.1102)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.7249 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 219.7918)\\\" x=\\\"0 5.56 8.34 13.9 19.46 22.79 30.01 32.29 37.29\\\">otherwise</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 83.5315 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 86.8927 219.7918)\\\" x=\\\"0 5.56 7.84 11.17 16.73 21.73\\\">direct</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 111.4044 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 114.7656 219.7918)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 125.3271 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 128.6884 219.7918)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.5302 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 139.8914 219.7918)\\\" x=\\\"0 7.22 10.55 12.83 15.61 17.89 23.45 29.01\\\">writing.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 171.6834 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 175.0446 219.7918)\\\" x=\\\"0 9.44\\\">We</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 190.0446 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 193.4058 219.7918)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 207.4683 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.8296 219.7918)\\\" x=\\\"0 5.56 11.12 16.68 18.96\\\">debit</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 232.5727 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 235.9339 219.7918)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.057 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 250.4182 219.7918)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.3098 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 262.671 219.7918)\\\" x=\\\"0 5.56 8.34 11.12 16.68\\\">after</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 282.6808 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 286.0421 219.7918)\\\" x=\\\"0 5.56 10.56 16.12 19.45\\\">every</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 310.4952 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 313.8564 219.7918)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 352.2109 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 355.5721 219.7918)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29 32.85\\\">provided</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.9901 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 397.3513 219.7918)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 405.1931 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 408.5543 219.7918)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 424.1745 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 427.5357 219.7918)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement;</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 479.23 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 482.5912 219.7918)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29 32.85 38.41\\\">provided,</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 523.7875 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 527.1488 219.7918)\\\" x=\\\"0 5.56 11.12 18.34 23.9 28.9 34.46 37.79\\\">however,</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.7249 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 208.4734)\\\" x=\\\"0 2.78 8.34 13.9\\\">that</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 57.3547 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 60.5776 208.4734)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 73.3608 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 76.5836 208.4734)\\\" x=\\\"0 3.33 8.89 13.89 19.45 22.78 27.78\\\">reserve</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 109.9284 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 113.1512 208.4734)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 127.0526 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 130.2755 208.4734)\\\" x=\\\"0 3.33 5.61 11.17 16.73\\\">right</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 149.7872 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 153.01 208.4734)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 161.3499 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 164.5728 208.4734)\\\" x=\\\"0 5.56 11.12 16.68 18.96\\\">debit</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 186.3159 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 189.5388 208.4734)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 200.6618 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 203.8847 208.4734)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 217.7861 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 221.0089 208.4734)\\\" x=\\\"0 5.56 11.12 16.68 21.68 23.96 29.52\\\">banking</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.0968 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 259.3197 208.4734)\\\" x=\\\"0 5.56 11.12\\\">day</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.4427 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 278.6656 208.4734)\\\" x=\\\"0 2.28 10.61 18.94 24.5 30.06 32.34 37.9 40.68 46.24 48.52\\\">immediately</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 332.191 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 335.4139 208.4734)\\\" x=\\\"0 5.56 8.89 14.45 19.45 25.01 30.57 32.85 38.41\\\">preceding</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 379.3934 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 382.6162 208.4734)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.0694 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 405.2922 208.4734)\\\" x=\\\"0 3.33 8.89 14.45 20.01 22.29 27.85\\\">regular</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 436.4787 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 439.7016 208.4734)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 478.0561 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 481.279 208.4734)\\\" x=\\\"0 5.56 11.12 13.9\\\">date</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 500.7419 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 503.9647 208.4734)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.0233 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 512.2462 208.4734)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.1476 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 529.3704 208.4734)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.7249 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 197.1551)\\\" x=\\\"0 5.56 11.12 13.9 19.46 22.12 24.9 30.46 32.74 35.02 40.02 42.68 48.24 53.8 56.46 62.02 64.68 70.24 75.8 81.36 84.69 90.25 95.81 101.37 106.37 108.65 114.21 119.77 122.43 127.99 133.55 138.55 141.21 144.54 146.82 149.6 155.16 157.94 160.72 163.38 168.94 171.6 177.16 182.72 185 187.28 192.84 198.4 203.4 206.06 211.62 214.95 217.61 224.83 230.39 235.95 240.95 246.51 252.07 257.63 260.29 265.85 271.41 276.41 279.74\\\">date falls on a non-banking day (i.e., a holiday or weekend day).</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 183.8367)\\\" x=\\\"0 7.22 12.78 16.11 19.44 25 30 32.78 35.06 40.62 46.18 51.18 53.96 56.62 63.29 68.85 74.41 77.07 82.63 88.19 90.97 96.53 102.09 105.42 107.7 112.7 118.26 120.92 126.48 131.48 134.14 136.92 142.48 145.14 150.7 156.26 161.82 164.1 166.88 169.54 175.1 180.66 186.22 188.88 193.88 197.21 202.77 208.33 210.61 213.39 216.05 221.05 226.61 232.17 235.5 238.16 243.72 248.72 253.72 259.28 264.84 270.4 273.18 275.84 278.62 284.18 286.84 291.84 297.4 300.73 304.06 309.62 314.62 317.4 320.06 325.62 328.95 332.28 337.84 341.17 346.17\\\">Corrections. You authorize us to debit and credit your* D E M O * correct errors.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 170.5184)\\\" x=\\\"0 6.67 9.45 12.23 17.79 22.79 25.57 27.85 32.85 38.41 41.07 48.29 53.85 56.63 62.19 64.97 67.63 73.74 79.3 84.86 87.52 90.3 93.63 99.19 104.75 109.75 115.31 120.31 123.09 125.37 130.93 136.49 138.4 143.4 146.06 151.62 154.4 157.18 162.74 167.74 170.52 172.8 177.8 183.36 186.02 191.58 197.14 199.92 205.48 208.14 210.42 215.42 218.08 220.86 226.42 231.98 234.64 241.31 246.87 250.2 255.76 261.32 269.65 275.21 280.77 283.55 286.21 293.43 298.99 301.77 307.33 309.99 315.55 318.88 324.44 329.44 331.72 337.28 342.84 348.4 351.06 356.62 362.18 367.74 372.74 378.3\\\">Effective Date. The transaction&apos;s effective date is the Agreement Date provided above.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 157.2)\\\" x=\\\"0 6.67 11.67 16.67 22.23 27.79 33.35 36.13 38.79 44.35 49.91 55.47 58.13 65.35 70.91 76.47 79.25 81.53 87.09 92.65 95.43 98.09 104.76 110.32 115.88 118.54 124.1 129.66 132.44 138 143.56 146.89 149.17 154.17 159.73 162.39 165.17 170.73 176.29 178.95 184.51 190.07 195.63 197.91 200.69 205.69 208.35 211.13 216.69 219.35 222.13 227.69 229.97 234.97 237.63 243.19 248.19 253.19 258.75 264.31 269.87 272.65 275.43 278.09 285.31 290.87 299.2 304.76 310.32 313.65 316.31 320.2 324.09 327.98 331.87 335.76 341.32 346.88 352.44 358 360.66 367.88 373.44 379 381.78 384.06 389.62 395.18 397.84 405.06 410.62 418.95 424.51 430.07 433.4 436.06 439.95 443.84 447.73 451.62 455.51 461.07 466.63 472.19 477.75\\\">Account and Routing. You authorize the debits to this account: Number *****3968 Routing Number *****1451.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 143.8816)\\\" x=\\\"0 7.22 12.78 18.34 23.9 29.46\\\">Change</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 75.7043 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 78.8745 143.8816)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 86.7163 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 89.8865 143.8816)\\\" x=\\\"0 6.67 11.67 16.67 22.23 27.79 33.35\\\">Account</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 126.0193 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 129.1895 143.8816)\\\" x=\\\"0 2.78 8.34 11.12 16.68 20.01 28.34 33.9 36.68 38.96 44.52 50.08\\\">Information:</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 182.0508 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 185.221 143.8816)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 203.0139 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 206.1841 143.8816)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 28.35 30.63 35.63\\\">authorize</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.3804 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 250.5506 143.8816)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 261.1121 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 264.2823 143.8816)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 272.6222 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 275.7923 143.8816)\\\" x=\\\"0 5.56 11.12 16.68 18.96\\\">debit</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 297.5355 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 300.7057 143.8816)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 316.8287 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 319.9989 143.8816)\\\" x=\\\"0 5.56 11.12\\\">new</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.3437 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 341.5138 143.8816)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.68 32.24\\\">account</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 376.5382 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 379.7084 143.8816)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 395.8315 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 399.0017 143.8816)\\\" x=\\\"0 5.56 7.84 12.84\\\">give</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 417.405 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 420.5752 143.8816)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 431.1367 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 434.3069 143.8816)\\\" x=\\\"0 2.28 7.84 10.62 16.18 19.51 27.84 33.4 36.18 38.46 44.02\\\">information</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 483.8918 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 487.062 143.8816)\\\" x=\\\"0 2.78 8.34 11.67\\\">for.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.5103 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 504.6805 143.8816)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 510.2371 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 513.4073 143.8816)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.5303 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 532.7005 143.8816)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.68 32.24\\\">account</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.7249 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 132.5633)\\\" x=\\\"0 2.28 7.28 9.94 13.27 18.83 21.11 26.67 31.67 34.45 40.01 45.57 48.23 55.45 61.01 63.67 70.89 73.17 75.45 77.73 80.39 85.95 91.51 97.07 99.35 102.13 104.79 110.35 115.91 120.91 123.57 129.13 134.13 139.13 144.69 150.25 155.81 158.59 161.25 168.47 174.03 176.69 182.25 187.81 192.81 198.37 201.03 206.59 212.15 214.81 217.59 219.87 222.15 227.71\\\">is re* D E M O *ill debit any account we have on file.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 119.2449)\\\" x=\\\"0 6.67 9.45 15.01 20.57 23.23 29.9 35.46 40.46 48.79 54.35 59.91 62.69 67.69 70.47 73.13 79.8 85.36 90.92 93.58 101.91 107.47 112.47 115.13 120.13 122.91 128.47 134.03 136.69 142.25 147.81 152.81 161.14 166.7 172.26 175.04 177.7 183.26 186.04 188.7 190.98 196.54 202.1 207.1 209.88 212.54 215.32 220.88 224.21 229.77 235.33 237.99 243.55 249.11 254.67 259.67 261.95 267.51 273.07 275.73 281.29 286.85 291.85 296.85 299.51 305.07 310.63 313.41 318.97 322.3 327.86 330.52 336.08 338.74 344.3 349.86 354.86 363.19 368.75 374.31 377.09\\\">Stop Payments. You may stop payment at least three banking days before a payment.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 105.9266)\\\" x=\\\"0 7.22 12.78 17.78 23.34 28.34 33.9 36.68 38.96 44.52 50.08\\\">Revocation,</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 93.5412 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 97.2277 105.9266)\\\" x=\\\"0 7.22 12.78 18.34 23.34 28.9 31.18 33.46 39.02 41.8 44.08 49.64 55.2\\\">Cancellation,</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 155.216 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 158.9024 105.9266)\\\" x=\\\"0 6.11 11.67 15 23.33 25.61 31.17 36.73 39.51 41.79 47.35 52.91\\\">Termination.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 214.5958 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 218.2823 105.9266)\\\" x=\\\"0 6.11 11.67 13.95\\\">This</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 237.2325 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 240.9189 105.9266)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 28.35 30.63 35.63 41.19 43.97 46.25 51.81\\\">authorization</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 298.2968 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 301.9833 105.9266)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.8\\\">applies</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 333.7899 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 337.4764 105.9266)\\\" x=\\\"0 5.56 11.12 13.9 16.18\\\">until</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.9383 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 359.6248 105.9266)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.7478 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 379.4343 105.9266)\\\" x=\\\"0 3.33 8.89 13.89 19.45 24.45\\\">revoke</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 409.449 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 413.1354 105.9266)\\\" x=\\\"0 2.28 5.06\\\">it.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 420.9723 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 424.6588 105.9266)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 442.4518 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 446.1382 105.9266)\\\" x=\\\"0 8.33 13.89 18.89\\\">must</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.8082 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 471.4946 105.9266)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29\\\">provide</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 504.3511 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 508.0375 105.9266)\\\" x=\\\"0 5.56\\\">at</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 516.3774 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 520.0639 105.9266)\\\" x=\\\"0 2.28 7.84 13.4 18.4\\\">least</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 541.2455 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 544.932 105.9266)\\\" x=\\\"0 2.78 8.34 11.67 17.23\\\">three</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.7249 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 94.6082)\\\" x=\\\"0 5.56 11.12 16.12 21.12 23.03 25.69 31.25 36.81 39.59 41.87 46.87 52.43 55.09 57.87 63.43 66.09 71.09 76.65 82.21 87.21 92.77 95.05 97.83 100.49 107.71 113.27 115.55 117.83 120.49 126.05 128.83 131.49 134.82 140.38 145.94 151.5 154.83 157.49 163.05 168.61 174.17 177.5 183.06 188.62 194.18 199.74 202.4 207.96 210.74 213.4 215.68 221.24 226.8 231.8 234.58 237.24 240.02 245.58 248.91 254.47 260.03 262.69 268.25 273.81 278.81 283.81 286.47 292.03 297.59 300.37 305.93 309.26 314.82 317.48 320.26 325.82 331.38 334.04 339.6 342.93 348.49 354.05 359.61 364.61 370.17 375.73 378.39 383.95 386.73 389.51 395.07 400.07 402.85 405.13 410.13 415.69 418.35 423.91 429.47 432.25 437.81 440.47 446.03 448.81 451.47 454.25 459.81 465.37 468.03 470.81 476.37 479.7 488.03 490.31 495.87 501.43 504.21 506.49 512.05 517.61\\\">days&apos; notice to cancel. Call at (100) 000-0006 at least three days before the proposed effective date of the termination.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 81.2898)\\\" x=\\\"0 7.78 10.56 16.12 21.68 25.01 27.67 34.89 40.45 46.01 51.57 57.13 62.69 67.69 70.47 73.13 80.35 85.91 88.69 90.97 93.75 98.75 101.41 106.97 111.97 114.63 120.19 122.97 125.63 127.91 133.47 139.03 144.03 146.81 149.47 152.25 154.53 159.53 165.09 167.75 173.31 178.87 183.87 186.15 191.71 197.27 202.27 207.27 209.93 215.49 221.05 226.05 231.05 233.71 239.27 244.83 247.61 253.17 256.5 262.06 264.72 267.5 273.06 278.62 281.28 286.84 292.4 297.4 300.18 302.84 308.4 310.68 312.96 315.24 317.52 323.08 328.64 331.3 336.86 342.42 345.2 350.76 353.42 355.7 358.48 361.14 366.14 371.7 377.26 380.59 383.25 388.81 393.81 398.81 404.37 409.93 415.49 418.27 420.93 423.21 428.77 431.55 437.11 440.44 448.77 454.33 457.11 459.39 464.95 470.51 473.17 478.17 483.73 489.29 494.85 500.41 505.97 510.97\\\">Other Changes. Notify us at least five business days before the next billing date if your account information changes.</text></g><clipPath id=\\\"clip2-4\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip2-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.775 345.3758 L 573.625 345.3758 L 573.625 344.3758 L 34.775 344.3758 L 34.775 345.3758 z \\\"/><path clip-path=\\\"url(#clip2-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.625 344.3758 L 573.625 344.3758 L 573.625 329.0574 L 572.625 329.0574 L 572.625 344.3758 z \\\"/><path clip-path=\\\"url(#clip2-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.775 344.3758 L 35.775 344.3758 L 35.775 329.0574 L 34.775 329.0574 L 34.775 344.3758 z \\\"/><path clip-path=\\\"url(#clip2-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.775 329.0574 L 573.625 329.0574 L 573.625 328.0574 L 34.775 328.0574 L 34.775 329.0574 z \\\"/><path clip-path=\\\"url(#clip2-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.775 79.6902 L 573.625 79.6902 L 573.625 78.6902 L 34.775 78.6902 L 34.775 79.6902 z \\\"/><path clip-path=\\\"url(#clip2-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.625 328.0574 L 573.625 328.0574 L 573.625 79.6902 L 572.625 79.6902 L 572.625 328.0574 z \\\"/><path clip-path=\\\"url(#clip2-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.775 328.0574 L 35.775 328.0574 L 35.775 79.6902 L 34.775 79.6902 L 34.775 328.0574 z \\\"/><g clip-path=\\\"url(#clip2-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 36.5264)\\\" x=\\\"0 6.498 11.997 14.391 16.785 21.789 26.793 29.295 34.299 39.303 44.307 504 506.3906 508.7812 511.1719 513.5625 515.9531 518.3438 520.7344 523.125 525.5156\\\">UT  07/2019          </text></g><g clip-path=\\\"url(#clip2-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 26.3398)\\\" x=\\\"0 6.003 11.007 16.011 21.015\\\">Page </text></g><g clip-path=\\\"url(#clip2-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 55.8097 26.3398)\\\" x=\\\"0\\\">3</text></g><g clip-path=\\\"url(#clip2-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.815 26.3398)\\\" x=\\\"0 2.394 7.398 9.9\\\"> of </text></g><g clip-path=\\\"url(#clip2-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 73.1021 26.3398)\\\" x=\\\"0\\\">7</text></g><g clip-path=\\\"url(#clip2-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#d9d9d9\\\" style=\\\"font-family:f2-0; font-size:54pt; white-space:pre\\\" transform=\\\"matrix(0.707 0.707 0.707 -0.707 135.6027 198.5094)\\\" x=\\\"0 56.016 96.048 136.08 176.112 216.144 236.16 284.184 324.216 344.232 364.248 416.232 456.264 480.24\\\">Qoppa Software</text></g><g clip-path=\\\"url(#clip2-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#002ba6\\\" style=\\\"font-family:f2-0; font-size:9pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.932 772)\\\" x=\\\"0 9.336 16.008 22.68 29.352 36.024 39.36 47.364 54.036 57.372 60.708 69.372 76.044 80.04 86.712 90.048 94.044 97.38 104.712 111.384 115.38 118.716 126.72 132.72 139.392 142.056 148.728 155.4 158.736 161.4 168.072 174.744 178.08 187.416 194.088 196.752 202.752 206.088 210.084 213.42 220.092 223.428 226.764 233.436 239.436 242.772 246.108 249.444 258.108 266.772 275.436 278.772 285.444 292.116 298.788 305.46 312.132 315.468 321.468 328.14\\\">Qoppa Software - For Evaluation Only - https://www.qoppa.com</text></g></g></svg></svg></g></svg><br>\\n<?xml version='1.0' encoding='UTF-8'?><svg id=\\\"qoppa_document\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" version=\\\"1.1\\\" xmlns=\\\"http://www.w3.org/2000/svg\\\" xmlns:xlink=\\\"http://www.w3.org/1999/xlink\\\"><!-- jPDFWeb v2019R1.03 - Demo Version --><style>title p { display: block; }</style><g id=\\\"qoppa_viewxform\\\" transform=\\\"matrix(1 0 0 1 0 0)\\\"><style type=\\\"text/css\\\">@font-face {font-family:f3-0;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f3-1;src:url(\\\"data:application/font-woff;charset=utf-8;base64,d09GRgABAAAAABGUAAoAAAAAGPwAAQABAAAAAAAAAAAAAAAAAAAAAAAAAABPUy8yAAAA9AAAADcAAABWXhNbUGNtYXAAAAEsAAAAZAAAAHRBjOKmZ2x5ZgAAAZAAAA2oAAATvPYbMJhoZWFkAAAPOAAAADEAAAA2HL9qvGhoZWEAAA9sAAAAIAAAACQNvwX/aG10eAAAD4wAAAC2AAABHiMuGdhsb2NhAAAQRAAAAJIAAACSpvKirm1heHAAABDYAAAAGAAAACAATAAzbmFtZQAAEPAAAACYAAABdhyGNgFwb3N0AAARiAAAAAwAAAAgAAMAAHicY2Bk8mKcwMDKwMDUxbSbARlwMeogc/8DATI/MCDAkUEBCG+yXv4XxLCD9TLjOpgcAM6cDRIAeJxjYGBgZGAGYgYGHgYWhgwgLcYgABRhY1Bg0GQwYTBnsGbwYghniGSoUpD9/x8or8CgzqDDYMZgyeDI4AMUT1SQ+f///+P/d//f/n/r/83/V/5f/n/p/+kHWmBTsQAA4QwbQniclVgLVBNXGp57JxMeoiVipNRSHWKgFF8whIhVtIoYkIKARbBU8MFDfFWCteARRJCoPCqIFSlaVq3lWA5Va9FG0tZgba1EsNbtVg51W9e1sG7b47pdC5nr/ncmEfV09+xOTpKZzP3v/b/vfv9jwiAmjT2BAjkzwzEM0qi9BC8UaAteN5Ez/0xuIR8GDsRsIok4g7vCuNELlSfS0A+cQa6ioBLSiFaQRHQdfY9+QNdJCBlORpAQ2S4G7CbLdl7URKAfMSiIXC0Bo0buCuHJM2Qs4dEldAf9A10CmzZyHZUyNsadYbQatTBKow7Rh+lQqS0zMzM01GY7mxEfXwrjZqPTOAevYVhYiFfzOEe8hv3xmg/pum3wQedg5TnAGA74HQ4cDljhdzckINRMUmpQM2ceiIIfGcyk3b+l8AZ/n2C8wdIvwF/lqQ8TQrxHqzxdlOw4lScPbxy+0wDHzgr6WUE0qBd9t6m8HC1EL5m2bzeR90hLeTmXIrqKHvguvkf9ucHAkjCvK+UY84BIJbBMjUDe/TmvHVj4tS52sBjGzWQYhTuM42F1Pkw7HoCHBvhr/FyULkKY7Il6FFzAS80r3MXpHOKQMiVl48aeS8VFnh3ucXFri6OiEhO/601KYi+2zrp2rXBT0/ENr+Ubz26PioqaW2BalfvBicLCcnl/FgPeMbDeFLgIe2QxeSkeyHOsqQE2dJrR3qOFEHkgq8gJEfLzzx0vKFBbn/rzmunTyU9BhsaExPi4su3R0R3uW7d2XaqoiDaw2glJC5c0565attTc9/zz6+y758fsNL30UlzcavP69cXFF7dnZgL3YwH7KM4GZ8NBLUjFa1QapOZVgkroQlZUer5OzMR5lvNYgZvEDPaCXX+EHERLGOe++QKO4cyzFMnDPrMjJd4Ef4AGmzfkv8YP+dS9tTlmfnR0YUVSEn4iaaHpso/VJy/vHXGgrOyn7s1FxUWn2/G2A+npdbXLlplMqBoNq37j2w/T0uw9pPn0qdrdly9tK6c8LgPfvUFCSlmLIC2Ft30+/kXsvYLVnLl14C6no34mO/Ql+ylzGirvqxeW/JUYBj/ljVCPov6yi8HP+TEOPz2TkkxfPWl9Ms94GLtQP4vA0VMWVrd/iexnOckjd9+opn6yWpR66tTu2suXyrfR9aW4UGhBjC5StAuqB9Gh0NrEDZR9Kf6kMSOGxgxFoU2OQ3m4HIv4PmEYLgXwu9CoRRokePFeAvJCLL4s2mwHcdbRHnvMrwjTSEMfk9k4BTeLKVSDLHMYuLsNtq6QIsZT/qTNCwQBOHeRR7BdAfKm8Sp+nD4MZSHD1wsSyGHyNgo9FRMTG/sHYmbL50VVXykv7xd/xVo0rLISH5kxvdSuWKIPW/16qECSN2UsHZ/1deuKFQNRa9dK+s+4f4tbIscbB/j0GqUsGmfYO2TjoqTCYd1/O3RI/cWI3NyW3pKSrVuvv7N6jccX6ubmn8kF80cfmX22bOlvXLiwoQE9jXz3NSQmVlwpKbF1kkPkkK1TSj0UK5cBWN0ZFUU6Tk4sgciF5pVABLCGoVnG/Px8cpb804ou47+JajKZ89i1i/xG7uypa8U38VXwm3LWB/MMo3lCxescb0WffTMbaP+GXTrYq5jbin5pRZ+2DkTJsU5tSsCG5nAaVbJFiV1jxcfFeHYM3Rtc34rOO3hpA1404O84vTcMVvNqJf84M7yTGS2atUfYIZ5FpQ2k44fKyp0VNz7Oz/e4oD72PvkX+cxqPfeZzwcN+Pb71y+/1Yh80FNvvZWwoPqPxVu6LpF3SXNXl+wfp5ExIY2KV2mojyqB03SISqsVD3RwZvEIXgxOnhDjYHw7jCuWczmMF1BxRweFIGHV37/FpsG9kdI9KROAikfJwa9i06xTp678vCM3t+1iTg5ntqs+ef555BHQtm7dq+vRcAdXk+WaqKWe8IrJot7KVrRyHrCCdF+phPselEs3iU6IeZWgVJJesp4YSe9pdLAVHTzNmQenKc4PRCmuD/L0/RBON8k36jrYcpqPROb8aZb5HCw2KbaBxbbBTZJm6F70SDVp7O/VJHkHaFDQpMH6Xquqqqru/baysqryGrn4GRxIh0LPwVHVuB95oycb4SA/kh8bG7mo7m5ylLx3ubu7GyWj5O5uh0YVdgnbGEc0OsOQFaTgo3FIIxHUuq54TuSECQviz5AqqxWtR8OqqubNKyw4KfZyHiNHRkamlEVFia44xmj8bue6V3k/GU8FdxfwjGS0ML+L9yMBB5i8JSBOafEhem8922OsXZn/AJmp9uNz50inE53t0B0jMu8wBj+C706T8SqKpaCcIJd/ssMZg7lSvuGlGHSkGP8AXdgQNqo9ihyyWBbqQtMSEz4k8ez6Bfv2paRERq5efVTcaEXZryYna3d+xfkMVIaHk7V/ClaMzcqq35aby/OgUuPs2TmkQI49Wp9uA+ZgOc/Iq9CXlP3HeUlpxpHvH/ANtEjlANvuvLk3MdFoPNdhmJeaehDF+1rc6uvv3X6jes3aQXt29orlh1oKC54447qvwWfzZsuelNTnngsKmjQpLXPGDPLrV0ZjXt4JKGJhOr2+wDhnTlz84WsVFZJfE2Gv26S8LdUtilrRNrgRfd+Bbsply0POHaBBqlkfR54M8wHdeso+0lPJbXzj7JYtM2d1LF165szSpVber6jYJ2JmURFyZxfYPyDXX4YD8eyL9mPHy8uXL6fzwuycQa6bblhDy2YBCSbBXXjaF3gaRIK3ok9uzWAsrO1SIMccjHWjVYb2cMoW0kPa+kgb6elEe8xoKcowozfBNllxlL4hkgYGlY45oDpxsdLeS+vR0FNkkFgScxvPsuJZkGFewYfsH4i78Rr2RdBKHOSRW4oZzFOMP8PwgopWoHGs3B3BLkFDIecUnaNu6EJ5gQ1qz8vrJPPV7a721/V6D480sTgr68CNXSGLFr2SNX06aijBrX9PSCAfnfTzCxXySKUp+aXyowbYswkJ1+U6UQF6CZKw+j7Wz9C0qJPTmNysIUPJ/sLISIOhcH+BxfJai7V4S15e9/EifLctK/Nc18qcEsXHA1GJq/bWI25wd91eiQcD4LoJuB6ve85mxNspSBqCOLw1f4Paqoick25aCIcpfU6kwqrekN/6w3aTabtPSsqRJSEhWdlfXszKDglJP5KSUlMDWf9ebY2Eha51C7B4UizAoUYlz+xk7qF1gbr2jS1ntxRLCEoOFMyNNEQX7C/kzMQnt34vsQ/W1dWfaMvMOteVs7JEnlsRBDhcaaVCjg7ZGz0MKYDXeQ5hQZ6jExLW5y9Y4E3624qKR3coFsQvL12c6sGO3W668d3OHdXVuKBhfmxs7D5xbWrq4VeEkNTU0xORW01N3W5iJwO7ayl/ngBsGcSzGi50Gof3OtpgqmnDJKhw8AXeb+60qSEvk28aG9vZmrq0dP8A98Me5NiSOvs6tkbeZwNJlPTlwQQ+1g/qNeqHaZJ3X6cZJXWHbNAQNw8zZjCU9XcY87+Ap6lgJ0v2xAfM6b42RLfuXrQISxqADMDSvksl10+VrDI48eSpqiyWXbtyJ022kH3HqqTW4N7R8PCtYiJuQ6a3JY2CnUGqv45eUk2rMNhZLJy588JgD/SFp8lCxxivB2NkHavlPlwaP3p0hBAW8mKJwSAZHikLmjCiyd0w7y8P/Lwn9wU06KW+QI8EPAPV/kSyQfIo9XvcgCpIMjsTussjG8SbTjvH2nJ/YKB+OfoDuKfUAu/j4ILCVbpQsnWP0OA8UWqJeV5MTO6svkPlFkvpjsX+/u1lO1L9/S2UCj9+86dvmwZ7gJ6pU8uAHsc3M8QxrPM/cKzQSpM8yrFT3w9qvzNAqR5Yh6alZAAax+FyeMqfUmz+cIM+kW6SYzM76+KX2Vms1RmdNbXIlQqb7iXJkdb5/Xyj+v/yDRs4MAf1P5RwqM5zHDr3/e86h8fi/6Dt9t+VtNjn5BmfgPnhyRE9spP4xKRn92+0WLJ3zX9WoXNtqQOSf9pL2zZmJuSlY2AT+GhNdvglYP7xejwuQDMSKyG+lrxy9tMpUyJmpn/j3u5G0k+uXpW86Ez79OkRMzaQAWwZ5ZOeUVMfETFp8pinI+aOH/8mClyUXFY7bdrkyc/4GqKDp1jJUVhfc/8ODuAm0rqmlRmBzA7PvPRxSy6owAcOmBg85ekxLS3tpaXDh4eF5UdHVLn6PrMGr6hDruRenXjk1RdeeC7QA+YzSbVKS7UmZVnHnFCnoYeimbX0QO6kSRaUTbUmulKl4VYxhrzeJGsVuj2oCdqhWsz6kFvkVieqaUY1Cq3dykYM9sB9Zx1th3NK5DCkGUaL8Rhavm93/NLyc8dlNOvkzb+eRDPB7BvpgSRwsIf1sN+VzMEenizZO3AhxzSYu0nFHOeilf19ff1oJXm9H8Tp2o8DkZ1UISPB4rfoAFlG/YScSf2E3t7LmUfghaSWAH8+aYIwL/2F2c8GTkM1nQ4AqfeZEa0jwqcmJdY7gdyX/IC9Z6/CXG60z0c6+uiu5tmrYgzeY2/Ea8VVbEsTvtnUJI5pkvL1QvYmToa87y5lfk2ooAOR+CJBO3SKePl/KqRbsYJ+K05ID8mO/61sjGMeG8xjds7z4Pn64T+8eJs0AfS30oSQGs9mxMWXdcpfMM2/AbhYBZZ4nGNgZGBgAGKuhrvb4/ltvjJwczCAwG1zgbMw+v+Of0HslayXgeo4GJhAogBDGgwbAAAAeJxjYGRgYL38L4hhB3vv/x3/b7BXMgBFUIA7AL1WB8x4nEWNMQrCQBREJyGJEERsxULBysJaUgWsxMIqpJAU4hFsPUCK4C22iQcIFtYewCvkHsaXzYILj5ndP/NXGo7/gKXklSr8Wjc4+IkadGc1kYKrCmghhRMs3NsFcpdrwrz7hrlM+NYZTO+DViZKhjuZVyBt6Ziotrlhlv8z+ILOxvnx6K4ZGtM5QkV/j1rYN3W+8j493ZO59eyvbN7Nbb62/ZTeinuJn/NPjE56D2symbIfsmI9CAAAAAAAAAAAAAAAAAASAC4ASABcAGoAdgCGALIAxgD+AUQBYgGiAbYB9gIIAiICQAJ+ArYC2gL0AwoDRANcA2oDigOaA7gD0AQIBDgEeASyBP4FEgU+BVQFdgWOBcoF+gYwBl4Gmga+BvwHHAcuB1AHbAd6B64HzggCCDIIYgh8CLwI5AkECRoJOglYCX4Jlgm6Cd4AAHicY2BkYGDwYDBiYGYAAUYGNAAADQ8AgHicpYw9CsJgEERfTPxrrSzTC6IRrKy0UBCJIEiwEzUxIH5ibGw8gQfzGB7FSfKdwLAMvNnZWaDJDhfHawMdqWSHsVzJNVosLLtMWFv2xG/Ldbp8LDe0/zLDcOPJnZSEMw9CIpZqz1nRk1IOSg2ZFCv32bDnKp/TqWjGTJVeOP7ZfjEiqNTdFj7TxujCZ0ifgabCzx8N0TakeJxjYGbACwAAfQAE\\\");}@font-face {font-family:f3-2;src:url(\\\"data:application/font-woff;charset=utf-8;base64,d09GRgABAAAAAAp4AAoAAAAADawAAQABAAAAAAAAAAAAAAAAAAAAAAAAAABPUy8yAAAA9AAAADcAAABWWd9ZMmNtYXAAAAEsAAAAbAAAAIwCiwM0Z2x5ZgAAAZgAAAdLAAAJ6ArdyapoZWFkAAAI5AAAADEAAAA2GI9khmhoZWEAAAkYAAAAIAAAACQGNwJvaG10eAAACTgAAABeAAAAgDkXBShsb2NhAAAJmAAAAEIAAABCI1gg9G1heHAAAAncAAAAGAAAACAAIwA9bmFtZQAACfQAAAB3AAAA1A1JKK1wb3N0AAAKbAAAAAwAAAAgAAMAAHicY2Bk8mKcwMDKwMDUxbSbARlwMeogc/8DATI/MCDAkUEBCG8y3fyvxxDFdJPhEkwOAMlSDLoAeJxjYGBgZGAGYgYGHgYWhgYgLcMgABThYVBg0GewYnBj8GcIZAhmSGRIZkhjyGQoZ6j8/x+oSoFBFyjriiSbypDBkAOS/f/4//X/Z/8f/r/7/67/O/+v+b/6/6r/K/8v/78MbA9OAAAj1iOqeJxtVktsG9cVnXuHpChTEr/DjyRSHI44/IlUpeGQkvgTbepPkZJlUTQlWVLNWq2h2rHrohsv4iJo4P6SOqmRxIukDYqiWRTtJmgBN0CCBu1CRhZd1E5bdFOgdtuVG7SAAY16Z0gmClAOMPPmzX33nnfueUdigPEzf4QEjDIswwDHy5BQnsJovc7QK9Og+3tMU/2W5gT5vSb91Hnm+DE48VCd5+wS+9HcR27829EgRWNrDRroWxfD2GWJs9LKRrMJP242lQ9a66sUeInWm7SancuK68p5+K5yA3519AQP1/+0/nSdgih+heIlGnZ/Gm8VrCgpN2FF+cUOHtb+sq7cV0OpfuL4E/wzPmTMzBBFO11Ol6HL0CWG6EqntDHNSal0Kk0z8P07W9usbnfv7t3tbYT6xtuXTxcRSzPPXcvnAUslfIjN5i/f2bmA7MUv/fT1y5fLUC7f+db8Aq6svvjCwgKj1Rw9/j0+wUfMIDN5oqb61ArTi6A+qahLpA8G+jDeAhBKq1EqmpSK5m5jk0WfL+Hz+Ya80aAoJKKR9A8IIjQ2X9uanWMxm7k96HSa3S63yxUIBPiwkwPIZvCRbn//JxdmZkdcVktP0eLiBtzdp/Bi890fXrq0DDMzr3/93DnWoDeaTaf0M91Wa38glz17ZW1N63P8+N+4T5yN0QuBEsQ2+vZOQoE20LSzjbq9m/Q4BcB/DInEcm58nGUnJ4vNtbN6Q21j58ZGravRVSisnU4m2e7trYWyLCMuLlz9yuKCEZ7N8Ty43cW009nriMZuXB/7AkxMPW/cCooIPt9M2eOxcpHIxs7YGMjyV1WOReqrHh1MjMmQrlQqCVAXp3IpnCBZ1rikS1YnA7QRvdoL9XK0+i5zxenaQSIBaDDYt7r1OhhNJKbOjcQwl6vFQyEv+PlMjueNoIv4+WhUFNE7OLoXDML1XZ5HiEaXngwT82arxRK22TASmykHg106o7FbjLuc4HInL/ZRPb3VIosODrNZjePg8SfwT7QxfItjFa8GXsV6UqKaIOB7vT6fND88jEP+hsz7DRuWqUztQNXk1OTzSxNpC+xJA/2AqfTGcjbLQnB4wrRNJMLs3IsHy2UdRCKrLW2Kx0+JNydjZAKfVTarIpXG26UFQ7u0yim8g+HwdCESBoMhFpsfDQSs5/vzhfWtuXkdCe3WfLWCIBcjEcRYLDdfH4l7vWOmRljEfOHefqWi1+VzP6f9GqlamjQ1cEJTnMQJdHIFWZLFjnqiRrPZ1s85oNmsVyokigtWj9uGt1hA6O2LT5WUPHxQWuXjCT2yekbj8gzd/kHn3UVKsKbanFHiTstpeM8nhqS1xCjUYdA7nhdFqOOhcszbbQAj8fPKj2Az7vPRVteVv1ImVHMy9zRPU32LgKoJz9Tph4fNLx49I0vr1G7HMZJVogg8PErSfJFhCLKNiWrzXAfVCXSpdtdpmGwNXdZidUAU87IgWAbEYHExHCK8dkc6z/vrDk6a9fpIpQthpxPA7YlEPG7A+Mhp5TtQj/F+xFAorbwPF8PeQWRHR/PKI8JR0rixadxwn+dGaHPzylAonKvSCagD9S4fVLkxLERUJ4kn1pU3YSXj84rBivIHbdPI8HT2uinn5zxVOOGpXOdsqZ7qvZHNqN555WqhAJjJ3FwUxXB4aWVYgHAIbexS+ca3z5yBublvXl1eLmEqtbGblNlsZrmRkluaLR1PooHqOZjhzi7GTxg5iUgduxwtfmUi9lUuGJzYzuVZmMo8N8LzzvrH84EAHYvZJf8Q+P1oKAVIbKXS7YNqRQc2u1fBB5O6YrFSkyRgC/nyYjbTPi+T8LhTWy/I7aKqr0jqzmVJc/DO0aVOwuO6i+dj1zJTmM9dSAeDzpWPV6gkDPnLM8FhCAR+p3hJd7pK9eB2qQQuZ6A0qctkF8v5AguSVKsUiy1tTdOtQbW5k73r/AlRdfMyN9Af8zg4u89iMXMJj4caV4263QBGo2lV9TI2FksrD7W+ATNEnvOA8pGv25NtErs6Qjhh8F3/z+DjSWmvkkxa6jreH40KAqLb4/za3CySo+3WJib6NrqDQXlEGEb9VGY6GwrDC9lwGHm+2pOwO/r6Iv6eXt2gb6i2Go1AKFzvzbvdCA7HWNRitph5P+GzHv8XevG+6hF2zRscbQgaKNWVNK/4Wb1u7uNOdRtNPY4+s308IMD0NN5/t6S8HzxlQgBgqyw90OOpwmLpVotL2vvfiQfNI9RuqXnpwH7a0bT1DXS6StZ0yliv9ofDU3uRKKJB+XWSrN4w0H8TBo6eVUIeD7CSVIFNytlLiR9TTmJ3ACVWYC+//Grjt2c/pFW78NZnHqEjIT2glx4tbgAo1AQCu3P9SmP/G7W3N/e/vPUWrbkEbyjX4KWjZ/CScq2z1nKcgH+1cNO6NtZRaP/TUiAwdnjl/CNOGC5ZTD193b09Jotot5u4D3fuoOHoN7lYDIFl2TUdIthtQxNUaOt/bprEGQB4nGNgZGBgAOKDhy+vj+e3+crAzfwCKMJw21zgLIL+r8fMyHQTqI6DgQkkCgBlUwuTAAAAeJxjYGRgYLr5X48hitmRgeH/fWZGBqAIClAAAHbABKt4nGNggABGXyAWA9MKQDoKzAbSTLMZ/JmSGQKYuRj0QRjI12XSYVBj/MKgDqTVgWo4gLQzwz0IZnZkcATyXYBYGUqrAc10AKqXB6oVBPKdgGxepksMLEBaAABlFhBuAAAAAAAAAAAAAAAAAA4AGgAoADoAUgBoAKIBAgFUAbQB8AIsAloChAKYAqQC6AMSA0oDiAPGA+4EPgRsBJYEqgTIBPQAAHicY2BkYGBQYLBhYGIAAUYGNAAACboAYXicbco9C4IAEMbxv6/Z6tTo4BhRX8ChFkcnB7ewMEE0VIK+vQ94m3Lc8bvnDjhQ4eH4RyBWr3bk2OwSkZo9pWezL2fmgBOFOVT+4cHAlz8jLY32mZw3HT/NWVnNk7t+Ol47l21SyiOTtoGehBsXrqrN5wJrcRoTAHicY2BmwAsAAH0ABA==\\\");}</style><svg id=\\\"qoppa_page_p3\\\" class=\\\"qoppa_page\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\"><rect class=\\\"qoppa_pageborder\\\" x=\\\"0.5pt\\\" y=\\\"0.5pt\\\" width=\\\"611pt\\\" height=\\\"791pt\\\" fill=\\\"none\\\" /><svg class=\\\"qoppa_pagecontents\\\" x=\\\"0pt\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" viewBox=\\\"0 0 612 792\\\" ><g class=\\\"qoppa_contentstream\\\" transform=\\\"matrix(1 0 0 -1 0 792)\\\" fill=\\\"black\\\" stroke=\\\"black\\\" stroke-width=\\\"1\\\" stroke-linecap=\\\"butt\\\" stroke-linejoin=\\\"miter\\\" stroke-miterlimit=\\\"10\\\"><clipPath id=\\\"clip3-1\\\"><path d=\\\"M 35 730 L 574 730 L 574 770 L 35 770 L 35 730 z \\\"/></clipPath><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 757.4812)\\\" x=\\\"0 6.6699 11.6699 16.6699 22.2314 27.793 35.0146 37.2949 42.8565 48.418 53.9795 62.3096 67.8711 73.4326 76.2109 81.2109\\\">Acknowledgments.</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 124.6643 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 127.3205 757.4812)\\\" x=\\\"0 6.6699 12.2314\\\">You</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 145.1135 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 147.7697 757.4812)\\\" x=\\\"0 3.3301 8.8916 14.4531\\\">read</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 167.7844 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 170.4406 757.4812)\\\" x=\\\"0 2.7783 8.3398 10.6201\\\">this</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 186.0607 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 188.717 757.4812)\\\" x=\\\"0 5.5615 11.1231 13.9014 19.4629 25.0244 28.3545 30.6348 35.6348 41.1963 43.9746 46.2549 51.8164\\\">authorization</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 246.0949 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 248.7512 757.4812)\\\" x=\\\"0 2.2803\\\">in</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.593 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 259.2492 757.4812)\\\" x=\\\"0 5.5615 8.8916 11.1719 16.7334 19.5117\\\">print,</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.5393 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 284.1955 757.4812)\\\" x=\\\"0 5.5615\\\">on</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 295.3186 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 297.9748 757.4812)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 303.5363 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 306.1926 757.4812)\\\" x=\\\"0 5 10.5615 18.8916 24.4531 30.0146 32.793 38.3545\\\">computer</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 347.8771 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 350.5334 757.4812)\\\" x=\\\"0 5 10 13.3301 18.8916 24.4531 30.0147\\\">screen,</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.3264 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 385.9826 757.4812)\\\" x=\\\"0 5.5615\\\">or</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 394.8742 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 397.5305 757.4812)\\\" x=\\\"0 5.5615 8.3398 13.9014 19.4629\\\">other</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 420.3234 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 422.9797 757.4812)\\\" x=\\\"0 5 7.2803 12.2803 17.8418 23.4033\\\">visual</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 448.6633 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 451.3195 757.4812)\\\" x=\\\"0 5.5615 7.8418 12.8418 18.4033 20.6836 26.2451 31.2451\\\">display.</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 485.343 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 487.9992 757.4812)\\\" x=\\\"0 6.6699 12.2314\\\">You</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 505.7922 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 508.4484 757.4812)\\\" x=\\\"0 5.5615 10.5615 15.5615 21.1231 26.6846 33.9062 36.1865 41.7481 47.3096 52.8711\\\">acknowledge</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 566.8811 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 746.1629)\\\" x=\\\"0 5.5615 11.1231\\\">and</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 57.3596 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 60.0158 746.1629)\\\" x=\\\"0 5.5615 11.123 14.4531 20.0146\\\">agree</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 85.592 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 88.2482 746.1629)\\\" x=\\\"0 2.7783\\\">to</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 96.5881 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 99.2443 746.1629)\\\" x=\\\"0 2.7783 8.3398\\\">the</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 113.1457 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 115.802 746.1629)\\\" x=\\\"0 2.7783 8.3398 10.6201 12.9004 18.4619 25.6836 27.9639 33.5254 39.0869\\\">following:</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 157.6672 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 160.3234 746.1629)\\\" x=\\\"0 2.7783 8.3398 10.6201\\\">this</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 175.9436 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 178.5998 746.1629)\\\" x=\\\"0 6.6699 13.8916\\\">ACH</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 199.7131 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 202.0693 746.1629)\\\" x=\\\"0 7.2217 12.7832 18.3447 20.625\\\">Debit</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.4727 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 227.8289 746.1629)\\\" x=\\\"0 6.6699 12.2314 15.0098 20.5713 26.1328 29.4629 31.7432 36.7432 42.3047 45.083 47.3633 52.9248\\\">Authorization</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 286.3152 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 288.6715 746.1629)\\\" x=\\\"0 2.2803\\\">is</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 295.9518 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 298.308 746.1629)\\\" x=\\\"0 5.5615 11.123\\\">not</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.2094 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 314.5656 746.1629)\\\" x=\\\"0 5.5615\\\">an</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 325.6887 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 328.0449 746.1629)\\\" x=\\\"0 2.2803 7.8418 12.8418 15.6201 18.9502 24.5117 32.8418 38.4033 43.9648\\\">instrument</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 374.7881 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 377.1443 746.1629)\\\" x=\\\"0 5.5615 11.123 16.123 21.6846 25.0146 30.5762 36.1377\\\">governed</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 418.8436 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 421.1998 746.1629)\\\" x=\\\"0 5.5615\\\">by</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 431.7613 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 434.1176 746.1629)\\\" x=\\\"0 6.6699 10 12.7783 15.0586 20.0586 22.3389\\\">Article</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 462.018 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 464.3742 746.1629)\\\" x=\\\"0\\\">3</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 469.9357 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 472.292 746.1629)\\\" x=\\\"0 5.5615\\\">of</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 480.6318 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 482.9881 746.1629)\\\" x=\\\"0 2.7783 8.3398\\\">the</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 496.8895 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 499.2457 746.1629)\\\" x=\\\"0 7.2217 12.7832 15.0635 17.8418 23.4033 26.7334\\\">Uniform</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 734.8445)\\\" x=\\\"0 7.2217 12.7832 21.1133 29.4434 35.0049 38.335 43.335 45.6152 51.1768\\\">Commercial</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 94.132 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 96.4883 734.8445)\\\" x=\\\"0 7.2217 12.7832 18.3447 23.9062\\\">Code.</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 123.1728 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 125.5291 734.8445)\\\" x=\\\"0 6.6699 10 12.2803 17.8418\\\">Print</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.1492 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.5055 734.8445)\\\" x=\\\"0 5.5615 11.1231\\\">and</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 165.19 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 167.5463 734.8445)\\\" x=\\\"0 3.3301 8.8916 11.6699 17.2314 19.5117\\\">retain</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 192.6195 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 194.9758 734.8445)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 200.5373 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 202.8936 734.8445)\\\" x=\\\"0 5.5615 11.123 14.4531\\\">hard</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 222.9082 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 225.2645 734.8445)\\\" x=\\\"0 5 10.5615 16.123\\\">copy</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 246.3875 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 248.7437 734.8445)\\\" x=\\\"0 5.5615\\\">or</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.6353 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 259.9916 734.8445)\\\" x=\\\"0 5.5615 7.8418 13.4033 18.4033 21.1816 24.5117 30.0733 35.6348 37.915\\\">electronic</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.9066 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 305.5629 734.8445)\\\" x=\\\"0 5 10.5615 16.123\\\">copy</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 326.6859 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 329.3422 734.8445)\\\" x=\\\"0 5.5615\\\">of</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 337.682 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 340.3383 734.8445)\\\" x=\\\"0 2.7783 8.3398 10.6201\\\">this</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.9584 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 358.6147 734.8445)\\\" x=\\\"0 6.6699 13.8916\\\">ACH</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 379.7279 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 382.0842 734.8445)\\\" x=\\\"0 7.2217 12.7832 18.3447 20.625\\\">Debit</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 405.4875 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.8438 734.8445)\\\" x=\\\"0 6.6699 12.2314 15.0098 20.5713 26.1328 29.4629 31.7432 36.7432 42.3047 45.083 47.3633 52.9248 58.4863\\\">Authorization.</text></g><clipPath id=\\\"clip3-2\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip3-2)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.775 770.2 L 573.625 770.2 L 573.625 769.2 L 34.775 769.2 L 34.775 770.2 z \\\"/><path clip-path=\\\"url(#clip3-2)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.775 731.2449 L 573.625 731.2449 L 573.625 730.2449 L 34.775 730.2449 L 34.775 731.2449 z \\\"/><path clip-path=\\\"url(#clip3-2)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.625 769.2 L 573.625 769.2 L 573.625 731.2449 L 572.625 731.2449 L 572.625 769.2 z \\\"/><path clip-path=\\\"url(#clip3-2)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.775 769.2 L 35.775 769.2 L 35.775 731.2449 L 34.775 731.2449 L 34.775 769.2 z \\\"/><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 718.5262)\\\" x=\\\"0 7.22 15 22.22 25.55 34.99 41.66 44.44 51.11 57.78 65 67.78 70.44 79.88 85.44 88.1 93.66 99.22 101.88 107.44 113 115.78 118.44 125.66 131.22 133.5 138.5 144.06 146.72 152.28 157.84 161.17 163.83 167.16 169.44 175 180.56 183.34 188.34 191 196.56 199.89 202.55 205.88 211.44 219.77 225.33 230.89 233.17 238.73 243.73 246.39 251.95 257.51 263.07 268.63 271.96 274.62 277.4 282.96 285.24 290.24 292.9 299.57 305.13 308.46 314.02 319.58 327.91 333.47 339.03 341.81 344.47 350.03 355.03 357.69 360.47 366.03 368.31 370.59 372.87 378.43 383.99 386.65 389.43 394.99 397.65 403.21 408.21 413.77 417.1 422.1 424.38 429.38 434.94 437.6 440.38 445.94 451.5 459.83 462.49 468.05 470.83 473.49 479.05 484.61 489.61 492.27 495.05 497.33 505.66 511.22\\\">NON-WAIVER. We do not waive our rights or remedies under this Agreement by failing to exercise them at any time.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 705.2078)\\\" x=\\\"0 7.22 15 23.33 31.66 38.88 46.1 48.88 56.1 62.77 68.88 71.66 78.88 86.66 89.32 98.76 101.54 107.65 114.87 117.53 124.2 131.98 139.2 141.98 144.64 151.86 158.53 164.09 169.65 172.31 179.53 186.2 193.42 201.2 208.42 215.64 218.42 225.64 233.42 236.2 238.86 242.19 247.75 253.31 258.87 262.2 264.86 270.42 275.98 281.54 284.87 290.43 295.99 301.55\\\">COMMUNICATING WITH YOU; CALL RECORDING: (100) 000-0006</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 691.8895)\\\" x=\\\"0 6.67 13.89 20 22.78 30\\\">ENTIRE</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 69.7699 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 74.2589 691.8895)\\\" x=\\\"0 6.67 14.45 21.67 28.34 35.01 43.34 50.01 57.23 63.34\\\">AGREEMENT,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 140.377 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 144.866 691.8895)\\\" x=\\\"0 7.22\\\">NO</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 159.866 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 164.3549 691.8895)\\\" x=\\\"0 6.67 13.89 21.11 23.89 30 32.78 40.56 47.78 54.45\\\">ADDITIONAL</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 224.3647 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 228.8536 691.8895)\\\" x=\\\"0 6.67 13.89 21.67 30 32.78 39.45 46.12 52.79\\\">PROMISES,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 284.42 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 288.9089 691.8895)\\\" x=\\\"0 9.44 16.66 19.44 25.55 31.66 38.33\\\">WRITTEN</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 334.4558 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.9447 691.8895)\\\" x=\\\"0 6.67 13.89\\\">AND</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 360.058 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 364.547 691.8895)\\\" x=\\\"0 6.67 9.45 17.23 24.45 31.12\\\">SIGNED</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.8868 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.3757 691.8895)\\\" x=\\\"0 7.22 14.44 21.11 28.33 36.11 42.78\\\">CHANGES</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.8289 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 461.3178 691.8895)\\\" x=\\\"0 7.78 15 20.56 27.23\\\">ONLY.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 491.3276 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 495.8165 691.8895)\\\" x=\\\"0 6.11 11.67 13.95\\\">This</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 514.7667 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 519.2556 691.8895)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 680.5711)\\\" x=\\\"0 2.78 8.34 13.9 19.46 22.24 27.8 33.36\\\">together</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 69.7943 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 72.8324 680.5711)\\\" x=\\\"0 7.22 9.5 12.28\\\">with</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 90.6742 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 93.7124 680.5711)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 107.6137 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 110.6518 680.5711)\\\" x=\\\"0 5.56 8.34 13.9 19.46\\\">other</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 133.4448 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 136.4829 680.5711)\\\" x=\\\"0 5.56 11.12 16.12 21.68 30.01 35.57 41.13 43.91\\\">documents</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 185.3989 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 188.437 680.5711)\\\" x=\\\"0 3.33 8.89 11.67 17.23 20.56 23.89 29.45\\\">referred</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 223.4517 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 226.4898 680.5711)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 234.8296 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 237.8677 680.5711)\\\" x=\\\"0 5.56 11.12 14.45 20.01 22.29 27.85\\\">herein,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 268.5025 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 271.5406 680.5711)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24 28.52 34.08\\\">including</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 311.189 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 314.2271 680.5711)\\\" x=\\\"0 5.56 11.12\\\">but</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 328.1285 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 331.1666 680.5711)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 345.068 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 348.1061 680.5711)\\\" x=\\\"0 2.28 4.56 12.89 15.17 17.95 23.51\\\">limited</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 377.1783 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 380.2165 680.5711)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.5563 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 391.5944 680.5711)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 411.0475 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 414.0856 680.5711)\\\" x=\\\"0 5.56 11.12 14.45 19.45 25.01 30.57 35.57\\\">purchase</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 455.2233 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 458.2614 680.5711)\\\" x=\\\"0 3.33 8.89 13.89 19.45 21.73 27.29\\\">receipt</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 488.3347 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 491.3728 680.5711)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 508.0574 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 511.0955 680.5711)\\\" x=\\\"0 2.78 5.06 10.62 16.18\\\">final</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.5574 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 532.5955 680.5711)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 669.2527)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 66.4545 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 69.6146 669.2527)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 86.2991 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 89.4592 669.2527)\\\" x=\\\"0 5 10 15.56 21.12 26.68 32.24 34.52 40.08\\\">schedule,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 132.3254 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 135.4855 669.2527)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 142.7658 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 145.9259 669.2527)\\\" x=\\\"0 5.56 11.12\\\">our</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.379 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 163.5391 669.2527)\\\" x=\\\"0 5.56 11.12 13.9 16.18 19.51\\\">entire</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 188.6123 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 191.7724 669.2527)\\\" x=\\\"0 5.56 11.12 14.45 20.01 25.57 33.9 39.46 45.02 47.8\\\">agreement.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 242.3583 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 245.5184 669.2527)\\\" x=\\\"0 9.44\\\">We</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 260.5184 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 263.6785 669.2527)\\\" x=\\\"0 5.56 11.12 16.12\\\">have</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 285.363 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 288.5231 669.2527)\\\" x=\\\"0 8.33 13.89 19.45\\\">made</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 313.5378 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 316.6978 669.2527)\\\" x=\\\"0 5.56\\\">no</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 327.8209 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 330.981 669.2527)\\\" x=\\\"0 5.56 8.89 14.45 22.78 25.06 30.06 35.62\\\">promises</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.606 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 374.766 669.2527)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.1059 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 386.266 669.2527)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.389 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 405.5491 669.2527)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.4504 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 422.6105 669.2527)\\\" x=\\\"0 5 10.56 16.12 18.9 24.46 26.74 32.3 37.86\\\">contained</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.0383 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 469.1983 669.2527)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 477.0401 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 480.2002 669.2527)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 495.8203 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 498.9804 669.2527)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 547.8964 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 551.0565 669.2527)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.9481 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 563.1082 669.2527)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 657.9344)\\\" x=\\\"0 5 10.56 15.56 21.12 23.78 29.34 32.12 37.68 43.24 46.57 49.23 54.79 60.35 65.35 70.91 79.24 84.8 90.36 93.14 98.14 100.92 103.58 110.25 115.81 120.81 123.47 128.47 134.03 139.59 145.15 150.71 156.27 158.93 161.71 167.27 169.93 172.71 178.27 180.55 185.55 188.21 194.88 200.44 203.77 209.33 214.89 223.22 228.78 234.34 237.12 239.78 248.11 253.67 258.67 261.45 264.11 269.67 275.23 277.89 285.11 288.44 290.72 293.5 296.28 301.84 307.4 310.06 315.62 321.18 326.74 329.4 334.4 336.68 342.24 347.8 353.36 358.92 361.58 367.14 372.14 374.8 379.8 385.36 390.92 393.58 399.14 404.7 410.26 412.92 418.48 423.48\\\">such other documents. Any change to this Agreement must be written and signed by you and us.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 644.616)\\\" x=\\\"0 7.22 14.44 21.11 27.22 35 43.33 50\\\">CUSTOMER</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 90.3217 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 93.5458 644.616)\\\" x=\\\"0 8.33 16.11 23.33 26.11 32.22 35 41.67\\\">MODIFIED</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 142.4325 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 145.6566 644.616)\\\" x=\\\"0 6.67 13.34 20.01 28.34 35.01 42.23\\\">PAYMENT</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 193.9964 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 197.2205 644.616)\\\" x=\\\"0 7.22 13.89 20 26.67\\\">DATES</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 230.5603 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 233.7844 644.616)\\\" x=\\\"0 6.67 13.89\\\">AND</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 254.8977 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 258.1218 644.616)\\\" x=\\\"0 6.11 13.33 20 27.78 35 41.67 48.89 56.11 62.78\\\">FREQUENCY.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 323.6833 644.616)\\\" x=\\\"0 3.2241\\\">  </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 330.1315 644.616)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 347.3629 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 350.587 644.616)\\\" x=\\\"0 5.56 11.12 13.9 19.46\\\">dates</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.0499 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 378.274 644.616)\\\" x=\\\"0 2.78 8.34 11.67\\\">for,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 392.7222 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 395.9463 644.616)\\\" x=\\\"0 2.78 6.11 11.67 17.23 22.79 28.35 33.91 38.91\\\">frequency</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 439.8623 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 443.0864 644.616)\\\" x=\\\"0 5.56 8.34\\\">of,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.2046 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 457.4286 644.616)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57\\\">number</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 491.3349 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 494.559 644.616)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 502.8988 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 506.1229 644.616)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 522.8075 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 526.0316 644.616)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.386 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 562.6101 644.616)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 633.2977)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 68.1781 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 72.0521 633.2977)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46\\\">Payments</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 116.515 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 120.389 633.2977)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 128.2308 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 132.1048 633.2977)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 147.7249 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 151.5989 633.2977)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 200.5149 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 204.3889 633.2977)\\\" x=\\\"0 5.56 8.89\\\">are</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 218.842 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 222.716 633.2977)\\\" x=\\\"0 5.56 11.12 16.12 21.68\\\">based</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 249.9621 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 253.8361 633.2977)\\\" x=\\\"0 5.56 11.12 16.68\\\">upon</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.0822 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 279.9562 633.2977)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 293.8575 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 297.7315 633.2977)\\\" x=\\\"0 5.56 11.12 16.12 21.68 27.24\\\">payday</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.9776 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 333.8516 633.2977)\\\" x=\\\"0 2.28 7.84 10.62 16.18 19.51 27.84 33.4 36.18 38.46 44.02\\\">information</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.4366 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 387.3105 633.2977)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.4336 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.3076 633.2977)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29 32.85\\\">provided</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 445.7255 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 449.5995 633.2977)\\\" x=\\\"0 7.22 9.5 12.28\\\">with</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.4413 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 471.3153 633.2977)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 490.7684 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 494.6424 633.2977)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 34.58 36.86 42.42 47.98\\\">application.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 545.409 633.2977)\\\" x=\\\"0 3.874\\\">  </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.157 633.2977)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 621.9793)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 51.9916 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 55.3463 621.9793)\\\" x=\\\"0 5 10.56 16.12 18.9 24.46 29.46\\\">contact</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 87.5875 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 90.9422 621.9793)\\\" x=\\\"0 5.56 11.12\\\">our</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 105.3953 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 108.75 621.9793)\\\" x=\\\"0 5 10.56 15.56 18.34 23.9 32.23 37.79\\\">customer</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 149.873 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 153.2277 621.9793)\\\" x=\\\"0 5 10.56 13.89 18.89 21.17 26.17\\\">service</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 184.9611 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 188.3158 621.9793)\\\" x=\\\"0 5.56 11.12 16.68 22.24 25.57 28.35 36.68 42.24 47.8\\\">department</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.9017 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 242.2564 621.9793)\\\" x=\\\"0 5.56 8.89\\\">or,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 253.9263 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 257.281 621.9793)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.3396 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 265.6942 621.9793)\\\" x=\\\"0 5.56 10.56 16.12 18.4 20.68 26.24 31.8 34.08\\\">available</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 305.3427 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 308.6973 621.9793)\\\" x=\\\"0 5.56 10.56\\\">use</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 324.8204 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 328.1751 621.9793)\\\" x=\\\"0 5.56 11.12 13.9 19.46 27.79 33.35 36.13 41.69\\\">automated</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.4309 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 378.7856 621.9793)\\\" x=\\\"0 8.33 13.89 19.45 25.01 30.01\\\">means,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 411.5786 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 414.9332 621.9793)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.9918 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 423.3465 621.9793)\\\" x=\\\"0 5.56 10.56 16.12 18.4 20.68 26.24 31.8 34.08 39.64\\\">available,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 465.7733 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 469.128 621.9793)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 477.4678 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 480.8225 621.9793)\\\" x=\\\"0 3.33 8.89 14.45 20.01 25.57 30.57\\\">request</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 514.177 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 517.5316 621.9793)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 523.0932 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 526.4478 621.9793)\\\" x=\\\"0 5 10.56 16.12 21.68 27.24\\\">change</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.2555 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 562.6101 621.9793)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 610.6609)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.0014 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 51.6173 610.6609)\\\" x=\\\"0 5 10 15.56 21.12 26.68 32.24 34.52 40.08\\\">scheduled</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 97.2667 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 101.8826 610.6609)\\\" x=\\\"0 5.56 11.12 13.9 19.46\\\">dates</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 126.3454 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 130.9613 610.6609)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 142.6313 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 147.2471 610.6609)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 163.9317 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 168.5476 610.6609)\\\" x=\\\"0 2.78 6.11 11.67 17.23 22.79 28.35 33.91 38.91\\\">frequency</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 212.4636 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 217.0795 610.6609)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.4193 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 230.0352 610.6609)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 265.1134 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 269.7292 610.6609)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46 44.46\\\">Payments.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 316.9705 610.6609)\\\" x=\\\"0 4.6159\\\">  </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 326.2022 610.6609)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 331.7589 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 336.3748 610.6609)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 349.158 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 353.7739 610.6609)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.68\\\">accept</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.2367 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 387.8526 610.6609)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.4142 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 398.03 610.6609)\\\" x=\\\"0 5 10.56 16.12 21.68 27.24\\\">change</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.8377 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 435.4535 610.6609)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 443.2953 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 447.9112 610.6609)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 461.8126 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 466.4285 610.6609)\\\" x=\\\"0 5 10 15.56 21.12 26.68 32.24 34.52 40.08\\\">scheduled</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.0779 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 516.6938 610.6609)\\\" x=\\\"0 5.56 11.12 13.9 19.46\\\">dates</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 541.1567 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 545.7726 610.6609)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 557.4425 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 562.0584 610.6609)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 599.3426)\\\" x=\\\"0 2.78 6.11 11.67 17.23 22.79 28.35 33.91 38.91\\\">frequency</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 77.016 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 80.7576 599.3426)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 89.0974 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 92.839 599.3426)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 127.9171 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 131.6587 599.3426)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46 44.46\\\">Payments,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 178.8999 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 182.6415 599.3426)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 196.5429 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 200.2844 599.3426)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.6389 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 237.3805 599.3426)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.7204 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 249.4619 599.3426)\\\" x=\\\"0 5.56 11.12 16.12\\\">each</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 271.1465 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 274.8881 599.3426)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 309.9662 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 313.7078 599.3426)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68\\\">Payment</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 353.1707 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 356.9123 599.3426)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 370.9748 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 374.7163 599.3426)\\\" x=\\\"0 5.56 11.12 13.9 19.46 27.79 33.35 36.13 38.41 43.41 48.97 51.25 53.53\\\">automatically</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 433.2515 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 436.9931 599.3426)\\\" x=\\\"0 5.56\\\">be</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 448.1161 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 451.8577 599.3426)\\\" x=\\\"0 8.33 13.89 19.45 21.73 24.51 26.79 32.35\\\">modified</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.7727 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 493.5143 599.3426)\\\" x=\\\"0 5\\\">so</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 504.0758 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 507.8174 599.3426)\\\" x=\\\"0 2.78 8.34 13.9\\\">that</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 524.4971 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 528.2387 599.3426)\\\" x=\\\"0 2.78 8.34 13.9\\\">that</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 544.9184 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 548.6599 599.3426)\\\" x=\\\"0 6.11 11.67 14.45 20.01\\\">Total</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 588.0242)\\\" x=\\\"0 7.22 12.78 17.78 20.56\\\">Cost,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 56.4398 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 60.6221 588.0242)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 77.3067 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.489 588.0242)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 95.3903 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 99.5726 588.0242)\\\" x=\\\"0 5.56 11.12 14.45 16.73 22.29\\\">period</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 127.4291 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 131.6113 588.0242)\\\" x=\\\"0 5.56 10.56 16.12\\\">over</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 151.0645 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 155.2467 588.0242)\\\" x=\\\"0 7.22 12.78 15.06 20.06\\\">which</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 180.8717 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 185.054 588.0242)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 198.9554 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 203.1377 588.0242)\\\" x=\\\"0 6.11 11.67 14.45 20.01\\\">Total</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.4277 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 229.61 588.0242)\\\" x=\\\"0 7.22 12.78 17.78\\\">Cost</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 250.1715 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 254.3538 588.0242)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 261.6341 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 265.8163 588.0242)\\\" x=\\\"0 5.56 11.12 13.4 18.96\\\">paid,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 287.5595 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 291.7418 588.0242)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 305.8043 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 309.9866 588.0242)\\\" x=\\\"0 3.33 8.89 17.22 22.78 25.06\\\">remain</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 340.6116 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 344.7938 588.0242)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 358.6952 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 362.8775 588.0242)\\\" x=\\\"0 5 10.56 18.89\\\">same</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 387.3306 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 391.5129 588.0242)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.0744 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 406.2567 588.0242)\\\" x=\\\"0 5.56 8.89 11.17 16.73\\\">prior</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 426.3202 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 430.5025 588.0242)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 438.8423 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 443.0246 588.0242)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.9259 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 461.1082 588.0242)\\\" x=\\\"0 3.33 8.89 14.45 20.01 25.57 30.57 33.35 38.91\\\">requested</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 505.5858 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 509.768 588.0242)\\\" x=\\\"0 5 10.56 16.12 21.68 27.24 32.8\\\">change.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 545.354 588.0242)\\\" x=\\\"0 4.1823\\\">  </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.7185 588.0242)\\\" x=\\\"0 6.67 12.23\\\">Any</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 576.7059)\\\" x=\\\"0 3.33 8.89 11.67 17.23 22.79 27.79 33.35\\\">refences</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 71.4545 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 75.2825 576.7059)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 83.1243 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 86.9523 576.7059)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 102.5725 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 106.4005 576.7059)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 155.3165 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 159.1445 576.7059)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 167.4844 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 171.3124 576.7059)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 185.2138 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 189.0418 576.7059)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57 33.9\\\">number,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.7264 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 229.5544 576.7059)\\\" x=\\\"0 2.78 6.11 11.67 17.23 22.79 28.35 33.91 38.91 43.91\\\">frequency,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.2488 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 280.0768 576.7059)\\\" x=\\\"0 2.78 5.06 13.39 15.67 21.23\\\">timing</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 306.8688 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 310.6968 576.7059)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 327.3814 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 331.2094 576.7059)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 364.5639 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 368.3919 576.7059)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 376.7318 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 380.5598 576.7059)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 415.6379 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 419.466 576.7059)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46\\\">Payments</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 463.9289 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 467.7569 576.7059)\\\" x=\\\"0 3.33 8.89 11.67 17.23 20.56\\\">refers</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 493.3184 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 497.1465 576.7059)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 505.4863 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 509.3143 576.7059)\\\" x=\\\"0 5 10.56 15.56\\\">such</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 530.4374 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 534.2654 576.7059)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57 33.9\\\">number,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 565.3875)\\\" x=\\\"0 2.78 6.11 11.67 17.23 22.79 28.35 33.91 38.91 43.91 46.69 49.35 52.13 54.41 62.74 68.3 70.96 76.52 82.08 87.64 90.3 95.86 104.19 109.75 115.31 120.87 123.65 126.31 131.87 136.87 139.53 147.86 153.42 158.42 161.08 166.64 172.2 174.86 183.19 188.75 194.31 196.59 199.37 201.65 207.21 212.77 215.43 220.99 225.99 228.65 235.32 240.88 246.44 252 254.66 260.22 263 265.66 270.66 276.22 281.78 285.11 287.77 291.1 296.66 302.22 307.78 313.34 318.34 321.12\\\">frequency, time and amount as may be modified by Snap at your request.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 552.0691)\\\" x=\\\"0 6.67 13.34 20.01 26.68 33.9 40.57 47.24 50.02 55.58 58.36 64.47 71.14\\\">SEVERABILITY.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 107.016 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 110.2288 552.0691)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 115.7855 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 118.9983 552.0691)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 124.5598 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 127.7726 552.0691)\\\" x=\\\"0 5 10.56 16.12 19.45\\\">court</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 150.004 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 153.2169 552.0691)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 162.1085 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 165.3213 552.0691)\\\" x=\\\"0 5.56 8.34 13.9 19.46\\\">other</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 188.1142 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 191.327 552.0691)\\\" x=\\\"0 5.56 7.84 12.84 18.4 23.96 26.74\\\">dispute</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 223.6317 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 226.8445 552.0691)\\\" x=\\\"0 3.33 8.89 13.89 19.45 21.73 27.29 30.07 32.35 37.91\\\">resolution</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 270.3211 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 273.5339 552.0691)\\\" x=\\\"0 5.56 11.12 16.68\\\">body</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 295.2185 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 298.4313 552.0691)\\\" x=\\\"0 2.78 5.06 10.62 16.18\\\">finds</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.6129 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 322.8257 552.0691)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.9488 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 342.1616 552.0691)\\\" x=\\\"0 5.56 11.12 14.45\\\">part</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.393 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 362.6058 552.0691)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 370.9457 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 374.1585 552.0691)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 389.7786 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 392.9914 552.0691)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 441.9074 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 445.1202 552.0691)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 453.4601 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 456.6729 552.0691)\\\" x=\\\"0 5.56\\\">be</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.7959 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 471.0087 552.0691)\\\" x=\\\"0 5 10.56 12.84\\\">void</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.4121 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 492.6249 552.0691)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.5165 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 504.7293 552.0691)\\\" x=\\\"0 5.56 11.12 16.68 22.24 25.02 30.58 33.91 38.91 44.47 50.03 55.59 57.87 63.43\\\">u* D E M O *e,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 540.7508)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 48.7201 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 53.1394 540.7508)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 102.0554 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 106.4747 540.7508)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 113.755 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 118.1743 540.7508)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 126.5142 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 130.9335 540.7508)\\\" x=\\\"0 5.56\\\">be</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 142.0565 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 146.4758 540.7508)\\\" x=\\\"0 3.33 8.89 14.45\\\">read</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 166.4905 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 170.9097 540.7508)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 181.4713 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 185.8906 540.7508)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 190.9492 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 195.3685 540.7508)\\\" x=\\\"0 2.78 8.34 13.9\\\">that</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 212.0482 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 216.4675 540.7508)\\\" x=\\\"0 5.56 11.12 14.45\\\">part</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.6989 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 238.1182 540.7508)\\\" x=\\\"0 7.22 12.78 16.11\\\">were</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.793 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 264.2123 540.7508)\\\" x=\\\"0 5.56 11.12 16.12 21.68\\\">never</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 289.227 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 293.6463 540.7508)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.2078 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 303.6271 540.7508)\\\" x=\\\"0 5.56 11.12 14.45\\\">part</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 320.8585 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 325.2778 540.7508)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 333.6177 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.037 540.7508)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 353.6571 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 358.0764 540.7508)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 409.7707 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 414.19 540.7508)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 431.4215 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 435.8408 540.7508)\\\" x=\\\"0 3.33 8.89 13.89\\\">rest</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 452.5107 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 456.93 540.7508)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 465.2699 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 469.6891 540.7508)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 483.5905 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 488.0098 540.7508)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 536.9258 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 541.3451 540.7508)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 555.4076 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 559.8269 540.7508)\\\" x=\\\"0 5.56\\\">be</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 529.4324)\\\" x=\\\"0 5.56 11.12 13.9 19.46 22.79 27.79 33.35 38.91 44.47 46.75 52.31\\\">enforceable.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 516.1141)\\\" x=\\\"0 6.67 13.89 21.67 28.89 31.67 38.34 41.12 47.23 53.9\\\">PROHIBITED</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 94.2182 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 97.4569 516.1141)\\\" x=\\\"0 6.67 13.89 20 26.67\\\">ACTS.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 126.9051 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 130.1438 516.1141)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 147.9368 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 151.1754 516.1141)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 165.2379 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 168.4766 516.1141)\\\" x=\\\"0 5 10.56 16.12\\\">keep</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 190.1612 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 193.3999 516.1141)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 207.3013 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.5399 516.1141)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 248.3329 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 251.5716 516.1141)\\\" x=\\\"0 2.78 6.11 11.67\\\">free</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 268.8031 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 272.0417 516.1141)\\\" x=\\\"0 2.78 6.11 11.67\\\">from</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 292.0417 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 295.2804 516.1141)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 311.4035 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 314.6422 516.1141)\\\" x=\\\"0 2.28 4.56 10.12 15.68\\\">liens</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.3258 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.5645 516.1141)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 347.4561 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 350.6947 516.1141)\\\" x=\\\"0 5 7.28 12.84 15.12 23.45 28.45\\\">claims.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 381.9252 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 385.1639 516.1141)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.9569 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 406.1956 516.1141)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 420.2581 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 423.4968 516.1141)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 437.3981 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 440.6368 516.1141)\\\" x=\\\"0 5.56 11.12 18.34\\\">pawn</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 464.5431 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 467.7818 516.1141)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 476.6734 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 479.912 516.1141)\\\" x=\\\"0 5.56 7.84 13.4 18.96 24.52\\\">pledge</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.9999 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 513.2386 516.1141)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 527.14 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 530.3787 516.1141)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 504.7957)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 50.893 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 55.1549 504.7957)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 69.2174 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 73.4794 504.7957)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 87.3807 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 91.6427 504.7957)\\\" x=\\\"0 8.33 13.89 18.89\\\">move</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 116.0958 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 120.3578 504.7957)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 134.2592 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 138.5211 504.7957)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 176.3141 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 180.576 504.7957)\\\" x=\\\"0 5.56 11.12 13.9 18.9 21.18 26.74\\\">outside</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 212.8807 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 217.1427 504.7957)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.4825 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 229.7445 504.7957)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 243.6458 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 247.9078 504.7957)\\\" x=\\\"0 5.56 11.12 16.68 20.01 25.57 30.57\\\">address</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 283.484 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 287.7459 504.7957)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 303.869 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 308.1309 504.7957)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29 32.85\\\">provided</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 346.5489 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 350.8109 504.7957)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.1507 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 363.4127 504.7957)\\\" x=\\\"0 5.56 10.56\\\">us,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 376.7525 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 381.0145 504.7957)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 397.699 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 401.961 504.7957)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 412.5225 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 416.7845 504.7957)\\\" x=\\\"0 5.56 11.12 16.68 22.24 25.02 30.58 36.14\\\">updated,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 455.7103 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 459.9722 504.7957)\\\" x=\\\"0 5.56 11.12 13.4 18.96 23.96\\\">unless</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 488.9371 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 493.199 504.7957)\\\" x=\\\"0 2.28\\\">it</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 498.2576 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 502.5196 504.7957)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.7998 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 514.0618 504.7957)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 522.4016 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 526.6636 504.7957)\\\" x=\\\"0 3.33 8.89 11.67 17.23 20.56\\\">return</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.7867 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0486 504.7957)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 493.4773)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 70.893 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 74.775 493.4773)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 83.1148 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 86.9968 493.4773)\\\" x=\\\"0 5.56 10.56\\\">us,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 100.3367 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 104.2187 493.4773)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 113.1103 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 116.9923 493.4773)\\\" x=\\\"0 5.56 11.12\\\">our</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 131.4454 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 135.3274 493.4773)\\\" x=\\\"0 5.56 11.12 16.12 18.4 23.96 29.52 35.08 40.64\\\">designee.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 178.7551 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 182.6371 493.4773)\\\" x=\\\"0 6.11\\\">To</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 194.307 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 198.189 493.4773)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 212.0904 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 215.9724 493.4773)\\\" x=\\\"0 5.56 10.56 13.34 18.9 24.46\\\">extent</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 243.2136 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 247.0956 493.4773)\\\" x=\\\"0 5.56 10.56\\\">use</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 263.2187 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 267.1007 493.4773)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.4405 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 279.3225 493.4773)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 293.2239 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 297.1059 493.4773)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 334.8988 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.7808 493.4773)\\\" x=\\\"0 3.33 8.89 14.45 20.01 22.29 25.62 31.18\\\">requires</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 374.9674 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 378.8494 493.4773)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 394.9724 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 398.8544 493.4773)\\\" x=\\\"0 8.33 10.61 16.17 18.45 26.78 32.34\\\">minimum</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 439.5282 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 443.4102 493.4773)\\\" x=\\\"0 5 8.33 10.61 13.39 18.95 22.28 24.56\\\">criteria</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 473.5323 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 477.4143 493.4773)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.0842 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 492.9662 493.4773)\\\" x=\\\"0 5.56 10.56 16.12\\\">use,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 511.8676 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 515.7496 493.4773)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24 28.52 34.08\\\">including</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 555.3981 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 559.2801 493.4773)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 482.159)\\\" x=\\\"0 5.56 10.56 16.12 24.45 30.01 32.29\\\">example</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 70.9565 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 74.5435 482.159)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 80.105 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 83.6921 482.159)\\\" x=\\\"0 5.56 11.12 14.45 22.78 25.06 27.84\\\">permit,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 114.3123 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 117.8993 482.159)\\\" x=\\\"0 2.28 4.56 9.56 15.12 20.68 25.68 31.24\\\">license,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 151.9228 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 155.5098 482.159)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 164.4014 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 167.9885 482.159)\\\" x=\\\"0 8.33 10.61 16.17 18.45 26.78 32.34\\\">minimum</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 208.6624 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 212.2494 482.159)\\\" x=\\\"0 5.56 11.12 16.68\\\">age,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.7123 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 235.2994 482.159)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 251.4224 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 255.0095 482.159)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 269.072 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 272.6591 482.159)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 286.5605 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 290.1476 482.159)\\\" x=\\\"0 5.56 7.84 10.12 15.68\\\">allow</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 313.0528 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 316.6399 482.159)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 332.7629 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 336.35 482.159)\\\" x=\\\"0 2.28 10.61 16.17 19.5 25.06 30.62 36.18\\\">improper</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.8666 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 379.4537 482.159)\\\" x=\\\"0 5.56 10.56\\\">use</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 395.5767 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 399.1638 482.159)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 407.5037 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 411.0907 482.159)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 424.9921 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 428.5792 482.159)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 469.1505 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 472.7376 482.159)\\\" x=\\\"0 6.67\\\">As</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.4075 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 487.9946 482.159)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64 45.2\\\">applicable,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 535.9828 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 539.5699 482.159)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.2399 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 554.8269 482.159)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 470.8406)\\\" x=\\\"0 5.56 11.12 16.68 19.46\\\">boat,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 55.3412 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 60.5175 470.8406)\\\" x=\\\"0 8.33 13.89 16.67 22.23 25.56 27.84 32.84 38.4\\\">motorized</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 104.4823 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 109.6586 470.8406)\\\" x=\\\"0 5 10.56 16.12 18.4 23.4 25.68 31.24\\\">vehicle,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 143.6821 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.8584 470.8406)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 157.75 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 162.9263 470.8406)\\\" x=\\\"0 5.56 8.34 13.9 19.46 22.79 30.01 32.29 37.29\\\">otherwise</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 205.7827 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.959 470.8406)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64 45.2\\\">applicable,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 258.9473 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 264.1236 470.8406)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.2466 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 285.4229 470.8406)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.4854 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 304.6617 470.8406)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 318.5631 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 323.7394 470.8406)\\\" x=\\\"0 5.56 11.12 14.45 22.78 25.06\\\">permit</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.5812 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 356.7575 470.8406)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 372.8805 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 378.0568 470.8406)\\\" x=\\\"0 5.56 11.12 14.45 19.45 25.01 30.57\\\">person,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 411.4113 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 416.5876 470.8406)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24 28.52 34.08\\\">including</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.236 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 461.4123 470.8406)\\\" x=\\\"0 5 10.56 16.12 19.45 24.45 30.01 32.29 35.07\\\">yourself,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.2639 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 504.4402 470.8406)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.78 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 517.9563 470.8406)\\\" x=\\\"0 5.56 11.12 16.68 20.01 25.57 28.35\\\">operate</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.8723 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0486 470.8406)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 459.5223)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 70.893 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 75.2445 459.5223)\\\" x=\\\"0 7.22 12.78 15.06 17.34\\\">while</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 98.1497 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 102.5012 459.5223)\\\" x=\\\"0 5 10.56 15.56\\\">such</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 123.6243 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 127.9757 459.5223)\\\" x=\\\"0 5.56 11.12 14.45 19.45 25.01\\\">person</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 158.5519 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 162.9034 459.5223)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 170.1837 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 174.5351 459.5223)\\\" x=\\\"0 2.28 10.61 16.17 21.73 24.01 27.34 32.9\\\">impaired</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 213.0019 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 217.3534 459.5223)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 227.915 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 232.2664 459.5223)\\\" x=\\\"0 5.56 8.89 14.45 20.01 25.01\\\">drugs,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 260.0594 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 264.4109 459.5223)\\\" x=\\\"0 5.56 7.84 12.84 18.4 23.96 29.52\\\">alcohol</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 296.2175 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 300.569 459.5223)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 309.4606 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 313.8121 459.5223)\\\" x=\\\"0 2.78 6.11 11.67\\\">from</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 333.8121 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.1636 459.5223)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 354.2866 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 358.6381 459.5223)\\\" x=\\\"0 5.56 8.34 13.9 19.46\\\">other</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 381.4311 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 385.7826 459.5223)\\\" x=\\\"0 5 10.56 16.12 21.12 26.68\\\">cause.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 415.2455 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 419.5969 459.5223)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 437.3899 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 441.7414 459.5223)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 455.8039 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 460.1554 459.5223)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.0567 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 478.4082 459.5223)\\\" x=\\\"0 5.56 10.56\\\">use</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 494.5313 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 498.8828 459.5223)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.7841 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 517.1356 459.5223)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 554.9286 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 559.2801 459.5223)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 448.2039)\\\" x=\\\"0 5 10.56 18.89 27.22 32.78 36.11 41.11 43.39 48.95 51.23 53.89 59.45 65.01 68.34 73.9 79.46 84.46 90.02 95.02\\\">commercial purposes.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 434.8855)\\\" x=\\\"0 9.44 16.11 23.33 30.55 33.33 40.55 48.33\\\">WARNING:</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 84.2084 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 87.8242 434.8855)\\\" x=\\\"0 7.22 12.78 15.06 20.62 25.62\\\">Unless</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 118.4492 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 122.065 434.8855)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 138.188 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 141.8038 434.8855)\\\" x=\\\"0 5.56 11.12 16.12\\\">have</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 163.4883 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 167.1041 434.8855)\\\" x=\\\"0 5.56 10.56 16.12 21.68 23.96 27.29 32.85\\\">acquired</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 205.5221 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 209.1378 434.8855)\\\" x=\\\"0 5.56 12.78 18.34 23.9 27.23 32.23 37.79 40.07\\\">ownership</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 254.7775 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 258.3933 434.8855)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 266.7331 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 270.3489 434.8855)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 284.2503 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 287.866 434.8855)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 328.4373 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 332.0531 434.8855)\\\" x=\\\"0 5.56 8.34 11.12 16.68 25.01 30.57 33.35 35.63 41.19\\\">attempting</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 378.806 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 382.4218 434.8855)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 390.7616 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 394.3774 434.8855)\\\" x=\\\"0 5 10.56 12.84 15.12\\\">sell,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 412.2778 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 415.8936 434.8855)\\\" x=\\\"0 5.56 11.12 18.34 23.9\\\">pawn,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 442.5781 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 446.1939 434.8855)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 455.0855 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 458.7013 434.8855)\\\" x=\\\"0 2.28 4.56 10.12\\\">lien</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.3849 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 478.0007 434.8855)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 491.902 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 495.5178 434.8855)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 533.3108 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 536.9265 434.8855)\\\" x=\\\"0 5 7.28 12.84 15.12 20.68 23.46 29.02\\\">violates</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 423.5672)\\\" x=\\\"0 5 7.78 13.34 16.12 21.68 24.34 26.62 32.18 39.4\\\">state law.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 410.2488)\\\" x=\\\"0 6.67 13.34 20.01 22.79 30.57 37.79 46.12 52.79 60.01 66.12\\\">ASSIGNMENT.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 101.9965 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 104.9066 410.2488)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 122.6995 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 125.6096 410.2488)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 144.5012 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 147.4112 410.2488)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 161.3126 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 164.2227 410.2488)\\\" x=\\\"0 5.56 10.56 15.56 17.84 23.4\\\">assign</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 193.1875 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 196.0976 410.2488)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 211.7177 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 214.6278 410.2488)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 263.5438 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 266.4538 410.2488)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.3454 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 278.2555 410.2488)\\\" x=\\\"0 2.78 6.11 11.67 17.23 22.23 25.01 30.57\\\">transfer</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.1569 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 315.0669 410.2488)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 328.9683 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 331.8784 410.2488)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 369.6713 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 372.5814 410.2488)\\\" x=\\\"0 7.22 9.5 12.28 17.84 23.4 28.96\\\">without</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 404.3246 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.2346 410.2488)\\\" x=\\\"0 5.56 11.12\\\">our</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 421.6877 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 424.5978 410.2488)\\\" x=\\\"0 5.56 8.89 11.17 16.73\\\">prior</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 444.6613 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 447.5713 410.2488)\\\" x=\\\"0 7.22 10.55 12.83 15.61 18.39 23.95\\\">written</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 477.0831 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 479.9931 410.2488)\\\" x=\\\"0 5.56 11.12 14.45 22.78 25.06 30.06 35.06 37.34 42.9 48.46\\\">permission.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 531.2382 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 534.1483 410.2488)\\\" x=\\\"0 9.44\\\">We</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.1483 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 552.0584 410.2488)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 398.9305)\\\" x=\\\"0 5.56 10.56 15.56 17.84 23.4 28.96 31.62 37.18 39.46 41.74 44.4 49.96 52.74 55.4 60.96 66.52 69.85 72.51 75.84 78.12 83.68 89.24 92.02 97.02 99.68 105.24 110.8 116.36 121.92 125.25 127.91 130.69 136.25 138.53 143.53 146.19 152.86 158.42 161.75 167.31 172.87 181.2 186.76 192.32 195.1 197.88 200.54 207.21 212.77 217.77 220.43 225.99 231.55 234.88 239.88 245.44 251 253.66 260.88 266.44 269.1 274.66 279.66 284.66 286.94 292.5 298.06 300.72 303 305.78 308.44 311.22 316.78 319.44 327.77 333.33 338.33 340.99 344.32 349.88 355.44 360.44 365.44 367.72 373.28 378.84 381.5 383.78 386.56\\\">assign all of our ri* D E M O *this Agreement. Any person we assign it to may reassign it.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 385.6121)\\\" x=\\\"0 6.67 13.89 21.11 28.89 36.11\\\">ACCORD</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 76.435 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 79.3433 385.6121)\\\" x=\\\"0 6.67 13.89\\\">AND</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 100.4566 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 103.3649 385.6121)\\\" x=\\\"0 6.67 13.34 19.45 22.23 28.9 35.01 41.68 48.9 55.01 57.79 65.57 72.79\\\">SATISFACTION.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 178.9265 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 181.8348 385.6121)\\\" x=\\\"0 6.67 12.23\\\">Any</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 199.0662 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 201.9746 385.6121)\\\" x=\\\"0 5 7.78 13.34 16.12 21.68 30.01 35.57 41.13\\\">statement</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.8857 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 248.794 385.6121)\\\" x=\\\"0 5.56 10.56 15.56 21.12 29.45 35.01 40.57 46.13 51.13 53.41 58.97\\\">accompanying</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 313.3351 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 316.2434 385.6121)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.6965 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.6049 385.6121)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 376.9593 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 379.8677 385.6121)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.2075 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 391.1159 385.6121)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 405.0172 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.9256 385.6121)\\\" x=\\\"0 5.56 8.34 11.12 16.68 21.68\\\">effect</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 432.3836 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 435.2919 385.6121)\\\" x=\\\"0 2.78 8.34 13.9\\\">that</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 451.9716 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 454.88 385.6121)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.3331 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 477.2414 385.6121)\\\" x=\\\"0 5.56 11.12 13.4 18.96 24.52 29.52\\\">balance</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.3293 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 515.2376 385.6121)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 522.5179 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 525.4263 385.6121)\\\" x=\\\"0 5.56 11.12 13.4\\\">paid</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 544.3911 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 547.2995 385.6121)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 555.1412 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 558.0496 385.6121)\\\" x=\\\"0 2.78 8.34 10.62\\\">full</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 374.2937)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.1625 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 50.8231 374.2937)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 64.7245 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 68.3851 374.2937)\\\" x=\\\"0 5.56 7.84 13.4\\\">bind</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 87.35 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 91.0106 374.2937)\\\" x=\\\"0 5.56 10.56\\\">us.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 104.3505 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 108.0111 374.2937)\\\" x=\\\"0 7.78 13.34\\\">Our</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 124.681 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 128.3417 374.2937)\\\" x=\\\"0 5.56 11.12 16.68 22.24 27.24 29.52\\\">deposit</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.6464 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 164.307 374.2937)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 172.6468 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 176.3075 374.2937)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 192.4305 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 196.0912 374.2937)\\\" x=\\\"0 5 10.56 15.56\\\">such</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 217.2142 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 220.8748 374.2937)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.2293 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 262.89 374.2937)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.9525 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 280.6131 374.2937)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 294.5145 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 298.1751 374.2937)\\\" x=\\\"0 5 10.56 16.12 21.12 23.9 26.18 28.96 34.52 37.3\\\">constitute</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 341.0365 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 344.6971 374.2937)\\\" x=\\\"0 5.56\\\">an</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.8201 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 359.4808 374.2937)\\\" x=\\\"0 5.56 10.56 15.56 21.12 24.45\\\">accord</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 389.4954 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 393.1561 374.2937)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 409.8406 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 413.5013 374.2937)\\\" x=\\\"0 5 10.56 13.34 15.62 20.62 23.4 28.96 33.96 36.74 39.02 44.58 50.14\\\">satisfaction,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.4212 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 470.0818 374.2937)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.7664 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 490.427 374.2937)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 503.2102 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 506.8709 374.2937)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 525.7625 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 529.4231 374.2937)\\\" x=\\\"0 5.56 11.12 16.68 18.96\\\">apply</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.388 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0486 374.2937)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 362.9754)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57 38.35 41.01 43.79 49.35 52.01 57.01 62.57 68.13 71.46 74.12 79.68 84.68 89.68 95.24 100.8 106.36 109.14\\\">payment to your account.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 349.657)\\\" x=\\\"0 2.78 10 16.67 23.89 31.11 37.78 45 52.22 58.89 61.67 64.33 73.77 79.33 81.99 87.55 93.11 95.77 101.33 106.89 109.67 112.33 115.66 121.22 126.78 132.34 134.62 137.95 143.51 146.17 151.17 156.73 162.29 164.95 167.73 173.29 175.95 181.51 187.07 190.4 195.4 200.96 206.52 211.52 217.08 219.74 222.02 227.58 232.58 238.14 241.47 247.03 252.59 257.59 263.15 265.81 268.59 271.92 277.48 285.81 288.47 294.03 299.03 301.69 307.25 312.81 318.37 321.03 328.25 333.81 336.47 342.03 347.59 352.59 358.15 360.81 366.37 371.93 374.71 377.37 382.93 386.26 391.82 396.82 399.1 404.66 410.22 415.78 418.44 424 429.56 434.56 437.22 439.5 445.06 450.06 455.62 458.95 464.51 470.07 475.07 480.63 483.29 486.07 491.63 494.29 499.29 504.85 510.41\\\">INSURANCE. We do not require you to purchase insurance from us and we have not provided any insurance to you.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 336.3387)\\\" x=\\\"0 7.22 13.89 21.11 27.78 30.56 37.23 43.34 46.12 48.78 56 61.56 67.12 72.68 75.34 80.34 85.9 91.46 94.79 97.45 100.78 106.34 111.9 117.46 123.02 128.02 130.8 133.58 136.24 143.46 149.02 151.68 157.24 160.57 166.13 168.79 172.12 177.68 183.24 188.8 191.08 194.41 199.97 205.53 208.19 210.97 216.53 219.19 224.75 228.08 233.64 238.64 240.92 246.48 252.04 254.7 259.7 265.26 270.82 273.48 280.7 282.98 285.76 291.32 293.98 299.54 302.2 309.42 312.75 315.03 317.81 320.59 326.15 331.71 334.37 337.7 343.26 348.26 353.82 356.1 361.66 364.44 367.1 369.88 375.44 378.77 381.43 386.99 392.55 397.55 403.11 405.77 411.33 416.89 421.89 430.22 435.78 441.34 444.12 446.78 455.11 460.67 466.23 471.79\\\">RECEIPT. Upon your request, we are required to provide you with a written receipt for each payment made.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 323.0203)\\\" x=\\\"0 7.78 15.56 22.23 28.9 36.12 43.34 46.12 53.34\\\">GOVERNING</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 94.2182 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 97.2444 323.0203)\\\" x=\\\"0 5.56 12.23 21.67\\\">LAW.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 121.6926 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 124.7189 323.0203)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 141.9503 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 144.9765 323.0203)\\\" x=\\\"0 2.28 7.84\\\">law</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.04 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 163.0663 323.0203)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 171.4061 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 174.4323 323.0203)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 188.3337 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 191.3599 323.0203)\\\" x=\\\"0 5 7.78 13.34 16.12\\\">state</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 213.0396 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 216.0658 323.0203)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 223.9076 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 226.9339 323.0203)\\\" x=\\\"0 7.22 12.78 15.06 20.06\\\">which</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 252.5589 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 255.5851 323.0203)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 271.7082 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 274.7344 323.0203)\\\" x=\\\"0 3.33 8.89 13.89 16.17 21.73\\\">reside</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.0293 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 305.0555 323.0203)\\\" x=\\\"0 7.22 12.78 18.34\\\">when</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 328.9618 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 331.988 323.0203)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.1111 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 351.1373 323.0203)\\\" x=\\\"0 5 7.28 12.84 18.4 23.96\\\">signed</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.6637 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 383.6899 323.0203)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 399.31 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 402.3363 323.0203)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 451.2523 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 454.2785 323.0203)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 470.9631 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 473.9893 323.0203)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64\\\">applicable</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 519.1993 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 522.2255 323.0203)\\\" x=\\\"0 2.78 8.34 13.9 19.46 22.79 28.35\\\">federal</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.8603 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 555.8865 323.0203)\\\" x=\\\"0 2.28 7.84\\\">law</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 311.7019)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.1625 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 50.5142 311.7019)\\\" x=\\\"0 5.56 11.12 16.12 21.68 25.01\\\">govern</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 81.0904 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 84.4421 311.7019)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 98.3434 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 101.6951 311.7019)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 150.6111 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 153.9628 311.7019)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 170.6474 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 173.9991 311.7019)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 187.9005 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 191.2521 311.7019)\\\" x=\\\"0 2.28 7.84 10.62 16.18 19.51 25.07 28.4 33.96 36.74 42.3 45.08 47.36 52.92\\\">interpretation</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 249.7385 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 253.0902 311.7019)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 261.43 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 264.7817 311.7019)\\\" x=\\\"0 2.28 5.06\\\">it,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 272.6186 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 275.9703 311.7019)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.68\\\">except</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 305.4332 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 308.7849 311.7019)\\\" x=\\\"0 2.78 8.34 13.9\\\">that</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 325.4646 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 328.8163 311.7019)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 342.7176 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 346.0693 311.7019)\\\" x=\\\"0 6.11 11.67 17.23 22.79 26.12 31.68\\\">Federal</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.0342 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 383.3859 311.7019)\\\" x=\\\"0 6.67 10 15.56 17.84 20.62 23.95 29.51 32.29 34.57 40.13\\\">Arbitration</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 429.0792 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 432.4309 311.7019)\\\" x=\\\"0 6.67 11.67\\\">Act</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 446.8791 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 450.2308 311.7019)\\\" x=\\\"0 5.56 10.56 16.12 19.45 25.01 30.01 35.01 37.29\\\">expressly</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 492.5258 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 495.8775 311.7019)\\\" x=\\\"0 5.56 11.12 16.12 21.68 25.01 30.57\\\">governs</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 531.4536 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 534.8053 311.7019)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 548.7067 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 552.0584 311.7019)\\\" x=\\\"0 5 10.56 13.89\\\">Jury</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 300.3836)\\\" x=\\\"0 6.11 9.44 11.72 17.28 19.56 22.22 31.66 37.22 39.5 44.5 50.06 53.39 56.05 61.61 67.17 72.73 75.39 82.06 85.39 90.95 93.23 96.01 99.34 104.9 107.68 109.96 115.52 121.08 123.74 130.96 133.24 138.8 144.36 149.36 154.92 157.7 160.36 167.03 172.59 178.15 180.81 186.37 191.37 196.37 201.93 207.49 214.71 216.99 222.55 228.11 233.67 239.23 241.89 244.67 250.23 255.79 258.57 261.23 266.23 271.79 277.35 280.01 283.34 288.9 293.9 296.18 301.74 307.3 309.96 315.52 318.3 320.96 323.74 329.3 334.86 337.52 343.08 348.64 354.2 357.53 363.09 368.09 373.09 375.75 378.03 380.31 385.31 388.09 393.65 399.21 401.87 407.43 412.99 418.55 423.55 429.11 431.77 437.33 442.89 445.55 448.33 453.89 459.45 462.11 468.78 474.34 477.67 483.23 488.79 497.12 502.68 508.24 511.02 513.68 520.9 526.46 529.24 534.8\\\">Trial Waiver and Arbitration Clause. You acknowledge that you reside at the address listed above on the Agreement Date.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 287.0652)\\\" x=\\\"0 7.22 15 22.22 28.89 36.11 44.44 51.11\\\">CONSUMER</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 91.435 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 94.8938 287.0652)\\\" x=\\\"0 7.22 13.89 20.56 28.34 35.56 41.67\\\">REPORT.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 139.3421 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 142.8009 287.0652)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.5939 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 164.0527 287.0652)\\\" x=\\\"0 5.56 11.12 16.12\\\">have</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 185.7373 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 189.1961 287.0652)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 28.35 30.63 35.63 41.19\\\">authorized</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 235.9539 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 239.4128 287.0652)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 249.9743 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 253.4331 287.0652)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 261.773 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 265.2318 287.0652)\\\" x=\\\"0 5.56 11.12 13.9 19.46 21.74\\\">obtain</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 292.5365 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 295.9953 287.0652)\\\" x=\\\"0 5.56 11.12\\\">one</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.6799 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 316.1388 287.0652)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 325.0304 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 328.4892 287.0652)\\\" x=\\\"0 8.33 13.89 17.22\\\">more</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.2724 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 354.7312 287.0652)\\\" x=\\\"0 5 10.56 16.12 21.12 26.68 35.01 40.57\\\">consumer</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 398.6375 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 402.0963 287.0652)\\\" x=\\\"0 3.33 8.89 14.45 20.01 23.34 26.12\\\">reports</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 433.2194 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 436.6782 287.0652)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.8013 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 451.2601 287.0652)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.3832 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 470.842 287.0652)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 478.6838 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 482.1427 287.0652)\\\" x=\\\"0 5 10.56 16.12 21.68 27.24 32.24 35.02 37.3 42.86\\\">connection</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 530.5704 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 534.0292 287.0652)\\\" x=\\\"0 7.22 9.5 12.28\\\">with</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.871 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 555.3299 287.0652)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 275.7469)\\\" x=\\\"0 2.78 6.11 11.67 17.23 22.23 27.79 32.79 35.57 37.85 43.41 48.97\\\">transaction.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 262.4285)\\\" x=\\\"0 7.22 14.44 21.11 28.33 31.11\\\">CREDIT</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 70.3217 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 73.874 262.4285)\\\" x=\\\"0 7.22 13.89 20.56 28.34 35.56 41.67 44.45 51.67 59.45\\\">REPORTING.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.1005 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 139.6529 262.4285)\\\" x=\\\"0 9.44\\\">We</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 154.6529 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 158.2051 262.4285)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 177.0967 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 180.6491 262.4285)\\\" x=\\\"0 3.33 8.89 14.45 20.01 23.34\\\">report</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 206.7721 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.3244 262.4285)\\\" x=\\\"0 2.28 7.84 10.62 16.18 19.51 27.84 33.4 36.18 38.46 44.02\\\">information</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.9094 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 263.4617 262.4285)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 271.8015 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 275.3538 262.4285)\\\" x=\\\"0 5 8.33 13.89 19.45 21.73\\\">credit</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.8655 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 303.4178 262.4285)\\\" x=\\\"0 5.56 11.12 14.45 20.01 25.57 31.13\\\">bureaus</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 339.5555 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 343.1078 262.4285)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.9994 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 355.5517 262.4285)\\\" x=\\\"0 5.56 8.34 13.9 19.46\\\">other</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 378.3447 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 381.897 262.4285)\\\" x=\\\"0 2.78 8.34 10.62 13.95 19.51 22.84 28.4 33.96 37.29 40.07 42.35 47.91\\\">third-parties</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.812 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 438.3644 262.4285)\\\" x=\\\"0 5.56 11.12 16.68 22.24\\\">about</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 463.3888 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 466.9411 262.4285)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.3942 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 489.9465 262.4285)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.68 32.24 35.02\\\">account,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 527.7492 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 531.3015 262.4285)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24 28.52 34.08\\\">including</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 251.1102)\\\" x=\\\"0 2.28 7.84 10.62 16.18 18.84 24.4 27.73 30.39 38.72 41 46 51 56.56 62.12 64.78 70.34 75.9 80.9 89.23 94.79 100.35 103.13 108.13 110.91 113.57 119.13 124.69 130.25 132.91 138.47 144.03 149.03 151.69 157.25 162.81 167.81 170.09 172.87 175.15 180.15 185.71 188.37 193.93 197.26 199.92 205.48 211.04 216.6 222.16 224.94 227.22 232.22 237.78 240.44 246 251 256 261.56 267.12 272.68 275.46 278.12 280.4 285.96 288.74 294.3 297.63 305.96 311.52 314.3 316.58 322.14 327.7 330.36 338.69 344.25 349.25 351.91 357.47 363.03 365.69 369.02 374.58 377.36 379.64 385.2 390.2 392.98 398.54 404.1 406.76 409.04 414.6 417.26 422.26 427.82 433.38 436.71 439.37 444.37 447.7 453.26 458.82 461.1 463.88 466.54 469.87 475.43 480.99 486.55 489.88 492.66\\\">late or missed payments, and any positive or negative account information may be reflected in your credit report.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 237.7918)\\\" x=\\\"0 2.78 10 17.22 23.89 32.22 39.44 42.22 48.33 51.11 58.33 65 71.11 73.89 81.67 88.89\\\">INDEMNIFICATION.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 124.765 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 128.29 237.7918)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.083 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 149.608 237.7918)\\\" x=\\\"0 5.56 11.12 14.45 20.01\\\">agree</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 175.1842 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 178.7092 237.7918)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 187.0491 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 190.5741 237.7918)\\\" x=\\\"0 2.28 7.84 13.4 18.96 27.29 32.85 35.13 37.91\\\">indemnify</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.4891 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 237.0141 237.7918)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.5756 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 251.1006 237.7918)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 267.7852 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 271.3102 237.7918)\\\" x=\\\"0 5.56 11.12 13.4\\\">hold</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.2751 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 293.8001 237.7918)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 304.3616 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 307.8866 237.7918)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 324.5712 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 328.0962 237.7918)\\\" x=\\\"0 5.56 11.12\\\">our</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 342.5493 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 346.0743 237.7918)\\\" x=\\\"0 5.56 10.56 15.56 17.84 23.4 28.96 34.52 40.08 45.08\\\">assignees,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.9405 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 397.4655 237.7918)\\\" x=\\\"0 5.56 11.12 16.68 22.24 25.02 30.02\\\">agents,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.2683 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 433.7933 237.7918)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 450.4779 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 454.0029 237.7918)\\\" x=\\\"0 2.28 7.84 12.84 18.4 21.73 27.29 30.62\\\">insurers</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.6279 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 493.1529 237.7918)\\\" x=\\\"0 5.56 11.12 14.45 22.78 25.06 30.62 35.62\\\">harmless</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 533.7779 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 537.3029 237.7918)\\\" x=\\\"0 2.78 6.11 11.67\\\">from</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 557.3029 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 560.8279 237.7918)\\\" x=\\\"0 5.56 7.84\\\">all</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 226.4734)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57 36.13 41.13\\\">damages,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 77.016 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 80.4241 226.4734)\\\" x=\\\"0 2.28 7.84 10.12 15.68 19.01 21.29 26.85 31.85\\\">injuries,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 115.0579 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 118.466 226.4734)\\\" x=\\\"0 5 7.28 12.84 15.12 23.45 28.45\\\">claims,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 149.6965 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 153.1046 226.4734)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57 36.13 41.13\\\">demands,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 197.0206 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 200.4287 226.4734)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 217.1132 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 220.5214 226.4734)\\\" x=\\\"0 5.56 10.56 16.12 21.68 27.24 32.24 37.8 42.8\\\">expenses,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 266.1073 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 269.5154 226.4734)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24 28.52 34.08\\\">including</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 309.1638 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 312.5719 226.4734)\\\" x=\\\"0 3.33 8.89 14.45 19.45 25.01 30.57 36.13 41.69 43.97\\\">reasonable</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 362.1129 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 365.521 226.4734)\\\" x=\\\"0 5.56 8.34 11.12 16.68 20.01 25.57 31.13 36.13 38.04\\\">attorney&apos;s</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 408.563 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 411.9711 226.4734)\\\" x=\\\"0 2.78 8.34 13.9\\\">fees</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.8725 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 434.2806 226.4734)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 442.6204 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 446.0285 226.4734)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 459.9299 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 463.338 226.4734)\\\" x=\\\"0 5.56 10.56 13.34 18.9 24.46\\\">extent</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 490.5792 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 493.9873 226.4734)\\\" x=\\\"0 5.56 11.12 14.45 22.78 25.06 27.84 30.62 36.18\\\">permitted</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 535.7305 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 539.1386 226.4734)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.7001 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.1082 226.4734)\\\" x=\\\"0 2.28 7.84 15.06\\\">law,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 215.1551)\\\" x=\\\"0 5.56 8.89 11.17 16.17 18.45 24.01\\\">arising</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 62.6752 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 67.1149 215.1551)\\\" x=\\\"0 5.56 11.12\\\">out</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 81.0163 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 85.4561 215.1551)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 93.7959 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 98.2356 215.1551)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 112.137 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 116.5767 215.1551)\\\" x=\\\"0 5 10.56 16.12 21.68 23.96 26.74 29.02 34.58 40.14\\\">condition,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 159.5016 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 163.9413 215.1551)\\\" x=\\\"0 8.33 13.89 16.17 21.73 24.51 30.07 35.63 41.19 46.75 51.75 57.31\\\">maintenance,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 224.039 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 228.4787 215.1551)\\\" x=\\\"0 5.56 10.56\\\">use</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 244.6017 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 249.0415 215.1551)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.9331 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 262.3728 215.1551)\\\" x=\\\"0 5.56 11.12 16.68 20.01 25.57 28.35 30.63 36.19\\\">operation</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 304.1307 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 308.5704 215.1551)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 316.9102 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 321.35 215.1551)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.2514 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 339.6911 215.1551)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.2624 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 384.7021 215.1551)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24 28.52 34.08\\\">including</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 424.3506 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 428.7903 215.1551)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.3518 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 438.7916 215.1551)\\\" x=\\\"0 5 7.28 12.84 15.12\\\">claim</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 462.2437 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 466.6835 215.1551)\\\" x=\\\"0 5.56 11.12 16.68 22.24\\\">under</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 492.2597 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 496.6994 215.1551)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 510.6008 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 515.0405 215.1551)\\\" x=\\\"0 5 7.78 11.11 13.39 18.39\\\">strict</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 536.2075 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 540.6472 215.1551)\\\" x=\\\"0 2.28 4.56 10.12 15.68 17.96 20.24 22.52 25.3\\\">liability</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 203.8367)\\\" x=\\\"0 5.56 11.12 16.12 18.9 22.23 24.51 30.07 35.63\\\">doctrine.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 190.5184)\\\" x=\\\"0 7.2217 15 21.1084 23.8867 31.1084 37.7783 44.4482\\\">NOTICES.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 80.3266 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 82.9828 190.5184)\\\" x=\\\"0 7.2217 12.7832 15.5615 17.8418 22.8418 28.4033\\\">Notices</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 116.3861 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 119.0424 190.5184)\\\" x=\\\"0 8.3301 13.8916\\\">may</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 137.934 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 140.5902 190.5184)\\\" x=\\\"0 5.5615\\\">be</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 151.7133 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 154.3695 190.5184)\\\" x=\\\"0 5.5615 7.8418 12.8418 18.4033\\\">given</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 178.3344 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 180.9906 190.5184)\\\" x=\\\"0 5.5615 11.123 14.4531 19.4531 25.0146 30.5762 36.1377 38.418 40.6982\\\">personally</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 226.6889 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 229.3451 190.5184)\\\" x=\\\"0 5.5615\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.2367 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 240.893 190.5184)\\\" x=\\\"0 5 10.5615 16.123\\\">sent</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.7943 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 262.4506 190.5184)\\\" x=\\\"0 5.5615\\\">by</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 273.0121 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 275.6684 190.5184)\\\" x=\\\"0 2.7783 5.0586 8.3887 13.3887\\\">first</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.8353 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 294.4916 190.5184)\\\" x=\\\"0 5 7.2803 12.8418 17.8418\\\">class</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 317.3334 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 319.9896 190.5184)\\\" x=\\\"0 8.3301 13.8916 16.1719 18.4522\\\">mail.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 341.2201 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 343.8764 190.5184)\\\" x=\\\"0 7.2217 12.7832 15.5615 17.8418 22.8418\\\">Notice</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 372.2797 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 374.9359 190.5184)\\\" x=\\\"0 8.3301 13.8916 16.1719 18.4522 24.0137\\\">mailed</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 404.5111 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.1674 190.5184)\\\" x=\\\"0 2.7783\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 415.5072 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 418.1635 190.5184)\\\" x=\\\"0 5.5615\\\">us</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 428.725 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 431.3812 190.5184)\\\" x=\\\"0 8.3301 13.8916 18.8916\\\">must</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 453.0512 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 455.7074 190.5184)\\\" x=\\\"0 5.5615\\\">be</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.8305 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 469.4867 190.5184)\\\" x=\\\"0 5 10.5615 16.1231\\\">sent</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 488.3881 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 491.0443 190.5184)\\\" x=\\\"0 2.7783\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.3842 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 502.0404 190.5184)\\\" x=\\\"0 2.7783 8.3398\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 515.9418 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 518.5981 190.5184)\\\" x=\\\"0 5.5615 11.123 16.6846 20.0146 25.5762 30.5762\\\">address</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 179.2)\\\" x=\\\"0 5 10.5615 16.1231 23.3447\\\">shown</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 62.0063 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 64.6625 179.2)\\\" x=\\\"0 2.2803\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 72.5043 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 75.1606 179.2)\\\" x=\\\"0 2.7783 8.3398 10.6201\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 90.7807 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 93.4369 179.2)\\\" x=\\\"0 6.6699 12.2314 15.5615 21.123 26.6846 35.0146 40.5762 46.1377 48.916\\\">Agreement,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 145.1312 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 147.7875 179.2)\\\" x=\\\"0 5.6115\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 156.7791 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 159.4854 179.2)\\\" x=\\\"0 5.6115\\\">as</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 170.1469 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 172.8531 179.2)\\\" x=\\\"0 7.2717\\\">we</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 185.7363 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 188.4426 179.2)\\\" x=\\\"0 5.5615 8.3398 13.9014 19.4629 22.793 30.0147 32.2949 37.2949\\\">otherwise</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.299 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 233.9553 179.2)\\\" x=\\\"0 5.5615 7.8418 11.1719 16.7334 21.7334\\\">direct</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 258.467 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 261.1232 179.2)\\\" x=\\\"0 2.7783 6.1084 11.6699\\\">from</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.1232 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 283.7795 179.2)\\\" x=\\\"0 2.7783 5.0586 13.3887\\\">time</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.7297 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 305.3859 179.2)\\\" x=\\\"0 2.8283\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 313.8258 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 316.532 179.2)\\\" x=\\\"0 2.7783 5.0586 13.3887 18.9502\\\">time.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.2605 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 340.9168 179.2)\\\" x=\\\"0 7.2217 12.7832 15.5615 17.8418 22.8418 28.4033\\\">Notices</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 374.3201 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 376.9764 179.2)\\\" x=\\\"0 2.8283\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 385.4162 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 388.1225 179.2)\\\" x=\\\"0 5.6115\\\">us</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 398.784 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 401.4902 179.2)\\\" x=\\\"0 5.5615 8.8916\\\">are</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 415.9434 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 418.5996 179.2)\\\" x=\\\"0 5.5615 11.1231 16.6846 25.0147 30.5762\\\">deemed</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.7373 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 457.3936 179.2)\\\" x=\\\"0 5.5615 7.8418 12.8418 18.4033\\\">given</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 481.3584 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 484.0147 179.2)\\\" x=\\\"0 7.2217 12.7832 18.3447\\\">when</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 507.9209 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 510.5771 179.2)\\\" x=\\\"0 2.7783 8.3398 13.9014\\\">they</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.4785 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 532.1348 179.2)\\\" x=\\\"0 5.5615 8.8916\\\">are</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 167.8816)\\\" x=\\\"0 5.5615 11.1231 14.4531 19.4531 25.0146 30.5762 36.1377 38.418 40.6982\\\">personally</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 78.7982 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.4545 167.8816)\\\" x=\\\"0 5.5615 7.8418 12.8418 18.4033\\\">given</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 105.4193 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 108.0756 167.8816)\\\" x=\\\"0 5.5615\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 116.9672 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 119.6234 167.8816)\\\" x=\\\"0 5.5615 10.5615 13.3398 18.9014 24.4629 26.7432 29.0234\\\">actually</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 153.6469 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 156.3031 167.8816)\\\" x=\\\"0 3.3301 8.8916 13.8916 19.4531 21.7334 26.7334 32.2949\\\">received</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 194.1596 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 196.8158 167.8816)\\\" x=\\\"0 5.6615\\\">at</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 205.3557 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 208.1119 167.8816)\\\" x=\\\"0 5.6115 11.223\\\">our</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 222.715 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 225.4213 167.8816)\\\" x=\\\"0 5.5615 11.123 16.6846 20.0146 25.5762 30.5762 35.5762\\\">address.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 263.7758 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 266.432 167.8816)\\\" x=\\\"0 7.2217 12.7832 15.5615 17.8418 22.8418 28.4033\\\">Notices</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.8353 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 302.4916 167.8816)\\\" x=\\\"0 5.6115 8.9916\\\">are</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 317.0947 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 319.801 167.8816)\\\" x=\\\"0 5.5615 11.123 16.6846 25.0146 30.5762\\\">deemed</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.9387 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 358.5949 167.8816)\\\" x=\\\"0 5.5615 7.8418 12.8418 18.4033\\\">given</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 382.5598 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 385.216 167.8816)\\\" x=\\\"0 2.8783\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.7559 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 396.5121 167.8816)\\\" x=\\\"0 5.05 10.6615\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 412.7852 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 415.4914 167.8816)\\\" x=\\\"0 7.2717 12.8832 18.4947\\\">when</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 439.5977 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 442.3039 167.8816)\\\" x=\\\"0 2.8283 8.4398 14.0514\\\">they</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 461.4053 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 464.1115 167.8816)\\\" x=\\\"0 5.6115 8.9916\\\">are</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 478.7147 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 481.4209 167.8816)\\\" x=\\\"0 5.5615 11.1231 14.4531 19.4531 25.0146 30.5762 36.1377 38.418 40.6982\\\">personally</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 527.1191 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 529.7754 167.8816)\\\" x=\\\"0 5.5615 7.8418 12.8418 18.4033\\\">given</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.7402 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 556.3965 167.8816)\\\" x=\\\"0 5.6615\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 156.5633)\\\" x=\\\"0 7.2717 12.8832 18.4947\\\">when</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 57.2063 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 59.9125 156.5633)\\\" x=\\\"0 5.5615 7.8418 13.4033 18.4033 23.9648\\\">placed</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 89.4389 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 92.0951 156.5633)\\\" x=\\\"0 2.3803\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 100.1369 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 102.8932 156.5633)\\\" x=\\\"0 2.8283 8.4398\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 116.9445 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 119.6508 156.5633)\\\" x=\\\"0 8.3301 13.8916 16.1719 18.4522\\\">mail,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 140.8813 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 143.5375 156.5633)\\\" x=\\\"0 5.5615 11.123 16.6846 20.0147 25.5762 30.5762 35.5762 41.1377\\\">addressed</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 190.2367 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 192.893 156.5633)\\\" x=\\\"0 2.7783\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 201.2328 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 203.8891 156.5633)\\\" x=\\\"0 5 10.5615\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 220.0121 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 222.6684 156.5633)\\\" x=\\\"0 5.5615\\\">at</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.0082 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 233.6645 156.5633)\\\" x=\\\"0 5 10.5615 16.123\\\">your</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 253.1176 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 255.7738 156.5633)\\\" x=\\\"0 5.5615 11.1231 16.6846 20.0147 25.5762 30.5762\\\">address</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.35 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 294.0062 156.5633)\\\" x=\\\"0 2.7783 8.3399 13.9014\\\">then</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 313.4691 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 316.1254 156.5633)\\\" x=\\\"0 5 10.5615 16.1231 23.3447\\\">shown</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 345.0316 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 347.6879 156.5633)\\\" x=\\\"0 5.5615\\\">on</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 358.8109 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 361.4672 156.5633)\\\" x=\\\"0 5.5615 11.1231\\\">our</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.9203 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 378.5766 156.5633)\\\" x=\\\"0 3.3301 8.8916 13.8916 19.4531 22.7832 28.3447 33.3447\\\">records,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 414.6996 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 417.3559 156.5633)\\\" x=\\\"0 5.5615 10.5615 16.123\\\">even</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 439.0404 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 441.6967 156.5633)\\\" x=\\\"0 2.7783 8.3398 13.9014 19.4629 25.0244\\\">though</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 472.2826 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 474.9389 156.5633)\\\" x=\\\"0 5 10.5615\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 491.0619 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 493.7182 156.5633)\\\" x=\\\"0 8.3301 10.6104 16.1719 21.7334\\\">might</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 518.2299 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 520.8861 156.5633)\\\" x=\\\"0 5.5615 11.123\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 145.2449)\\\" x=\\\"0 5.5615 10.5615 13.3398 18.9014 24.4629 26.7432 29.0234\\\">actually</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 67.1234 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 69.7797 145.2449)\\\" x=\\\"0 3.3301 8.8916 13.8916 19.4531 21.7334 26.7334\\\">receive</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 102.0746 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 104.7309 145.2449)\\\" x=\\\"0 5.5615 11.123\\\">our</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 119.184 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 121.8402 145.2449)\\\" x=\\\"0 8.3301 13.8916 16.1719 18.4521 24.0137\\\">mailed</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 151.4154 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 154.0717 145.2449)\\\" x=\\\"0 5.5615 11.1231 13.9014 16.1816 21.1816 26.7432\\\">notice.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 183.5932 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 186.2494 145.2449)\\\" x=\\\"0 6.6699 12.2314\\\">You</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 204.0424 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 206.6986 145.2449)\\\" x=\\\"0 5.8115 11.6231 15.2031 21.0146\\\">agree</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.5248 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 236.4311 145.2449)\\\" x=\\\"0 2.9283 8.6398 14.3514\\\">that</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 253.7107 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 256.517 145.2449)\\\" x=\\\"0 5.8615\\\">30</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 268.24 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 271.1963 145.2449)\\\" x=\\\"0 5.7115 11.4231 16.5731 21.7231\\\">days&apos;</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 294.9785 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 297.7848 145.2449)\\\" x=\\\"0 5.6615 11.3231 14.2014 16.5816 21.6816\\\">notice</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 325.1279 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 327.8842 145.2449)\\\" x=\\\"0 2.5803\\\">is</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.7645 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.7207 145.2449)\\\" x=\\\"0 3.4301 9.0916 14.7531 19.8531 25.5146 31.1762 36.8377 42.4992 44.8795 50.541\\\">reasonable,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 392.14 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 394.8963 145.2449)\\\" x=\\\"0 5.6615 11.3231 13.7033 19.3648 24.4648\\\">unless</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 424.4611 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 427.2174 145.2449)\\\" x=\\\"0 5.15 8.0783 13.7899 16.7182\\\">state</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 449.6471 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 452.4533 145.2449)\\\" x=\\\"0 2.5303 8.3418\\\">law</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.2668 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 471.173 145.2449)\\\" x=\\\"0 3.4301 9.0916 14.7531 20.4146 22.7949 26.225 31.8865\\\">requires</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 508.1596 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 510.9158 145.2449)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 517.0773 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 520.3336 145.2449)\\\" x=\\\"0 2.3803 8.0418 13.7033 19.3649 25.0264\\\">longer</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 133.9266)\\\" x=\\\"0 5.6615 11.3231 14.7531 17.1334 22.7949 28.4564\\\">period,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 64.4348 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 67.191 133.9266)\\\" x=\\\"0 2.5803\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 75.6328 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 78.5891 133.9266)\\\" x=\\\"0 7.3717 13.0832 15.5135 20.6635\\\">which</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 104.9641 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 107.7703 133.9266)\\\" x=\\\"0 5.15 10.8615 16.0115\\\">case</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 129.4934 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 132.2996 133.9266)\\\" x=\\\"0 5.25 11.0615\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 149.1727 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 152.0789 133.9266)\\\" x=\\\"0 5.7115 11.423 14.9031 20.6146\\\">agree</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 178.4051 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 181.2113 133.9266)\\\" x=\\\"0 2.9283 8.6398 14.3514\\\">that</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 198.491 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 201.2973 133.9266)\\\" x=\\\"0 3.0283 8.8398\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 215.9486 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 218.8549 133.9266)\\\" x=\\\"0 5.05 7.8783 13.4898 16.3182 21.9297 25.3098 28.7898 34.5014 40.2129 45.9244 48.3547 51.8348 57.5463\\\">state-required</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 282.1127 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 284.9189 133.9266)\\\" x=\\\"0 5.6615 11.3231 14.7531 17.1334 22.7949\\\">period</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 313.3754 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 316.1316 133.9266)\\\" x=\\\"0 2.5803\\\">is</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 324.0119 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 329.5182 133.9266)\\\" x=\\\"0 3.3301 8.8916 14.4531 19.4531 25.0147 30.5762 36.1377 41.6992 43.9795 49.541\\\">reasonable.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 381.8375 133.9266)\\\" x=\\\"0 2.6562\\\">  </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 387.15 133.9266)\\\" x=\\\"0 6.6699 12.2314\\\">You</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 404.943 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.5992 133.9266)\\\" x=\\\"0 5.5615 11.123 13.9014 19.4629 25.0244 28.3545 30.6348 35.6348\\\">authorize</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 448.7955 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 451.4518 133.9266)\\\" x=\\\"0 5.5615\\\">us</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 462.0133 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 464.6695 133.9266)\\\" x=\\\"0 2.7783\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 473.0094 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 475.6656 133.9266)\\\" x=\\\"0 5 10.5615 16.123\\\">send</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 497.3502 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 500.0064 133.9266)\\\" x=\\\"0 5.5615 11.1231 13.9014 16.1816 21.1816 26.7432\\\">notices</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 531.7496 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 534.4059 133.9266)\\\" x=\\\"0 2.7783\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 542.7457 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 545.402 133.9266)\\\" x=\\\"0 5 10.5615 16.123\\\">your</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 122.6082)\\\" x=\\\"0 5.56 13.89 19.45 21.73 24.01 26.67 32.23 37.79 43.35 46.68 52.24 57.24 62.24 64.9 70.46 76.02 78.3 83.86 88.86 93.86 96.52 102.08 105.41 110.97 116.53 118.81 124.37 126.65 129.43 134.99 140.55 143.21 148.77 153.77 156.43 158.71 164.27 171.49\\\">email address unless prohibited by law.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 109.2898)\\\" x=\\\"0 5 12.22 19.44\\\">JURY</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 59.2133 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 63.5195 109.2898)\\\" x=\\\"0 6.11 13.33 16.11 22.78\\\">TRIAL</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 91.8594 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 96.1656 109.2898)\\\" x=\\\"0 9.44 16.11 18.89 25.56 32.23\\\">WAIVER</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 135.6138 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 139.9201 109.2898)\\\" x=\\\"0 6.67 13.89\\\">AND</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 161.0334 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 165.3396 109.2898)\\\" x=\\\"0 6.67 13.89 20.56 23.34 29.45 36.67 43.34 49.45 52.23 60.01\\\">ARBITRATION</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 232.5662 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 236.8724 109.2898)\\\" x=\\\"0 7.22 12.78 19.45 26.67 33.34 40.01\\\">CLAUSE.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 279.6654 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 283.9716 109.2898)\\\" x=\\\"0 6.67\\\">By</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 295.6415 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 299.9478 109.2898)\\\" x=\\\"0 5 7.28 12.84 18.4 20.68 26.24 31.8\\\">signing,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 334.5327 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.8389 109.2898)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 354.962 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 359.2682 109.2898)\\\" x=\\\"0 5.56 11.12 14.45 20.01\\\">agree</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 384.8444 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 389.1507 109.2898)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 397.4905 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 401.7967 109.2898)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 417.4168 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 421.7231 109.2898)\\\" x=\\\"0 5 10.56 13.89\\\">Jury</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 440.6147 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 444.9209 109.2898)\\\" x=\\\"0 6.11 9.44 11.72 17.28\\\">Trial</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 464.4815 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 468.7877 109.2898)\\\" x=\\\"0 9.44 15 17.28 22.28 27.84\\\">Waiver</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.9596 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 504.2658 109.2898)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 520.9504 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 525.2566 109.2898)\\\" x=\\\"0 6.67 10 15.56 17.84 20.62 23.95 29.51 32.29 34.57 40.13\\\">Arbitration</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 97.9715)\\\" x=\\\"0 7.22 9.5 15.06 20.62 25.62 31.18 33.84 37.17 40.5 47.72 50 55.56 61.12 66.12 71.68 75.01 78.34\\\">Clause (“Clause”).</text></g><clipPath id=\\\"clip3-3\\\"><path d=\\\"M 35 76 L 573 76 L 573 94 L 35 94 L 35 76 z \\\"/></clipPath><path clip-path=\\\"url(#clip3-3)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 93.8719 L 572.95 93.8719 L 572.95 76.8719 L 35.45 76.8719 L 35.45 93.8719 z \\\"/><path clip-path=\\\"url(#clip3-3)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.15 91.8719 L 572.45 91.8719 L 572.45 80.5535 L 39.15 80.5535 L 39.15 91.8719 z \\\"/><path clip-path=\\\"url(#clip3-3)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 253.9396 91.8719 L 357.9396 91.8719 L 357.9396 79.8719 L 253.9396 79.8719 L 253.9396 91.8719 z \\\"/><g clip-path=\\\"url(#clip3-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 253.9396 82.6531)\\\" x=\\\"0 6.67 12.23 17.23 22.23 27.79 31.12 36.68 42.24 47.8 53.36 56.02 61.58 67.14 72.7 75.36 82.03 87.03 92.59 98.15\\\">Background and Scope</text></g><clipPath id=\\\"clip3-4\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip3-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 94.3719 L 573.45 94.3719 L 573.45 93.3719 L 34.95 93.3719 L 34.95 94.3719 z \\\"/><path clip-path=\\\"url(#clip3-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 77.3719 L 573.45 77.3719 L 573.45 76.3719 L 34.95 76.3719 L 34.95 77.3719 z \\\"/><path clip-path=\\\"url(#clip3-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 93.3719 L 573.45 93.3719 L 573.45 77.3719 L 572.45 77.3719 L 572.45 93.3719 z \\\"/><path clip-path=\\\"url(#clip3-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 93.3719 L 35.95 93.3719 L 35.95 77.3719 L 34.95 77.3719 L 34.95 93.3719 z \\\"/><g clip-path=\\\"url(#clip3-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 36.5264)\\\" x=\\\"0 6.498 11.997 14.391 16.785 21.789 26.793 29.295 34.299 39.303 44.307 504 506.3906 508.7812 511.1719 513.5625 515.9531 518.3438 520.7344 523.125 525.5156\\\">UT  07/2019          </text></g><g clip-path=\\\"url(#clip3-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 26.3398)\\\" x=\\\"0 6.003 11.007 16.011 21.015\\\">Page </text></g><g clip-path=\\\"url(#clip3-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 55.8097 26.3398)\\\" x=\\\"0\\\">4</text></g><g clip-path=\\\"url(#clip3-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.815 26.3398)\\\" x=\\\"0 2.394 7.398 9.9\\\"> of </text></g><g clip-path=\\\"url(#clip3-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 73.1021 26.3398)\\\" x=\\\"0\\\">7</text></g><g clip-path=\\\"url(#clip3-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#d9d9d9\\\" style=\\\"font-family:f3-0; font-size:54pt; white-space:pre\\\" transform=\\\"matrix(0.707 0.707 0.707 -0.707 135.6027 198.5094)\\\" x=\\\"0 56.016 96.048 136.08 176.112 216.144 236.16 284.184 324.216 344.232 364.248 416.232 456.264 480.24\\\">* D E M O *are</text></g><g clip-path=\\\"url(#clip3-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#002ba6\\\" style=\\\"font-family:f3-0; font-size:9pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.932 772)\\\" x=\\\"0 9.336 16.008 22.68 29.352 36.024 39.36 47.364 54.036 57.372 60.708 69.372 76.044 80.04 86.712 90.048 94.044 97.38 104.712 111.384 115.38 118.716 126.72 132.72 139.392 142.056 148.728 155.4 158.736 161.4 168.072 174.744 178.08 187.416 194.088 196.752 202.752 206.088 210.084 213.42 220.092 223.428 226.764 233.436 239.436 242.772 246.108 249.444 258.108 266.772 275.436 278.772 285.444 292.116 298.788 305.46 312.132 315.468 321.468 328.14\\\">Qoppa Software - For Evaluation Only - https://www.qoppa.com</text></g></g></svg></svg></g></svg><br>\\n<?xml version='1.0' encoding='UTF-8'?><svg id=\\\"qoppa_document\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" version=\\\"1.1\\\" xmlns=\\\"http://www.w3.org/2000/svg\\\" xmlns:xlink=\\\"http://www.w3.org/1999/xlink\\\"><!-- jPDFWeb v2019R1.03 - Demo Version --><style>title p { display: block; }</style><g id=\\\"qoppa_viewxform\\\" transform=\\\"matrix(1 0 0 1 0 0)\\\"><style type=\\\"text/css\\\">@font-face {font-family:f4-0;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f4-1;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f4-2;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}</style><svg id=\\\"qoppa_page_p4\\\" class=\\\"qoppa_page\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\"><rect class=\\\"qoppa_pageborder\\\" x=\\\"0.5pt\\\" y=\\\"0.5pt\\\" width=\\\"611pt\\\" height=\\\"791pt\\\" fill=\\\"none\\\" /><svg class=\\\"qoppa_pagecontents\\\" x=\\\"0pt\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" viewBox=\\\"0 0 612 792\\\" ><g class=\\\"qoppa_contentstream\\\" transform=\\\"matrix(1 0 0 -1 0 792)\\\" fill=\\\"black\\\" stroke=\\\"black\\\" stroke-width=\\\"1\\\" stroke-linecap=\\\"butt\\\" stroke-linejoin=\\\"miter\\\" stroke-miterlimit=\\\"10\\\"><clipPath id=\\\"clip4-1\\\"><path d=\\\"M 35 748 L 130 748 L 130 770 L 35 770 L 35 748 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-1)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 769.7 L 129.35 769.7 L 129.35 748.5906 L 35.45 748.5906 L 35.45 769.7 z \\\"/><path clip-path=\\\"url(#clip4-1)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 767.7 L 125.25 767.7 L 125.25 758.6453 L 39.55 758.6453 L 39.55 767.7 z \\\"/><path clip-path=\\\"url(#clip4-1)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 47.9683 767.7 L 116.9684 767.7 L 116.9684 757.7 L 47.9683 757.7 L 47.9683 767.7 z \\\"/><g clip-path=\\\"url(#clip4-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.9684 760.325)\\\" x=\\\"0 7.552 12 16.448 18.672 20.8 22.624 26.624 28.752 33.2 35.864 40.312 42.136 44.36 47.024 51.472 53.696 55.52 59.968 64.416\\\">What is arbitration?</text></g><clipPath id=\\\"clip4-2\\\"><path d=\\\"M 129 748 L 206 748 L 206 770 L 129 770 L 129 748 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 138.6945 760.325)\\\" x=\\\"0 5.336 9.784 11.912 16.36 18.184 20.408 24.856 27.52 31.968 36.416 38.64 40.464 44.464 48.912 51.04 53.264\\\">An alternative to</text></g><g clip-path=\\\"url(#clip4-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 157.5461 751.2703)\\\" x=\\\"0 4 8.448 12.896 15.56 17.784\\\">court.</text></g><clipPath id=\\\"clip4-3\\\"><path d=\\\"M 205 748 L 573 748 L 573 770 L 205 770 L 205 748 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 760.325)\\\" x=\\\"0 2.224\\\">In</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 216.5219 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 220.3852 760.325)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 26.768 31.216 35.664\\\">arbitration,</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 258.2758 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 262.139 760.325)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 266.5883 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 270.4515 760.325)\\\" x=\\\"0 2.224 6.672 8.496 11.16\\\">third</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 286.0609 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 289.9242 760.325)\\\" x=\\\"0 4.448 8.896 11.56 13.784\\\">party</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 307.7094 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 311.5727 760.325)\\\" x=\\\"0 2.664 5.504 10.84 13.504 17.952 19.776 22 26.448 29.112 31.952\\\">(&quot;Arbiter&quot;)</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 346.1898 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 350.0531 760.325)\\\" x=\\\"0 4 8.448 10.272 14.272 18.72\\\">solves</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 372.7758 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 376.639 760.325)\\\" x=\\\"0 5.776 7.6 11.6 16.048 20.496 22.72 27.168\\\">Disputes</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 407.8109 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 411.6742 760.325)\\\" x=\\\"0 1.824\\\">in</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 417.9477 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 421.8109 760.325)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 426.2601 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 430.1234 760.325)\\\" x=\\\"0 4.448 8.896 13.344 16.008 17.832 22.28\\\">hearing</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.8578 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 460.7211 760.325)\\\" x=\\\"0 2.664 5.504 9.952 14.4 18.848 21.512 23.336 27.784 32.232 35.072 37.736\\\">(&quot;hearing&quot;).</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 500.6859 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 504.5492 760.325)\\\" x=\\\"0 5.336 9.784 14.232\\\">You,</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.0062 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 524.8695 760.325)\\\" x=\\\"0 2.664 7.112 8.936 13.384 15.608 20.056\\\">related</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.3773 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 553.2406 760.325)\\\" x=\\\"0 2.224 6.672 8.496 11.16\\\">third</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 751.2703)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056 24.056 26.28 28.408 32.856 37.304 41.752 43.88 49.656 54.104 56.328 58.456 64.232 68.68 70.504 74.504 78.952 81.08 83.304 87.752 92.2 94.328 96.992 98.816 103.264 107.712 109.936 112.064 114.288 118.736 120.864 125.312 129.76 131.888 134.112 138.56 140.688 144.688 149.136 153.584 156.248 158.472 160.696 162.824 168.16 172.608 176.608 181.056 183.184 186.024 190.472 194.92 197.584 199.808 201.632 206.08 210.08 212.92 215.048 217.272 221.72 224.384 228.832 233.28 235.408 237.232 241.68 244.344 248.344 250.472 252.696 255.36 257.184 261.632 263.456 267.456\\\">parties, and we, waive the right to go to court. Such &quot;parties&quot; forgo jury trials.</text></g><clipPath id=\\\"clip4-4\\\"><path d=\\\"M 35 727 L 130 727 L 130 749 L 35 749 L 35 727 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-4)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 748.5906 L 129.35 748.5906 L 129.35 727.4813 L 35.45 727.4813 L 35.45 748.5906 z \\\"/><path clip-path=\\\"url(#clip4-4)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 746.5906 L 125.25 746.5906 L 125.25 728.4813 L 39.55 728.4813 L 39.55 746.5906 z \\\"/><path clip-path=\\\"url(#clip4-4)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 41.6461 746.5906 L 123.6461 746.5906 L 123.6461 736.5906 L 41.6461 736.5906 L 41.6461 746.5906 z \\\"/><g clip-path=\\\"url(#clip4-4)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 41.6461 739.2156)\\\" x=\\\"0 2.224 6.224 8.352 10.176 12.4 14.528 18.976 20.8 23.024 25.248 29.696 32.36 36.808 41.256 43.48 45.608 47.832 50.496 54.944 61.608 63.736 67.736 72.184 76.632 79.296\\\">Is it different from court</text></g><path clip-path=\\\"url(#clip4-4)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 56.4156 737.5359 L 108.4156 737.5359 L 108.4156 727.5359 L 56.4156 727.5359 L 56.4156 737.5359 z \\\"/><g clip-path=\\\"url(#clip4-4)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 56.4156 730.1609)\\\" x=\\\"0 4.448 8.896 13.344 15.472 17.296 21.744 24.408 28.408 30.536 32.76 35.424 37.248 41.696 43.52 47.52\\\">and jury trials?</text></g><clipPath id=\\\"clip4-5\\\"><path d=\\\"M 129 727 L 206 727 L 206 749 L 129 749 L 129 727 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-5)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 159.5461 739.2156)\\\" x=\\\"0 5.336 9.784 13.784\\\">Yes.</text></g><clipPath id=\\\"clip4-6\\\"><path d=\\\"M 205 727 L 573 727 L 573 749 L 205 749 L 205 727 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 739.2156)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 223.6351 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 226.6552 739.2156)\\\" x=\\\"0 4.448 8.896 13.344 16.008 17.832 22.28\\\">hearing</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 253.3896 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 256.4096 739.2156)\\\" x=\\\"0 1.824\\\">is</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.2338 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 265.2539 739.2156)\\\" x=\\\"0 4.448 7.112 8.936 12.936 17.384 19.608\\\">private</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 289.3125 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 292.3325 739.2156)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 305.6802 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 308.7002 739.2156)\\\" x=\\\"0 1.824 6.272 10.272\\\">less</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 322.9737 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 325.9937 739.2156)\\\" x=\\\"0 2.224 6.672 9.336 16 20.448\\\">formal</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.2672 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 351.2872 739.2156)\\\" x=\\\"0 2.224 6.672 11.12\\\">than</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 366.8575 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 369.8776 739.2156)\\\" x=\\\"0 4 8.448 12.896 15.56 17.784\\\">court.</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 389.8854 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 392.9055 739.2156)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608\\\">Arbiters</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 420.5148 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 423.5349 739.2156)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 438.6482 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 441.6682 739.2156)\\\" x=\\\"0 1.824 3.648 10.312 12.136\\\">limit</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.0276 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 459.0477 739.2156)\\\" x=\\\"0 4.448 7.112 11.56 14.224 18.672 23.12 27.568 30.232 32.056 36.504\\\">pre-hearing</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 500.0086 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 503.0286 739.2156)\\\" x=\\\"0 2.224 6.672 10.672\\\">fact</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 515.9232 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 518.9432 739.2156)\\\" x=\\\"0 2.224 4.048 8.496 12.944 14.768 19.216 23.664\\\">finding,</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 544.8338 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 547.8539 739.2156)\\\" x=\\\"0 4 8.448 10.272 12.096 16.544\\\">called</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 730.1609)\\\" x=\\\"0 2.84 7.288 9.112 13.112 17.112 21.56 25.56 30.008 32.672 36.672 38.896 41.736 43.864 48.752 53.2 57.648 59.776 64.224 68.672 72.672 74.496 78.496 80.32 84.768 89.216 91.344 93.168 97.168 99.296 101.52 103.344 107.792 112.24 114.064 116.288 118.416 124.192 128.64 133.088 135.752 137.976 141.976 144.104 146.768 151.216 153.88 158.328 160.152 164.152 166.28 170.728 174.728 179.176 181.84 184.064 188.512 191.176 195.624 197.752 203.088 205.752 210.2 212.024 214.248 218.696 221.36 225.36\\\">&quot;discovery.&quot; The decision is final. Courts rarely overturn Arbiters.</text></g><clipPath id=\\\"clip4-7\\\"><path d=\\\"M 35 706 L 130 706 L 130 728 L 35 728 L 35 706 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-7)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 727.4813 L 129.35 727.4813 L 129.35 706.3719 L 35.45 706.3719 L 35.45 727.4813 z \\\"/><path clip-path=\\\"url(#clip4-7)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 725.4813 L 125.25 725.4813 L 125.25 707.3719 L 39.55 707.3719 L 39.55 725.4813 z \\\"/><path clip-path=\\\"url(#clip4-7)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 44.2789 725.4813 L 121.2789 725.4813 L 121.2789 715.4813 L 44.2789 715.4813 L 44.2789 725.4813 z \\\"/><g clip-path=\\\"url(#clip4-7)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 44.2789 718.1062)\\\" x=\\\"0 7.552 12 16.448 18.576 23.024 27.472 31.92 35.92 38.048 40.272 44.72 49.168 51.296 57.072 58.896 63.344 67.792 71.792\\\">Who does the Clause</text></g><path clip-path=\\\"url(#clip4-7)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 70.3941 716.4266 L 95.3941 716.4266 L 95.3941 706.4266 L 70.3941 706.4266 L 70.3941 716.4266 z \\\"/><g clip-path=\\\"url(#clip4-7)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 70.3941 709.0516)\\\" x=\\\"0 4 8.448 12.448 16.896 19.56\\\">cover?</text></g><clipPath id=\\\"clip4-8\\\"><path d=\\\"M 129 706 L 206 706 L 206 728 L 129 728 L 129 706 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 144.5226 718.1062)\\\" x=\\\"0 5.336 9.784 14.232 16.456 18.584 24.36 28.36 30.584 32.712 37.16 41.608\\\">You, Us, and</text></g><g clip-path=\\\"url(#clip4-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 154.4348 709.0516)\\\" x=\\\"0 6.224 8.448 12.896 17.344 20.008 24.008\\\">Others.</text></g><clipPath id=\\\"clip4-9\\\"><path d=\\\"M 205 706 L 573 706 L 573 728 L 205 728 L 205 706 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 718.1062)\\\" x=\\\"0 4.888 9.336 11.16\\\">This</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.0101 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 228.5163 718.1062)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496\\\">Clause</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 253.4655 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 256.9716 718.1062)\\\" x=\\\"0 4.448 8.896 12.896 17.344 20.008 24.456\\\">governs</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 285.4326 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 288.9387 718.1062)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 300.0598 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 303.5659 718.1062)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056 24.056\\\">parties,</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.8472 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 333.3533 718.1062)\\\" x=\\\"0 2.224 6.672 11.12 12.944\\\">their</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.9627 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 352.4688 718.1062)\\\" x=\\\"0 4.448 8.896 10.72 13.384 17.384\\\">heirs,</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 372.0782 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 375.5844 718.1062)\\\" x=\\\"0 4 8.448 12.448 16.448 20.896 24.896 28.896 33.344 36.008 40.008\\\">successors,</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 417.8187 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 421.3249 718.1062)\\\" x=\\\"0 4.448 8.448 12.448 14.272 18.72 23.168 27.168\\\">assigns,</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 450.7194 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 454.2255 718.1062)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.5732 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 471.0793 718.1062)\\\" x=\\\"0 2.224 6.672 8.496 11.16\\\">third</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.6887 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 490.1949 718.1062)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056\\\">parties</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 514.2535 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 517.7596 718.1062)\\\" x=\\\"0 2.664 7.112 8.936 13.384 15.608 20.056\\\">related</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 542.2674 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 545.7735 718.1062)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.4454 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 555.9515 718.1062)\\\" x=\\\"0 4.448 8.896\\\">any</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 709.0516)\\\" x=\\\"0 5.776 7.6 11.6 16.048 20.496 22.72 27.168\\\">Dispute.</text></g><clipPath id=\\\"clip4-10\\\"><path d=\\\"M 35 630 L 130 630 L 130 707 L 35 707 L 35 630 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-10)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 706.3719 L 129.35 706.3719 L 129.35 630.9344 L 35.45 630.9344 L 35.45 706.3719 z \\\"/><path clip-path=\\\"url(#clip4-10)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 704.3719 L 125.25 704.3719 L 125.25 686.2625 L 39.55 686.2625 L 39.55 704.3719 z \\\"/><path clip-path=\\\"url(#clip4-10)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 47.7711 704.3719 L 117.7711 704.3719 L 117.7711 694.3719 L 47.7711 694.3719 L 47.7711 704.3719 z \\\"/><g clip-path=\\\"url(#clip4-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.7711 696.9969)\\\" x=\\\"0 7.552 12 13.824 17.824 22.272 24.4 30.176 32 36 40.448 44.896 47.12 51.568 55.568 57.696 62.144 64.808\\\">Which Disputes are</text></g><path clip-path=\\\"url(#clip4-10)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 65.9449 695.3172 L 98.9449 695.3172 L 98.9449 685.3172 L 65.9449 685.3172 L 65.9449 695.3172 z \\\"/><g clip-path=\\\"url(#clip4-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 65.9449 687.9422)\\\" x=\\\"0 4 8.448 12.448 16.896 19.56 24.008 28.456\\\">covered?</text></g><clipPath id=\\\"clip4-11\\\"><path d=\\\"M 129 630 L 206 630 L 206 707 L 129 707 L 129 630 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 145.298 696.9969)\\\" x=\\\"0 5.336 7.16 8.984 11.112 16.888 18.712 22.712 27.16 31.608 33.832 38.28 42.28\\\">All Disputes.</text></g><clipPath id=\\\"clip4-12\\\"><path d=\\\"M 205 630 L 573 630 L 573 707 L 205 707 L 205 630 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 696.9969)\\\" x=\\\"0 2.224\\\">In</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 216.5219 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 220.3165 696.9969)\\\" x=\\\"0 2.224 6.672 8.496\\\">this</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 232.8126 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 236.6072 696.9969)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496 24.944\\\">Clause,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 263.7791 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 267.5738 696.9969)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 278.6949 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 282.4895 696.9969)\\\" x=\\\"0 5.776 10.224 12.888\\\">word</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.8293 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 303.624 696.9969)\\\" x=\\\"0 2.84 8.616 10.44 14.44 18.888 23.336 25.56 30.008 34.008\\\">&quot;Disputes&quot;</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 340.4755 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 344.2702 696.9969)\\\" x=\\\"0 4.448 8.896\\\">has</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 357.1686 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 360.9633 696.9969)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 372.0844 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 375.879 696.9969)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456 24.904 28.904\\\">broadest</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 407.0118 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 410.8065 696.9969)\\\" x=\\\"0 4.448 8.896 12.896 16.896 18.72 23.168 24.992\\\">possible</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 440.2518 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 444.0464 696.9969)\\\" x=\\\"0 6.664 11.112 15.56 20.008 21.832 26.28 30.728\\\">meaning.</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 477.0034 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 480.7981 696.9969)\\\" x=\\\"0 4.888 9.336 11.16\\\">This</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 495.9582 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 499.7529 696.9969)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496\\\">Clause</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 524.7021 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 528.4968 696.9969)\\\" x=\\\"0 4.448 8.896 12.896 17.344 20.008 24.456\\\">governs</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 556.9577 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 560.7523 696.9969)\\\" x=\\\"0 4.448 6.272\\\">all</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 687.9422)\\\" x=\\\"0 2.84 8.616 10.44 14.44 18.888 23.336 25.56 30.008 34.008\\\">&quot;Disputes&quot;</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 246.7015 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 248.8785 687.9422)\\\" x=\\\"0 1.824 6.272 10.272 14.72 16.544 20.544 22.368 26.816\\\">involving</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.148 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 282.3249 687.9422)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 293.446 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 295.6229 687.9422)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056 24.056\\\">parties.</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 321.9041 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 324.081 687.9422)\\\" x=\\\"0 4.888 9.336 11.16\\\">This</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 339.2412 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 341.4181 687.9422)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44\\\">includes</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 370.8634 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 373.0403 687.9422)\\\" x=\\\"0 4.448 6.272\\\">all</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 381.1379 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 383.3148 687.9422)\\\" x=\\\"0 4 5.824 10.272 12.096 18.76\\\">claims</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 406.0765 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 408.2534 687.9422)\\\" x=\\\"0 4.448 8.448 12.896\\\">even</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 425.6011 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 427.778 687.9422)\\\" x=\\\"0 1.824 6.272 10.72 12.544 15.208 19.656 23.656 25.88 27.704\\\">indirectly</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 459.485 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 461.6619 687.9422)\\\" x=\\\"0 2.664 7.112 8.936 13.384 15.608 20.056\\\">related</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.1698 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 488.3466 687.9422)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 495.0185 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 497.1954 687.9422)\\\" x=\\\"0 4 8.448 12.896\\\">your</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.7579 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 514.9348 687.9422)\\\" x=\\\"0 4.448 8.896 13.344 15.168 16.992 20.992 25.44 27.664 29.488 33.936\\\">application</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.3254 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 555.5023 687.9422)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 678.8875)\\\" x=\\\"0 4.448 8.896 11.56 16.008 20.456 27.12 31.568 36.016 38.24\\\">agreements</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 252.0961 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 254.4013 678.8875)\\\" x=\\\"0 5.776 7.6 9.824\\\">with</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 268.6747 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 270.9799 678.8875)\\\" x=\\\"0 4.448 8.448\\\">us.</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.6518 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 283.957 678.8875)\\\" x=\\\"0 4.888 9.336 11.16\\\">This</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.1172 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 301.4224 678.8875)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44\\\">includes</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 330.8677 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 333.1729 678.8875)\\\" x=\\\"0 4 5.824 10.272 12.096 18.76\\\">claims</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.9346 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 358.2398 678.8875)\\\" x=\\\"0 2.664 7.112 8.936 13.384 15.608 20.056\\\">related</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 382.7477 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 385.0529 678.8875)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 391.7247 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 394.0299 678.8875)\\\" x=\\\"0 1.824 6.272 8.496 12.944 15.608 22.272 26.72 28.944 30.768 35.216\\\">information</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 433.6979 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 436.0031 678.8875)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 448.9016 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 451.2068 678.8875)\\\" x=\\\"0 4.448 7.112 11.56 15.56 17.384 21.832 26.28 30.28 32.104\\\">previously</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 487.3161 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 489.6213 678.8875)\\\" x=\\\"0 4.448 8.896 12.896\\\">gave</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 506.969 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 509.2742 678.8875)\\\" x=\\\"0 4.448 8.448\\\">us.</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 519.9461 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 522.2513 678.8875)\\\" x=\\\"0 2.224\\\">It</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.6966 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 529.0018 678.8875)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44\\\">includes</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 558.4471 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 560.7523 678.8875)\\\" x=\\\"0 4.448 6.272\\\">all</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 669.8328)\\\" x=\\\"0 4.448 8.896 12.896\\\">past</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 224.9711 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 227.1634 669.8328)\\\" x=\\\"0 4.448 8.896 11.56 16.008 20.456 27.12 31.568 36.016 38.24 42.24\\\">agreements.</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 271.6321 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 273.8245 669.8328)\\\" x=\\\"0 2.224\\\">It</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 278.2698 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 280.4621 669.8328)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44 29.44\\\">includes,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.13 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 314.3223 669.8328)\\\" x=\\\"0 4.448\\\">as</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 322.7716 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 324.9639 669.8328)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 340.0772 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 342.2695 669.8328)\\\" x=\\\"0 4.448\\\">be</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.1679 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 353.3602 669.8328)\\\" x=\\\"0 4.448 8.896 13.344 15.168 16.992 20.992 25.44 29.888 31.712 36.16\\\">applicable,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 391.7508 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 393.9431 669.8328)\\\" x=\\\"0 4.448 8.896\\\">any</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 406.8416 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 409.0339 669.8328)\\\" x=\\\"0 4.448 8.896 13.344 15.168 17.392 19.216 23.664 28.112 32.56\\\">additional</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 443.4245 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 445.6168 669.8328)\\\" x=\\\"0 4.448 8.896 11.56 13.384 17.832 22.28 26.28\\\">periods,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.1246 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 476.3169 669.8328)\\\" x=\\\"0 4.448 8.448 10.672 15.12 19.568 23.568 25.392 29.84 34.288 38.288\\\">extensions,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 516.8326 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 519.0249 669.8328)\\\" x=\\\"0 2.664 7.112 11.56 16.008 21.784 26.232 28.056 32.056\\\">renewals,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.31 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 555.5023 669.8328)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 660.7781)\\\" x=\\\"0 4.448 6.272 10.72 15.168 19.168\\\">plans.</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.2445 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 233.5225 660.7781)\\\" x=\\\"0 2.224\\\">It</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 237.9678 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 240.2458 660.7781)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44\\\">includes</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 269.6911 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 271.9691 660.7781)\\\" x=\\\"0 4 5.824 10.272 12.096 18.76\\\">claims</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 294.7308 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 297.0088 660.7781)\\\" x=\\\"0 2.664 7.112 8.936 13.384 15.608 20.056\\\">related</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 321.5167 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 323.7946 660.7781)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 330.4665 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 332.7445 660.7781)\\\" x=\\\"0 4.448 8.896 15.56 20.008 24.456 28.904\\\">damaged</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 366.1039 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 368.3819 660.7781)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456 23.12 25.344 29.344\\\">property,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 399.9522 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 402.2302 660.7781)\\\" x=\\\"0 4.448 8.896 12.896 17.344 21.792 24.016\\\">buyout,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 428.4724 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 430.7504 660.7781)\\\" x=\\\"0 2.664 7.112 8.936 13.384 17.384 19.608 24.056 26.28 30.728 37.392 41.84 46.288 48.512\\\">r* D E M O *t,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 481.4887 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 483.7667 660.7781)\\\" x=\\\"0 1.824 6.272 10.272 14.272\\\">loss,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 500.2627 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 502.5408 660.7781)\\\" x=\\\"0 4.448 8.896 15.56 20.008 24.456 28.904\\\">damage,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 533.6736 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 535.9516 660.7781)\\\" x=\\\"0 5.776 10.224 12.888 15.552 20 24.448 26.672 30.672\\\">warranty,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 651.7234)\\\" x=\\\"0 6.664 11.112 12.936 17.384 19.608 24.056 28.504 32.952 37.4 41.4 45.848\\\">maintenance,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.9281 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 260.595 651.7234)\\\" x=\\\"0 4 8.448 10.272 12.096 16.544 20.544 22.768 24.592 29.04 33.488\\\">collection,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 296.3099 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 298.9768 651.7234)\\\" x=\\\"0 4.448 8.896 12.896 16.896 21.344 25.344 29.344 31.168 35.616 40.064\\\">possession,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 341.2697 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 343.9366 651.7234)\\\" x=\\\"0 4.448 7.112 8.936 12.936 17.384 21.384 25.384\\\">privacy,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.546 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 374.2129 651.7234)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 387.5606 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 390.2275 651.7234)\\\" x=\\\"0 4 8.448 12.448 14.672 19.12 25.784 30.232\\\">customer</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 423.1259 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 425.7928 651.7234)\\\" x=\\\"0 1.824 6.272 8.496 12.944 15.608 22.272 26.72 28.944 30.768 35.216 39.664\\\">information.</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.6834 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 470.3503 651.7234)\\\" x=\\\"0 2.224\\\">It</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.7957 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 477.4626 651.7234)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44\\\">includes</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 506.9079 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 509.5748 651.7234)\\\" x=\\\"0 4 5.824 10.272 12.096 18.76\\\">claims</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 532.3365 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 535.0034 651.7234)\\\" x=\\\"0 2.664 7.112 8.936 13.384 15.608 20.056\\\">related</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.5112 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 562.1781 651.7234)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 642.6688)\\\" x=\\\"0 4 8.448 10.672 12.896 14.72 19.168\\\">setting</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.4672 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 236.1411 642.6688)\\\" x=\\\"0 4.448 8.448 10.272 14.72\\\">aside</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 255.313 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 257.987 642.6688)\\\" x=\\\"0 2.224 6.672 8.496\\\">this</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 270.4831 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 273.157 642.6688)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496 24.944\\\">Clause.</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 300.3289 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 303.0029 642.6688)\\\" x=\\\"0 2.224\\\">It</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 307.4482 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 310.1221 642.6688)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44\\\">includes</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 339.5674 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 342.2414 642.6688)\\\" x=\\\"0 4 5.824 10.272 12.096 18.76\\\">claims</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 365.0031 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 367.6771 642.6688)\\\" x=\\\"0 4.448 8.896 13.344 17.792\\\">about</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 387.6966 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 390.3706 642.6688)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 401.4917 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 404.1656 642.6688)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496 24.944 26.472\\\">Clause&apos;s</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.6422 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 437.3161 642.6688)\\\" x=\\\"0 4 8.448 10.272 12.096 16.544 18.368 20.592\\\">validity</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 461.9099 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 464.5838 642.6688)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 477.9315 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 480.6055 642.6688)\\\" x=\\\"0 4 8 12.448 16.896 21.344\\\">scope.</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 504.1758 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 506.8497 642.6688)\\\" x=\\\"0 2.224\\\">It</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 511.295 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 513.969 642.6688)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44\\\">includes</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 543.4143 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 546.0883 642.6688)\\\" x=\\\"0 4 5.824 10.272 12.096 18.76\\\">claims</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 633.6141)\\\" x=\\\"0 4.448 8.896 13.344 17.792 20.016 22.144 27.92 32.368 36.816 39.04 43.488 47.936 50.6 52.728 54.952 59.4 61.528 65.976 68.64 73.088 74.912 77.136 79.8 84.248 86.472 90.92\\\">about whether to arbitrate.</text></g><clipPath id=\\\"clip4-13\\\"><path d=\\\"M 35 578 L 130 578 L 130 631 L 35 631 L 35 578 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-13)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 630.9344 L 129.35 630.9344 L 129.35 578.6609 L 35.45 578.6609 L 35.45 630.9344 z \\\"/><path clip-path=\\\"url(#clip4-13)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 628.9344 L 125.25 628.9344 L 125.25 619.8797 L 39.55 619.8797 L 39.55 628.9344 z \\\"/><path clip-path=\\\"url(#clip4-13)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 41.1227 628.9344 L 124.1227 628.9344 L 124.1227 618.9344 L 41.1227 618.9344 L 41.1227 628.9344 z \\\"/><g clip-path=\\\"url(#clip4-13)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 41.1227 621.5594)\\\" x=\\\"0 5.336 8 12.448 14.576 18.576 23.024 27.472 29.6 35.376 39.824 41.648 45.648 47.472 51.92 56.368 58.496 61.16 62.984 67.432 71.88 74.104 78.104\\\">Are you waiving rights?</text></g><clipPath id=\\\"clip4-14\\\"><path d=\\\"M 129 578 L 206 578 L 206 631 L 129 631 L 129 578 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-14)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 159.5461 621.5594)\\\" x=\\\"0 5.336 9.784 13.784\\\">Yes.</text></g><clipPath id=\\\"clip4-15\\\"><path d=\\\"M 205 578 L 573 578 L 573 631 L 205 631 L 205 578 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-15)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 621.5594)\\\" x=\\\"0 5.336 9.784 14.232\\\">You </text></g><g clip-path=\\\"url(#clip4-15)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 225.85 621.5594)\\\" x=\\\"0 5.776 10.224 12.048 16.048\\\">waive</text></g><path clip-path=\\\"url(#clip4-15)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 225.85 620.213 L 225.85 620.213 L 245.85 620.213 L 246.1833 620.213 L 246.1833 619.5464 L 245.85 619.5464 L 225.85 619.5464 L 225.5167 619.5464 L 225.5167 620.213 z \\\"/><g clip-path=\\\"url(#clip4-15)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.85 621.5594)\\\" x=\\\"0 2.128 6.128 10.576 15.024 17.688 19.816 22.48 24.304 28.752 33.2 35.424 39.424 41.552 43.776 48.224\\\"> your rights to:</text></g><g clip-path=\\\"url(#clip4-15)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 611.5047)\\\" x=\\\"0 4.448 6.672 8.8 14.576 19.024 23.024 27.472 29.6 31.424 35.872 38.536 40.36 44.808 48.808 50.936 54.936 59.384 61.208 65.208 69.656 71.784 77.56 79.384 83.384 87.832 92.28 94.504 98.952 102.952\\\">1. Have juries solve Disputes.</text></g><g clip-path=\\\"url(#clip4-15)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 601.45)\\\" x=\\\"0 4.448 6.672 8.8 14.576 19.024 23.024 27.472 29.6 33.6 38.048 42.496 45.16 47.384 51.384 53.608 55.736 60.184 62.408 66.856 71.304 73.968 76.096 78.32 82.768 87.216 91.664 93.792 97.792 104.456 108.904 110.728 112.552 115.216 119.216 121.04 125.488 127.312 133.976 137.976 140.104 144.104 148.552 153 155.664 157.888 161.888 164.112 166.24 170.24 174.688 176.512 180.512 184.96 187.088 192.864 194.688 198.688 203.136 207.584 209.808 214.256 218.256\\\">2. Have courts, other than small-claims courts, solve Disputes.</text></g><g clip-path=\\\"url(#clip4-15)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 591.3953)\\\" x=\\\"0 4.448 6.672 8.8 14.136 18.584 21.248 25.248 29.696 31.824 36.272 40.272 42.4 46.848 48.976 53.424 56.088 57.912 61.912 66.36 68.584 73.032 75.16 79.608 81.832 84.056 88.504 91.168 95.616 100.064 104.064 106.192 110.64 115.088 119.536 123.984 126.648 131.096 132.92 135.048 139.496 142.16 144.288 146.112 150.56 152.688 157.136 159.264 161.928 166.376 170.824 173.488 177.936 181.936 186.384 190.832 193.056 197.504 199.728 201.552 205.552 210 212.128 216.128 220.576 225.024 229.472 233.472 235.296 237.52 241.52\\\">3. Serve as a private attorney general or in a* D E M O *tive capacity.</text></g><g clip-path=\\\"url(#clip4-15)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 581.3406)\\\" x=\\\"0 4.448 6.672 8.8 14.136 18.584 20.712 22.536 26.984 29.112 33.56 35.688 39.688 41.512 45.96 49.96 53.96 56.088 60.536 64.536 66.76 68.584 73.032 77.48\\\">4. Be in a class action.</text></g><clipPath id=\\\"clip4-16\\\"><path d=\\\"M 35 530 L 130 530 L 130 579 L 35 579 L 35 530 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-16)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 578.6609 L 129.35 578.6609 L 129.35 530.3875 L 35.45 530.3875 L 35.45 578.6609 z \\\"/><path clip-path=\\\"url(#clip4-16)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 576.6609 L 125.25 576.6609 L 125.25 558.5516 L 39.55 558.5516 L 39.55 576.6609 z \\\"/><path clip-path=\\\"url(#clip4-16)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 44.0152 576.6609 L 121.0152 576.6609 L 121.0152 566.6609 L 44.0152 566.6609 L 44.0152 576.6609 z \\\"/><g clip-path=\\\"url(#clip4-16)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 44.0152 569.2859)\\\" x=\\\"0 5.336 8 12.448 14.576 18.576 23.024 27.472 29.6 35.376 39.824 41.648 45.648 47.472 51.92 56.368 58.496 62.496 64.32 68.768 72.768\\\">Are you waiving class</text></g><path clip-path=\\\"url(#clip4-16)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 58.6109 567.6063 L 106.6109 567.6063 L 106.6109 557.6063 L 58.6109 557.6063 L 58.6109 567.6063 z \\\"/><g clip-path=\\\"url(#clip4-16)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 58.6109 560.2312)\\\" x=\\\"0 4.448 8.448 10.672 12.496 16.944 21.392 23.52 26.184 28.008 32.456 36.904 39.128 43.128\\\">action rights?</text></g><clipPath id=\\\"clip4-17\\\"><path d=\\\"M 129 530 L 206 530 L 206 579 L 129 579 L 129 530 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-17)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 159.5461 569.2859)\\\" x=\\\"0 5.336 9.784 13.784\\\">Yes.</text></g><clipPath id=\\\"clip4-18\\\"><path d=\\\"M 205 530 L 573 530 L 573 579 L 205 579 L 205 530 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 569.2859)\\\" x=\\\"0 5.7774 12 17.7774 23.5547 28.4414\\\">COURTS</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 243.6273 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 245.7523 569.2859)\\\" x=\\\"0 5.3359 11.1133\\\">AND</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.643 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 264.768 569.2859)\\\" x=\\\"0 5.3359 11.1133 16.4492 18.6719 23.5586 28.8945 34.6719\\\">ARBITERS</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 304.7758 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 306.9008 569.2859)\\\" x=\\\"0\\\">W</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 306.9008 567.9396 L 306.9008 567.9396 L 314.9008 567.9396 L 315.2341 567.9396 L 315.2341 567.2729 L 314.9008 567.2729 L 306.9008 567.2729 L 306.5674 567.2729 L 306.5674 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 314.4515 569.2859)\\\" x=\\\"0\\\">O</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 314.4515 567.9396 L 314.4515 567.9396 L 320.4515 567.9396 L 320.7849 567.9396 L 320.7849 567.2729 L 320.4515 567.2729 L 314.4515 567.2729 L 314.1182 567.2729 L 314.1182 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 320.6742 569.2859)\\\" x=\\\"0\\\">N</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 320.6742 567.9396 L 320.6742 567.9396 L 326.6742 567.9396 L 327.0075 567.9396 L 327.0075 567.2729 L 326.6742 567.2729 L 320.6742 567.2729 L 320.3409 567.2729 L 320.3409 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 326.4515 569.2859)\\\" x=\\\"0\\\">&apos;</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 326.4515 567.9396 L 326.4515 567.9396 L 328.4515 567.9396 L 328.7849 567.9396 L 328.7849 567.2729 L 328.4515 567.2729 L 326.4515 567.2729 L 326.1182 567.2729 L 326.1182 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 327.9789 569.2859)\\\" x=\\\"0\\\">T</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 327.9789 567.9396 L 327.9789 567.9396 L 332.9789 567.9396 L 333.3122 567.9396 L 333.3122 567.2729 L 332.9789 567.2729 L 327.9789 567.2729 L 327.6456 567.2729 L 327.6456 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 332.8656 569.2859)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 332.8656 567.9396 L 332.8656 567.9396 L 334.8656 567.9396 L 335.1989 567.9396 L 335.1989 567.2729 L 334.8656 567.2729 L 332.8656 567.2729 L 332.5323 567.2729 L 332.5323 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 334.9906 569.2859)\\\" x=\\\"0\\\">A</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 334.9906 567.9396 L 334.9906 567.9396 L 339.9906 567.9396 L 340.3239 567.9396 L 340.3239 567.2729 L 339.9906 567.2729 L 334.9906 567.2729 L 334.6573 567.2729 L 334.6573 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 340.3265 569.2859)\\\" x=\\\"0\\\">L</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 340.3265 567.9396 L 340.3265 567.9396 L 344.3265 567.9396 L 344.6599 567.9396 L 344.6599 567.2729 L 344.3265 567.2729 L 340.3265 567.2729 L 339.9932 567.2729 L 339.9932 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 344.7758 569.2859)\\\" x=\\\"0\\\">L</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 344.7758 567.9396 L 344.7758 567.9396 L 348.7758 567.9396 L 349.1091 567.9396 L 349.1091 567.2729 L 348.7758 567.2729 L 344.7758 567.2729 L 344.4424 567.2729 L 344.4424 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 349.225 569.2859)\\\" x=\\\"0\\\">O</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 349.225 567.9396 L 349.225 567.9396 L 355.225 567.9396 L 355.5583 567.9396 L 355.5583 567.2729 L 355.225 567.2729 L 349.225 567.2729 L 348.8917 567.2729 L 348.8917 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 355.4477 569.2859)\\\" x=\\\"0\\\">W</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 355.4477 567.9396 L 355.4477 567.9396 L 363.4477 567.9396 L 363.781 567.9396 L 363.781 567.2729 L 363.4477 567.2729 L 355.4477 567.2729 L 355.1143 567.2729 L 355.1143 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 362.9984 569.2859)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 362.9984 567.9396 L 362.9984 567.9396 L 364.9984 567.9396 L 365.3318 567.9396 L 365.3318 567.2729 L 364.9984 567.2729 L 362.9984 567.2729 L 362.6651 567.2729 L 362.6651 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 365.1234 569.2859)\\\" x=\\\"0\\\">C</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 365.1234 567.9396 L 365.1234 567.9396 L 371.1234 567.9396 L 371.4568 567.9396 L 371.4568 567.2729 L 371.1234 567.2729 L 365.1234 567.2729 L 364.7901 567.2729 L 364.7901 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 370.9008 569.2859)\\\" x=\\\"0\\\">L</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 370.9008 567.9396 L 370.9008 567.9396 L 374.9008 567.9396 L 375.2341 567.9396 L 375.2341 567.2729 L 374.9008 567.2729 L 370.9008 567.2729 L 370.5674 567.2729 L 370.5674 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 375.35 569.2859)\\\" x=\\\"0\\\">A</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 375.35 567.9396 L 375.35 567.9396 L 380.35 567.9396 L 380.6833 567.9396 L 380.6833 567.2729 L 380.35 567.2729 L 375.35 567.2729 L 375.0167 567.2729 L 375.0167 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 380.6859 569.2859)\\\" x=\\\"0\\\">S</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 380.6859 567.9396 L 380.6859 567.9396 L 385.6859 567.9396 L 386.0193 567.9396 L 386.0193 567.2729 L 385.6859 567.2729 L 380.6859 567.2729 L 380.3526 567.2729 L 380.3526 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 386.0219 569.2859)\\\" x=\\\"0\\\">S</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 386.0219 567.9396 L 386.0219 567.9396 L 391.0219 567.9396 L 391.3552 567.9396 L 391.3552 567.2729 L 391.0219 567.2729 L 386.0219 567.2729 L 385.6885 567.2729 L 385.6885 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 391.3578 569.2859)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 391.3578 567.9396 L 391.3578 567.9396 L 393.3578 567.9396 L 393.6911 567.9396 L 393.6911 567.2729 L 393.3578 567.2729 L 391.3578 567.2729 L 391.0245 567.2729 L 391.0245 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 393.4828 569.2859)\\\" x=\\\"0\\\">A</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 393.4828 567.9396 L 393.4828 567.9396 L 398.4828 567.9396 L 398.8161 567.9396 L 398.8161 567.2729 L 398.4828 567.2729 L 393.4828 567.2729 L 393.1495 567.2729 L 393.1495 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 398.8187 569.2859)\\\" x=\\\"0\\\">C</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 398.8187 567.9396 L 398.8187 567.9396 L 404.8187 567.9396 L 405.1521 567.9396 L 405.1521 567.2729 L 404.8187 567.2729 L 398.8187 567.2729 L 398.4854 567.2729 L 398.4854 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 404.5961 569.2859)\\\" x=\\\"0\\\">T</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 404.5961 567.9396 L 404.5961 567.9396 L 409.5961 567.9396 L 409.9294 567.9396 L 409.9294 567.2729 L 409.5961 567.2729 L 404.5961 567.2729 L 404.2628 567.2729 L 404.2628 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 409.4828 569.2859)\\\" x=\\\"0\\\">I</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 409.4828 567.9396 L 409.4828 567.9396 L 411.4828 567.9396 L 411.8161 567.9396 L 411.8161 567.2729 L 411.4828 567.2729 L 409.4828 567.2729 L 409.1495 567.2729 L 409.1495 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 411.7055 569.2859)\\\" x=\\\"0\\\">O</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 411.7055 567.9396 L 411.7055 567.9396 L 417.7055 567.9396 L 418.0388 567.9396 L 418.0388 567.2729 L 417.7055 567.2729 L 411.7055 567.2729 L 411.3721 567.2729 L 411.3721 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 417.9281 569.2859)\\\" x=\\\"0\\\">N</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 417.9281 567.9396 L 417.9281 567.9396 L 423.9281 567.9396 L 424.2614 567.9396 L 424.2614 567.2729 L 423.9281 567.2729 L 417.9281 567.2729 L 417.5948 567.2729 L 417.5948 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 423.7055 569.2859)\\\" x=\\\"0\\\">S</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 423.7055 567.9396 L 423.7055 567.9396 L 428.7055 567.9396 L 429.0388 567.9396 L 429.0388 567.2729 L 428.7055 567.2729 L 423.7055 567.2729 L 423.3721 567.2729 L 423.3721 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 429.0414 569.2859)\\\" x=\\\"0\\\">.</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 429.0414 567.9396 L 429.0414 567.9396 L 431.0414 567.9396 L 431.3747 567.9396 L 431.3747 567.2729 L 431.0414 567.2729 L 429.0414 567.2729 L 428.7081 567.2729 L 428.7081 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 431.264 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 433.389 569.2859)\\\" x=\\\"0 5.3359 9.7852\\\">You</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.6234 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 449.7484 569.2859)\\\" x=\\\"0\\\">w</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 449.7484 567.9396 L 449.7484 567.9396 L 455.7484 567.9396 L 456.0818 567.9396 L 456.0818 567.2729 L 455.7484 567.2729 L 449.7484 567.2729 L 449.4151 567.2729 L 449.4151 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 455.5258 569.2859)\\\" x=\\\"0\\\">a</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 455.5258 567.9396 L 455.5258 567.9396 L 459.5258 567.9396 L 459.8591 567.9396 L 459.8591 567.2729 L 459.5258 567.2729 L 455.5258 567.2729 L 455.1924 567.2729 L 455.1924 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 459.975 569.2859)\\\" x=\\\"0\\\">i</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 459.975 567.9396 L 459.975 567.9396 L 461.975 567.9396 L 462.3083 567.9396 L 462.3083 567.2729 L 461.975 567.2729 L 459.975 567.2729 L 459.6417 567.2729 L 459.6417 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 461.7992 569.2859)\\\" x=\\\"0\\\">v</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 461.7992 567.9396 L 461.7992 567.9396 L 465.7992 567.9396 L 466.1325 567.9396 L 466.1325 567.2729 L 465.7992 567.2729 L 461.7992 567.2729 L 461.4659 567.2729 L 461.4659 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 465.7992 569.2859)\\\" x=\\\"0\\\">e</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 465.7992 567.9396 L 465.7992 567.9396 L 469.7992 567.9396 L 470.1325 567.9396 L 470.1325 567.2729 L 469.7992 567.2729 L 465.7992 567.2729 L 465.4659 567.2729 L 465.4659 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 470.2484 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 472.3734 569.2859)\\\" x=\\\"0 4 8.4492 12.8984\\\">your</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 487.9359 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 490.0609 569.2859)\\\" x=\\\"0 2.6641 4.4883 8.9375 13.3867 15.6094\\\">rights</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.6703 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 511.7953 569.2859)\\\" x=\\\"0 2.2227\\\">to</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 518.4672 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 520.5922 569.2859)\\\" x=\\\"0 4.4492\\\">be</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.4906 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 531.6156 569.2859)\\\" x=\\\"0 1.8242\\\">in</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 537.889 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 540.014 569.2859)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 544.4633 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 546.5883 569.2859)\\\" x=\\\"0\\\">c</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 546.5883 567.9396 L 546.5883 567.9396 L 550.5883 567.9396 L 550.9216 567.9396 L 550.9216 567.2729 L 550.5883 567.2729 L 546.5883 567.2729 L 546.2549 567.2729 L 546.2549 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 550.5883 569.2859)\\\" x=\\\"0\\\">l</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 550.5883 567.9396 L 550.5883 567.9396 L 552.5883 567.9396 L 552.9216 567.9396 L 552.9216 567.2729 L 552.5883 567.2729 L 550.5883 567.2729 L 550.2549 567.2729 L 550.2549 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 552.4125 569.2859)\\\" x=\\\"0\\\">a</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 552.4125 567.9396 L 552.4125 567.9396 L 556.4125 567.9396 L 556.7458 567.9396 L 556.7458 567.2729 L 556.4125 567.2729 L 552.4125 567.2729 L 552.0792 567.2729 L 552.0792 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 556.8617 569.2859)\\\" x=\\\"0\\\">s</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 556.8617 567.9396 L 556.8617 567.9396 L 560.8617 567.9396 L 561.1951 567.9396 L 561.1951 567.2729 L 560.8617 567.2729 L 556.8617 567.2729 L 556.5284 567.2729 L 556.5284 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 560.8617 569.2859)\\\" x=\\\"0\\\">s</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 560.8617 567.9396 L 560.8617 567.9396 L 564.8617 567.9396 L 565.1951 567.9396 L 565.1951 567.2729 L 564.8617 567.2729 L 560.8617 567.2729 L 560.5284 567.2729 L 560.5284 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 560.2312)\\\" x=\\\"0\\\">a</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 209.85 558.8849 L 209.85 558.8849 L 213.85 558.8849 L 214.1833 558.8849 L 214.1833 558.2182 L 213.85 558.2182 L 209.85 558.2182 L 209.5167 558.2182 L 209.5167 558.8849 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 214.2992 560.2312)\\\" x=\\\"0\\\">c</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 214.2992 558.8849 L 214.2992 558.8849 L 218.2992 558.8849 L 218.6325 558.8849 L 218.6325 558.2182 L 218.2992 558.2182 L 214.2992 558.2182 L 213.9659 558.2182 L 213.9659 558.8849 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 218.2992 560.2312)\\\" x=\\\"0\\\">t</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 218.2992 558.8849 L 218.2992 558.8849 L 220.2992 558.8849 L 220.6325 558.8849 L 220.6325 558.2182 L 220.2992 558.2182 L 218.2992 558.2182 L 217.9659 558.2182 L 217.9659 558.8849 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 220.5219 560.2312)\\\" x=\\\"0\\\">i</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 220.5219 558.8849 L 220.5219 558.8849 L 222.5219 558.8849 L 222.8552 558.8849 L 222.8552 558.2182 L 222.5219 558.2182 L 220.5219 558.2182 L 220.1885 558.2182 L 220.1885 558.8849 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 222.3461 560.2312)\\\" x=\\\"0\\\">o</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 222.3461 558.8849 L 222.3461 558.8849 L 226.3461 558.8849 L 226.6794 558.8849 L 226.6794 558.2182 L 226.3461 558.2182 L 222.3461 558.2182 L 222.0128 558.2182 L 222.0128 558.8849 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 226.7953 560.2312)\\\" x=\\\"0\\\">n</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 226.7953 558.8849 L 226.7953 558.8849 L 230.7953 558.8849 L 231.1286 558.8849 L 231.1286 558.2182 L 230.7953 558.2182 L 226.7953 558.2182 L 226.462 558.2182 L 226.462 558.8849 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 231.2445 560.2312)\\\" x=\\\"0\\\">,</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.4672 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 235.5922 560.2312)\\\" x=\\\"0 4.4492\\\">as</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 244.0414 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 246.1664 560.2312)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 250.6156 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 252.7406 560.2312)\\\" x=\\\"0 2.6641 7.1133 11.5625 14.2266 18.6758 22.6758 27.125 31.5742 33.7969 38.2461 40.4688 42.293 46.293\\\">representative</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 303.4828 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 305.6078 560.2312)\\\" x=\\\"0 4.4492 8.8984\\\">and</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 318.9555 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 321.0805 560.2312)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 325.5297 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 327.6547 560.2312)\\\" x=\\\"0 6.6641 11.1133 17.7773 22.2266 26.6758 29.3398\\\">member.</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.2172 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 361.3422 560.2312)\\\" x=\\\"0 6.2227 10.6719 12.4961\\\">Only</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 377.8383 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 379.9633 560.2312)\\\" x=\\\"0 1.8242 6.2734 10.7227 12.5469 16.5469 18.3711 22.8203 27.2695 31.7188\\\">individual</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 413.5062 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 415.6312 560.2312)\\\" x=\\\"0 4.4492 7.1133 11.5625 13.3867 15.6094 18.2734 22.7227 24.9453 26.7695 31.2188 35.668\\\">arbitration,</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 453.5219 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 455.6469 560.2312)\\\" x=\\\"0 4.4492\\\">or</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 462.7601 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 464.8851 560.2312)\\\" x=\\\"0 4 10.6641 15.1133 16.9375 18.7617 21.4258 25.4258 27.25 31.6992 33.5234 40.1875\\\">small-claims</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.0727 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 511.1977 560.2312)\\\" x=\\\"0 4 8.4492 12.8984 15.5625 17.7851 21.7851\\\">courts,</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 535.2055 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 537.3305 560.2312)\\\" x=\\\"0 5.7773 7.6016 9.4258\\\">will</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 551.1766)\\\" x=\\\"0 4 8.4492 10.2734 14.2734\\\">solve</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 228.5726 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 230.6976 551.1766)\\\" x=\\\"0 5.7773 7.6016 11.6016 16.0508 20.5 22.7227 27.1719 31.1719\\\">Disputes.</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 264.0922 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 266.2172 551.1766)\\\" x=\\\"0 5.3359 9.7852\\\">You</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.4515 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 282.5765 551.1766)\\\" x=\\\"0 5.7774 10.2266 12.0508 16.0508\\\">waive</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 303.0765 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 304.9015 551.1766)\\\" x=\\\"0 4 8.4492 12.8984\\\">your</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 320.464 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 322.289 551.1766)\\\" x=\\\"0 2.6641 4.4883 8.9375 13.3867\\\">right</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 337.8984 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 339.7234 551.1766)\\\" x=\\\"0 2.2227\\\">to</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 346.3953 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 348.2203 551.1766)\\\" x=\\\"0 4.4492 8.8984 12.8984\\\">have</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 365.568 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 367.393 551.1766)\\\" x=\\\"0 2.6641 7.1133 11.5625 14.2266 18.6758 22.6758 27.125 31.5742 33.7969 38.2461 40.4687 42.293 46.293\\\">representative</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 418.1351 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 419.9601 551.1766)\\\" x=\\\"0 4 5.8242 10.2734 12.0977 18.7617 22.7617\\\">claims.</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 444.9445 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 446.7695 551.1766)\\\" x=\\\"0 5.7774 10.2266 12.0508 16.5 20.5\\\">Unless</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 471.2695 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 473.0945 551.1766)\\\" x=\\\"0 2.6641 7.1133 11.1133 15.5625 18.2266 22.2266 26.6758\\\">reversed</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 504.2195 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 506.0445 551.1766)\\\" x=\\\"0 4.4492\\\">on</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 514.943 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 516.768 551.1766)\\\" x=\\\"0 4.4492 8.8984 13.3477 17.7969 22.2461 24.0703\\\">appeal,</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 543.0609 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 544.8859 551.1766)\\\" x=\\\"0 1.8242\\\">if</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 548.9328 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 550.7578 551.1766)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 542.1219)\\\" x=\\\"0 4 8.4492 12.8984 15.5625\\\">court</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 227.6351 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 229.4601 542.1219)\\\" x=\\\"0 1.8242 6.2734 10.2734 14.7227 16.5469 18.3711 22.8203 27.2695 29.4922 33.9414\\\">invalidates</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 267.4015 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 269.2265 542.1219)\\\" x=\\\"0 2.2227 6.6719 8.4961\\\">this</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.7226 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 283.5477 542.1219)\\\" x=\\\"0 5.7773 10.2266 12.0508 16.0508 20.5 23.1641\\\">waiver,</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.9344 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 310.7594 542.1219)\\\" x=\\\"0 2.2226 6.6719 11.1211\\\">then</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 326.3297 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 328.4547 542.1219)\\\" x=\\\"0 2.2227 6.6719\\\">the</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 339.5758 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 341.4008 542.1219)\\\" x=\\\"0 4.4492 8.8984 11.5625 16.0117 20.4609 27.125 31.5742 36.0234\\\">agreement</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 379.6469 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 381.4719 542.1219)\\\" x=\\\"0 2.2227\\\">to</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.1437 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 389.9687 542.1219)\\\" x=\\\"0 4.4492 7.1133 11.5625 13.3867 15.6094 18.2734 22.7227 24.9453\\\">arbitrate</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.3633 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 421.1883 542.1219)\\\" x=\\\"0 5.7774 7.6016 9.4258\\\">will</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 432.4383 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 434.2633 542.1219)\\\" x=\\\"0 4.4492\\\">be</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 443.1617 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 444.9867 542.1219)\\\" x=\\\"0 4 8.4492 10.2734 14.7227\\\">void,</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 461.932 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 463.757 542.1219)\\\" x=\\\"0 4.4492 8.8984\\\">and</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 477.1047 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 478.9297 542.1219)\\\" x=\\\"0 5.7773 7.6016 11.6016 16.0508 20.5 22.7227 27.1719\\\">Disputes</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 510.1016 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 511.9266 542.1219)\\\" x=\\\"0 5.7773 7.6016 9.4258\\\">will</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 523.1766 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 525.0016 542.1219)\\\" x=\\\"0 4.4492\\\">be</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 533.9 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 535.725 542.1219)\\\" x=\\\"0 2.6641 7.1133 11.1133 15.5625 17.3867 21.3867 25.8359\\\">resolved</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 533.0672)\\\" x=\\\"0 4.4492\\\">by</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 218.2992 533.0672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 220.1242 533.0672)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 224.5734 533.0672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 226.3984 533.0672)\\\" x=\\\"0 1.8242 6.2734 10.7227 15.1719 19.6211\\\">judge,</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 248.2422 533.0672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 250.0672 533.0672)\\\" x=\\\"0 4.4492 8.8984\\\">but</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 261.1883 533.0672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 263.0133 533.0672)\\\" x=\\\"0 4.4492 8.8984\\\">not</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 274.1344 533.0672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 275.9594 533.0672)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.4086 533.0672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 282.2336 533.0672)\\\" x=\\\"0 1.8242 6.2734 8.9375 12.9375\\\">jury.</text></g><clipPath id=\\\"clip4-19\\\"><path d=\\\"M 35 491 L 130 491 L 130 531 L 35 531 L 35 491 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-19)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 530.3875 L 129.35 530.3875 L 129.35 491.1688 L 35.45 491.1688 L 35.45 530.3875 z \\\"/><path clip-path=\\\"url(#clip4-19)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 528.3875 L 125.25 528.3875 L 125.25 519.3328 L 39.55 519.3328 L 39.55 528.3875 z \\\"/><path clip-path=\\\"url(#clip4-19)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 49.9664 528.3875 L 114.9664 528.3875 L 114.9664 518.3875 L 49.9664 518.3875 L 49.9664 528.3875 z \\\"/><g clip-path=\\\"url(#clip4-19)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 49.9664 521.0125)\\\" x=\\\"0 7.552 12 16.448 18.672 20.8 22.624 27.072 32.848 34.976 39.424 43.872 48.32 50.144 51.968 56.416 60.416\\\">What law applies?</text></g><clipPath id=\\\"clip4-20\\\"><path d=\\\"M 129 491 L 206 491 L 206 531 L 129 531 L 129 491 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-20)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.009 521.0125)\\\" x=\\\"0 4.888 9.336 13.784 15.912 20.8 25.248 29.696 34.144 36.808 41.256\\\">The Federal</text></g><g clip-path=\\\"url(#clip4-20)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 142.4308 511.9578)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 19.16 23.608 25.832 27.656 32.104 36.552 38.68 44.016 48.016\\\">Arbitration Act</text></g><g clip-path=\\\"url(#clip4-20)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 153.1555 502.9031)\\\" x=\\\"0 2.664 5.504 10.392 15.728 21.064 23.904 26.568\\\">(&quot;FAA&quot;).</text></g><clipPath id=\\\"clip4-21\\\"><path d=\\\"M 205 491 L 573 491 L 573 531 L 205 531 L 205 491 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 521.0125)\\\" x=\\\"0 4.888 9.336 11.16\\\">This</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.0101 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 228.9725 521.0125)\\\" x=\\\"0 2.224 4.888 9.336 13.784 17.784 22.232 26.232 28.456 30.28 34.728\\\">transaction</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 268.1522 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 272.1145 521.0125)\\\" x=\\\"0 1.824 6.272 10.272 14.72 16.544 20.544 24.992\\\">involves</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 301.1106 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 305.0729 521.0125)\\\" x=\\\"0 1.824 6.272 8.496 12.944 15.608 19.608 21.832 26.28 28.504\\\">interstate</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.026 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 341.9884 521.0125)\\\" x=\\\"0 4 8.448 15.112 21.776 26.224 28.888 32.888 37.336\\\">commerce.</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 381.5509 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 385.5132 521.0125)\\\" x=\\\"0 4.888 9.336 13.784 17.784\\\">Thus,</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 405.521 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 409.4834 521.0125)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 420.6045 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 424.5668 521.0125)\\\" x=\\\"0 4.888 10.224\\\">FAA</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 440.1254 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 444.0877 521.0125)\\\" x=\\\"0 4.448 8.896 12.896 17.344 20.008 24.456 28.456\\\">governs.</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.7713 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 478.7336 521.0125)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 483.179 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 487.1413 521.0125)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 491.5905 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 495.5528 521.0125)\\\" x=\\\"0 4 8.448 12.896 15.56\\\">court</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 513.338 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 517.3003 521.0125)\\\" x=\\\"0 2.224 4.048 8.496 12.944\\\">finds</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 534.2456 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 538.208 521.0125)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.3291 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 553.2914 521.0125)\\\" x=\\\"0 4.888 10.224\\\">FAA</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 511.9578)\\\" x=\\\"0 4.448 8.896 13.344 17.344 21.792 23.32\\\">doesn&apos;t</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 235.3969 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 237.5853 511.9578)\\\" x=\\\"0 4.448 8.896 13.344 15.168 19.168\\\">apply,</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 258.9798 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 261.1682 511.9578)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 274.5159 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 276.7043 511.9578)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 287.8254 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 290.0138 511.9578)\\\" x=\\\"0 2.224 4.048 8.496 12.944 14.768 19.216\\\">finding</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 313.6818 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 315.8702 511.9578)\\\" x=\\\"0 4 8.448 12.896 14.424\\\">can&apos;t</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 332.5186 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 334.7071 511.9578)\\\" x=\\\"0 4.448\\\">be</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 343.6055 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 345.7939 511.9578)\\\" x=\\\"0 4.448 8.896 13.344 17.792 22.24 24.064 28.512 32.96\\\">appealed,</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.9853 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 383.1737 511.9578)\\\" x=\\\"0 2.224 6.672 11.12\\\">then</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 398.7441 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 400.9325 511.9578)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 412.0536 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 414.242 511.9578)\\\" x=\\\"0 4 6.224 10.672 12.896\\\">state</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 431.5857 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 433.7742 511.9578)\\\" x=\\\"0 1.824 6.272\\\">law</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 445.825 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 448.0134 511.9578)\\\" x=\\\"0 5.776 10.224 14.672 17.336\\\">where</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 469.8024 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 471.9908 511.9578)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.8893 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 487.0777 511.9578)\\\" x=\\\"0 5.776 10.224 12.888\\\">were</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 504.4175 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 506.606 511.9578)\\\" x=\\\"0 5.776 10.224 14.672\\\">when</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 525.731 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 527.9194 511.9578)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 540.8178 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 543.0062 511.9578)\\\" x=\\\"0 4 5.824 10.272 14.72 19.168 23.616\\\">signed,</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 502.9031)\\\" x=\\\"0 4.448 8.896 12.896 17.344 20.008 24.456 28.456\\\">governs.</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 240.5336 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 243.9142 502.9031)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.6993 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 261.0799 502.9031)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 284.6893 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 288.0699 502.9031)\\\" x=\\\"0 6.664 11.112 15.112\\\">must</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 305.4058 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 308.7864 502.9031)\\\" x=\\\"0 4.448 8.896 13.344 15.168\\\">apply</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 327.9582 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 331.3388 502.9031)\\\" x=\\\"0 4 8.448 12.896 16.896 19.12 23.568 28.016 30.24 32.064 36.064\\\">substantive</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.8545 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 375.235 502.9031)\\\" x=\\\"0 1.824 6.272\\\">law</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 387.2858 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 390.6664 502.9031)\\\" x=\\\"0 4 8.448 12.896 16.896 18.72 22.72 24.944 29.392 33.84\\\">consistent</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 426.7328 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 430.1134 502.9031)\\\" x=\\\"0 5.776 7.6 9.824\\\">with</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 444.3868 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 447.7674 502.9031)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 458.8885 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 462.2691 502.9031)\\\" x=\\\"0 4.888 10.224 15.56\\\">FAA.</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 480.0503 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 483.4309 502.9031)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 497.2161 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 500.5966 502.9031)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 524.206 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 527.5866 502.9031)\\\" x=\\\"0 6.664 11.112 15.112\\\">must</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 544.9225 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 548.3031 502.9031)\\\" x=\\\"0 2.224 6.672 8.496 10.32 14.768\\\">follow</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 493.8484)\\\" x=\\\"0 4 6.224 10.672 12.896 17.344 19.568 24.016 28.016 30.144 34.592 36.816 38.944 40.768 42.592 49.256 51.08 53.304 57.752 59.976 61.8 66.248 70.696 72.824 77.272 81.72 86.168 88.296 92.744 95.408 97.232 101.232 103.056 104.88 109.328 113.776 118.224 120.352 124.352 126.176 130.624 132.448 139.112 143.112\\\">statutes of limitation and privilege claims.</text></g><clipPath id=\\\"clip4-22\\\"><path d=\\\"M 35 433 L 130 433 L 130 492 L 35 492 L 35 433 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-22)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 491.1688 L 129.35 491.1688 L 129.35 433.8406 L 35.45 433.8406 L 35.45 491.1688 z \\\"/><path clip-path=\\\"url(#clip4-22)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 489.1688 L 125.25 489.1688 L 125.25 471.0594 L 39.55 471.0594 L 39.55 489.1688 z \\\"/><path clip-path=\\\"url(#clip4-22)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 45.443 489.1688 L 119.443 489.1688 L 119.443 479.1688 L 45.443 479.1688 L 45.443 489.1688 z \\\"/><g clip-path=\\\"url(#clip4-22)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 45.443 481.7937)\\\" x=\\\"0 5.776 10.224 14.672 16.8 19.024 23.472 27.92 30.048 34.496 38.944 41.608 43.832 45.656 50.104 54.104 56.232 58.456 61.12 65.12 67.248 69.472\\\">Can the * D E M O * to</text></g><path clip-path=\\\"url(#clip4-22)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 46.6363 480.1141 L 118.6363 480.1141 L 118.6363 470.1141 L 46.6363 470.1141 L 46.6363 480.1141 z \\\"/><g clip-path=\\\"url(#clip4-22)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 46.6363 472.7391)\\\" x=\\\"0 4 8.448 10.272 14.272 18.72 20.848 26.624 28.448 32.448 36.896 41.344 43.568 48.016 52.016 54.144 56.368 58.192 60.856 64.856 67.08\\\">solve Disputes first?</text></g><clipPath id=\\\"clip4-23\\\"><path d=\\\"M 129 433 L 206 433 L 206 492 L 129 492 L 129 433 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-23)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 159.5461 481.7937)\\\" x=\\\"0 5.336 9.784 13.784\\\">Yes.</text></g><clipPath id=\\\"clip4-24\\\"><path d=\\\"M 205 433 L 573 433 L 573 492 L 205 492 L 205 433 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 481.7937)\\\" x=\\\"0 7.552\\\">We</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 221.85 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 224.092 481.7937)\\\" x=\\\"0 4 8.448\\\">can</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 236.9904 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 239.2324 481.7937)\\\" x=\\\"0 2.224 4.888\\\">try</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 248.1191 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 250.3611 481.7937)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.033 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 259.275 481.7937)\\\" x=\\\"0 4 8.448 10.272 14.272\\\">solve</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 277.9976 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 280.2396 481.7937)\\\" x=\\\"0 5.776 7.6 11.6 16.048 20.496 22.72 27.168\\\">Disputes</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 311.4115 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 313.6535 481.7937)\\\" x=\\\"0 1.824\\\">if</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 317.7004 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 319.9424 481.7937)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 332.8408 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 335.0828 481.7937)\\\" x=\\\"0 4 8.448 10.272\\\">call</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 347.1805 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 349.4224 481.7937)\\\" x=\\\"0 4.448\\\">us</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 357.8717 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 360.1137 481.7937)\\\" x=\\\"0 4.448\\\">at</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 366.7855 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 369.0275 481.7937)\\\" x=\\\"0 2.664 7.112 11.56 16.008\\\">(100)</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 387.7033 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 389.9453 481.7937)\\\" x=\\\"0 4.448 8.896 13.344 16.008 20.456 24.904 29.352 33.8\\\">000-0006.</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 425.9766 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 428.2185 481.7937)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 432.6639 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 434.9058 481.7937)\\\" x=\\\"0 2.224 6.672 8.496\\\">this</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.4019 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 449.6439 481.7937)\\\" x=\\\"0 4.448 8.896 13.344 17.344 21.792 23.32\\\">doesn&apos;t</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 475.1908 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 477.4328 481.7937)\\\" x=\\\"0 4 8.448 10.272 14.272\\\">solve</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 496.1555 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 498.3974 481.7937)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.5185 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 511.7605 481.7937)\\\" x=\\\"0 5.776 7.6 11.6 16.048 20.496 22.72 27.168\\\">Dispute,</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 541.1551 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 543.3971 481.7937)\\\" x=\\\"0 6.664 11.112 12.936\\\">mail</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 558.1588 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 560.4008 481.7937)\\\" x=\\\"0 4.448\\\">us</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 472.7391)\\\" x=\\\"0 5.776 8.44 10.264 12.488 14.712 19.16\\\">written</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.4594 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 235.6405 472.7391)\\\" x=\\\"0 4.448 8.896 11.12 12.944 16.944 21.392\\\">notice,</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.2577 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 261.4388 472.7391)\\\" x=\\\"0 5.776 7.6 9.824 14.272 16.096\\\">within</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.9857 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 284.1668 472.7391)\\\" x=\\\"0 4.448 8.896\\\">100</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 297.5145 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 299.6956 472.7391)\\\" x=\\\"0 4.448 8.896 12.896\\\">days</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 316.594 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 318.7752 472.7391)\\\" x=\\\"0 4.448\\\">of</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 325.447 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 327.6282 472.7391)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.7493 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 340.9304 472.7391)\\\" x=\\\"0 5.776 7.6 11.6 16.048 20.496 22.72\\\">Dispute</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 368.1023 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 370.2834 472.7391)\\\" x=\\\"0 4.448 8.896 11.12 15.568\\\">date.</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.0763 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 390.2575 472.7391)\\\" x=\\\"0 2.224\\\">In</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 396.9293 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 399.1105 472.7391)\\\" x=\\\"0 4 8.448 12.896\\\">your</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 414.673 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 416.8541 472.7391)\\\" x=\\\"0 4.448 8.896 11.12 12.944 16.944 21.392\\\">notice,</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 440.4713 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 442.6524 472.7391)\\\" x=\\\"0 2.224 6.672 8.496\\\">tell</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 452.9727 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 455.1539 472.7391)\\\" x=\\\"0 4.448\\\">us</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 463.6031 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 465.7842 472.7391)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 476.9053 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 479.0864 472.7391)\\\" x=\\\"0 4.448 8.896 11.12 15.568 17.392 19.216\\\">details</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 502.3052 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 504.4863 472.7391)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 517.834 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 520.0151 472.7391)\\\" x=\\\"0 4.448 8.896\\\">how</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 534.6909 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 536.872 472.7391)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.7704 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 551.9515 472.7391)\\\" x=\\\"0 5.776 10.224 14.672\\\">want</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 463.6844)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 216.5219 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 219.4635 463.6844)\\\" x=\\\"0 4 8.448 10.272 14.272\\\">solve</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.1861 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 241.1277 463.6844)\\\" x=\\\"0 1.824 4.048\\\">it.</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.3973 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 250.3389 463.6844)\\\" x=\\\"0 7.552\\\">We</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.3389 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 265.2805 463.6844)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.5305 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 279.4721 463.6844)\\\" x=\\\"0 2.224 4.888\\\">try</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 288.3588 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 291.3004 463.6844)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 297.9723 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 300.9139 463.6844)\\\" x=\\\"0 4 8.448 10.272 14.272\\\">solve</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.6366 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 322.5782 463.6844)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 333.6993 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 336.6409 463.6844)\\\" x=\\\"0 5.776 7.6 11.6 16.048 20.496 22.72 27.168\\\">Dispute.</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 366.0354 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 368.977 463.6844)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 373.4224 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 376.364 463.6844)\\\" x=\\\"0 5.776\\\">we</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 386.5905 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 389.5321 463.6844)\\\" x=\\\"0 6.664 11.112 15.112\\\">make</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 409.0947 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 412.0363 463.6844)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 416.4855 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 419.4271 463.6844)\\\" x=\\\"0 5.776 8.44 10.264 12.488 14.712 19.16\\\">written</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 443.0365 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 445.9781 463.6844)\\\" x=\\\"0 4.448 6.672 8.896 13.344\\\">offer</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 461.9859 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 464.9275 463.6844)\\\" x=\\\"0 2.664 5.504 10.84 15.288 17.512 19.736 21.56 26.008 32.672 37.12 41.568\\\">(&quot;Settlement</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 508.7205 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 511.6621 463.6844)\\\" x=\\\"0 6.224 8.448 10.672 15.12 17.784 20.624 23.288\\\">Offer&quot;),</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 537.1699 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 540.1115 463.6844)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.0099 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 555.9515 463.6844)\\\" x=\\\"0 4 8.448\\\">can</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 454.6297)\\\" x=\\\"0 2.664 7.112 8.936 13.384 17.384\\\">reject</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 229.4594 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 233.7138 454.6297)\\\" x=\\\"0 1.824\\\">it</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 237.7606 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 242.015 454.6297)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 255.3627 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 259.6171 454.6297)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 29.392\\\">arbitrate.</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.2343 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 295.4887 454.6297)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.934 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 304.1884 454.6297)\\\" x=\\\"0 5.776\\\">we</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 314.4149 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 318.6693 454.6297)\\\" x=\\\"0 4.448 8.896 13.344 14.872\\\">don&apos;t</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.767 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 340.0214 454.6297)\\\" x=\\\"0 4 8.448 10.272 14.272\\\">solve</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 358.744 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 362.9984 454.6297)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 374.1195 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 378.3739 454.6297)\\\" x=\\\"0 5.776 7.6 11.6 16.048 20.496 22.72 27.168\\\">Dispute,</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 407.7684 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 412.0228 454.6297)\\\" x=\\\"0 4.448 6.272 8.496 12.944 17.392\\\">either</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 432.0814 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 436.3358 454.6297)\\\" x=\\\"0 4.448 8.896 11.56 13.784\\\">party</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.121 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 458.3754 454.6297)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 473.4887 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 477.7431 454.6297)\\\" x=\\\"0 4 6.224 10.672 13.336\\\">start</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 493.3016 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 497.556 454.6297)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 26.768 31.216 35.664\\\">arbitration.</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 535.4467 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 539.7011 454.6297)\\\" x=\\\"0 4.888\\\">To</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.037 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 553.2914 454.6297)\\\" x=\\\"0 4 6.224 10.672 13.336\\\">start</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 445.575)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 26.768 31.216 35.664\\\">arbitration,</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.7406 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 250.0233 445.575)\\\" x=\\\"0 4 8.448 12.896 15.12 19.568 23.568\\\">contact</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.8162 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 278.0989 445.575)\\\" x=\\\"0 4.448\\\">an</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 286.9973 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 289.28 445.575)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.8893 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 315.172 445.575)\\\" x=\\\"0 4.448\\\">or</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 322.2853 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 324.5679 445.575)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 26.768 31.216\\\">arbitration</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 360.2359 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 362.5185 445.575)\\\" x=\\\"0 4.448 7.112 11.56 16.008\\\">group</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 382.9795 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 385.2621 445.575)\\\" x=\\\"0 1.824 3.648 7.648 9.872 14.32 18.768\\\">listed.</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 406.2543 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 408.5369 445.575)\\\" x=\\\"0 5.776\\\">No</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 418.7635 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 421.0461 445.575)\\\" x=\\\"0 4.448 8.896 11.56 13.784\\\">party</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 438.8313 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 441.1139 445.575)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 452.3639 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 454.6466 445.575)\\\" x=\\\"0 4.448 6.272 10.272 14.272 16.096 20.544 24.544\\\">disclose</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 483.6427 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 485.9253 445.575)\\\" x=\\\"0 4 8.448 10.672 12.896 14.72 19.168 25.832 30.28 34.728\\\">settlement</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 522.8785 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 525.1611 445.575)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456 24.456 28.904 30.728\\\">proposals</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.8955 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 562.1781 445.575)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 436.5203)\\\" x=\\\"0 2.224 6.672 11.12 13.248 18.584 21.248 25.696 27.52 29.744 34.192 36.856 38.984 43.432 47.88 50.544 52.368 56.816 61.264 63.392 67.84 70.504 74.952 76.776 79 81.664 86.112 88.336 90.16 94.608 99.056\\\">the Arbiter during arbitration.</text></g><clipPath id=\\\"clip4-25\\\"><path d=\\\"M 35 412 L 130 412 L 130 434 L 35 434 L 35 412 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-25)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 433.8406 L 129.35 433.8406 L 129.35 412.7313 L 35.45 412.7313 L 35.45 433.8406 z \\\"/><path clip-path=\\\"url(#clip4-25)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 431.8406 L 125.25 431.8406 L 125.25 413.7313 L 39.55 413.7313 L 39.55 431.8406 z \\\"/><path clip-path=\\\"url(#clip4-25)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 40.0543 431.8406 L 127.0543 431.8406 L 127.0543 421.8406 L 40.0543 421.8406 L 40.0543 431.8406 z \\\"/><g clip-path=\\\"url(#clip4-25)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.0543 424.4656)\\\" x=\\\"0 5.776 10.224 16 18.128 22.128 26.576 31.024 35.472 37.296 41.744 43.872 47.872 52.32 56.768 58.896 62.896 67.344 71.792 74.016 78.464 82.464\\\">How should you contact</text></g><path clip-path=\\\"url(#clip4-25)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 75.9508 422.7859 L 88.9508 422.7859 L 88.9508 412.7859 L 75.9508 412.7859 L 75.9508 422.7859 z \\\"/><g clip-path=\\\"url(#clip4-25)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 75.9508 415.4109)\\\" x=\\\"0 4.448 8.448\\\">us?</text></g><clipPath id=\\\"clip4-26\\\"><path d=\\\"M 129 412 L 206 412 L 206 434 L 129 434 L 129 412 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-26)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 153.3273 424.4656)\\\" x=\\\"0 5.336 9.336 11.464 18.128 22.576 24.4 26.224\\\">By mail.</text></g><clipPath id=\\\"clip4-27\\\"><path d=\\\"M 205 412 L 573 412 L 573 434 L 205 434 L 205 412 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 424.4656)\\\" x=\\\"0 5.336 9.784 14.232\\\">Send</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 228.5336 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 231.2172 424.4656)\\\" x=\\\"0 6.664 11.112 12.936\\\">mail</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.9789 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 248.6625 424.4656)\\\" x=\\\"0 2.224 6.672\\\">to:</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.557 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 260.2406 424.4656)\\\" x=\\\"0 5.336 9.784 14.232\\\">Snap</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 278.9242 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 281.6078 424.4656)\\\" x=\\\"0 5.776 10.664\\\">RTO</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 298.4945 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 301.1781 424.4656)\\\" x=\\\"0 4.448 8.896\\\">LLC</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 315.8539 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 318.5375 424.4656)\\\" x=\\\"0 5.336 7.56 9.784 14.232 18.68 20.904 22.728 27.176 31.624\\\">Attention:</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 352.3851 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 355.0687 424.4656)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 19.16 23.608 25.832 27.656 32.104 36.552\\\">Arbitration.</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.8461 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 396.5297 424.4656)\\\" x=\\\"0 5.336 7.56 13.784\\\">P.O.</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 412.5336 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 415.2172 424.4656)\\\" x=\\\"0 5.336 9.784\\\">Box</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 429.0023 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 431.6859 424.4656)\\\" x=\\\"0 4.448 8.896 13.344 17.792 22.24\\\">26561,</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.1547 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 458.8383 424.4656)\\\" x=\\\"0 5.336 9.784 11.608\\\">Salt</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 472.6703 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 475.3539 424.4656)\\\" x=\\\"0 4.448 8.896 12.896\\\">Lake</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 492.7015 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 495.3851 424.4656)\\\" x=\\\"0 5.776 7.6 9.824 13.824\\\">City,</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 511.432 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 514.1156 424.4656)\\\" x=\\\"0 5.776\\\">UT</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 524.7797 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 527.4633 424.4656)\\\" x=\\\"0 4.448 8.896 13.344 17.792 22.24\\\">84126.</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.932 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 554.6156 424.4656)\\\" x=\\\"0 5.336 9.784\\\">You</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 415.4109)\\\" x=\\\"0 4 8.448 12.896 15.024 19.024 23.472 25.296 27.12 29.248 33.696 37.696 39.824 44.272 46.936 49.064 53.512 57.512 61.96 64.088 68.088 72.536 75.2 77.424 79.248 81.472 83.296 87.744 92.192 94.32 100.984 105.432 107.256 109.08 111.208 113.432 117.88 120.008 124.008 128.456 132.904 135.128 136.952 139.616 146.28 148.408 151.072 155.52 159.52 163.968 165.792 170.24 172.464\\\">can call us or use certified mail to confirm receipt.</text></g><clipPath id=\\\"clip4-28\\\"><path d=\\\"M 35 373 L 130 373 L 130 413 L 35 413 L 35 373 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-28)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 412.7313 L 129.35 412.7313 L 129.35 373.5125 L 35.45 373.5125 L 35.45 412.7313 z \\\"/><path clip-path=\\\"url(#clip4-28)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 410.7313 L 125.25 410.7313 L 125.25 392.6219 L 39.55 392.6219 L 39.55 410.7313 z \\\"/><path clip-path=\\\"url(#clip4-28)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 41.9508 410.7313 L 122.9508 410.7313 L 122.9508 400.7313 L 41.9508 400.7313 L 41.9508 410.7313 z \\\"/><g clip-path=\\\"url(#clip4-28)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 41.9508 403.3562)\\\" x=\\\"0 5.776 10.224 14.672 16.8 20.8 27.464 31.912 33.736 35.56 38.224 42.224 44.048 48.496 50.32 56.984 60.984 63.112 67.112 71.56 76.008 78.672\\\">Can small-claims court</text></g><path clip-path=\\\"url(#clip4-28)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 43.3219 401.6766 L 122.3219 401.6766 L 122.3219 391.6766 L 43.3219 391.6766 L 43.3219 401.6766 z \\\"/><g clip-path=\\\"url(#clip4-28)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 43.3219 394.3016)\\\" x=\\\"0 4 8.448 10.272 14.272 18.72 20.848 24.848 29.296 35.96 40.408 42.536 48.312 50.136 54.136 58.584 63.032 65.256 69.704 73.704\\\">solve s* D E M O *s?</text></g><clipPath id=\\\"clip4-29\\\"><path d=\\\"M 129 373 L 206 373 L 206 413 L 129 413 L 129 373 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-29)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 159.5461 403.3562)\\\" x=\\\"0 5.336 9.784 13.784\\\">Yes.</text></g><clipPath id=\\\"clip4-30\\\"><path d=\\\"M 205 373 L 573 373 L 573 413 L 205 413 L 205 373 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 403.3562)\\\" x=\\\"0 5.3359 9.7852 13.7852\\\">Each</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 228.0844 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 229.9094 403.3562)\\\" x=\\\"0 4.4492 8.8984 11.5625 13.7851\\\">party</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.6945 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 249.5195 403.3562)\\\" x=\\\"0 4.4492 8.8984\\\">has</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.418 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 264.243 403.3562)\\\" x=\\\"0 2.2227 6.6719\\\">the</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.3641 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 277.1891 403.3562)\\\" x=\\\"0 2.6641 4.4883 8.9375 13.3867\\\">right</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 292.7984 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 294.6234 403.3562)\\\" x=\\\"0 2.2227\\\">to</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 301.2953 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 303.1203 403.3562)\\\" x=\\\"0 4.4492 7.1133 11.5625 13.3867 15.6094 18.2734 22.7227 24.9453 29.3945\\\">arbitrate,</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 334.7375 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 336.5625 403.3562)\\\" x=\\\"0 4.4492\\\">or</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 343.6758 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 345.5008 403.3562)\\\" x=\\\"0 2.2227\\\">to</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 352.1727 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 353.9976 403.3562)\\\" x=\\\"0 4.4492\\\">go</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 362.8961 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 364.7211 403.3562)\\\" x=\\\"0 2.2227\\\">to</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.393 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 373.218 403.3562)\\\" x=\\\"0 4 10.6641 15.1133 16.9375 18.7617 21.4258 25.4258 27.25 31.6992 33.5234 40.1875\\\">small-claims</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 417.4055 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 419.2305 403.3562)\\\" x=\\\"0 4 8.4492 12.8984 15.5625\\\">court</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 437.0156 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 438.8406 403.3562)\\\" x=\\\"0 1.8242\\\">if</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 442.8875 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 444.7125 403.3562)\\\" x=\\\"0 2.2227 6.6719\\\">the</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 455.8336 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 457.6586 403.3562)\\\" x=\\\"0 4 10.6641 15.1133 16.9375 18.7617 21.4258 25.4258 27.25 31.6992 33.5234 40.1875\\\">small-claims</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.8461 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 503.6711 403.3562)\\\" x=\\\"0 4 8.4492 12.8984 15.5625\\\">court</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.4562 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 523.2812 403.3562)\\\" x=\\\"0 4.4492 8.8984\\\">has</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 536.1797 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 538.0047 403.3562)\\\" x=\\\"0 2.2227 6.6719\\\">the</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 394.3016)\\\" x=\\\"0 4.4492 8.8984 14.6758 19.125\\\">power</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.639 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 233.464 394.3016)\\\" x=\\\"0 2.2227\\\">to</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 240.1359 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 241.9609 394.3016)\\\" x=\\\"0 4.4492 8.8984 13.3477\\\">hear</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.9726 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 260.0976 394.3016)\\\" x=\\\"0 2.2226 6.6719\\\">the</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 271.2187 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 273.3437 394.3016)\\\" x=\\\"0 5.7773 7.6016 11.6016 16.0508 20.5 22.7227 27.1719\\\">Dispute.</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.7383 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 304.8633 394.3016)\\\" x=\\\"0 5.3359 8 12.4492 14.2734 16.4961 19.1602 23.6094 25.832 27.6562 32.1055\\\">Arbitration</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 341.418 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 343.543 394.3016)\\\" x=\\\"0 5.7773 7.6016 9.4258\\\">will</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 354.793 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 356.918 394.3016)\\\" x=\\\"0 4 8.4492 10.2734 14.2734\\\">solve</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.6406 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 377.7656 394.3016)\\\" x=\\\"0 4.4492 6.2734\\\">all</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 385.8633 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 387.9883 394.3016)\\\" x=\\\"0 5.7774 7.6016 11.6016 16.0508 20.5 22.7227 27.1719\\\">Disputes</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.1601 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 421.2851 394.3016)\\\" x=\\\"0 2.2227 6.6719 11.1211\\\">that</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.6289 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 436.7539 394.3016)\\\" x=\\\"0 2.2226 6.6719\\\">the</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.875 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 450 394.3016)\\\" x=\\\"0 4 10.6641 15.1133 16.9375 18.7617 21.4258 25.4258 27.25 31.6992 33.5234 40.1875\\\">small-claims</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 494.1875 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 496.3125 394.3016)\\\" x=\\\"0 4 8.4492 12.8984 15.5625\\\">court</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 514.0976 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 516.2226 394.3016)\\\" x=\\\"0 4.4492 8.8984 13.3477\\\">does</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 533.5703 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 535.6953 394.3016)\\\" x=\\\"0 4.4492 8.8984\\\">not</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 546.8164 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 548.9414 394.3016)\\\" x=\\\"0 4.4492 8.8984 12.8984\\\">have</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 385.2469)\\\" x=\\\"0 2.2227 6.6719\\\">the</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 220.9711 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 223.0961 385.2469)\\\" x=\\\"0 4.4492 8.8984 14.6758 19.125\\\">power</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 244.8852 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 247.0101 385.2469)\\\" x=\\\"0 2.2227\\\">to</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 253.682 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 255.807 385.2469)\\\" x=\\\"0 4.4492 8.8984 13.3477 16.0117\\\">hear.</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 274.0414 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 276.1664 385.2469)\\\" x=\\\"0 2.2226\\\">If</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.6117 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 282.7367 385.2469)\\\" x=\\\"0 2.2227 6.6719 11.1211 13.7852\\\">there</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 300.9711 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 303.0961 385.2469)\\\" x=\\\"0 1.8242\\\">is</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.9203 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 311.0453 385.2469)\\\" x=\\\"0 4.4492\\\">an</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.9437 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 322.0687 385.2469)\\\" x=\\\"0 4.4492 8.8984 13.3477 17.7969 22.2461\\\">appeal</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 346.139 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 348.264 385.2469)\\\" x=\\\"0 2.2227 4.8867 9.3359\\\">from</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 364.264 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 366.389 385.2469)\\\" x=\\\"0 4 10.6641 15.1133 16.9375 18.7617 21.4258 25.4258 27.25 31.6992 33.5234 40.1875\\\">small-claims</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 410.5765 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 412.7015 385.2469)\\\" x=\\\"0 4 8.4492 12.8984 15.5625 17.7852\\\">court,</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 432.7094 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 434.8344 385.2469)\\\" x=\\\"0 4.4492\\\">or</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 441.9477 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 444.0727 385.2469)\\\" x=\\\"0 1.8242\\\">if</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 448.1195 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 450.2445 385.2469)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.6937 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 456.8187 385.2469)\\\" x=\\\"0 5.7773 7.6016 11.6016 16.0508 20.5 22.7227\\\">Dispute</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 483.9906 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 486.1156 385.2469)\\\" x=\\\"0 4 8.4492 12.8984 17.3476 21.7969 26.2461\\\">changes</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 516.3617 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 518.4867 385.2469)\\\" x=\\\"0 4\\\">so</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.9359 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 529.0609 385.2469)\\\" x=\\\"0 2.2227 6.6719 11.1211\\\">that</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 542.4047 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 544.5297 385.2469)\\\" x=\\\"0 2.2227 6.6719\\\">the</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 376.1922)\\\" x=\\\"0 4 10.6641 15.1133 16.9375 18.7617 21.4258 25.4258 27.25 31.6992 33.5234 40.1875\\\">small-claims</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 254.0375 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 256.1625 376.1922)\\\" x=\\\"0 4 8.4492 12.8984 15.5625\\\">court</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 273.9477 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 276.0727 376.1922)\\\" x=\\\"0 1.8242 6.2734 10.2734 14.7226\\\">loses</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 294.7953 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 296.9203 376.1922)\\\" x=\\\"0 2.2227 6.6719\\\">the</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.0414 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 310.1664 376.1922)\\\" x=\\\"0 4.4492 8.8984 14.6758 19.125\\\">power</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 331.9555 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 333.7805 376.1922)\\\" x=\\\"0 2.2227\\\">to</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 340.4523 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 342.2773 376.1922)\\\" x=\\\"0 4.4492 8.8984 13.3477\\\">hear</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 358.289 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 360.1141 376.1922)\\\" x=\\\"0 1.8242 4.0469\\\">it,</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 366.3836 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 368.2086 376.1922)\\\" x=\\\"0 2.2226 6.6719 11.1211\\\">then</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.7789 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 385.6039 376.1922)\\\" x=\\\"0 2.2227 6.6719\\\">the</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 396.725 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 398.55 376.1922)\\\" x=\\\"0 5.7773 7.6016 11.6016 16.0508 20.5 22.7227\\\">Dispute</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 425.7219 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 427.5469 376.1922)\\\" x=\\\"0 5.7773 7.6016 9.4258\\\">will</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 438.7969 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 440.6219 376.1922)\\\" x=\\\"0 4.4492 8.8984 10.7227\\\">only</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 455.3445 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 457.1695 376.1922)\\\" x=\\\"0 4.4492\\\">be</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.068 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 467.893 376.1922)\\\" x=\\\"0 4.4492 8.8984 13.3477 16.0117\\\">heard</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 488.3539 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 490.1789 376.1922)\\\" x=\\\"0 4.4492\\\">by</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 498.6281 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 500.4531 376.1922)\\\" x=\\\"0 4.4492\\\">an</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.3516 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 511.1766 376.1922)\\\" x=\\\"0 5.3359 8 12.4492 14.2734 16.4961 20.9453 23.6094\\\">Arbiter.</text></g><clipPath id=\\\"clip4-31\\\"><path d=\\\"M 35 343 L 130 343 L 130 374 L 35 374 L 35 343 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-31)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 373.5125 L 129.35 373.5125 L 129.35 343.3484 L 35.45 343.3484 L 35.45 373.5125 z \\\"/><path clip-path=\\\"url(#clip4-31)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 371.5125 L 125.25 371.5125 L 125.25 362.4578 L 39.55 362.4578 L 39.55 371.5125 z \\\"/><path clip-path=\\\"url(#clip4-31)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 41.5875 371.5125 L 123.5875 371.5125 L 123.5875 361.5125 L 41.5875 361.5125 L 41.5875 371.5125 z \\\"/><g clip-path=\\\"url(#clip4-31)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 41.5875 364.1375)\\\" x=\\\"0 5.776 10.224 12.352 16.8 19.024 23.472 27.92 30.584 32.712 37.16 41.608 43.832 45.656 50.104 54.552 58.552 60.68 65.128 69.128 70.952 74.952 77.176\\\">Do other options exist?</text></g><clipPath id=\\\"clip4-32\\\"><path d=\\\"M 129 343 L 206 343 L 206 374 L 129 374 L 129 343 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-32)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 159.5461 364.1375)\\\" x=\\\"0 5.336 9.784 13.784\\\">Yes.</text></g><clipPath id=\\\"clip4-33\\\"><path d=\\\"M 205 343 L 573 343 L 573 374 L 205 374 L 205 343 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 364.1375)\\\" x=\\\"0 5.336 9.784 12.008\\\">Both</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 226.307 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 228.8021 364.1375)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056\\\">parties</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 252.8607 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 255.3557 364.1375)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 270.469 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 272.964 364.1375)\\\" x=\\\"0 4.448 8.448\\\">use</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 285.8625 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 288.3575 364.1375)\\\" x=\\\"0 1.824 6.272 12.048 14.272 18.72\\\">lawful</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.9044 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 311.3995 364.1375)\\\" x=\\\"0 4 8.448 10.272 12.496 15.16 19.608 24.056 25.88\\\">self-help</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 341.7315 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 344.2265 364.1375)\\\" x=\\\"0 2.664 7.112 13.776 18.224 22.672 24.496 28.944 32.944\\\">remedies.</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 379.3984 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 381.8935 364.1375)\\\" x=\\\"0 4.888 9.336 11.16\\\">This</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 397.0536 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 399.5487 364.1375)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44\\\">includes</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 428.994 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 431.489 364.1375)\\\" x=\\\"0 4 8.448 10.672 13.336 17.784 20.008\\\">set-off</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 453.7195 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 456.2146 364.1375)\\\" x=\\\"0 4.448\\\">or</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 463.3279 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 465.8229 364.1375)\\\" x=\\\"0 2.664 7.112 11.56 16.008 20.008 24.008 28.456 32.456 36.456 38.28 42.728\\\">repossession</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 513.0065 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 515.5015 364.1375)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 528.8492 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 531.3443 364.1375)\\\" x=\\\"0 4 8.448 10.272\\\">sale</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 546.0669 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 548.562 364.1375)\\\" x=\\\"0 4.448\\\">of</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 555.2339 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 557.7289 364.1375)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 355.0828)\\\" x=\\\"0 5.336 8 12.448 16.896 21.344 24.008 26.232 30.232\\\">Property.</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 242.307 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 245.9017 355.0828)\\\" x=\\\"0 5.336 9.784 12.008\\\">Both</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.3587 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 265.9534 355.0828)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056\\\">parties</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.0119 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 293.6066 355.0828)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.7199 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 312.3145 355.0828)\\\" x=\\\"0 4 8.448 12.896\\\">seek</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.213 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 332.8076 355.0828)\\\" x=\\\"0 2.664 7.112 13.776 18.224 22.672 24.496 28.944\\\">remedies</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 365.7568 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 369.3515 355.0828)\\\" x=\\\"0 5.776 10.224 12.048 16.048\\\">which</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 389.8515 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 393.4461 355.0828)\\\" x=\\\"0 4.448 8.896 13.344 14.872\\\">don&apos;t</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 410.5438 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 414.1384 355.0828)\\\" x=\\\"0 4 5.824 10.272 12.096\\\">claim</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 432.9002 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 436.4948 355.0828)\\\" x=\\\"0 6.664 11.112 15.56 20.008\\\">money</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 460.5065 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 464.1012 355.0828)\\\" x=\\\"0 4.448 8.896 15.56 20.008 24.456 28.904 32.904\\\">damages.</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.234 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 502.8287 355.0828)\\\" x=\\\"0 4.888 9.336 11.16\\\">This</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 517.9888 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 521.5835 355.0828)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44\\\">includes</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.0288 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 554.6234 355.0828)\\\" x=\\\"0 4.448 7.112 11.56\\\">pre-</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 346.0281)\\\" x=\\\"0 1.824 6.272 10.72 15.168 21.832 26.28 30.728 32.952 35.08 39.08 43.528 45.352 49.352 53.8 56.464 60.912 63.136 65.264 67.088 71.536 73.36 77.808 82.256 86.256 88.48 90.304 94.752 99.2 103.2 105.424 107.552 112 114.664 116.792 121.24 125.688 130.136 131.96 134.184 138.632 143.08 144.904 149.352 151.48 154.144 158.592 160.416 162.24 166.688 168.912\\\">judgment seizure, injunctions, or equitable relief.</text></g><clipPath id=\\\"clip4-34\\\"><path d=\\\"M 35 295 L 130 295 L 130 344 L 35 344 L 35 295 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-34)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 343.3484 L 129.35 343.3484 L 129.35 295.075 L 35.45 295.075 L 35.45 343.3484 z \\\"/><path clip-path=\\\"url(#clip4-34)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 341.3484 L 125.25 341.3484 L 125.25 323.2391 L 39.55 323.2391 L 39.55 341.3484 z \\\"/><path clip-path=\\\"url(#clip4-34)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 55.0406 341.3484 L 110.0406 341.3484 L 110.0406 331.3484 L 55.0406 331.3484 L 55.0406 341.3484 z \\\"/><g clip-path=\\\"url(#clip4-34)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 55.0406 333.9734)\\\" x=\\\"0 7.552 9.376 11.2 13.024 15.152 17.376 21.824 23.648 27.648 29.776 35.552 37.376 41.824 46.272 50.272\\\">Will this Clause</text></g><path clip-path=\\\"url(#clip4-34)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 47.3375 332.2938 L 118.3375 332.2938 L 118.3375 322.2938 L 47.3375 322.2938 L 47.3375 332.2938 z \\\"/><g clip-path=\\\"url(#clip4-34)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.3375 324.9187)\\\" x=\\\"0 4 8.448 12.896 15.12 16.944 21.392 25.84 30.288 32.416 34.64 39.088 41.216 45.664 50.112 54.112 58.56 61.224 65.672\\\">continue to govern?</text></g><clipPath id=\\\"clip4-35\\\"><path d=\\\"M 129 295 L 206 295 L 206 344 L 129 344 L 129 295 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-35)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.8976 333.9734)\\\" x=\\\"0 5.336 9.784 13.784 16.008 18.136 22.584 27.032 28.856 33.304 37.304\\\">Yes, unless</text></g><g clip-path=\\\"url(#clip4-35)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 135.7785 324.9187)\\\" x=\\\"0 4.448 6.672 11.12 15.568 18.232 24.008 25.832 29.832 34.28 36.408 40.856 45.304 47.968 52.416 56.864 61.312\\\">otherwise agreed.</text></g><clipPath id=\\\"clip4-36\\\"><path d=\\\"M 205 295 L 573 295 L 573 344 L 205 344 L 205 295 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 333.9734)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 223.6351 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 227.574 333.9734)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496\\\">Clause</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 252.5233 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 256.4622 333.9734)\\\" x=\\\"0 4 6.224 10.672 14.672\\\">stays</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.134 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 279.0729 333.9734)\\\" x=\\\"0 4.448 6.672 8.896 13.344 17.344 19.568 21.392 25.392 29.84\\\">effective,</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 311.1354 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 315.0743 333.9734)\\\" x=\\\"0 4.448 8.896 10.72 15.168 19.168\\\">unless</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.2462 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 342.1851 333.9734)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 353.3062 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 357.2451 333.9734)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056\\\">parties</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 381.3037 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 385.2426 333.9734)\\\" x=\\\"0 4 5.824 10.272\\\">sign</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 399.9652 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 403.9041 333.9734)\\\" x=\\\"0 4.448\\\">an</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 412.8026 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 416.7415 333.9734)\\\" x=\\\"0 4.448 8.896 11.56 16.008 20.456 27.12 31.568 36.016\\\">agreement</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.9875 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 458.9264 333.9734)\\\" x=\\\"0 4 6.224 10.672 12.896 14.72 19.168\\\">stating</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 482.5436 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 486.4825 333.9734)\\\" x=\\\"0 1.824\\\">it</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 490.5294 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 494.4683 333.9734)\\\" x=\\\"0 4.448 8.896 13.344 17.344 21.792 23.32 25.544\\\">doesn&apos;t.</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 522.2378 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 526.1767 333.9734)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 539.9619 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 543.9008 333.9734)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496\\\">Clause</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 324.9187)\\\" x=\\\"0 4.448 8.896 12.896 17.344 20.008 24.456\\\">governs</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.3109 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 241.2057 324.9187)\\\" x=\\\"0 1.824\\\">if</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.2526 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 248.1473 324.9187)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 261.0458 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 263.9405 324.9187)\\\" x=\\\"0 2.664 7.112 11.112 15.112 16.936 21.384\\\">rescind</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 289.7765 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 292.6712 324.9187)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 303.7923 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 306.6871 324.9187)\\\" x=\\\"0 2.224 4.888 9.336 13.784 17.784 22.232 26.232 28.456 30.28 34.728 39.176\\\">transaction.</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.0894 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 350.9842 324.9187)\\\" x=\\\"0 2.224\\\">It</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.4295 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 358.3243 324.9187)\\\" x=\\\"0 4.448 8.896 12.896 17.344 20.008 24.456\\\">governs</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 386.7852 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 389.68 324.9187)\\\" x=\\\"0 1.824\\\">if</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.7268 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 396.6216 324.9187)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 409.52 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 412.4148 324.9187)\\\" x=\\\"0 4.448 8.896 11.12 15.568 20.016 21.84 24.064\\\">default,</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 438.7038 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 441.5986 324.9187)\\\" x=\\\"0 2.664 7.112 11.56 16.008 21.784\\\">renew,</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 465.6103 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 468.5051 324.9187)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456 24.456\\\">prepay,</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 495.1887 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 498.0834 324.9187)\\\" x=\\\"0 4.448\\\">or</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 505.1967 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 508.0915 324.9187)\\\" x=\\\"0 4.448 8.896 12.896\\\">pay.</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 523.2126 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 526.1073 324.9187)\\\" x=\\\"0 2.224\\\">It</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 530.5527 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 533.4474 324.9187)\\\" x=\\\"0 4.448 8.896 12.896 17.344 20.008 24.456\\\">governs</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 561.9084 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 564.8031 324.9187)\\\" x=\\\"0 1.824\\\">if</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 315.8641)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 222.7484 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 227.0199 315.8641)\\\" x=\\\"0 2.224 6.672 9.336 16 17.824 22.272 26.72 28.944 33.392\\\">terminate,</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.6371 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 266.9086 315.8641)\\\" x=\\\"0 1.824\\\">if</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 270.9555 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 275.2269 315.8641)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 288.1254 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 292.3969 315.8641)\\\" x=\\\"0 2.664 7.112 8.936 13.384 17.384 19.608 24.056 26.28 30.728\\\">reinstate,</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 325.35 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 329.6215 315.8641)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 342.9691 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 347.2406 315.8641)\\\" x=\\\"0 1.824\\\">if</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.2875 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 355.559 315.8641)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 368.4574 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 372.7289 315.8641)\\\" x=\\\"0 2.664 7.112 9.336 13.784 16.448\\\">return</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.6273 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 397.8988 315.8641)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 409.0199 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 413.2914 315.8641)\\\" x=\\\"0 5.336 8 12.448 16.896 21.344 24.008 26.232 30.232\\\">Property.</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 445.7484 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 450.0199 315.8641)\\\" x=\\\"0 2.224\\\">It</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.4652 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 458.7367 315.8641)\\\" x=\\\"0 4.448 8.896 12.896 17.344 20.008 24.456\\\">governs</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 487.1977 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 491.4691 315.8641)\\\" x=\\\"0 1.824\\\">if</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 495.516 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 499.7875 315.8641)\\\" x=\\\"0 4 8.448 12.896\\\">your</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 515.35 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 519.6215 315.8641)\\\" x=\\\"0 5.336 9.784 12.448 16.896 21.344 28.008 32.456 36.904\\\">Agreement</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 558.7543 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 563.0258 315.8641)\\\" x=\\\"0 1.824\\\">is</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 306.8094)\\\" x=\\\"0 1.824 8.488 12.936 17.384 21.384 23.608 28.056\\\">impacted</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 242.3578 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 248.4078 306.8094)\\\" x=\\\"0 4.448\\\">by</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.857 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 262.907 306.8094)\\\" x=\\\"0 4.448 8.896 13.344 17.344 20.008 24.456 28.904 31.128 35.128 39.128\\\">bankruptcy.</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 304.2625 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 310.3125 306.8094)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 324.0976 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 330.1477 306.8094)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496\\\">Clause</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.0969 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 361.1469 306.8094)\\\" x=\\\"0 2.664 7.112 13.776 18.224 20.048 24.496\\\">remains</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 389.6469 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 395.6969 306.8094)\\\" x=\\\"0 4.448 6.672 8.896 13.344 17.344 19.568 21.392 25.392 29.84\\\">effective,</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 427.7594 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 433.8094 306.8094)\\\" x=\\\"0 4.448 8.896 12.896 17.344 19.168 21.392\\\">despite</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 459.6531 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 465.7031 306.8094)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 470.1523 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 476.2023 306.8094)\\\" x=\\\"0 2.224 4.888 9.336 13.784 17.784 22.232 26.232 28.456 30.28 34.728 39.176 40.704\\\">transaction&apos;s</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 520.9094 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 526.9594 306.8094)\\\" x=\\\"0 2.224 6.672 9.336 16 17.824 22.272 26.72 28.944 30.768 35.216 39.664\\\">termination,</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 297.7547)\\\" x=\\\"0 4.448 11.112 15.56 20.008 24.456 31.12 35.568 40.016 42.24 44.464 46.592 51.04 55.04 59.488 61.312 63.976 68.424 70.648 72.472 76.92 81.368 83.592 85.72 90.168 92.832 94.96 99.408 103.856 106.52 108.744 113.192 115.856 122.52 126.968 131.416 135.416 139.864\\\">amendment, expiration, or performance.</text></g><clipPath id=\\\"clip4-37\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 770.2 L 129.85 770.2 L 129.85 769.2 L 34.95 769.2 L 34.95 770.2 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 769.2 L 35.95 769.2 L 35.95 749.0906 L 34.95 749.0906 L 34.95 769.2 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 770.2 L 206.25 770.2 L 206.25 769.2 L 129.85 769.2 L 129.85 770.2 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 769.2 L 129.85 769.2 L 129.85 749.0906 L 128.85 749.0906 L 128.85 769.2 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 770.2 L 573.45 770.2 L 573.45 769.2 L 206.25 769.2 L 206.25 770.2 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 769.2 L 573.45 769.2 L 573.45 749.0906 L 572.45 749.0906 L 572.45 769.2 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 769.2 L 206.25 769.2 L 206.25 749.0906 L 205.25 749.0906 L 205.25 769.2 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 749.0906 L 129.85 749.0906 L 129.85 748.0906 L 34.95 748.0906 L 34.95 749.0906 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 748.0906 L 35.95 748.0906 L 35.95 727.9813 L 34.95 727.9813 L 34.95 748.0906 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 749.0906 L 206.25 749.0906 L 206.25 748.0906 L 129.85 748.0906 L 129.85 749.0906 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 748.0906 L 129.85 748.0906 L 129.85 727.9813 L 128.85 727.9813 L 128.85 748.0906 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 749.0906 L 573.45 749.0906 L 573.45 748.0906 L 206.25 748.0906 L 206.25 749.0906 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 748.0906 L 573.45 748.0906 L 573.45 727.9813 L 572.45 727.9813 L 572.45 748.0906 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 748.0906 L 206.25 748.0906 L 206.25 727.9813 L 205.25 727.9813 L 205.25 748.0906 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 727.9813 L 129.85 727.9813 L 129.85 726.9813 L 34.95 726.9813 L 34.95 727.9813 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 726.9813 L 35.95 726.9813 L 35.95 706.8719 L 34.95 706.8719 L 34.95 726.9813 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 727.9813 L 206.25 727.9813 L 206.25 726.9813 L 129.85 726.9813 L 129.85 727.9813 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 726.9813 L 129.85 726.9813 L 129.85 706.8719 L 128.85 706.8719 L 128.85 726.9813 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 727.9813 L 573.45 727.9813 L 573.45 726.9813 L 206.25 726.9813 L 206.25 727.9813 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 726.9813 L 573.45 726.9813 L 573.45 706.8719 L 572.45 706.8719 L 572.45 726.9813 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 726.9813 L 206.25 726.9813 L 206.25 706.8719 L 205.25 706.8719 L 205.25 726.9813 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 706.8719 L 129.85 706.8719 L 129.85 705.8719 L 34.95 705.8719 L 34.95 706.8719 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 705.8719 L 35.95 705.8719 L 35.95 631.4344 L 34.95 631.4344 L 34.95 705.8719 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 706.8719 L 206.25 706.8719 L 206.25 705.8719 L 129.85 705.8719 L 129.85 706.8719 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 705.8719 L 129.85 705.8719 L 129.85 631.4344 L 128.85 631.4344 L 128.85 705.8719 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 706.8719 L 573.45 706.8719 L 573.45 705.8719 L 206.25 705.8719 L 206.25 706.8719 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 705.8719 L 573.45 705.8719 L 573.45 631.4344 L 572.45 631.4344 L 572.45 705.8719 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 705.8719 L 206.25 705.8719 L 206.25 631.4344 L 205.25 631.4344 L 205.25 705.8719 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 631.4344 L 129.85 631.4344 L 129.85 630.4344 L 34.95 630.4344 L 34.95 631.4344 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 630.4344 L 35.95 630.4344 L 35.95 579.1609 L 34.95 579.1609 L 34.95 630.4344 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 631.4344 L 206.25 631.4344 L 206.25 630.4344 L 129.85 630.4344 L 129.85 631.4344 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 630.4344 L 129.85 630.4344 L 129.85 579.1609 L 128.85 579.1609 L 128.85 630.4344 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 631.4344 L 573.45 631.4344 L 573.45 630.4344 L 206.25 630.4344 L 206.25 631.4344 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 630.4344 L 573.45 630.4344 L 573.45 579.1609 L 572.45 579.1609 L 572.45 630.4344 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 630.4344 L 206.25 630.4344 L 206.25 579.1609 L 205.25 579.1609 L 205.25 630.4344 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 579.1609 L 129.85 579.1609 L 129.85 578.1609 L 34.95 578.1609 L 34.95 579.1609 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 578.1609 L 35.95 578.1609 L 35.95 530.8875 L 34.95 530.8875 L 34.95 578.1609 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 579.1609 L 206.25 579.1609 L 206.25 578.1609 L 129.85 578.1609 L 129.85 579.1609 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 578.1609 L 129.85 578.1609 L 129.85 530.8875 L 128.85 530.8875 L 128.85 578.1609 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 579.1609 L 573.45 579.1609 L 573.45 578.1609 L 206.25 578.1609 L 206.25 579.1609 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 578.1609 L 573.45 578.1609 L 573.45 530.8875 L 572.45 530.8875 L 572.45 578.1609 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 578.1609 L 206.25 578.1609 L 206.25 530.8875 L 205.25 530.8875 L 205.25 578.1609 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 530.8875 L 129.85 530.8875 L 129.85 529.8875 L 34.95 529.8875 L 34.95 530.8875 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 529.8875 L 35.95 529.8875 L 35.95 491.6688 L 34.95 491.6688 L 34.95 529.8875 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 530.8875 L 206.25 530.8875 L 206.25 529.8875 L 129.85 529.8875 L 129.85 530.8875 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 529.8875 L 129.85 529.8875 L 129.85 491.6688 L 128.85 491.6688 L 128.85 529.8875 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 530.8875 L 573.45 530.8875 L 573.45 529.8875 L 206.25 529.8875 L 206.25 530.8875 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 529.8875 L 573.45 529.8875 L 573.45 491.6688 L 572.45 491.6688 L 572.45 529.8875 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 529.8875 L 206.25 529.8875 L 206.25 491.6688 L 205.25 491.6688 L 205.25 529.8875 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 491.6688 L 129.85 491.6688 L 129.85 490.6688 L 34.95 490.6688 L 34.95 491.6688 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 490.6688 L 35.95 490.6688 L 35.95 434.3406 L 34.95 434.3406 L 34.95 490.6688 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 491.6688 L 206.25 491.6688 L 206.25 490.6688 L 129.85 490.6688 L 129.85 491.6688 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 490.6688 L 129.85 490.6688 L 129.85 434.3406 L 128.85 434.3406 L 128.85 490.6688 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 491.6688 L 573.45 491.6688 L 573.45 490.6688 L 206.25 490.6688 L 206.25 491.6688 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 490.6688 L 573.45 490.6688 L 573.45 434.3406 L 572.45 434.3406 L 572.45 490.6688 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 490.6688 L 206.25 490.6688 L 206.25 434.3406 L 205.25 434.3406 L 205.25 490.6688 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 434.3406 L 129.85 434.3406 L 129.85 433.3406 L 34.95 433.3406 L 34.95 434.3406 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 433.3406 L 35.95 433.3406 L 35.95 413.2313 L 34.95 413.2313 L 34.95 433.3406 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 434.3406 L 206.25 434.3406 L 206.25 433.3406 L 129.85 433.3406 L 129.85 434.3406 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 433.3406 L 129.85 433.3406 L 129.85 413.2313 L 128.85 413.2313 L 128.85 433.3406 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 434.3406 L 573.45 434.3406 L 573.45 433.3406 L 206.25 433.3406 L 206.25 434.3406 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 433.3406 L 573.45 433.3406 L 573.45 413.2313 L 572.45 413.2313 L 572.45 433.3406 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 433.3406 L 206.25 433.3406 L 206.25 413.2313 L 205.25 413.2313 L 205.25 433.3406 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 413.2313 L 129.85 413.2313 L 129.85 412.2313 L 34.95 412.2313 L 34.95 413.2313 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 412.2313 L 35.95 412.2313 L 35.95 374.0125 L 34.95 374.0125 L 34.95 412.2313 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 413.2313 L 206.25 413.2313 L 206.25 412.2313 L 129.85 412.2313 L 129.85 413.2313 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 412.2313 L 129.85 412.2313 L 129.85 374.0125 L 128.85 374.0125 L 128.85 412.2313 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 413.2313 L 573.45 413.2313 L 573.45 412.2313 L 206.25 412.2313 L 206.25 413.2313 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 412.2313 L 573.45 412.2313 L 573.45 374.0125 L 572.45 374.0125 L 572.45 412.2313 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 412.2313 L 206.25 412.2313 L 206.25 374.0125 L 205.25 374.0125 L 205.25 412.2313 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 374.0125 L 129.85 374.0125 L 129.85 373.0125 L 34.95 373.0125 L 34.95 374.0125 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 373.0125 L 35.95 373.0125 L 35.95 343.8484 L 34.95 343.8484 L 34.95 373.0125 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 374.0125 L 206.25 374.0125 L 206.25 373.0125 L 129.85 373.0125 L 129.85 374.0125 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 373.0125 L 129.85 373.0125 L 129.85 343.8484 L 128.85 343.8484 L 128.85 373.0125 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 374.0125 L 573.45 374.0125 L 573.45 373.0125 L 206.25 373.0125 L 206.25 374.0125 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 373.0125 L 573.45 373.0125 L 573.45 343.8484 L 572.45 343.8484 L 572.45 373.0125 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 373.0125 L 206.25 373.0125 L 206.25 343.8484 L 205.25 343.8484 L 205.25 373.0125 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 343.8484 L 129.85 343.8484 L 129.85 342.8484 L 34.95 342.8484 L 34.95 343.8484 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 295.575 L 129.85 295.575 L 129.85 294.575 L 34.95 294.575 L 34.95 295.575 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 342.8484 L 35.95 342.8484 L 35.95 295.575 L 34.95 295.575 L 34.95 342.8484 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 343.8484 L 206.25 343.8484 L 206.25 342.8484 L 129.85 342.8484 L 129.85 343.8484 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 295.575 L 206.25 295.575 L 206.25 294.575 L 129.85 294.575 L 129.85 295.575 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 342.8484 L 129.85 342.8484 L 129.85 295.575 L 128.85 295.575 L 128.85 342.8484 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 343.8484 L 573.45 343.8484 L 573.45 342.8484 L 206.25 342.8484 L 206.25 343.8484 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 295.575 L 573.45 295.575 L 573.45 294.575 L 206.25 294.575 L 206.25 295.575 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 342.8484 L 573.45 342.8484 L 573.45 295.575 L 572.45 295.575 L 572.45 342.8484 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 342.8484 L 206.25 342.8484 L 206.25 295.575 L 205.25 295.575 L 205.25 342.8484 z \\\"/><g clip-path=\\\"url(#clip4-37)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 286.1385 282.8562)\\\" x=\\\"0 6.67 10 15.56 20.56 26.12 31.12\\\">Process</text></g><clipPath id=\\\"clip4-38\\\"><path d=\\\"M 35 214 L 128 214 L 128 272 L 35 272 L 35 214 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-38)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.2 271.652 L 127.6 271.652 L 127.6 214.3238 L 35.2 214.3238 L 35.2 271.652 z \\\"/><path clip-path=\\\"url(#clip4-38)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.3 269.652 L 123.5 269.652 L 123.5 251.5426 L 39.3 251.5426 L 39.3 269.652 z \\\"/><path clip-path=\\\"url(#clip4-38)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 44.7652 269.652 L 118.7652 269.652 L 118.7652 259.652 L 44.7652 259.652 L 44.7652 269.652 z \\\"/><g clip-path=\\\"url(#clip4-38)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 44.7652 262.277)\\\" x=\\\"0 5.776 10.224 16 18.128 22.576 27.024 31.472 35.472 37.6 42.048 44.712 49.16 50.984 53.208 55.872 60.32 62.544 64.368 68.816\\\">How does arbitration</text></g><path clip-path=\\\"url(#clip4-38)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 71.3961 260.5973 L 92.3961 260.5973 L 92.3961 250.5973 L 71.3961 250.5973 L 71.3961 260.5973 z \\\"/><g clip-path=\\\"url(#clip4-38)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 71.3961 253.2223)\\\" x=\\\"0 4 6.224 10.672 13.336 15.56\\\">start?</text></g><clipPath id=\\\"clip4-39\\\"><path d=\\\"M 127 214 L 206 214 L 206 272 L 127 272 L 127 214 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-39)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 137.6496 262.277)\\\" x=\\\"0 6.664 11.112 12.936 14.76 16.584 21.032 25.48 27.608 32.056 34.184 38.632 43.08 45.304 47.128 51.128 55.576\\\">Mailing a notice.</text></g><clipPath id=\\\"clip4-40\\\"><path d=\\\"M 205 214 L 574 214 L 574 272 L 205 272 L 205 214 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 262.277)\\\" x=\\\"0 5.336 7.16 9.384 13.832 18.28\\\">Either</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 230.5453 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 233.8153 262.277)\\\" x=\\\"0 4.448 8.896 11.56 13.784\\\">party</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 251.6004 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 254.8704 262.277)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 269.9837 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 273.2536 262.277)\\\" x=\\\"0 6.664 11.112 12.936\\\">mail</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 288.0154 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 291.2853 262.277)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.4064 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 305.6764 262.277)\\\" x=\\\"0 4.448 6.672 11.12 15.568\\\">other</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 323.9108 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 327.1807 262.277)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 331.6299 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 334.8999 262.277)\\\" x=\\\"0 2.664 7.112 11.56 16.008 20.456 24.456\\\">request</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 361.5835 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 364.8535 262.277)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.5253 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 374.7953 262.277)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 29.392\\\">arbitrate,</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 406.4125 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 409.6825 262.277)\\\" x=\\\"0 4.448 8.448 12.896\\\">even</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 427.0301 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 430.3001 262.277)\\\" x=\\\"0 1.824\\\">if</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.3469 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 437.6169 262.277)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 442.0661 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 445.3361 262.277)\\\" x=\\\"0 1.824 6.272 12.048 16.048 20.496 22.32\\\">lawsuit</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 469.883 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 473.1529 262.277)\\\" x=\\\"0 4.448 8.896\\\">has</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.0514 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 489.3213 262.277)\\\" x=\\\"0 4.448 8.896 13.344\\\">been</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 507.1182 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 510.3882 262.277)\\\" x=\\\"0 2.224 4.048 5.872 10.32 14.768\\\">filed.</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 527.3804 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 530.6503 262.277)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 544.4355 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 547.7055 262.277)\\\" x=\\\"0 4.448 8.896 11.12 12.944 16.944\\\">notice</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 253.2223)\\\" x=\\\"0 4 8.448 12.896 17.344 19.168\\\">should</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.2211 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 236.4008 253.2223)\\\" x=\\\"0 4.448 8.896 12.896 16.896 19.56 21.384 25.832\\\">describe</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 266.6859 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 269.8656 253.2223)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.9867 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 284.1664 253.2223)\\\" x=\\\"0 5.776 7.6 11.6 16.048 20.496 22.72\\\">Dispute</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 311.3383 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 314.518 253.2223)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 327.8656 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 331.0453 253.2223)\\\" x=\\\"0 2.664 7.112 8.936 10.76 15.208\\\">relief</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.4789 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 351.6586 253.2223)\\\" x=\\\"0 4 8.448 12.896 17.344 21.792 24.016\\\">sought.</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 377.9008 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 381.0805 253.2223)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 394.8656 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 398.0453 253.2223)\\\" x=\\\"0 2.664 7.112 11.112 15.56 17.384 21.384 23.208 27.656\\\">receiving</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.1547 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 433.3344 253.2223)\\\" x=\\\"0 4.448 8.896 11.56 13.784\\\">party</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 451.1195 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 454.2992 253.2223)\\\" x=\\\"0 6.664 11.112 15.112\\\">must</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 471.6351 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 474.8148 253.2223)\\\" x=\\\"0 6.664 11.112 12.936\\\">mail</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.5765 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 492.7562 253.2223)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 497.2055 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 500.3851 253.2223)\\\" x=\\\"0 2.664 7.112 11.112 15.56 20.008 24.456 28.456\\\">response</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 533.2953 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 536.475 253.2223)\\\" x=\\\"0 5.776 7.6 9.824 14.272 16.096\\\">within</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 557.0219 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 560.2015 253.2223)\\\" x=\\\"0 4.448\\\">20</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 244.1676)\\\" x=\\\"0 4.448 8.896 12.896 16.896\\\">days.</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 228.7211 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 231.1538 244.1676)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 235.5991 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 238.0317 244.1676)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 250.9302 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 253.3629 244.1676)\\\" x=\\\"0 6.664 11.112 12.936\\\">mail</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 268.1246 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 270.5573 244.1676)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.6783 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 284.111 244.1676)\\\" x=\\\"0 4.448 8.896 15.56 20.008 24.456 28.904\\\">demand,</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 315.2438 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 317.6765 244.1676)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 330.575 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 333.0076 244.1676)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.1209 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 350.5536 244.1676)\\\" x=\\\"0 4 8.448 12.896 17.344 21.344\\\">choose</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 376.3505 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 378.7831 244.1676)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 389.9042 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 392.3369 244.1676)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 26.768 31.216\\\">arbitration</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 428.0049 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 430.4375 244.1676)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456\\\">group.</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 453.1211 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 455.5538 244.1676)\\\" x=\\\"0 6.224 8.888\\\">Or,</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.6632 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 469.0959 244.1676)\\\" x=\\\"0 4 8.448 12.896\\\">your</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.6584 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 487.091 244.1676)\\\" x=\\\"0 4.448 8.896 15.56 20.008 24.456\\\">demand</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 516.0012 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 518.4339 244.1676)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 533.5471 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 535.9798 244.1676)\\\" x=\\\"0 4 6.224 10.672 12.896\\\">state</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.3236 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 555.7562 244.1676)\\\" x=\\\"0 2.224 6.672 11.12\\\">that</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 235.1129)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 222.4984 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 224.7098 235.1129)\\\" x=\\\"0 5.776 10.224 14.672\\\">want</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 241.6082 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 243.8196 235.1129)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 254.9407 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 257.152 235.1129)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056\\\">parties</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.2106 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 283.4219 235.1129)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.0938 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 292.3052 235.1129)\\\" x=\\\"0 4 8.448 12.896 17.344 21.344\\\">choose</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 318.1021 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 320.3134 235.1129)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 324.7626 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 326.974 235.1129)\\\" x=\\\"0 1.824 6.272 10.272 14.72\\\">local</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 343.5208 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 345.7322 235.1129)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608\\\">Arbiter.</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.5642 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 373.7756 235.1129)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 378.2209 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 380.4322 235.1129)\\\" x=\\\"0 2.664 7.112 8.936 13.384 15.608 20.056\\\">related</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 404.94 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 407.1514 235.1129)\\\" x=\\\"0 2.224 6.672 8.496 11.16\\\">third</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 422.7608 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 424.9721 235.1129)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056\\\">parties</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 449.0307 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 451.2421 235.1129)\\\" x=\\\"0 4.448\\\">or</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 458.3553 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 460.5667 235.1129)\\\" x=\\\"0 5.776\\\">we</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 470.7932 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 473.0046 235.1129)\\\" x=\\\"0 6.664 11.112 12.936\\\">mail</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 487.7663 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 489.9777 235.1129)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.0988 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 503.3101 235.1129)\\\" x=\\\"0 4.448 8.896 15.56 20.008 24.456 28.904\\\">demand,</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 534.4429 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 536.6543 235.1129)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.5527 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 551.7641 235.1129)\\\" x=\\\"0 6.664 11.112 15.112\\\">must</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 226.0582)\\\" x=\\\"0 2.664 7.112 11.112 15.56 20.008 24.456\\\">respond</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.5101 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 241.2739 226.0582)\\\" x=\\\"0 1.824\\\">in</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.5474 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 250.3112 226.0582)\\\" x=\\\"0 4.448\\\">20</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.2096 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 261.9734 226.0582)\\\" x=\\\"0 4.448 8.896 12.896 16.896\\\">days.</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.0945 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 283.8583 226.0582)\\\" x=\\\"0 5.336 9.784 14.232\\\">Your</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 300.7567 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 303.5205 226.0582)\\\" x=\\\"0 2.664 7.112 11.112 15.56 20.008 24.456 28.456\\\">response</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 336.4306 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 339.1944 226.0582)\\\" x=\\\"0 6.664 11.112 15.112\\\">must</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 356.5304 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 359.2942 226.0582)\\\" x=\\\"0 4 8.448 12.896 17.344 21.344\\\">choose</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 385.091 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 387.8548 226.0582)\\\" x=\\\"0 4.448\\\">an</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 396.7533 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 399.517 226.0582)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 26.768 31.216\\\">arbitration</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 435.185 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 437.9488 226.0582)\\\" x=\\\"0 4.448 7.112 11.56 16.008\\\">group</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 458.4097 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 461.1735 226.0582)\\\" x=\\\"0 4.448\\\">or</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.2868 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 471.0506 226.0582)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456 24.456\\\">propose</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.9607 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 502.7245 226.0582)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 507.1737 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 509.9375 226.0582)\\\" x=\\\"0 1.824 6.272 10.272 14.72\\\">local</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.4844 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 529.2482 226.0582)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608\\\">Arbiter.</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 555.0802 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 557.844 226.0582)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 562.2893 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 565.0531 226.0582)\\\" x=\\\"0 1.824\\\">it</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 217.0035)\\\" x=\\\"0 4.448 8.896 13.344 17.344 21.792 23.32 25.544 27.768 29.896 35.672 40.12 42.248 48.912 53.36 57.36 59.488 63.488 67.936 72.384 76.832 80.832 85.28 87.408 89.632 94.08 98.528 100.656 105.104 107.768 112.216 116.664 121.112\\\">doesn&apos;t, we may choose the group.</text></g><clipPath id=\\\"clip4-41\\\"><path d=\\\"M 35 137 L 128 137 L 128 215 L 35 215 L 35 137 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-41)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.2 214.3238 L 127.6 214.3238 L 127.6 137.8863 L 35.2 137.8863 L 35.2 214.3238 z \\\"/><path clip-path=\\\"url(#clip4-41)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.3 212.3238 L 123.5 212.3238 L 123.5 203.2691 L 39.3 203.2691 L 39.3 212.3238 z \\\"/><path clip-path=\\\"url(#clip4-41)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 53.191 212.3238 L 110.191 212.3238 L 110.191 202.3238 L 53.191 202.3238 L 53.191 212.3238 z \\\"/><g clip-path=\\\"url(#clip4-41)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 53.191 204.9488)\\\" x=\\\"0 7.552 12 16.448 18.576 23.024 25.688 30.136 31.96 34.184 36.848 41.296 43.52 47.968 51.968\\\">* D E M O *tes?</text></g><clipPath id=\\\"clip4-42\\\"><path d=\\\"M 127 137 L 206 137 L 206 215 L 127 215 L 127 137 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-42)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 134.4621 204.9488)\\\" x=\\\"0 5.336 10.672 16.008 18.232 20.36 24.36 29.696 36.36 41.696 43.92 46.048 50.496 53.16 55.288 59.736\\\">AAA, JAMS, or an</text></g><g clip-path=\\\"url(#clip4-42)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 140.1164 195.8941)\\\" x=\\\"0 4.448 8.896 11.56 16.008 20.456 24.904 27.032 32.368 35.032 39.48 41.304 43.528 47.976 50.64\\\">agreed Arbiter.</text></g><clipPath id=\\\"clip4-43\\\"><path d=\\\"M 205 137 L 574 137 L 574 215 L 205 215 L 205 137 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 204.9488)\\\" x=\\\"0 5.336 9.784\\\">You</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 223.8344 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 226.373 204.9488)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 241.4863 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 244.025 204.9488)\\\" x=\\\"0 4 8.448 10.272 14.72 18.72\\\">select</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 264.9703 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 267.509 204.9488)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 278.6301 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 281.1687 204.9488)\\\" x=\\\"0 5.336 12 16.448 19.112 20.936 24.936 29.384\\\">American</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 315.0047 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 317.5433 204.9488)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 19.16 23.608 25.832 27.656 32.104\\\">Arbitration</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 354.098 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 356.6367 204.9488)\\\" x=\\\"0 5.336 9.336 13.336 17.784 21.784 23.608 28.056 30.28 32.104 36.552\\\">Association</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 397.6406 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 400.1793 204.9488)\\\" x=\\\"0 2.664 5.504 10.84 16.176 21.512 24.352\\\">(&quot;AAA&quot;)</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 427.1949 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 429.7336 204.9488)\\\" x=\\\"0 2.664 7.112 9.776 14.224 18.672 23.12 25.784 30.232 34.68 39.128 41.792 46.24 50.688 55.136 59.584\\\">(1-800-778-7879)</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 491.9953 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 494.534 204.9488)\\\" x=\\\"0 4.448 6.672 8.896 13.344 15.568 17.792 20.016 25.792 31.568 37.344 39.568 44.016 48.464 51.128 53.352 57.8 60.464\\\">http://www.adr.org</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.448 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 561.9867 204.9488)\\\" x=\\\"0 4.448\\\">or</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 195.8941)\\\" x=\\\"0 4 9.336 16\\\">JAMS</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 185.8395)\\\" x=\\\"0 2.664 7.112 9.776 14.224 18.672 23.12 25.784 30.232 34.68 39.128 41.792 46.24 50.688 55.136 59.584\\\">(1-800-352-5267)</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 271.8617 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 274.6277 185.8395)\\\" x=\\\"0 4.448 6.672 8.896 13.344 15.568 17.792 20.016 25.792 31.568 37.344 39.568 41.392 45.84 52.504 56.504 60.952 65.4 68.064 70.288 74.288 78.736 85.4\\\">http://www.jamsadr.com.</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 362.2527 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 365.0186 185.8395)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 378.8038 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 381.5697 185.8395)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056\\\">parties</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 405.6283 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 408.3943 185.8395)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 423.5075 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 426.2735 185.8395)\\\" x=\\\"0 4.448 6.272 10.272\\\">also</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 440.9961 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 443.7621 185.8395)\\\" x=\\\"0 4.448 8.896 11.56 16.008\\\">agree</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 464.223 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 466.989 185.8395)\\\" x=\\\"0 1.824\\\">in</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 473.2624 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 476.0284 185.8395)\\\" x=\\\"0 5.776 8.44 10.264 12.488 14.312 18.76\\\">writing</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.2393 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 502.0053 185.8395)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 508.6771 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 511.4431 185.8395)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 515.8923 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 518.6583 185.8395)\\\" x=\\\"0 1.824 6.272 10.272 14.72\\\">local</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 535.2051 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 537.9711 185.8395)\\\" x=\\\"0 4.448 6.672 8.896 13.344 16.008 20.456 24.904 28.904\\\">attorney,</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 176.7848)\\\" x=\\\"0 2.664 7.112 9.336 11.16 13.824 18.272\\\">retired</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 232.3227 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 235.2385 176.7848)\\\" x=\\\"0 1.824 6.272 10.72 15.168 19.616\\\">judge,</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.0823 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 259.9982 176.7848)\\\" x=\\\"0 4.448\\\">or</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 267.1114 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 270.0273 176.7848)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 293.6367 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 296.5526 176.7848)\\\" x=\\\"0 1.824\\\">in</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.826 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 305.7419 176.7848)\\\" x=\\\"0 4.448 8.896 13.344\\\">good</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 323.5388 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 326.4547 176.7848)\\\" x=\\\"0 4 6.224 10.672 15.12 19.568 21.392 25.84\\\">standing</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 356.7477 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 359.6635 176.7848)\\\" x=\\\"0 5.776 7.6 9.824\\\">with</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 373.937 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 376.8529 176.7848)\\\" x=\\\"0 4.448\\\">an</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 385.7513 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 388.6672 176.7848)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 26.768 31.216\\\">arbitration</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 424.3351 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 427.251 176.7848)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456\\\">group.</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 449.9346 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 452.8505 176.7848)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.6357 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 469.5516 176.7848)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 493.1609 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 496.0768 176.7848)\\\" x=\\\"0 6.664 11.112 15.112\\\">must</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 513.4127 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 516.3286 176.7848)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944\\\">arbitrate</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 545.7232 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 548.6391 176.7848)\\\" x=\\\"0 4.448 8.896 13.344 17.792\\\">under</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 167.7301)\\\" x=\\\"0 5.336 10.672\\\">AAA</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.6078 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 228.6503 167.7301)\\\" x=\\\"0 4.448\\\">or</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 235.7636 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 238.8062 167.7301)\\\" x=\\\"0 4 9.336 16\\\">JAMS</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 260.1421 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 263.1846 167.7301)\\\" x=\\\"0 4 8.448 12.896 16.896 21.344 28.008 32.456\\\">consumer</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 298.3096 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 301.3522 167.7301)\\\" x=\\\"0 2.664 7.112 8.936 13.384 17.384\\\">rules.</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 320.9615 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 324.0041 167.7301)\\\" x=\\\"0 5.336 9.784\\\">You</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.2384 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 341.281 167.7301)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 356.3943 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 359.4368 167.7301)\\\" x=\\\"0 4.448 8.896\\\">get</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 370.5579 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 373.6004 167.7301)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 378.0497 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 381.0922 167.7301)\\\" x=\\\"0 4 8.448 12.896\\\">copy</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 397.9906 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 401.0331 167.7301)\\\" x=\\\"0 4.448\\\">of</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 407.705 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 410.7476 167.7301)\\\" x=\\\"0 2.224 6.672 11.12 15.12\\\">these</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.3179 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 433.3604 167.7301)\\\" x=\\\"0 2.664 7.112 8.936 13.384\\\">rules</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 450.7471 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 453.7897 167.7301)\\\" x=\\\"0 2.224 4.888 9.336\\\">from</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 469.7897 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 472.8322 167.7301)\\\" x=\\\"0 4 8.448 12.448\\\">such</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.7306 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 492.7732 167.7301)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456\\\">group.</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 515.4568 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 518.4993 167.7301)\\\" x=\\\"0 5.336 9.784\\\">Any</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 532.2845 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 535.327 167.7301)\\\" x=\\\"0 2.664 7.112 8.936 13.384\\\">rules</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.7137 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 555.7562 167.7301)\\\" x=\\\"0 2.224 6.672 11.12\\\">that</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 158.6754)\\\" x=\\\"0 4 8.448 12.896 15.12 16.944 18.768 22.768\\\">conflict</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 234.5922 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 237.7758 158.6754)\\\" x=\\\"0 5.776 7.6 9.824\\\">with</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 252.0492 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 255.2328 158.6754)\\\" x=\\\"0 4.448 8.896\\\">any</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 268.1312 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 271.3148 158.6754)\\\" x=\\\"0 4.448\\\">of</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 277.9867 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 281.1703 158.6754)\\\" x=\\\"0 4.448 8.896\\\">our</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 292.7328 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 295.9164 158.6754)\\\" x=\\\"0 4.448 8.896 11.56 16.008 20.456 27.12 31.568 36.016 38.24\\\">agreements</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.1625 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 341.3461 158.6754)\\\" x=\\\"0 5.776 7.6 9.824\\\">with</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.6195 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 358.8031 158.6754)\\\" x=\\\"0 4 8.448 12.896\\\">you,</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 373.9242 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 377.1078 158.6754)\\\" x=\\\"0 4.448 8.896 13.344 14.872\\\">don&apos;t</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 394.2055 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 397.389 158.6754)\\\" x=\\\"0 4.448 8.896 13.344 15.168 19.168\\\">apply.</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 418.7836 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 421.9672 158.6754)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 426.4125 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 429.5961 158.6754)\\\" x=\\\"0 2.224 6.672 11.12 15.12\\\">these</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 449.1664 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 452.35 158.6754)\\\" x=\\\"0 4.448 8.896 11.12 12.944 17.392 21.84\\\">options</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 478.1937 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 481.3773 158.6754)\\\" x=\\\"0 4.448 7.112 11.56 16.008 17.536\\\">aren&apos;t</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.139 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 504.3227 158.6754)\\\" x=\\\"0 4.448 8.448 12.896 14.72 16.544 20.992 25.44 27.264 31.712\\\">available,</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 538.264 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 541.4476 158.6754)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 554.7953 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 557.9789 158.6754)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 149.6207)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056\\\">parties</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.6586 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 236.2535 149.6207)\\\" x=\\\"0 4 8.448 12.896 14.424\\\">can&apos;t</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 252.9019 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 255.4968 149.6207)\\\" x=\\\"0 4.448 8.896 11.56 16.008\\\">agree</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.9578 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 278.5527 149.6207)\\\" x=\\\"0 4.448\\\">on</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 287.4511 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 290.046 149.6207)\\\" x=\\\"0 4.448 8.896 13.344 15.568 20.016 24.464 27.128\\\">another,</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.4015 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 321.9964 149.6207)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 326.4456 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 329.0405 149.6207)\\\" x=\\\"0 4 8.448 12.896 15.56\\\">court</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 346.8256 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 349.4205 149.6207)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 364.5338 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 367.1287 149.6207)\\\" x=\\\"0 4 8.448 12.896 17.344 21.344\\\">choose</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 392.9256 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 395.5205 149.6207)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 406.6416 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 409.2365 149.6207)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456\\\">group.</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 431.9201 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 434.515 149.6207)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 448.3001 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 450.895 149.6207)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056\\\">parties</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.9536 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 477.5485 149.6207)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 488.7985 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 491.3934 149.6207)\\\" x=\\\"0 2.224 6.672 11.12\\\">then</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 506.9637 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 509.5586 149.6207)\\\" x=\\\"0 4.448 8.896 11.12 15.568 17.392\\\">obtain</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 531.4024 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 533.9973 149.6207)\\\" x=\\\"0 4.448\\\">an</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 542.8957 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 545.4906 149.6207)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 140.566)\\\" x=\\\"0 4.448 8.896 13.344 17.792 20.456 22.584 26.584 31.032 35.032 39.48 41.608 46.056 48.72 53.168 57.616 62.064 63.592 67.592 69.72 72.384 76.832 78.656 83.104 87.104 89.328 91.456 96.792 101.24 105.24 109.688 111.816 117.152 119.816 124.264 126.088 128.312 132.76 135.424 137.552 144.216 148.664 152.664 154.888 157.016 161.464 165.912 168.136 172.584 175.248 179.248 183.696 185.824 189.824 194.272 198.72 201.384 203.512 207.96 212.408 215.072 219.52 223.968 230.632 235.08 239.528 241.752 245.752 247.88 253.656 255.48 257.704 262.152 264.28 268.728 272.728 274.952 277.08 281.528 285.528 287.656 289.88 294.328 298.776 302.776 304.904 309.352 312.016 316.464 318.592 324.368 327.032 328.856 331.08 333.304 337.752 342.2\\\">under such group&apos;s rules. Such Arbiter must enforce your agreements with us, as they are written.</text></g><clipPath id=\\\"clip4-44\\\"><path d=\\\"M 35 116 L 128 116 L 128 138 L 35 138 L 35 116 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-44)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.2 137.8863 L 127.6 137.8863 L 127.6 116.777 L 35.2 116.777 L 35.2 137.8863 z \\\"/><path clip-path=\\\"url(#clip4-44)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.3 135.8863 L 123.5 135.8863 L 123.5 117.777 L 39.3 117.777 L 39.3 135.8863 z \\\"/><path clip-path=\\\"url(#clip4-44)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.6754 135.8863 L 125.6754 135.8863 L 125.6754 125.8863 L 39.6754 125.8863 L 39.6754 135.8863 z \\\"/><g clip-path=\\\"url(#clip4-44)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 39.6754 128.5113)\\\" x=\\\"0 7.552 9.376 11.2 13.024 15.152 17.376 21.824 26.272 28.4 32.848 37.296 41.744 44.408 46.232 50.68 55.128 57.256 61.704 66.152 68.28 72.728 77.176 79\\\">Will the hearing be held</text></g><path clip-path=\\\"url(#clip4-44)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 66.9449 126.8316 L 95.9449 126.8316 L 95.9449 116.8316 L 66.9449 116.8316 L 66.9449 126.8316 z \\\"/><g clip-path=\\\"url(#clip4-44)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 66.9449 119.4567)\\\" x=\\\"0 4.448 8.896 13.344 16.008 20.456 24.456\\\">nearby?</text></g><clipPath id=\\\"clip4-45\\\"><path d=\\\"M 127 116 L 206 116 L 206 138 L 127 138 L 127 116 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-45)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 158.5461 128.5113)\\\" x=\\\"0 5.336 9.784 13.784\\\">Yes.</text></g><clipPath id=\\\"clip4-46\\\"><path d=\\\"M 205 116 L 574 116 L 574 138 L 205 138 L 205 116 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-46)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 128.5113)\\\" x=\\\"0 4.888 9.336 13.784 15.912 21.248 23.912 28.36 30.184 32.408 36.856 39.52 41.648 47.424 49.248 51.072 52.896 55.024 59.472 62.136 66.584 71.032 73.696 75.824 78.048 82.496 86.944 89.072 93.52 97.968 102.416 105.08 106.904 111.352 115.8 117.928 123.704 125.528 127.752 132.2 134.024 138.472 140.6 145.048 149.496 151.624 158.288 160.112 161.936 166.384 170.384 172.512 176.96 179.184 181.312 185.312 189.76 194.208 196.872 199 203.448 207.896 214.56 219.008 221.136 225.584 228.248 230.376 236.152 240.6 245.048 247.712 252.16 254.288 256.512 260.96 265.408 267.536 269.76 272.424 276.872 281.32 285.32 289.768 293.768 295.992 297.816 302.264 306.712 308.84 313.288 317.288 321.288 325.736 328.4 331.064 335.512 339.96\\\">The Arbiter will order the hearing within 30 miles of your home or where the transaction occurred.</text></g><clipPath id=\\\"clip4-47\\\"><path d=\\\"M 35 74 L 128 74 L 128 117 L 35 117 L 35 74 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-47)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.2 116.777 L 127.6 116.777 L 127.6 74.777 L 35.2 74.777 L 35.2 116.777 z \\\"/><path clip-path=\\\"url(#clip4-47)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.3 114.777 L 123.5 114.777 L 123.5 105.7223 L 39.3 105.7223 L 39.3 114.777 z \\\"/><path clip-path=\\\"url(#clip4-47)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 43.6695 114.777 L 119.6695 114.777 L 119.6695 104.777 L 43.6695 104.777 L 43.6695 114.777 z \\\"/><g clip-path=\\\"url(#clip4-47)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 43.6695 107.402)\\\" x=\\\"0 7.552 12 16.448 18.672 20.8 25.248 29.696 34.144 38.592 40.816 42.944 47.392 51.84 56.288 60.736 65.184 67.008 71.008\\\">What about appeals?</text></g><clipPath id=\\\"clip4-48\\\"><path d=\\\"M 127 74 L 206 74 L 206 117 L 127 117 L 127 74 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-48)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 145.2277 107.402)\\\" x=\\\"0 5.336 9.784 14.232 18.68 23.128 24.952 28.952 31.08 35.528 38.192\\\">Appeals are</text></g><g clip-path=\\\"url(#clip4-48)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 153.8098 98.3473)\\\" x=\\\"0 1.824 3.648 10.312 12.136 14.36 18.808 23.256\\\">limited.</text></g><clipPath id=\\\"clip4-49\\\"><path d=\\\"M 205 74 L 574 74 L 574 117 L 205 117 L 205 74 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 107.402)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 223.3852 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 227.8141 107.402)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608 25.136\\\">Arbiter&apos;s</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.9508 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 261.3798 107.402)\\\" x=\\\"0 4.448 8.896 12.896 14.72 18.72 20.544 24.992\\\">decision</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.8251 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 295.2541 107.402)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 306.5041 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 310.933 107.402)\\\" x=\\\"0 4.448\\\">be</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.8314 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 324.2604 107.402)\\\" x=\\\"0 2.224 4.048 8.496 12.944 14.768\\\">final.</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 341.2526 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 345.6815 107.402)\\\" x=\\\"0\\\">A</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.0175 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 355.4464 107.402)\\\" x=\\\"0 4.448 8.896 11.56 13.784\\\">party</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 373.2316 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 377.6605 107.402)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 392.7738 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 397.2028 107.402)\\\" x=\\\"0 2.224 4.048 5.872\\\">file</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 407.5231 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 411.952 107.402)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 423.0731 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 427.5021 107.402)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608 25.136\\\">Arbiter&apos;s</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.6388 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 461.0678 107.402)\\\" x=\\\"0 4.448 10.224 14.672 17.336\\\">award</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 482.8568 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 487.2858 107.402)\\\" x=\\\"0 5.776 7.6 9.824\\\">with</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.5592 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 505.9882 107.402)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 517.1093 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 521.5382 107.402)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456\\\">proper</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 544.6632 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 549.0922 107.402)\\\" x=\\\"0 4 8.448 12.896 15.56 17.784\\\">court.</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 98.3473)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 19.16 23.608 25.832 27.656 32.104\\\">Arbitration</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 246.1547 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 248.4088 98.3473)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.6588 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 261.913 98.3473)\\\" x=\\\"0 4 8.448 10.272 14.272\\\">solve</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.6356 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 282.8898 98.3473)\\\" x=\\\"0 4.448 8.896 13.344 17.792 22.24 24.064\\\">appeals</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 310.9601 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 313.2142 98.3473)\\\" x=\\\"0 4.448\\\">of</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.8861 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 322.1403 98.3473)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 326.5895 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 328.8436 98.3473)\\\" x=\\\"0 4 10.664 15.112 16.936 18.76 21.424 25.424 27.248 31.696 33.52 40.184\\\">small-claims</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 373.0311 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 375.2853 98.3473)\\\" x=\\\"0 4 8.448 12.896 15.56\\\">court</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.0704 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 395.3246 98.3473)\\\" x=\\\"0 1.824 6.272 10.72 15.168 19.616 26.28 30.728 35.176 37.4\\\">judgement.</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.9535 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 437.2077 98.3473)\\\" x=\\\"0\\\">A</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 442.5436 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 444.7977 98.3473)\\\" x=\\\"0 4.448 8.896 11.56 13.784\\\">party</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 462.5829 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 464.837 98.3473)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 479.9503 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 482.2045 98.3473)\\\" x=\\\"0 4.448 8.896 13.344 17.792 22.24\\\">appeal</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 506.2748 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 508.5289 98.3473)\\\" x=\\\"0 4.448 8.896 13.344 17.792\\\">under</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 528.9899 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 531.244 98.3473)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 542.3651 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 544.6193 98.3473)\\\" x=\\\"0 4.888 10.224 15.56\\\">FAA.</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 562.4005 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 564.6547 98.3473)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 89.2926)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 220.7211 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 223.3349 89.2926)\\\" x=\\\"0 4.448 11.112 15.56 20.008 24.456\\\">amount</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 250.0185 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 252.6324 89.2926)\\\" x=\\\"0 1.824\\\">in</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 258.9058 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 261.5196 89.2926)\\\" x=\\\"0 4 8.448 12.896 15.12 17.784 22.232 26.232 30.68 33.344 37.344\\\">controversy</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.8673 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 305.4811 89.2926)\\\" x=\\\"0 4.448 8.448 12.448 16.896 21.344 25.792\\\">exceeds</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.278 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 337.8918 89.2926)\\\" x=\\\"0 4.448 8.896 11.12 15.568 20.016 24.464 26.688 31.136 35.584\\\">$1,500.00,</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.7043 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 378.3182 89.2926)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 382.7674 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 385.3812 89.2926)\\\" x=\\\"0 4.448 8.896 11.56 13.784\\\">party</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.1664 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 405.7802 89.2926)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 420.8935 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 423.5074 89.2926)\\\" x=\\\"0 4.448 8.896 13.344 17.792 22.24\\\">appeal</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.5777 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 450.1915 89.2926)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 461.3126 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 463.9264 89.2926)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608 25.136\\\">Arbiter&apos;s</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 493.0632 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 495.677 89.2926)\\\" x=\\\"0 2.224 4.048 8.496 12.944 14.768 19.216 23.664\\\">finding.</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.5676 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 524.1815 89.2926)\\\" x=\\\"0 5.336 9.784 13.784\\\">Such</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 542.4158 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 545.0297 89.2926)\\\" x=\\\"0 4.448 8.896 13.344 17.792 22.24\\\">appeal</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 80.2379)\\\" x=\\\"0 5.776 7.6 9.424 11.248 13.376 17.824 22.272 24.4 26.624 31.072 33.2\\\">will be to a</text></g><clipPath id=\\\"clip4-50\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 272.152 L 128.1 272.152 L 128.1 271.152 L 34.7 271.152 L 34.7 272.152 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 271.152 L 35.7 271.152 L 35.7 214.8238 L 34.7 214.8238 L 34.7 271.152 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.1 272.152 L 206 272.152 L 206 271.152 L 128.1 271.152 L 128.1 272.152 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127.1 271.152 L 128.1 271.152 L 128.1 214.8238 L 127.1 214.8238 L 127.1 271.152 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 272.152 L 573.7 272.152 L 573.7 271.152 L 206 271.152 L 206 272.152 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.7 271.152 L 573.7 271.152 L 573.7 214.8238 L 572.7 214.8238 L 572.7 271.152 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 271.152 L 206 271.152 L 206 214.8238 L 205 214.8238 L 205 271.152 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 214.8238 L 128.1 214.8238 L 128.1 213.8238 L 34.7 213.8238 L 34.7 214.8238 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 213.8238 L 35.7 213.8238 L 35.7 138.3863 L 34.7 138.3863 L 34.7 213.8238 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.1 214.8238 L 206 214.8238 L 206 213.8238 L 128.1 213.8238 L 128.1 214.8238 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127.1 213.8238 L 128.1 213.8238 L 128.1 138.3863 L 127.1 138.3863 L 127.1 213.8238 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 214.8238 L 573.7 214.8238 L 573.7 213.8238 L 206 213.8238 L 206 214.8238 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.7 213.8238 L 573.7 213.8238 L 573.7 138.3863 L 572.7 138.3863 L 572.7 213.8238 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 213.8238 L 206 213.8238 L 206 138.3863 L 205 138.3863 L 205 213.8238 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 138.3863 L 128.1 138.3863 L 128.1 137.3863 L 34.7 137.3863 L 34.7 138.3863 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 137.3863 L 35.7 137.3863 L 35.7 117.277 L 34.7 117.277 L 34.7 137.3863 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.1 138.3863 L 206 138.3863 L 206 137.3863 L 128.1 137.3863 L 128.1 138.3863 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127.1 137.3863 L 128.1 137.3863 L 128.1 117.277 L 127.1 117.277 L 127.1 137.3863 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 138.3863 L 573.7 138.3863 L 573.7 137.3863 L 206 137.3863 L 206 138.3863 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.7 137.3863 L 573.7 137.3863 L 573.7 117.277 L 572.7 117.277 L 572.7 137.3863 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 137.3863 L 206 137.3863 L 206 117.277 L 205 117.277 L 205 137.3863 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 117.277 L 128.1 117.277 L 128.1 116.277 L 34.7 116.277 L 34.7 117.277 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 75.277 L 128.1 75.277 L 128.1 74.277 L 34.7 74.277 L 34.7 75.277 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 116.277 L 35.7 116.277 L 35.7 75.277 L 34.7 75.277 L 34.7 116.277 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.1 117.277 L 206 117.277 L 206 116.277 L 128.1 116.277 L 128.1 117.277 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.1 75.277 L 206 75.277 L 206 74.277 L 128.1 74.277 L 128.1 75.277 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127.1 116.277 L 128.1 116.277 L 128.1 75.277 L 127.1 75.277 L 127.1 116.277 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 117.277 L 573.7 117.277 L 573.7 116.277 L 206 116.277 L 206 117.277 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 75.277 L 573.7 75.277 L 573.7 74.277 L 206 74.277 L 206 75.277 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.7 116.277 L 573.7 116.277 L 573.7 75.277 L 572.7 75.277 L 572.7 116.277 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 116.277 L 206 116.277 L 206 75.277 L 205 75.277 L 205 116.277 z \\\"/><g clip-path=\\\"url(#clip4-50)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 36.5264)\\\" x=\\\"0 6.498 11.997 14.391 16.785 21.789 26.793 29.295 34.299 39.303 44.307 504 506.3906 508.7812 511.1719 513.5625 515.9531 518.3438 520.7344 523.125 525.5156\\\">UT  07/2019          </text></g><g clip-path=\\\"url(#clip4-50)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 26.3398)\\\" x=\\\"0 6.003 11.007 16.011 21.015\\\">Page </text></g><g clip-path=\\\"url(#clip4-50)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 55.8097 26.3398)\\\" x=\\\"0\\\">5</text></g><g clip-path=\\\"url(#clip4-50)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.815 26.3398)\\\" x=\\\"0 2.394 7.398 9.9\\\"> of </text></g><g clip-path=\\\"url(#clip4-50)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 73.1021 26.3398)\\\" x=\\\"0\\\">7</text></g><g clip-path=\\\"url(#clip4-50)\\\"><text stroke=\\\"none\\\" fill=\\\"#d9d9d9\\\" style=\\\"font-family:f4-0; font-size:54pt; white-space:pre\\\" transform=\\\"matrix(0.707 0.707 0.707 -0.707 135.6027 198.5094)\\\" x=\\\"0 56.016 96.048 136.08 176.112 216.144 236.16 284.184 324.216 344.232 364.248 416.232 456.264 480.24\\\">Qoppa Software</text></g><g clip-path=\\\"url(#clip4-50)\\\"><text stroke=\\\"none\\\" fill=\\\"#002ba6\\\" style=\\\"font-family:f4-0; font-size:9pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.932 772)\\\" x=\\\"0 9.336 16.008 22.68 29.352 36.024 39.36 47.364 54.036 57.372 60.708 69.372 76.044 80.04 86.712 90.048 94.044 97.38 104.712 111.384 115.38 118.716 126.72 132.72 139.392 142.056 148.728 155.4 158.736 161.4 168.072 174.744 178.08 187.416 194.088 196.752 202.752 206.088 210.084 213.42 220.092 223.428 226.764 233.436 239.436 242.772 246.108 249.444 258.108 266.772 275.436 278.772 285.444 292.116 298.788 305.46 312.132 315.468 321.468 328.14\\\">Qoppa Software - For Evaluation Only - https://www.qoppa.com</text></g></g></svg></svg></g></svg><br>\\n<?xml version='1.0' encoding='UTF-8'?><svg id=\\\"qoppa_document\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" version=\\\"1.1\\\" xmlns=\\\"http://www.w3.org/2000/svg\\\" xmlns:xlink=\\\"http://www.w3.org/1999/xlink\\\"><!-- jPDFWeb v2019R1.03 - Demo Version --><style>title p { display: block; }</style><g id=\\\"qoppa_viewxform\\\" transform=\\\"matrix(1 0 0 1 0 0)\\\"><style type=\\\"text/css\\\">@font-face {font-family:f5-0;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f5-1;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f5-2;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}</style><svg id=\\\"qoppa_page_p5\\\" class=\\\"qoppa_page\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\"><rect class=\\\"qoppa_pageborder\\\" x=\\\"0.5pt\\\" y=\\\"0.5pt\\\" width=\\\"611pt\\\" height=\\\"791pt\\\" fill=\\\"none\\\" /><svg class=\\\"qoppa_pagecontents\\\" x=\\\"0pt\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" viewBox=\\\"0 0 612 792\\\" ><g class=\\\"qoppa_contentstream\\\" transform=\\\"matrix(1 0 0 -1 0 792)\\\" fill=\\\"black\\\" stroke=\\\"black\\\" stroke-width=\\\"1\\\" stroke-linecap=\\\"butt\\\" stroke-linejoin=\\\"miter\\\" stroke-miterlimit=\\\"10\\\"><clipPath id=\\\"clip5-1\\\"><path d=\\\"M 35 727 L 128 727 L 128 770 L 35 770 L 35 727 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-1)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.2 769.7 L 127.6 769.7 L 127.6 727.7 L 35.2 727.7 L 35.2 769.7 z \\\"/><clipPath id=\\\"clip5-2\\\"><path d=\\\"M 205 727 L 574 727 L 574 770 L 205 770 L 205 727 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 760.325)\\\" x=\\\"0 4.448 7.112 12.448 15.112 19.56 21.384 23.608 28.056\\\">3-Arbiter</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 240.3227 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 243.109 760.325)\\\" x=\\\"0 4.448 8.896 13.344 17.792\\\">panel</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.7301 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 265.5165 760.325)\\\" x=\\\"0 2.224 4.888 9.336\\\">from</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.5165 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 284.3029 760.325)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 295.424 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 298.2103 760.325)\\\" x=\\\"0 4 8.448 15.112\\\">same</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 317.7728 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 320.5592 760.325)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 26.768 31.216\\\">arbitration</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 356.2272 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 359.0136 760.325)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456\\\">group.</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 381.6972 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 384.4835 760.325)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 398.2687 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 401.0551 760.325)\\\" x=\\\"0 4.448 8.896 13.344 17.792 22.24\\\">appeal</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 425.1254 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 427.9118 760.325)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 439.1618 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 441.9481 760.325)\\\" x=\\\"0 4.448\\\">be</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 450.8466 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 453.6329 760.325)\\\" x=\\\"0 4.448\\\">de</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 462.5314 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 465.3178 760.325)\\\" x=\\\"0 4.448 8.896 12.896 17.344\\\">novo,</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.8881 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 487.6745 760.325)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.0221 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 503.8085 760.325)\\\" x=\\\"0 4 8.448 10.272 14.272 18.72\\\">solved</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.9804 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 529.7667 760.325)\\\" x=\\\"0 4.448\\\">by</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 538.216 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 541.0023 760.325)\\\" x=\\\"0 6.664 11.112 12.936 17.384 20.048 21.872 24.096\\\">majority</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 751.2703)\\\" x=\\\"0 4 8.448 10.672 15.12\\\">vote.</text></g><clipPath id=\\\"clip5-3\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-3)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 770.2 L 128.1 770.2 L 128.1 769.2 L 34.7 769.2 L 34.7 770.2 z \\\"/><path clip-path=\\\"url(#clip5-3)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 728.2 L 128.1 728.2 L 128.1 727.2 L 34.7 727.2 L 34.7 728.2 z \\\"/><path clip-path=\\\"url(#clip5-3)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 769.2 L 35.7 769.2 L 35.7 728.2 L 34.7 728.2 L 34.7 769.2 z \\\"/><path clip-path=\\\"url(#clip5-3)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.1 770.2 L 206 770.2 L 206 769.2 L 128.1 769.2 L 128.1 770.2 z \\\"/><path clip-path=\\\"url(#clip5-3)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.1 728.2 L 206 728.2 L 206 727.2 L 128.1 727.2 L 128.1 728.2 z \\\"/><path clip-path=\\\"url(#clip5-3)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127.1 769.2 L 128.1 769.2 L 128.1 728.2 L 127.1 728.2 L 127.1 769.2 z \\\"/><path clip-path=\\\"url(#clip5-3)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 770.2 L 573.7 770.2 L 573.7 769.2 L 206 769.2 L 206 770.2 z \\\"/><path clip-path=\\\"url(#clip5-3)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 728.2 L 573.7 728.2 L 573.7 727.2 L 206 727.2 L 206 728.2 z \\\"/><path clip-path=\\\"url(#clip5-3)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.7 769.2 L 573.7 769.2 L 573.7 728.2 L 572.7 728.2 L 572.7 769.2 z \\\"/><path clip-path=\\\"url(#clip5-3)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 769.2 L 206 769.2 L 206 728.2 L 205 728.2 L 205 769.2 z \\\"/><g clip-path=\\\"url(#clip5-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 241.2386 715.4812)\\\" x=\\\"0 6.67 10 15.56 17.84 20.62 23.95 29.51 32.29 34.57 40.13 45.69 48.35 54.46 60.02 65.58 70.58 73.24 78.8 84.36 89.92 92.58 99.25 106.47 112.03 115.36 120.92\\\">Ar* D E M O *ees and Awards</text></g><clipPath id=\\\"clip5-4\\\"><path d=\\\"M 35 680 L 128 680 L 128 705 L 35 705 L 35 680 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-4)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.6 704.277 L 127.5 704.277 L 127.5 680.277 L 35.6 680.277 L 35.6 704.277 z \\\"/><path clip-path=\\\"url(#clip5-4)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.7 700.777 L 123.4 700.777 L 123.4 682.6676 L 39.7 682.6676 L 39.7 700.777 z \\\"/><path clip-path=\\\"url(#clip5-4)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 52.677 700.777 L 110.677 700.777 L 110.677 690.777 L 52.677 690.777 L 52.677 700.777 z \\\"/><g clip-path=\\\"url(#clip5-4)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 52.677 693.4019)\\\" x=\\\"0 7.552 9.376 11.2 13.024 15.152 20.928 25.376 27.504 31.952 36.4 40.4 44.848 49.296 53.296\\\">Will we advance</text></g><path clip-path=\\\"url(#clip5-4)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 51.093 691.7223 L 112.093 691.7223 L 112.093 681.7223 L 51.093 681.7223 L 51.093 691.7223 z \\\"/><g clip-path=\\\"url(#clip5-4)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 51.093 684.3473)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 19.16 23.608 25.832 27.656 32.104 36.552 38.68 43.568 48.016 52.464 56.464\\\">Arbitration Fees?</text></g><clipPath id=\\\"clip5-5\\\"><path d=\\\"M 127 680 L 206 680 L 206 705 L 127 705 L 127 680 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-5)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 135.7422 693.4019)\\\" x=\\\"0 5.336 9.784 13.784 16.008 18.136 22.584 27.032 29.256 31.384 35.384 39.832 44.28 46.408 53.072 57.52\\\">Yes, but you may</text></g><g clip-path=\\\"url(#clip5-5)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 148.541 684.3473)\\\" x=\\\"0 4.448 8.896 12.896 15.024 19.024 23.472 27.472 29.696 33.696\\\">pay costs.</text></g><clipPath id=\\\"clip5-6\\\"><path d=\\\"M 205 680 L 573 680 L 573 705 L 205 705 L 205 680 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 693.4019)\\\" x=\\\"0 7.552\\\">We</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 221.6 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 224.0728 693.4019)\\\" x=\\\"0 4.448 8.896 12.896 17.344 21.792 25.792\\\">advance</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 254.3189 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 256.7917 693.4019)\\\" x=\\\"0 4 8.448 12.896\\\">your</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 272.3542 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 274.827 693.4019)\\\" x=\\\"0 2.84 8.176 10.84 15.288 17.112 19.336 22 26.448 28.672 30.496 34.944\\\">&quot;Arbitration</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 314.2216 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 316.6944 693.4019)\\\" x=\\\"0 4.888 9.336 13.784 17.784\\\">Fees&quot;</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 337.3194 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 339.7922 693.4019)\\\" x=\\\"0 1.824\\\">if</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 343.8391 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 346.3119 693.4019)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.2103 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 361.6831 693.4019)\\\" x=\\\"0 4.448 8.448\\\">ask</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 374.1323 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 376.6051 693.4019)\\\" x=\\\"0 4.448\\\">us</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 385.0544 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 387.5272 693.4019)\\\" x=\\\"0 2.224 6.672\\\">to.</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 396.4217 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 398.8945 693.4019)\\\" x=\\\"0 4.888 9.336 11.16\\\">This</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 414.0547 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 416.5275 693.4019)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44\\\">includes</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 445.9728 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 448.4456 693.4019)\\\" x=\\\"0 2.224 4.048 5.872 7.696 12.144 16.592\\\">filing,</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.262 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 469.7348 693.4019)\\\" x=\\\"0 4.448 8.896 15.56 17.384 21.832 23.656 27.656 29.88 32.544 36.992 39.216 41.04 45.04 49.488\\\">administrative,</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.4497 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 523.9225 693.4019)\\\" x=\\\"0 4.448 8.896 13.344 16.008 17.832 22.28 26.728\\\">hearing,</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.8795 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 555.3523 693.4019)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 684.3473)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608 25.136 29.136 31.264 33.488 37.936 42.384 46.384 48.608 50.736 56.072 60.52 64.968 67.096 71.544 75.992 79.992 82.12 86.12 90.568 95.016 97.68 99.808 104.256 106.48 108.704 113.152 115.816 120.264 124.712 128.712 130.84 133.064 137.512 141.96 145.96 148.088 152.536 156.984 161.432 163.56 168.008 170.232 174.68 179.128 181.792 183.92 188.368 192.368 196.816 201.264 205.712 209.712 214.16 218.16\\\">Arbiter&apos;s fees. You pay your attorney fees and other expenses.</text></g><clipPath id=\\\"clip5-7\\\"><path d=\\\"M 35 656 L 128 656 L 128 681 L 35 681 L 35 656 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-7)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.6 680.277 L 127.5 680.277 L 127.5 656.6769 L 35.6 656.6769 L 35.6 680.277 z \\\"/><path clip-path=\\\"url(#clip5-7)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.7 676.277 L 123.4 676.277 L 123.4 658.1676 L 39.7 658.1676 L 39.7 676.277 z \\\"/><path clip-path=\\\"url(#clip5-7)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 50.0715 676.277 L 113.0715 676.277 L 113.0715 666.277 L 50.0715 666.277 L 50.0715 676.277 z \\\"/><g clip-path=\\\"url(#clip5-7)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 50.0715 668.9019)\\\" x=\\\"0 5.336 8 12.448 14.576 19.024 23.472 30.136 34.584 39.032 43.48 47.48 49.608 54.056 58.504\\\">Are damages and</text></g><path clip-path=\\\"url(#clip5-7)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 40.4641 667.2223 L 123.4641 667.2223 L 123.4641 657.2223 L 40.4641 657.2223 L 40.4641 667.2223 z \\\"/><g clip-path=\\\"url(#clip5-7)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.4641 659.8473)\\\" x=\\\"0 4.448 6.672 8.896 13.344 16.008 20.456 24.904 28.904 31.032 33.256 37.704 42.152 46.152 48.28 52.728 57.176 61.176 65.176 67 71.448 73.272 77.72\\\">attorney fees possible?</text></g><clipPath id=\\\"clip5-8\\\"><path d=\\\"M 127 656 L 206 656 L 206 681 L 127 681 L 127 656 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 139.625 668.9019)\\\" x=\\\"0 5.336 9.784 13.784 16.008 18.136 19.96 22.184 24.312 28.76 30.584 32.408 36.856 42.632 47.08 51.528\\\">Yes, if allowed.</text></g><clipPath id=\\\"clip5-9\\\"><path d=\\\"M 205 656 L 573 656 L 573 681 L 205 681 L 205 656 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 668.9019)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 223.3852 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 225.9124 668.9019)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 249.5218 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 252.049 668.9019)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 267.1623 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 269.6895 668.9019)\\\" x=\\\"0 4.448 10.224 14.672 17.336\\\">award</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.4786 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 294.0058 668.9019)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 305.1269 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 307.6542 668.9019)\\\" x=\\\"0 4 8.448 15.112\\\">same</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 327.2167 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 329.7439 668.9019)\\\" x=\\\"0 4.448 8.896 15.56 20.008 24.456 28.904\\\">damages</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 362.6541 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 365.1813 668.9019)\\\" x=\\\"0 4.448\\\">as</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 373.6305 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 376.1578 668.9019)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.607 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 383.1342 668.9019)\\\" x=\\\"0 4 8.448 12.896 15.56 17.784\\\">court.</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.142 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 405.6693 668.9019)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608\\\">Arbiters</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 433.2786 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 435.8059 668.9019)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 450.9192 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 453.4464 668.9019)\\\" x=\\\"0 4.448 10.224 14.672 17.336\\\">award</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 475.2355 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 477.7627 668.9019)\\\" x=\\\"0 2.664 7.112 11.56 15.56 20.008 24.456 28.904 33.352 35.176\\\">reasonable</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 517.3955 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 519.9227 668.9019)\\\" x=\\\"0 4.448 6.672 8.896 13.344 16.008 20.456 24.904\\\">attorney</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 548.829 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 551.3562 668.9019)\\\" x=\\\"0 2.224 6.672 11.12 15.12\\\">fees,</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 659.8473)\\\" x=\\\"0 4.448 8.896 13.344 15.472 19.92 23.92 28.368 32.816 37.264 41.264 45.712 49.712 51.936 54.064 55.888 58.112 60.24 64.688 66.512 68.336 72.784 78.56 83.008 87.456 89.584 94.032 98.032 100.16 101.984 106.432 112.208\\\">and expenses, * D E M O *by law.</text></g><clipPath id=\\\"clip5-10\\\"><path d=\\\"M 35 633 L 128 633 L 128 657 L 35 657 L 35 633 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-10)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.6 656.6769 L 127.5 656.6769 L 127.5 633.077 L 35.6 633.077 L 35.6 656.6769 z \\\"/><path clip-path=\\\"url(#clip5-10)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.7 652.6769 L 123.4 652.6769 L 123.4 634.5676 L 39.7 634.5676 L 39.7 652.6769 z \\\"/><path clip-path=\\\"url(#clip5-10)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 40.675 652.6769 L 124.675 652.6769 L 124.675 642.6769 L 40.675 642.6769 L 40.675 652.6769 z \\\"/><g clip-path=\\\"url(#clip5-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 645.3019)\\\" x=\\\"0 7.552 9.376 11.2 13.024 15.152 19.152 23.6 28.048 30.176 34.624 39.072 43.072 45.2 50.536 53.2 57.648 59.472 61.696 64.36 68.808 71.032 72.856 77.304\\\">Will you pay Arbitration</text></g><path clip-path=\\\"url(#clip5-10)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 52.7473 643.6223 L 110.7473 643.6223 L 110.7473 633.6223 L 52.7473 633.6223 L 52.7473 643.6223 z \\\"/><g clip-path=\\\"url(#clip5-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 52.7473 636.2473)\\\" x=\\\"0 4.888 9.336 13.784 17.784 19.912 21.736 23.96 26.088 30.088 34.536 38.984 41.112 46.888 48.712 53.16\\\">Fees if you win?</text></g><clipPath id=\\\"clip5-11\\\"><path d=\\\"M 127 633 L 206 633 L 206 657 L 127 657 L 127 633 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 160.2754 645.3019)\\\" x=\\\"0 5.776 10.224\\\">No.</text></g><clipPath id=\\\"clip5-12\\\"><path d=\\\"M 205 633 L 573 633 L 573 657 L 205 657 L 205 633 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 645.3019)\\\" x=\\\"0 2.224 4.448 6.576 8.8 13.248 17.696 19.824 25.16 27.824 32.272 34.096 36.32 40.768 43.432 45.56 50.008 55.784 60.232 62.896 67.344 71.344 73.472 77.472 81.92 86.368 88.496 90.72 95.168 99.616 104.064 108.064 110.288 112.416 116.416 120.864 125.312 127.44 131.888 136.336 140.784 142.312 144.536 146.664 149.328 153.776 155.6 162.264 166.712 171.16 173.824 177.824 182.272 184.4 188.848 192.848 194.976 197.2 201.648 206.096 208.224 213.56 216.224 220.672 222.496 224.72 227.384 231.832 234.056 235.88 240.328 244.776 246.904 251.792 256.24 260.688 264.688\\\">If the Arbiter awards you funds, you don&apos;t reimburse us the Arbitration Fees.</text></g><clipPath id=\\\"clip5-13\\\"><path d=\\\"M 35 601 L 128 601 L 128 634 L 35 634 L 35 601 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-13)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.6 633.077 L 127.5 633.077 L 127.5 601.9129 L 35.6 601.9129 L 35.6 633.077 z \\\"/><path clip-path=\\\"url(#clip5-13)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.7 629.077 L 123.4 629.077 L 123.4 610.9676 L 39.7 610.9676 L 39.7 629.077 z \\\"/><path clip-path=\\\"url(#clip5-13)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 51.1711 629.077 L 112.1711 629.077 L 112.1711 619.077 L 51.1711 619.077 L 51.1711 629.077 z \\\"/><g clip-path=\\\"url(#clip5-13)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 51.1711 621.702)\\\" x=\\\"0 7.552 9.376 11.2 13.024 15.152 19.152 23.6 28.048 30.176 34.624 38.624 43.072 45.736 47.864 52.312 56.76\\\">Will you ever pay</text></g><path clip-path=\\\"url(#clip5-13)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 51.093 620.0223 L 112.093 620.0223 L 112.093 610.0223 L 51.093 610.0223 L 51.093 620.0223 z \\\"/><g clip-path=\\\"url(#clip5-13)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 51.093 612.6473)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 19.16 23.608 25.832 27.656 32.104 36.552 38.68 43.568 48.016 52.464 56.464\\\">Arbitration Fees?</text></g><clipPath id=\\\"clip5-14\\\"><path d=\\\"M 127 601 L 206 601 L 206 634 L 127 634 L 127 601 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-14)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 152.2715 621.702)\\\" x=\\\"0 5.336 9.784 13.784 16.008 21.784 26.232\\\">Yes/No.</text></g><clipPath id=\\\"clip5-15\\\"><path d=\\\"M 205 601 L 573 601 L 573 634 L 205 634 L 205 601 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 621.702)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 214.0453 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 217.6688 621.702)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 228.7898 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 232.4133 621.702)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.0227 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 259.6461 621.702)\\\" x=\\\"0 4.448 8.896 13.344 17.344 21.792 23.32\\\">doesn&apos;t</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 285.193 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 288.8164 621.702)\\\" x=\\\"0 4.448 10.224 14.672 17.336\\\">award</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 310.6055 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 314.2289 621.702)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 327.1273 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 330.7508 621.702)\\\" x=\\\"0 2.224 6.672 11.12 15.568 19.568\\\">funds,</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 352.5437 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 356.1672 621.702)\\\" x=\\\"0 2.224 6.672 11.12\\\">then</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.7375 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 375.3609 621.702)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.2594 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 391.8828 621.702)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 406.9961 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 410.6195 621.702)\\\" x=\\\"0 2.664 7.112 11.56 16.008\\\">repay</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.6312 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 434.2547 621.702)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 445.3758 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 448.9992 621.702)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 19.16 23.608 25.832 27.656 32.104\\\">Arbitration</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 485.5539 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 489.1773 621.702)\\\" x=\\\"0 4.888 9.336 13.784 17.784\\\">Fees.</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.1851 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 512.8086 621.702)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.5937 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 530.2172 621.702)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.8265 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 557.45 621.702)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 612.6473)\\\" x=\\\"0 4.448 8.896 12.896 14.72 19.168\\\">decide</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.2211 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 236.7228 612.6473)\\\" x=\\\"0 5.776 10.224 14.672 16.896 21.344 25.792\\\">whether</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 265.1838 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 268.6855 612.6473)\\\" x=\\\"0 4 8.448 12.896 14.424 16.248\\\">you&apos;ll</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 286.7597 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 290.2614 612.6473)\\\" x=\\\"0 4.448 8.896 12.896\\\">pay.</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 305.3825 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 308.8842 612.6473)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 313.3295 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 316.8312 612.6473)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.7297 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 333.2314 612.6473)\\\" x=\\\"0 6.664 11.112 15.112\\\">must</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 350.5673 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 354.0691 612.6473)\\\" x=\\\"0 4.448 8.896\\\">pay</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 366.9675 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 370.4692 612.6473)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 19.16 23.608 25.832 27.656 32.104\\\">Arbitration</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 407.0239 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 410.5256 612.6473)\\\" x=\\\"0 4.888 9.336 13.784 17.784\\\">Fees,</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.5334 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 434.0351 612.6473)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 445.1562 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 448.658 612.6473)\\\" x=\\\"0 4.448 11.112 15.56 20.008 24.456\\\">amount</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 475.3415 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 478.8433 612.6473)\\\" x=\\\"0 5.776 10.224 14.672 16.2\\\">won&apos;t</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 497.269 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 500.7708 612.6473)\\\" x=\\\"0 4.448 8.448 12.448 16.896 21.344\\\">exceed</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.5676 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 530.0694 612.6473)\\\" x=\\\"0 4 6.224 10.672 12.896\\\">state</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 547.4131 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 550.9148 612.6473)\\\" x=\\\"0 4 8.448 12.896 15.56\\\">court</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 603.5926)\\\" x=\\\"0 4 8.448 12.448 14.672 18.672\\\">costs.</text></g><clipPath id=\\\"clip5-16\\\"><path d=\\\"M 35 534 L 128 534 L 128 602 L 35 602 L 35 534 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-16)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.6 601.9129 L 127.5 601.9129 L 127.5 534.5301 L 35.6 534.5301 L 35.6 601.9129 z \\\"/><path clip-path=\\\"url(#clip5-16)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.7 597.9129 L 123.4 597.9129 L 123.4 579.8035 L 39.7 579.8035 L 39.7 597.9129 z \\\"/><path clip-path=\\\"url(#clip5-16)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 45.2063 597.9129 L 118.2063 597.9129 L 118.2063 587.9129 L 45.2063 587.9129 L 45.2063 597.9129 z \\\"/><g clip-path=\\\"url(#clip5-16)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 45.2063 590.5379)\\\" x=\\\"0 7.552 12 16.448 18.672 20.8 25.248 29.696 34.144 38.592 43.04 47.488 51.488 53.616 55.44 57.664 59.792 63.792 68.24\\\">What happens if you</text></g><path clip-path=\\\"url(#clip5-16)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 73.3 588.8582 L 90.3 588.8582 L 90.3 578.8582 L 73.3 578.8582 L 73.3 588.8582 z \\\"/><g clip-path=\\\"url(#clip5-16)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 73.3 581.4832)\\\" x=\\\"0 5.776 7.6 12.048\\\">win?</text></g><clipPath id=\\\"clip5-17\\\"><path d=\\\"M 127 534 L 206 534 L 206 602 L 127 602 L 127 534 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-17)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 131.9356 590.5379)\\\" x=\\\"0 5.336 9.784 14.232 16.36 20.36 24.808 29.256 31.08 35.528 37.656 42.104 46.552 48.776 50.904 57.568 62.016 64.68\\\">You could get more</text></g><g clip-path=\\\"url(#clip5-17)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 139.2246 581.4832)\\\" x=\\\"0 2.224 6.672 11.12 15.568 17.696 19.92 24.368 28.816 30.944 36.28 38.944 43.392 45.216 47.44 51.888\\\">than the Arbiter</text></g><g clip-path=\\\"url(#clip5-17)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 150.0449 572.4285)\\\" x=\\\"0 4.448 10.224 14.672 17.336 21.784 26.232 30.68\\\">awarded.</text></g><clipPath id=\\\"clip5-18\\\"><path d=\\\"M 205 534 L 573 534 L 573 602 L 205 602 L 205 534 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 590.5379)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 214.0453 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 216.367 590.5379)\\\" x=\\\"0 4.448\\\">an</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.2654 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 227.5871 590.5379)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608 25.136\\\">Arbiter&apos;s</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.7238 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 259.0455 590.5379)\\\" x=\\\"0 4.448 10.224 14.672 17.336\\\">award</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.8345 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 283.1562 590.5379)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 289.8281 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 292.1498 590.5379)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 305.0482 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 307.3699 590.5379)\\\" x=\\\"0 4.448 8.448 12.448 16.896 21.344 25.792\\\">exceeds</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 337.1667 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 339.4884 590.5379)\\\" x=\\\"0 4.448 8.896\\\">our</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.0509 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 353.3726 590.5379)\\\" x=\\\"0 1.824 6.272 10.272\\\">last</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 365.8687 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 368.1903 590.5379)\\\" x=\\\"0 5.336 9.784 12.008 14.232 16.056 20.504 27.168 31.616 36.064\\\">Settlement</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 406.4794 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 408.8011 590.5379)\\\" x=\\\"0 6.224 8.448 10.672 15.12 17.784\\\">Offer,</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 428.805 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 431.1266 590.5379)\\\" x=\\\"0 5.776\\\">we</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 441.3532 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 443.6749 590.5379)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.9249 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 457.2465 590.5379)\\\" x=\\\"0 4.448 8.896\\\">pay</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 470.145 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 472.4666 590.5379)\\\" x=\\\"0\\\">3</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 476.9159 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 479.2375 590.5379)\\\" x=\\\"0 4.448 11.112 15.56 20.008 24.456 26.68 30.68\\\">amounts.</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.1438 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 514.4654 590.5379)\\\" x=\\\"0 7.552\\\">We</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.4654 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 528.7871 590.5379)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 540.0371 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 542.3588 590.5379)\\\" x=\\\"0 4.448 8.896\\\">pay</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 555.2572 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 557.5789 590.5379)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 581.4832)\\\" x=\\\"0 4.448 7.112 11.56 16.008 18.232 22.68\\\">greater</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 234.9477 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 238.6632 581.4832)\\\" x=\\\"0 4.448\\\">of</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.3351 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 249.0506 581.4832)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 260.1717 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 263.8872 581.4832)\\\" x=\\\"0 4.448 10.224 14.672 17.336\\\">award</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 285.6762 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 289.3918 581.4832)\\\" x=\\\"0 4.448 11.112 15.56 20.008 24.456\\\">amount</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 316.0754 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 319.7909 581.4832)\\\" x=\\\"0 4.448\\\">or</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 326.9042 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 330.6197 581.4832)\\\" x=\\\"0 4.448 8.896 13.344 17.792 20.016 24.464\\\">$500.00</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.5376 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 363.2532 581.4832)\\\" x=\\\"0 2.664 5.504 9.952 14.4 18.848 23.296\\\">(&quot;bonus</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 390.5539 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 394.2695 581.4832)\\\" x=\\\"0 4.448 8.896 12.896 19.56 24.008 28.456 30.68 33.52 36.184\\\">payment&quot;).</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 432.6796 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 436.3951 581.4832)\\\" x=\\\"0 7.552\\\">We</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 448.3951 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 452.1107 581.4832)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 463.3607 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 467.0762 581.4832)\\\" x=\\\"0 4.448 8.896\\\">pay</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 479.9746 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 483.6901 581.4832)\\\" x=\\\"0 4 8.448 12.896\\\">your</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.2526 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 502.9682 581.4832)\\\" x=\\\"0 4.448 6.672 8.896 13.344 16.008 20.456 24.904\\\">attorney</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 531.8744 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 535.5899 581.4832)\\\" x=\\\"0 2.224 8 9.824 13.824\\\">twice</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.8634 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 557.5789 581.4832)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 572.4285)\\\" x=\\\"0 4.448 6.672 8.896 13.344 16.008 20.456 24.904\\\">attorney</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.5063 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 242.1723 572.4285)\\\" x=\\\"0 2.224 6.672 11.12\\\">fees</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.2934 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 260.9594 572.4285)\\\" x=\\\"0 4 8.448 12.896 15.12 19.568 22.232 24.896 29.344\\\">conferred</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 294.7563 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 298.4224 572.4285)\\\" x=\\\"0 2.664 5.504 9.952 12.176 14.4 18.848 21.512 25.96 30.408\\\">(&quot;attorney</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 332.8325 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 336.4986 572.4285)\\\" x=\\\"0 4.448 7.112 11.56 18.224 20.048 24.496 31.16 34 36.664\\\">premium&quot;).</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.3892 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 379.0552 572.4285)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.5005 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 387.1666 572.4285)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 398.2877 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 401.9537 572.4285)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 425.5631 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 429.2291 572.4285)\\\" x=\\\"0 4.448 7.112 11.56 16.008 18.672 22.672\\\">orders,</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.1276 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 457.7936 572.4285)\\\" x=\\\"0 5.776\\\">we</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.0202 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 471.6862 572.4285)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 482.9362 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 486.6023 572.4285)\\\" x=\\\"0 4.448 8.896\\\">pay</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.5007 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 503.1667 572.4285)\\\" x=\\\"0 2.664 7.112 11.56 15.56 20.008 24.456 28.904 33.352 35.176\\\">reasonable</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 542.7996 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 546.4656 572.4285)\\\" x=\\\"0 4.448 8.448 12.896 17.344 20.008\\\">expert</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 563.3738)\\\" x=\\\"0 5.776 7.6 9.824 14.272 18.72 22.72\\\">witness</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 236.3227 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 238.5023 563.3738)\\\" x=\\\"0 4 8.448 12.448 14.672\\\">costs</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.1741 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 259.3537 563.3738)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 272.7014 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 274.881 563.3738)\\\" x=\\\"0 4.448 6.672 11.12 15.568\\\">other</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 293.1153 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 295.2949 563.3738)\\\" x=\\\"0 4 8.448 12.448 14.672\\\">costs</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 313.9668 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 316.1464 563.3738)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.0448 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 331.2244 563.3738)\\\" x=\\\"0 1.824 6.272 10.272 14.72 17.384 20.048 24.496\\\">incurred</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 360.1736 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 362.3532 563.3738)\\\" x=\\\"0 2.664 5.504 9.504 13.952 17.952\\\">(&quot;cost</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 382.529 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 384.7086 563.3738)\\\" x=\\\"0 4.448 7.112 11.56 18.224 20.048 24.496 31.16 34 36.664\\\">premium&quot;).</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 423.5992 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 425.7788 563.3738)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.2241 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 432.4037 563.3738)\\\" x=\\\"0 5.776\\\">we</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 442.6303 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 444.8099 563.3738)\\\" x=\\\"0 4.448 8.896 12.896 17.344\\\">never</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 464.8216 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 467.0012 563.3738)\\\" x=\\\"0 6.664 11.112 15.56\\\">made</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 487.0129 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 489.1925 563.3738)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 493.6417 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 495.8213 563.3738)\\\" x=\\\"0 5.336 9.784 12.008 14.232 16.056 20.504 27.168 31.616 36.064\\\">Settlement</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 534.1103 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 536.2899 563.3738)\\\" x=\\\"0 6.224 8.448 10.672 15.12 17.784\\\">Offer,</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 556.2938 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 558.4734 563.3738)\\\" x=\\\"0 5.776\\\">we</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 554.3191)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 220.85 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 224.1983 554.3191)\\\" x=\\\"0 4.448 8.896\\\">pay</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 237.0968 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 240.4451 554.3191)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 251.5662 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 254.9145 554.3191)\\\" x=\\\"0 4.448 8.896 13.344 17.792\\\">bonus</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.7114 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 280.0597 554.3191)\\\" x=\\\"0 4.448 8.896 12.896 19.56 24.008 28.456 30.68\\\">payment,</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.966 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 316.3143 554.3191)\\\" x=\\\"0 4.448 6.672 8.896 13.344 16.008 20.456 24.904\\\">attorney</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 345.2206 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 348.5689 554.3191)\\\" x=\\\"0 4.448 7.112 11.56 18.224 20.048 24.496 31.16\\\">premium,</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 381.9556 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 385.3039 554.3191)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 398.6516 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 401.9999 554.3191)\\\" x=\\\"0 4.448 8.896\\\">any</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 414.8984 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 418.2467 554.3191)\\\" x=\\\"0 4 8.448 12.448\\\">cost</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 432.9186 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 436.2669 554.3191)\\\" x=\\\"0 4.448 7.112 11.56 18.224 20.048 24.496 31.16\\\">premium.</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 469.6536 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 473.002 554.3191)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.7871 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 490.1355 554.3191)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 513.7448 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 517.0932 554.3191)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 532.2064 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 535.5548 554.3191)\\\" x=\\\"0 4.448 7.112 11.56 16.008\\\">order</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 554.2306 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 557.5789 554.3191)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 545.2645)\\\" x=\\\"0 4.448 7.112 11.56 15.56 20.008 24.008\\\">process</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 237.6117 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 240.0494 545.2645)\\\" x=\\\"0 2.224 6.672\\\">for</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 249.3853 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 251.8229 545.2645)\\\" x=\\\"0 4.448 8.896 12.896 19.56 24.008 28.456 30.68\\\">payment.</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 284.7292 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 287.1668 545.2645)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.6121 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 294.0498 545.2645)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 298.499 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 300.9366 545.2645)\\\" x=\\\"0 1.824 6.272\\\">law</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.9874 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 315.425 545.2645)\\\" x=\\\"0 4.448 6.272 8.096 12.544 18.32\\\">allows</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 337.7493 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 340.1869 545.2645)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 353.0853 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 355.523 545.2645)\\\" x=\\\"0 6.664 11.112 13.776 18.224\\\">more,</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.9722 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 378.4098 545.2645)\\\" x=\\\"0 2.224 6.672 8.496\\\">this</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 390.9059 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 393.3436 545.2645)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496\\\">Clause</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 418.2928 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 420.7304 545.2645)\\\" x=\\\"0 5.776 10.224 14.672 16.2\\\">won&apos;t</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 439.1562 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 441.5938 545.2645)\\\" x=\\\"0 4.448 7.112 11.56 15.56 20.008 24.456\\\">prevent</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.2774 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 470.7151 545.2645)\\\" x=\\\"0 4 8.448 12.448\\\">such</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 487.6135 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 490.0511 545.2645)\\\" x=\\\"0 4.448 10.224 14.672 17.336 21.784\\\">award.</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 514.0628 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 516.5005 545.2645)\\\" x=\\\"0 7.552\\\">We</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 528.5005 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 530.9381 545.2645)\\\" x=\\\"0 5.776 10.224 14.672 16.2\\\">won&apos;t</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.3639 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 551.8015 545.2645)\\\" x=\\\"0 4 8.448 12.896\\\">seek</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 536.2098)\\\" x=\\\"0 4.448 6.672 8.896 13.344 16.008 20.456 24.904 28.904 31.032 33.256 37.704 42.152 46.152 48.28 52.728 57.176 61.624 63.752 68.2 72.2 76.648 81.096 85.544 89.544 93.992 97.992\\\">attorney fees and expenses.</text></g><clipPath id=\\\"clip5-19\\\"><path d=\\\"M 35 510 L 128 510 L 128 535 L 35 535 L 35 510 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-19)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.6 534.5301 L 127.5 534.5301 L 127.5 510.5301 L 35.6 510.5301 L 35.6 534.5301 z \\\"/><path clip-path=\\\"url(#clip5-19)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.7 530.5301 L 123.4 530.5301 L 123.4 512.4207 L 39.7 512.4207 L 39.7 530.5301 z \\\"/><path clip-path=\\\"url(#clip5-19)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 51.2317 530.5301 L 112.2317 530.5301 L 112.2317 520.5301 L 51.2317 520.5301 L 51.2317 530.5301 z \\\"/><g clip-path=\\\"url(#clip5-19)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 51.2317 523.1551)\\\" x=\\\"0 5.776 10.224 14.672 16.8 21.248 25.696 27.824 32.272 38.048 42.496 45.16 49.608 51.736 56.184\\\">Can an award be</text></g><path clip-path=\\\"url(#clip5-19)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 62.1535 521.4754 L 101.1535 521.4754 L 101.1535 511.4754 L 62.1535 511.4754 L 62.1535 521.4754 z \\\"/><g clip-path=\\\"url(#clip5-19)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 62.1535 514.1004)\\\" x=\\\"0 4.448 8.448 12.896 14.72 19.168 20.992 25.44 29.888 34.336\\\">explained?</text></g><clipPath id=\\\"clip5-20\\\"><path d=\\\"M 127 510 L 206 510 L 206 535 L 127 535 L 127 510 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-20)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 158.4961 523.1551)\\\" x=\\\"0 5.336 9.784 13.784\\\">Yes.</text></g><clipPath id=\\\"clip5-21\\\"><path d=\\\"M 205 510 L 573 510 L 573 535 L 205 535 L 205 510 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 523.1551)\\\" x=\\\"0\\\">A</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 214.9359 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 218.2265 523.1551)\\\" x=\\\"0 4.448 8.896 11.56 13.784\\\">party</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 236.0117 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 239.3023 523.1551)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 254.4155 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 257.7061 523.1551)\\\" x=\\\"0 2.664 7.112 11.56 16.008 20.456 24.456\\\">request</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 284.3897 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 287.6803 523.1551)\\\" x=\\\"0 4.448 8.896 11.12 15.568 17.392 19.216\\\">details</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 310.899 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 314.1896 523.1551)\\\" x=\\\"0 2.224 4.888 9.336\\\">from</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 330.1896 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 333.4802 523.1551)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 344.6013 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 347.8919 523.1551)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608\\\">Arbiter,</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 373.7239 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 377.0145 523.1551)\\\" x=\\\"0 5.776 7.6 9.824 14.272 16.096\\\">within</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 397.5613 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 400.8519 523.1551)\\\" x=\\\"0 4.448\\\">14</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 409.7504 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 413.0409 523.1551)\\\" x=\\\"0 4.448 8.896 12.896\\\">days</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 429.9394 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 433.23 523.1551)\\\" x=\\\"0 4.448\\\">of</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 439.9018 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 443.1924 523.1551)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.3135 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 457.6041 523.1551)\\\" x=\\\"0 2.664 7.112 8.936 10.76 15.208 19.656\\\">ruling.</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 479.4869 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 482.7775 523.1551)\\\" x=\\\"0 5.776 10.224 14.672\\\">Upon</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.9025 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 505.193 523.1551)\\\" x=\\\"0 4 8.448 12.448\\\">such</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 522.0915 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 525.3821 523.1551)\\\" x=\\\"0 2.664 7.112 11.56 16.008 20.456 24.456 26.68\\\">request,</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 554.2883 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 557.5789 523.1551)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 514.1004)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608 25.736 31.512 33.336 35.16 36.984 39.112 43.56 47.56 52.008 53.832 58.28 60.104 64.552 66.68 68.904 73.352 77.8 79.928 82.592 87.04 88.864 90.688 95.136 99.584 101.712 103.536 107.984 110.112 115.888 118.552 120.376 122.6 124.424 128.872 133.32\\\">Arbiter will explain the ruling in writing.</text></g><clipPath id=\\\"clip5-22\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 704.777 L 128 704.777 L 128 703.777 L 35.1 703.777 L 35.1 704.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 703.777 L 36.1 703.777 L 36.1 680.777 L 35.1 680.777 L 35.1 703.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128 704.777 L 206 704.777 L 206 703.777 L 128 703.777 L 128 704.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127 703.777 L 128 703.777 L 128 680.777 L 127 680.777 L 127 703.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 704.777 L 573.3 704.777 L 573.3 703.777 L 206 703.777 L 206 704.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.3 703.777 L 573.3 703.777 L 573.3 680.777 L 572.3 680.777 L 572.3 703.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 703.777 L 206 703.777 L 206 680.777 L 205 680.777 L 205 703.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 680.777 L 128 680.777 L 128 679.777 L 35.1 679.777 L 35.1 680.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 679.777 L 36.1 679.777 L 36.1 657.1769 L 35.1 657.1769 L 35.1 679.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128 680.777 L 206 680.777 L 206 679.777 L 128 679.777 L 128 680.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127 679.777 L 128 679.777 L 128 657.1769 L 127 657.1769 L 127 679.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 680.777 L 573.3 680.777 L 573.3 679.777 L 206 679.777 L 206 680.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.3 679.777 L 573.3 679.777 L 573.3 657.1769 L 572.3 657.1769 L 572.3 679.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 679.777 L 206 679.777 L 206 657.1769 L 205 657.1769 L 205 679.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 657.1769 L 128 657.1769 L 128 656.1769 L 35.1 656.1769 L 35.1 657.1769 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 656.1769 L 36.1 656.1769 L 36.1 633.577 L 35.1 633.577 L 35.1 656.1769 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128 657.1769 L 206 657.1769 L 206 656.1769 L 128 656.1769 L 128 657.1769 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127 656.1769 L 128 656.1769 L 128 633.577 L 127 633.577 L 127 656.1769 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 657.1769 L 573.3 657.1769 L 573.3 656.1769 L 206 656.1769 L 206 657.1769 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.3 656.1769 L 573.3 656.1769 L 573.3 633.577 L 572.3 633.577 L 572.3 656.1769 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 656.1769 L 206 656.1769 L 206 633.577 L 205 633.577 L 205 656.1769 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 633.577 L 128 633.577 L 128 632.577 L 35.1 632.577 L 35.1 633.577 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 632.577 L 36.1 632.577 L 36.1 602.4129 L 35.1 602.4129 L 35.1 632.577 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128 633.577 L 206 633.577 L 206 632.577 L 128 632.577 L 128 633.577 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127 632.577 L 128 632.577 L 128 602.4129 L 127 602.4129 L 127 632.577 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 633.577 L 573.3 633.577 L 573.3 632.577 L 206 632.577 L 206 633.577 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.3 632.577 L 573.3 632.577 L 573.3 602.4129 L 572.3 602.4129 L 572.3 632.577 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 632.577 L 206 632.577 L 206 602.4129 L 205 602.4129 L 205 632.577 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 602.4129 L 128 602.4129 L 128 601.4129 L 35.1 601.4129 L 35.1 602.4129 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 601.4129 L 36.1 601.4129 L 36.1 535.0301 L 35.1 535.0301 L 35.1 601.4129 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128 602.4129 L 206 602.4129 L 206 601.4129 L 128 601.4129 L 128 602.4129 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127 601.4129 L 128 601.4129 L 128 535.0301 L 127 535.0301 L 127 601.4129 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 602.4129 L 573.3 602.4129 L 573.3 601.4129 L 206 601.4129 L 206 602.4129 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.3 601.4129 L 573.3 601.4129 L 573.3 535.0301 L 572.3 535.0301 L 572.3 601.4129 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 601.4129 L 206 601.4129 L 206 535.0301 L 205 535.0301 L 205 601.4129 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 535.0301 L 128 535.0301 L 128 534.0301 L 35.1 534.0301 L 35.1 535.0301 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 511.0301 L 128 511.0301 L 128 510.0301 L 35.1 510.0301 L 35.1 511.0301 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 534.0301 L 36.1 534.0301 L 36.1 511.0301 L 35.1 511.0301 L 35.1 534.0301 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128 535.0301 L 206 535.0301 L 206 534.0301 L 128 534.0301 L 128 535.0301 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128 511.0301 L 206 511.0301 L 206 510.0301 L 128 510.0301 L 128 511.0301 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127 534.0301 L 128 534.0301 L 128 511.0301 L 127 511.0301 L 127 534.0301 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 535.0301 L 573.3 535.0301 L 573.3 534.0301 L 206 534.0301 L 206 535.0301 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 511.0301 L 573.3 511.0301 L 573.3 510.0301 L 206 510.0301 L 206 511.0301 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.3 534.0301 L 573.3 534.0301 L 573.3 511.0301 L 572.3 511.0301 L 572.3 534.0301 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 534.0301 L 206 534.0301 L 206 511.0301 L 205 511.0301 L 205 534.0301 z \\\"/><g clip-path=\\\"url(#clip5-22)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 273.1062 500.3113)\\\" x=\\\"0 7.78 10.56 16.12 21.68 25.01 27.67 35.45 41.01 43.79 46.07 51.63 57.19\\\">Other Options</text></g><clipPath id=\\\"clip5-23\\\"><path d=\\\"M 35 438 L 128 438 L 128 490 L 35 490 L 35 438 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-23)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.6 489.107 L 127.5 489.107 L 127.5 438.107 L 35.6 438.107 L 35.6 489.107 z \\\"/><path clip-path=\\\"url(#clip5-23)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.7 485.607 L 123.4 485.607 L 123.4 458.443 L 39.7 458.443 L 39.7 485.607 z \\\"/><path clip-path=\\\"url(#clip5-23)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 48.2942 485.607 L 115.2942 485.607 L 115.2942 475.607 L 48.2942 475.607 L 48.2942 485.607 z \\\"/><g clip-path=\\\"url(#clip5-23)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 48.2942 478.232)\\\" x=\\\"0 2.224 4.448 6.576 10.576 15.024 19.472 21.6 26.048 30.496 34.944 36.472 38.696 40.824 46.6 51.048 55.496 57.72 59.848 62.072\\\">If you don&apos;t want to</text></g><path clip-path=\\\"url(#clip5-23)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 43.8078 476.5524 L 119.8078 476.5524 L 119.8078 466.5524 L 43.8078 466.5524 L 43.8078 476.5524 z \\\"/><g clip-path=\\\"url(#clip5-23)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 43.8078 469.1774)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 29.392 31.616 33.744 37.744 42.192 46.64 48.768 52.768 57.216 61.664 63.792 67.792 70.016 71.84 73.664\\\">arbitrate, can you still</text></g><path clip-path=\\\"url(#clip5-23)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 49.8254 467.4977 L 113.8254 467.4977 L 113.8254 457.4977 L 49.8254 457.4977 L 49.8254 467.4977 z \\\"/><g clip-path=\\\"url(#clip5-23)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 49.8254 460.1227)\\\" x=\\\"0 4.448 8.896 11.12 13.248 17.696 19.824 22.048 24.712 29.16 33.608 37.608 42.056 46.056 48.28 50.104 54.552 59\\\">get a transaction?</text></g><clipPath id=\\\"clip5-24\\\"><path d=\\\"M 127 438 L 206 438 L 206 490 L 127 490 L 127 438 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-24)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.1817 478.232)\\\" x=\\\"0 5.336 9.784 13.784 16.008 18.136 23.472 27.92 32.368 34.496 38.496 42.944 47.392 49.52 53.968 58.416\\\">Yes. You can get</text></g><g clip-path=\\\"url(#clip5-24)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 137.2266 469.1774)\\\" x=\\\"0 4.448 8.896 11.56 13.688 17.688 22.136 24.8 28.8 30.624 34.624 39.072 43.072 45.2 49.648 54.096\\\">our* D E M O *nd</text></g><g clip-path=\\\"url(#clip5-24)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 143.668 460.1227)\\\" x=\\\"0 4.448 8.896 12.896 14.72 19.168 23.616 25.744 30.192 34.64 36.864 38.992 41.216\\\">decide not to</text></g><g clip-path=\\\"url(#clip5-24)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 150.6914 451.068)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 29.392\\\">arbitrate.</text></g><clipPath id=\\\"clip5-25\\\"><path d=\\\"M 205 438 L 573 438 L 573 490 L 205 490 L 205 438 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-25)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 478.232)\\\" x=\\\"0 5.776 10.224 14.672 18.672 20.496 24.944 29.392 32.056 34.184 36.408 40.856 45.304 49.304 53.752 55.88 59.88 64.328 68.776 70.6 74.6 79.048 83.048\\\">Consider these choices:</text></g><g clip-path=\\\"url(#clip5-25)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 469.1774)\\\" x=\\\"0 4.448 6.672 8.8 11.024 15.472 17.696 22.144 24.808 31.472 35.92 37.744 39.872 45.648 47.472 51.472 55.92 60.368 62.592 67.04 69.168 74.944 79.392 83.392 87.84 89.664 94.112 96.336 98.16 102.608 107.056 109.28 111.408 117.184 121.632 126.08 128.304 132.752 136.752 138.976 141.104 145.552 149.552 151.776 153.904 158.352 162.8 167.248 169.376 173.824 176.048 178.272 182.72 189.384 193.832 196.056 198.184 200.408 204.856 206.984 210.984 215.432 217.656 219.88 221.704 226.152 228.28 232.728 237.176 241.176 243.304 249.08 250.904 254.904 259.352 263.8 266.024 270.472 274.472\\\">1. Informal Dispute Resolution. Contact us, and attempt to settle any Disputes.</text></g><g clip-path=\\\"url(#clip5-25)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 460.1227)\\\" x=\\\"0 4.448 6.672 8.8 14.136 20.8 25.248 27.072 28.896 31.56 35.56 37.384 41.832 43.656 50.32 54.32 56.448 62.224 66.672 71.12 73.784 76.008 78.232 80.36 85.696 90.144 94.592 98.592 100.72 102.944 107.392 109.52 113.52 117.968 119.792 123.792 128.24 130.368 136.144 137.968 141.968 146.416 150.864 153.088 157.536 161.536 163.664 165.488 169.936 172.064 176.064 182.728 187.176 189 190.824 193.488 197.488 199.312 203.76 205.584 212.248 216.248 218.376 222.376 226.824 231.272 233.936 236.16 238.384 240.512 246.288 248.112 250.336 254.784 256.608 261.056 263.184 267.184 269.408 273.856 276.08 280.528 282.656 284.48 288.928 294.704 296.832 298.656 300.48 307.144 308.968 311.192 315.192\\\">2. Small-claims Court. Seek to solve Disputes in small-claims court, within state law limits.</text></g><g clip-path=\\\"url(#clip5-25)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 451.068)\\\" x=\\\"0 4.448 6.672 8.8 15.024 19.472 21.696 23.824 28.272 30.4 34.848 39.296 43.744 47.744 52.192 54.32 61.872 63.696 65.92 70.368 74.816 79.264 81.488 83.616 85.84 90.288 94.736 96.864 102.64 104.464 108.912 113.36 117.36 121.808 124.032 126.16 133.712 136.376 138.2 140.424 144.872 147 149.224 153.672 155.8 160.248 164.248 166.376 170.824 175.272 179.72 181.848 186.296 190.296 194.296 196.424 198.648 203.096 205.76 207.888 212.336 216.784 218.912 224.248 228.696 231.36 235.808 240.256 246.92 251.368 255.816 258.04 260.168 265.944 267.768 269.992 274.44 278.888 283.336 285.56 287.688 289.912 294.36 298.808 300.936 306.712 308.536 312.984 317.432 321.432 325.88\\\">3. Get a Lease Without the Clause. Write to us and ask for an Agreement without the Clause.</text></g><g clip-path=\\\"url(#clip5-25)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 442.0133)\\\" x=\\\"0 4.448 6.672 8.8 15.024 19.472 21.696 24.36 30.584 35.032 37.256 39.384 43.832 46.056 48.184 53.52 56.184 60.632 62.456 64.68 67.344 71.792 74.016 75.84 80.288 84.736 86.96 89.088 94.424 96.248 100.696 105.144 107.272 111.72 116.168 120.616 122.744 124.968 129.416 133.864 138.312 140.44 142.664 144.488 151.152 155.6 157.424 161.424 163.552 168 172.448 174.672 177.336 181.784 186.232 188.456\\\">4. Opt-Out of Arbitration. Sign and then timely opt-out.</text></g><clipPath id=\\\"clip5-26\\\"><path d=\\\"M 35 405 L 128 405 L 128 439 L 35 439 L 35 405 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-26)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.6 438.107 L 127.5 438.107 L 127.5 405.107 L 35.6 405.107 L 35.6 438.107 z \\\"/><path clip-path=\\\"url(#clip5-26)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.7 434.607 L 123.4 434.607 L 123.4 416.4977 L 39.7 416.4977 L 39.7 434.607 z \\\"/><path clip-path=\\\"url(#clip5-26)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 42.1633 434.607 L 121.1633 434.607 L 121.1633 424.607 L 42.1633 424.607 L 42.1633 434.607 z \\\"/><g clip-path=\\\"url(#clip5-26)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 42.1633 427.232)\\\" x=\\\"0 5.776 10.224 14.672 16.8 20.8 25.248 29.696 31.824 36.272 40.72 42.944 45.608 50.056 54.504 56.728 58.856 63.304 65.528 67.656 69.88 74.328\\\">Can you opt-out of the</text></g><path clip-path=\\\"url(#clip5-26)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 66.8508 425.5524 L 96.8508 425.5524 L 96.8508 415.5524 L 66.8508 415.5524 L 66.8508 425.5524 z \\\"/><g clip-path=\\\"url(#clip5-26)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 66.8508 418.1774)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496 24.944\\\">Clause?</text></g><clipPath id=\\\"clip5-27\\\"><path d=\\\"M 127 405 L 206 405 L 206 439 L 127 439 L 127 405 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-27)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 140.7617 427.232)\\\" x=\\\"0 5.336 9.784 13.784 16.008 18.136 25.688 27.512 29.736 34.184 36.008 40.456 42.584 47.032\\\">Yes. Within 60</text></g><g clip-path=\\\"url(#clip5-27)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 156.9395 418.1774)\\\" x=\\\"0 4.448 8.896 12.896 16.896\\\">days.</text></g><clipPath id=\\\"clip5-28\\\"><path d=\\\"M 205 405 L 573 405 L 573 439 L 205 439 L 205 405 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 427.232)\\\" x=\\\"0 7.552 10.216 12.04 14.264\\\">Write</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 228.3109 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 232.8069 427.232)\\\" x=\\\"0 4.448\\\">us</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 241.2562 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 245.7522 427.232)\\\" x=\\\"0 5.776 7.6 9.824 14.272 16.096\\\">within</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 266.299 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 270.795 427.232)\\\" x=\\\"0 4.448\\\">60</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 279.6935 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 284.1895 427.232)\\\" x=\\\"0 4 8.448 10.272 14.72 19.168 23.616 28.064\\\">calendar</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 314.9238 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 319.4198 427.232)\\\" x=\\\"0 4.448 8.896 12.896\\\">days</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 336.3183 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 340.8143 427.232)\\\" x=\\\"0 4.448\\\">of</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 347.4861 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 351.9821 427.232)\\\" x=\\\"0 4 5.824 10.272 14.72 16.544 20.992\\\">signing</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 377.4274 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 381.9234 427.232)\\\" x=\\\"0 4 8.448 12.896\\\">your</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 397.4859 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 401.9819 427.232)\\\" x=\\\"0 4.448 8.896 11.56 16.008 20.456 27.12 31.568 36.016\\\">agreement</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 440.228 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 444.724 427.232)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 451.3959 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 455.8919 427.232)\\\" x=\\\"0 4.448 8.896 11.12 13.784 18.232 22.68\\\">opt-out</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 480.7981 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 485.2941 427.232)\\\" x=\\\"0 4.448\\\">of</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 491.966 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 496.462 427.232)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 507.5831 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 512.0791 427.232)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496\\\">Clause</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 537.0283 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 541.5243 427.232)\\\" x=\\\"0 2.224 6.672\\\">for</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 550.8602 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 555.3562 427.232)\\\" x=\\\"0 2.224 6.672 11.12\\\">that</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 418.1774)\\\" x=\\\"0 4.448 8.896 11.56 16.008 20.456 27.12 31.568 36.016 38.24\\\">agreement.</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 250.0688 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 252.4616 418.1774)\\\" x=\\\"0 4.448 6.272 10.272\\\">List</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 264.9577 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 267.3505 418.1774)\\\" x=\\\"0 4 8.448 12.896\\\">your</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 282.913 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 285.3058 418.1774)\\\" x=\\\"0 4.448 8.896 15.56 20.008\\\">name,</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 307.5402 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 309.933 418.1774)\\\" x=\\\"0 4.448 8.896 13.344 16.008 20.456 24.456 28.456\\\">address,</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 340.6166 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 343.0095 418.1774)\\\" x=\\\"0 4.448 8.448 12.448 16.896 21.344 25.792\\\">account</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.029 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 373.4218 418.1774)\\\" x=\\\"0 4.448 8.896 15.56 20.008 24.456\\\">number</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 400.5468 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 402.9397 418.1774)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 416.2873 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 418.6801 418.1774)\\\" x=\\\"0 4.448 8.896 11.12 15.568\\\">date.</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 436.4731 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 438.8659 418.1774)\\\" x=\\\"0 4.448 6.272 10.272\\\">List</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 451.362 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 453.7549 418.1774)\\\" x=\\\"0 2.224 6.672 11.12\\\">that</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.0986 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 469.4914 418.1774)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 482.3899 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 484.7827 418.1774)\\\" x=\\\"0 2.84 7.288 11.736\\\">&quot;opt</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 498.7437 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 501.1365 418.1774)\\\" x=\\\"0 4.448 8.896 11.12 13.344\\\">out.&quot;</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 517.3201 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 519.7129 418.1774)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 524.1582 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 526.551 418.1774)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 539.4495 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 541.8423 418.1774)\\\" x=\\\"0 4.448 8.896\\\">opt</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.9634 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 555.3562 418.1774)\\\" x=\\\"0 4.448 8.896 11.12\\\">out,</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 409.1227)\\\" x=\\\"0 1.824 4.048 6.176 11.952 13.776 15.6 17.424 19.552 24 28.448 30.272 34.272 36.4 40.848 45.296 49.744 51.568 55.568 57.696 59.92 64.368 66.496 68.72 73.168 77.616 79.84 81.968 86.416 90.864 93.528 97.976 102.424 109.088 113.536 117.984 120.208\\\">it will only apply to that agreement.</text></g><clipPath id=\\\"clip5-29\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 489.607 L 128 489.607 L 128 488.607 L 35.1 488.607 L 35.1 489.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 488.607 L 36.1 488.607 L 36.1 438.607 L 35.1 438.607 L 35.1 488.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128 489.607 L 206 489.607 L 206 488.607 L 128 488.607 L 128 489.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127 488.607 L 128 488.607 L 128 438.607 L 127 438.607 L 127 488.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 489.607 L 573.3 489.607 L 573.3 488.607 L 206 488.607 L 206 489.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.3 488.607 L 573.3 488.607 L 573.3 438.607 L 572.3 438.607 L 572.3 488.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 488.607 L 206 488.607 L 206 438.607 L 205 438.607 L 205 488.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 438.607 L 128 438.607 L 128 437.607 L 35.1 437.607 L 35.1 438.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 405.607 L 128 405.607 L 128 404.607 L 35.1 404.607 L 35.1 405.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 437.607 L 36.1 437.607 L 36.1 405.607 L 35.1 405.607 L 35.1 437.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128 438.607 L 206 438.607 L 206 437.607 L 128 437.607 L 128 438.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128 405.607 L 206 405.607 L 206 404.607 L 128 404.607 L 128 405.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127 437.607 L 128 437.607 L 128 405.607 L 127 405.607 L 127 437.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 438.607 L 573.3 438.607 L 573.3 437.607 L 206 437.607 L 206 438.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 405.607 L 573.3 405.607 L 573.3 404.607 L 206 404.607 L 206 405.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.3 437.607 L 573.3 437.607 L 573.3 405.607 L 572.3 405.607 L 572.3 437.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 437.607 L 206 437.607 L 206 405.607 L 205 405.607 L 205 437.607 z \\\"/><g clip-path=\\\"url(#clip5-29)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 162.1492 377.7699)\\\" x=\\\"0 6.67 10 12.28 17.84 20.62 23.28 28.84 34.4 39.96 42.62 45.95 51.51 54.29 59.85 62.13 67.69 70.35 75.91 78.57 84.13 89.69 93.02 98.58 101.24 106.24 111.8 117.36 122.36 125.02 130.58 133.91 136.57 142.13 144.41 149.97 154.97 157.75 161.08 166.64 172.2 174.48 179.48 182.14 187.14 192.7 198.26 203.26 205.92 211.48 214.26 216.92 219.7 225.26 227.54 232.54 235.2 241.87 247.43 250.76 256.32 261.88 270.21 275.77 281.33\\\">Print and retain a hard copy or electronic copy of this Agreement</text></g><g clip-path=\\\"url(#clip5-29)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 36.5264)\\\" x=\\\"0 6.498 11.997 14.391 16.785 21.789 26.793 29.295 34.299 39.303 44.307 504 506.3906 508.7812 511.1719 513.5625 515.9531 518.3438 520.7344 523.125 525.5156\\\">UT  07/2019          </text></g><g clip-path=\\\"url(#clip5-29)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 26.3398)\\\" x=\\\"0 6.003 11.007 16.011 21.015\\\">Page </text></g><g clip-path=\\\"url(#clip5-29)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 55.8097 26.3398)\\\" x=\\\"0\\\">6</text></g><g clip-path=\\\"url(#clip5-29)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.815 26.3398)\\\" x=\\\"0 2.394 7.398 9.9\\\"> of </text></g><g clip-path=\\\"url(#clip5-29)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 73.1021 26.3398)\\\" x=\\\"0\\\">7</text></g><g clip-path=\\\"url(#clip5-29)\\\"><text stroke=\\\"none\\\" fill=\\\"#d9d9d9\\\" style=\\\"font-family:f5-0; font-size:54pt; white-space:pre\\\" transform=\\\"matrix(0.707 0.707 0.707 -0.707 135.6027 198.5094)\\\" x=\\\"0 56.016 96.048 136.08 176.112 216.144 236.16 284.184 324.216 344.232 364.248 416.232 456.264 480.24\\\">Qoppa Software</text></g><g clip-path=\\\"url(#clip5-29)\\\"><text stroke=\\\"none\\\" fill=\\\"#002ba6\\\" style=\\\"font-family:f5-0; font-size:9pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.932 772)\\\" x=\\\"0 9.336 16.008 22.68 29.352 36.024 39.36 47.364 54.036 57.372 60.708 69.372 76.044 80.04 86.712 90.048 94.044 97.38 104.712 111.384 115.38 118.716 126.72 132.72 139.392 142.056 148.728 155.4 158.736 161.4 168.072 174.744 178.08 187.416 194.088 196.752 202.752 206.088 210.084 213.42 220.092 223.428 226.764 233.436 239.436 242.772 246.108 249.444 258.108 266.772 275.436 278.772 285.444 292.116 298.788 305.46 312.132 315.468 321.468 328.14\\\">Qoppa Software - For Evaluation Only - https://www.qoppa.com</text></g></g></svg></svg></g></svg><br>\\n<?xml version='1.0' encoding='UTF-8'?><svg id=\\\"qoppa_document\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" version=\\\"1.1\\\" xmlns=\\\"http://www.w3.org/2000/svg\\\" xmlns:xlink=\\\"http://www.w3.org/1999/xlink\\\"><!-- jPDFWeb v2019R1.03 - Demo Version --><style>title p { display: block; }</style><g id=\\\"qoppa_viewxform\\\" transform=\\\"matrix(1 0 0 1 0 0)\\\"><style type=\\\"text/css\\\">@font-face {font-family:f6-0;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f6-1;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f6-2;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}</style><svg id=\\\"qoppa_page_p6\\\" class=\\\"qoppa_page\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\"><rect class=\\\"qoppa_pageborder\\\" x=\\\"0.5pt\\\" y=\\\"0.5pt\\\" width=\\\"611pt\\\" height=\\\"791pt\\\" fill=\\\"none\\\" /><svg class=\\\"qoppa_pagecontents\\\" x=\\\"0pt\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" viewBox=\\\"0 0 612 792\\\" ><g class=\\\"qoppa_contentstream\\\" transform=\\\"matrix(1 0 0 -1 0 792)\\\" fill=\\\"black\\\" stroke=\\\"black\\\" stroke-width=\\\"1\\\" stroke-linecap=\\\"butt\\\" stroke-linejoin=\\\"miter\\\" stroke-miterlimit=\\\"10\\\"><clipPath id=\\\"clip6-1\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 284.4843 735.5809)\\\" x=\\\"0 6.67 11.67 17.23 19.51 25.07 27.35\\\">Exhibit</text></g><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(0.99 0 0 -1 314.4843 735.5809)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 317.4843 735.5809)\\\" x=\\\"0\\\">A</text></g><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 94.4 699.1621)\\\" x=\\\"0 3.2783 9.3398 14.8398 20.9014 23.6816 29.1816\\\">Invoice</text></g><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 129.6432 699.1621)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 132.7994 699.1621)\\\" x=\\\"0\\\">#</text></g><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 138.8609 699.1621)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 142.0172 699.1621)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 142.0172 697.4792 L 142.0172 697.4792 L 145.0172 697.4792 L 145.4339 697.4792 L 145.4339 696.6458 L 145.0172 696.6458 L 142.0172 696.6458 L 141.6005 696.6458 L 141.6005 697.4792 z \\\"/><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 145.1734 699.1621)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 145.1734 697.4792 L 145.1734 697.4792 L 148.1734 697.4792 L 148.5901 697.4792 L 148.5901 696.6458 L 148.1734 696.6458 L 145.1734 696.6458 L 144.7568 696.6458 L 144.7568 697.4792 z \\\"/><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 148.3297 699.1621)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 148.3297 697.4792 L 148.3297 697.4792 L 151.3297 697.4792 L 151.7464 697.4792 L 151.7464 696.6458 L 151.3297 696.6458 L 148.3297 696.6458 L 147.913 696.6458 L 147.913 697.4792 z \\\"/><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 151.4859 699.1621)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 151.4859 697.4792 L 151.4859 697.4792 L 154.4859 697.4792 L 154.9026 697.4792 L 154.9026 696.6458 L 154.4859 696.6458 L 151.4859 696.6458 L 151.0693 696.6458 L 151.0693 697.4792 z \\\"/><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 154.6422 699.1621)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 154.6422 697.4792 L 154.6422 697.4792 L 157.6422 697.4792 L 158.0589 697.4792 L 158.0589 696.6458 L 157.6422 696.6458 L 154.6422 696.6458 L 154.2255 696.6458 L 154.2255 697.4792 z \\\"/><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 157.7984 699.1621)\\\" x=\\\"0\\\">0</text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 157.7984 697.4792 L 157.7984 697.4792 L 163.7984 697.4792 L 164.2151 697.4792 L 164.2151 696.6458 L 163.7984 696.6458 L 157.7984 696.6458 L 157.3818 696.6458 L 157.3818 697.4792 z \\\"/><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 163.86 699.1621)\\\" x=\\\"0\\\">4</text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 163.86 697.4792 L 163.86 697.4792 L 169.86 697.4792 L 170.2766 697.4792 L 170.2766 696.6458 L 169.86 696.6458 L 163.86 696.6458 L 163.4433 696.6458 L 163.4433 697.4792 z \\\"/><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 169.9215 699.1621)\\\" x=\\\"0\\\">1</text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 169.9215 697.4792 L 169.9215 697.4792 L 175.9215 697.4792 L 176.3382 697.4792 L 176.3382 696.6458 L 175.9215 696.6458 L 169.9215 696.6458 L 169.5048 696.6458 L 169.5048 697.4792 z \\\"/><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 175.983 699.1621)\\\" x=\\\"0\\\">2</text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 175.983 697.4792 L 175.983 697.4792 L 181.983 697.4792 L 182.3997 697.4792 L 182.3997 696.6458 L 181.983 696.6458 L 175.983 696.6458 L 175.5663 696.6458 L 175.5663 697.4792 z \\\"/><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 182.0445 699.1621)\\\" x=\\\"0\\\">9</text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 182.0445 697.4792 L 182.0445 697.4792 L 188.0445 697.4792 L 188.4612 697.4792 L 188.4612 696.6458 L 188.0445 696.6458 L 182.0445 696.6458 L 181.6279 696.6458 L 181.6279 697.4792 z \\\"/><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 188.1061 699.1621)\\\" x=\\\"0\\\">9</text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 188.1061 697.4792 L 188.1061 697.4792 L 194.1061 697.4792 L 194.5227 697.4792 L 194.5227 696.6458 L 194.1061 696.6458 L 188.1061 696.6458 L 187.6894 696.6458 L 187.6894 697.4792 z \\\"/><clipPath id=\\\"clip6-2\\\"><path d=\\\"M 71 551 L 537 551 L 537 572 L 71 572 L 71 551 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 286.9417 561.1477)\\\" x=\\\"0 6.003 9 14.004 19.008 24.012 28.512 31.014\\\">Products</text></g><clipPath id=\\\"clip6-3\\\"><path d=\\\"M 71 531 L 165 531 L 165 552 L 71 552 L 71 531 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 106.4173 541.1477)\\\" x=\\\"0 7.497 12.501 17.505 22.509\\\">Model</text></g><clipPath id=\\\"clip6-4\\\"><path d=\\\"M 164 531 L 258 531 L 258 552 L 164 552 L 164 531 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-4)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 189.1385 541.1477)\\\" x=\\\"0 6.498 11.502 16.002 20.502 23.499 25.551 30.555 33.057 35.109 40.113\\\">Description</text></g><clipPath id=\\\"clip6-5\\\"><path d=\\\"M 257 531 L 351 531 L 351 552 L 257 552 L 257 531 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-5)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 297.6995 541.1477)\\\" x=\\\"0 7.002 9.504\\\">Qty</text></g><clipPath id=\\\"clip6-6\\\"><path d=\\\"M 350 531 L 444 531 L 444 552 L 350 552 L 350 531 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-6)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 387.4212 541.1477)\\\" x=\\\"0 6.003 9 11.052 15.552\\\">Price</text></g><clipPath id=\\\"clip6-7\\\"><path d=\\\"M 443 531 L 537 531 L 537 552 L 443 552 L 443 531 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-7)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 460.2107 541.1477)\\\" x=\\\"0 6.003 10.503 13.005 18.009 23.013 28.017 33.021 38.025 40.419 46.422 49.419 51.471 55.971\\\">Extended Price</text></g><clipPath id=\\\"clip6-8\\\"><path d=\\\"M 164 511 L 258 511 L 258 532 L 164 532 L 164 511 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 178.6472 522.0696)\\\" x=\\\"0 5.336 9.784 12.448 16.448 18.272 22.272 26.72 30.72 32.848 37.296 41.744 46.192 48.32 53.208 57.656 62.104\\\">Services and Fees</text></g><clipPath id=\\\"clip6-9\\\"><path d=\\\"M 257 511 L 351 511 L 351 532 L 257 532 L 257 511 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 302.4754 522.0696)\\\" x=\\\"0\\\">1</text></g><clipPath id=\\\"clip6-10\\\"><path d=\\\"M 350 511 L 444 511 L 444 532 L 350 532 L 350 511 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 378.8426 522.0696)\\\" x=\\\"0 4.448 6.576 11.024 13.248 17.696 22.144 26.592 28.816 33.264\\\">$ 3,784.97</text></g><clipPath id=\\\"clip6-11\\\"><path d=\\\"M 443 511 L 537 511 L 537 532 L 443 532 L 443 511 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 471.8426 522.0696)\\\" x=\\\"0 4.448 6.576 11.024 13.248 17.696 22.144 26.592 28.816 33.264\\\">$ 3,784.97</text></g><clipPath id=\\\"clip6-12\\\"><path d=\\\"M 164 491 L 258 491 L 258 512 L 164 512 L 164 491 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 196.364 502.0696)\\\" x=\\\"0 6.664 11.112 13.336 15.56 18.224 22.672 26.672\\\">Mattress</text></g><clipPath id=\\\"clip6-13\\\"><path d=\\\"M 257 491 L 351 491 L 351 512 L 257 512 L 257 491 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-13)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 302.4754 502.0696)\\\" x=\\\"0\\\">1</text></g><clipPath id=\\\"clip6-14\\\"><path d=\\\"M 350 491 L 444 491 L 444 512 L 350 512 L 350 491 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-14)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 386.6277 502.0696)\\\" x=\\\"0 4.448 6.576 11.024 13.248 17.696\\\">$ 1.00</text></g><clipPath id=\\\"clip6-15\\\"><path d=\\\"M 443 491 L 537 491 L 537 512 L 443 512 L 443 491 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 479.6277 502.0696)\\\" x=\\\"0 4.448 6.576 11.024 13.248 17.696\\\">$ 1.00</text></g><clipPath id=\\\"clip6-16\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 71.2 572.4446 L 537.2 572.4446 L 537.2 571.4446 L 71.2 571.4446 L 71.2 572.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 536.2 571.4446 L 537.2 571.4446 L 537.2 552.4446 L 536.2 552.4446 L 536.2 571.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 71.2 571.4446 L 72.2 571.4446 L 72.2 552.4446 L 71.2 552.4446 L 71.2 571.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 71.2 552.4446 L 165.2 552.4446 L 165.2 551.4446 L 71.2 551.4446 L 71.2 552.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 71.2 551.4446 L 72.2 551.4446 L 72.2 532.4446 L 71.2 532.4446 L 71.2 551.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 165.2 552.4446 L 258.2 552.4446 L 258.2 551.4446 L 165.2 551.4446 L 165.2 552.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 164.2 551.4446 L 165.2 551.4446 L 165.2 532.4446 L 164.2 532.4446 L 164.2 551.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 258.2 552.4446 L 351.2 552.4446 L 351.2 551.4446 L 258.2 551.4446 L 258.2 552.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 257.2 551.4446 L 258.2 551.4446 L 258.2 532.4446 L 257.2 532.4446 L 257.2 551.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 351.2 552.4446 L 444.2 552.4446 L 444.2 551.4446 L 351.2 551.4446 L 351.2 552.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 350.2 551.4446 L 351.2 551.4446 L 351.2 532.4446 L 350.2 532.4446 L 350.2 551.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 444.2 552.4446 L 537.2 552.4446 L 537.2 551.4446 L 444.2 551.4446 L 444.2 552.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 536.2 551.4446 L 537.2 551.4446 L 537.2 532.4446 L 536.2 532.4446 L 536.2 551.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 443.2 551.4446 L 444.2 551.4446 L 444.2 532.4446 L 443.2 532.4446 L 443.2 551.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 71.2 532.4446 L 165.2 532.4446 L 165.2 531.4446 L 71.2 531.4446 L 71.2 532.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 71.2 531.4446 L 72.2 531.4446 L 72.2 512.4446 L 71.2 512.4446 L 71.2 531.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 165.2 532.4446 L 258.2 532.4446 L 258.2 531.4446 L 165.2 531.4446 L 165.2 532.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 164.2 531.4446 L 165.2 531.4446 L 165.2 512.4446 L 164.2 512.4446 L 164.2 531.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 258.2 532.4446 L 351.2 532.4446 L 351.2 531.4446 L 258.2 531.4446 L 258.2 532.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 257.2 531.4446 L 258.2 531.4446 L 258.2 512.4446 L 257.2 512.4446 L 257.2 531.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 351.2 532.4446 L 444.2 532.4446 L 444.2 531.4446 L 351.2 531.4446 L 351.2 532.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 350.2 531.4446 L 351.2 531.4446 L 351.2 512.4446 L 350.2 512.4446 L 350.2 531.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 444.2 532.4446 L 537.2 532.4446 L 537.2 531.4446 L 444.2 531.4446 L 444.2 532.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 536.2 531.4446 L 537.2 531.4446 L 537.2 512.4446 L 536.2 512.4446 L 536.2 531.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 443.2 531.4446 L 444.2 531.4446 L 444.2 512.4446 L 443.2 512.4446 L 443.2 531.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 71.2 512.4446 L 165.2 512.4446 L 165.2 511.4446 L 71.2 511.4446 L 71.2 512.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 71.2 492.4446 L 165.2 492.4446 L 165.2 491.4446 L 71.2 491.4446 L 71.2 492.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 71.2 511.4446 L 72.2 511.4446 L 72.2 492.4446 L 71.2 492.4446 L 71.2 511.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 165.2 512.4446 L 258.2 512.4446 L 258.2 511.4446 L 165.2 511.4446 L 165.2 512.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 165.2 492.4446 L 258.2 492.4446 L 258.2 491.4446 L 165.2 491.4446 L 165.2 492.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 164.2 511.4446 L 165.2 511.4446 L 165.2 492.4446 L 164.2 492.4446 L 164.2 511.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 258.2 512.4446 L 351.2 512.4446 L 351.2 511.4446 L 258.2 511.4446 L 258.2 512.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 258.2 492.4446 L 351.2 492.4446 L 351.2 491.4446 L 258.2 491.4446 L 258.2 492.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 257.2 511.4446 L 258.2 511.4446 L 258.2 492.4446 L 257.2 492.4446 L 257.2 511.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 351.2 512.4446 L 444.2 512.4446 L 444.2 511.4446 L 351.2 511.4446 L 351.2 512.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 351.2 492.4446 L 444.2 492.4446 L 444.2 491.4446 L 351.2 491.4446 L 351.2 492.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 350.2 511.4446 L 351.2 511.4446 L 351.2 492.4446 L 350.2 492.4446 L 350.2 511.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 444.2 512.4446 L 537.2 512.4446 L 537.2 511.4446 L 444.2 511.4446 L 444.2 512.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 444.2 492.4446 L 537.2 492.4446 L 537.2 491.4446 L 444.2 491.4446 L 444.2 492.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 536.2 511.4446 L 537.2 511.4446 L 537.2 492.4446 L 536.2 492.4446 L 536.2 511.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 443.2 511.4446 L 444.2 511.4446 L 444.2 492.4446 L 443.2 492.4446 L 443.2 511.4446 z \\\"/><clipPath id=\\\"clip6-17\\\"><path d=\\\"M 264 464 L 404 464 L 404 478 L 264 478 L 264 464 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-17)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.9359 468.3239)\\\" x=\\\"0 5.336 9.784 14.232 16.36 21.248 25.696 27.92 32.368 34.192\\\">Sub Total:</text></g><clipPath id=\\\"clip6-18\\\"><path d=\\\"M 403 464 L 535 464 L 535 478 L 403 478 L 403 464 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.55 468.3239)\\\" x=\\\"0 4.448 6.576 11.024 13.248 17.696 22.144 26.592 28.816 33.264\\\">$ 3,785.97</text></g><clipPath id=\\\"clip6-19\\\"><path d=\\\"M 264 451 L 404 451 L 404 465 L 264 465 L 264 451 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-19)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 358.6078 454.8239)\\\" x=\\\"0 5.336 9.784 11.608 16.056 20.056 22.184 27.072 31.52 35.52\\\">Sales Tax:</text></g><clipPath id=\\\"clip6-20\\\"><path d=\\\"M 403 451 L 535 451 L 535 465 L 403 465 L 403 451 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-20)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.55 454.8239)\\\" x=\\\"0 4.448 6.576 11.024 15.472 17.696 22.144\\\">$ 86.03</text></g><clipPath id=\\\"clip6-21\\\"><path d=\\\"M 264 437 L 404 437 L 404 452 L 264 452 L 264 437 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.7758 441.3239)\\\" x=\\\"0 4.888 9.336 11.56 16.008 17.832 19.96 22.184 26.632 30.632 35.08 36.904 40.904 45.352\\\">Total Invoice:</text></g><clipPath id=\\\"clip6-22\\\"><path d=\\\"M 403 437 L 535 437 L 535 452 L 403 452 L 403 437 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-22)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.55 441.3239)\\\" x=\\\"0 4.448 6.576 11.024 13.248 17.696 22.144 26.592 28.816 33.264\\\">$ 3,872.00</text></g><clipPath id=\\\"clip6-23\\\"><path d=\\\"M 264 424 L 404 424 L 404 438 L 264 438 L 264 424 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-23)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 284.3578 427.8239)\\\" x=\\\"0 5.336 12 14.224 16.352 22.128 26.576 31.024 33.152 38.04 42.488 46.936 51.384 55.384 57.512 60.176 65.952 68.176 72.624 74.752 80.088 82.752 87.2 91.2 93.328 98.216 102.664 107.112 109.776\\\">Amt Due Today (w/o Proc Fee):</text></g><clipPath id=\\\"clip6-24\\\"><path d=\\\"M 403 424 L 535 424 L 535 438 L 403 438 L 403 424 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.55 427.8239)\\\" x=\\\"0 4.448 6.576 11.024 13.248 17.696 22.144 26.592 28.816 33.264\\\">$ 3,784.30</text></g><clipPath id=\\\"clip6-25\\\"><path d=\\\"M 264 410 L 404 410 L 404 425 L 264 425 L 264 410 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-25)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.4242 414.3239)\\\" x=\\\"0 5.336 9.784 14.232 16.056 18.184 23.96 28.408 32.408 34.632 36.76 42.536 46.984 50.984 55.432 57.56 62.896 67.344 69.472 74.36 78.808 83.256 87.704 91.704\\\">Addl Cust Cash Pd Today:</text></g><clipPath id=\\\"clip6-26\\\"><path d=\\\"M 403 410 L 535 410 L 535 425 L 403 425 L 403 410 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-26)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.55 414.3239)\\\" x=\\\"0 4.448 6.576 11.024 13.248 17.696\\\">$ 0.00</text></g><clipPath id=\\\"clip6-27\\\"><path d=\\\"M 264 397 L 404 397 L 404 411 L 264 411 L 264 397 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 333.8422 400.8239)\\\" x=\\\"0 5.336 9.784 14.232 18.68 20.808 26.584 31.032 35.032 39.48 41.608 47.384 51.384 55.832 60.28\\\">Snap Cash Used:</text></g><clipPath id=\\\"clip6-28\\\"><path d=\\\"M 403 397 L 535 397 L 535 411 L 403 411 L 403 397 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.55 400.8239)\\\" x=\\\"0 4.448 6.576 11.024 15.472 17.696 22.144\\\">$ 87.70</text></g><clipPath id=\\\"clip6-29\\\"><path d=\\\"M 264 383 L 404 383 L 404 398 L 264 398 L 264 383 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-29)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 274.8227 387.3239)\\\" x=\\\"0 5.336 8 12.448 16.448 18.576 23.464 27.912 32.36 34.488 40.264 44.712 46.536 48.36 52.808 56.808 59.032 63.48 67.928 70.056 72.72 77.168 81.168 83.296 89.96 94.408 97.072 101.072 105.52 109.968 114.416 116.64 119.304\\\">Proc Fee Collected (by Merchant):</text></g><clipPath id=\\\"clip6-30\\\"><path d=\\\"M 403 383 L 535 383 L 535 398 L 403 398 L 403 383 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.55 387.3239)\\\" x=\\\"0 4.448 6.576 11.024 13.248 17.696\\\">$ 0.00</text></g><clipPath id=\\\"clip6-31\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip6-31)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 403.55 464.9489 L 534.3 464.9489 L 534.3 464.4489 L 403.55 464.4489 L 403.55 464.9489 z \\\"/><path clip-path=\\\"url(#clip6-31)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 403.55 451.4489 L 534.3 451.4489 L 534.3 450.9489 L 403.55 450.9489 L 403.55 451.4489 z \\\"/><path clip-path=\\\"url(#clip6-31)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 403.55 437.9489 L 534.3 437.9489 L 534.3 437.4489 L 403.55 437.4489 L 403.55 437.9489 z \\\"/><path clip-path=\\\"url(#clip6-31)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 403.55 424.4489 L 534.3 424.4489 L 534.3 423.9489 L 403.55 423.9489 L 403.55 424.4489 z \\\"/><path clip-path=\\\"url(#clip6-31)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 403.55 410.9489 L 534.3 410.9489 L 534.3 410.4489 L 403.55 410.4489 L 403.55 410.9489 z \\\"/><path clip-path=\\\"url(#clip6-31)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 403.55 397.4489 L 534.3 397.4489 L 534.3 396.9489 L 403.55 396.9489 L 403.55 397.4489 z \\\"/><path clip-path=\\\"url(#clip6-31)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 403.55 383.9489 L 534.3 383.9489 L 534.3 383.4489 L 403.55 383.4489 L 403.55 383.9489 z \\\"/><g clip-path=\\\"url(#clip6-31)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 36.5264)\\\" x=\\\"0 6.498 11.997 14.391 16.785 21.789 26.793 29.295 34.299 39.303 44.307 504 506.3906 508.7812 511.1719 513.5625 515.9531 518.3438 520.7344 523.125 525.5156\\\">UT  07/2019          </text></g><g clip-path=\\\"url(#clip6-31)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 26.3398)\\\" x=\\\"0 6.003 11.007 16.011 21.015\\\">Page </text></g><g clip-path=\\\"url(#clip6-31)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 55.8097 26.3398)\\\" x=\\\"0\\\">7</text></g><g clip-path=\\\"url(#clip6-31)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.815 26.3398)\\\" x=\\\"0 2.394 7.398 9.9\\\"> of </text></g><g clip-path=\\\"url(#clip6-31)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 73.1021 26.3398)\\\" x=\\\"0\\\">7</text></g><g clip-path=\\\"url(#clip6-31)\\\"><text stroke=\\\"none\\\" fill=\\\"#d9d9d9\\\" style=\\\"font-family:f6-0; font-size:54pt; white-space:pre\\\" transform=\\\"matrix(0.707 0.707 0.707 -0.707 135.6027 198.5094)\\\" x=\\\"0 56.016 96.048 136.08 176.112 216.144 236.16 284.184 324.216 344.232 364.248 416.232 456.264 480.24\\\">Qoppa Software</text></g><g clip-path=\\\"url(#clip6-31)\\\"><text stroke=\\\"none\\\" fill=\\\"#002ba6\\\" style=\\\"font-family:f6-0; font-size:9pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.932 772)\\\" x=\\\"0 9.336 16.008 22.68 29.352 36.024 39.36 47.364 54.036 57.372 60.708 69.372 76.044 80.04 86.712 90.048 94.044 97.38 104.712 111.384 115.38 118.716 126.72 132.72 139.392 142.056 148.728 155.4 158.736 161.4 168.072 174.744 178.08 187.416 194.088 196.752 202.752 206.088 210.084 213.42 220.092 223.428 226.764 233.436 239.436 242.772 246.108 249.444 258.108 266.772 275.436 278.772 285.444 292.116 298.788 305.46 312.132 315.468 321.468 328.14\\\">Qoppa Software - For Evaluation Only - https://www.qoppa.com</text></g></g></svg></svg></g></svg><br>\\n</body> \\n </html>\\n\"\n        }\n    },\n    \"success\": true,\n    \"status\": 200\n}"},{"id":"ede9d8fd-4cfa-47f9-8656-148e380f64ea","name":"Not Found","originalRequest":{"method":"GET","header":[{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer pORU5GTWtNeE1UQkJPVE5DUl....JiWYvnmRQSSCozUr6Xt7RXRK","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Content-Type","value":"application/json"},{"key":"Request-Id","value":"123"}],"url":{"raw":"https://api-sandbox.snapfinance.com/platform/v1/application/{{applicationId}}/agreement?renderType=html&document=agreement","protocol":"https","host":["api-sandbox","snapfinance","com"],"path":["platform","v1","application","{{applicationId}}","agreement"],"query":[{"key":"renderType","value":"html"},{"key":"document","value":"agreement"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"136"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 16 Jul 2020 17:02:21 GMT"},{"key":"x-amzn-RequestId","value":"7bdbe015-ee4e-47a5-a8c5-70f56a2cde04"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"Pxo0aFo-PHcFy6A="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f10881c-f4d45cc21e4bc05a15184b31"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 0a72bb7be10458e1aefa37a097f21894.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"Zcwg0uNr6gJ8ilLNW9-r5krSpR6T7Z-LLnNpLYvub6tAYp-Dx30msw=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"status\": 404,\n    \"error\": [\n        {\n            \"code\": \"application_invalid\",\n            \"type\": \"invalid_request_error\",\n            \"message\": \"Application not found\"\n        }\n    ]\n}"},{"id":"b074baea-f0c6-4801-80c4-5435a716136c","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Content-Type","value":"application/json"},{"key":"Request-Id","value":"123"}],"url":{"raw":"{{baseUrl}}/platform/v1/application/{{applicationId}}/agreement?renderType=html&document=agreement","host":["{{baseUrl}}"],"path":["platform","v1","application","{{applicationId}}","agreement"],"query":[{"key":"renderType","value":"html"},{"key":"document","value":"agreement"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1825083"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:24:43 GMT"},{"key":"x-amzn-RequestId","value":"40b52282-2a30-4df6-8cdf-82aa447ca6b3"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P02OxEfnPHcF9yw="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d0c4-8b923ff4b1bf11f48fb3b3b8"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"OcTSGzIIqa3esIfeYqbdx2iywfRfpBgLnbSAPl3aJcuDg_Vl84kX2A=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"agreementInformation\": {\n            \"applicationId\": \"{{applicationId}}\",\n            \"customerInformation\": {\n                \"dobDate\": \"1977-07-07\",\n                \"customerId\": \"000007777\",\n                \"customerIdType\": \"SSN4\",\n                \"mobilePhone\": \"1000000019\",\n                \"mobilePhoneCountry\": \"US\",\n                \"email\": \"test@test.com\",\n                \"firstName\": \"John\",\n                \"lastName\": \"Smith\",\n                \"billingAddress\": {\n                    \"streetAddress\": \"123mainst\",\n                    \"city\": \"Saltlakecity\",\n                    \"state\": \"UT\",\n                    \"country\": \"US\",\n                    \"postalCode\": \"84001\"\n                }\n            },\n            \"snapFinanceInformation\": {\n                \"businessName\": \"Snap RTO LLC\",\n                \"snapAddress\": {\n                    \"streetAddress\": \"Any street in town\",\n                    \"city\": \"Salt Lake City\",\n                    \"state\": \"UT\",\n                    \"country\": \"US\",\n                    \"postalCode\": \"84126\"\n                },\n                \"email\": \"test@test.com\",\n                \"phoneNumber\": \"1000000007\",\n                \"phoneNumberCode\": \"US\"\n            },\n            \"agreementDetails\": \"<!DOCTYPE html>\\n<html>\\n\\t<head>\\n\\t\\t<meta charset=\\\"utf-8\\\">\\n\\t\\t<style type=\\\"text/css\\\">\\n\\t\\t\\tbody {background-color:lightgray; text-align:center;}\\n\\t\\t\\t.qoppa_pageborder {fill:white;}\\n\\t\\t\\t#qoppa_document {padding:5px; margin:auto;}\\n\\t\\t</style>\\n\\t</head>\\n\\t<body>\\n<?xml version='1.0' encoding='UTF-8'?><svg id=\\\"qoppa_document\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" version=\\\"1.1\\\" xmlns=\\\"http://www.w3.org/2000/svg\\\" xmlns:xlink=\\\"http://www.w3.org/1999/xlink\\\"><!-- jPDFWeb v2019R1.03 - Demo Version --><style>title p { display: block; }</style><g id=\\\"qoppa_viewxform\\\" transform=\\\"matrix(1 0 0 1 0 0)\\\"><style type=\\\"text/css\\\">@font-face {font-family:f0-0;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f0-1;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f0-2;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}</style><svg id=\\\"qoppa_page_p0\\\" class=\\\"qoppa_page\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\"><rect class=\\\"qoppa_pageborder\\\" x=\\\"0.5pt\\\" y=\\\"0.5pt\\\" width=\\\"611pt\\\" height=\\\"791pt\\\" fill=\\\"none\\\" /><svg class=\\\"qoppa_pagecontents\\\" x=\\\"0pt\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" viewBox=\\\"0 0 612 792\\\" ><g class=\\\"qoppa_contentstream\\\" transform=\\\"matrix(1 0 0 -1 0 792)\\\" fill=\\\"black\\\" stroke=\\\"black\\\" stroke-width=\\\"1\\\" stroke-linecap=\\\"butt\\\" stroke-linejoin=\\\"miter\\\" stroke-miterlimit=\\\"10\\\"><clipPath id=\\\"clip0-1\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><g clip-path=\\\"url(#clip0-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:8.25pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 213.8098 759.5594)\\\" x=\\\"0 7.942 15.279 23.221 29.942 37.279 43.395 47.058 54.395 62.337 70.279 78.221 86.163 93.5 100.837 108.174 111.1 118.437 126.995 134.937 142.274 149.611 158.774 166.111 174.053\\\">RENTAL-PURCHASE AGREEMENT</text></g><clipPath id=\\\"clip0-2\\\"><path d=\\\"M 35 701 L 285 701 L 285 758 L 35 758 L 35 701 z \\\"/></clipPath><g clip-path=\\\"url(#clip0-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 745.5311)\\\" x=\\\"0 5.56 11.12 16.68 21.68 27.24 29.9 37.12 42.68 51.01 56.57 62.13 67.69 72.69 75.35 78.68 84.24 89.8 94.8 99.8 105.36 108.69 112.02 114.8 117.46 124.13 131.35 138.02 144.69 147.35 154.57 160.68 168.46 171.12 176.68 182.24\\\">Lease Company (Lessor): SNAP RTO LLC</text></g><g clip-path=\\\"url(#clip0-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 732.2127)\\\" x=\\\"0 6.67 9.45 17.23 20.01 22.67 29.34 34.9 39.9 42.56 48.12 53.68 59.24 64.8\\\">P.O. Box 26561</text></g><g clip-path=\\\"url(#clip0-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 718.8943)\\\" x=\\\"0 6.67 12.23 14.51 17.29 19.95 25.51 31.07 36.07 41.63 44.29 51.51 53.79 56.57 61.57 64.35 67.01 74.23 80.34 83 88.56 94.12 99.68 105.24\\\">Salt Lake City, UT 84126</text></g><g clip-path=\\\"url(#clip0-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 705.576)\\\" x=\\\"0 6.67 12.23 17.79 23.35 28.91 31.69 34.35 37.68 43.24 48.8 54.36 57.69 60.35 65.91 71.47 77.03 80.36 85.92 91.48 97.04\\\">Phone: (877) 557-3769</text></g><clipPath id=\\\"clip0-3\\\"><path d=\\\"M 284 701 L 574 701 L 574 758 L 284 758 L 284 701 z \\\"/></clipPath><g clip-path=\\\"url(#clip0-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.225 745.5311)\\\" x=\\\"0 5.56 11.12 16.12 21.12 26.68 32.24 35.02 37.68 42.68 48.24 53.8 59.36 62.02 64.68 71.35 79.68 81.96 84.74\\\">Lessee: John  Smith</text></g><g clip-path=\\\"url(#clip0-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 290.225 732.2127)\\\" x=\\\"0 5.56 11.12 16.68 25.01 30.57 32.85 38.41 43.41\\\">123mainst</text></g><g clip-path=\\\"url(#clip0-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.225 718.8943)\\\" x=\\\"0 6.67 12.23 14.51 17.29 19.57 25.13 30.13 35.69 40.69 42.97 45.75 50.75 53.53 56.19 63.41 69.52 72.18 77.74 83.3 88.86 94.42\\\">Saltlakecity, UT 84001</text></g><g clip-path=\\\"url(#clip0-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 290.225 705.576)\\\" x=\\\"0 2.28 7.84 13.4 15.68 21.24 26.8 32.36 37.36 47.51 53.07 58.07 66.4 71.96 74.74 79.74 85.3\\\">jbolanos@acme.com</text></g><clipPath id=\\\"clip0-4\\\"><path d=\\\"M 35 674 L 285 674 L 285 702 L 35 702 L 35 674 z \\\"/></clipPath><g clip-path=\\\"url(#clip0-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 689.7576)\\\" x=\\\"0 6.67 12.23 17.79 20.07 22.35 27.35 32.91 35.69 37.97 43.53 49.09 51.75 54.53 61.75 64.53 67.19 72.75 78.31 83.87 89.43 94.99 100.55 106.11 111.67 117.23 126.67 133.89\\\">Application ID: 200717000WUT</text></g><clipPath id=\\\"clip0-5\\\"><path d=\\\"M 284 674 L 428 674 L 428 702 L 284 702 L 284 674 z \\\"/></clipPath><g clip-path=\\\"url(#clip0-5)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.225 689.7576)\\\" x=\\\"0 5.56 11.12 16.68 21.68 27.24 29.9 37.12 42.68 45.46 51.02 53.8 56.46 62.02 67.58 70.36 75.92 81.48 84.26 89.82 95.38 100.94\\\">Lease Date: 07/17/2020</text></g><g clip-path=\\\"url(#clip0-5)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.225 678.4393)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 27.68 34.35\\\">10:22 AM</text></g><clipPath id=\\\"clip0-6\\\"><path d=\\\"M 427 674 L 574 674 L 574 702 L 427 702 L 427 674 z \\\"/></clipPath><g clip-path=\\\"url(#clip0-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 433.375 689.7576)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79 40.45 47.67 53.23 58.79 64.35 66.63 69.41 71.69 77.25 82.81 85.59 88.25 95.47 101.03\\\">Property Condition: New</text></g><clipPath id=\\\"clip0-7\\\"><path d=\\\"M 35 631 L 574 631 L 574 675 L 35 675 L 35 631 z \\\"/></clipPath><g clip-path=\\\"url(#clip0-7)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 662.6209)\\\" x=\\\"0 7.22 12.78 17.78 22.78 26.11 28.39 33.95 36.73 39.01 44.57 50.13 52.79 58.35 61.13 63.79 69.35 74.91 80.47 86.03 91.03 93.69 99.25 104.81 107.09 112.65 118.21 120.87 126.43 131.99 135.32 140.32 145.88 151.44 156.44 162 167.56 170.22 173 176.33 181.89 190.22 192.88 195.66 201.22 206.78 209.44 216.66 222.22 225 230.56 232.84 235.12 240.68 244.01 246.67 250 252.78 258.34 263.9 266.56 269.89 276.56 279.89 285.45 291.01 296.57 299.9 302.68 307.68 311.01 314.34 317 319.78 325.34 328.67 331.45 337.01 342.57 345.9 348.56 354.12 359.12 364.68 366.96 372.52 374.8 380.36 385.92 391.48 394.14 396.42 401.98 404.64 411.31 416.31 421.87 424.15 429.71 431.99 434.77 437.43 444.1\\\">Description of goods being purchased from th* D E M O *(the “Property”) further explained in Exhibit A:</text></g><g clip-path=\\\"url(#clip0-7)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 649.3025)\\\" x=\\\"0 6.67 12.23 15.56 20.56 22.84 27.84 33.4 38.4 41.06 46.62 52.18 57.74 60.4 66.51 72.07 77.63 82.63 85.41 88.07 96.4 101.96 104.74 107.52 110.85 116.41 121.41\\\">Services and Fees, Mattress</text></g><clipPath id=\\\"clip0-8\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.025 757.4998 L 285.075 757.4998 L 285.075 756.9998 L 35.025 756.9998 L 35.025 757.4998 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.025 756.9998 L 35.525 756.9998 L 35.525 701.7264 L 35.025 701.7264 L 35.025 756.9998 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 285.075 757.4998 L 573.375 757.4998 L 573.375 756.9998 L 285.075 756.9998 L 285.075 757.4998 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.875 756.9998 L 573.375 756.9998 L 573.375 701.7264 L 572.875 701.7264 L 572.875 756.9998 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 284.575 756.9998 L 285.075 756.9998 L 285.075 701.7264 L 284.575 701.7264 L 284.575 756.9998 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.025 701.7264 L 285.075 701.7264 L 285.075 701.2264 L 35.025 701.2264 L 35.025 701.7264 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.025 701.2264 L 35.525 701.2264 L 35.525 674.5897 L 35.025 674.5897 L 35.025 701.2264 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 285.075 701.7264 L 428.225 701.7264 L 428.225 701.2264 L 285.075 701.2264 L 285.075 701.7264 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 284.575 701.2264 L 285.075 701.2264 L 285.075 674.5897 L 284.575 674.5897 L 284.575 701.2264 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 428.225 701.7264 L 573.375 701.7264 L 573.375 701.2264 L 428.225 701.2264 L 428.225 701.7264 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.875 701.2264 L 573.375 701.2264 L 573.375 674.5897 L 572.875 674.5897 L 572.875 701.2264 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 427.725 701.2264 L 428.225 701.2264 L 428.225 674.5897 L 427.725 674.5897 L 427.725 701.2264 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.025 674.5897 L 573.375 674.5897 L 573.375 674.0897 L 35.025 674.0897 L 35.025 674.5897 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.025 632.1346 L 573.375 632.1346 L 573.375 631.6346 L 35.025 631.6346 L 35.025 632.1346 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.875 674.0897 L 573.375 674.0897 L 573.375 632.1346 L 572.875 632.1346 L 572.875 674.0897 z \\\"/><path clip-path=\\\"url(#clip0-8)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.025 674.0897 L 35.525 674.0897 L 35.525 632.1346 L 35.025 632.1346 L 35.025 674.0897 z \\\"/><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 620.1658)\\\" x=\\\"0 6.11 13.89 21.11 29.44 36.11 42.22 45 52.78\\\">FORMATION</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 93.0951 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 97.0295 620.1658)\\\" x=\\\"0 7.78\\\">OF</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 110.9162 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 114.8506 620.1658)\\\" x=\\\"0 6.67 14.45 21.67 28.34 35.01 43.34 50.01 57.23 63.34\\\">AGREEMENT.</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 180.9688 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 184.9032 620.1658)\\\" x=\\\"0 6.67\\\">By</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 196.5731 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 200.5075 620.1658)\\\" x=\\\"0 5 7.28 12.84 18.4 20.68 26.24\\\">signing</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 232.3141 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 236.2485 620.1658)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 251.8686 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 255.803 620.1658)\\\" x=\\\"0 7.22 12.78 18.34 21.12 26.68 28.96 32.29 38.96 44.52 47.85 52.85 58.41 63.97 68.97\\\">Rental-Purchase</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 330.344 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 334.2784 620.1658)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement,</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 385.9727 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 389.9071 620.1658)\\\" x=\\\"0 5.56 7.84 12.84\\\">also</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 408.3105 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 412.2448 620.1658)\\\" x=\\\"0 5 10.56 16.12 23.34\\\">known</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 441.1511 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 445.0855 620.1658)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 455.647 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 459.5814 620.1658)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 465.1429 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 469.0773 620.1658)\\\" x=\\\"0 5.56 11.12 16.68 21.68\\\">Lease</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 496.3234 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 500.2578 620.1658)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.1738 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.1082 620.1658)\\\" x=\\\"0 7.22 9.5 12.28\\\">with</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 620.1658)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 608.8475)\\\" x=\\\"0 7.78 13.34 16.12 18.4 23.96\\\">Option</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 62.6215 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 66.5575 608.8475)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 74.8974 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 78.8334 608.8475)\\\" x=\\\"0 6.67 12.23 15.56 20.56 26.12 31.68 36.68\\\">Purchase</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 121.0795 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 125.0155 608.8475)\\\" x=\\\"0 3.33 6.11 11.67 13.95\\\">(this</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 143.9657 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 147.9017 608.8475)\\\" x=\\\"0 3.33 10 15.56 18.89 24.45 30.01 38.34 43.9 49.46 52.24 55.57 58.9\\\">“Agreement”),</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.5863 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 213.5223 608.8475)\\\" x=\\\"0 5 10.56 16.12\\\">you,</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 232.4237 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 236.3597 608.8475)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 250.2611 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 254.1971 608.8475)\\\" x=\\\"0 7.22 12.78 17.78 20.56 26.12 34.45 40.01 43.34 46.67 51.67\\\">Customer(s)</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 309.202 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 313.138 608.8475)\\\" x=\\\"0 3.33 6.66 11.66 17.22 22.78\\\">(“you”</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 339.2513 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 343.1873 608.8475)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.8719 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 363.8079 608.8475)\\\" x=\\\"0 3.33 8.33 13.89 19.45 22.78 26.11\\\">“your”)</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.2513 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 397.1873 608.8475)\\\" x=\\\"0 5 10.56 16.12 21.68 26.68\\\">choose</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 429.4334 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 433.3695 608.8475)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 441.7093 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 445.6453 608.8475)\\\" x=\\\"0 2.28 7.84 13.4 18.4\\\">lease</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 469.6102 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 473.5462 608.8475)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 487.4476 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 491.3836 608.8475)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.1766 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 533.1126 608.8475)\\\" x=\\\"0 2.78 6.11 11.67\\\">from</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.1126 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0486 608.8475)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 608.8475)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 597.5291)\\\" x=\\\"0 5.56 11.12 16.68 21.68\\\">Lease</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.3461 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 63.7235 597.5291)\\\" x=\\\"0 7.22 12.78 21.11 26.67 32.23 37.79\\\">Company</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 106.5213 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 109.8987 597.5291)\\\" x=\\\"0 3.33 6.66 13.88 19.44 22.22\\\">(“we,”</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 135.4505 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 138.8278 597.5291)\\\" x=\\\"0 3.33 8.89 13.89 16.67\\\">“us,”</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 158.8278 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 162.2052 597.5291)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 178.8898 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 182.2672 597.5291)\\\" x=\\\"0 3.33 8.89 14.45 17.78 21.11\\\">“our”)</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 206.7105 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.0879 597.5291)\\\" x=\\\"0 5.56 10.56 15.56 21.12 24.45 30.01 32.29 37.85\\\">according</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 253.5059 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 256.8832 597.5291)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 265.2231 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 268.6005 597.5291)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 282.5018 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 285.8792 597.5291)\\\" x=\\\"0 2.78 8.34 11.67 20\\\">terms</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 310.8792 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 314.2566 597.5291)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 322.5964 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 325.9738 597.5291)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 341.5939 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 344.9713 597.5291)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement.</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 396.6656 597.5291)\\\" x=\\\"0 3.3774\\\">  </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 403.4204 597.5291)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 420.6518 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 424.0292 597.5291)\\\" x=\\\"0 2.78 8.34 11.67\\\">term</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 444.0292 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 447.4066 597.5291)\\\" x=\\\"0 3.33 10.55 16.11 18.89 24.45 26.73 29.01 34.57 37.9\\\">“Retailer”</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 488.6419 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 492.0193 597.5291)\\\" x=\\\"0 8.33 13.89 19.45 25.01 30.01 36.68 42.24 47.8 52.8 57.8 61.13 67.8 73.36\\\">meansEbaycrYou</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 597.5291)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 586.2107)\\\" x=\\\"0 5.56 11.12 16.12 21.68 24.34 27.12 32.68 38.24 40.9 44.23 46.51 52.07 57.63 60.41 63.19 65.85 71.41 76.97 79.75 82.41 87.97 93.53 96.31 98.97 101.75 107.31 112.87 115.53 121.09 126.65 128.93 131.21 136.77 142.33 145.11 147.39 152.95 158.51 161.29 163.95 166.73 172.29 174.95 180.51 185.51 191.07 196.63 198.91 202.24 207.8 210.46 216.02 223.24 228.8 234.36 237.69 242.69 248.25 250.53 256.09 258.75 264.31 267.09 269.75 272.53 278.09 283.65 286.31 292.98 296.31 301.87 307.43 312.99 316.32 319.1 324.1 326.76 332.32 337.32 339.98 345.54 351.1 356.1 361.1 364.43 366.71 372.27 377.83 383.39 386.05 391.61 397.17 400.5 406.06 408.34 413.9\\\">have the right, but not the obligation, to acquire ownership of the Property as described herein.</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 572.8924)\\\" x=\\\"0 6.67 13.89 21.67 28.89 31.67 38.34 41.12 47.23 50.01 57.79\\\">ACQUISITION</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 98.1049 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 101.7037 572.8924)\\\" x=\\\"0 7.78\\\">OF</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 115.5905 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 119.1893 572.8924)\\\" x=\\\"0 6.67 13.89 21.67 28.34 35.01 42.23 48.34\\\">PROPERTY</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 174.1991 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 177.798 572.8924)\\\" x=\\\"0 6.67\\\">AS</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 191.1378 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 194.7367 572.8924)\\\" x=\\\"0 6.67 14.45 21.12 28.34 34.45\\\">AGENT;</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.9632 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 235.5621 572.8924)\\\" x=\\\"0 7.22 13.89\\\">NEW</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 258.8922 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 262.4911 572.8924)\\\" x=\\\"0 7.22 15 22.22 29.44 32.22 38.33 41.11 48.89 56.11\\\">CONDITION;</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 321.3778 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 324.9766 572.8924)\\\" x=\\\"0 7.22 13.89 20.56 27.78 35 37.78 44.45 50.56 53.34 61.12 68.34\\\">DESCRIPTION.</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 396.0948 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 399.6937 572.8924)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 417.4866 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 421.0855 572.8924)\\\" x=\\\"0 5.56 8.89\\\">are</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 435.5386 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 439.1375 572.8924)\\\" x=\\\"0 5.56 11.12 13.9 19.46 21.74 27.3 29.58 35.14\\\">obtaining</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 479.8455 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 483.4444 572.8924)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 497.3458 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 500.9446 572.8924)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 538.7376 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 542.3365 572.8924)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.898 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 556.4968 572.8924)\\\" x=\\\"0 5.56 11.12\\\">our</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 572.8924)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 561.574)\\\" x=\\\"0 5.56 11.12 16.68 22.24 25.02\\\">agent.</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.9027 561.574)\\\" x=\\\"0 4.0087\\\">  </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 68.9202 561.574)\\\" x=\\\"0 9.44\\\">We</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 83.9202 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 87.9288 561.574)\\\" x=\\\"0 5.56 12.78\\\">own</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 106.2736 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 110.2823 561.574)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 124.1837 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 128.1924 561.574)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 165.9853 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 169.994 561.574)\\\" x=\\\"0 5.56 11.12 13.4 18.96 23.96\\\">unless</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 198.9589 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 202.9676 561.574)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 219.6522 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 223.6609 561.574)\\\" x=\\\"0 5.56 11.12 13.9 16.18\\\">until</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 242.1228 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 246.1315 561.574)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.2545 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 266.2632 561.574)\\\" x=\\\"0 8.33 13.89 18.89\\\">make</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.7163 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 294.7251 561.574)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.6264 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 312.6351 561.574)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57 38.35\\\">payments</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.9896 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 359.9983 561.574)\\\" x=\\\"0 5.56 11.12 16.12 21.68 26.68 31.68 37.24 40.57\\\">necessary</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 405.5745 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 409.5832 561.574)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 417.923 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 421.9318 561.574)\\\" x=\\\"0 5.56 10.56 16.12 21.68 23.96 27.29\\\">acquire</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.7882 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 458.7969 561.574)\\\" x=\\\"0 5.56 12.78 18.34 23.9 27.23 32.23 37.79 40.07 45.63\\\">ownership.</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 507.2149 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 511.2236 561.574)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.0165 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 533.0253 561.574)\\\" x=\\\"0 5.56 11.12 14.45 20.01\\\">agree</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 558.6014 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 562.6101 561.574)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 561.574)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 550.2557)\\\" x=\\\"0 5.56 11.12 13.9 19.46 21.74 27.3 29.96 32.74 36.07 41.63 49.96 52.62 55.4 60.96 66.52 69.18 76.4 81.96 84.74 90.3 92.58 94.86 100.42 103.75 106.41 111.97 117.53 119.81 124.81 127.47 133.03 138.59 145.81 148.47 154.03 159.59 165.15 170.71 175.71 178.37 181.15 186.71 190.04 192.7 198.26 203.82 207.15 212.15 217.71 223.27 228.83 231.11 233.89 236.55 239.33 244.89 253.22 255.5 257.78 262.78 265.44 271 274.33 276.99 282.55 288.11 293.67 298.67 304.23 309.79 315.35 317.63 323.19 325.85 331.41 336.97 340.3 345.86 351.42 356.42 361.98 366.98\\\">obtain from the Retailer only new goods for personal, family or household purposes.</text></g><clipPath id=\\\"clip0-9\\\"><path d=\\\"M 35 529 L 574 529 L 574 547 L 35 547 L 35 529 z \\\"/></clipPath><path clip-path=\\\"url(#clip0-9)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 35.3 546.1561 L 573.1 546.1561 L 573.1 529.8377 L 35.3 529.8377 L 35.3 546.1561 z \\\"/><path clip-path=\\\"url(#clip0-9)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 40.7 543.1561 L 555.4 543.1561 L 555.4 531.8377 L 40.7 531.8377 L 40.7 543.1561 z \\\"/><path clip-path=\\\"url(#clip0-9)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 96.7096 543.1561 L 499.7096 543.1561 L 499.7096 531.1561 L 96.7096 531.1561 L 96.7096 543.1561 z \\\"/><g clip-path=\\\"url(#clip0-9)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 96.7096 533.9373)\\\" x=\\\"0 2.78 11.11 17.78 25.56 32.78 38.89 45.56 52.78 58.89 61.55 68.77 75.44 82.66 88.77 95.44 101 104.33 111 118.22 125.44 132.66 139.88 146.55 153.22 159.89 162.55 169.77 172.55 179.22 186.44 192 199.78 206.45 213.67 220.89 227.56 234.23 236.89 239.82 242.48 245.26 252.48 259.7 265.26 272.48 279.7 282.48 289.7 297.48 300.14 307.36 315.14 321.81 327.92 330.58 337.25 344.47 351.69 354.35 361.02 367.69 374.36 382.69 389.36 396.58\\\">IMPORTANT RENTAL-PURCHASE DISCLOSURES – INCLUDING COST AND PAYMENT</text></g><clipPath id=\\\"clip0-10\\\"><path d=\\\"M 35 81 L 574 81 L 574 530 L 35 530 L 35 81 z \\\"/></clipPath><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 517.619)\\\" x=\\\"0 6.11 13.33 16.11\\\">THIS</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 63.4783 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 68.7771 517.619)\\\" x=\\\"0 6.11 13.33 20 27.22 33.89 40.56 47.78 53.89 56.67 64.45\\\">TRANSACTION</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 140.447 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 145.7457 517.619)\\\" x=\\\"0 2.78\\\">IS</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 155.194 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 160.4927 517.619)\\\" x=\\\"0\\\">A</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 167.1627 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 172.4614 517.619)\\\" x=\\\"0 5.56 12.23 18.9 25.57\\\">LEASE</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 204.7026 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.0014 517.619)\\\" x=\\\"0 6.67 14.45 21.67 28.34 35.01 43.34 50.01 57.23\\\">AGREEMENT</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 273.3412 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 278.64 517.619)\\\" x=\\\"0 9.44 12.22 18.33\\\">WITH</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 304.1868 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 309.4856 517.619)\\\" x=\\\"0 7.78 14.45 20.56 23.34 31.12\\\">OPTION</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 347.8206 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 353.1193 517.619)\\\" x=\\\"0 6.11\\\">TO</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 367.006 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 372.3048 517.619)\\\" x=\\\"0 6.67 13.89 21.11 28.33 35.55 42.22 48.89 55.56\\\">PURCHASE.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.6495 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 435.9483 517.619)\\\" x=\\\"0 6.67 14.45\\\">YOU</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 457.6182 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 462.9169 517.619)\\\" x=\\\"0 9.44 12.22 17.78\\\">WILL</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.2568 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 491.5555 517.619)\\\" x=\\\"0 7.22 15\\\">NOT</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.6639 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 517.9627 517.619)\\\" x=\\\"0 7.78 17.22\\\">OWN</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 542.4012 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 547.6999 517.619)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 517.619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 506.3006)\\\" x=\\\"0 6.67 13.89 21.67 28.34 35.01 42.23 48.34\\\">PROPERTY</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 95.7098 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 100.6852 506.3006)\\\" x=\\\"0 7.22 14.44 20.55 23.33\\\">UNTIL</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 129.5768 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 134.5522 506.3006)\\\" x=\\\"0 6.67 14.45\\\">YOU</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 156.2221 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 161.1975 506.3006)\\\" x=\\\"0 7.22 13.89 20.56\\\">HAVE</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 188.429 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 193.4044 506.3006)\\\" x=\\\"0 6.67 13.34 16.12\\\">PAID</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 216.7442 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 221.7197 506.3006)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 241.7197 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 246.6951 506.3006)\\\" x=\\\"0 6.11 13.89 20 26.67\\\">TOTAL</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 278.9216 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 283.8971 506.3006)\\\" x=\\\"0 6.67 13.34 20.01 28.34 35.01 42.23 48.34\\\">PAYMENTS</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.9068 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 343.8822 506.3006)\\\" x=\\\"0 7.22 13.89 21.11 27.78 34.45 41.12 47.79 55.01\\\">NECESSARY</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 405.5668 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 410.5422 506.3006)\\\" x=\\\"0 6.11\\\">TO</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 424.4289 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 429.4044 506.3006)\\\" x=\\\"0 6.67 13.89 21.67 28.89 31.67 38.89\\\">ACQUIRE</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.9659 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 479.9413 506.3006)\\\" x=\\\"0 7.78 17.22 24.44 31.11 38.33 45 52.22 55\\\">OWNERSHIP</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 541.6112 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 546.5866 506.3006)\\\" x=\\\"0 6.67 13.89\\\">AND</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 506.3006)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 494.9822)\\\" x=\\\"0 7.22 15 23.33 30 35.56\\\">COMPLY</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 82.9314 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 86.988 494.9822)\\\" x=\\\"0 9.44 12.22 18.33\\\">WITH</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 112.5348 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 116.5913 494.9822)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.5913 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 140.6478 494.9822)\\\" x=\\\"0 7.78 17.22 24.44 31.11 38.33 45 52.22 55\\\">OWNERSHIP</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 202.3178 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 206.3743 494.9822)\\\" x=\\\"0 6.11 12.78 20 28.33 35\\\">TERMS.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 244.1526 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 248.2091 494.9822)\\\" x=\\\"0 6.67 14.45\\\">YOU</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 269.879 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 273.9355 494.9822)\\\" x=\\\"0 6.67 13.89\\\">ARE</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 294.497 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 298.5535 494.9822)\\\" x=\\\"0 7.22 15\\\">NOT</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.6619 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 323.7184 494.9822)\\\" x=\\\"0 7.78 14.45 20.01 22.79 30.57 37.24 43.35 50.02\\\">OBLIGATED</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.9548 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 385.0113 494.9822)\\\" x=\\\"0 6.11\\\">TO</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 398.898 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 402.9545 494.9822)\\\" x=\\\"0 6.67 13.34\\\">PAY</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 422.9643 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 427.0208 494.9822)\\\" x=\\\"0\\\">A</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 433.6907 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 437.7472 494.9822)\\\" x=\\\"0 6.67 13.89\\\">SUM</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 459.9689 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 464.0254 494.9822)\\\" x=\\\"0 7.78 15 21.67 28.34 34.45 41.12\\\">GREATER</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.3652 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 516.4217 494.9822)\\\" x=\\\"0 6.11 13.33 20\\\">THAN</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 543.6434 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 547.6999 494.9822)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 494.9822)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 483.6639)\\\" x=\\\"0 6.11 13.89 20 26.67 32.23 34.89 41.56 48.23 54.9 63.23 69.9 77.12 83.23 89.9 92.56 98.67 106.45 113.67 116.33 123 125.66 132.33 135.11 142.33 150.11 155.67 162.34 165 170.56 177.23 183.9 190.57 197.24 199.9 206.01 212.68 219.9 228.23\\\">TOTAL PAYMENTS FOR A SINGLE LEASE TERM.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 470.3455)\\\" x=\\\"0 7.22 12.78 17.78\\\">Cash</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 64.0447 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 67.2085 470.3455)\\\" x=\\\"0 6.67 10 12.28 17.28\\\">Price</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 90.0503 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 93.214 470.3455)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 101.5539 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 104.7176 470.3455)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 145.2889 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.4527 470.3455)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 165.6841 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 168.8478 470.3455)\\\" x=\\\"0 7.22 12.78 17.78\\\">Cash</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 192.1926 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 195.3563 470.3455)\\\" x=\\\"0 6.67 10 12.28 17.28\\\">Price</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 218.1981 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 221.3619 470.3455)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 229.7017 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 232.8655 470.3455)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 246.7668 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 249.9306 470.3455)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 287.7235 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 290.8873 470.3455)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 298.1676 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 301.3313 470.3455)\\\" x=\\\"0\\\">$</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 306.8928 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 310.0566 470.3455)\\\" x=\\\"0 5.56 8.34 13.9 19.46 25.02 27.8 33.36 38.92\\\">3,872.00,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.7607 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 354.9244 470.3455)\\\" x=\\\"0 7.22 12.78 15.06 20.06\\\">which</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.5494 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 383.7132 470.3455)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 390.9935 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 394.1572 470.3455)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 408.0586 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 411.2223 470.3455)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 444.5768 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 447.7406 470.3455)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 463.8636 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 467.0274 470.3455)\\\" x=\\\"0 7.22 12.78 18.34 20.62\\\">would</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 493.2139 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 496.3776 470.3455)\\\" x=\\\"0 5.56 11.12 16.12\\\">have</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 518.0622 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 521.226 470.3455)\\\" x=\\\"0 5.56 11.12 13.4\\\">paid</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 540.1908 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 543.3545 470.3455)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 548.4131 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 551.5769 470.3455)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 470.3455)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 459.0271)\\\" x=\\\"0 5.56 11.12\\\">had</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 57.3846 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 60.336 459.0271)\\\" x=\\\"0 5.56 11.12 14.45 19.45 25.01 30.57 35.57 41.13\\\">purchased</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 107.0352 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 109.9866 459.0271)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 123.888 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 126.8394 459.0271)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 164.6324 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 167.5838 459.0271)\\\" x=\\\"0 2.78 6.11 11.67\\\">from</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 187.5838 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 190.5352 459.0271)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 204.4366 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 207.388 459.0271)\\\" x=\\\"0 7.22 12.78 15.56 21.12 23.4 25.68 31.24\\\">Retailer</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 241.9632 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 244.9147 459.0271)\\\" x=\\\"0 7.22 9.5 12.28\\\">with</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.7565 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 265.7079 459.0271)\\\" x=\\\"0 5 10.56 15.56\\\">cash</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 286.8309 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 289.7824 459.0271)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 300.9054 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 303.8568 459.0271)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 317.7582 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 320.7096 459.0271)\\\" x=\\\"0 5.56 11.12\\\">day</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 336.8327 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 339.7841 459.0271)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.1239 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 351.0754 459.0271)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 366.6955 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 369.6469 459.0271)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 421.3412 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 424.2927 459.0271)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 25.68 27.96 32.96\\\">inclusive</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 462.8181 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 465.7695 459.0271)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.1093 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 477.0607 459.0271)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 493.1838 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 496.1352 459.0271)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64\\\">applicable</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 541.3452 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 544.2966 459.0271)\\\" x=\\\"0 5 10.56 12.84 18.4\\\">sales</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 459.0271)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 447.7088)\\\" x=\\\"0 5.56 8.89 11.55 17.11 22.11 27.67 30.33 33.11 38.67 43.67\\\">or use tax.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 434.3904)\\\" x=\\\"0 6.11 11.67 14.45 20.01\\\">Total</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 62.99 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 66.9187 434.3904)\\\" x=\\\"0 7.22 12.78 17.78\\\">Cost</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 87.4803 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 91.409 434.3904)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 99.7488 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 103.6775 434.3904)\\\" x=\\\"0 5.56 11.12 16.68 21.68 27.24\\\">Lease;</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 133.7019 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 137.6306 434.3904)\\\" x=\\\"0 6.67 12.23 15.56 17.84 23.4 28.96 31.24\\\">Periodic</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 173.8758 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 177.8045 434.3904)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46 44.46\\\">Payments;</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.0457 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 228.9744 434.3904)\\\" x=\\\"0 6.67 10 15.56 20.56 26.12 31.12 36.12 38.4 43.96\\\">Processing</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 278.5007 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 282.4295 434.3904)\\\" x=\\\"0 6.11 11.67 17.23\\\">Fee;</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.4392 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 306.3679 434.3904)\\\" x=\\\"0 2.78 8.34 10.62 13.4 15.68 21.24\\\">Initial</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.8884 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 333.8171 434.3904)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46\\\">Payment;</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 376.0584 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 379.9871 434.3904)\\\" x=\\\"0 7.22 12.78 17.78\\\">Cost</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 400.5486 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 404.4773 434.3904)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 412.8171 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 416.7459 434.3904)\\\" x=\\\"0 7.22 12.78 18.34 21.12 26.68 28.96\\\">Rental.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 448.489 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 452.4177 434.3904)\\\" x=\\\"0 7.22 12.78 15.06 20.62 25.62\\\">Unless</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 483.0427 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 486.9714 434.3904)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 503.0945 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 507.0232 434.3904)\\\" x=\\\"0 5.56 10.56 16.12 19.45 24.45 26.73 31.73\\\">exercise</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 544.3181 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 548.2468 434.3904)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 434.3904)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 423.0721)\\\" x=\\\"0 5.56 11.12 16.68 20.01 27.23 32.79\\\">100-Day</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 78.4979 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.2541 423.0721)\\\" x=\\\"0 7.78 13.34 16.12 18.4 23.96\\\">Option</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 110.7756 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 113.5318 423.0721)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 122.4234 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 125.1797 423.0721)\\\" x=\\\"0 6.67 12.23 15.56 17.84\\\">Early</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 148.0215 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 150.7777 423.0721)\\\" x=\\\"0 6.67 12.23 17.23 20.56 28.34 33.9\\\">Buy-Out</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 187.4574 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 190.2136 423.0721)\\\" x=\\\"0 7.78 13.34 16.12 18.4 23.96\\\">Option</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 219.7351 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 222.4914 423.0721)\\\" x=\\\"0 5 10.56\\\">set</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 235.8312 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 238.5875 423.0721)\\\" x=\\\"0 2.78 8.34 11.67 14.45\\\">forth</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 258.5972 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 261.3535 423.0721)\\\" x=\\\"0 5.56 11.12 13.4 18.96 26.18\\\">below,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.3183 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 293.0746 423.0721)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 306.9759 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 309.7322 423.0721)\\\" x=\\\"0 3.33 9.44 15 17.78 23.34\\\">“Total</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.3523 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.1086 423.0721)\\\" x=\\\"0 7.22 12.78 17.78 20.56\\\">Cost”</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 362.0002 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 364.7564 423.0721)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 373.0962 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 375.8525 423.0721)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 389.7539 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 392.5101 423.0721)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.3031 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 433.0593 423.0721)\\\" x=\\\"0 5.56 11.12 16.68 22.24\\\">under</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 458.6355 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 461.3917 423.0721)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 477.0119 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 479.7681 423.0721)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 528.6841 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 531.4404 423.0721)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 545.5029 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 548.2591 423.0721)\\\" x=\\\"0 5.56\\\">be</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.3822 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 562.1384 423.0721)\\\" x=\\\"0\\\">$</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 423.0721)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 411.7537)\\\" x=\\\"0 5.56 8.34 13.9 19.46 25.02 27.8 33.36 38.92\\\">3,965.32.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 82.4041 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 85.187 411.7537)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 102.4184 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 105.2013 411.7537)\\\" x=\\\"0 6.11 11.67 14.45 20.01\\\">Total</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 127.4913 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 130.2742 411.7537)\\\" x=\\\"0 7.22 12.78 17.78\\\">Cost</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 150.8357 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 153.6186 411.7537)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.8989 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 163.6817 411.7537)\\\" x=\\\"0 5.56 11.12 16.12 21.68\\\">based</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 190.9279 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 193.7107 411.7537)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 204.8338 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 207.6166 411.7537)\\\" x=\\\"0 5.56\\\">an</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 218.7397 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 221.5226 411.7537)\\\" x=\\\"0 2.78 8.34 10.62 13.4 15.68 21.24\\\">Initial</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.0431 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 247.8259 411.7537)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68\\\">Payment</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 287.2888 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 290.0717 411.7537)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 298.4115 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 301.1944 411.7537)\\\" x=\\\"0\\\">$</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 306.7559 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 309.5388 411.7537)\\\" x=\\\"0 5.56 8.34 13.9\\\">0.00</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.0017 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 331.7846 411.7537)\\\" x=\\\"0 5.56 11.12 16.12 21.68 27.24 29.52\\\">payable</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 366.8725 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 369.6554 411.7537)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.7784 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 383.5613 411.7537)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 397.4626 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 400.2455 411.7537)\\\" x=\\\"0 5.56 11.12 13.9\\\">date</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.7084 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 422.4913 411.7537)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.8311 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 433.614 411.7537)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 449.2341 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 452.017 411.7537)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 500.933 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 503.7159 411.7537)\\\" x=\\\"0 3.33 6.11 11.67\\\">(the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 520.9473 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 523.7302 411.7537)\\\" x=\\\"0 3.33 10.55 16.11 21.67 27.23 29.51 32.84 38.4\\\">“Required</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 411.7537)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 400.4353)\\\" x=\\\"0 2.78 8.34 10.62 13.4 15.68 21.24\\\">Initial</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 64.2205 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 68.4622 400.4353)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46 42.79 46.12\\\">Payment”),</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 117.3635 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 121.6052 400.4353)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 126.6638 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 130.9055 400.4353)\\\" x=\\\"0 5.56 11.12 16.12\\\">any,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 149.8068 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 154.0485 400.4353)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 159.61 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 163.8517 400.4353)\\\" x=\\\"0 5.56 8.89 14.45 19.45 25.01 30.01 35.01 37.29 42.85\\\">processing</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 212.2697 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 216.5114 400.4353)\\\" x=\\\"0 2.78 8.34\\\">fee</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 230.4127 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 234.6544 400.4353)\\\" x=\\\"0 3.33 10.55 16.11 18.39 23.39\\\">(which</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 263.6095 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 267.8511 400.4353)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.1314 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 279.3731 400.4353)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 293.2745 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 297.5161 400.4353)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 303.0777 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 307.3193 400.4353)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 345.6738 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 349.9155 400.4353)\\\" x=\\\"0 2.78 8.34 15.56 21.12 24.45 30.01\\\">towards</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 384.9301 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 389.1718 400.4353)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.0732 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.3149 400.4353)\\\" x=\\\"0 5 10.56 15.56\\\">cost</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 425.6547 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 429.8964 400.4353)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 438.2362 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 442.4779 400.4353)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 461.931 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 466.1727 400.4353)\\\" x=\\\"0 3.33 8.89 14.45 17.23 22.79 25.07\\\">rental)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 494.576 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 498.8177 400.4353)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 507.1575 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 511.3992 400.4353)\\\" x=\\\"0\\\">$</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 516.9607 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 521.2024 400.4353)\\\" x=\\\"0 5.56 11.12 13.9 19.46\\\">10.00</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 546.2268 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 550.4685 400.4353)\\\" x=\\\"0 3.33 6.11 11.67\\\">(the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 400.4353)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 389.117)\\\" x=\\\"0 3.33 10 13.33 18.89 23.89 29.45 34.45 39.45 41.73 47.29\\\">“Processing</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 93.5564 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 97.3241 389.117)\\\" x=\\\"0 6.11 11.67 17.23 20.56 23.89\\\">Fee”),</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 123.9941 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 127.7617 389.117)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 132.8203 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 136.588 389.117)\\\" x=\\\"0 5.56 11.12 16.12\\\">any,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 155.4894 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 159.2571 389.117)\\\" x=\\\"0 5.56\\\">26</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 170.3801 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 174.1478 389.117)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.74 24.02 29.58 35.14 40.7\\\">additional</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 217.1361 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 220.9038 389.117)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57 38.35\\\">payments</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 264.2583 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 268.026 389.117)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.3658 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 280.1335 389.117)\\\" x=\\\"0\\\">$</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 285.695 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 289.4627 389.117)\\\" x=\\\"0 5.56 8.34 13.9\\\">6.97</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.9256 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 312.6933 389.117)\\\" x=\\\"0 3.33 8.89\\\">(as</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 326.5849 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 330.3526 389.117)\\\" x=\\\"0 5.56 11.12 13.4 18.96 23.96 26.74 32.3 37.86\\\">adjusted,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 370.9971 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 374.7648 389.117)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.3263 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 384.094 389.117)\\\" x=\\\"0 3.33 10.55 16.11 21.67 27.23 29.51 35.07\\\">“Regular</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 422.5022 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 426.2699 389.117)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46 42.79\\\">Payment”)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 472.393 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 476.1607 389.117)\\\" x=\\\"0 5.56 11.12 16.12 21.68\\\">each,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 500.6235 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 504.3912 389.117)\\\" x=\\\"0 5.56 11.12 16.12 21.68 27.24 29.52\\\">payable</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 539.4791 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 543.2468 389.117)\\\" x=\\\"0 5.56 10.56 16.12 19.45\\\">every</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 389.117)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 377.7986)\\\" x=\\\"0 5.56 8.34 13.9 19.46\\\">other</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 63.493 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 66.4195 377.7986)\\\" x=\\\"0 7.22 12.78 18.34 23.34\\\">week.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 92.5426 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 95.4692 377.7986)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 112.7006 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 115.6272 377.7986)\\\" x=\\\"0 6.11 11.67 14.45 20.01\\\">Total</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 137.9172 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 140.8438 377.7986)\\\" x=\\\"0 7.22 12.78 17.78\\\">Cost</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 161.4053 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 164.3319 377.7986)\\\" x=\\\"0 5.56 7.84 12.84\\\">also</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 182.7352 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 185.6617 377.7986)\\\" x=\\\"0 3.33 8.89 11.67 13.95 19.51 24.51 27.29\\\">reflects</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 217.9518 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 220.8784 377.7986)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 237.0014 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 239.928 377.7986)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.74 24.02 29.58 35.14 40.7\\\">additional</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 282.9163 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 285.8428 377.7986)\\\" x=\\\"0 5 10.56 15.56\\\">cash</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 306.9659 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 309.8924 377.7986)\\\" x=\\\"0 5.56 11.12 13.4\\\">paid</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 328.8573 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 331.7839 377.7986)\\\" x=\\\"0 2.78 8.34 13.9 19.46 24.46\\\">today,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.0251 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 361.9516 377.7986)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 367.0102 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 369.9368 377.7986)\\\" x=\\\"0 5.56 11.12 16.12\\\">any.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.8382 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 391.7647 377.7986)\\\" x=\\\"0 6.67 12.23 17.79\\\">Your</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 412.8878 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 415.8143 377.7986)\\\" x=\\\"0 2.78 8.34 11.12 16.68\\\">total</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.7743 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 437.7009 377.7986)\\\" x=\\\"0 2.28 7.84 10.12 12.9 15.18 20.74\\\">initial</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 460.7233 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 463.6499 377.7986)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 502.0044 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 504.931 377.7986)\\\" x=\\\"0 5.56 11.12\\\">due</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.6155 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 524.5421 377.7986)\\\" x=\\\"0 2.78 8.34 13.9 19.46\\\">today</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.005 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 551.9316 377.7986)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.2118 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 562.1384 377.7986)\\\" x=\\\"0\\\">$</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 377.7986)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 366.4803)\\\" x=\\\"0 5.56 8.34 13.9 19.46\\\">0.00,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 62.9412 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 66.7951 366.4803)\\\" x=\\\"0 7.22 12.78 15.06 20.06\\\">which</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 92.4201 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 96.274 366.4803)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 103.5543 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 107.4082 366.4803)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 121.3096 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 125.1635 366.4803)\\\" x=\\\"0 5 10.56\\\">sum</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 144.0551 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 147.909 366.4803)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 156.2488 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 160.1027 366.4803)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 174.0041 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 177.858 366.4803)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 29.51 35.07\\\">Required</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 218.4976 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 222.3515 366.4803)\\\" x=\\\"0 2.78 8.34 10.62 13.4 15.68 21.24\\\">Initial</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.872 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 249.7259 366.4803)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46\\\">Payment,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.9672 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 295.8211 366.4803)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 300.8797 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 304.7336 366.4803)\\\" x=\\\"0 5.56 11.12 16.12\\\">any,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 323.6349 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 327.4888 366.4803)\\\" x=\\\"0 6.67 10 15.56 20.56 26.12 31.12 36.12 38.4 43.96\\\">Processing</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 377.0152 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 380.8691 366.4803)\\\" x=\\\"0 6.11 11.67 17.23\\\">Fee,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 400.8789 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 404.7328 366.4803)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 409.7914 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 413.6453 366.4803)\\\" x=\\\"0 5.56 11.12 16.12\\\">any,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 432.5466 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 436.4005 366.4803)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 453.0851 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 456.939 366.4803)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 473.062 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 476.916 366.4803)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.74 24.02 29.58 35.14 40.7\\\">additional</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 519.9042 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 523.7581 366.4803)\\\" x=\\\"0 5 10.56 15.56\\\">cash</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 544.8812 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 548.7351 366.4803)\\\" x=\\\"0 5.56 11.12 13.4\\\">paid</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 366.4803)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 355.1619)\\\" x=\\\"0 2.78 8.34 13.9 19.46 24.46\\\">today.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 67.9412 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 70.9372 355.1619)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 76.4938 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 79.4898 355.1619)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 95.6128 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 98.6088 355.1619)\\\" x=\\\"0 5.56\\\">do</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 109.7318 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 112.7278 355.1619)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 126.6291 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 129.6251 355.1619)\\\" x=\\\"0 3.33 8.89 17.22 19.5\\\">remit</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 151.9054 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 154.9013 355.1619)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 171.0244 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 174.0203 355.1619)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64\\\">applicable</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 219.2303 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 222.2262 355.1619)\\\" x=\\\"0 6.67 10 15.56 20.56 26.12 31.12 36.12 38.4 43.96\\\">Processing</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 271.7526 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 274.7486 355.1619)\\\" x=\\\"0 6.11 11.67\\\">Fee</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.98 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 294.976 355.1619)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 303.8676 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 306.8635 355.1619)\\\" x=\\\"0 2.78 8.34 10.62 13.4 15.68 21.24\\\">Initial</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 330.3841 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 333.38 355.1619)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68\\\">Payment</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 372.8429 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 375.8388 355.1619)\\\" x=\\\"0 5.56\\\">at</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 384.1787 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 387.1747 355.1619)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 401.076 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 404.072 355.1619)\\\" x=\\\"0 2.78 5.06 13.39\\\">time</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 423.0222 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 426.0181 355.1619)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.358 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 437.3539 355.1619)\\\" x=\\\"0 5.56 11.12 14.45 19.45 25.01 30.57 35.57 41.13\\\">purchase,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 481.2699 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 484.2659 355.1619)\\\" x=\\\"0 2.28\\\">it</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.3245 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 492.3205 355.1619)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.6007 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 502.5967 355.1619)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24 31.8\\\">included</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 539.9649 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 542.9608 355.1619)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 550.8026 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.7986 355.1619)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 355.1619)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 343.8436)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 75.7781 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 78.9772 343.8436)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46\\\">Payments</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 123.44 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 126.6391 343.8436)\\\" x=\\\"0 5 10.56\\\">set</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 139.9789 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 143.1779 343.8436)\\\" x=\\\"0 2.78 8.34 11.67 14.45\\\">forth</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 163.1877 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 166.3868 343.8436)\\\" x=\\\"0 5.56 11.12 16.68 21.68 27.24\\\">above.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 196.4112 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 199.6102 343.8436)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 216.8416 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 220.0407 343.8436)\\\" x=\\\"0 6.11 11.67 14.45 20.01\\\">Total</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 242.3307 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 245.5297 343.8436)\\\" x=\\\"0 7.22 12.78 17.78\\\">Cost</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 266.0913 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 269.2903 343.8436)\\\" x=\\\"0 5.56 11.12 16.68\\\">does</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.9749 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 294.1739 343.8436)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.0753 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 311.2743 343.8436)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24\\\">include</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 343.0809 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 346.28 343.8436)\\\" x=\\\"0 2.28 7.84 10.62\\\">late</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 362.4616 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 365.6606 343.8436)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57 38.35\\\">payment,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 406.7935 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 409.9925 343.8436)\\\" x=\\\"0 5.56 11.12 16.68 21.68 27.24 30.02 32.8 35.08 40.08 42.36 47.92 53.48\\\">nonsufficient</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.2571 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 469.4562 343.8436)\\\" x=\\\"0 2.78 8.34 13.9 19.46 24.46\\\">funds,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 496.6974 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 499.8964 343.8436)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 27.3 30.08\\\">default,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 532.7577 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 535.9568 343.8436)\\\" x=\\\"0 5.56 7.84 12.84 17.84 23.4 28.96\\\">pickup,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 343.8436)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 332.5252)\\\" x=\\\"0 3.33 8.89 11.17 16.73 21.73 24.51 30.07 32.85 38.41 46.74 52.3 57.86 60.64\\\">reinstatement,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 104.1228 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 108.8966 332.5252)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 117.7882 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 122.5619 332.5252)\\\" x=\\\"0 5.56 8.34 13.9 19.46\\\">other</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 145.3549 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 150.1286 332.5252)\\\" x=\\\"0 2.78 8.34 13.9 18.9\\\">fees,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 171.8083 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 176.5821 332.5252)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 181.6407 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 186.4144 332.5252)\\\" x=\\\"0 5.56 11.12 16.12\\\">any,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 205.3158 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.0895 332.5252)\\\" x=\\\"0 5.56 7.84 12.84 17.84 20.12 25.68 30.68 36.24\\\">disclosed</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 251.8962 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 256.6699 332.5252)\\\" x=\\\"0 5.56 11.12 13.4 18.96 26.18\\\">below.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 285.6347 332.5252)\\\" x=\\\"0 4.7737\\\">  </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 295.1822 332.5252)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.4137 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 317.1874 332.5252)\\\" x=\\\"0 5 10.56 15.56\\\">cost</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.5273 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 340.301 332.5252)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.6409 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 353.4146 332.5252)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 372.8677 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 377.6415 332.5252)\\\" x=\\\"0 3.33 8.89 14.45 17.23 22.79\\\">rental</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.7147 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.4884 332.5252)\\\" x=\\\"0 3.33 6.66 13.88 19.44 24.44\\\">(“Cost</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.7101 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 439.4839 332.5252)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.8237 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 452.5975 332.5252)\\\" x=\\\"0 7.22 12.78 18.34 21.12 26.68 28.96 32.29\\\">Rental”)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 488.2225 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 492.9962 332.5252)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 500.2765 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 505.0502 332.5252)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 518.9516 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 523.7253 332.5252)\\\" x=\\\"0 5.56 7.84 10.62 13.4 18.96 22.29 27.85 33.41 38.41\\\">difference</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 332.5252)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 321.2068)\\\" x=\\\"0 5.56 11.12 13.9 21.12 26.68 32.24 37.8 40.46 43.24 48.8 54.36 57.02 63.13 68.69 71.47 77.03 79.31 81.97 89.19 94.75 99.75 102.53 105.19 110.75 116.31 121.87 124.53 131.75 137.31 142.31 147.87 150.53 157.2 160.53 162.81 167.81 173.37 176.15 178.81 184.37 189.93 195.49 198.15 205.37 207.65 209.93 212.21 214.87 220.43 225.99 228.65 234.21 236.87 242.43 247.99 250.77 256.33 261.89\\\">between the Total Cost and Cash Price, and will be $ 93.32.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 309.8885)\\\" x=\\\"0 6.67 11.67 17.23 22.79 27.79 30.57 36.13\\\">Expected</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 82.3943 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 86.3823 309.8885)\\\" x=\\\"0 7.22 12.78 15.06 17.34 22.34 27.9 31.23\\\">Delivery</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 122.6177 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 126.6057 309.8885)\\\" x=\\\"0 7.22 12.78 15.56 21.12\\\">Date;</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 150.507 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 154.495 309.8885)\\\" x=\\\"0 6.11 8.39 11.72 16.72\\\">First</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 173.9921 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 177.9801 309.8885)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 213.0582 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 217.0462 309.8885)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46\\\">Payment.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.2874 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 263.2754 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 267.2634 309.8885)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 284.4948 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 288.4828 309.8885)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 29.51 35.07\\\">Required</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.1225 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 333.1105 309.8885)\\\" x=\\\"0 2.78 8.34 10.62 13.4 15.68 21.24\\\">Initial</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 356.631 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 360.619 309.8885)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46\\\">Payment,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.8602 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 406.8482 309.8885)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 411.9068 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 415.8947 309.8885)\\\" x=\\\"0 5.56 11.12 16.12\\\">any,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.7961 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 438.7841 309.8885)\\\" x=\\\"0 5 10.56 15.56 21.12 24.45\\\">covers</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.2372 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 472.2252 309.8885)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.1266 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 490.1146 309.8885)\\\" x=\\\"0 3.33 8.89 14.45 17.23 22.79\\\">rental</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 515.1878 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 519.1758 309.8885)\\\" x=\\\"0 5.56 11.12 14.45 16.73 22.29\\\">period</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 547.0323 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 551.0202 309.8885)\\\" x=\\\"0 2.78 8.34 13.9\\\">that</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 309.8885)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 298.5701)\\\" x=\\\"0 5.56 11.12 16.68 18.96 24.52\\\">begins</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 70.2264 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 73.3394 298.5701)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 84.4625 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 87.5755 298.5701)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 101.4769 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 104.59 298.5701)\\\" x=\\\"0 5.56 11.12 13.9\\\">date</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 124.0529 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 127.166 298.5701)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 143.289 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 146.4021 298.5701)\\\" x=\\\"0 3.33 8.89 13.89 19.45 21.73 26.73\\\">receive</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 178.697 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 181.8101 298.5701)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 195.7114 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 198.8245 298.5701)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 236.6175 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 239.7305 298.5701)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.4151 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 259.5282 298.5701)\\\" x=\\\"0 5.56 11.12 16.68\\\">ends</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.2128 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 284.3258 298.5701)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 295.4489 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 298.562 298.5701)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 318.0151 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 321.1281 298.5701)\\\" x=\\\"0 2.78 5.06 8.39 13.39\\\">first</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 337.2951 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 340.4082 298.5701)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.4863 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 378.5994 298.5701)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68\\\">Payment</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 418.0623 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 421.1754 298.5701)\\\" x=\\\"0 5.56 11.12 13.9 19.46\\\">date.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 443.4166 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 446.5297 298.5701)\\\" x=\\\"0 6.67 12.23 17.79\\\">Your</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.6527 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 470.7658 298.5701)\\\" x=\\\"0 2.78 5.06 8.39 13.39\\\">first</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.9328 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 490.0459 298.5701)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 525.124 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 528.237 298.5701)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68\\\">Payment</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 298.5701)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 287.2518)\\\" x=\\\"0 5.56 11.12 13.9\\\">date</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.1629 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 63.9277 287.2518)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 77.9902 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.7549 287.2518)\\\" x=\\\"0 5.56\\\">be</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 92.878 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 96.6428 287.2518)\\\" x=\\\"0 5.56\\\">at</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 104.9826 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 108.7474 287.2518)\\\" x=\\\"0 2.28 7.84 13.4 18.4\\\">least</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 129.929 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 133.6938 287.2518)\\\" x=\\\"0 5 10.56 15.56 21.12\\\">seven</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.3784 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 164.1432 287.2518)\\\" x=\\\"0 5.56 11.12 16.12\\\">days</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 185.2662 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 189.031 287.2518)\\\" x=\\\"0 5.56 8.34 11.12 16.68\\\">after</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.0407 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 212.8055 287.2518)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 226.7069 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 230.4717 287.2518)\\\" x=\\\"0 2.28 7.84 10.62 16.18\\\">later</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 249.9834 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 253.7482 287.2518)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.088 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 265.8528 287.2518)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 27.8 33.36 38.92 44.48\\\">07/24/2020</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 315.9016 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 319.6664 287.2518)\\\" x=\\\"0 3.33 5.61\\\">(i)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 328.6068 287.2518)\\\" x=\\\"0 3.7648\\\">  </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 336.1364 287.2518)\\\" x=\\\"0 3.33 6.11 11.67\\\">(the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 353.3678 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 357.1326 287.2518)\\\" x=\\\"0 3.33 10 15 20.56 26.12 31.12 33.9 39.46\\\">“Expected</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.157 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 405.9218 287.2518)\\\" x=\\\"0 7.22 12.78 15.06 17.34 22.34 27.9 31.23\\\">Delivery</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 442.1572 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 445.9219 287.2518)\\\" x=\\\"0 7.22 12.78 15.56 21.12 24.45 27.78\\\">Date”),</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 476.4835 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 480.2482 287.2518)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 496.9328 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 500.6976 287.2518)\\\" x=\\\"0 3.33 5.61 7.89\\\">(ii)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 511.9183 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 515.6831 287.2518)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.5844 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 533.3492 287.2518)\\\" x=\\\"0 5.56 11.12 13.9\\\">date</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.8121 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 556.5769 287.2518)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 287.2518)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 275.9334)\\\" x=\\\"0 7.22 12.78 15.06 20.06 25.62 28.28 31.06 36.62 42.18 44.84 51.51 54.84 60.4 65.96 71.52 74.85 77.63 82.63 85.29 87.57 92.57 95.23 100.79 104.12 109.68 114.68 116.96 122.52 128.08 133.64 136.3 141.86 145.19 147.85 153.41 158.97 161.25 163.53 168.53 174.09 177.42 182.98 188.54 191.2 193.98 199.54 202.2 207.2 212.76 218.32\\\">which the Property is provided or delivered to you.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 264.615)\\\" x=\\\"0 5.56 11.12 16.68 20.01 27.23 32.79\\\">100-Day</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 78.4979 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.9917 264.615)\\\" x=\\\"0 7.78 13.34 16.12 18.4 23.96 29.52\\\">Option.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 114.2915 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 117.7853 264.615)\\\" x=\\\"0 6.67\\\">At</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 127.2335 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 130.7273 264.615)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.8504 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 150.3442 264.615)\\\" x=\\\"0 2.78 5.06 13.39\\\">time</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 169.2944 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 172.7882 264.615)\\\" x=\\\"0 5.56 11.12 14.45 16.73 22.29\\\">during</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 200.6446 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 204.1385 264.615)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 218.0398 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 221.5336 264.615)\\\" x=\\\"0 2.78 5.06 8.39 13.39\\\">first</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 237.7006 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 241.1944 264.615)\\\" x=\\\"0 5.56 11.12\\\">100</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.879 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 261.3728 264.615)\\\" x=\\\"0 2.78 6.11 11.67\\\">from</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.3728 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 284.8666 264.615)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 298.768 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 302.2618 264.615)\\\" x=\\\"0 6.67 11.67 17.23 22.79 27.79 30.57 36.13\\\">Expected</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 343.9561 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 347.45 264.615)\\\" x=\\\"0 7.22 12.78 15.06 17.34 22.34 27.9 31.23\\\">Delivery</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.6853 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 387.1791 264.615)\\\" x=\\\"0 7.22 12.78 15.56 21.12\\\">Date,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 411.0805 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 414.5743 264.615)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 428.4757 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 431.9695 264.615)\\\" x=\\\"0 3.33 8.89 14.45 20.01 23.34 30.56 36.12\\\">“100-Day</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 473.0974 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 476.5912 264.615)\\\" x=\\\"0 7.78 13.34 16.12 18.4 23.96 29.52\\\">Option”</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.4428 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 512.9366 264.615)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.8 31.8\\\">applies,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 547.5215 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 551.0154 264.615)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 264.615)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 253.2967)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 56.823 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 59.7295 253.2967)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 78.6211 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.5276 253.2967)\\\" x=\\\"0 5.56 10.56 16.12 21.68 23.96 27.29\\\">acquire</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 114.384 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 117.2905 253.2967)\\\" x=\\\"0 5.56 12.78 18.34 23.9 27.23 32.23 37.79 40.07\\\">ownership</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 162.9301 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 165.8366 253.2967)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 174.1764 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 177.0829 253.2967)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 190.9843 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 193.8907 253.2967)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.6837 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 234.5901 253.2967)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.1517 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 248.0581 253.2967)\\\" x=\\\"0 5.56 11.12 16.12 18.4 23.96\\\">paying</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 277.5845 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 280.4909 253.2967)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.0525 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 293.9589 253.2967)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 307.8603 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 310.7667 253.2967)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 344.1212 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 347.0277 253.2967)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 357.5892 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 360.4957 253.2967)\\\" x=\\\"0 7.22 12.78 15.06 20.06\\\">which</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 386.1207 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 389.0271 253.2967)\\\" x=\\\"0 3.33 5.61\\\">(i)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 397.9676 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 400.874 253.2967)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 414.7754 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 417.6819 253.2967)\\\" x=\\\"0 5 10.56\\\">sum</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 436.5735 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 439.4799 253.2967)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.8198 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 450.7262 253.2967)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 464.6276 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 467.5341 253.2967)\\\" x=\\\"0 5.56 11.12\\\">100</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.2186 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 487.1251 253.2967)\\\" x=\\\"0\\\">–</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 490.0548 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 492.9612 253.2967)\\\" x=\\\"0 7.22 12.78\\\">Day</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 510.7444 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 513.6509 253.2967)\\\" x=\\\"0 6.67 15 20.56 26.12 31.68 34.46\\\">Amount,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 550.8921 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.7986 253.2967)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 253.2967)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 241.9783)\\\" x=\\\"0 6.67 10 15.56 20.56 26.12 31.12 36.12 38.4 43.96\\\">Processing</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 90.2264 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 92.924 241.9783)\\\" x=\\\"0 6.11 11.67 17.23\\\">Fee,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 112.9338 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 115.6314 241.9783)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 120.69 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 123.3877 241.9783)\\\" x=\\\"0 5.56 11.12 16.12\\\">any,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 142.289 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 144.9867 241.9783)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64\\\">applicable</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 190.1967 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 192.8943 241.9783)\\\" x=\\\"0 5 10.56 12.84 18.4\\\">sales</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 216.2976 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 218.9953 241.9783)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 227.8869 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 230.5845 241.9783)\\\" x=\\\"0 5.56 10.56\\\">use</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 246.7076 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 249.4052 241.9783)\\\" x=\\\"0 2.78 8.34 13.34 18.9 23.9\\\">taxes,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.0849 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 278.7826 241.9783)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 295.4672 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 298.1648 241.9783)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 314.2879 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 316.9855 241.9783)\\\" x=\\\"0 5.56 11.12 16.68 22.24 24.52\\\">unpaid</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 347.0734 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 349.771 241.9783)\\\" x=\\\"0 2.78 8.34 13.9\\\">fees</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 368.6724 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 371.3701 241.9783)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 384.1533 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 386.8509 241.9783)\\\" x=\\\"0 5.56 11.12 16.12\\\">have</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 408.5355 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 411.2331 241.9783)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01 30.57 36.13\\\">charged,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 450.1492 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 452.8468 241.9783)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.68 32.24\\\">exceeds</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 490.0929 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 492.7906 241.9783)\\\" x=\\\"0 3.33 5.61 7.89\\\">(ii)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 504.0113 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 506.7089 241.9783)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 520.6103 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 523.3079 241.9783)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 556.6624 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 559.3601 241.9783)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 241.9783)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 230.66)\\\" x=\\\"0 5.56 11.12 16.12 18.78 21.56 27.12 29.4 32.18 34.46 40.02 42.3 44.96 51.63 57.19 62.19 70.52 76.08 81.64 84.42 87.08 92.64 98.2 103.76 106.42 113.64 119.2 124.76 130.32 132.6 138.16 141.49 144.15 150.82 156.38 161.38 169.71 175.27 180.83 183.61 188.61 191.27 196.27 201.83 207.39 210.05 215.61 221.17 226.17 231.73 234.39 242.72 248.28 253.84 259.4 262.18 264.84 270.95 276.51 282.07 284.73 290.29 295.85 301.41 304.07 311.29 316.85 321.85 324.51 331.18 339.51 345.07 350.63 356.19 358.97 361.63 363.91 368.91 371.57 377.13 379.79 385.35 390.91 393.69 399.25 404.81\\\">any Initial Payment and Regular Payments you have made. The 100 Day Amount is $ 97.70.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 219.3416)\\\" x=\\\"0 6.67 12.23 15.56 17.84\\\">Early</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 63.5418 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 66.4605 219.3416)\\\" x=\\\"0 6.67 12.23 17.23 20.56 28.34 33.9\\\">Buy-Out</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 103.1401 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 106.0588 219.3416)\\\" x=\\\"0 7.78 13.34 16.12 18.4 23.96 29.52\\\">Option.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 138.3586 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 141.2772 219.3416)\\\" x=\\\"0 6.67 9.45 12.23 17.79\\\">After</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 162.3954 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 165.3141 219.3416)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 184.7672 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 187.6858 219.3416)\\\" x=\\\"0 5.56 11.12 16.68 20.01 27.23 32.79\\\">100-Day</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.4837 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 228.4024 219.3416)\\\" x=\\\"0 7.22 12.78 17.78\\\">Cash</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 251.7471 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 254.6657 219.3416)\\\" x=\\\"0 6.67 12.23 17.23 22.79 25.57\\\">Payoff</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 283.0153 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 285.934 219.3416)\\\" x=\\\"0 7.78 13.34 16.12 18.4 23.96\\\">Option</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 315.4555 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 318.3741 219.3416)\\\" x=\\\"0 5.56 11.12\\\">has</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 334.4972 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 337.4158 219.3416)\\\" x=\\\"0 5.56 10.56 16.12 18.4 21.73 27.29 32.85\\\">expired,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 373.0506 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 375.9693 219.3416)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 389.8706 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 392.7893 219.3416)\\\" x=\\\"0 3.33 10 15.56 18.89 21.17\\\">“Early</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 418.9611 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 421.8798 219.3416)\\\" x=\\\"0 6.67 12.23 17.23 20.56 28.34 33.9\\\">Buy-Out</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 458.5595 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 461.4781 219.3416)\\\" x=\\\"0 7.78 13.34 16.12 18.4 23.96 29.52\\\">Option”</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 494.3297 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 497.2484 219.3416)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.8\\\">applies</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.055 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 531.9737 219.3416)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 548.6582 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 551.5769 219.3416)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 219.3416)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 208.0232)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 59.5916 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 63.2372 208.0232)\\\" x=\\\"0 5.56 11.12 14.45 19.45 25.01 30.57 35.57\\\">purchase</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 104.3748 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 108.0204 208.0232)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 121.9218 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 125.5673 208.0232)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 163.3603 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 167.0058 208.0232)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 177.5674 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 181.2129 208.0232)\\\" x=\\\"0 5.56 11.12 16.12 18.4 23.96\\\">paying</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 210.7393 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 214.3849 208.0232)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 224.9464 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 228.5919 208.0232)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 242.4933 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 246.1389 208.0232)\\\" x=\\\"0 5 10.56\\\">sum</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 265.0305 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 268.676 208.0232)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 277.0159 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 280.6614 208.0232)\\\" x=\\\"0 3.33 8.89\\\">(1)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 292.8831 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 296.5286 208.0232)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.6517 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 316.2972 208.0232)\\\" x=\\\"0 5.56 11.12 16.12\\\">past</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.1986 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.8442 208.0232)\\\" x=\\\"0 5.56 11.12\\\">due</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.5287 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 359.1743 208.0232)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 394.2524 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 397.898 208.0232)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46 44.46\\\">Payments,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 445.1392 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 448.7847 208.0232)\\\" x=\\\"0 5.56 11.12 16.68 22.24 24.52\\\">unpaid</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 478.8726 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 482.5182 208.0232)\\\" x=\\\"0 2.78 8.34 13.9\\\">fees</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.4196 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 505.0651 208.0232)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.7497 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 525.3952 208.0232)\\\" x=\\\"0 5 10.56 12.84 18.4 23.4 26.18 31.74 36.74\\\">sales/use</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 208.0232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 196.7049)\\\" x=\\\"0 2.78 8.34 13.34 18.9 23.9\\\">taxes,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 67.3797 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 70.748 196.7049)\\\" x=\\\"0 3.33 8.89\\\">(2)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 82.9697 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 86.338 196.7049)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02\\\">70.00%</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 120.254 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 123.6223 196.7049)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 131.9621 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 135.3305 196.7049)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 149.2318 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 152.6001 196.7049)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 185.9546 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 189.3229 196.7049)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 199.8845 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 203.2528 196.7049)\\\" x=\\\"0 7.22 12.78 15.06 20.06\\\">which</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 228.8778 196.7049)\\\" x=\\\"0 3.3683\\\">  </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 235.6144 196.7049)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 249.5157 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 252.8841 196.7049)\\\" x=\\\"0 6.11 11.67 14.45 20.01\\\">Total</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.1741 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 278.5424 196.7049)\\\" x=\\\"0 7.22 12.78 17.78\\\">Cost</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.1039 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 302.4722 196.7049)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.68 32.24\\\">exceeds</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 339.7183 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 343.0866 196.7049)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 356.988 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 360.3563 196.7049)\\\" x=\\\"0 2.78 8.34 10.62 13.4 15.68 21.24\\\">Initial</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.8768 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 387.2451 196.7049)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46\\\">Payment,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 429.4863 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 432.8546 196.7049)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 437.9132 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 441.2815 196.7049)\\\" x=\\\"0 5.56 11.12 16.12\\\">any,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 460.1829 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 463.5512 196.7049)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 480.2358 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 483.6041 196.7049)\\\" x=\\\"0 5 10 15.56 21.12 26.68 32.24 34.52 40.08\\\">scheduled</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.2535 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 532.6218 196.7049)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 196.7049)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 185.3865)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46 44.46 47.12 49.9 55.46 58.79 64.35 69.91 75.47 81.03 83.69 86.47 92.03 97.59 100.25 105.81 111.37 114.15 119.71 122.37 127.37 132.93 138.49 141.15 146.71 151.71 157.27 160.6 165.6 167.88 172.88 178.44 181.1 186.1 191.66 197.22 200.55 203.21 208.77 214.33 217.11 219.39 224.95 230.51 233.17 238.73 244.29 249.85 252.51 255.84 261.4 264.73 267.39 272.95 278.51 284.07 286.35 288.63 293.63 299.19 304.75 307.03 312.59 315.25 320.25 325.81 328.09 333.65 338.65 341.31 346.87 350.2 352.86 358.42 363.42 368.98 371.64 374.42 379.98 384.98 390.54 395.54\\\">Payments through the date you exercise your option and (3) applicable sales or use taxes.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 174.0682)\\\" x=\\\"0 7.22 12.78 15.44 22.11 27.67 32.67 38.23 41.56 43.84 46.62 51.62 54.28 61.5 67.06 72.62 78.18 83.18 85.46 88.24 90.9 98.12 103.68 109.24 114.8 117.08 120.41 125.97 131.53 134.31 136.97 144.19 149.75 152.41 157.41 162.97 167.97 173.53 176.86 179.14 181.92 186.92 189.58 195.14 200.7 206.26 211.82 216.82 219.1 221.88 224.54 226.82 231.82 234.48 237.81 243.37 248.93 254.49 256.77 260.1 265.66 271.22 273.88 279.44 285 290.56 296.12 299.45 302.11 304.89 310.45 312.73 317.73 320.39 327.06 332.62 335.95 341.51 347.07 355.4 360.96 366.52 369.3\\\">No Security Deposit Required. No security deposit is required under this Agreement.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 162.7498)\\\" x=\\\"0 5.56 11.12 16.68 21.68\\\">Lease</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 67.9461 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 72.4996 162.7498)\\\" x=\\\"0 6.11 11.67 15 23.33\\\">Term,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 98.608 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 103.1616 162.7498)\\\" x=\\\"0 6.67 12.23 17.79 22.79 28.35 33.91 39.47 45.03 50.59\\\">Subsequent</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 156.5405 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 161.094 162.7498)\\\" x=\\\"0 6.11 11.67 15 23.33 28.33\\\">Terms;</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 192.2024 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 196.7559 162.7498)\\\" x=\\\"0 7.22 12.78 18.34 23.9 31.12 36.68 38.96\\\">Renewal.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.504 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 243.0575 162.7498)\\\" x=\\\"0 6.67 12.23 17.79\\\">Your</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 264.1806 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 268.7341 162.7498)\\\" x=\\\"0 2.28 7.84 10.12 12.9 15.18 20.74\\\">initial</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.7566 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 296.3101 162.7498)\\\" x=\\\"0 2.28 7.84 13.4 18.4\\\">lease</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 320.2749 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 324.8285 162.7498)\\\" x=\\\"0 2.78 8.34 11.67\\\">term</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 344.8285 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 349.382 162.7498)\\\" x=\\\"0 5.56 10.56 16.12 18.4 21.73 27.29\\\">expires</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 381.6769 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 386.2305 162.7498)\\\" x=\\\"0 5.56\\\">60</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 397.3535 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 401.907 162.7498)\\\" x=\\\"0 5.56 11.12 16.12\\\">days</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 423.0301 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 427.5836 162.7498)\\\" x=\\\"0 2.78 6.11 11.67\\\">from</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.5836 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 452.1372 162.7498)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.0385 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 470.5921 162.7498)\\\" x=\\\"0 2.28 7.84 10.62 16.18\\\">later</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 490.1038 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 494.6573 162.7498)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 502.9972 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 507.5507 162.7498)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.4521 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 526.0056 162.7498)\\\" x=\\\"0 6.67 11.67 17.23 22.79 27.79 30.57 36.13\\\">Expected</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 162.7498)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 151.4315)\\\" x=\\\"0 7.22 12.78 15.06 17.34 22.34 27.9 31.23\\\">Delivery</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 76.9353 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.1545 151.4315)\\\" x=\\\"0 7.22 12.78 15.56\\\">Date</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 102.2775 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 106.4967 151.4315)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 115.3883 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 119.6074 151.4315)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 133.5088 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 137.7279 151.4315)\\\" x=\\\"0 5.56 11.12 13.9\\\">date</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 157.1908 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 161.4099 151.4315)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 172.533 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 176.7521 151.4315)\\\" x=\\\"0 7.22 12.78 15.06 20.06\\\">which</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 202.3771 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 206.5963 151.4315)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 220.4976 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 224.7168 151.4315)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.5097 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 266.7289 151.4315)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 274.0091 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 278.2283 151.4315)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29 32.85\\\">provided</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 316.6463 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 320.8654 151.4315)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.757 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 333.9761 151.4315)\\\" x=\\\"0 5.56 11.12 13.4 15.68 20.68 26.24 29.57 35.13\\\">delivered</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 374.6744 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 378.8935 151.4315)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 387.2334 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 391.4525 151.4315)\\\" x=\\\"0 5 10.56 16.12\\\">you.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 410.3539 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 414.573 151.4315)\\\" x=\\\"0 7.22 12.78 15.56 17.84\\\">Until</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.6951 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 438.9142 151.4315)\\\" x=\\\"0 3.33 5.61\\\">(i)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.8546 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 452.0738 151.4315)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.1968 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 472.416 151.4315)\\\" x=\\\"0 5.56 11.12 13.9 19.46 21.74\\\">obtain</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.7206 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 503.9398 151.4315)\\\" x=\\\"0 5.56 12.78 18.34 23.9 27.23 32.23 37.79 40.07\\\">ownership</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.5794 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.7986 151.4315)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 151.4315)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 140.1131)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 78.493 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 82.2535 140.1131)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 92.815 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 96.5756 140.1131)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29 32.85\\\">provided</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 134.9936 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 138.7541 140.1131)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.5959 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 150.3565 140.1131)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 165.9766 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 169.7371 140.1131)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 221.4315 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 225.192 140.1131)\\\" x=\\\"0 3.33 5.61 7.89\\\">(ii)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 236.4127 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 240.1733 140.1131)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.2963 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 260.0569 140.1131)\\\" x=\\\"0 2.78 8.34 11.67 20 22.28 27.84 33.4 36.18\\\">terminate</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 301.8001 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 305.5606 140.1131)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 321.1807 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 324.9413 140.1131)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 373.8573 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 377.6179 140.1131)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.1794 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 391.9399 140.1131)\\\" x=\\\"0 5.56 11.12 14.45 22.78 25.06 27.84 30.62 36.18\\\">permitted</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 433.6831 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 437.4437 140.1131)\\\" x=\\\"0 5.56 11.12 14.45 20.01 25.57 31.13 36.69 42.25\\\">hereunder</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 483.0345 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 486.795 140.1131)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 503.4796 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 507.2402 140.1131)\\\" x=\\\"0 5 10.56 13.89 17.22 22.78 28.34 33.9 39.46\\\">surrender</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 550.038 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.7986 140.1131)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 140.1131)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 128.7947)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 78.493 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.5631 128.7947)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 89.4049 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 92.4749 128.7947)\\\" x=\\\"0 2.28 5.06\\\">its</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 102.5335 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 105.6036 128.7947)\\\" x=\\\"0 5.56 8.89 11.17 16.73 19.01 24.57 30.13\\\">original</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 138.0206 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 141.0907 128.7947)\\\" x=\\\"0 5 10.56 16.12 21.68 23.96 26.74 29.02 34.58 40.14\\\">condition,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 184.0155 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 187.0856 128.7947)\\\" x=\\\"0 2.28 7.84 12.84\\\">less</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 204.9274 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 207.9975 128.7947)\\\" x=\\\"0 3.33 8.89 14.45 19.45 25.01 30.57 36.13 41.69 43.97\\\">reasonable</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.5385 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 260.6086 128.7947)\\\" x=\\\"0 7.22 12.78 18.34\\\">wear</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 282.2834 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 285.3535 128.7947)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.038 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 305.1081 128.7947)\\\" x=\\\"0 2.78 8.34 13.9 17.23\\\">tear,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 325.1179 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 328.188 128.7947)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.7495 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 341.8196 128.7947)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 350.1594 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 353.2295 128.7947)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 367.1309 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 370.201 128.7947)\\\" x=\\\"0 5.56 11.12\\\">end</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 386.8855 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 389.9556 128.7947)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 398.2955 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 401.3656 128.7947)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 406.9271 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 409.9972 128.7947)\\\" x=\\\"0 2.28 7.84 13.4 18.4\\\">lease</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 433.962 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 437.0321 128.7947)\\\" x=\\\"0 2.78 8.34 11.67 20\\\">term,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 459.8104 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 462.8805 128.7947)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 471.7721 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 474.8422 128.7947)\\\" x=\\\"0 3.33 5.61 7.89 10.17\\\">(iii)</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 488.3432 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 491.4133 128.7947)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 504.1965 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 507.2666 128.7947)\\\" x=\\\"0 2.78 8.34 11.67 20 22.28 27.84 33.4 36.18\\\">terminate</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.0097 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 552.0798 128.7947)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 128.7947)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 117.4764)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 89.616 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 93.7725 117.4764)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 101.6143 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 105.7709 117.4764)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 111.3324 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 115.4889 117.4764)\\\" x=\\\"0 8.33 13.89 19.45 25.01 30.57\\\">manner</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 149.3952 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 153.5517 117.4764)\\\" x=\\\"0 5.56 11.12 14.45 22.78 25.06 27.84 30.62 36.18\\\">permitted</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 195.2948 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 199.4514 117.4764)\\\" x=\\\"0 5.56 11.12 14.45 20.01 25.57 31.13 36.69 42.25 45.58\\\">hereunder,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.8205 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 251.977 117.4764)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 267.5971 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 271.7537 117.4764)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 320.6697 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 324.8262 117.4764)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.8887 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 343.0452 117.4764)\\\" x=\\\"0 5.56 11.12 13.9 19.46 27.79 33.35 36.13 38.41 43.41 48.97 51.25 53.53\\\">automatically</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 401.5804 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 405.7369 117.4764)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 422.4215 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 426.578 117.4764)\\\" x=\\\"0 3.33 8.89 14.45 20.01 25.57 28.35 33.91 39.47 41.75\\\">repeatedly</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 473.3358 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 477.4923 117.4764)\\\" x=\\\"0 3.33 8.89 14.45 20.01\\\">renew</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 504.7287 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 508.8852 117.4764)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 520.5551 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 524.7116 117.4764)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.74 24.02 29.58 35.14 40.7\\\">additional</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 117.4764)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 106.158)\\\" x=\\\"0 2.28 7.84 13.4 18.4 23.96 26.62 29.4 34.96 38.29 46.62 51.62 54.4 57.06 62.62 68.18 73.18 78.74 81.4 86.96 92.52 95.18 100.74 106.3 111.3 116.3 118.96 121.24 126.8 129.46 131.74 137.3 142.86 148.42 151.2 156.76\\\">lease terms, each 60 days in length.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 94.8397)\\\" x=\\\"0 8.33 13.89 16.17 21.73 24.51 30.07 35.63 41.19 46.75 51.75\\\">Maintenance</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 98.0193 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 101.2487 94.8397)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 109.5885 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 112.8178 94.8397)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 126.7192 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 129.9485 94.8397)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 170.5198 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 173.7491 94.8397)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 191.5421 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 194.7714 94.8397)\\\" x=\\\"0 5.56 8.89\\\">are</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.2246 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 212.4539 94.8397)\\\" x=\\\"0 3.33 8.89 13.89 19.45 25.01 30.57 35.57 37.85 43.41 45.69\\\">responsible</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 263.7136 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 266.943 94.8397)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 278.6129 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 281.8422 94.8397)\\\" x=\\\"0 8.33 13.89 16.17 21.73 24.51 30.07 32.35 37.91 40.19 45.75\\\">maintaining</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 333.1606 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 336.3899 94.8397)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 345.2815 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 348.5108 94.8397)\\\" x=\\\"0 5 10.56 13.89 18.89 21.17 26.17 28.45 34.01\\\">servicing</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.086 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 391.3154 94.8397)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 405.2167 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 408.446 94.8397)\\\" x=\\\"0 5.56 8.89 14.45 20.01 25.57 28.9 31.68\\\">property</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 445.1306 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 448.3599 94.8397)\\\" x=\\\"0 7.22 12.78 15.06 17.34\\\">while</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 471.2652 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 474.4945 94.8397)\\\" x=\\\"0 2.28\\\">it</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 479.5531 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 482.7825 94.8397)\\\" x=\\\"0 2.28 5.06\\\">its</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 492.8411 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 496.0704 94.8397)\\\" x=\\\"0 5.56 11.12 13.4 18.96\\\">being</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 520.5968 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 523.8261 94.8397)\\\" x=\\\"0 2.28 7.84 13.4 18.4 23.96 29.52\\\">leased.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 556.1308 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 559.3601 94.8397)\\\" x=\\\"0 2.78\\\">In</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 94.8397)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 83.5213)\\\" x=\\\"0 5.56 10.56 15.56 21.12 24.45 30.01 35.57 41.13 46.13\\\">accordance</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 92.3992 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 95.7041 83.5213)\\\" x=\\\"0 7.22 9.5 12.28\\\">with</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 113.5459 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 116.8509 83.5213)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 132.471 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 135.7759 83.5213)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 187.4702 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 190.7752 83.5213)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 206.8982 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.2031 83.5213)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 224.2656 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 227.5706 83.5213)\\\" x=\\\"0 5 10.56 16.12 21.68 27.24 32.24\\\">conduct</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.595 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 265.8999 83.5213)\\\" x=\\\"0 5.56 7.84\\\">all</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.022 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 279.3269 83.5213)\\\" x=\\\"0 8.33 13.89 16.17 21.73 24.51 30.07 35.63 41.19 46.75 51.75 57.31\\\">maintenance,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 339.4246 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 342.7295 83.5213)\\\" x=\\\"0 3.33 8.89 14.45 20.01 22.29 25.62 30.62\\\">repairs,</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 376.1328 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 379.4377 83.5213)\\\" x=\\\"0 5.56 11.12 16.12 21.68 27.24\\\">upkeep</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 412.2454 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 415.5503 83.5213)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 432.2349 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 435.5398 83.5213)\\\" x=\\\"0 5 10.56 13.89 19.45\\\">care.</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 457.7712 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 461.0762 83.5213)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.6328 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 469.9377 83.5213)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.0608 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 489.3657 83.5213)\\\" x=\\\"0 8.33 13.89 19.45 25.01 27.79 33.35 38.35 41.13 46.69 50.02 55.58 58.91 61.13\\\">manufacturer’s</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 555.5034 83.5213)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 558.8083 83.5213)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip0-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 83.5213)\\\" x=\\\"0\\\"> </text></g><clipPath id=\\\"clip0-11\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip0-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 546.6561 L 573.6 546.6561 L 573.6 545.6561 L 34.8 545.6561 L 34.8 546.6561 z \\\"/><path clip-path=\\\"url(#clip0-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.6 545.6561 L 573.6 545.6561 L 573.6 530.3377 L 572.6 530.3377 L 572.6 545.6561 z \\\"/><path clip-path=\\\"url(#clip0-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 545.6561 L 35.8 545.6561 L 35.8 530.3377 L 34.8 530.3377 L 34.8 545.6561 z \\\"/><path clip-path=\\\"url(#clip0-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 530.3377 L 573.6 530.3377 L 573.6 529.3377 L 34.8 529.3377 L 34.8 530.3377 z \\\"/><path clip-path=\\\"url(#clip0-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 81.9217 L 573.6 81.9217 L 573.6 80.9217 L 34.8 80.9217 L 34.8 81.9217 z \\\"/><path clip-path=\\\"url(#clip0-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.6 529.3377 L 573.6 529.3377 L 573.6 81.9217 L 572.6 81.9217 L 572.6 529.3377 z \\\"/><path clip-path=\\\"url(#clip0-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 529.3377 L 35.8 529.3377 L 35.8 81.9217 L 34.8 81.9217 L 34.8 529.3377 z \\\"/><g clip-path=\\\"url(#clip0-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 36.5264)\\\" x=\\\"0 6.498 11.997 14.391 16.785 21.789 26.793 29.295 34.299 39.303 44.307 504 506.3906 508.7812 511.1719 513.5625 515.9531 518.3438 520.7344 523.125 525.5156\\\">UT  07/2019          </text></g><g clip-path=\\\"url(#clip0-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 26.3398)\\\" x=\\\"0 6.003 11.007 16.011 21.015\\\">Page </text></g><g clip-path=\\\"url(#clip0-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 55.8097 26.3398)\\\" x=\\\"0\\\">1</text></g><g clip-path=\\\"url(#clip0-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.815 26.3398)\\\" x=\\\"0 2.394 7.398 9.9\\\"> of </text></g><g clip-path=\\\"url(#clip0-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f0-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 73.1021 26.3398)\\\" x=\\\"0\\\">7</text></g><g clip-path=\\\"url(#clip0-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#d9d9d9\\\" style=\\\"font-family:f0-0; font-size:54pt; white-space:pre\\\" transform=\\\"matrix(0.707 0.707 0.707 -0.707 135.6027 198.5094)\\\" x=\\\"0 56.016 96.048 136.08 176.112 216.144 236.16 284.184 324.216 344.232 364.248 416.232 456.264 480.24\\\">Qoppa Software</text></g><g clip-path=\\\"url(#clip0-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#002ba6\\\" style=\\\"font-family:f0-0; font-size:9pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.932 772)\\\" x=\\\"0 9.336 16.008 22.68 29.352 36.024 39.36 47.364 54.036 57.372 60.708 69.372 76.044 80.04 86.712 90.048 94.044 97.38 104.712 111.384 115.38 118.716 126.72 132.72 139.392 142.056 148.728 155.4 158.736 161.4 168.072 174.744 178.08 187.416 194.088 196.752 202.752 206.088 210.084 213.42 220.092 223.428 226.764 233.436 239.436 242.772 246.108 249.444 258.108 266.772 275.436 278.772 285.444 292.116 298.788 305.46 312.132 315.468 321.468 328.14\\\">Qoppa Software - For Evaluation Only - https://www.qoppa.com</text></g></g></svg></svg></g></svg><br>\\n<?xml version='1.0' encoding='UTF-8'?><svg id=\\\"qoppa_document\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" version=\\\"1.1\\\" xmlns=\\\"http://www.w3.org/2000/svg\\\" xmlns:xlink=\\\"http://www.w3.org/1999/xlink\\\"><!-- jPDFWeb v2019R1.03 - Demo Version --><style>title p { display: block; }</style><g id=\\\"qoppa_viewxform\\\" transform=\\\"matrix(1 0 0 1 0 0)\\\"><style type=\\\"text/css\\\">@font-face {font-family:f1-0;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f1-1;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f1-2;src:url(\\\"data:application/font-woff;charset=utf-8;base64,d09GRgABAAAAAAW8AAoAAAAABzQAAQABAAAAAAAAAAAAAAAAAAAAAAAAAABPUy8yAAAA9AAAADcAAABWWalZZmNtYXAAAAEsAAAAUwAAAGwBegIKZ2x5ZgAAAYAAAALfAAADgId/tkZoZWFkAAAEYAAAADMAAAA2GHlkumhoZWEAAASUAAAAIAAAACQGIAKxaG10eAAABLQAAAA0AAAARCRzAuxsb2NhAAAE6AAAACQAAAAkBYYGdm1heHAAAAUMAAAAGAAAACAAFAAzbmFtZQAABSQAAACMAAABPhepMhlwb3N0AAAFsAAAAAwAAAAgAAMAAHicY2Bk8mKcwMDKwMDUxbSbARlwMeogc/8DATI/MCDAkUEBCG8y3fifzBDFdINhLkwOAMp0DLgAeJxjYGBgZGAGYgYGHgYWhgQgLcIgABRhYVBgcGRwZXBn8GTwZwhmCGWI//8fKAsSdQaL+sBE/z/+f/j/of8H/x/4v+//7v+7/m8Em4cBADR/GXUAeJx9kk1ME0EYhmcGu42lUTZQQEgKy5oWQktLt0vbAG20WwJ0m1YskKalbKG7EH7CQYkajAnFGIrCRaUGEE1MxL+bBw/ECzdT0YsHUG8cvZDozXTrbFuMJ2eyySQz7/e+37MfQAAvtImyAAENALAcQtpIqWnIwL1b1+Hnqcvyl+A4JCV4Hgbkt/L3w0P8Fj8EbflfaBsdAAoAVZPRwNodHYytprqGNhgNdJOa0FXVVDM2R4eDIdQEXMhE8crMDwxoEgTLXpr14DUdttvVCU0wpB1PvnqdTHo8E97m5n7/vRU/39ISuOJ241QhnO8J9iQACUAl00hWULRDKczajYZWGDqCM/KDo/jSpsvlcm4toay8LWfCfb23F3t6lJyKXsT6cgBaIEnpShuJuR9IJUfgXXkevkPZwa+DP//29QH3Rf+/L5ZmKZI2EjC9KQijoxuLQ4PlY4TLFZvjvBw3t8G/h7Xe2j5tUnzxUhQ97kmf0ejnV9I8L80Oyff9w4pXFDvu4mxlADA0yewKggK3mFmDj6pCZoakkEbuicMYyubSJ/fH+F4LAEWTZXQZidX1kEHHkf3wfmRtb28NCbmnhS+be4PCJU0Ka04rGqgIcGWUGpPTEQFeiyJ77iN+m0UsZq4w+IYZnAUN2A53r6tSE3SJRmWJ/QkMeGcdAxDWM0IiIaxP+ziOm5rx+TgfOpCknR1RFKXnO5KUmwnwy7h9nk8v8wFQYG3CPhPYp73I2shUF2dGKa/sf+CfuBW3kgfGH/n9p2Lqzq5wsN1qsy0ssB09vqs3+vtVI2eeBU2tdJMw6nLigerTermpkMHQSDk76+vr6ixtgWGn0+WUUnp9uxlX0+mqWk29I91dCiecSeF0rpTJwOIfUJrlwlGtzPPkTbe7oiJutURjFovQ0OBxa63WCxeH4LacXDWbTOZVuCWPpbrdej2A+d/5cWTOP1T+s4piKWTOfUK2xzYA/gBtBuJcAHicY2BkYGAA4rxdv17H89t8ZeBmfgEUYbhtLnAWRv///T+Z6QPTDaA6DgYmkCgAl1oOtgB4nGNgZGBguvE/mSGK2fH/7/+/mT4wAEVQgCAAvv0H1HicY2CAAEZfCGaaDcSXGPSAOADIDmDmYtBjFGOIZtIBsh2BYpcgYkA5HbAajf+/AR7DC3wAAAAAAAAAAAAAABwAUABwAIgAvgDKANoA9AEKAT4BiAGyAcB4nGNgZGBgEGQwYmBiAAFGBjQAAAcrAEh4nJWOMQ6CUBBEH4KKrZUlpRURQkUptZWJhZ1RURPiJ0BD41E8BudzhH8AyGaTN7OTyQJLzrg43gpYawd22EoNPMMntewSsrfsiUvLczZ8LS/kd2QYXVsqXjx40nAQXaUNtTaXE3Dkwlv6T/c+m6vfUHAbnf+QEE9Mn3pdyzFKBET6eaeZ1PIDR/8t33icY2BmwAsAAH0ABA==\\\");}@font-face {font-family:f1-3;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}</style><svg id=\\\"qoppa_page_p1\\\" class=\\\"qoppa_page\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\"><rect class=\\\"qoppa_pageborder\\\" x=\\\"0.5pt\\\" y=\\\"0.5pt\\\" width=\\\"611pt\\\" height=\\\"791pt\\\" fill=\\\"none\\\" /><svg class=\\\"qoppa_pagecontents\\\" x=\\\"0pt\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" viewBox=\\\"0 0 612 792\\\" ><g class=\\\"qoppa_contentstream\\\" transform=\\\"matrix(1 0 0 -1 0 792)\\\" fill=\\\"black\\\" stroke=\\\"black\\\" stroke-width=\\\"1\\\" stroke-linecap=\\\"butt\\\" stroke-linejoin=\\\"miter\\\" stroke-miterlimit=\\\"10\\\"><clipPath id=\\\"clip1-1\\\"><path d=\\\"M 35 487 L 574 487 L 574 770 L 35 770 L 35 487 z \\\"/></clipPath><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 759.4812)\\\" x=\\\"0 5 10.56 12.84 15.12 20.68 24.01 26.23\\\">seller’s</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 71.9353 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 75.2187 759.4812)\\\" x=\\\"0 7.22 12.78 16.11 19.44 25 30.56 33.34\\\">warranty</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 113.5635 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 116.8468 759.4812)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 124.1271 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 127.4105 759.4812)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 135.2523 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 138.5357 759.4812)\\\" x=\\\"0 2.78 8.34 11.67 16.67\\\">force</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.7671 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 164.0505 759.4812)\\\" x=\\\"0 7.22 12.78 18.34\\\">when</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 187.9567 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 191.2401 759.4812)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 207.3631 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.6465 759.4812)\\\" x=\\\"0 5.56 10.56 16.12 21.68 23.96 27.29\\\">acquire</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 243.503 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 246.7863 759.4812)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 260.6877 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 263.9711 759.4812)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 304.5424 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 307.8258 759.4812)\\\" x=\\\"0 2.28\\\">it</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.8844 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 316.1677 759.4812)\\\" x=\\\"0 5 10.56 16.12 18.4\\\">shall</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 336.8513 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 340.1347 759.4812)\\\" x=\\\"0 5.56\\\">be</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.2578 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 354.5411 759.4812)\\\" x=\\\"0 2.78 6.11 11.67 17.23 22.23 25.01 30.57 33.9 37.23 42.79\\\">transferred</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.8956 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 406.179 759.4812)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 414.5188 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 417.8022 759.4812)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 433.9253 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 437.2086 759.4812)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 442.2672 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 445.5506 759.4812)\\\" x=\\\"0 5.56 7.84 10.12 15.68 22.9 28.46\\\">allowed</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 479.5789 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 482.8623 759.4812)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 493.4238 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 496.7072 759.4812)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 510.6086 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 513.892 759.4812)\\\" x=\\\"0 2.78 8.34 11.67 20\\\">terms</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 538.892 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 542.1754 759.4812)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 550.5152 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.7986 759.4812)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 759.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 748.1629)\\\" x=\\\"0 7.22 12.78 16.11 19.44 25 30.56 33.34 38.34\\\">warranty.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 736.8445)\\\" x=\\\"0 5.56 11.12 16.12 18.9\\\">Lost,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 62.3797 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 65.5493 736.8445)\\\" x=\\\"0 6.67 9.45 15.01 17.29 22.85 28.41\\\">Stolen,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 96.7407 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 99.9104 736.8445)\\\" x=\\\"0 7.22 12.78 21.11 26.67 32.23 37.79 43.35\\\">Damaged,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.0481 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 149.2177 736.8445)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 158.1093 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 161.279 736.8445)\\\" x=\\\"0 7.22 12.78 17.78 20.56 23.89 29.45 34.45 40.01\\\">Destroyed</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 206.8552 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.0248 736.8445)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 250.5961 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 253.7657 736.8445)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.3224 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 262.492 736.8445)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.3934 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 279.563 736.8445)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 317.356 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 320.5256 736.8445)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 327.8059 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 330.9756 736.8445)\\\" x=\\\"0 2.28 7.84 12.84 15.62\\\">lost,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 349.374 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 352.5437 736.8445)\\\" x=\\\"0 5 7.78 13.34 15.62 21.18 26.74\\\">stolen,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 382.0651 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 385.2348 736.8445)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57 36.13\\\">damaged</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 426.934 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 430.1037 736.8445)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 438.9952 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 442.1649 736.8445)\\\" x=\\\"0 5.56 11.12 16.12 18.9 22.23 27.79 32.79 38.35 43.91\\\">destroyed,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 488.8592 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 492.0289 736.8445)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 508.1519 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 511.3216 736.8445)\\\" x=\\\"0 5.56 11.12 14.45 20.01\\\">agree</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 536.8977 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 540.0674 736.8445)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 548.4072 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 551.5769 736.8445)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 736.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 725.5262)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 51.2615 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 55.736 725.5262)\\\" x=\\\"0 5.56\\\">at</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 64.0758 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 68.5503 725.5262)\\\" x=\\\"0 5.56 11.12 16.12\\\">once</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 90.2349 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 94.7094 725.5262)\\\" x=\\\"0 5.56\\\">an</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 105.8324 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 110.3069 725.5262)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 143.6614 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.1359 725.5262)\\\" x=\\\"0 5.56 11.12 16.68 22.24\\\">equal</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 172.6622 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 177.1367 725.5262)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 185.4766 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 189.951 725.5262)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 203.8524 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 208.3269 725.5262)\\\" x=\\\"0 2.28 7.84 12.84 17.84 23.4\\\">lesser</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 235.0603 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 239.5348 725.5262)\\\" x=\\\"0 5.56 8.34\\\">of:</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 250.6529 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 255.1274 725.5262)\\\" x=\\\"0 3.33 8.89\\\">(1)</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 267.3491 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 271.8236 725.5262)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 285.7249 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 290.1994 725.5262)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79 40.01\\\">Property’s</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.2141 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 339.6885 725.5262)\\\" x=\\\"0 2.78 8.34 10.62\\\">fair</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 353.6387 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 358.1132 725.5262)\\\" x=\\\"0 8.33 13.89 17.22 22.22 27.78\\\">market</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.6747 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 393.1492 725.5262)\\\" x=\\\"0 5 10.56 12.84 18.4 23.96\\\">value,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.8924 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 424.3669 725.5262)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.9284 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 439.4029 725.5262)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.7427 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 452.2172 725.5262)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.1185 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 470.593 725.5262)\\\" x=\\\"0 2.78 5.06 13.39\\\">time</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.5432 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 494.0177 725.5262)\\\" x=\\\"0 2.28\\\">it</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.0763 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 503.5508 725.5262)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 510.831 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 515.3055 725.5262)\\\" x=\\\"0 2.28 7.84 12.84 15.62\\\">lost,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 533.704 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 538.1785 725.5262)\\\" x=\\\"0 5 7.78 13.34 15.62 21.18 26.74\\\">stolen,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 725.5262)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 714.2078)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57 36.13\\\">damaged</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 82.3992 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 86.9016 714.2078)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 95.7932 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 100.2955 714.2078)\\\" x=\\\"0 5.56 11.12 16.12 18.9 22.23 27.79 32.79 38.35\\\">destroyed</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 144.2115 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.7139 714.2078)\\\" x=\\\"0 3.33 8.89 14.45 17.23 22.79 26.12 34.45 36.73 42.29 47.85\\\">(determined</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 202.1319 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 206.6342 714.2078)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 217.1958 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 221.6981 714.2078)\\\" x=\\\"0 5.56 10.56\\\">us,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 235.038 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 239.5403 714.2078)\\\" x=\\\"0 5.56 10.56 12.84 18.4\\\">using</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 263.5052 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 268.0075 714.2078)\\\" x=\\\"0 5.56\\\">an</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 279.1306 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 283.6329 714.2078)\\\" x=\\\"0 2.28 7.84 13.4 18.96 23.96 26.74 30.07\\\">industry</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 318.7062 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 323.2085 714.2078)\\\" x=\\\"0 5 10.56 12.84 18.4\\\">value</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 347.1734 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 351.6758 714.2078)\\\" x=\\\"0 5.56 11.12 13.4 18.96\\\">guide</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 376.2021 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 380.7045 714.2078)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.4877 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 397.99 714.2078)\\\" x=\\\"0 5 10.56 12.84 18.4 23.4 26.18\\\">select,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 426.95 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 431.4524 714.2078)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 436.511 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 441.0133 714.2078)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 457.1364 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 461.6387 714.2078)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.919 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 473.4214 714.2078)\\\" x=\\\"0 5.56 10.56 16.12 18.4 20.68 26.24 31.8 34.08 39.64 42.97\\\">available);</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 519.1782 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 523.6806 714.2078)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 532.5722 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 537.0745 714.2078)\\\" x=\\\"0 3.33 8.89\\\">(2)</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.2962 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.7986 714.2078)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 714.2078)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 702.8895)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57 33.35 36.01 41.01 46.57 52.13 54.79 62.01 67.57 73.13 75.41 80.97 83.63 89.19 94.75 100.31 105.87 108.53 111.31 116.87 119.53 125.09 130.65 135.65 138.31 143.87 146.65 149.31 154.31 159.87 164.87 170.43 173.09 175.87 178.15 186.48 192.04 194.7 197.48 203.04 205.7 211.26 216.26 221.82 225.15 230.15 232.43 237.43 242.99 245.65 248.43 253.99 259.55 262.21 267.77 273.33 278.89 282.22 289.44 295 300 302.66 310.44 316 318.78 321.06 326.62 332.18 334.84 340.4 343.73 346.39 353.06 358.62 361.95 364.23 369.23 371.89 378.56 384.12 389.12 392.45 400.23 405.79 408.57 411.23 419.01 424.57 427.35 429.63 435.19 440.75 443.53 446.19 451.75 456.75 459.41 464.97 470.53 476.09 478.37 480.65 485.65 491.21 496.77 499.05 504.61\\\">amount you would need to pay at such time to exercise the 100-Day Option or Early Buy-Out Option, as applicable.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 691.5711)\\\" x=\\\"0 7.22 12.78 15.06 20.62 25.62 28.4 33.96 36.74 42.3 50.63 56.19 61.75\\\">Reinstatement</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 105.2361 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 108.6807 691.5711)\\\" x=\\\"0 7.22 9.5 15.06 20.62 23.4 28.4\\\">Rights.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 139.8623 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 143.3069 691.5711)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 148.8635 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 152.3081 691.5711)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 168.4311 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 171.8757 691.5711)\\\" x=\\\"0 5.56 8.89\\\">are</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 186.3288 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 189.7734 691.5711)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 197.6152 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 201.0597 691.5711)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 27.3\\\">default</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.1428 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 234.5873 691.5711)\\\" x=\\\"0 5.56 11.12 16.68 19.46 25.02\\\">and/or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.9418 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 266.3864 691.5711)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.2877 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 283.7323 691.5711)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 321.5253 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 324.9698 691.5711)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 332.2501 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 335.6947 691.5711)\\\" x=\\\"0 5 10.56 13.89 17.22 22.78 28.34 33.9 39.46 42.79 48.35\\\">surrendered</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 389.6156 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 393.0601 691.5711)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 401.9517 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 405.3963 691.5711)\\\" x=\\\"0 3.33 8.89 14.45 20.01 25.01 30.01 35.57 40.57 45.57 51.13 56.69\\\">repossessed,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 464.8738 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 468.3184 691.5711)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.4414 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 487.886 691.5711)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 506.7776 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 510.2222 691.5711)\\\" x=\\\"0 3.33 8.89 11.17 16.73 21.73 24.51 30.07 32.85\\\">reinstate</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 548.6353 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 552.0798 691.5711)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 691.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 680.2527)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 89.616 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 92.7055 680.2527)\\\" x=\\\"0 7.22 9.5 12.28 17.84 23.4 28.96\\\">without</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 124.4487 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 127.5382 680.2527)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68\\\">losing</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 153.7833 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 156.8728 680.2527)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 172.9958 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 176.0853 680.2527)\\\" x=\\\"0 3.33 5.61 11.17 16.73 19.51\\\">rights</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 200.597 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 203.6865 680.2527)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 212.5781 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 215.6676 680.2527)\\\" x=\\\"0 5.56 11.12 13.9 16.18 21.74 27.3\\\">options</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.9723 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 251.0618 680.2527)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 261.6234 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 264.7129 680.2527)\\\" x=\\\"0 5.56 11.12 16.12 18.4 23.96 29.52\\\">paying:</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 297.0175 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 300.1071 680.2527)\\\" x=\\\"0 3.33 5.61\\\">(i)</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 309.0475 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 312.137 680.2527)\\\" x=\\\"0 5.56 7.84\\\">all</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 322.2591 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 325.3485 680.2527)\\\" x=\\\"0 5.56 11.12 16.12\\\">past</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 344.2499 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 347.3394 680.2527)\\\" x=\\\"0 5.56 11.12\\\">due</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 364.024 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 367.1135 680.2527)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01 30.57 35.57\\\">charges;</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 405.468 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 408.5575 680.2527)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 425.242 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 428.3315 680.2527)\\\" x=\\\"0 3.33 5.61 7.89\\\">(ii)</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 439.5523 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 442.6418 680.2527)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.7003 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 450.7898 680.2527)\\\" x=\\\"0 5.56 7.84 10.12 15.68 22.9 28.46\\\">allowed</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.8182 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 487.9077 680.2527)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 498.4692 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 501.5587 680.2527)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64\\\">applicable</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 546.7686 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 549.8581 680.2527)\\\" x=\\\"0 2.28 7.84 15.06\\\">law,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 680.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 668.9344)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 54.6014 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 59.0196 668.9344)\\\" x=\\\"0 3.33 8.89 14.45 19.45 25.01 30.57 36.13 41.69 43.97\\\">reasonable</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 108.5606 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 112.9789 668.9344)\\\" x=\\\"0 5 10.56 15.56 18.34\\\">costs</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.3187 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 140.737 668.9344)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 149.0768 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 153.4951 668.9344)\\\" x=\\\"0 5.56 7.84 12.84 17.84 23.4\\\">pickup</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 182.4599 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 186.8782 668.9344)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 203.5627 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 207.981 668.9344)\\\" x=\\\"0 3.33 8.89 14.45 20.01 22.29 24.57 29.57 35.13 38.46 43.46\\\">redelivery.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 254.2261 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 258.6444 668.9344)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.4373 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 280.8556 668.9344)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.7472 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 304.1654 668.9344)\\\" x=\\\"0 5.56 10.56 16.12 19.45 24.45 26.73 31.73\\\">exercise</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 341.4604 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 345.8786 668.9344)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 365.3317 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 369.75 668.9344)\\\" x=\\\"0 3.33 8.89 11.17 16.73 21.73 24.51 30.07 32.85 38.41 46.74 52.3 57.86\\\">reinstatement</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.3945 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 434.8128 668.9344)\\\" x=\\\"0 3.33 5.61 11.17 16.73\\\">right</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.3245 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 458.7428 668.9344)\\\" x=\\\"0 7.22 9.5 12.28 17.84 20.12\\\">within</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.4263 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 488.8446 668.9344)\\\" x=\\\"0 5.56 11.12\\\">180</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 505.5292 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 509.9474 668.9344)\\\" x=\\\"0 5.56 11.12 16.12\\\">days</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 531.0705 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 535.4887 668.9344)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 543.8286 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 548.2468 668.9344)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 668.9344)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 657.616)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 27.3 30.08 32.74 38.3 41.63 44.29 49.29 54.85 58.18 61.51 67.07 72.63 78.19 83.75 87.08 89.86 93.19 98.75 104.31 109.87 114.87 119.87 125.43 130.43 135.43 137.71 143.27 148.83 151.49 157.05 159.83 162.49 165.27 170.83 176.39 179.05 185.72 189.05 194.61 200.17 205.73 209.06 211.84 216.84 219.5 225.06 228.39 231.05 236.05 241.61 246.61 252.17 254.83 257.11 262.67 268.23 273.79 279.35 282.68 285.34 290.9 296.46 299.79 302.07 307.63 313.19 315.85 321.41 324.74 330.3 335.3 337.58 343.14 348.7 354.26 356.92 359.7 365.26 367.92 372.92 378.48 384.04 386.7 392.26 397.82 403.38 408.94 412.27 414.93 420.49 426.05 431.61 433.89 436.17 441.17 446.73 452.29 454.57 460.13 462.79 465.07 470.63 477.85\\\">default or surrender/repossession of the Property or such longer period provided to you under applicable law.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 646.2977)\\\" x=\\\"0 7.22 9.5 15.06 20.62\\\">Right</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 64.1033 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 66.9139 646.2977)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 75.2537 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 78.0643 646.2977)\\\" x=\\\"0 6.11 11.67 15 23.33 25.61 31.17 36.73 39.51 45.07\\\">Terminate.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 125.9158 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 128.7263 646.2977)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.5193 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 149.3299 646.2977)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 168.2215 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 171.032 646.2977)\\\" x=\\\"0 2.78 8.34 11.67 20 22.28 27.84 33.4 36.18\\\">terminate</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 212.7752 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 215.5857 646.2977)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 235.0388 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 237.8494 646.2977)\\\" x=\\\"0 2.28 7.84 13.4 18.4\\\">lease</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 261.8142 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 264.6248 646.2977)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.9793 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 305.7898 646.2977)\\\" x=\\\"0 5.56 11.12 13.4 15.68 21.24 26.8 29.58 31.86 37.42 42.98\\\">obligations</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 353.7781 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 356.5886 646.2977)\\\" x=\\\"0 5.56 11.12 16.68 22.24\\\">under</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 382.1648 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 384.9753 646.2977)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 400.5955 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 403.406 646.2977)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 452.322 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 455.1326 646.2977)\\\" x=\\\"0 7.22 9.5 12.28 17.84 23.4 28.96\\\">without</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.8757 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 489.6863 646.2977)\\\" x=\\\"0 5.56 11.12 16.68 22.24 24.52 27.3\\\">penalty</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.991 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 524.8015 646.2977)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 535.363 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 538.1736 646.2977)\\\" x=\\\"0 5.56 11.12 16.12 18.4 23.96\\\">paying</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 646.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 634.9793)\\\" x=\\\"0 5.56 7.84\\\">all</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 50.8221 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 53.7614 634.9793)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 88.8395 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 91.7789 634.9793)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46 44.46\\\">Payments,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 139.0201 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 141.9594 634.9793)\\\" x=\\\"0 2.78 8.34 13.9\\\">fees</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.8608 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 163.8001 634.9793)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 180.4847 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 183.424 634.9793)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01 30.57\\\">charges</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 219.0002 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 221.9396 634.9793)\\\" x=\\\"0 2.78 8.34 13.9\\\">that</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.6192 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 241.5586 634.9793)\\\" x=\\\"0 5.56 8.89\\\">are</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.0117 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 258.951 634.9793)\\\" x=\\\"0 5.56 11.12\\\">due</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.6356 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 278.575 634.9793)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 287.4666 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 290.4059 634.9793)\\\" x=\\\"0 5.56 11.12 16.12\\\">past</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 309.3073 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 312.2466 634.9793)\\\" x=\\\"0 5.56 11.12\\\">due</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 328.9312 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 331.8705 634.9793)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.5551 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 351.4944 634.9793)\\\" x=\\\"0 5 10.56 12.84 18.4 23.96 26.74 32.3 35.63 37.91 40.19\\\">voluntarily</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 396.6898 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 399.6291 634.9793)\\\" x=\\\"0 5 10.56 13.89 17.22 22.78 28.34 33.9 39.46 42.79 45.07 50.63\\\">surrendering</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 455.8303 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 458.7696 634.9793)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.6612 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 470.6005 634.9793)\\\" x=\\\"0 3.33 8.89 11.67 17.23 20.56 26.12 28.4 33.96\\\">returning</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 510.1269 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 513.0663 634.9793)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.9676 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 529.907 634.9793)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 634.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 623.6609)\\\" x=\\\"0 2.28 7.84 10.5 12.78 15.56 20.56 23.22 28.78 32.11 34.39 39.95 42.23 47.79 53.35 55.63 58.29 63.29 68.85 74.41 79.97 82.25 85.03 87.31 92.87 98.43 101.21 103.87 106.15 111.71 116.71 121.71 124.37 127.7 133.26 138.82 143.82 149.38 154.94 160.5 166.06 168.34 173.9 176.56 183.78 189.34 194.9 198.23 200.89 206.45 212.01 217.57 220.23 223.01 228.57 234.13 237.46 240.12 245.68 248.46 251.12 253.9 259.46 265.02 267.68 273.24 278.24 283.8 286.08 289.41 294.97 297.75 300.03 305.59 311.15 313.81 319.37 322.15 324.81 330.37 335.93 340.93 343.59 345.87 351.43 356.99 361.99 367.55 370.21 372.99 378.55 381.88 390.21\\\">in its original condition, less reasonable wear and tear at the expiration of any lease term.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 612.3426)\\\" x=\\\"0 5.56 11.12 13.9\\\">Late</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.1629 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 63.3819 612.3426)\\\" x=\\\"0 6.11 11.67 17.23 22.23\\\">Fees.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 88.3917 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 91.6107 612.3426)\\\" x=\\\"0 9.44\\\">We</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 106.6107 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 109.8297 612.3426)\\\" x=\\\"0 3.33 8.89 13.89 19.45 22.78 27.78\\\">reserve</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 143.1744 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 146.3934 612.3426)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.2948 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 163.5138 612.3426)\\\" x=\\\"0 3.33 5.61 11.17 16.73\\\">right</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 183.0255 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 186.2445 612.3426)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 194.5844 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 197.8034 612.3426)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01\\\">charge</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 228.3796 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 231.5986 612.3426)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 237.1601 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 240.3791 612.3426)\\\" x=\\\"0 2.28 7.84 10.62\\\">late</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.5608 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 259.7798 612.3426)\\\" x=\\\"0 2.78 8.34\\\">fee</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 273.6811 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 276.9002 612.3426)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 288.5701 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 291.7891 612.3426)\\\" x=\\\"0 5.56 11.12 16.12\\\">past</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 310.6905 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 313.9095 612.3426)\\\" x=\\\"0 5.56 11.12\\\">due</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 330.594 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 333.8131 612.3426)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57 38.35 43.35\\\">payments,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 379.9459 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 383.1649 612.3426)\\\" x=\\\"0 5.56 8.34 11.12 16.68\\\">after</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.1747 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 406.3937 612.3426)\\\" x=\\\"0 5.56 7.84 10.12 15.68 22.9 25.18 30.74\\\">allowing</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 442.7023 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 445.9213 612.3426)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 457.5912 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 460.8102 612.3426)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 476.9333 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 480.1523 612.3426)\\\" x=\\\"0 5.56 8.89 14.45 19.45\\\">grace</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 505.1669 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 508.3859 612.3426)\\\" x=\\\"0 5.56 11.12 14.45 16.73 22.29 27.85\\\">period,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 539.0207 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 542.2397 612.3426)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 550.5796 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.7986 612.3426)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 612.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 601.0242)\\\" x=\\\"0 2.28 7.84 12.84 17.84 23.4\\\">lesser</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 67.4334 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 70.2009 601.0242)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 78.5407 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.3082 601.0242)\\\" x=\\\"0 3.33 5.61\\\">(i)</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 90.2486 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 93.0161 601.0242)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 106.9175 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 109.6849 601.0242)\\\" x=\\\"0 3.33 8.89 11.67\\\">rate</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 126.9164 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 129.6839 601.0242)\\\" x=\\\"0 5.56 7.84 10.12 15.68 22.9 28.46\\\">allowed</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 163.7122 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 166.4797 601.0242)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 177.0412 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 179.8087 601.0242)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64\\\">applicable</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.0186 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 227.7861 601.0242)\\\" x=\\\"0 2.28 7.84\\\">law</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 242.8496 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 245.6171 601.0242)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 254.5087 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 257.2761 601.0242)\\\" x=\\\"0 3.33 5.61 7.89\\\">(ii)</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 268.4968 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 271.2643 601.0242)\\\" x=\\\"0 5.56 11.12 13.9 19.46\\\">$2.00</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 296.2887 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 299.0562 601.0242)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 310.7261 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 313.4936 601.0242)\\\" x=\\\"0 7.22 12.78 18.34 23.34 25.62 30.62\\\">weekly,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 346.8969 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 349.6644 601.0242)\\\" x=\\\"0 5.56 7.84 15.06 20.62 26.18 31.18 33.46 38.46\\\">biweekly,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 390.9095 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 393.677 601.0242)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.5686 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 405.3361 601.0242)\\\" x=\\\"0 5 10.56 18.89 21.17 24.5 32.83 38.39 43.95 46.73 52.29 54.57\\\">semi-monthly</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 464.9113 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 467.6787 601.0242)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57 38.35 43.35\\\">payments,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 513.8116 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 516.579 601.0242)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 525.4706 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 528.2381 601.0242)\\\" x=\\\"0 5.56 11.12 13.9 19.46\\\">$5.00</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.2625 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 556.03 601.0242)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 601.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 589.7059)\\\" x=\\\"0 8.33 13.89 19.45 22.23 27.79 30.07 35.07 37.73 43.29 48.85 53.85 62.18 67.74 73.3 76.08 81.08\\\">monthly payments.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 578.3875)\\\" x=\\\"0 7.7783 10.5566 16.1182 21.6797\\\">Other</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 65.7098 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 68.366 578.3875)\\\" x=\\\"0 2.7783 11.1084 16.6699 22.2315 25.5615 28.3398 33.9014 39.4629\\\">Important</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 110.6072 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 113.2635 578.3875)\\\" x=\\\"0 6.1084 11.6699 15 23.3301 28.3301\\\">Terms.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 144.3719 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 147.0281 578.3875)\\\" x=\\\"0 6.6699 12.2314\\\">See</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 164.8211 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 167.4773 578.3875)\\\" x=\\\"0 2.7783 8.3398\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 181.3787 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 184.035 578.3875)\\\" x=\\\"0 5.5615 8.3398 13.9014 19.4629\\\">other</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 206.8279 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 209.4842 578.3875)\\\" x=\\\"0 5.5615 11.123 14.4531 17.2314\\\">parts</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.7156 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 234.3719 578.3875)\\\" x=\\\"0 5.5615\\\">of</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 242.7117 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 245.368 578.3875)\\\" x=\\\"0 2.7783 8.3398 10.6201\\\">this</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 260.9881 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 263.6443 578.3875)\\\" x=\\\"0 6.6699 12.2314 15.5615 21.123 26.6846 35.0147 40.5762 46.1377\\\">Agreement</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.5603 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 315.2166 578.3875)\\\" x=\\\"0 2.7783 8.3398\\\">for</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 326.8865 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 329.5428 578.3875)\\\" x=\\\"0 5.5615 11.1231 16.6846 18.9648 21.7432 24.0234 29.585 35.1465 40.708\\\">additional</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 372.531 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 375.1873 578.3875)\\\" x=\\\"0 2.2803 10.6103 16.1719 21.7334 25.0635 27.8418 33.4033 38.9648\\\">important</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 416.9305 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 419.5867 578.3875)\\\" x=\\\"0 2.2803 7.8418 10.6201 16.1816 19.5117 27.8418 33.4033 36.1816 38.4619 44.0234\\\">information</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 469.1717 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 471.8279 578.3875)\\\" x=\\\"0 5.5615\\\">on</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 482.951 578.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 485.6072 578.3875)\\\" x=\\\"0 2.7783 8.3398 11.6699 20 22.2803 27.8418 33.4033 36.1816 38.4619 44.0234\\\">termination</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 567.0691)\\\" x=\\\"0 5.5615 8.8916 14.4531 19.4531 25.0146 30.5762 36.1377 39.4678 45.0293 50.0293\\\">procedures,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 93.5076 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 96.1639 567.0691)\\\" x=\\\"0 5.5615 11.1231 14.4531 19.4531 25.0146 30.5762 35.5762\\\">purchase</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 137.3016 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 139.9578 567.0691)\\\" x=\\\"0 5.5615 11.123 13.9014 16.1816 21.7432\\\">option</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 167.2625 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 169.9187 567.0691)\\\" x=\\\"0 3.4301 5.8103 11.4719 17.1334 20.0117 25.1117\\\">rights,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 197.9088 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 200.665 567.0691)\\\" x=\\\"0 3.3801 8.9916 14.0416 19.6531 25.2646 30.8762 35.9262 38.2565 43.868 46.1983 48.5285 50.8588 53.6871 56.0174 61.6289\\\">responsibilities</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 267.3439 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 270.0502 567.0691)\\\" x=\\\"0 3.0283 8.8399\\\">for</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 282.4701 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 285.3764 567.0691)\\\" x=\\\"0 2.4303 8.1418 13.2918 18.4418\\\">loss,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 306.7465 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 309.5527 567.0691)\\\" x=\\\"0 5.6615 11.3231 19.7531 25.4146 31.0762\\\">damage</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 346.2904 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 349.0467 567.0691)\\\" x=\\\"0 5.8615\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 358.5383 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 361.4945 567.0691)\\\" x=\\\"0 5.6115 11.2231 16.2731 19.1014 22.4814 28.093 33.143 35.9713 38.3016 43.9131\\\">destruction</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 411.0191 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 413.7254 567.0691)\\\" x=\\\"0 5.8615\\\">of</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 422.6652 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 425.6215 567.0691)\\\" x=\\\"0 3.0283 8.8398\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 440.2729 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 443.1791 567.0691)\\\" x=\\\"0 6.7699 10.2 15.8615 21.523 27.1846 30.6146 33.493 38.593\\\">Property,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.6504 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 487.4066 567.0691)\\\" x=\\\"0 5.6615 10.7615 13.6398 19.3014 24.9629\\\">actual</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 514.7498 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 517.506 567.0691)\\\" x=\\\"0 5.6615\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.5976 567.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 529.3539 567.0691)\\\" x=\\\"0 2.3803 10.8103 16.4719 18.8522 21.2324 26.894\\\">implied</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 555.7508)\\\" x=\\\"0 7.2717 12.8832 16.2633 19.6434 25.2549 30.8664 33.6947 36.025 41.6365 46.6865\\\">warranties,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 90.2148 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 92.9211 555.7508)\\\" x=\\\"0 2.8283 8.4398 13.4898 19.1014 24.1514\\\">taxes,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 119.9008 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 122.607 555.7508)\\\" x=\\\"0 5.7115 8.6398 14.3514 20.0629\\\">other</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.15 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.9563 555.7508)\\\" x=\\\"0 5.1 10.7615 16.423 19.8531 25.5146 31.1762\\\">charges</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 185.2324 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 187.9887 555.7508)\\\" x=\\\"0 5.6115 11.223\\\">and</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 204.8232 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 207.5295 555.7508)\\\" x=\\\"0 5.5615 11.1231 16.6846 22.2461 24.5264 27.3047 29.585 35.1465\\\">penalties</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.676 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 250.3322 555.7508)\\\" x=\\\"0 5 10.5615\\\">you</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 266.4553 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 269.1115 555.7508)\\\" x=\\\"0 8.3301 13.8916\\\">may</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 288.0031 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 290.6594 555.7508)\\\" x=\\\"0 2.2803 7.8418 12.8418 18.4033 21.7334\\\">incur,</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 315.1711 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 317.8273 555.7508)\\\" x=\\\"0 5.5615 11.123\\\">and</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 334.5119 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 337.1682 555.7508)\\\" x=\\\"0 5.5615 8.3398 13.9014 19.4629\\\">other</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.9611 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 362.6174 555.7508)\\\" x=\\\"0 2.2803 10.6103 16.1719 21.7334 25.0635 27.8418 33.4033 38.9648\\\">important</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 404.3605 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.0168 555.7508)\\\" x=\\\"0 2.2803 7.8418 10.6201 16.1816 19.5117 27.8418 33.4033 36.1816 38.4619 44.0234 49.585\\\">information.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 459.3801 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 462.0363 555.7508)\\\" x=\\\"0 6.6699 12.2314\\\">You</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 479.8293 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 482.4855 555.7508)\\\" x=\\\"0 5.5615 10.5615 15.5615 21.1231 26.6846 33.9063 36.1865 41.7481 47.3096 52.8711\\\">acknowledge</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 540.9182 555.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 543.5744 555.7508)\\\" x=\\\"0 2.7783 8.3398 13.9014\\\">that</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 544.4324)\\\" x=\\\"0 7.2717\\\">we</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 53.5832 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 56.2895 544.4324)\\\" x=\\\"0 5.5615 8.8916 14.4531 19.4531 21.7334 27.2949 32.8564\\\">provided</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 94.7074 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 97.3637 544.4324)\\\" x=\\\"0 5 10.5615\\\">you</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 113.4867 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 116.143 544.4324)\\\" x=\\\"0 7.2217 9.502 12.2803\\\">with</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 133.9848 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 136.641 544.4324)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 142.4525 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 145.3588 544.4324)\\\" x=\\\"0 5 10.5615 18.8916 24.4531 26.7334 32.2949 35.0733 40.6348\\\">completed</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 191.5551 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 194.2113 544.4324)\\\" x=\\\"0 5 10.5615 16.1231\\\">copy</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 215.3344 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 217.9906 544.4324)\\\" x=\\\"0 5.6115\\\">of</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 226.4305 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 229.1367 544.4324)\\\" x=\\\"0 2.7783 8.3398 10.6201\\\">this</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 244.7568 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 247.4131 544.4324)\\\" x=\\\"0 6.6699 12.2315 15.5615 21.123 26.6846 35.0146 40.5762 46.1377 48.916\\\">Agreement.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.1074 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 301.7637 544.4324)\\\" x=\\\"0 6.6699 12.2314\\\">You</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.5566 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 322.2129 544.4324)\\\" x=\\\"0 5.5615 10.5615 15.5615 21.123 26.6846 33.9062 36.1865 41.748 47.3096 52.8711\\\">acknowledge</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.6455 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 383.3017 544.4324)\\\" x=\\\"0 2.7783 8.3399 13.9014\\\">that</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 399.9814 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 402.6377 544.4324)\\\" x=\\\"0 7.2717\\\">we</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 415.5209 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 418.2271 544.4324)\\\" x=\\\"0 8.3301 13.8916 19.4531\\\">made</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 443.2418 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 445.898 544.4324)\\\" x=\\\"0 2.7783 8.3399\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 459.7994 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 462.8557 544.4324)\\\" x=\\\"0 5.5615 7.8418 12.8418 17.8418 20.1221 25.6836 30.6836 36.2451 39.5752 45.1367\\\">disclosures</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.9924 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 516.0486 544.4324)\\\" x=\\\"0 5.6115\\\">at</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 524.4885 544.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 527.5447 544.4324)\\\" x=\\\"0 5.6115\\\">or</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 533.1141)\\\" x=\\\"0 5.5615 11.123 13.9014 19.4629 22.793\\\">before</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 69.0545 533.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 72.1107 533.1141)\\\" x=\\\"0 2.7783 8.3398\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 86.0121 533.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 89.0684 533.1141)\\\" x=\\\"0 5 10.5615 16.123 21.123 26.6846 35.0146 43.3447 48.9062 51.6846 53.9648 59.5264\\\">consummation</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 154.1562 533.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 157.2125 533.1141)\\\" x=\\\"0 5.6115\\\">of</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 165.6523 533.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 168.7086 533.1141)\\\" x=\\\"0 2.7783 8.3398\\\">the</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 182.61 533.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 185.6662 533.1141)\\\" x=\\\"0 6.6699 12.2314 15.5615 21.123 26.6846 35.0146 40.5762 46.1377 48.916\\\">Agreement.</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 519.7957)\\\" x=\\\"0 6.67 8.95 11.23 13.89 19.45 22.23 27.79 33.35 36.68 39.34 42.12 47.68 53.24 58.24 60.9 68.12 73.68 75.96 80.96 86.52 89.18 97.51 103.07 108.07 110.73 116.29 121.85 124.51 129.51 135.07 140.63 143.96 149.52 155.08 160.64 163.42 166.08 168.36 173.92 178.92 181.2 186.76 192.32 197.88 200.54 203.32 208.88 214.44 219.44 222.1 224.88 230.44 233.77\\\">All other fees which may be charged, include fees for:</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 22.7 506.4773)\\\" x=\\\"0 3.33 8.89\\\">(1)</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 506.4773)\\\" x=\\\"0 3.33 8.89 12.22 14.88 22.1 27.66 30.44 36 39.33 44.89 50.45 56.01 58.67 65.34 70.9 75.9 84.23 89.79 95.35 98.13 103.13 105.79 111.35 114.68 117.34 124.56 130.12 135.68 140.68 146.24 149.02 151.8 154.08 159.08 161.36 166.92 172.48 175.26 177.92 184.03 189.59 195.15 200.71 205.71 208.37 214.48 220.04 225.6 228.38 231.04 236.6 239.26 244.82 250.38 253.16 258.72\\\">(1) Returned Payments or Nonsufficient Funds Fee: $ 20.00</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:8.25pt\\\" transform=\\\"matrix(1 0 0 -1 22.7 495.159)\\\" x=\\\"0 3.663 9.779\\\">(2)</text></g><g clip-path=\\\"url(#clip1-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 495.159)\\\" x=\\\"0 3.33 8.89 12.22 14.88 22.1 27.66 29.94 35.5 40.5 43.28 48.84 51.62 57.18 65.51 71.07 76.63 79.41 82.07 88.18 93.74 99.3 104.3 107.08 109.74 116.96 122.52 128.08 133.64 136.3 139.63 145.19 147.97 153.53 159.09 162.42 165.08 167.86 173.42 178.98 184.54 187.2 192.76 195.04 200.04 205.04 210.6 216.16 218.82 224.38 229.94 235.5 238.16 241.49 247.05 252.61 258.17 260.45 262.73 267.73 273.29 276.62 281.62 284.28 289.28 294.84 300.4 303.73 309.29 314.85 319.85 322.51 328.07 330.35 332.63 338.19 345.41 350.97 356.53 359.19 364.75 369.75 372.41 374.69 380.25 387.47\\\">(2) Reinstatement Fees: None (other than pickup and redelivery charges allowed by law)</text></g><clipPath id=\\\"clip1-2\\\"><path d=\\\"M 35 448 L 574 448 L 574 488 L 35 488 L 35 448 z \\\"/></clipPath><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 35.3 487.0594 L 573.1 487.0594 L 573.1 448.1043 L 35.3 448.1043 L 35.3 487.0594 z \\\"/><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 40.7 484.0594 L 567.7 484.0594 L 567.7 450.1043 L 40.7 450.1043 L 40.7 484.0594 z \\\"/><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 40.7 484.0594 L 52.7 484.0594 L 52.7 472.0594 L 40.7 472.0594 L 40.7 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 474.8406)\\\" x=\\\"0 6.67\\\">By</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 52.3699 484.0594 L 55.3699 484.0594 L 55.3699 472.0594 L 52.3699 472.0594 L 52.3699 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 52.3699 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 55.339 484.0594 L 90.339 484.0594 L 90.339 472.0594 L 55.339 472.0594 L 55.339 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 55.339 474.8406)\\\" x=\\\"0 5 7.28 12.84 18.4 20.68 26.24 31.8\\\">signing,</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 89.924 484.0594 L 92.924 484.0594 L 92.924 472.0594 L 89.924 472.0594 L 89.924 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 89.924 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 92.8931 484.0594 L 109.8931 484.0594 L 109.8931 472.0594 L 92.8931 472.0594 L 92.8931 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 92.8931 474.8406)\\\" x=\\\"0 5 10.56\\\">you</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 109.0162 484.0594 L 112.0162 484.0594 L 112.0162 472.0594 L 109.0162 472.0594 L 109.0162 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 109.0162 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 111.9853 484.0594 L 137.9853 484.0594 L 137.9853 472.0594 L 111.9853 472.0594 L 111.9853 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 111.9853 474.8406)\\\" x=\\\"0 5.56 11.12 14.45 20.01\\\">agree</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 137.5614 484.0594 L 140.5614 484.0594 L 140.5614 472.0594 L 137.5614 472.0594 L 137.5614 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 137.5615 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 140.5306 484.0594 L 157.5306 484.0594 L 157.5306 472.0594 L 140.5306 472.0594 L 140.5306 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 140.5306 474.8406)\\\" x=\\\"0 2.78 8.34 13.9\\\">that</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 157.2103 484.0594 L 160.2103 484.0594 L 160.2103 472.0594 L 157.2103 472.0594 L 157.2103 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 157.2103 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 160.1794 484.0594 L 177.1794 484.0594 L 177.1794 472.0594 L 160.1794 472.0594 L 160.1794 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 160.1794 474.8406)\\\" x=\\\"0 5 10.56\\\">you</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 176.3024 484.0594 L 179.3024 484.0594 L 179.3024 472.0594 L 176.3024 472.0594 L 176.3024 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 176.3024 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 179.2715 484.0594 L 217.2715 484.0594 L 217.2715 472.0594 L 179.2715 472.0594 L 179.2715 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 179.2715 474.8406)\\\" x=\\\"0 3.33 8.89 13.89 19.45 21.73 26.73 32.29\\\">received</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 217.128 484.0594 L 220.128 484.0594 L 220.128 472.0594 L 217.128 472.0594 L 217.128 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 217.128 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 220.0971 484.0594 L 226.0971 484.0594 L 226.0971 472.0594 L 220.0971 472.0594 L 220.0971 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 220.0971 474.8406)\\\" x=\\\"0\\\">a</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 225.6586 484.0594 L 228.6586 484.0594 L 228.6586 472.0594 L 225.6586 472.0594 L 225.6586 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.6586 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 228.6277 484.0594 L 258.6277 484.0594 L 258.6277 472.0594 L 228.6277 472.0594 L 228.6277 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 228.6277 474.8406)\\\" x=\\\"0 2.28 7.84 13.4 15.68 21.24 23.52\\\">legible</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 257.7147 484.0594 L 260.7147 484.0594 L 260.7147 472.0594 L 257.7147 472.0594 L 257.7147 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.7147 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 260.6838 484.0594 L 282.6838 484.0594 L 282.6838 472.0594 L 260.6838 472.0594 L 260.6838 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 260.6838 474.8406)\\\" x=\\\"0 5 10.56 16.12\\\">copy</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 281.8068 484.0594 L 284.8068 484.0594 L 284.8068 472.0594 L 281.8068 472.0594 L 281.8068 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.8068 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 284.7759 484.0594 L 293.7759 484.0594 L 293.7759 472.0594 L 284.7759 472.0594 L 284.7759 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 284.7759 474.8406)\\\" x=\\\"0 5.56\\\">of</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 293.1158 484.0594 L 296.1158 484.0594 L 296.1158 472.0594 L 293.1158 472.0594 L 293.1158 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 293.1158 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 296.0849 484.0594 L 312.0849 484.0594 L 312.0849 472.0594 L 296.0849 472.0594 L 296.0849 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 296.0849 474.8406)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 311.705 484.0594 L 314.705 484.0594 L 314.705 472.0594 L 311.705 472.0594 L 311.705 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 311.705 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 314.6742 484.0594 L 366.6742 484.0594 L 366.6742 472.0594 L 314.6742 472.0594 L 314.6742 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 314.6741 474.8406)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement.</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 366.3685 484.0594 L 369.3685 484.0594 L 369.3685 472.0594 L 366.3685 472.0594 L 366.3685 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 366.3685 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 369.3376 484.0594 L 387.3376 484.0594 L 387.3376 472.0594 L 369.3376 472.0594 L 369.3376 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 369.3376 474.8406)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 387.1306 484.0594 L 390.1306 484.0594 L 390.1306 472.0594 L 387.1306 472.0594 L 387.1306 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 387.1306 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 390.0997 484.0594 L 416.0997 484.0594 L 416.0997 472.0594 L 390.0997 472.0594 L 390.0997 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 390.0997 474.8406)\\\" x=\\\"0 5.56 11.12 14.45 20.01\\\">agree</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 415.6759 484.0594 L 418.6759 484.0594 L 418.6759 472.0594 L 415.6759 472.0594 L 415.6759 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 415.6759 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 418.645 484.0594 L 427.645 484.0594 L 427.645 472.0594 L 418.645 472.0594 L 418.645 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 418.645 474.8406)\\\" x=\\\"0 2.78\\\">to</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 426.9848 484.0594 L 429.9848 484.0594 L 429.9848 472.0594 L 426.9848 472.0594 L 426.9848 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 426.9848 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 429.9539 484.0594 L 443.9539 484.0594 L 443.9539 472.0594 L 429.9539 472.0594 L 429.9539 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 429.9539 474.8406)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 443.8553 484.0594 L 446.8553 484.0594 L 446.8553 472.0594 L 443.8553 472.0594 L 443.8553 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 443.8553 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 446.8244 484.0594 L 471.8244 484.0594 L 471.8244 472.0594 L 446.8244 472.0594 L 446.8244 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 446.8244 474.8406)\\\" x=\\\"0 2.78 8.34 11.67 20\\\">terms</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 471.8244 484.0594 L 474.8244 484.0594 L 474.8244 472.0594 L 471.8244 472.0594 L 471.8244 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 471.8244 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 474.7935 484.0594 L 483.7935 484.0594 L 483.7935 472.0594 L 474.7935 472.0594 L 474.7935 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 474.7935 474.8406)\\\" x=\\\"0 5.56\\\">of</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 483.1334 484.0594 L 486.1334 484.0594 L 486.1334 472.0594 L 483.1334 472.0594 L 483.1334 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 483.1334 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 486.1025 484.0594 L 502.1025 484.0594 L 502.1025 472.0594 L 486.1025 472.0594 L 486.1025 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 486.1025 474.8406)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 501.7226 484.0594 L 504.7226 484.0594 L 504.7226 472.0594 L 501.7226 472.0594 L 501.7226 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.7226 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 504.6917 484.0594 L 553.6918 484.0594 L 553.6918 472.0594 L 504.6917 472.0594 L 504.6917 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 504.6917 474.8406)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 553.6078 484.0594 L 556.6078 484.0594 L 556.6078 472.0594 L 553.6078 472.0594 L 553.6078 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.6078 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 556.5769 484.0594 L 568.5769 484.0594 L 568.5769 472.0594 L 556.5769 472.0594 L 556.5769 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 556.5769 474.8406)\\\" x=\\\"0 5.56\\\">on</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 567.7 484.0594 L 570.7 484.0594 L 570.7 472.0594 L 567.7 472.0594 L 567.7 484.0594 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 474.8406)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 40.7 472.741 L 51.7 472.741 L 51.7 460.741 L 40.7 460.741 L 40.7 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 463.5223)\\\" x=\\\"0 5.56 7.84\\\">all</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 50.8221 472.741 L 54.8221 472.741 L 54.8221 460.741 L 50.8221 460.741 L 50.8221 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 50.8221 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 54.1471 472.741 L 60.1471 472.741 L 60.1471 460.741 L 54.1471 460.741 L 54.1471 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 54.1471 463.5223)\\\" x=\\\"0\\\">6</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 59.7087 472.741 L 63.7087 472.741 L 63.7087 460.741 L 59.7087 460.741 L 59.7087 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 59.7087 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 63.0337 472.741 L 94.0337 472.741 L 94.0337 460.741 L 63.0337 460.741 L 63.0337 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 63.0337 463.5223)\\\" x=\\\"0 5.56 11.12 16.68 22.24 27.24\\\">pages,</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 93.0582 472.741 L 97.0582 472.741 L 97.0582 460.741 L 93.0582 460.741 L 93.0582 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 93.0582 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 96.3832 472.741 L 136.3832 472.741 L 136.3832 460.741 L 96.3832 460.741 L 96.3832 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 96.3832 463.5223)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24 28.52 34.08\\\">including</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 136.0317 472.741 L 140.0317 472.741 L 140.0317 460.741 L 136.0317 460.741 L 136.0317 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.0317 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 139.3568 472.741 L 153.3568 472.741 L 153.3568 460.741 L 139.3568 460.741 L 139.3568 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 139.3568 463.5223)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 153.2581 472.741 L 157.2581 472.741 L 157.2581 460.741 L 153.2581 460.741 L 153.2581 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 153.2581 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 156.5832 472.741 L 203.5832 472.741 L 203.5832 460.741 L 156.5832 460.741 L 156.5832 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 156.5832 463.5223)\\\" x=\\\"0 3.55 10.77 16.33 21.33 24.11 29.67 38 43.56\\\">&quot;Customer</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 203.4777 472.741 L 207.4777 472.741 L 207.4777 460.741 L 203.4777 460.741 L 203.4777 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 203.4777 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 206.8028 472.741 L 265.8028 472.741 L 265.8028 460.741 L 206.8028 460.741 L 206.8028 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 206.8028 463.5223)\\\" x=\\\"0 6.67 12.23 15.01 20.57 26.13 29.46 31.74 36.74 42.3 45.08 47.36 52.92\\\">Authorization</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 265.2891 472.741 L 269.2891 472.741 L 269.2891 460.741 L 265.2891 460.741 L 265.2891 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 265.2891 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 268.6142 472.741 L 280.6142 472.741 L 280.6142 460.741 L 268.6142 460.741 L 268.6142 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 268.6142 463.5223)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 280.2841 472.741 L 284.2841 472.741 L 284.2841 460.741 L 280.2841 460.741 L 280.2841 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.2841 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 283.6092 472.741 L 328.6092 472.741 L 328.6092 460.741 L 283.6092 460.741 L 283.6092 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 283.6092 463.5223)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46\\\">Payments</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 328.0721 472.741 L 332.0721 472.741 L 332.0721 460.741 L 328.0721 460.741 L 328.0721 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 328.0721 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 331.3972 472.741 L 344.3972 472.741 L 344.3972 460.741 L 331.3972 460.741 L 331.3972 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 331.3972 463.5223)\\\" x=\\\"0 5 7.28\\\">via</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 344.239 472.741 L 348.239 472.741 L 348.239 460.741 L 344.239 460.741 L 344.239 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 344.239 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 347.564 472.741 L 375.564 472.741 L 375.564 460.741 L 347.564 460.741 L 347.564 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 347.564 463.5223)\\\" x=\\\"0 6.67 13.89 21.11 23.89\\\">ACH,&quot;</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 375.0055 472.741 L 379.0055 472.741 L 379.0055 460.741 L 375.0055 460.741 L 375.0055 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.0054 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 378.3305 472.741 L 392.3305 472.741 L 392.3305 460.741 L 378.3305 460.741 L 378.3305 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 378.3305 463.5223)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 392.2319 472.741 L 396.2319 472.741 L 396.2319 460.741 L 392.2319 460.741 L 392.2319 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 392.2319 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 395.557 472.741 L 445.557 472.741 L 445.557 460.741 L 395.557 460.741 L 395.557 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 395.557 463.5223)\\\" x=\\\"0 3.55 10.22 13.55 19.11 21.39 24.17 27.5 33.06 35.84 38.12 43.68\\\">&quot;Arbitration</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 444.8001 472.741 L 448.8001 472.741 L 448.8001 460.741 L 444.8001 460.741 L 444.8001 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 444.8001 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 448.1252 472.741 L 480.1252 472.741 L 480.1252 460.741 L 448.1252 460.741 L 448.1252 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 448.1252 463.5223)\\\" x=\\\"0 7.22 9.5 15.06 20.62 25.62\\\">Clause</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 479.3117 472.741 L 483.3117 472.741 L 483.3117 460.741 L 479.3117 460.741 L 479.3117 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 479.3117 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 482.6368 472.741 L 499.6368 472.741 L 499.6368 460.741 L 482.6368 460.741 L 482.6368 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 482.6368 463.5223)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 499.3214 472.741 L 503.3214 472.741 L 503.3214 460.741 L 499.3214 460.741 L 499.3214 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.3214 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 502.6465 472.741 L 534.6465 472.741 L 534.6465 460.741 L 502.6465 460.741 L 502.6465 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 502.6465 463.5223)\\\" x=\\\"0 9.44 15 17.28 22.28 27.84\\\">Waiver</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 533.8184 472.741 L 537.8184 472.741 L 537.8184 460.741 L 533.8184 460.741 L 533.8184 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 533.8183 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 537.1434 472.741 L 546.1434 472.741 L 546.1434 460.741 L 537.1434 460.741 L 537.1434 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 537.1434 463.5223)\\\" x=\\\"0 5.56\\\">of</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 545.4833 472.741 L 549.4833 472.741 L 549.4833 460.741 L 545.4833 460.741 L 545.4833 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 545.4833 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 548.8083 472.741 L 567.8083 472.741 L 567.8083 460.741 L 548.8083 460.741 L 548.8083 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 548.8083 463.5223)\\\" x=\\\"0 5 10.56 13.89\\\">Jury</text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 567.7 472.741 L 570.7 472.741 L 570.7 460.741 L 567.7 460.741 L 567.7 472.741 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.6999 463.5223)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip1-2)\\\" fill=\\\"#e8e8f8\\\" stroke=\\\"none\\\" d=\\\"M 40.7 461.4227 L 187.7 461.4227 L 187.7 449.4227 L 40.7 449.4227 L 40.7 461.4227 z \\\"/><g clip-path=\\\"url(#clip1-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 452.2039)\\\" x=\\\"0 6.11 9.44 11.72 17.28 19.56 22.34 25.89 28.55 34.11 39.67 45.23 47.89 50.67 56.23 61.79 64.45 70.01 72.79 78.35 83.91 87.24 89.9 92.68 98.24 101.57 109.9 114.9 117.56 123.12 128.68 130.96 136.52 143.74\\\">Trial,&quot; and the other terms below.</text></g><clipPath id=\\\"clip1-3\\\"><path d=\\\"M 35 404 L 574 404 L 574 449 L 35 449 L 35 404 z \\\"/></clipPath><g clip-path=\\\"url(#clip1-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 435.7132)\\\" x=\\\"0 7.22 12.78 17.78 20.56 26.12 34.45 40.01 43.34 46 52.67 54.95 60.51 66.07 71.63 74.41 79.97 83.3 88.86\\\">Customer Signature:</text></g><clipPath id=\\\"clip1-4\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip1-4)\\\" fill=\\\"#fff\\\" stroke=\\\"none\\\" d=\\\"M 409.8 425.0359 L 439.8433 425.0359 L 439.8433 417.0244 L 409.8 417.0244 L 409.8 425.0359 z \\\"/><clipPath id=\\\"clip1-5\\\"><path d=\\\"M 409 417 L 440 417 L 440 426 L 409 426 L 409 417 z \\\"/></clipPath><path clip-path=\\\"url(#clip1-5)\\\" fill=\\\"#fff\\\" stroke=\\\"none\\\" d=\\\"M 409.8 425.0359 L 439.55 425.0359 L 439.55 423.9041 L 409.8 423.9041 L 409.8 425.0359 z \\\"/><path clip-path=\\\"url(#clip1-5)\\\" fill=\\\"#fff\\\" stroke=\\\"none\\\" d=\\\"M 409.8 425.0359 L 416.8 425.0359 L 416.8 423.0359 L 409.8 423.0359 L 409.8 425.0359 z \\\"/><g clip-path=\\\"url(#clip1-5)\\\"><text stroke=\\\"none\\\" fill=\\\"#fff\\\" style=\\\"font-family:f1-2; font-size:0.75pt\\\" transform=\\\"matrix(1 0 0 -1 409.8 424.1141)\\\" x=\\\"0 0.722 1.5 2.222 2.944 3.496 4.163 4.996 5.663 5.941\\\">DOCU_EMAIL</text></g><clipPath id=\\\"clip1-6\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip1-6)\\\" fill=\\\"#fff\\\" stroke=\\\"none\\\" d=\\\"M 164.15 417.4676 L 192.2025 417.4676 L 192.2025 406.447 L 164.15 406.447 L 164.15 417.4676 z \\\"/><clipPath id=\\\"clip1-7\\\"><path d=\\\"M 164 407 L 192 407 L 192 418 L 164 418 L 164 407 z \\\"/></clipPath><g clip-path=\\\"url(#clip1-7)\\\"><text stroke=\\\"none\\\" fill=\\\"#fff\\\" style=\\\"font-family:f1-2; font-size:0.75pt\\\" transform=\\\"matrix(1 0 0 -1 164.15 416.5457)\\\" x=\\\"0 0.722 1.5 2.222 2.944 3.496 4.163 4.441 5.219\\\">DOCU_SIGN</text></g><clipPath id=\\\"clip1-8\\\"><path d=\\\"M 35 343 L 389 343 L 389 405 L 35 405 L 35 343 z \\\"/></clipPath><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 392.5858)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 57.9314 392.5858)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 62.5791 392.5858)\\\" x=\\\"0 5.56 11.12 16.68 21.68\\\">Lease</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 89.8252 392.5858)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 94.4728 392.5858)\\\" x=\\\"0 7.22 12.78 21.11 26.67 32.23 37.79 42.79 44.7\\\">Company&apos;s</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 144.1798 392.5858)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.8275 392.5858)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 28.35 30.63 35.63 41.19\\\">authorized</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 195.5853 392.5858)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 200.2329 392.5858)\\\" x=\\\"0 5 7.28 12.84 18.4 23.96 26.74 32.3 35.63\\\">signature</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 241.4292 392.5858)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 246.0768 392.5858)\\\" x=\\\"0 2.28 7.84 13.4 15.68 20.68 26.24 29.02 34.58\\\">indicates</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 285.6618 392.5858)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 290.3094 392.5858)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 304.2108 392.5858)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 308.8584 392.5858)\\\" x=\\\"0 5.56 11.12 16.68 21.68\\\">Lease</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 336.1045 392.5858)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 340.7521 392.5858)\\\" x=\\\"0 7.22 12.78 21.11 26.67 32.23 37.79\\\">Company</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.55 392.5858)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.7 381.2675)\\\" x=\\\"0 5.56 11.12\\\">has</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 56.823 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 59.5613 381.2675)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.68 29.46 35.02\\\">accepted</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 100.1472 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 102.8854 381.2675)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 116.7868 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 119.525 381.2675)\\\" x=\\\"0 2.78 8.34 11.67 20 25\\\">terms,</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 147.3033 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 150.0416 381.2675)\\\" x=\\\"0 5 10.56 16.12 21.68 23.96 26.74 29.02 34.58 40.14\\\">conditions</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 195.1881 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 197.9263 381.2675)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 214.6109 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 217.3491 381.2675)\\\" x=\\\"0 5.56 11.12 13.4 15.68 21.24 26.8 29.58 31.86 37.42 42.98\\\">obligations</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 265.3374 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 268.0756 381.2675)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.4154 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 279.1537 381.2675)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 293.055 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 295.7933 381.2675)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 344.7093 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 347.4475 381.2675)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 364.1321 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 366.8703 381.2675)\\\" x=\\\"0 2.78 8.34 13.9\\\">that</text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.55 381.2675)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.7 369.9491)\\\" x=\\\"0 2.78 8.34 13.9 16.56 22.12 27.68 33.24 38.24 43.8 46.46 53.68 59.24 67.57 73.13 78.69 84.25 89.25 91.91 97.47 103.03 106.36 111.92 117.48 122.48 125.14 127.92 133.48 136.14 138.92 144.48 146.76 151.76 154.42 161.09 166.65 169.98 175.54 181.1 189.43 194.99 200.55 203.33\\\">the Lease Company agrees to this Agreement.</text></g><clipPath id=\\\"clip1-10\\\"><path d=\\\"M 388 343 L 574 343 L 574 405 L 388 405 L 388 343 z \\\"/></clipPath><g clip-path=\\\"url(#clip1-10)\\\"><g transform=\\\"matrix(0.75 0 0 -0.7619 416.525 401.8046)\\\"><image xlink:href=\\\"data:image/png;base64,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\\\" width=\\\"172\\\" height=\\\"42\\\" id=\\\"img43-0-9\\\"/></g></g><g clip-path=\\\"url(#clip1-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 394.35 359.0858)\\\" x=\\\"0 6.67 12.23 17.79 23.35 26.01 33.23 39.34 47.12 49.78 55.34 60.9 68.12 70.78 77.45 82.45 85.23 87.89 96.22 101.78 104.56 107.34 110 116.67 120 125.56 132.78 138.34 140.62 146.18\\\">Snap RTO LLC By: Matt Browning</text></g><g clip-path=\\\"url(#clip1-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 394.35 347.7675)\\\" x=\\\"0 6.11 8.39 11.17 13.45 19.01 21.79 24.45 31.67 39.45\\\">Title: COO</text></g><clipPath id=\\\"clip1-11\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 770.2 L 573.6 770.2 L 573.6 769.2 L 34.8 769.2 L 34.8 770.2 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.6 769.2 L 573.6 769.2 L 573.6 487.5594 L 572.6 487.5594 L 572.6 769.2 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 769.2 L 35.8 769.2 L 35.8 487.5594 L 34.8 487.5594 L 34.8 769.2 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 487.5594 L 573.6 487.5594 L 573.6 486.5594 L 34.8 486.5594 L 34.8 487.5594 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.6 486.5594 L 573.6 486.5594 L 573.6 448.6043 L 572.6 448.6043 L 572.6 486.5594 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 486.5594 L 35.8 486.5594 L 35.8 448.6043 L 34.8 448.6043 L 34.8 486.5594 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 448.6043 L 573.6 448.6043 L 573.6 447.6043 L 34.8 447.6043 L 34.8 448.6043 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.6 447.6043 L 573.6 447.6043 L 573.6 405.3046 L 572.6 405.3046 L 572.6 447.6043 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 447.6043 L 35.8 447.6043 L 35.8 405.3046 L 34.8 405.3046 L 34.8 447.6043 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 405.3046 L 389.45 405.3046 L 389.45 404.3046 L 34.8 404.3046 L 34.8 405.3046 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 344.1679 L 389.45 344.1679 L 389.45 343.1679 L 34.8 343.1679 L 34.8 344.1679 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.8 404.3046 L 35.8 404.3046 L 35.8 344.1679 L 34.8 344.1679 L 34.8 404.3046 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 389.45 405.3046 L 573.6 405.3046 L 573.6 404.3046 L 389.45 404.3046 L 389.45 405.3046 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 389.45 344.1679 L 573.6 344.1679 L 573.6 343.1679 L 389.45 343.1679 L 389.45 344.1679 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.6 404.3046 L 573.6 404.3046 L 573.6 344.1679 L 572.6 344.1679 L 572.6 404.3046 z \\\"/><path clip-path=\\\"url(#clip1-11)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 388.45 404.3046 L 389.45 404.3046 L 389.45 344.1679 L 388.45 344.1679 L 388.45 404.3046 z \\\"/><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 331.4491)\\\" x=\\\"0 7.22 15 21.11 23.89 31.11\\\">NOTICE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 70.8783 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 73.8798 331.4491)\\\" x=\\\"0 6.11\\\">TO</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 87.7666 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 90.7681 331.4491)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 110.7681 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 113.7696 331.4491)\\\" x=\\\"0 7.22 15 22.22 28.89 36.11 44.44 51.11 58.33\\\">CONSUMER:</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 174.8829 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 177.8844 331.4491)\\\" x=\\\"0 6.67 14.45\\\">YOU</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 199.5543 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 202.5558 331.4491)\\\" x=\\\"0 7.22 13.89 20.56\\\">HAVE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 229.7873 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 232.7888 331.4491)\\\" x=\\\"0 7.22\\\">NO</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.7888 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 250.7903 331.4491)\\\" x=\\\"0 7.78 17.22 24.44 31.11 38.33 45 52.22 55\\\">OWNERSHIP</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.4603 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 315.4618 331.4491)\\\" x=\\\"0 7.22 10 17.78 25 31.11\\\">RIGHTS</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 353.2401 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 356.2416 331.4491)\\\" x=\\\"0 2.78\\\">IN</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 366.2416 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 369.2431 331.4491)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 389.2431 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 392.2447 331.4491)\\\" x=\\\"0 6.67 13.89 21.67 28.34 35.01 42.23 48.34\\\">PROPERTY</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.2544 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 450.256 331.4491)\\\" x=\\\"0 7.22 14.44 20 26.67 33.34\\\">UNLESS</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 490.2706 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 493.2721 331.4491)\\\" x=\\\"0 6.67 13.89\\\">AND</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 514.3854 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 517.3869 331.4491)\\\" x=\\\"0 7.22 14.44 20.55 23.33\\\">UNTIL</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 546.2785 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 549.2801 331.4491)\\\" x=\\\"0 6.67 14.45\\\">YOU</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 331.4491)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 320.1308)\\\" x=\\\"0 6.67 12.23 18.9 26.12\\\">ELECT</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 65.3315 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 71.359 320.1308)\\\" x=\\\"0 6.11\\\">TO</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 85.2457 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 91.2732 320.1308)\\\" x=\\\"0 6.67 13.34 20.56 28.34 36.67\\\">BECOME</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 134.613 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 140.6406 320.1308)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.6406 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 166.6681 320.1308)\\\" x=\\\"0 7.78 17.22 24.44 31.11\\\">OWNER</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 204.9982 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 211.0257 320.1308)\\\" x=\\\"0 7.78\\\">OF</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 224.9124 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 230.9399 320.1308)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 250.9399 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 256.9675 320.1308)\\\" x=\\\"0 6.67 13.89 21.67 28.34 35.01 42.23 48.34\\\">PROPERTY</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 311.9772 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 318.0048 320.1308)\\\" x=\\\"0 6.67 12.78 18.89 25.56\\\">AFTER</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 350.7831 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 356.8106 320.1308)\\\" x=\\\"0 8.33 15 21.67 24.45 31.67\\\">MAKING</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 396.2588 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 402.2864 320.1308)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 422.2864 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 428.3139 320.1308)\\\" x=\\\"0 7.22 13.89 21.11 27.78 34.45 41.12 47.79 55.01\\\">NECESSARY</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.9984 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 496.026 320.1308)\\\" x=\\\"0 6.67 13.34 20.01 28.34 35.01 42.23 48.34\\\">PAYMENTS</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.0357 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0633 320.1308)\\\" x=\\\"0 6.11\\\">TO</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 320.1308)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 308.8124)\\\" x=\\\"0 6.67 13.89 21.67 28.89 31.67 38.89\\\">ACQUIRE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 78.6615 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 82.9084 308.8124)\\\" x=\\\"0 7.78 17.22 24.44 31.11 38.33 45 52.22 55 61.67\\\">OWNERSHIP,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 147.3567 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 151.6035 308.8124)\\\" x=\\\"0 6.67 13.89\\\">AND</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 172.7168 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 176.9637 308.8124)\\\" x=\\\"0 6.67 14.45\\\">YOU</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 198.6336 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 202.8805 308.8124)\\\" x=\\\"0 7.22 13.89 20.56\\\">HAVE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 230.112 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 234.3589 308.8124)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 254.3589 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 258.6057 308.8124)\\\" x=\\\"0 5.56 12.23 20.01 26.68\\\">LEGAL</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.8469 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 295.0938 308.8124)\\\" x=\\\"0 6.67 13.89 20 27.22 35 42.22 45 51.11\\\">AUTHORITY</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 352.8722 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 357.119 308.8124)\\\" x=\\\"0 6.11\\\">TO</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.0058 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 375.2527 308.8124)\\\" x=\\\"0 6.67 13.89 21.11 27.78 34.45\\\">ACCEPT</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 415.8142 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 420.0611 308.8124)\\\" x=\\\"0 6.11 8.89 15 20.56\\\">TITLE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.2876 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 451.5345 308.8124)\\\" x=\\\"0 6.11\\\">TO</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 465.4212 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 469.6681 308.8124)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.6681 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 493.915 308.8124)\\\" x=\\\"0 6.67 13.89 21.67 28.34 35.01 42.23 48.34 55.01\\\">PROPERTY.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.7031 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 555.95 308.8124)\\\" x=\\\"0 7.22\\\">DO</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 308.8124)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 297.494)\\\" x=\\\"0 7.22 15\\\">NOT</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 54.2084 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 57.2636 297.494)\\\" x=\\\"0 6.67 9.45 17.23\\\">SIGN</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 81.7118 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 84.767 297.494)\\\" x=\\\"0 6.11 13.33 16.11\\\">THIS</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 107.5453 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 110.6005 297.494)\\\" x=\\\"0 6.67 14.45 21.67 28.34 35.01 43.34 50.01 57.23\\\">AGREEMENT</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 173.9404 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 176.9956 297.494)\\\" x=\\\"0 6.67 13.34 19.45 27.23 34.45\\\">BEFORE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 218.1137 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 221.1689 297.494)\\\" x=\\\"0 6.67 14.45\\\">YOU</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 242.8389 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 245.8941 297.494)\\\" x=\\\"0 7.22 13.89 20.56\\\">READ</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 273.6773 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 276.7325 297.494)\\\" x=\\\"0 6.67 12.23\\\">ALL</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 294.5254 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 297.5806 297.494)\\\" x=\\\"0 6.67 13.34 21.12 27.79\\\">PAGES</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 332.0386 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 335.0938 297.494)\\\" x=\\\"0 7.78\\\">OF</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.9805 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 352.0357 297.494)\\\" x=\\\"0 2.78\\\">IT</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 360.9225 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 363.9777 297.494)\\\" x=\\\"0 7.78\\\">OR</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 378.9777 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 382.0329 297.494)\\\" x=\\\"0 2.78\\\">IF</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 390.9196 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 393.9748 297.494)\\\" x=\\\"0 2.78\\\">IT</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.8615 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 405.9167 297.494)\\\" x=\\\"0 7.22 15 22.22 28.33 35 37.78 45\\\">CONTAINS</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 457.5866 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 460.6418 297.494)\\\" x=\\\"0 6.67 13.89\\\">ANY</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 481.2033 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 484.2585 297.494)\\\" x=\\\"0 6.67 12.23 18.9 26.12\\\">BLANK</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 517.0515 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 520.1067 297.494)\\\" x=\\\"0 6.67 13.34 20.01 27.23\\\">SPACE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 554.0081 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0633 297.494)\\\" x=\\\"0 6.11\\\">TO</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 297.494)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 286.1757)\\\" x=\\\"0 6.67\\\">BE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 46.4398 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 49.3908 286.1757)\\\" x=\\\"0 6.11 8.89 14.45 20.01 26.68\\\">FILLED</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 83.2922 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 86.2431 286.1757)\\\" x=\\\"0 2.78 10\\\">IN.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 99.0214 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 101.9724 286.1757)\\\" x=\\\"0 6.67 14.45\\\">YOU</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 123.6423 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 126.5933 286.1757)\\\" x=\\\"0 6.67 13.89\\\">ARE</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 147.1548 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 150.1057 286.1757)\\\" x=\\\"0 6.67 13.89 20 22.78 28.89 34.45 41.12\\\">ENTITLED</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 198.4456 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 201.3965 286.1757)\\\" x=\\\"0 6.11\\\">TO</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 215.2832 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 218.2342 286.1757)\\\" x=\\\"0\\\">A</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 224.9041 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 227.8551 286.1757)\\\" x=\\\"0 7.22 15 23.33 30 35.56 42.23 48.34 55.01 60.57\\\">COMPLETELY</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 295.0963 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 298.0472 286.1757)\\\" x=\\\"0 6.11 8.89 14.45 20.01 26.68 33.9 37.23 40.01\\\">FILLED-IN</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 345.2787 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 348.2296 286.1757)\\\" x=\\\"0 7.22 15 21.67\\\">COPY</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 376.5695 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 379.5204 286.1757)\\\" x=\\\"0 7.78\\\">OF</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.4071 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 396.3581 286.1757)\\\" x=\\\"0 6.11 13.33 16.11\\\">THIS</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.1364 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 422.0874 286.1757)\\\" x=\\\"0 6.67 14.45 21.67 28.34 35.01 43.34 50.01 57.23\\\">AGREEMENT</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 485.4272 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 488.3781 286.1757)\\\" x=\\\"0 9.44 16.66 23.33\\\">WHEN</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 518.9299 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 521.8809 286.1757)\\\" x=\\\"0 6.67 14.45\\\">YOU</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 543.5508 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 546.5017 286.1757)\\\" x=\\\"0 6.67 9.45 17.23\\\">SIGN</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 286.1757)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 274.8573)\\\" x=\\\"0 2.78 8.89\\\">IT.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 261.539)\\\" x=\\\"0 6.11 12.78 20 28.33 31.11 38.33 45 51.11 53.89 61.67 68.89\\\">TERMINATION.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 104.765 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 108.0706 261.539)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 125.8636 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 129.1692 261.539)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 148.0608 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 151.3663 261.539)\\\" x=\\\"0 2.78 8.34 11.67 20 22.28 27.84 33.4 36.18\\\">terminate</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 193.1095 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 196.4151 261.539)\\\" x=\\\"0 3.33 8.89 14.45 20.01\\\">(end)</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 219.7598 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 223.0654 261.539)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.6855 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 241.9911 261.539)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.9071 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 294.2127 261.539)\\\" x=\\\"0 5.56\\\">at</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.5525 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 305.8581 261.539)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.7595 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 323.065 261.539)\\\" x=\\\"0 5.56 11.12\\\">end</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 339.7496 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 343.0552 261.539)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.395 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 354.7006 261.539)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 370.8236 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 374.1292 261.539)\\\" x=\\\"0 2.28 7.84 13.4 18.4\\\">lease</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 398.0941 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 401.3996 261.539)\\\" x=\\\"0 2.78 8.34 11.67\\\">term</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 421.3996 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 424.7052 261.539)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 435.2667 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 438.5723 261.539)\\\" x=\\\"0 5 10.56 13.34 15.62 20.62 23.4 28.4 30.68 36.24\\\">satisfying</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 480.3741 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 483.6796 261.539)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 497.581 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 500.8866 261.539)\\\" x=\\\"0 3.33 8.89 14.45 20.01 22.29 25.62 31.18 39.51 45.07 50.63 53.41\\\">requirements</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.3046 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 562.6101 261.539)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 261.539)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 250.2206)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 48.7201 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 51.7761 250.2206)\\\" x=\\\"0 5.56 11.12 14.45 20.01 25.57 28.9 34.46 40.02 45.58\\\">paragraph.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 100.1453 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 103.2013 250.2206)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 120.9943 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 124.0503 250.2206)\\\" x=\\\"0 8.33 13.89 18.89\\\">must</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 145.7202 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.7762 250.2206)\\\" x=\\\"0 5.56 8.89 14.45 22.78 28.34 31.12 33.4\\\">promptly</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 187.1795 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 190.2355 250.2206)\\\" x=\\\"0 3.33 8.89 11.67 17.23 20.56\\\">return</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 216.3586 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 219.4146 250.2206)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.3159 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 236.3719 250.2206)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 274.1649 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 277.2209 250.2206)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 285.5608 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 288.6168 250.2206)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.1783 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 302.2343 250.2206)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 310.0761 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 313.1321 250.2206)\\\" x=\\\"0 5.56 10.56 15.56 21.12 24.45 30.01 35.57 41.13 46.13\\\">accordance</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 364.8313 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 367.8874 250.2206)\\\" x=\\\"0 7.22 9.5 12.28\\\">with</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 385.7291 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 388.7852 250.2206)\\\" x=\\\"0 5.56 11.12\\\">our</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.2383 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 406.2943 250.2206)\\\" x=\\\"0 5.56 7.84 11.17 16.73 21.73 24.51 26.79 32.35 37.91\\\">directions</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 449.2093 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 452.2653 250.2206)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.9499 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 472.0059 250.2206)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 488.129 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 491.185 250.2206)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57 33.35\\\">amounts</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.5395 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 532.5955 250.2206)\\\" x=\\\"0 5.56 10.56 15.56 18.89 24.45 30.01 35.57\\\">accrued.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 250.2206)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 238.9022)\\\" x=\\\"0 9.44\\\">We</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 48.1 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 51.2677 238.9022)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 70.1593 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 73.327 238.9022)\\\" x=\\\"0 2.78 8.34 11.67 20 22.28 27.84 33.4 36.18\\\">terminate</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 115.0702 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 118.2379 238.9022)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 133.858 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 137.0257 238.9022)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 185.9417 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 189.1094 238.9022)\\\" x=\\\"0 5.56\\\">at</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 197.4493 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 200.617 238.9022)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 216.74 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 219.9077 238.9022)\\\" x=\\\"0 2.78 5.06 13.39\\\">time</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.8579 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 242.0256 238.9022)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.0842 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 250.2519 238.9022)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 266.375 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 269.5427 238.9022)\\\" x=\\\"0 5.56 8.89\\\">are</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 283.9958 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 287.1635 238.9022)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 295.0053 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 298.173 238.9022)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 27.3\\\">default</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 328.256 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 331.4237 238.9022)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 339.7636 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 342.9313 238.9022)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 362.3844 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 365.5521 238.9022)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.9066 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.0743 238.9022)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 415.9659 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 419.1336 238.9022)\\\" x=\\\"0 5.56 8.34 13.9 19.46\\\">other</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 441.9266 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 445.0943 238.9022)\\\" x=\\\"0 5.56 11.12 13.4 15.68 21.24 26.8 29.58 31.86 37.42 42.98 47.98\\\">obligations.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 495.8609 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 499.0286 238.9022)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 516.8216 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 519.9893 238.9022)\\\" x=\\\"0 8.33 13.89 18.89\\\">must</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 541.6592 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 544.8269 238.9022)\\\" x=\\\"0 3.33 8.89 11.67 17.23 20.56\\\">return</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 238.9022)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 227.5839)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.0014 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 50.6007 227.5839)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 88.3937 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 91.9931 227.5839)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 100.3329 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 103.9323 227.5839)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 117.8336 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 121.433 227.5839)\\\" x=\\\"0 5.56 7.84 13.4 18.4\\\">place</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 145.3978 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.9972 227.5839)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 161.7804 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 165.3797 227.5839)\\\" x=\\\"0 5.56 11.12 16.12 18.4 23.96 29.52 35.08 37.86 43.42\\\">designate.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 211.5858 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 215.1852 227.5839)\\\" x=\\\"0 7.22 12.78 18.34\\\">Upon</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 239.0914 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 242.6908 227.5839)\\\" x=\\\"0 2.78 8.34 11.67 20 22.28 27.84 33.4 36.18 38.46 44.02 49.58\\\">termination,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 295.0541 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 298.6534 227.5839)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 314.7765 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 318.3758 227.5839)\\\" x=\\\"0 5.56 11.12 14.45 20.01\\\">agree</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 343.952 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 347.5513 227.5839)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.8912 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 359.4905 227.5839)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.6136 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 379.2129 227.5839)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.1143 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 396.7137 227.5839)\\\" x=\\\"0 2.78 8.34 10.62 12.9 18.46 25.68 27.96 33.52\\\">following</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 435.8006 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 439.3999 227.5839)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01 30.57 35.57\\\">charges:</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 477.7544 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 481.3538 227.5839)\\\" x=\\\"0 6.67 12.23\\\">Any</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 498.5852 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 502.1846 227.5839)\\\" x=\\\"0 5.56 11.12 16.68 22.24 24.52\\\">unpaid</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 532.2725 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 535.8718 227.5839)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 227.5839)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 216.2655)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46 44.46\\\">Payments,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 80.3412 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 83.8455 216.2655)\\\" x=\\\"0 2.78 8.34 13.9\\\">fees</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 102.7469 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 106.2512 216.2655)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 122.9358 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 126.4401 216.2655)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01 30.57 35.57\\\">charges,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 164.7946 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 168.299 216.2655)\\\" x=\\\"0 5.56 7.84 13.4\\\">plus</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 186.7023 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 190.2066 216.2655)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 206.3297 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 209.834 216.2655)\\\" x=\\\"0 5.56 8.34 11.12 13.4 18.4 20.68 26.24\\\">official</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.3545 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 241.8588 216.2655)\\\" x=\\\"0 2.78 8.34 13.9\\\">fees</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 260.7602 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 264.2645 216.2655)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.9491 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 284.4534 216.2655)\\\" x=\\\"0 2.78 8.34 13.34 18.9\\\">taxes</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.3548 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 311.8591 216.2655)\\\" x=\\\"0 2.28 10.61 16.17 21.73 26.73 32.29\\\">imposed</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 349.7156 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 353.2199 216.2655)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 361.0617 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 364.566 216.2655)\\\" x=\\\"0 5 10.56 16.12 21.68 27.24 32.24 35.02 37.3 42.86\\\">connection</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 412.9938 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 416.4981 216.2655)\\\" x=\\\"0 7.22 9.5 12.28\\\">with</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.3399 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 437.8442 216.2655)\\\" x=\\\"0 2.78 8.34 11.67 20 22.28 27.84 33.4 36.18 38.46 44.02 49.58\\\">termination,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 490.2075 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 493.7118 216.2655)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24 28.52 34.08 39.64\\\">including,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 536.1386 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 539.6429 216.2655)\\\" x=\\\"0 5.56 11.12\\\">but</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.5443 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0486 216.2655)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 216.2655)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 204.9472)\\\" x=\\\"0 2.28 4.56 12.89 15.17 17.95 23.51\\\">limited</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 62.1723 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 64.9349 204.9472)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 73.2747 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 76.0373 204.9472)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 92.1604 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 94.923 204.9472)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64\\\">applicable</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 140.133 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 142.8956 204.9472)\\\" x=\\\"0 2.78 5.06 10.62 16.18 21.18\\\">fines,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 166.8555 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 169.6182 204.9472)\\\" x=\\\"0 5 10.56 13.89 18.89 24.45 30.01 33.34 38.9 44.46 49.46\\\">surcharges,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 221.8642 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 224.6269 204.9472)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 241.3114 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 244.0741 204.9472)\\\" x=\\\"0 2.78 8.34 13.34 18.9 23.9\\\">taxes.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 270.7537 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 273.5164 204.9472)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.3093 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 294.0719 204.9472)\\\" x=\\\"0 8.33 13.89 18.89\\\">must</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 315.7419 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 318.5045 204.9472)\\\" x=\\\"0 5.56 7.84 12.84\\\">also</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 336.9078 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 339.6704 204.9472)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.7935 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 358.5561 204.9472)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 374.6791 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 377.4417 204.9472)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.12 31.12 33.4 38.4\\\">excessive</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 421.4066 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 424.1692 204.9472)\\\" x=\\\"0 7.22 12.78 18.34\\\">wear</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 445.844 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 448.6066 204.9472)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 465.2912 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 468.0538 204.9472)\\\" x=\\\"0 5.56 10.56\\\">use</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.1769 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 486.9395 204.9472)\\\" x=\\\"0 2.78 8.34 13.9\\\">fees</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 505.8408 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 508.6035 204.9472)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 519.165 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 521.9276 204.9472)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29 32.85\\\">provided</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 560.3456 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 563.1082 204.9472)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 204.9472)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 193.6288)\\\" x=\\\"0 2.78 8.34 10.62 15.62 18.28 24.95 30.51 33.84 39.4 44.96 53.29 58.85 64.41 67.19 69.97 72.63 77.63 83.19 88.75 91.03 96.59 101.59 104.37 107.03 109.81 115.37 118.03 120.31 122.59 130.92 133.2 135.98 141.54 144.32 146.6 152.16 157.72 162.72 165.38 170.94 173.72 176.38 181.94 187.5 193.06 195.34 197.62 202.62 208.18 213.74 216.02 221.58 224.24 226.52 232.08 239.3\\\">this Agreement, subject to limitations of applicable law.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 180.3105)\\\" x=\\\"0 8.33 15 17.78 25 31.11 37.78 45 51.67 58.89 66.11 72.78\\\">MAINTENANCE.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 108.6615 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 111.6829 180.3105)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 129.4758 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 132.4972 180.3105)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.5597 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 149.581 180.3105)\\\" x=\\\"0 5 10.56 16.12\\\">keep</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 171.2656 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 174.287 180.3105)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 188.1883 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 191.2097 180.3105)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 229.0026 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 232.024 180.3105)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 239.8658 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 242.8871 180.3105)\\\" x=\\\"0 5.56 11.12 16.68\\\">good</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 265.1332 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 268.1546 180.3105)\\\" x=\\\"0 7.22 12.78 16.11 21.11 23.39 28.95\\\">working</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.6712 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 305.6925 180.3105)\\\" x=\\\"0 5.56 8.89 14.45 20.01\\\">order</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.0373 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 332.0586 180.3105)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.7432 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 351.7645 180.3105)\\\" x=\\\"0 3.33 8.89 14.45 20.01 22.29 25.62\\\">repair.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.1679 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 383.1892 180.3105)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 400.9822 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 404.0035 180.3105)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 418.066 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 421.0874 180.3105)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 437.2104 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 440.2318 180.3105)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.3548 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 459.3762 180.3105)\\\" x=\\\"0 5.56 11.12 16.68 20.01 25.57 28.35 30.63 36.19\\\">operating</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.134 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 504.1553 180.3105)\\\" x=\\\"0 5 10.56 15.56 18.34 23.34\\\">costs.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 530.2735 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 533.2948 180.3105)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.0878 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 554.1092 180.3105)\\\" x=\\\"0 7.22 9.5 11.78 14.06\\\">will,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 180.3105)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 168.9921)\\\" x=\\\"0 5.56\\\">at</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 41.4398 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 44.1473 168.9921)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 63.6004 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 66.3078 168.9921)\\\" x=\\\"0 5.56 10.56 16.12 21.68 27.24 32.24 37.8\\\">expense,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 106.8938 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 109.6012 168.9921)\\\" x=\\\"0 5 10.56 13.89 18.89 21.17 26.17\\\">service</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 141.3346 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 144.042 168.9921)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 157.9434 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 160.6508 168.9921)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 198.4438 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 201.1512 168.9921)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 208.993 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 211.7005 168.9921)\\\" x=\\\"0 5.56 10.56 15.56 21.12 24.45 30.01 35.57 41.13 46.13\\\">accordance</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 263.3997 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 266.1071 168.9921)\\\" x=\\\"0 7.22 9.5 12.28\\\">with</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 283.9489 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 286.6563 168.9921)\\\" x=\\\"0 8.33 13.89 19.45 25.01 27.79 33.35 38.35 41.13 46.69 50.02 55.58\\\">manufacturer</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 345.5723 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 348.2798 168.9921)\\\" x=\\\"0 5 7.78 13.34 18.9 24.46 30.02 33.35 38.91 43.91\\\">standards.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 394.9741 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 397.6815 168.9921)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.2382 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 405.9456 168.9921)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.847 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 422.5544 168.9921)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 460.3474 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 463.0548 168.9921)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 470.3351 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 473.0425 168.9921)\\\" x=\\\"0 3.33 8.89 13.89 19.45 21.73 24.01 29.57 35.13\\\">recalled,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 510.9576 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 513.665 168.9921)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.788 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 532.4955 168.9921)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 546.558 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 549.2654 168.9921)\\\" x=\\\"0 5.56 11.12 16.12\\\">have</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 168.9921)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 157.6738)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.0014 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 51.506 157.6738)\\\" x=\\\"0 3.33 8.89 13.89 19.45 21.73\\\">recall</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 75.5196 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 80.0242 157.6738)\\\" x=\\\"0 3.33 8.89 14.45 20.01 22.29 25.62\\\">repairs</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 110.6492 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 115.1538 157.6738)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 124.0454 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 128.5499 157.6738)\\\" x=\\\"0 5 10.56 13.89 18.89 21.17 26.17\\\">service</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.2833 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 164.7879 157.6738)\\\" x=\\\"0 5.56 11.12 14.45 17.23 22.79 26.12 34.45 40.01 45.57\\\">performed.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 213.1424 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 217.647 157.6738)\\\" x=\\\"0 2.78\\\">In</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.9868 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 230.4914 157.6738)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 244.3928 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 248.8974 157.6738)\\\" x=\\\"0 5.56 10.56 16.12 21.68\\\">event</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 273.3603 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 277.8648 157.6738)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.7662 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 296.2708 157.6738)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 334.0637 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.5683 157.6738)\\\" x=\\\"0 5.56 11.12\\\">has</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 354.6914 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 359.1959 157.6738)\\\" x=\\\"0 8.33 13.89 18.89 24.45 30.01 35.57 37.85 42.85 48.41\\\">mechanical</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 409.8942 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 414.3988 157.6738)\\\" x=\\\"0 5.56 8.89 14.45 20.01 22.29 27.85 36.18 41.18\\\">problems,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 458.3636 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 462.8682 157.6738)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 478.9912 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 483.4958 157.6738)\\\" x=\\\"0 5.56 11.12 14.45 20.01\\\">agree</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.072 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 513.5766 157.6738)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.9164 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 526.421 157.6738)\\\" x=\\\"0 3.33 8.89 11.67 17.23 20.56\\\">return</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.544 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0486 157.6738)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 157.6738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 146.3554)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79 40.45 43.23 48.79 51.45 57.01 62.01 64.67 67.45 73.01 76.34 79 84.56 89.56 95.12 97.4 102.96 108.52 111.3 113.58 119.14 124.7 127.48 130.14 135.7 141.26 146.82 149.6 152.26 154.54 157.32 159.98 165.54 171.1 176.1 181.66 186.66 191.66 197.22 200.55 205.55 208.33 210.99 214.32 219.88 225.44 231 233.28 236.61\\\">Property to us for evaluation, and, if necessary, repair.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 133.037)\\\" x=\\\"0 6.67 12.78 19.45 26.67 33.89 40.56 47.78 55\\\">STANDARDS</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 94.7748 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 97.7681 133.037)\\\" x=\\\"0 6.11 13.89\\\">FOR</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 118.8765 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 121.8699 133.037)\\\" x=\\\"0 9.44 16.11 22.78\\\">WEAR</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 151.8699 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 154.8632 133.037)\\\" x=\\\"0 6.67 13.89\\\">AND</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 175.9765 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 178.9698 133.037)\\\" x=\\\"0 7.22 13.89 20.56\\\">USE.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 202.3096 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 205.303 133.037)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 223.0959 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 226.0893 133.037)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 244.9809 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 247.9742 133.037)\\\" x=\\\"0 5.56\\\">be</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.0972 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 262.0906 133.037)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01 30.57\\\">charged</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 298.2283 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 301.2216 133.037)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.8915 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 315.8849 133.037)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.12\\\">excess</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 347.0079 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 350.0012 133.037)\\\" x=\\\"0 7.22 12.78 18.34\\\">wear</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.676 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 374.6694 133.037)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 391.3539 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 394.3473 133.037)\\\" x=\\\"0 5.56 10.56\\\">use</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 410.4703 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 413.4636 133.037)\\\" x=\\\"0 7.22 12.78 18.34\\\">when</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 437.3699 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 440.3632 133.037)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.4863 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 459.4796 133.037)\\\" x=\\\"0 3.33 8.89 11.67 17.23 20.56\\\">return</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 485.6026 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 488.596 133.037)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 502.4973 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 505.4907 133.037)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 543.2836 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 546.277 133.037)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 554.6168 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.6101 133.037)\\\" x=\\\"0 5.56 10.56\\\">us.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 133.037)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 121.7187)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 50.3314 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 54.7254 121.7187)\\\" x=\\\"0 2.78 8.34 10.62 12.9 18.46 25.68 27.96 33.52\\\">following</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 93.8123 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 98.2062 121.7187)\\\" x=\\\"0 5 7.78 13.34 18.9 24.46 30.02 33.35 38.91\\\">standards</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 142.1222 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 146.5161 121.7187)\\\" x=\\\"0 5.56 11.12 16.68 18.96\\\">apply</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 170.4809 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 174.8748 121.7187)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 186.5447 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 190.9386 121.7187)\\\" x=\\\"0 5.56 11.12 13.9 19.46 22.79 31.12 33.4 38.96 41.24 46.8\\\">determining</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 243.3068 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 247.7007 121.7187)\\\" x=\\\"0 5.56 11.12 14.45 20.01 25.57 30.57 36.13 41.69 47.25 52.81 55.09\\\">unreasonable</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.3648 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 312.7587 121.7187)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 321.6503 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 326.0442 121.7187)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.12\\\">excess</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 357.1672 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 361.5611 121.7187)\\\" x=\\\"0 7.22 12.78 18.34\\\">wear</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.2359 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 387.6298 121.7187)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 404.3144 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 408.7083 121.7187)\\\" x=\\\"0 5.56 10.56 16.12\\\">use:</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 427.6097 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 432.0036 121.7187)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 449.7965 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 454.1904 121.7187)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.2529 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 472.6468 121.7187)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.5482 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 490.9421 121.7187)\\\" x=\\\"0 5.56 11.12 13.4 18.96\\\">paint</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.6853 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 517.0792 121.7187)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 525.9708 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 530.3647 121.7187)\\\" x=\\\"0 2.28 7.84 10.62 13.4 18.96\\\">letter</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.6547 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0486 121.7187)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 121.7187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 110.4003)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 70.893 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 75.8495 110.4003)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 84.7411 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 89.6976 110.4003)\\\" x=\\\"0 8.33 13.89 19.45 21.73 24.51\\\">modify</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 119.2094 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 124.1659 110.4003)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 140.2889 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 145.2455 110.4003)\\\" x=\\\"0 2.28 7.84 13.4 18.96 21.74 24.02 26.8 29.08 34.08 39.64 42.42 44.7 50.26\\\">identification</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 201.0707 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 206.0272 110.4003)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57\\\">number</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 239.9335 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 244.89 110.4003)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 253.2298 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 258.1864 110.4003)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 272.0877 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 277.0443 110.4003)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 317.6156 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 322.5721 110.4003)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 340.3651 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 345.3216 110.4003)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.3841 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 364.3407 110.4003)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 378.242 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 383.1985 110.4003)\\\" x=\\\"0 5.56 11.12 16.68\\\">add,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.6614 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.618 110.4003)\\\" x=\\\"0 3.33 8.89 17.22 22.78 27.78\\\">remove</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 440.9627 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 445.9192 110.4003)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.8108 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 459.7674 110.4003)\\\" x=\\\"0 8.33 13.89 19.45 21.73 24.51\\\">modify</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.2791 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 494.2356 110.4003)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 510.3587 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 515.3152 110.4003)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.12 31.12 36.68 40.01 42.29 47.85 52.85\\\">accessories,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 110.4003)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 99.082)\\\" x=\\\"0 5.56 11.12 16.68 18.96 24.52 32.85 38.41 43.97\\\">equipment</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 79.8578 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 83.9642 99.082)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 92.8558 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 96.9621 99.082)\\\" x=\\\"0 5.56 11.12 14.45 17.23\\\">parts</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 119.1936 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 123.2999 99.082)\\\" x=\\\"0 7.22 9.5 12.28 17.84 23.4 28.96\\\">without</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 155.0431 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 159.1494 99.082)\\\" x=\\\"0 5.56 11.12\\\">our</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 173.6025 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 177.7089 99.082)\\\" x=\\\"0 5.56 8.89 11.17 16.73\\\">prior</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 197.7724 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 201.8787 99.082)\\\" x=\\\"0 7.22 10.55 12.83 15.61 18.39 23.95\\\">written</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.3904 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 235.4968 99.082)\\\" x=\\\"0 5.56 11.12 14.45 22.78 25.06 30.06 35.06 37.34 42.9 48.46\\\">permission.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 286.7419 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 290.8482 99.082)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.0797 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 312.186 99.082)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 349.979 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 354.0853 99.082)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 368.1478 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 372.2542 99.082)\\\" x=\\\"0 5.56 11.12 13.9\\\">not:</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.9339 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 393.0402 99.082)\\\" x=\\\"0 7.22 12.78 17.78\\\">Have</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 416.3849 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 420.4913 99.082)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57 36.13\\\">damage,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 459.4073 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 463.5136 99.082)\\\" x=\\\"0 8.33 13.89 18.89 24.45 30.01 35.57 37.85 42.85 48.41\\\">mechanical</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 514.2119 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 518.3182 99.082)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 527.2098 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 531.3162 99.082)\\\" x=\\\"0 5.56 7.84 13.4 18.4 21.18 24.51 26.79 31.79 37.35\\\">electrical</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 99.082)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 87.7636)\\\" x=\\\"0 8.33 13.89 16.17 18.95 24.51 30.07 35.07 37.85 40.13 45.69\\\">malfunction</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 84.3549 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 87.8075 87.7636)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 98.369 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 101.8216 87.7636)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64 45.2\\\">applicable;</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 149.8099 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 153.2625 87.7636)\\\" x=\\\"0 5.56\\\">be</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 164.3855 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 167.8382 87.7636)\\\" x=\\\"0 2.78 8.34 11.67 17.23\\\">torn,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 187.8479 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 191.3005 87.7636)\\\" x=\\\"0 5.56 11.12 14.45 20.01 25.57 31.13\\\">burned,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.2165 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 228.6691 87.7636)\\\" x=\\\"0 5 7.78 13.34 15.62 21.18 26.74\\\">stained</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 260.9738 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 264.4264 87.7636)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 273.318 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 276.7706 87.7636)\\\" x=\\\"0 5 10.56 13.89 19.45 25.01 30.57 36.13 41.69\\\">shredded;</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 321.2482 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 324.7008 87.7636)\\\" x=\\\"0 5.56 11.12 16.12\\\">have</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 346.3853 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 349.8379 87.7636)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 365.961 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 369.4136 87.7636)\\\" x=\\\"0 5.56 11.12 16.68 19.46 24.46\\\">dents,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 396.6548 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 400.1074 87.7636)\\\" x=\\\"0 8.33 13.89 16.17 21.73\\\">mold,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 424.6191 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 428.0717 87.7636)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 436.9633 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 440.4159 87.7636)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57\\\">damage</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 476.5536 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 480.0062 87.7636)\\\" x=\\\"0 2.78 6.11 11.67\\\">from</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 500.0062 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 503.4588 87.7636)\\\" x=\\\"0 7.22 12.78 15.56 21.12 24.45\\\">water,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 530.6903 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 534.1429 87.7636)\\\" x=\\\"0 5 10.56 16.12 21.68\\\">sand,</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 558.6058 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 562.0584 87.7636)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 87.7636)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 76.4452)\\\" x=\\\"0 2.78 6.11 11.67 17.23 22.23 24.51 30.07 35.63 38.41 41.07 46.63 49.96 52.62 58.18 63.74 68.74 74.3 76.96 79.24 84.8 90.36 95.92 101.48 104.81 110.37 115.93 118.21 123.77 126.43 131.99 137.55 140.88 143.66 148.66 151.44 154.1 160.77 166.33 171.89 174.55 182.88 188.44 193.44 196.22 198.88 202.21 207.77 210.55 216.11 219.44 225 227.66 230.44 236 241.56 244.22 250.89 254.22 259.78 265.34 270.9 274.23 277.01 282.01 284.67 291.89 294.17 296.95 302.51 305.17 310.73 313.01 315.29 317.95 323.51 326.29 328.95 331.23 334.01 339.01 341.67 347.23 350.56 352.84 358.4 360.68 366.24 371.8 374.08 376.74 382.3 387.86 391.19 393.97 398.97\\\">freezing; or have inoperable parts. You must return the Property with all of its original parts.</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 36.5264)\\\" x=\\\"0 6.498 11.997 14.391 16.785 21.789 26.793 29.295 34.299 39.303 44.307 504 506.3906 508.7812 511.1719 513.5625 515.9531 518.3438 520.7344 523.125 525.5156\\\">UT  07/2019          </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 26.3398)\\\" x=\\\"0 6.003 11.007 16.011 21.015\\\">Page </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 55.8097 26.3398)\\\" x=\\\"0\\\">2</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.815 26.3398)\\\" x=\\\"0 2.394 7.398 9.9\\\"> of </text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f1-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 73.1021 26.3398)\\\" x=\\\"0\\\">7</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#d9d9d9\\\" style=\\\"font-family:f1-0; font-size:54pt; white-space:pre\\\" transform=\\\"matrix(0.707 0.707 0.707 -0.707 135.6027 198.5094)\\\" x=\\\"0 56.016 96.048 136.08 176.112 216.144 236.16 284.184 324.216 344.232 364.248 416.232 456.264 480.24\\\">Qoppa Software</text></g><g clip-path=\\\"url(#clip1-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#002ba6\\\" style=\\\"font-family:f1-0; font-size:9pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.932 772)\\\" x=\\\"0 9.336 16.008 22.68 29.352 36.024 39.36 47.364 54.036 57.372 60.708 69.372 76.044 80.04 86.712 90.048 94.044 97.38 104.712 111.384 115.38 118.716 126.72 132.72 139.392 142.056 148.728 155.4 158.736 161.4 168.072 174.744 178.08 187.416 194.088 196.752 202.752 206.088 210.084 213.42 220.092 223.428 226.764 233.436 239.436 242.772 246.108 249.444 258.108 266.772 275.436 278.772 285.444 292.116 298.788 305.46 312.132 315.468 321.468 328.14\\\">Qoppa Software - For Evaluation Only - https://www.qoppa.com</text></g></g></svg></svg></g></svg><br>\\n<?xml version='1.0' encoding='UTF-8'?><svg id=\\\"qoppa_document\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" version=\\\"1.1\\\" xmlns=\\\"http://www.w3.org/2000/svg\\\" xmlns:xlink=\\\"http://www.w3.org/1999/xlink\\\"><!-- jPDFWeb v2019R1.03 - Demo Version --><style>title p { display: block; }</style><g id=\\\"qoppa_viewxform\\\" transform=\\\"matrix(1 0 0 1 0 0)\\\"><style type=\\\"text/css\\\">@font-face {font-family:f2-0;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f2-1;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f2-2;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}</style><svg id=\\\"qoppa_page_p2\\\" class=\\\"qoppa_page\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\"><rect class=\\\"qoppa_pageborder\\\" x=\\\"0.5pt\\\" y=\\\"0.5pt\\\" width=\\\"611pt\\\" height=\\\"791pt\\\" fill=\\\"none\\\" /><svg class=\\\"qoppa_pagecontents\\\" x=\\\"0pt\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" viewBox=\\\"0 0 612 792\\\" ><g class=\\\"qoppa_contentstream\\\" transform=\\\"matrix(1 0 0 -1 0 792)\\\" fill=\\\"black\\\" stroke=\\\"black\\\" stroke-width=\\\"1\\\" stroke-linecap=\\\"butt\\\" stroke-linejoin=\\\"miter\\\" stroke-miterlimit=\\\"10\\\"><clipPath id=\\\"clip2-1\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 758.4812)\\\" x=\\\"0 9.44 16.11 23.33 30.55 37.22 44.44 50.55 53.33 60 66.67\\\">WARRANTIES.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 102.5482 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 106.2624 758.4812)\\\" x=\\\"0 9.44\\\">We</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 121.2624 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 124.9766 758.4812)\\\" x=\\\"0 8.33 13.89 18.89\\\">make</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 149.4298 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 153.1439 758.4812)\\\" x=\\\"0 5.56\\\">no</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 164.267 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 167.9812 758.4812)\\\" x=\\\"0 5.56 10.56 16.12 19.45 25.01 30.01\\\">express</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 202.9958 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 206.71 758.4812)\\\" x=\\\"0 7.22 12.78 16.11 19.44 25 30.56 33.34\\\">warranty</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.0548 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 248.769 758.4812)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.892 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 263.6062 758.4812)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 277.5076 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 281.2218 758.4812)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 321.7931 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 325.5072 758.4812)\\\" x=\\\"0 5.56 11.12 16.68\\\">and,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 344.9701 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 348.6843 758.4812)\\\" x=\\\"0 5.56 11.12 13.4 18.96 23.96\\\">unless</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 377.6492 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 381.3634 758.4812)\\\" x=\\\"0 5.56 8.89 14.45 20.01 22.29 27.85 30.13 32.91 38.47\\\">prohibited</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 425.4015 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 429.1157 758.4812)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 439.6772 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 443.3914 758.4812)\\\" x=\\\"0 2.28 7.84 15.06\\\">law,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 461.2332 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 464.9474 758.4812)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 478.8487 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 482.5629 758.4812)\\\" x=\\\"0 2.78 8.34 10.62 12.9 18.46 25.68 27.96 33.52\\\">following</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.6498 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 525.364 758.4812)\\\" x=\\\"0 5 10.56 16.12 18.9 24.46 30.02 35.02 40.58\\\">sentences</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 758.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 747.1629)\\\" x=\\\"0 5.56 11.12 16.68 18.96 23.96\\\">apply.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 59.8432 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 63.102 747.1629)\\\" x=\\\"0 6.67 14.45\\\">YOU</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 84.772 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 88.0308 747.1629)\\\" x=\\\"0 6.67 13.89\\\">ARE</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 108.5924 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 111.8512 747.1629)\\\" x=\\\"0 5.56 12.23 18.9 25.57 28.35 35.57\\\">LEASING</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 155.2008 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 158.4597 747.1629)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 178.4597 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 181.7186 747.1629)\\\" x=\\\"0 6.67 13.89 21.67 28.34 35.01 42.23 48.34\\\">PROPERTY</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 236.7284 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 239.9872 747.1629)\\\" x=\\\"0 3.33 10\\\">“AS</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.6572 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 259.916 747.1629)\\\" x=\\\"0 2.78 9.45 12.78\\\">IS”.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.4727 747.1629)\\\" x=\\\"0 3.2589\\\">  </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 281.9904 747.1629)\\\" x=\\\"0 9.44\\\">WE</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 298.0988 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 301.3577 747.1629)\\\" x=\\\"0 8.33 15 21.67\\\">MAKE</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.6975 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 332.9564 747.1629)\\\" x=\\\"0 7.22\\\">NO</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 347.9564 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 351.2153 747.1629)\\\" x=\\\"0 6.67 13.34 20.01 27.23 33.9 40.57\\\">EXPRESS</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 398.4565 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 401.7153 747.1629)\\\" x=\\\"0 9.44 16.11 23.33 30.55 37.22 44.44 50.55 53.33 60\\\">WARRANTIES</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.3853 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 471.6442 747.1629)\\\" x=\\\"0 7.78\\\">ON</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.6442 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 489.903 747.1629)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.903 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 513.1619 747.1629)\\\" x=\\\"0 6.67 13.89 21.67 28.34 35.01 42.23 48.34 55.01\\\">PROPERTY.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 747.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 735.8445)\\\" x=\\\"0 9.44\\\">WE</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 49.2084 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 59.5638 735.8445)\\\" x=\\\"0 7.22 10 16.67 23.89 29.45 36.12 38.9\\\">DISCLAIM</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 106.7953 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 117.1507 735.8445)\\\" x=\\\"0 6.67 13.89\\\">ANY</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 137.7122 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.0676 735.8445)\\\" x=\\\"0 9.44 16.11 23.33 30.55 37.22 44.44 50.55 53.33 60\\\">WARRANTIES</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 214.7375 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 225.0929 735.8445)\\\" x=\\\"0 2.78 11.11 17.78 23.34 26.12 32.79\\\">IMPLIED</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 265.1027 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 275.4581 735.8445)\\\" x=\\\"0 6.67\\\">BY</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 288.798 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 299.1534 735.8445)\\\" x=\\\"0 5.56 12.23 21.67\\\">LAW,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 323.6016 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 333.957 735.8445)\\\" x=\\\"0 2.78 10 17.22 22.78 30 37.22 40 47.22\\\">INCLUDING</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.9619 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 399.3173 735.8445)\\\" x=\\\"0 6.11 13.33\\\">THE</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.3173 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 429.6728 735.8445)\\\" x=\\\"0 2.78 11.11 17.78 23.34 26.12 32.79\\\">IMPLIED</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 469.6825 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 480.0379 735.8445)\\\" x=\\\"0 9.44 16.11 23.33 30.55 37.22 44.44 50.55 53.33 60\\\">WARRANTIES</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 546.7079 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0633 735.8445)\\\" x=\\\"0 7.78\\\">OF</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 735.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 724.5262)\\\" x=\\\"0 8.33 15 22.22 29.44 36.66 43.33 50.55 56.66 63.33 70 72.78 78.34 81.12 87.23 93.9 96.56 103.23 110.45 117.67 120.33 126.44 129.22 135.33 142.55 149.22 155.89 162.56 165.22 171.33 179.11 186.33 188.99 195.66 202.88 209.55 212.21 218.88 225.55 232.77 238.88 241.66 248.88 256.1 261.66 268.33 275.55 278.21 284.88 292.1 299.32 305.99 313.77 320.44 327.11\\\">MERCHANTABILITY AND FITNESS FOR ANY PARTICULAR PURPOSE.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 711.2078)\\\" x=\\\"0 7.22 13.89 20 26.67 33.89 39.45 45.56 48.34 51 58.22 64.89 71.56 79.34 86.01 92.68 99.35 106.02 112.69 115.47 123.25 130.47 133.25 135.91 142.58 149.8 157.02 159.68 167.46 173.57 180.79 187.46 194.68 197.34 204.56 211.23 219.56 226.23 233.45 236.23 242.9 249.57 252.35 255.01 261.68 267.24 272.8 275.46 282.68 284.96 287.24 289.52 292.18 297.74 303.3 305.96 308.24 313.8 316.46 322.02 327.58 330.36 335.92 341.48 343.76 346.54 349.2 354.76 357.54 360.2 362.98 368.54 370.82 375.82 378.48 385.15 390.71 394.04 399.6 405.16 413.49 419.05 424.61 427.39 430.05 432.33 435.11\\\">DEFAULT, REPOSSESSION, AND OTHER REMEDIES. You will be in default of this Agreement if:</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 697.8895)\\\" x=\\\"0 3.33 5.99 12.66 18.22 23.78 26.44 32 37.56 40.22 45.78 51.34 54.12 56.78 62.34 67.9 72.9 75.56 81.12 86.68 91.68 94.34 99.9 105.46 110.46 118.79 124.35 129.91 132.69 135.35 140.91 144.24 146.9 152.46 155.24 160.8 166.36 169.69 172.35 177.91 186.24 191.8 197.36 202.92 205.7 208.36 213.92 219.48 225.04 230.6 233.93 236.59 239.37 244.93 250.49 253.15 259.82 265.38 268.71 274.27 279.83 288.16 293.72 299.28 302.06 304.72 310.28 315.28 317.94 323.5 326.83 332.39 337.39 339.67 345.23 350.79 356.35 359.01 364.57 367.9 370.56 377.78 383.34 388.9 394.46 397.12 404.34 409.9 412.56 420.89 426.45 431.45 437.01 439.67 445.23 450.79 459.12 464.68 470.24 475.8\\\">- You do not pay any payment or other amount under the Agreement as provided or when we make demand.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 684.5711)\\\" x=\\\"0 3.33 5.99 12.66 18.22 23.78 26.44 32 34.28 39.28 44.84 47.5 53.06 58.06 60.72 66.28 71.84 76.84 79.5 82.28 87.84 90.12 95.12 100.68 103.34 108.9 112.23 114.89 123.22 125.5 130.5 132.78 138.34 143.9 149.46 151.74 157.3 162.86 165.52 167.8 173.36 176.14 181.7 185.03 193.36 198.92 201.7 203.98 209.54 215.1\\\">- You give us any false or misleading information.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 671.2527)\\\" x=\\\"0\\\">-</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 36.4301 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.1823 671.2527)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 57.9753 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 61.7275 671.2527)\\\" x=\\\"0 2.28 7.84 12.84\\\">lose</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 80.1308 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 83.883 671.2527)\\\" x=\\\"0 5.56 11.12 16.12 21.12 26.68 31.68 36.68 38.96 44.52\\\">possession</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 133.9709 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 137.7231 671.2527)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.0629 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 149.8151 671.2527)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 163.7165 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 167.4687 671.2527)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 205.2617 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 209.0139 671.2527)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 219.5754 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 223.3276 671.2527)\\\" x=\\\"0 5 10.56 16.12 18.9 21.18 26.18 31.18 36.74 39.52 41.8 47.36 52.92\\\">confiscation,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 279.0307 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 282.7829 671.2527)\\\" x=\\\"0 2.78 8.34 11.67 14.45 20.01 22.29 25.07 30.63 33.96\\\">forfeiture</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 322.3044 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 326.0566 671.2527)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 334.9482 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.7004 671.2527)\\\" x=\\\"0 5.56 8.34 13.9 19.46\\\">other</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 361.4934 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 365.2456 671.2527)\\\" x=\\\"0 2.28 7.84 12.84 18.4 20.68 26.24 31.8 34.58 40.14 43.47\\\">involuntary</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 413.7222 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 417.4744 671.2527)\\\" x=\\\"0 2.78 6.11 11.67 17.23 22.23 25.01 30.57\\\">transfer</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 451.3757 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 455.1279 671.2527)\\\" x=\\\"0 3.33 8.89 14.45 20.01 23.34 28.9 31.18 36.74 41.74\\\">regardless</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.876 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 505.6282 671.2527)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 513.968 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 517.7202 671.2527)\\\" x=\\\"0 7.22 12.78 18.34 21.12 26.68 32.24\\\">whether</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.2964 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0486 671.2527)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 671.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 659.9344)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79 40.45 42.73 47.73 50.39 53.17 58.73 64.29 66.95 71.95 77.51 83.07 85.35 90.91 95.91 98.69 101.35 106.91 109.69 112.35 114.63 120.19 125.75 128.03 133.03 135.31 140.87 143.15 145.81 151.37 154.7 157.36 162.92 168.48 176.81 179.09 184.65 186.93 191.93 194.71 198.04 203.6 206.38 208.66 213.66 219.22 221.88 227.44 230.77 236.33 241.33 246.89 252.45 258.01 260.29 265.85 271.41 276.41\\\">Property is the subject of judicial or administrative proceedings.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 646.616)\\\" x=\\\"0 3.33 5.99 12.66 18.22 23.78 26.44 32 34.28 39.84 42.5 48.06 53.62 59.18 61.84 64.62 70.18 75.74 79.07 84.63 87.29 89.57 94.57 97.23 102.79 108.35 111.01 116.01 121.57 124.9 129.9 132.18 137.18 139.46 145.02 150.58 153.24 158.24 163.8 168.8 171.58 177.14 185.47 191.03 194.36\\\">- You die and there is no surviving customer.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 633.2977)\\\" x=\\\"0 3.33 5.99 12.1 17.66 23.22 25.88 32.55 35.88 41.44 47 52.56 55.89 58.67 63.67 66.33 68.61 73.61 76.27 78.55 84.11 89.11 91.89 94.67 97.33 102.33 105.11 110.67 112.95 118.51 124.07 126.73 132.29 135.62 138.28 143.84 149.4 157.73 163.29 168.85 174.41 179.97 182.63 188.19 193.75 198.75 204.31 209.87 215.43 218.09 221.42 226.98 232.54 238.1 240.38 243.71\\\">- The Property is lost, stolen or damaged beyond repair.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 619.9793)\\\" x=\\\"0 3.33 5.99 12.66 18.22 23.78 26.44 32 37 42 44.28 49.84 55.4 58.06 60.84 66.4 71.96 74.62 81.29 86.85 90.18 95.74 101.3 109.63 115.19 120.75 123.53 126.19 131.75 135.08 137.74 140.52 143.85 149.41 154.97 159.97 162.75 168.31 171.64 174.3 177.08 182.64 188.2 190.86 197.53 200.86 206.42 211.98 217.54 220.87 223.65 228.65\\\">- You assign the Agreement or transfer the Property.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 606.6609)\\\" x=\\\"0 3.33 5.99 13.21 18.77 21.05 26.61 31.61 36.61 39.27 44.83 48.16 53.72 59.28 61.56 67.12 69.4 72.18 77.74 83.3 85.96 91.52 96.52 99.18 101.46 107.02 114.24 117.02 119.68 124.68 130.24 135.8 138.46 143.46 145.74 151.3 153.58 159.14 161.92 167.48 170.14 175.7 181.26 186.26 188.92 195.59 201.15 204.48 210.04 215.6 223.93 229.49 235.05 237.83 240.49 243.27 248.83 252.16 260.49\\\">- Unless prohibited by law, you violate any Agreement term.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 593.3426)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 38.6566 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 41.5168 593.3426)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 57.1369 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 59.9971 593.3426)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 108.9131 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 111.7732 593.3426)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 119.0535 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 121.9136 593.3426)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 129.7554 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 132.6156 593.3426)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 27.3 30.08\\\">default,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 165.4769 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 168.3371 593.3426)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 181.1202 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 183.9804 593.3426)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 202.872 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 205.7321 593.3426)\\\" x=\\\"0 5.56\\\">at</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 214.072 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 216.9321 593.3426)\\\" x=\\\"0 5.56 11.12\\\">our</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.3853 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 234.2454 593.3426)\\\" x=\\\"0 5.56 7.84 13.4 18.4 21.18 23.46 29.02 34.58\\\">election,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 271.6087 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 274.4688 593.3426)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.1534 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 294.0135 593.3426)\\\" x=\\\"0 5 10.56 16.12 18.4 23.96 28.96\\\">subject</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 325.7567 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 328.6169 593.3426)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 336.9567 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 339.8168 593.3426)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.9399 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 358.8 593.3426)\\\" x=\\\"0 7.22 12.78 15.06 17.84 20.12 25.68\\\">waiting</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 390.0452 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 392.9053 593.3426)\\\" x=\\\"0 5.56 11.12 14.45 16.73 22.29\\\">period</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 420.7618 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 423.6219 593.3426)\\\" x=\\\"0 2.28 10.61 16.17 21.73 26.73 32.29\\\">imposed</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 461.4783 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 464.3385 593.3426)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.9 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 477.7602 593.3426)\\\" x=\\\"0 2.28 7.84 15.06\\\">law,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 495.602 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 498.4621 593.3426)\\\" x=\\\"0 2.78 8.34 13.34\\\">take</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 517.3635 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 520.2236 593.3426)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 536.3467 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 539.2068 593.3426)\\\" x=\\\"0 5.56 10.56 13.34 15.62 21.18 26.74\\\">actions</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 593.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 582.0242)\\\" x=\\\"0 5.56 11.12 14.45 22.78 25.06 27.84 30.62 36.18 41.74 44.4 49.96 54.96 57.62 59.9 65.46 72.68 75.46 78.12 80.4 85.96 90.96 93.24 98.8 104.36 106.64 112.2 117.76 120.42 127.64 129.92 132.7 138.26 143.82 149.38 152.16 154.82 157.1 159.38 167.71 169.99 172.77 178.33 181.11 183.39 188.95 194.51 197.17 202.73 208.29 213.85 216.51 222.07 224.85 227.51 230.29 235.85 241.41 244.07 246.85 252.41 254.69 256.97 262.53 269.75 272.03 277.59 283.15 285.81 291.37 296.37 299.15 301.43 306.99 312.55 317.55 320.33 322.99 328.55 334.11 339.67 345.23 347.89 353.45 356.23 358.89 366.11 371.67 373.95 378.95 384.51 387.17 394.39 396.67 398.95 401.23 403.89 408.89 414.45 417.78 423.34 426 431 436.56 442.12 445.45 448.11 453.67 459.23 462.01 467.57 473.13 475.41 478.19\\\">permitted by law, including without limitation one of the following actions, none of which will cure your default:</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 568.7059)\\\" x=\\\"0 3.33 10.55 16.11 18.89 21.17\\\">-Until</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 56.5522 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 59.9757 568.7059)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 76.0988 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 79.5223 568.7059)\\\" x=\\\"0 5.56 11.12 14.45 19.45 25.01 30.57 35.57\\\">purchase</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 120.66 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 124.0836 568.7059)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 137.985 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 141.4086 568.7059)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 179.2015 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 182.6251 568.7059)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 193.1866 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 196.6102 568.7059)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29 32.85\\\">provided</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 235.0282 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 238.4518 568.7059)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 246.2936 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 249.7171 568.7059)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 265.3372 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 268.7608 568.7059)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 320.4552 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 323.8787 568.7059)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 332.7703 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 336.1939 568.7059)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 350.0953 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 353.5189 568.7059)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 391.3118 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 394.7354 568.7059)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.0157 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 405.4393 568.7059)\\\" x=\\\"0 3.33 8.89 14.45 20.01 25.01 30.01 35.57 40.57 45.57 51.13\\\">repossessed</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 462.1385 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 465.5621 568.7059)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.4537 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 477.8772 568.7059)\\\" x=\\\"0 5 10.56 13.89 17.22 22.78 28.34 33.9 39.46 42.79 48.35 53.91\\\">surrendered,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 534.5765 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 538 568.7059)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 545.8418 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 549.2654 568.7059)\\\" x=\\\"0 5.56 11.12 16.12\\\">each</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 568.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 557.3875)\\\" x=\\\"0 5 10.56 15.56\\\">case</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 54.2231 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 56.9386 557.3875)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 67.5001 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 70.2156 557.3875)\\\" x=\\\"0 5.56 11.12 14.45 22.78 25.06 27.84 30.62 36.18\\\">permitted</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 111.9588 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 114.6743 557.3875)\\\" x=\\\"0 5.56 11.12 16.68 22.24\\\">under</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 140.2505 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 142.966 557.3875)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 158.5862 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 161.3017 557.3875)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 212.996 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 215.7115 557.3875)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.3317 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 234.0472 557.3875)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 282.9632 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 285.6787 557.3875)\\\" x=\\\"0 5 10.56 16.12 18.4\\\">shall</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 306.3623 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 309.0779 557.3875)\\\" x=\\\"0 5 10.56 16.12 18.9 21.18 26.74 32.3\\\">continue</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 346.9441 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 349.6596 557.3875)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 357.9994 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 360.715 557.3875)\\\" x=\\\"0 3.33 8.89 14.45 20.01 27.23\\\">renew,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 390.7296 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 393.4452 557.3875)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 410.1297 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 412.8453 557.3875)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 425.6285 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 428.344 557.3875)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.2356 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 449.9511 557.3875)\\\" x=\\\"0 5 10.56 16.12 18.9 21.18 26.74 32.3\\\">continue</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 487.8173 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 490.5329 557.3875)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 498.8727 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 501.5882 557.3875)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01\\\">charge</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 532.1644 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 534.88 557.3875)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.003 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.7185 557.3875)\\\" x=\\\"0 3.33 8.89 14.45\\\">rent</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 557.3875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 546.0691)\\\" x=\\\"0 5.56 11.12 16.68 22.24 25.57 28.23 31.01 36.57 42.13 44.79 47.57 53.13 56.46 64.79 69.79 72.45 78.01 80.79 83.45 86.23 91.79 94.07 99.07 101.73 108.4 113.96 117.29 122.85 128.41 136.74 142.3 147.86 150.64\\\">under the terms of this Agreement.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 532.7508)\\\" x=\\\"0 3.33 12.77 18.33 20.99 29.32 34.88 39.88 42.54 45.32 50.88 55.88 61.44 64.1 69.66 75.22 80.22 82.88 88.44 93.44 96.22 98.5 104.06 109.62 112.28 119.5 125.06 127.72 133.28 138.84 141.12 143.4 148.96 153.96 159.52 162.18 164.96 170.52 173.18 178.74 184.3 186.96 192.52 198.08 203.08 208.64 213.64 218.64 224.2 227.53 232.53 235.19 240.75 244.08 246.74 252.3 257.86 262.86 265.14 270.14 275.7 281.26 283.54 289.1 291.76 294.54 300.1 302.76 308.32 311.65 317.21 319.99 325.55 330.55 333.33 335.99 341.55 347.11 350.44 353.1 355.38 360.94 363.72 369.28 372.61 378.17 383.17 385.95 388.61 390.89 396.45 399.11 401.89 407.45 413.01 415.67 422.34 425.67 431.23 436.79 442.35 445.68 448.46 453.46\\\">-We may take any action we believe to be necessary or advisable to protect our interest in the Property.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 519.4324)\\\" x=\\\"0 3.33 12.77\\\">-We</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 51.4301 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 54.7506 519.4324)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 73.6422 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 76.9627 519.4324)\\\" x=\\\"0 5.56 11.12 16.68 21.68 27.24 30.02 35.58 37.86 40.14\\\">peacefully</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 122.1092 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 125.4297 519.4324)\\\" x=\\\"0 3.33 8.89 14.45 20.01 25.01 30.01 35.57 40.57\\\">repossess</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 171.0058 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 174.3263 519.4324)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 188.2277 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 191.5482 519.4324)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 229.3411 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 232.6616 519.4324)\\\" x=\\\"0 7.22 12.78 18.34 21.67 27.23 32.23 37.79\\\">wherever</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 273.7896 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 277.1101 519.4324)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 289.8933 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 293.2138 519.4324)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.1054 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 315.4259 519.4324)\\\" x=\\\"0 2.78 5.06 10.62\\\">find</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 331.6075 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 334.928 519.4324)\\\" x=\\\"0 2.28 5.06\\\">it.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 342.7649 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 346.0854 519.4324)\\\" x=\\\"0 9.44\\\">We</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 361.0854 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 364.4059 519.4324)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 378.4684 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 381.7889 519.4324)\\\" x=\\\"0 5.56 7.84 12.84\\\">give</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 400.1922 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 403.5127 519.4324)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.6358 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 422.9563 519.4324)\\\" x=\\\"0 3.33 8.89 14.45 20.01 25.01 30.01 35.57 40.57 45.57 47.85 53.41\\\">repossession</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 481.9358 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 485.2562 519.4324)\\\" x=\\\"0 5.56 11.12 13.9 16.18 21.18 26.74\\\">notices</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 516.9994 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 520.3199 519.4324)\\\" x=\\\"0 3.33 8.89 14.45 20.01 22.29 25.62 31.18\\\">required</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 557.068 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 560.3885 519.4324)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 519.4324)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 508.1141)\\\" x=\\\"0 2.28 7.84 15.06\\\">law.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 50.9418 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 53.8695 508.1141)\\\" x=\\\"0 6.67 9.45 12.23 17.79\\\">After</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 74.9876 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 77.9153 508.1141)\\\" x=\\\"0 3.33 8.89 14.45 20.01 25.01 30.01 35.57 40.57 45.57 47.85 53.41\\\">repossession</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.8948 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 139.8224 508.1141)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 148.714 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 151.6417 508.1141)\\\" x=\\\"0 5 10.56 13.89 17.22 22.78 28.34 33.9 39.46 42.79\\\">surrender,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 197.2178 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 200.1455 508.1141)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 212.9287 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 215.8564 508.1141)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 229.9189 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 232.8465 508.1141)\\\" x=\\\"0 5.56 11.12 13.4\\\">hold</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 251.8114 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 254.739 508.1141)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 268.6404 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 271.568 508.1141)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.1393 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 315.067 508.1141)\\\" x=\\\"0 5 10.56 16.12 18.4 23.96 28.96\\\">subject</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 346.8101 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 349.7378 508.1141)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 358.0776 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 361.0053 508.1141)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 377.1283 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 380.056 508.1141)\\\" x=\\\"0 3.33 5.61 11.17 16.73\\\">right</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 399.5677 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 402.4954 508.1141)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 418.6184 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 421.5461 508.1141)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 440.4377 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 443.3653 508.1141)\\\" x=\\\"0 5.56 11.12 16.12\\\">have</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 465.0499 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 467.9776 508.1141)\\\" x=\\\"0 5.56 11.12 16.68 22.24\\\">under</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 493.5537 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 496.4814 508.1141)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64\\\">applicable</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 541.6914 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 544.619 508.1141)\\\" x=\\\"0 2.28 7.84\\\">law</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.6825 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 562.6101 508.1141)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 508.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 496.7957)\\\" x=\\\"0 5 10.56 13.89 19.45 22.11 24.89 30.45 36.01 38.67 44.23 49.79 52.57 58.13 63.69 65.97 68.75 71.41 76.97 80.3 82.96 86.29 91.85 96.85 102.41 107.41 112.97 116.3 118.96 121.74 127.3 132.86 135.52 142.19 145.52 151.08 156.64 162.2 165.53 168.31 173.31\\\">cure the default or recover the Property.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 483.4773)\\\" x=\\\"0 3.33 10 15.56 23.89 28.89 31.55 38.77 44.33 46.99 51.99 57.55 63.11 68.67 74.23 76.89 79.67 85.23 90.23 92.51 98.07 103.63 106.29 111.85 117.41 122.41 125.07 130.63 136.19 139.52 147.85 150.13 152.91 155.69 161.25 166.81 169.47 175.03 180.03 182.81 185.09 190.65 196.21 198.87 206.09 208.37 210.65 212.93 215.59 221.15 226.71 229.37 234.93 240.49 246.05 251.61 257.17 259.83 262.61 268.17 270.83 273.61 279.17 284.73 287.39 292.95 301.28 306.84 312.4 317.96 320.74 323.4 328.96 333.96 338.96 342.29 347.85 353.41 358.97 361.75 364.41 369.97 375.53 377.81 383.37 388.37 393.37 396.03 401.59 404.92 410.48 416.04 418.32 423.88 426.16 428.94 434.5 440.06 442.72 448.28 453.28 455.94 458.22 463.78 471\\\">-Sums we spend taking any permitted action will be added to the amount accrued, unless prohibited by law.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 456.8406)\\\" x=\\\"0 6.11 12.78 19.45 26.12 32.79\\\">TAXES.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 68.6664 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 72.5196 456.8406)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 90.3126 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 94.1658 456.8406)\\\" x=\\\"0 8.33 13.89 18.89\\\">must</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 115.8357 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 119.689 456.8406)\\\" x=\\\"0 2.28 10.61 18.94 24.5 30.06 32.34 37.9 40.68 46.24 48.52\\\">immediately</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 173.2144 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 177.0676 456.8406)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 193.1906 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 197.0439 456.8406)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 205.9355 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 209.7887 456.8406)\\\" x=\\\"0 3.33 8.89 11.17 19.5 25.06 30.62 33.95 38.95\\\">reimburse</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 254.3053 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 258.1585 456.8406)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 268.72 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 272.5733 456.8406)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 277.6319 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 281.4851 456.8406)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 294.2683 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 298.1215 456.8406)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 314.2446 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 318.0978 456.8406)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.7677 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 333.6209 456.8406)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 349.744 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 353.5972 456.8406)\\\" x=\\\"0 5.56 7.84\\\">all</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 363.7193 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 367.5725 456.8406)\\\" x=\\\"0 5.56 11.12 16.12 21.68 25.01 30.57 38.9 44.46 50.02\\\">government</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 420.3801 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 424.2334 456.8406)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01 30.57\\\">charges</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 459.8095 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 463.6628 456.8406)\\\" x=\\\"0 3.33 8.89 11.17 16.73 19.51 21.79 27.35\\\">relating</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 496.5778 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 500.431 456.8406)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 508.7709 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 512.6241 456.8406)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.5255 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 530.3787 456.8406)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 456.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 445.5223)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24 28.52 34.08 39.64\\\">including,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 75.5268 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 78.3573 445.5223)\\\" x=\\\"0 5.56 11.12\\\">but</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 92.2586 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 95.0891 445.5223)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 108.9905 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 111.8209 445.5223)\\\" x=\\\"0 2.28 4.56 12.89 15.17 17.95 23.51\\\">limited</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 140.8932 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 143.7237 445.5223)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 152.0635 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 154.894 445.5223)\\\" x=\\\"0 2.78 8.34 13.9 18.9\\\">fees,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 176.5737 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 179.4042 445.5223)\\\" x=\\\"0 2.78 8.34 13.34 18.9 23.9\\\">taxes,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 206.0839 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 208.9144 445.5223)\\\" x=\\\"0 2.78 5.06 10.62 16.18\\\">fines</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 230.096 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 232.9265 445.5223)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 249.6111 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 252.4416 445.5223)\\\" x=\\\"0 5 10.56 13.89 18.89 24.45 30.01 33.34 38.9 44.46 49.46\\\">surcharges,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 304.6877 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 307.5181 445.5223)\\\" x=\\\"0 7.22 12.78 18.34 21.12 26.68 32.24\\\">whether</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 343.0943 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 345.9248 445.5223)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.12 31.12 36.68\\\">assessed</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.1709 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 391.0014 445.5223)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.1244 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 404.9549 445.5223)\\\" x=\\\"0 5 10.56 16.12\\\">you,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 423.8563 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 426.6868 445.5223)\\\" x=\\\"0 5.56 10.56\\\">us,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 440.0266 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 442.8571 445.5223)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 451.7487 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 454.5792 445.5223)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.4806 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 471.311 445.5223)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 511.8823 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 514.7128 445.5223)\\\" x=\\\"0 9.44\\\">We</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.7128 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 532.5433 445.5223)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.4349 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 554.2654 445.5223)\\\" x=\\\"0 5.56 11.12\\\">add</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 445.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 434.2039)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.0014 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 50.123 434.2039)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 83.4775 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 86.5991 434.2039)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 94.9389 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 98.0606 434.2039)\\\" x=\\\"0 7.22 12.78 18.34\\\">what</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 119.1836 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 122.3052 434.2039)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 138.4283 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 141.5499 434.2039)\\\" x=\\\"0 5.56 12.78\\\">owe</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 159.8946 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 163.0162 434.2039)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 173.5777 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 176.6994 434.2039)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 181.758 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 184.8796 434.2039)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 201.0026 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 204.1242 434.2039)\\\" x=\\\"0 5.56\\\">do</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 215.2473 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 218.3689 434.2039)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 232.2703 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 235.3919 434.2039)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 251.5149 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 254.6365 434.2039)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 265.1981 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 268.3197 434.2039)\\\" x=\\\"0 7.22 12.78 18.34\\\">when</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 292.2259 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 295.3476 434.2039)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.1307 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 311.2524 434.2039)\\\" x=\\\"0 8.33 13.89 18.89\\\">make</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.7055 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.8271 434.2039)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57 36.13\\\">demand.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 377.7431 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 380.8647 434.2039)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 386.4214 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 389.543 434.2039)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 405.666 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 408.7877 434.2039)\\\" x=\\\"0 5.56\\\">do</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.9107 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 423.0323 434.2039)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 436.9337 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 440.0553 434.2039)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.1783 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 459.3 434.2039)\\\" x=\\\"0 5 10.56 15.56\\\">such</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 480.423 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 483.5446 434.2039)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57 33.35\\\">amounts</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.8991 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 525.0207 434.2039)\\\" x=\\\"0 7.22 12.78 18.34\\\">when</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 548.927 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 552.0486 434.2039)\\\" x=\\\"0 2.78 8.34 13.9\\\">they</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 434.2039)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 422.8855)\\\" x=\\\"0 5.56 8.89\\\">are</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.5531 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 50.576 422.8855)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.12 31.12 36.68\\\">assessed</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 92.8221 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 95.845 422.8855)\\\" x=\\\"0 3.33 8.89 14.45 16.73 22.29 27.29\\\">(unless</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 128.1399 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 131.1627 422.8855)\\\" x=\\\"0 5 10.56 15.56\\\">such</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 152.2858 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 155.3087 422.8855)\\\" x=\\\"0 3.33 8.89 13.89 19.45 21.73 24.51\\\">results</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 184.8204 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 187.8433 422.8855)\\\" x=\\\"0 2.78 6.11 11.67\\\">from</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 207.8433 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.8661 422.8855)\\\" x=\\\"0 5.56 11.12\\\">our</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.3192 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 228.3421 422.8855)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.8 32.36 37.92 42.92 48.48 51.81\\\">negligence),</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 282.9417 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 285.9646 422.8855)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.0876 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 305.1105 422.8855)\\\" x=\\\"0 8.33 13.89 18.89\\\">must</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 326.7804 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 329.8033 422.8855)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 345.9264 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 348.9492 422.8855)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 365.0723 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 368.0951 422.8855)\\\" x=\\\"0 5.56 11.12 16.68 22.24 24.52 27.3 29.58 35.14\\\">penalties</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 408.2416 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 411.2645 422.8855)\\\" x=\\\"0 7.22 12.78 18.34\\\">when</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 435.1707 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 438.1936 422.8855)\\\" x=\\\"0 5.56 11.12\\\">due</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.8782 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 457.9011 422.8855)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.7927 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 469.8155 422.8855)\\\" x=\\\"0 3.33 8.89 11.17 19.5 25.06 30.62 33.95 38.95\\\">reimburse</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 514.3321 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 517.355 422.8855)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 527.9165 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 530.9394 422.8855)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 535.998 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 539.0209 422.8855)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.8041 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 554.8269 422.8855)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 422.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 411.5672)\\\" x=\\\"0 2.78 8.34 13.9 22.23\\\">them.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 58.1098 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 61.0597 411.5672)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 78.8527 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.8026 411.5672)\\\" x=\\\"0 8.33 13.89 18.89\\\">must</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 103.4725 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 106.4225 411.5672)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 122.5455 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 125.4955 411.5672)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 139.3968 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 142.3467 411.5672)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01 30.57\\\">charges</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 177.9229 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 180.8729 411.5672)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 188.7147 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 191.6646 411.5672)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 207.2847 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.2346 411.5672)\\\" x=\\\"0 5.56 11.12 14.45 20.01 25.57 28.9 34.46 40.02\\\">paragraph</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 255.8255 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 258.7754 411.5672)\\\" x=\\\"0 5.56 10.56 16.12\\\">even</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.46 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 283.4099 411.5672)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 288.4685 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 291.4184 411.5672)\\\" x=\\\"0 5 10.56 15.56\\\">such</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.5415 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 315.4914 411.5672)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01 30.57\\\">charges</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.0676 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 354.0175 411.5672)\\\" x=\\\"0 5.56 8.89\\\">are</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 368.4707 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 371.4206 411.5672)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 385.322 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 388.2719 411.5672)\\\" x=\\\"0 5.56 7.84 10.12 12.4 17.96\\\">billed</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 411.7973 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 414.7472 411.5672)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 423.0871 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 426.037 411.5672)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 436.5985 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 439.5485 411.5672)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 448.4401 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 451.39 411.5672)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 459.7298 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 462.6798 411.5672)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 478.8028 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 481.7528 411.5672)\\\" x=\\\"0 5.56 11.12 13.9 16.18\\\">until</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 500.2147 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 503.1646 411.5672)\\\" x=\\\"0 5.56 8.34 11.12 16.68\\\">after</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 523.1744 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 526.1243 411.5672)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 540.0257 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 542.9756 411.5672)\\\" x=\\\"0 5.56 11.12\\\">end</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.6602 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 562.6101 411.5672)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 411.5672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 400.2488)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.0014 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 49.7259 400.2488)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 98.6419 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 101.3665 400.2488)\\\" x=\\\"0 2.78 8.34 11.67 20\\\">term,</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 124.1448 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 126.8693 400.2488)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 137.4308 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 140.1554 400.2488)\\\" x=\\\"0 2.28 7.84 13.4\\\">long</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 159.1202 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 161.8448 400.2488)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 172.4063 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 175.1308 400.2488)\\\" x=\\\"0 5 10.56 15.56\\\">such</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 196.2539 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 198.9784 400.2488)\\\" x=\\\"0 5 10.56 16.12 19.45 25.01 30.57\\\">charges</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 234.5546 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 237.2791 400.2488)\\\" x=\\\"0 5.56 8.89\\\">are</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 251.7322 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 254.4568 400.2488)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64\\\">applicable</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.6667 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 302.3913 400.2488)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 310.7311 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 313.4556 400.2488)\\\" x=\\\"0 5 10.56 18.89\\\">some</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 337.9088 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 340.6333 400.2488)\\\" x=\\\"0 5.56 11.12 14.45\\\">part</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 357.8648 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 360.5893 400.2488)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 368.9291 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 371.6537 400.2488)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 385.555 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 388.2796 400.2488)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 437.1956 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 439.9201 400.2488)\\\" x=\\\"0 2.78 8.34 11.67 20\\\">term.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 462.6985 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 465.423 400.2488)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 483.216 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 485.9405 400.2488)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 500.003 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 502.7275 400.2488)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 516.6289 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 519.3534 400.2488)\\\" x=\\\"0 5.56 11.12 16.12\\\">have</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 541.038 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 543.7625 400.2488)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.1024 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 554.8269 400.2488)\\\" x=\\\"0 5.56 11.12\\\">pay</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 400.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 388.9305)\\\" x=\\\"0 5.56 11.12 14.45 17.11 19.39 24.95 29.95 35.51 43.84 49.4 52.06 54.84 60.4 65.4 70.96 75.96\\\">our income taxes.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 375.6121)\\\" x=\\\"0 6.11 8.89 15 20.56 27.23 30.01 32.67 42.11 47.67 50.33 53.66 59.22 62 67.56 69.84 75.4 78.06 80.84 83.12 85.9 88.18 93.74 96.4 99.18 104.74 107.4 110.18 115.74 121.3 123.96 130.63 133.96 139.52 145.08 150.64 153.97 156.75 161.75 164.41 167.19 172.75 176.08 178.74 181.52 187.08 192.64 195.3 198.08 203.64 206.97 215.3 217.96 223.52 226.3 228.96 231.74 237.3 242.86 245.52 247.8 253.36 258.92 263.92 269.48 272.14 277.7 283.26 288.82 291.48 297.04 302.6 305.38 307.66 309.94 312.6 317.6 323.16 328.72 331.38 336.94 341.94 347.5 353.06 355.34 358.67 364.23 366.89 372.45 379.67 385.23 390.79 394.12 399.12 404.68 406.96 412.52\\\">TITLE. We retain title to the Property for the term of the lease and until you acquire ownership.</text></g><g clip-path=\\\"url(#clip2-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 362.2937)\\\" x=\\\"0 6.67 13.34 20.01 28.34 35.01 42.23 48.34 55.01 57.79 60.45 69.89 75.45 78.11 83.67 89.23 94.23 99.79 102.45 107.45 112.45 118.01 123.57 129.13 134.69 136.97 142.53 148.09 150.75 156.31 161.87 167.43 169.71 172.49 177.49 180.15 182.93 186.26 191.82 200.15 202.81 207.81 213.37 218.93 222.26 224.92 229.92 235.48 241.04 246.04 251.04 253.32 258.88 264.44 267.1 272.66 277.66 282.66 288.22 293.78 299.34 302.12 304.9 307.56 313.12 318.12 320.78 326.34 329.67 335.23 340.23 342.51 348.07 353.63 359.19 361.85 367.41 372.97 375.25 380.81 388.03\\\">PAYMENTS. We have scheduled debits from your checking account, as provided below:</text></g><clipPath id=\\\"clip2-2\\\"><path d=\\\"M 35 328 L 574 328 L 574 345 L 35 345 L 35 328 z \\\"/></clipPath><g clip-path=\\\"url(#clip2-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.2825 332.657)\\\" x=\\\"0 7.22 15 22.22 28.89 36.11 44.44 51.11 58.33 60.99 67.66 74.88 80.99 88.21 95.99 103.21 105.99 112.1 118.77 124.88 127.66 135.44 142.66 145.32 151.43 159.21 166.43 169.09 175.76 182.43 189.1 197.43 204.1 211.32 217.43 224.1 226.76 233.43 236.21 242.88 245.54 252.21 259.43 266.65 269.31 272.64 279.31 286.53 293.75 296.41 303.63 310.3 316.97 319.75 325.86 332.53\\\">CONSUMER AUTHORIZATION FOR PAYMENTS VIA ACH (ACH DEBITS)</text></g><clipPath id=\\\"clip2-3\\\"><path d=\\\"M 35 79 L 574 79 L 574 329 L 35 329 L 35 79 z \\\"/></clipPath><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 316.3387)\\\" x=\\\"0 6.67 13.89\\\">ACH</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 61.7883 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 66.1692 316.3387)\\\" x=\\\"0 7.22 12.78 18.34 20.62 23.4\\\">Debits</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 94.5725 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 98.9533 316.3387)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 110.6233 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 115.0041 316.3387)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46 42.79 47.79\\\">Payment(s)</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 166.1272 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 170.508 316.3387)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 187.1926 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 191.5735 316.3387)\\\" x=\\\"0 7.22 12.78 18.34 23.9\\\">Range</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 221.0412 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 225.4221 316.3387)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.762 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 238.1428 316.3387)\\\" x=\\\"0 7.22 12.78 18.34 20.62 23.4 28.4\\\">Debits.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 269.3245 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 273.7053 316.3387)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.4983 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 295.8792 316.3387)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 28.35 30.63 35.63\\\">authorize</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 337.0754 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 341.4563 316.3387)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 352.0178 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 356.3987 316.3387)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 364.7385 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 369.1194 316.3387)\\\" x=\\\"0 5.56 11.12 16.68 18.96\\\">debit</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 390.8626 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 395.2434 316.3387)\\\" x=\\\"0 2.78 8.34 13.9 19.46\\\">funds</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.7063 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 424.0872 316.3387)\\\" x=\\\"0 2.78 6.11 11.67\\\">from</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 444.0872 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 448.4681 316.3387)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.9212 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 472.3021 316.3387)\\\" x=\\\"0 5.56 11.12 16.68\\\">bank</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 493.9866 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 498.3675 316.3387)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.68 32.24\\\">account</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 533.3919 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 537.7728 316.3387)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.4427 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.8236 316.3387)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.7249 316.3387)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 305.0203)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 74.0295 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 77.2781 305.0203)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 85.6179 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 88.8665 305.0203)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 102.7678 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 106.0164 305.0203)\\\" x=\\\"0 2.28 7.84 13.4 18.4\\\">lease</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 129.9813 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 133.2298 305.0203)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57 38.35\\\">payments</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 176.5843 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 179.8329 305.0203)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 196.5174 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 199.766 305.0203)\\\" x=\\\"0 5.56 7.84\\\">all</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.8881 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 213.1366 305.0203)\\\" x=\\\"0 5.56 8.34 13.9 19.46\\\">other</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 235.9296 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 239.1782 305.0203)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57 33.35\\\">amounts</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 277.5327 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 280.7812 305.0203)\\\" x=\\\"0 5.56 10.56 15.56 18.89 24.45 30.01\\\">accrued</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 316.3574 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 319.606 305.0203)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 330.1675 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 333.4161 305.0203)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29 32.85\\\">provided</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.834 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 375.0826 305.0203)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 382.9244 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 386.173 305.0203)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 401.7931 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 405.0417 305.0203)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement,</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.736 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 459.9846 305.0203)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.8264 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 471.0749 305.0203)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.9763 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 488.2249 305.0203)\\\" x=\\\"0 2.78 8.34 10.62 12.9 18.46 25.68 27.96 33.52\\\">following</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 527.3118 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 530.5603 305.0203)\\\" x=\\\"0 3.33 8.89 14.45 20.01\\\">range</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 556.1365 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 559.3851 305.0203)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.7249 305.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 293.7019)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57 33.35\\\">amounts</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 79.0295 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.706 293.7019)\\\" x=\\\"0 5.56 11.12 13.9 19.46\\\">$1.00</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 106.7305 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 109.407 293.7019)\\\" x=\\\"0\\\">-</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 112.7371 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 115.4136 293.7019)\\\" x=\\\"0 5.56 11.12 16.68 22.24 25.02 30.58 36.14\\\">$500.00.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 154.3394 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 157.016 293.7019)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 174.8089 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 177.4855 293.7019)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 28.35 30.63 35.63\\\">authorize</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 218.6818 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 221.3583 293.7019)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.9198 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 234.5964 293.7019)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 242.9362 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 245.6128 293.7019)\\\" x=\\\"0 5.56 11.12 16.68 18.96\\\">debit</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 267.3559 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 270.0325 293.7019)\\\" x=\\\"0 2.28 7.84 12.84 17.84 23.4\\\">lesser</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 296.7659 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 299.4424 293.7019)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57 33.35\\\">amounts</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 337.7969 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 340.4735 293.7019)\\\" x=\\\"0 2.78 8.34 13.9\\\">than</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.9364 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 362.6129 293.7019)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 382.066 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 384.7426 293.7019)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57 38.35\\\">payment,</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 425.8754 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 428.5519 293.7019)\\\" x=\\\"0 5.56 11.12 16.12 21.68\\\">based</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 455.798 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 458.4746 293.7019)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 469.5976 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 472.2742 293.7019)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 491.7273 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 494.4038 293.7019)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 532.7583 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 535.4349 293.7019)\\\" x=\\\"0 5.56 7.84 12.84 15.62 21.18 24.51 29.51\\\">history.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.7249 293.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 282.3836)\\\" x=\\\"0 7.78 13.34 16.67 19.33 24.89 30.45 36.01 38.29 41.07 46.07 48.73 55.95 58.23 60.51 62.79 65.45 71.01 76.57 79.23 81.51 87.07 89.73 94.73 100.29 105.29 110.85 113.51 116.84 122.4 127.96 133.52 139.08 141.86 144.52 150.08 155.64 157.92 163.48 168.48 173.48 176.14 183.36 188.92 191.58 197.14 202.7 205.48 207.76 210.54 215.54 218.2 223.2 228.76 234.32\\\">Our debits will be in such range, unless we notify you.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 269.0652)\\\" x=\\\"0 6.67 13.89 21.11 23.77 30.99 36.55 42.11 44.39 47.17 52.17 54.83 57.61 63.17 66.5 69.16 76.38 81.94 84.72 90.28 93.61 99.17 104.73 110.29 112.95 119.62 125.18 130.18 138.51 144.07 149.63 152.41 155.07 161.18 166.74 172.3 175.08 177.74 184.41 189.97 195.53 198.19 203.75 209.31 212.09 217.65 223.21 226.54 228.82 233.82 239.38 242.04 247.6 252.6 255.26 258.04 263.6 266.26 271.82 277.38 282.94 285.22 288 290.66 296.22 298.88 304.44 310 312.78 318.34 323.9 326.56 329.34 334.9 338.23 340.89 346.45 352.01 357.01 359.67 363 368.56 371.34 376.9 380.23 385.79 391.35 396.91 399.57 405.13 410.69 415.69 424.02 429.58 435.14 437.92 440.58 443.36 448.92 454.48\\\">ACH Debits for Returned Payment Fee. You authorize us to debit $ 20.00 for an* D E M O *payment fee.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 255.7469)\\\" x=\\\"0 7.22 12.78 15.56 17.84 22.84\\\">Notice</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 69.0783 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 72.6034 255.7469)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 80.9433 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 84.4684 255.7469)\\\" x=\\\"0 6.67 12.23 15.56 17.84 23.4 26.18 28.46 34.02 39.58\\\">Variation.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 126.8317 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 130.3568 255.7469)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 135.9135 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 139.4386 255.7469)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 145.0001 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.5253 255.7469)\\\" x=\\\"0 5.56 11.12 16.68 18.96\\\">debit</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 170.2684 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 173.7935 255.7469)\\\" x=\\\"0 2.78 8.34 10.62 12.9\\\">falls</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 191.6939 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 195.2191 255.7469)\\\" x=\\\"0 5.56 11.12 13.9 18.9 21.18 26.74\\\">outside</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 227.5238 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 231.0489 255.7469)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 244.9503 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 248.4754 255.7469)\\\" x=\\\"0 5 10.56 16.12 21.12 23.4 26.18 28.46 34.02\\\">specified</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 288.0603 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 291.5855 255.7469)\\\" x=\\\"0 3.33 8.89 14.45 20.01 25.57\\\">range,</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.94 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 323.4651 255.7469)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 336.2483 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 339.7734 255.7469)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 353.8359 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 357.3611 255.7469)\\\" x=\\\"0 5.56 13.89 19.45 21.73\\\">email</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 381.3747 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 384.8999 255.7469)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 401.0229 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 404.548 255.7469)\\\" x=\\\"0 5.56 11.12 13.9 16.18 21.18\\\">notice</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 431.2912 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 434.8163 255.7469)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 443.1562 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 446.6813 255.7469)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 460.5827 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 464.1078 255.7469)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 497.4623 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 500.9874 255.7469)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 517.672 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 521.1971 255.7469)\\\" x=\\\"0 5.56 11.12 13.9\\\">date</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 540.66 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 544.1852 255.7469)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 555.3082 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 558.8333 255.7469)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.7249 255.7469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 244.4285)\\\" x=\\\"0 5.56 8.34 11.12 16.68 20.01 22.67 29.89 35.45 37.73 42.73 48.29 50.95 58.17 63.73 66.39 73.61 75.89 78.17 80.45 83.11 88.67 94.23 99.79 102.07 104.85 107.51 112.51 118.07 123.07 128.63 131.29 136.85 145.18 150.74 156.3 161.86 164.64 167.42 170.08 176.75 182.31 187.87 190.53 197.75 200.03 202.31 204.59 207.25 212.81 218.37 221.15 223.81 229.37 232.15 234.81 237.09 242.65 248.21 253.21 255.99 258.65 264.21 269.77 272.43 277.43 282.99 285.27 290.83 296.39 301.95 307.51 310.84 313.5 319.06 324.62 329.62 334.62 336.53 339.19 344.75 350.31 353.09 355.37 360.37 365.93\\\">after which we will debit such amount. You will get at least 10 calendar days&apos; notice.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 231.1102)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68\\\">Payment</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 80.1379 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 85.2907 231.1102)\\\" x=\\\"0 7.22 12.78 15.56 21.12 26.12\\\">Dates.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 114.192 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 119.3448 231.1102)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 137.1377 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 142.2905 231.1102)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 28.35 30.63 35.63\\\">authorize</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 183.4868 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 188.6395 231.1102)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.74\\\">debits</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 215.3827 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 220.5354 231.1102)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.6585 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 236.8113 231.1102)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.7028 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 250.8556 231.1102)\\\" x=\\\"0 5.56 8.34 11.12 16.68\\\">after</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 270.8654 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 276.0181 231.1102)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 289.9195 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 295.0722 231.1102)\\\" x=\\\"0 5.56 11.12 13.9 19.46\\\">dates</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.5351 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 324.6879 231.1102)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 336.3578 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 341.5106 231.1102)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 379.865 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 385.0178 231.1102)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29 32.85\\\">provided</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 423.4358 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 428.5885 231.1102)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 436.4303 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 441.5831 231.1102)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 455.4844 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 460.6372 231.1102)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement,</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.3315 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 517.4843 231.1102)\\\" x=\\\"0 5.56 11.12 13.4 18.96 23.96\\\">unless</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 546.4491 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 551.6019 231.1102)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.7249 231.1102)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 219.7918)\\\" x=\\\"0 5.56 8.34 13.9 19.46 22.79 30.01 32.29 37.29\\\">otherwise</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 83.5315 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 86.8927 219.7918)\\\" x=\\\"0 5.56 7.84 11.17 16.73 21.73\\\">direct</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 111.4044 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 114.7656 219.7918)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 125.3271 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 128.6884 219.7918)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.5302 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 139.8914 219.7918)\\\" x=\\\"0 7.22 10.55 12.83 15.61 17.89 23.45 29.01\\\">writing.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 171.6834 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 175.0446 219.7918)\\\" x=\\\"0 9.44\\\">We</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 190.0446 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 193.4058 219.7918)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 207.4683 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.8296 219.7918)\\\" x=\\\"0 5.56 11.12 16.68 18.96\\\">debit</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 232.5727 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 235.9339 219.7918)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.057 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 250.4182 219.7918)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.3098 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 262.671 219.7918)\\\" x=\\\"0 5.56 8.34 11.12 16.68\\\">after</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 282.6808 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 286.0421 219.7918)\\\" x=\\\"0 5.56 10.56 16.12 19.45\\\">every</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 310.4952 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 313.8564 219.7918)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 352.2109 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 355.5721 219.7918)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29 32.85\\\">provided</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.9901 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 397.3513 219.7918)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 405.1931 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 408.5543 219.7918)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 424.1745 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 427.5357 219.7918)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement;</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 479.23 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 482.5912 219.7918)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29 32.85 38.41\\\">provided,</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 523.7875 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 527.1488 219.7918)\\\" x=\\\"0 5.56 11.12 18.34 23.9 28.9 34.46 37.79\\\">however,</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.7249 219.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 208.4734)\\\" x=\\\"0 2.78 8.34 13.9\\\">that</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 57.3547 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 60.5776 208.4734)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 73.3608 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 76.5836 208.4734)\\\" x=\\\"0 3.33 8.89 13.89 19.45 22.78 27.78\\\">reserve</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 109.9284 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 113.1512 208.4734)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 127.0526 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 130.2755 208.4734)\\\" x=\\\"0 3.33 5.61 11.17 16.73\\\">right</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 149.7872 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 153.01 208.4734)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 161.3499 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 164.5728 208.4734)\\\" x=\\\"0 5.56 11.12 16.68 18.96\\\">debit</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 186.3159 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 189.5388 208.4734)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 200.6618 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 203.8847 208.4734)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 217.7861 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 221.0089 208.4734)\\\" x=\\\"0 5.56 11.12 16.68 21.68 23.96 29.52\\\">banking</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.0968 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 259.3197 208.4734)\\\" x=\\\"0 5.56 11.12\\\">day</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.4427 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 278.6656 208.4734)\\\" x=\\\"0 2.28 10.61 18.94 24.5 30.06 32.34 37.9 40.68 46.24 48.52\\\">immediately</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 332.191 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 335.4139 208.4734)\\\" x=\\\"0 5.56 8.89 14.45 19.45 25.01 30.57 32.85 38.41\\\">preceding</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 379.3934 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 382.6162 208.4734)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.0694 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 405.2922 208.4734)\\\" x=\\\"0 3.33 8.89 14.45 20.01 22.29 27.85\\\">regular</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 436.4787 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 439.7016 208.4734)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 478.0561 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 481.279 208.4734)\\\" x=\\\"0 5.56 11.12 13.9\\\">date</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 500.7419 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 503.9647 208.4734)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.0233 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 512.2462 208.4734)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.1476 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 529.3704 208.4734)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.7249 208.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 197.1551)\\\" x=\\\"0 5.56 11.12 13.9 19.46 22.12 24.9 30.46 32.74 35.02 40.02 42.68 48.24 53.8 56.46 62.02 64.68 70.24 75.8 81.36 84.69 90.25 95.81 101.37 106.37 108.65 114.21 119.77 122.43 127.99 133.55 138.55 141.21 144.54 146.82 149.6 155.16 157.94 160.72 163.38 168.94 171.6 177.16 182.72 185 187.28 192.84 198.4 203.4 206.06 211.62 214.95 217.61 224.83 230.39 235.95 240.95 246.51 252.07 257.63 260.29 265.85 271.41 276.41 279.74\\\">date falls on a non-banking day (i.e., a holiday or weekend day).</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 183.8367)\\\" x=\\\"0 7.22 12.78 16.11 19.44 25 30 32.78 35.06 40.62 46.18 51.18 53.96 56.62 63.29 68.85 74.41 77.07 82.63 88.19 90.97 96.53 102.09 105.42 107.7 112.7 118.26 120.92 126.48 131.48 134.14 136.92 142.48 145.14 150.7 156.26 161.82 164.1 166.88 169.54 175.1 180.66 186.22 188.88 193.88 197.21 202.77 208.33 210.61 213.39 216.05 221.05 226.61 232.17 235.5 238.16 243.72 248.72 253.72 259.28 264.84 270.4 273.18 275.84 278.62 284.18 286.84 291.84 297.4 300.73 304.06 309.62 314.62 317.4 320.06 325.62 328.95 332.28 337.84 341.17 346.17\\\">Corrections. You authorize us to debit and credit your* D E M O * correct errors.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 170.5184)\\\" x=\\\"0 6.67 9.45 12.23 17.79 22.79 25.57 27.85 32.85 38.41 41.07 48.29 53.85 56.63 62.19 64.97 67.63 73.74 79.3 84.86 87.52 90.3 93.63 99.19 104.75 109.75 115.31 120.31 123.09 125.37 130.93 136.49 138.4 143.4 146.06 151.62 154.4 157.18 162.74 167.74 170.52 172.8 177.8 183.36 186.02 191.58 197.14 199.92 205.48 208.14 210.42 215.42 218.08 220.86 226.42 231.98 234.64 241.31 246.87 250.2 255.76 261.32 269.65 275.21 280.77 283.55 286.21 293.43 298.99 301.77 307.33 309.99 315.55 318.88 324.44 329.44 331.72 337.28 342.84 348.4 351.06 356.62 362.18 367.74 372.74 378.3\\\">Effective Date. The transaction&apos;s effective date is the Agreement Date provided above.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 157.2)\\\" x=\\\"0 6.67 11.67 16.67 22.23 27.79 33.35 36.13 38.79 44.35 49.91 55.47 58.13 65.35 70.91 76.47 79.25 81.53 87.09 92.65 95.43 98.09 104.76 110.32 115.88 118.54 124.1 129.66 132.44 138 143.56 146.89 149.17 154.17 159.73 162.39 165.17 170.73 176.29 178.95 184.51 190.07 195.63 197.91 200.69 205.69 208.35 211.13 216.69 219.35 222.13 227.69 229.97 234.97 237.63 243.19 248.19 253.19 258.75 264.31 269.87 272.65 275.43 278.09 285.31 290.87 299.2 304.76 310.32 313.65 316.31 320.2 324.09 327.98 331.87 335.76 341.32 346.88 352.44 358 360.66 367.88 373.44 379 381.78 384.06 389.62 395.18 397.84 405.06 410.62 418.95 424.51 430.07 433.4 436.06 439.95 443.84 447.73 451.62 455.51 461.07 466.63 472.19 477.75\\\">Account and Routing. You authorize the debits to this account: Number *****3968 Routing Number *****1451.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 143.8816)\\\" x=\\\"0 7.22 12.78 18.34 23.9 29.46\\\">Change</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 75.7043 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 78.8745 143.8816)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 86.7163 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 89.8865 143.8816)\\\" x=\\\"0 6.67 11.67 16.67 22.23 27.79 33.35\\\">Account</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 126.0193 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 129.1895 143.8816)\\\" x=\\\"0 2.78 8.34 11.12 16.68 20.01 28.34 33.9 36.68 38.96 44.52 50.08\\\">Information:</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 182.0508 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 185.221 143.8816)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 203.0139 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 206.1841 143.8816)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 28.35 30.63 35.63\\\">authorize</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.3804 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 250.5506 143.8816)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 261.1121 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 264.2823 143.8816)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 272.6222 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 275.7923 143.8816)\\\" x=\\\"0 5.56 11.12 16.68 18.96\\\">debit</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 297.5355 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 300.7057 143.8816)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 316.8287 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 319.9989 143.8816)\\\" x=\\\"0 5.56 11.12\\\">new</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.3437 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 341.5138 143.8816)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.68 32.24\\\">account</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 376.5382 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 379.7084 143.8816)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 395.8315 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 399.0017 143.8816)\\\" x=\\\"0 5.56 7.84 12.84\\\">give</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 417.405 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 420.5752 143.8816)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 431.1367 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 434.3069 143.8816)\\\" x=\\\"0 2.28 7.84 10.62 16.18 19.51 27.84 33.4 36.18 38.46 44.02\\\">information</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 483.8918 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 487.062 143.8816)\\\" x=\\\"0 2.78 8.34 11.67\\\">for.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.5103 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 504.6805 143.8816)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 510.2371 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 513.4073 143.8816)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.5303 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 532.7005 143.8816)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.68 32.24\\\">account</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.7249 143.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 132.5633)\\\" x=\\\"0 2.28 7.28 9.94 13.27 18.83 21.11 26.67 31.67 34.45 40.01 45.57 48.23 55.45 61.01 63.67 70.89 73.17 75.45 77.73 80.39 85.95 91.51 97.07 99.35 102.13 104.79 110.35 115.91 120.91 123.57 129.13 134.13 139.13 144.69 150.25 155.81 158.59 161.25 168.47 174.03 176.69 182.25 187.81 192.81 198.37 201.03 206.59 212.15 214.81 217.59 219.87 222.15 227.71\\\">is re* D E M O *ill debit any account we have on file.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 119.2449)\\\" x=\\\"0 6.67 9.45 15.01 20.57 23.23 29.9 35.46 40.46 48.79 54.35 59.91 62.69 67.69 70.47 73.13 79.8 85.36 90.92 93.58 101.91 107.47 112.47 115.13 120.13 122.91 128.47 134.03 136.69 142.25 147.81 152.81 161.14 166.7 172.26 175.04 177.7 183.26 186.04 188.7 190.98 196.54 202.1 207.1 209.88 212.54 215.32 220.88 224.21 229.77 235.33 237.99 243.55 249.11 254.67 259.67 261.95 267.51 273.07 275.73 281.29 286.85 291.85 296.85 299.51 305.07 310.63 313.41 318.97 322.3 327.86 330.52 336.08 338.74 344.3 349.86 354.86 363.19 368.75 374.31 377.09\\\">Stop Payments. You may stop payment at least three banking days before a payment.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 105.9266)\\\" x=\\\"0 7.22 12.78 17.78 23.34 28.34 33.9 36.68 38.96 44.52 50.08\\\">Revocation,</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 93.5412 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 97.2277 105.9266)\\\" x=\\\"0 7.22 12.78 18.34 23.34 28.9 31.18 33.46 39.02 41.8 44.08 49.64 55.2\\\">Cancellation,</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 155.216 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 158.9024 105.9266)\\\" x=\\\"0 6.11 11.67 15 23.33 25.61 31.17 36.73 39.51 41.79 47.35 52.91\\\">Termination.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 214.5958 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 218.2823 105.9266)\\\" x=\\\"0 6.11 11.67 13.95\\\">This</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 237.2325 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 240.9189 105.9266)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 28.35 30.63 35.63 41.19 43.97 46.25 51.81\\\">authorization</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 298.2968 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 301.9833 105.9266)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.8\\\">applies</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 333.7899 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 337.4764 105.9266)\\\" x=\\\"0 5.56 11.12 13.9 16.18\\\">until</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.9383 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 359.6248 105.9266)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.7478 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 379.4343 105.9266)\\\" x=\\\"0 3.33 8.89 13.89 19.45 24.45\\\">revoke</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 409.449 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 413.1354 105.9266)\\\" x=\\\"0 2.28 5.06\\\">it.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 420.9723 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 424.6588 105.9266)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 442.4518 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 446.1382 105.9266)\\\" x=\\\"0 8.33 13.89 18.89\\\">must</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.8082 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 471.4946 105.9266)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29\\\">provide</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 504.3511 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 508.0375 105.9266)\\\" x=\\\"0 5.56\\\">at</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 516.3774 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 520.0639 105.9266)\\\" x=\\\"0 2.28 7.84 13.4 18.4\\\">least</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 541.2455 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 544.932 105.9266)\\\" x=\\\"0 2.78 8.34 11.67 17.23\\\">three</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 567.7249 105.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 94.6082)\\\" x=\\\"0 5.56 11.12 16.12 21.12 23.03 25.69 31.25 36.81 39.59 41.87 46.87 52.43 55.09 57.87 63.43 66.09 71.09 76.65 82.21 87.21 92.77 95.05 97.83 100.49 107.71 113.27 115.55 117.83 120.49 126.05 128.83 131.49 134.82 140.38 145.94 151.5 154.83 157.49 163.05 168.61 174.17 177.5 183.06 188.62 194.18 199.74 202.4 207.96 210.74 213.4 215.68 221.24 226.8 231.8 234.58 237.24 240.02 245.58 248.91 254.47 260.03 262.69 268.25 273.81 278.81 283.81 286.47 292.03 297.59 300.37 305.93 309.26 314.82 317.48 320.26 325.82 331.38 334.04 339.6 342.93 348.49 354.05 359.61 364.61 370.17 375.73 378.39 383.95 386.73 389.51 395.07 400.07 402.85 405.13 410.13 415.69 418.35 423.91 429.47 432.25 437.81 440.47 446.03 448.81 451.47 454.25 459.81 465.37 468.03 470.81 476.37 479.7 488.03 490.31 495.87 501.43 504.21 506.49 512.05 517.61\\\">days&apos; notice to cancel. Call at (100) 000-0006 at least three days before the proposed effective date of the termination.</text></g><g clip-path=\\\"url(#clip2-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 81.2898)\\\" x=\\\"0 7.78 10.56 16.12 21.68 25.01 27.67 34.89 40.45 46.01 51.57 57.13 62.69 67.69 70.47 73.13 80.35 85.91 88.69 90.97 93.75 98.75 101.41 106.97 111.97 114.63 120.19 122.97 125.63 127.91 133.47 139.03 144.03 146.81 149.47 152.25 154.53 159.53 165.09 167.75 173.31 178.87 183.87 186.15 191.71 197.27 202.27 207.27 209.93 215.49 221.05 226.05 231.05 233.71 239.27 244.83 247.61 253.17 256.5 262.06 264.72 267.5 273.06 278.62 281.28 286.84 292.4 297.4 300.18 302.84 308.4 310.68 312.96 315.24 317.52 323.08 328.64 331.3 336.86 342.42 345.2 350.76 353.42 355.7 358.48 361.14 366.14 371.7 377.26 380.59 383.25 388.81 393.81 398.81 404.37 409.93 415.49 418.27 420.93 423.21 428.77 431.55 437.11 440.44 448.77 454.33 457.11 459.39 464.95 470.51 473.17 478.17 483.73 489.29 494.85 500.41 505.97 510.97\\\">Other Changes. Notify us at least five business days before the next billing date if your account information changes.</text></g><clipPath id=\\\"clip2-4\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip2-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.775 345.3758 L 573.625 345.3758 L 573.625 344.3758 L 34.775 344.3758 L 34.775 345.3758 z \\\"/><path clip-path=\\\"url(#clip2-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.625 344.3758 L 573.625 344.3758 L 573.625 329.0574 L 572.625 329.0574 L 572.625 344.3758 z \\\"/><path clip-path=\\\"url(#clip2-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.775 344.3758 L 35.775 344.3758 L 35.775 329.0574 L 34.775 329.0574 L 34.775 344.3758 z \\\"/><path clip-path=\\\"url(#clip2-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.775 329.0574 L 573.625 329.0574 L 573.625 328.0574 L 34.775 328.0574 L 34.775 329.0574 z \\\"/><path clip-path=\\\"url(#clip2-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.775 79.6902 L 573.625 79.6902 L 573.625 78.6902 L 34.775 78.6902 L 34.775 79.6902 z \\\"/><path clip-path=\\\"url(#clip2-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.625 328.0574 L 573.625 328.0574 L 573.625 79.6902 L 572.625 79.6902 L 572.625 328.0574 z \\\"/><path clip-path=\\\"url(#clip2-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.775 328.0574 L 35.775 328.0574 L 35.775 79.6902 L 34.775 79.6902 L 34.775 328.0574 z \\\"/><g clip-path=\\\"url(#clip2-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 36.5264)\\\" x=\\\"0 6.498 11.997 14.391 16.785 21.789 26.793 29.295 34.299 39.303 44.307 504 506.3906 508.7812 511.1719 513.5625 515.9531 518.3438 520.7344 523.125 525.5156\\\">UT  07/2019          </text></g><g clip-path=\\\"url(#clip2-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 26.3398)\\\" x=\\\"0 6.003 11.007 16.011 21.015\\\">Page </text></g><g clip-path=\\\"url(#clip2-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 55.8097 26.3398)\\\" x=\\\"0\\\">3</text></g><g clip-path=\\\"url(#clip2-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.815 26.3398)\\\" x=\\\"0 2.394 7.398 9.9\\\"> of </text></g><g clip-path=\\\"url(#clip2-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f2-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 73.1021 26.3398)\\\" x=\\\"0\\\">7</text></g><g clip-path=\\\"url(#clip2-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#d9d9d9\\\" style=\\\"font-family:f2-0; font-size:54pt; white-space:pre\\\" transform=\\\"matrix(0.707 0.707 0.707 -0.707 135.6027 198.5094)\\\" x=\\\"0 56.016 96.048 136.08 176.112 216.144 236.16 284.184 324.216 344.232 364.248 416.232 456.264 480.24\\\">Qoppa Software</text></g><g clip-path=\\\"url(#clip2-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#002ba6\\\" style=\\\"font-family:f2-0; font-size:9pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.932 772)\\\" x=\\\"0 9.336 16.008 22.68 29.352 36.024 39.36 47.364 54.036 57.372 60.708 69.372 76.044 80.04 86.712 90.048 94.044 97.38 104.712 111.384 115.38 118.716 126.72 132.72 139.392 142.056 148.728 155.4 158.736 161.4 168.072 174.744 178.08 187.416 194.088 196.752 202.752 206.088 210.084 213.42 220.092 223.428 226.764 233.436 239.436 242.772 246.108 249.444 258.108 266.772 275.436 278.772 285.444 292.116 298.788 305.46 312.132 315.468 321.468 328.14\\\">Qoppa Software - For Evaluation Only - https://www.qoppa.com</text></g></g></svg></svg></g></svg><br>\\n<?xml version='1.0' encoding='UTF-8'?><svg id=\\\"qoppa_document\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" version=\\\"1.1\\\" xmlns=\\\"http://www.w3.org/2000/svg\\\" xmlns:xlink=\\\"http://www.w3.org/1999/xlink\\\"><!-- jPDFWeb v2019R1.03 - Demo Version --><style>title p { display: block; }</style><g id=\\\"qoppa_viewxform\\\" transform=\\\"matrix(1 0 0 1 0 0)\\\"><style type=\\\"text/css\\\">@font-face {font-family:f3-0;src:url(\\\"data:application/font-woff;charset=utf-8;base64,d09GRgABAAAAAAp8AAoAAAAADcAAAQABAAAAAAAAAAAAAAAAAAAAAAAAAABPUy8yAAAA9AAAADcAAABWWd9ZMmNtYXAAAAEsAAAAbAAAAIwCiwM0Z2x5ZgAAAZgAAAdLAAAJ6ArdyapoZWFkAAAI5AAAADEAAAA2GI9khmhoZWEAAAkYAAAAIAAAACQGNwJvaG10eAAACTgAAABeAAAAgDkXBShsb2NhAAAJmAAAAEIAAABCI1gg9G1heHAAAAncAAAAGAAAACAAIwA9bmFtZQAACfQAAAB8AAAA5g9SKYxwb3N0AAAKcAAAAAwAAAAgAAMAAHicY2Bk8mKcwMDKwMDUxbSbARlwMeogc/8DATI/MCDAkUEBCG8y3fyvxxDFdJPhEkwOAMlSDLoAeJxjYGBgZGAGYgYGHgYWhgYgLcMgABThYVBg0GewYnBj8GcIZAhmSGRIZkhjyGQoZ6j8/x+oSoFBFyjriiSbypDBkAOS/f/4//X/Z/8f/r/7/67/O/+v+b/6/6r/K/8v/78MbA9OAAAj1iOqeJxtVktsG9cVnXuHpChTEr/DjyRSHI44/IlUpeGQkvgTbepPkZJlUTQlWVLNWq2h2rHrohsv4iJo4P6SOqmRxIukDYqiWRTtJmgBN0CCBu1CRhZd1E5bdFOgdtuVG7SAAY16Z0gmClAOMPPmzX33nnfueUdigPEzf4QEjDIswwDHy5BQnsJovc7QK9Og+3tMU/2W5gT5vSb91Hnm+DE48VCd5+wS+9HcR27829EgRWNrDRroWxfD2GWJs9LKRrMJP242lQ9a66sUeInWm7SancuK68p5+K5yA3519AQP1/+0/nSdgih+heIlGnZ/Gm8VrCgpN2FF+cUOHtb+sq7cV0OpfuL4E/wzPmTMzBBFO11Ol6HL0CWG6EqntDHNSal0Kk0z8P07W9usbnfv7t3tbYT6xtuXTxcRSzPPXcvnAUslfIjN5i/f2bmA7MUv/fT1y5fLUC7f+db8Aq6svvjCwgKj1Rw9/j0+wUfMIDN5oqb61ArTi6A+qahLpA8G+jDeAhBKq1EqmpSK5m5jk0WfL+Hz+Ya80aAoJKKR9A8IIjQ2X9uanWMxm7k96HSa3S63yxUIBPiwkwPIZvCRbn//JxdmZkdcVktP0eLiBtzdp/Bi890fXrq0DDMzr3/93DnWoDeaTaf0M91Wa38glz17ZW1N63P8+N+4T5yN0QuBEsQ2+vZOQoE20LSzjbq9m/Q4BcB/DInEcm58nGUnJ4vNtbN6Q21j58ZGravRVSisnU4m2e7trYWyLCMuLlz9yuKCEZ7N8Ty43cW009nriMZuXB/7AkxMPW/cCooIPt9M2eOxcpHIxs7YGMjyV1WOReqrHh1MjMmQrlQqCVAXp3IpnCBZ1rikS1YnA7QRvdoL9XK0+i5zxenaQSIBaDDYt7r1OhhNJKbOjcQwl6vFQyEv+PlMjueNoIv4+WhUFNE7OLoXDML1XZ5HiEaXngwT82arxRK22TASmykHg106o7FbjLuc4HInL/ZRPb3VIosODrNZjePg8SfwT7QxfItjFa8GXsV6UqKaIOB7vT6fND88jEP+hsz7DRuWqUztQNXk1OTzSxNpC+xJA/2AqfTGcjbLQnB4wrRNJMLs3IsHy2UdRCKrLW2Kx0+JNydjZAKfVTarIpXG26UFQ7u0yim8g+HwdCESBoMhFpsfDQSs5/vzhfWtuXkdCe3WfLWCIBcjEcRYLDdfH4l7vWOmRljEfOHefqWi1+VzP6f9GqlamjQ1cEJTnMQJdHIFWZLFjnqiRrPZ1s85oNmsVyokigtWj9uGt1hA6O2LT5WUPHxQWuXjCT2yekbj8gzd/kHn3UVKsKbanFHiTstpeM8nhqS1xCjUYdA7nhdFqOOhcszbbQAj8fPKj2Az7vPRVteVv1ImVHMy9zRPU32LgKoJz9Tph4fNLx49I0vr1G7HMZJVogg8PErSfJFhCLKNiWrzXAfVCXSpdtdpmGwNXdZidUAU87IgWAbEYHExHCK8dkc6z/vrDk6a9fpIpQthpxPA7YlEPG7A+Mhp5TtQj/F+xFAorbwPF8PeQWRHR/PKI8JR0rixadxwn+dGaHPzylAonKvSCagD9S4fVLkxLERUJ4kn1pU3YSXj84rBivIHbdPI8HT2uinn5zxVOOGpXOdsqZ7qvZHNqN555WqhAJjJ3FwUxXB4aWVYgHAIbexS+ca3z5yBublvXl1eLmEqtbGblNlsZrmRkluaLR1PooHqOZjhzi7GTxg5iUgduxwtfmUi9lUuGJzYzuVZmMo8N8LzzvrH84EAHYvZJf8Q+P1oKAVIbKXS7YNqRQc2u1fBB5O6YrFSkyRgC/nyYjbTPi+T8LhTWy/I7aKqr0jqzmVJc/DO0aVOwuO6i+dj1zJTmM9dSAeDzpWPV6gkDPnLM8FhCAR+p3hJd7pK9eB2qQQuZ6A0qctkF8v5AguSVKsUiy1tTdOtQbW5k73r/AlRdfMyN9Af8zg4u89iMXMJj4caV4263QBGo2lV9TI2FksrD7W+ATNEnvOA8pGv25NtErs6Qjhh8F3/z+DjSWmvkkxa6jreH40KAqLb4/za3CySo+3WJib6NrqDQXlEGEb9VGY6GwrDC9lwGHm+2pOwO/r6Iv6eXt2gb6i2Go1AKFzvzbvdCA7HWNRitph5P+GzHv8XevG+6hF2zRscbQgaKNWVNK/4Wb1u7uNOdRtNPY4+s308IMD0NN5/t6S8HzxlQgBgqyw90OOpwmLpVotL2vvfiQfNI9RuqXnpwH7a0bT1DXS6StZ0yliv9ofDU3uRKKJB+XWSrN4w0H8TBo6eVUIeD7CSVIFNytlLiR9TTmJ3ACVWYC+//Grjt2c/pFW78NZnHqEjIT2glx4tbgAo1AQCu3P9SmP/G7W3N/e/vPUWrbkEbyjX4KWjZ/CScq2z1nKcgH+1cNO6NtZRaP/TUiAwdnjl/CNOGC5ZTD193b09Jotot5u4D3fuoOHoN7lYDIFl2TUdIthtQxNUaOt/bprEGQB4nGNgZGBgAOL9uy5diOe3+crAzfwCKMJw21zgLIL+r8fMyHQTqI6DgQkkCgBowQuoAAAAeJxjYGRgYLr5X48hitmRgeH/fWZGBqAIClAAAHbABKt4nGNggABGXyAWA9MKQDoKzAbSTLMZ/JmSGQKYuRj0QRjI12XSYVBj/MKgDqTVgWo4gLQzwz0IZnZkcATyXYBYGUqrAc10AKqXB6oVBPKdgGxepksMLEBaAABlFhBuAAAAAAAAAAAAAAAAAA4AGgAoADoAUgBoAKIBAgFUAbQB8AIsAloChAKYAqQC6AMSA0oDiAPGA+4EPgRsBJYEqgTIBPQAAHicY2BkYGBQYLBhYGIAAUYGNAAACboAYXicdcq9CoJgFIfxx+9anRobHCMUoguohq7AIVrEQoMXDROhpWvvD50xObyHH897gIQLAV64BFK9nz05NfssyMwBKzbmUD6ZI/lqjuWRIz1P3gw8aGhVztxxTNqjWk3FQTeO25+fDzv2s71UGXip9XSsKdiSa2buv2bjHPt4nGNgZsALAAB9AAQ=\\\");}@font-face {font-family:f3-1;src:url(\\\"data:application/font-woff;charset=utf-8;base64,d09GRgABAAAAABGUAAoAAAAAGPwAAQABAAAAAAAAAAAAAAAAAAAAAAAAAABPUy8yAAAA9AAAADcAAABWXhNbUGNtYXAAAAEsAAAAZAAAAHRBjOKmZ2x5ZgAAAZAAAA2oAAATvPYbMJhoZWFkAAAPOAAAADEAAAA2HL9qvGhoZWEAAA9sAAAAIAAAACQNvwX/aG10eAAAD4wAAAC2AAABHiMuGdhsb2NhAAAQRAAAAJIAAACSpvKirm1heHAAABDYAAAAGAAAACAATAAzbmFtZQAAEPAAAACYAAABdhyGNgFwb3N0AAARiAAAAAwAAAAgAAMAAHicY2Bk8mKcwMDKwMDUxbSbARlwMeogc/8DATI/MCDAkUEBCG+yXv4XxLCD9TLjOpgcAM6cDRIAeJxjYGBgZGAGYgYGHgYWhgwgLcYgABRhY1Bg0GQwYTBnsGbwYghniGSoUpD9/x8or8CgzqDDYMZgyeDI4AMUT1SQ+f///+P/d//f/n/r/83/V/5f/n/p/+kHWmBTsQAA4QwbQniclVgLVBNXGp57JxMeoiVipNRSHWKgFF8whIhVtIoYkIKARbBU8MFDfFWCteARRJCoPCqIFSlaVq3lWA5Va9FG0tZgba1EsNbtVg51W9e1sG7b47pdC5nr/ncmEfV09+xOTpKZzP3v/b/vfv9jwiAmjT2BAjkzwzEM0qi9BC8UaAteN5Ez/0xuIR8GDsRsIok4g7vCuNELlSfS0A+cQa6ioBLSiFaQRHQdfY9+QNdJCBlORpAQ2S4G7CbLdl7URKAfMSiIXC0Bo0buCuHJM2Qs4dEldAf9A10CmzZyHZUyNsadYbQatTBKow7Rh+lQqS0zMzM01GY7mxEfXwrjZqPTOAevYVhYiFfzOEe8hv3xmg/pum3wQedg5TnAGA74HQ4cDljhdzckINRMUmpQM2ceiIIfGcyk3b+l8AZ/n2C8wdIvwF/lqQ8TQrxHqzxdlOw4lScPbxy+0wDHzgr6WUE0qBd9t6m8HC1EL5m2bzeR90hLeTmXIrqKHvguvkf9ucHAkjCvK+UY84BIJbBMjUDe/TmvHVj4tS52sBjGzWQYhTuM42F1Pkw7HoCHBvhr/FyULkKY7Il6FFzAS80r3MXpHOKQMiVl48aeS8VFnh3ucXFri6OiEhO/601KYi+2zrp2rXBT0/ENr+Ubz26PioqaW2BalfvBicLCcnl/FgPeMbDeFLgIe2QxeSkeyHOsqQE2dJrR3qOFEHkgq8gJEfLzzx0vKFBbn/rzmunTyU9BhsaExPi4su3R0R3uW7d2XaqoiDaw2glJC5c0565attTc9/zz6+y758fsNL30UlzcavP69cXFF7dnZgL3YwH7KM4GZ8NBLUjFa1QapOZVgkroQlZUer5OzMR5lvNYgZvEDPaCXX+EHERLGOe++QKO4cyzFMnDPrMjJd4Ef4AGmzfkv8YP+dS9tTlmfnR0YUVSEn4iaaHpso/VJy/vHXGgrOyn7s1FxUWn2/G2A+npdbXLlplMqBoNq37j2w/T0uw9pPn0qdrdly9tK6c8LgPfvUFCSlmLIC2Ft30+/kXsvYLVnLl14C6no34mO/Ql+ylzGirvqxeW/JUYBj/ljVCPov6yi8HP+TEOPz2TkkxfPWl9Ms94GLtQP4vA0VMWVrd/iexnOckjd9+opn6yWpR66tTu2suXyrfR9aW4UGhBjC5StAuqB9Gh0NrEDZR9Kf6kMSOGxgxFoU2OQ3m4HIv4PmEYLgXwu9CoRRokePFeAvJCLL4s2mwHcdbRHnvMrwjTSEMfk9k4BTeLKVSDLHMYuLsNtq6QIsZT/qTNCwQBOHeRR7BdAfKm8Sp+nD4MZSHD1wsSyGHyNgo9FRMTG/sHYmbL50VVXykv7xd/xVo0rLISH5kxvdSuWKIPW/16qECSN2UsHZ/1deuKFQNRa9dK+s+4f4tbIscbB/j0GqUsGmfYO2TjoqTCYd1/O3RI/cWI3NyW3pKSrVuvv7N6jccX6ubmn8kF80cfmX22bOlvXLiwoQE9jXz3NSQmVlwpKbF1kkPkkK1TSj0UK5cBWN0ZFUU6Tk4sgciF5pVABLCGoVnG/Px8cpb804ou47+JajKZ89i1i/xG7uypa8U38VXwm3LWB/MMo3lCxescb0WffTMbaP+GXTrYq5jbin5pRZ+2DkTJsU5tSsCG5nAaVbJFiV1jxcfFeHYM3Rtc34rOO3hpA1404O84vTcMVvNqJf84M7yTGS2atUfYIZ5FpQ2k44fKyp0VNz7Oz/e4oD72PvkX+cxqPfeZzwcN+Pb71y+/1Yh80FNvvZWwoPqPxVu6LpF3SXNXl+wfp5ExIY2KV2mojyqB03SISqsVD3RwZvEIXgxOnhDjYHw7jCuWczmMF1BxRweFIGHV37/FpsG9kdI9KROAikfJwa9i06xTp678vCM3t+1iTg5ntqs+ef555BHQtm7dq+vRcAdXk+WaqKWe8IrJot7KVrRyHrCCdF+phPselEs3iU6IeZWgVJJesp4YSe9pdLAVHTzNmQenKc4PRCmuD/L0/RBON8k36jrYcpqPROb8aZb5HCw2KbaBxbbBTZJm6F70SDVp7O/VJHkHaFDQpMH6Xquqqqru/baysqryGrn4GRxIh0LPwVHVuB95oycb4SA/kh8bG7mo7m5ylLx3ubu7GyWj5O5uh0YVdgnbGEc0OsOQFaTgo3FIIxHUuq54TuSECQviz5AqqxWtR8OqqubNKyw4KfZyHiNHRkamlEVFia44xmj8bue6V3k/GU8FdxfwjGS0ML+L9yMBB5i8JSBOafEhem8922OsXZn/AJmp9uNz50inE53t0B0jMu8wBj+C706T8SqKpaCcIJd/ssMZg7lSvuGlGHSkGP8AXdgQNqo9ihyyWBbqQtMSEz4k8ez6Bfv2paRERq5efVTcaEXZryYna3d+xfkMVIaHk7V/ClaMzcqq35aby/OgUuPs2TmkQI49Wp9uA+ZgOc/Iq9CXlP3HeUlpxpHvH/ANtEjlANvuvLk3MdFoPNdhmJeaehDF+1rc6uvv3X6jes3aQXt29orlh1oKC54447qvwWfzZsuelNTnngsKmjQpLXPGDPLrV0ZjXt4JKGJhOr2+wDhnTlz84WsVFZJfE2Gv26S8LdUtilrRNrgRfd+Bbsply0POHaBBqlkfR54M8wHdeso+0lPJbXzj7JYtM2d1LF165szSpVber6jYJ2JmURFyZxfYPyDXX4YD8eyL9mPHy8uXL6fzwuycQa6bblhDy2YBCSbBXXjaF3gaRIK3ok9uzWAsrO1SIMccjHWjVYb2cMoW0kPa+kgb6elEe8xoKcowozfBNllxlL4hkgYGlY45oDpxsdLeS+vR0FNkkFgScxvPsuJZkGFewYfsH4i78Rr2RdBKHOSRW4oZzFOMP8PwgopWoHGs3B3BLkFDIecUnaNu6EJ5gQ1qz8vrJPPV7a721/V6D480sTgr68CNXSGLFr2SNX06aijBrX9PSCAfnfTzCxXySKUp+aXyowbYswkJ1+U6UQF6CZKw+j7Wz9C0qJPTmNysIUPJ/sLISIOhcH+BxfJai7V4S15e9/EifLctK/Nc18qcEsXHA1GJq/bWI25wd91eiQcD4LoJuB6ve85mxNspSBqCOLw1f4Paqoick25aCIcpfU6kwqrekN/6w3aTabtPSsqRJSEhWdlfXszKDglJP5KSUlMDWf9ebY2Eha51C7B4UizAoUYlz+xk7qF1gbr2jS1ntxRLCEoOFMyNNEQX7C/kzMQnt34vsQ/W1dWfaMvMOteVs7JEnlsRBDhcaaVCjg7ZGz0MKYDXeQ5hQZ6jExLW5y9Y4E3624qKR3coFsQvL12c6sGO3W668d3OHdXVuKBhfmxs7D5xbWrq4VeEkNTU0xORW01N3W5iJwO7ayl/ngBsGcSzGi50Gof3OtpgqmnDJKhw8AXeb+60qSEvk28aG9vZmrq0dP8A98Me5NiSOvs6tkbeZwNJlPTlwQQ+1g/qNeqHaZJ3X6cZJXWHbNAQNw8zZjCU9XcY87+Ap6lgJ0v2xAfM6b42RLfuXrQISxqADMDSvksl10+VrDI48eSpqiyWXbtyJ022kH3HqqTW4N7R8PCtYiJuQ6a3JY2CnUGqv45eUk2rMNhZLJy588JgD/SFp8lCxxivB2NkHavlPlwaP3p0hBAW8mKJwSAZHikLmjCiyd0w7y8P/Lwn9wU06KW+QI8EPAPV/kSyQfIo9XvcgCpIMjsTussjG8SbTjvH2nJ/YKB+OfoDuKfUAu/j4ILCVbpQsnWP0OA8UWqJeV5MTO6svkPlFkvpjsX+/u1lO1L9/S2UCj9+86dvmwZ7gJ6pU8uAHsc3M8QxrPM/cKzQSpM8yrFT3w9qvzNAqR5Yh6alZAAax+FyeMqfUmz+cIM+kW6SYzM76+KX2Vms1RmdNbXIlQqb7iXJkdb5/Xyj+v/yDRs4MAf1P5RwqM5zHDr3/e86h8fi/6Dt9t+VtNjn5BmfgPnhyRE9spP4xKRn92+0WLJ3zX9WoXNtqQOSf9pL2zZmJuSlY2AT+GhNdvglYP7xejwuQDMSKyG+lrxy9tMpUyJmpn/j3u5G0k+uXpW86Ez79OkRMzaQAWwZ5ZOeUVMfETFp8pinI+aOH/8mClyUXFY7bdrkyc/4GqKDp1jJUVhfc/8ODuAm0rqmlRmBzA7PvPRxSy6owAcOmBg85ekxLS3tpaXDh4eF5UdHVLn6PrMGr6hDruRenXjk1RdeeC7QA+YzSbVKS7UmZVnHnFCnoYeimbX0QO6kSRaUTbUmulKl4VYxhrzeJGsVuj2oCdqhWsz6kFvkVieqaUY1Cq3dykYM9sB9Zx1th3NK5DCkGUaL8Rhavm93/NLyc8dlNOvkzb+eRDPB7BvpgSRwsIf1sN+VzMEenizZO3AhxzSYu0nFHOeilf19ff1oJXm9H8Tp2o8DkZ1UISPB4rfoAFlG/YScSf2E3t7LmUfghaSWAH8+aYIwL/2F2c8GTkM1nQ4AqfeZEa0jwqcmJdY7gdyX/IC9Z6/CXG60z0c6+uiu5tmrYgzeY2/Ea8VVbEsTvtnUJI5pkvL1QvYmToa87y5lfk2ooAOR+CJBO3SKePl/KqRbsYJ+K05ID8mO/61sjGMeG8xjds7z4Pn64T+8eJs0AfS30oSQGs9mxMWXdcpfMM2/AbhYBZZ4nGNgZGBgAGKuhrvb4/ltvjJwczCAwG1zgbMw+v+Of0HslayXgeo4GJhAogBDGgwbAAAAeJxjYGRgYL38L4hhB3vv/x3/b7BXMgBFUIA7AL1WB8x4nEWNMQrCQBREJyGJEERsxULBysJaUgWsxMIqpJAU4hFsPUCK4C22iQcIFtYewCvkHsaXzYILj5ndP/NXGo7/gKXklSr8Wjc4+IkadGc1kYKrCmghhRMs3NsFcpdrwrz7hrlM+NYZTO+DViZKhjuZVyBt6Ziotrlhlv8z+ILOxvnx6K4ZGtM5QkV/j1rYN3W+8j493ZO59eyvbN7Nbb62/ZTeinuJn/NPjE56D2symbIfsmI9CAAAAAAAAAAAAAAAAAASAC4ASABcAGoAdgCGALIAxgD+AUQBYgGiAbYB9gIIAiICQAJ+ArYC2gL0AwoDRANcA2oDigOaA7gD0AQIBDgEeASyBP4FEgU+BVQFdgWOBcoF+gYwBl4Gmga+BvwHHAcuB1AHbAd6B64HzggCCDIIYgh8CLwI5AkECRoJOglYCX4Jlgm6Cd4AAHicY2BkYGDwYDBiYGYAAUYGNAAADQ8AgHicpYw9CsJgEERfTPxrrSzTC6IRrKy0UBCJIEiwEzUxIH5ibGw8gQfzGB7FSfKdwLAMvNnZWaDJDhfHawMdqWSHsVzJNVosLLtMWFv2xG/Ldbp8LDe0/zLDcOPJnZSEMw9CIpZqz1nRk1IOSg2ZFCv32bDnKp/TqWjGTJVeOP7ZfjEiqNTdFj7TxujCZ0ifgabCzx8N0TakeJxjYGbACwAAfQAE\\\");}@font-face {font-family:f3-2;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}</style><svg id=\\\"qoppa_page_p3\\\" class=\\\"qoppa_page\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\"><rect class=\\\"qoppa_pageborder\\\" x=\\\"0.5pt\\\" y=\\\"0.5pt\\\" width=\\\"611pt\\\" height=\\\"791pt\\\" fill=\\\"none\\\" /><svg class=\\\"qoppa_pagecontents\\\" x=\\\"0pt\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" viewBox=\\\"0 0 612 792\\\" ><g class=\\\"qoppa_contentstream\\\" transform=\\\"matrix(1 0 0 -1 0 792)\\\" fill=\\\"black\\\" stroke=\\\"black\\\" stroke-width=\\\"1\\\" stroke-linecap=\\\"butt\\\" stroke-linejoin=\\\"miter\\\" stroke-miterlimit=\\\"10\\\"><clipPath id=\\\"clip3-1\\\"><path d=\\\"M 35 730 L 574 730 L 574 770 L 35 770 L 35 730 z \\\"/></clipPath><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 757.4812)\\\" x=\\\"0 6.6699 11.6699 16.6699 22.2314 27.793 35.0146 37.2949 42.8565 48.418 53.9795 62.3096 67.8711 73.4326 76.2109 81.2109\\\">Acknowledgments.</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 124.6643 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 127.3205 757.4812)\\\" x=\\\"0 6.6699 12.2314\\\">You</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 145.1135 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 147.7697 757.4812)\\\" x=\\\"0 3.3301 8.8916 14.4531\\\">read</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 167.7844 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 170.4406 757.4812)\\\" x=\\\"0 2.7783 8.3398 10.6201\\\">this</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 186.0607 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 188.717 757.4812)\\\" x=\\\"0 5.5615 11.1231 13.9014 19.4629 25.0244 28.3545 30.6348 35.6348 41.1963 43.9746 46.2549 51.8164\\\">authorization</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 246.0949 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 248.7512 757.4812)\\\" x=\\\"0 2.2803\\\">in</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.593 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 259.2492 757.4812)\\\" x=\\\"0 5.5615 8.8916 11.1719 16.7334 19.5117\\\">print,</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.5393 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 284.1955 757.4812)\\\" x=\\\"0 5.5615\\\">on</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 295.3186 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 297.9748 757.4812)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 303.5363 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 306.1926 757.4812)\\\" x=\\\"0 5 10.5615 18.8916 24.4531 30.0146 32.793 38.3545\\\">computer</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 347.8771 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 350.5334 757.4812)\\\" x=\\\"0 5 10 13.3301 18.8916 24.4531 30.0147\\\">screen,</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.3264 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 385.9826 757.4812)\\\" x=\\\"0 5.5615\\\">or</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 394.8742 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 397.5305 757.4812)\\\" x=\\\"0 5.5615 8.3398 13.9014 19.4629\\\">other</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 420.3234 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 422.9797 757.4812)\\\" x=\\\"0 5 7.2803 12.2803 17.8418 23.4033\\\">visual</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 448.6633 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 451.3195 757.4812)\\\" x=\\\"0 5.5615 7.8418 12.8418 18.4033 20.6836 26.2451 31.2451\\\">display.</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 485.343 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 487.9992 757.4812)\\\" x=\\\"0 6.6699 12.2314\\\">You</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 505.7922 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 508.4484 757.4812)\\\" x=\\\"0 5.5615 10.5615 15.5615 21.1231 26.6846 33.9062 36.1865 41.7481 47.3096 52.8711\\\">acknowledge</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 566.8811 757.4812)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 746.1629)\\\" x=\\\"0 5.5615 11.1231\\\">and</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 57.3596 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 60.0158 746.1629)\\\" x=\\\"0 5.5615 11.123 14.4531 20.0146\\\">agree</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 85.592 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 88.2482 746.1629)\\\" x=\\\"0 2.7783\\\">to</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 96.5881 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 99.2443 746.1629)\\\" x=\\\"0 2.7783 8.3398\\\">the</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 113.1457 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 115.802 746.1629)\\\" x=\\\"0 2.7783 8.3398 10.6201 12.9004 18.4619 25.6836 27.9639 33.5254 39.0869\\\">following:</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 157.6672 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 160.3234 746.1629)\\\" x=\\\"0 2.7783 8.3398 10.6201\\\">this</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 175.9436 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 178.5998 746.1629)\\\" x=\\\"0 6.6699 13.8916\\\">ACH</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 199.7131 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 202.0693 746.1629)\\\" x=\\\"0 7.2217 12.7832 18.3447 20.625\\\">Debit</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.4727 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 227.8289 746.1629)\\\" x=\\\"0 6.6699 12.2314 15.0098 20.5713 26.1328 29.4629 31.7432 36.7432 42.3047 45.083 47.3633 52.9248\\\">Authorization</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 286.3152 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 288.6715 746.1629)\\\" x=\\\"0 2.2803\\\">is</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 295.9518 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 298.308 746.1629)\\\" x=\\\"0 5.5615 11.123\\\">not</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.2094 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 314.5656 746.1629)\\\" x=\\\"0 5.5615\\\">an</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 325.6887 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 328.0449 746.1629)\\\" x=\\\"0 2.2803 7.8418 12.8418 15.6201 18.9502 24.5117 32.8418 38.4033 43.9648\\\">instrument</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 374.7881 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 377.1443 746.1629)\\\" x=\\\"0 5.5615 11.123 16.123 21.6846 25.0146 30.5762 36.1377\\\">governed</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 418.8436 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 421.1998 746.1629)\\\" x=\\\"0 5.5615\\\">by</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 431.7613 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 434.1176 746.1629)\\\" x=\\\"0 6.6699 10 12.7783 15.0586 20.0586 22.3389\\\">Article</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 462.018 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 464.3742 746.1629)\\\" x=\\\"0\\\">3</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 469.9357 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 472.292 746.1629)\\\" x=\\\"0 5.5615\\\">of</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 480.6318 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 482.9881 746.1629)\\\" x=\\\"0 2.7783 8.3398\\\">the</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 496.8895 746.1629)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 499.2457 746.1629)\\\" x=\\\"0 7.2217 12.7832 15.0635 17.8418 23.4033 26.7334\\\">Uniform</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 40.675 734.8445)\\\" x=\\\"0 7.2217 12.7832 21.1133 29.4434 35.0049 38.335 43.335 45.6152 51.1768\\\">Commercial</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 94.132 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 96.4883 734.8445)\\\" x=\\\"0 7.2217 12.7832 18.3447 23.9062\\\">Code.</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 123.1728 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 125.5291 734.8445)\\\" x=\\\"0 6.6699 10 12.2803 17.8418\\\">Print</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.1492 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.5055 734.8445)\\\" x=\\\"0 5.5615 11.1231\\\">and</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 165.19 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 167.5463 734.8445)\\\" x=\\\"0 3.3301 8.8916 11.6699 17.2314 19.5117\\\">retain</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 192.6195 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 194.9758 734.8445)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 200.5373 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 202.8936 734.8445)\\\" x=\\\"0 5.5615 11.123 14.4531\\\">hard</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 222.9082 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 225.2645 734.8445)\\\" x=\\\"0 5 10.5615 16.123\\\">copy</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 246.3875 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 248.7437 734.8445)\\\" x=\\\"0 5.5615\\\">or</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.6353 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 259.9916 734.8445)\\\" x=\\\"0 5.5615 7.8418 13.4033 18.4033 21.1816 24.5117 30.0733 35.6348 37.915\\\">electronic</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.9066 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 305.5629 734.8445)\\\" x=\\\"0 5 10.5615 16.123\\\">copy</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 326.6859 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 329.3422 734.8445)\\\" x=\\\"0 5.5615\\\">of</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 337.682 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 340.3383 734.8445)\\\" x=\\\"0 2.7783 8.3398 10.6201\\\">this</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.9584 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 358.6147 734.8445)\\\" x=\\\"0 6.6699 13.8916\\\">ACH</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 379.7279 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 382.0842 734.8445)\\\" x=\\\"0 7.2217 12.7832 18.3447 20.625\\\">Debit</text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 405.4875 734.8445)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.8438 734.8445)\\\" x=\\\"0 6.6699 12.2314 15.0098 20.5713 26.1328 29.4629 31.7432 36.7432 42.3047 45.083 47.3633 52.9248 58.4863\\\">Authorization.</text></g><clipPath id=\\\"clip3-2\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip3-2)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.775 770.2 L 573.625 770.2 L 573.625 769.2 L 34.775 769.2 L 34.775 770.2 z \\\"/><path clip-path=\\\"url(#clip3-2)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.775 731.2449 L 573.625 731.2449 L 573.625 730.2449 L 34.775 730.2449 L 34.775 731.2449 z \\\"/><path clip-path=\\\"url(#clip3-2)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.625 769.2 L 573.625 769.2 L 573.625 731.2449 L 572.625 731.2449 L 572.625 769.2 z \\\"/><path clip-path=\\\"url(#clip3-2)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.775 769.2 L 35.775 769.2 L 35.775 731.2449 L 34.775 731.2449 L 34.775 769.2 z \\\"/><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 718.5262)\\\" x=\\\"0 7.22 15 22.22 25.55 34.99 41.66 44.44 51.11 57.78 65 67.78 70.44 79.88 85.44 88.1 93.66 99.22 101.88 107.44 113 115.78 118.44 125.66 131.22 133.5 138.5 144.06 146.72 152.28 157.84 161.17 163.83 167.16 169.44 175 180.56 183.34 188.34 191 196.56 199.89 202.55 205.88 211.44 219.77 225.33 230.89 233.17 238.73 243.73 246.39 251.95 257.51 263.07 268.63 271.96 274.62 277.4 282.96 285.24 290.24 292.9 299.57 305.13 308.46 314.02 319.58 327.91 333.47 339.03 341.81 344.47 350.03 355.03 357.69 360.47 366.03 368.31 370.59 372.87 378.43 383.99 386.65 389.43 394.99 397.65 403.21 408.21 413.77 417.1 422.1 424.38 429.38 434.94 437.6 440.38 445.94 451.5 459.83 462.49 468.05 470.83 473.49 479.05 484.61 489.61 492.27 495.05 497.33 505.66 511.22\\\">NON-WAIVER. We do not waive our rights or remedies under this Agreement by failing to exercise them at any time.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 705.2078)\\\" x=\\\"0 7.22 15 23.33 31.66 38.88 46.1 48.88 56.1 62.77 68.88 71.66 78.88 86.66 89.32 98.76 101.54 107.65 114.87 117.53 124.2 131.98 139.2 141.98 144.64 151.86 158.53 164.09 169.65 172.31 179.53 186.2 193.42 201.2 208.42 215.64 218.42 225.64 233.42 236.2 238.86 242.19 247.75 253.31 258.87 262.2 264.86 270.42 275.98 281.54 284.87 290.43 295.99 301.55\\\">COMMUNICATING WITH YOU; CALL RECORDING: (100) 000-0006</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 691.8895)\\\" x=\\\"0 6.67 13.89 20 22.78 30\\\">ENTIRE</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 69.7699 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 74.2589 691.8895)\\\" x=\\\"0 6.67 14.45 21.67 28.34 35.01 43.34 50.01 57.23 63.34\\\">AGREEMENT,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 140.377 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 144.866 691.8895)\\\" x=\\\"0 7.22\\\">NO</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 159.866 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 164.3549 691.8895)\\\" x=\\\"0 6.67 13.89 21.11 23.89 30 32.78 40.56 47.78 54.45\\\">ADDITIONAL</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 224.3647 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 228.8536 691.8895)\\\" x=\\\"0 6.67 13.89 21.67 30 32.78 39.45 46.12 52.79\\\">PROMISES,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 284.42 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 288.9089 691.8895)\\\" x=\\\"0 9.44 16.66 19.44 25.55 31.66 38.33\\\">WRITTEN</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 334.4558 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.9447 691.8895)\\\" x=\\\"0 6.67 13.89\\\">AND</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 360.058 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 364.547 691.8895)\\\" x=\\\"0 6.67 9.45 17.23 24.45 31.12\\\">SIGNED</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.8868 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.3757 691.8895)\\\" x=\\\"0 7.22 14.44 21.11 28.33 36.11 42.78\\\">CHANGES</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.8289 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 461.3178 691.8895)\\\" x=\\\"0 7.78 15 20.56 27.23\\\">ONLY.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 491.3276 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 495.8165 691.8895)\\\" x=\\\"0 6.11 11.67 13.95\\\">This</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 514.7667 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 519.2556 691.8895)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 691.8895)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 680.5711)\\\" x=\\\"0 2.78 8.34 13.9 19.46 22.24 27.8 33.36\\\">together</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 69.7943 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 72.8324 680.5711)\\\" x=\\\"0 7.22 9.5 12.28\\\">with</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 90.6742 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 93.7124 680.5711)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 107.6137 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 110.6518 680.5711)\\\" x=\\\"0 5.56 8.34 13.9 19.46\\\">other</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 133.4448 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 136.4829 680.5711)\\\" x=\\\"0 5.56 11.12 16.12 21.68 30.01 35.57 41.13 43.91\\\">documents</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 185.3989 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 188.437 680.5711)\\\" x=\\\"0 3.33 8.89 11.67 17.23 20.56 23.89 29.45\\\">referred</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 223.4517 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 226.4898 680.5711)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 234.8296 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 237.8677 680.5711)\\\" x=\\\"0 5.56 11.12 14.45 20.01 22.29 27.85\\\">herein,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 268.5025 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 271.5406 680.5711)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24 28.52 34.08\\\">including</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 311.189 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 314.2271 680.5711)\\\" x=\\\"0 5.56 11.12\\\">but</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 328.1285 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 331.1666 680.5711)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 345.068 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 348.1061 680.5711)\\\" x=\\\"0 2.28 4.56 12.89 15.17 17.95 23.51\\\">limited</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 377.1783 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 380.2165 680.5711)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.5563 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 391.5944 680.5711)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 411.0475 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 414.0856 680.5711)\\\" x=\\\"0 5.56 11.12 14.45 19.45 25.01 30.57 35.57\\\">purchase</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 455.2233 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 458.2614 680.5711)\\\" x=\\\"0 3.33 8.89 13.89 19.45 21.73 27.29\\\">receipt</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 488.3347 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 491.3728 680.5711)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 508.0574 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 511.0955 680.5711)\\\" x=\\\"0 2.78 5.06 10.62 16.18\\\">final</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.5574 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 532.5955 680.5711)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 680.5711)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 669.2527)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 66.4545 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 69.6146 669.2527)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 86.2991 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 89.4592 669.2527)\\\" x=\\\"0 5 10 15.56 21.12 26.68 32.24 34.52 40.08\\\">schedule,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 132.3254 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 135.4855 669.2527)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 142.7658 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 145.9259 669.2527)\\\" x=\\\"0 5.56 11.12\\\">our</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.379 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 163.5391 669.2527)\\\" x=\\\"0 5.56 11.12 13.9 16.18 19.51\\\">entire</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 188.6123 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 191.7724 669.2527)\\\" x=\\\"0 5.56 11.12 14.45 20.01 25.57 33.9 39.46 45.02 47.8\\\">agreement.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 242.3583 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 245.5184 669.2527)\\\" x=\\\"0 9.44\\\">We</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 260.5184 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 263.6785 669.2527)\\\" x=\\\"0 5.56 11.12 16.12\\\">have</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 285.363 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 288.5231 669.2527)\\\" x=\\\"0 8.33 13.89 19.45\\\">made</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 313.5378 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 316.6978 669.2527)\\\" x=\\\"0 5.56\\\">no</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 327.8209 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 330.981 669.2527)\\\" x=\\\"0 5.56 8.89 14.45 22.78 25.06 30.06 35.62\\\">promises</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.606 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 374.766 669.2527)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.1059 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 386.266 669.2527)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.389 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 405.5491 669.2527)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.4504 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 422.6105 669.2527)\\\" x=\\\"0 5 10.56 16.12 18.9 24.46 26.74 32.3 37.86\\\">contained</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.0383 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 469.1983 669.2527)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 477.0401 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 480.2002 669.2527)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 495.8203 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 498.9804 669.2527)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 547.8964 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 551.0565 669.2527)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.9481 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 563.1082 669.2527)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 669.2527)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 657.9344)\\\" x=\\\"0 5 10.56 15.56 21.12 23.78 29.34 32.12 37.68 43.24 46.57 49.23 54.79 60.35 65.35 70.91 79.24 84.8 90.36 93.14 98.14 100.92 103.58 110.25 115.81 120.81 123.47 128.47 134.03 139.59 145.15 150.71 156.27 158.93 161.71 167.27 169.93 172.71 178.27 180.55 185.55 188.21 194.88 200.44 203.77 209.33 214.89 223.22 228.78 234.34 237.12 239.78 248.11 253.67 258.67 261.45 264.11 269.67 275.23 277.89 285.11 288.44 290.72 293.5 296.28 301.84 307.4 310.06 315.62 321.18 326.74 329.4 334.4 336.68 342.24 347.8 353.36 358.92 361.58 367.14 372.14 374.8 379.8 385.36 390.92 393.58 399.14 404.7 410.26 412.92 418.48 423.48\\\">such other documents. Any change to this Agreement must be written and signed by you and us.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 644.616)\\\" x=\\\"0 7.22 14.44 21.11 27.22 35 43.33 50\\\">CUSTOMER</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 90.3217 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 93.5458 644.616)\\\" x=\\\"0 8.33 16.11 23.33 26.11 32.22 35 41.67\\\">MODIFIED</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 142.4325 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 145.6566 644.616)\\\" x=\\\"0 6.67 13.34 20.01 28.34 35.01 42.23\\\">PAYMENT</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 193.9964 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 197.2205 644.616)\\\" x=\\\"0 7.22 13.89 20 26.67\\\">DATES</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 230.5603 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 233.7844 644.616)\\\" x=\\\"0 6.67 13.89\\\">AND</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 254.8977 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 258.1218 644.616)\\\" x=\\\"0 6.11 13.33 20 27.78 35 41.67 48.89 56.11 62.78\\\">FREQUENCY.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 323.6833 644.616)\\\" x=\\\"0 3.2241\\\">  </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 330.1315 644.616)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 347.3629 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 350.587 644.616)\\\" x=\\\"0 5.56 11.12 13.9 19.46\\\">dates</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.0499 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 378.274 644.616)\\\" x=\\\"0 2.78 8.34 11.67\\\">for,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 392.7222 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 395.9463 644.616)\\\" x=\\\"0 2.78 6.11 11.67 17.23 22.79 28.35 33.91 38.91\\\">frequency</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 439.8623 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 443.0864 644.616)\\\" x=\\\"0 5.56 8.34\\\">of,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.2046 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 457.4286 644.616)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57\\\">number</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 491.3349 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 494.559 644.616)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 502.8988 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 506.1229 644.616)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 522.8075 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 526.0316 644.616)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.386 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 562.6101 644.616)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 644.616)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 633.2977)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 68.1781 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 72.0521 633.2977)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46\\\">Payments</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 116.515 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 120.389 633.2977)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 128.2308 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 132.1048 633.2977)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 147.7249 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 151.5989 633.2977)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 200.5149 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 204.3889 633.2977)\\\" x=\\\"0 5.56 8.89\\\">are</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 218.842 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 222.716 633.2977)\\\" x=\\\"0 5.56 11.12 16.12 21.68\\\">based</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 249.9621 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 253.8361 633.2977)\\\" x=\\\"0 5.56 11.12 16.68\\\">upon</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.0822 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 279.9562 633.2977)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 293.8575 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 297.7315 633.2977)\\\" x=\\\"0 5.56 11.12 16.12 21.68 27.24\\\">payday</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.9776 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 333.8516 633.2977)\\\" x=\\\"0 2.28 7.84 10.62 16.18 19.51 27.84 33.4 36.18 38.46 44.02\\\">information</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.4366 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 387.3105 633.2977)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.4336 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.3076 633.2977)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29 32.85\\\">provided</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 445.7255 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 449.5995 633.2977)\\\" x=\\\"0 7.22 9.5 12.28\\\">with</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.4413 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 471.3153 633.2977)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 490.7684 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 494.6424 633.2977)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 34.58 36.86 42.42 47.98\\\">application.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 545.409 633.2977)\\\" x=\\\"0 3.874\\\">  </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.157 633.2977)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 633.2977)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 621.9793)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 51.9916 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 55.3463 621.9793)\\\" x=\\\"0 5 10.56 16.12 18.9 24.46 29.46\\\">contact</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 87.5875 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 90.9422 621.9793)\\\" x=\\\"0 5.56 11.12\\\">our</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 105.3953 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 108.75 621.9793)\\\" x=\\\"0 5 10.56 15.56 18.34 23.9 32.23 37.79\\\">customer</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 149.873 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 153.2277 621.9793)\\\" x=\\\"0 5 10.56 13.89 18.89 21.17 26.17\\\">service</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 184.9611 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 188.3158 621.9793)\\\" x=\\\"0 5.56 11.12 16.68 22.24 25.57 28.35 36.68 42.24 47.8\\\">department</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.9017 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 242.2564 621.9793)\\\" x=\\\"0 5.56 8.89\\\">or,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 253.9263 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 257.281 621.9793)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.3396 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 265.6942 621.9793)\\\" x=\\\"0 5.56 10.56 16.12 18.4 20.68 26.24 31.8 34.08\\\">available</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 305.3427 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 308.6973 621.9793)\\\" x=\\\"0 5.56 10.56\\\">use</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 324.8204 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 328.1751 621.9793)\\\" x=\\\"0 5.56 11.12 13.9 19.46 27.79 33.35 36.13 41.69\\\">automated</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.4309 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 378.7856 621.9793)\\\" x=\\\"0 8.33 13.89 19.45 25.01 30.01\\\">means,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 411.5786 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 414.9332 621.9793)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.9918 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 423.3465 621.9793)\\\" x=\\\"0 5.56 10.56 16.12 18.4 20.68 26.24 31.8 34.08 39.64\\\">available,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 465.7733 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 469.128 621.9793)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 477.4678 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 480.8225 621.9793)\\\" x=\\\"0 3.33 8.89 14.45 20.01 25.57 30.57\\\">request</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 514.177 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 517.5316 621.9793)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 523.0932 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 526.4478 621.9793)\\\" x=\\\"0 5 10.56 16.12 21.68 27.24\\\">change</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.2555 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 562.6101 621.9793)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 621.9793)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 610.6609)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.0014 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 51.6173 610.6609)\\\" x=\\\"0 5 10 15.56 21.12 26.68 32.24 34.52 40.08\\\">scheduled</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 97.2667 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 101.8826 610.6609)\\\" x=\\\"0 5.56 11.12 13.9 19.46\\\">dates</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 126.3454 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 130.9613 610.6609)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 142.6313 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 147.2471 610.6609)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 163.9317 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 168.5476 610.6609)\\\" x=\\\"0 2.78 6.11 11.67 17.23 22.79 28.35 33.91 38.91\\\">frequency</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 212.4636 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 217.0795 610.6609)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.4193 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 230.0352 610.6609)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 265.1134 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 269.7292 610.6609)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46 44.46\\\">Payments.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 316.9705 610.6609)\\\" x=\\\"0 4.6159\\\">  </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 326.2022 610.6609)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 331.7589 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 336.3748 610.6609)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 349.158 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 353.7739 610.6609)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.68\\\">accept</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.2367 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 387.8526 610.6609)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.4142 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 398.03 610.6609)\\\" x=\\\"0 5 10.56 16.12 21.68 27.24\\\">change</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.8377 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 435.4535 610.6609)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 443.2953 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 447.9112 610.6609)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 461.8126 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 466.4285 610.6609)\\\" x=\\\"0 5 10 15.56 21.12 26.68 32.24 34.52 40.08\\\">scheduled</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.0779 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 516.6938 610.6609)\\\" x=\\\"0 5.56 11.12 13.9 19.46\\\">dates</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 541.1567 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 545.7726 610.6609)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 557.4425 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 562.0584 610.6609)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 610.6609)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 599.3426)\\\" x=\\\"0 2.78 6.11 11.67 17.23 22.79 28.35 33.91 38.91\\\">frequency</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 77.016 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 80.7576 599.3426)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 89.0974 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 92.839 599.3426)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 127.9171 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 131.6587 599.3426)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46 44.46\\\">Payments,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 178.8999 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 182.6415 599.3426)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 196.5429 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 200.2844 599.3426)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.6389 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 237.3805 599.3426)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.7204 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 249.4619 599.3426)\\\" x=\\\"0 5.56 11.12 16.12\\\">each</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 271.1465 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 274.8881 599.3426)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 309.9662 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 313.7078 599.3426)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68\\\">Payment</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 353.1707 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 356.9123 599.3426)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 370.9748 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 374.7163 599.3426)\\\" x=\\\"0 5.56 11.12 13.9 19.46 27.79 33.35 36.13 38.41 43.41 48.97 51.25 53.53\\\">automatically</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 433.2515 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 436.9931 599.3426)\\\" x=\\\"0 5.56\\\">be</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 448.1161 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 451.8577 599.3426)\\\" x=\\\"0 8.33 13.89 19.45 21.73 24.51 26.79 32.35\\\">modified</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.7727 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 493.5143 599.3426)\\\" x=\\\"0 5\\\">so</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 504.0758 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 507.8174 599.3426)\\\" x=\\\"0 2.78 8.34 13.9\\\">that</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 524.4971 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 528.2387 599.3426)\\\" x=\\\"0 2.78 8.34 13.9\\\">that</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 544.9184 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 548.6599 599.3426)\\\" x=\\\"0 6.11 11.67 14.45 20.01\\\">Total</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 599.3426)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 588.0242)\\\" x=\\\"0 7.22 12.78 17.78 20.56\\\">Cost,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 56.4398 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 60.6221 588.0242)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 77.3067 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.489 588.0242)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 95.3903 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 99.5726 588.0242)\\\" x=\\\"0 5.56 11.12 14.45 16.73 22.29\\\">period</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 127.4291 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 131.6113 588.0242)\\\" x=\\\"0 5.56 10.56 16.12\\\">over</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 151.0645 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 155.2467 588.0242)\\\" x=\\\"0 7.22 12.78 15.06 20.06\\\">which</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 180.8717 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 185.054 588.0242)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 198.9554 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 203.1377 588.0242)\\\" x=\\\"0 6.11 11.67 14.45 20.01\\\">Total</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.4277 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 229.61 588.0242)\\\" x=\\\"0 7.22 12.78 17.78\\\">Cost</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 250.1715 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 254.3538 588.0242)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 261.6341 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 265.8163 588.0242)\\\" x=\\\"0 5.56 11.12 13.4 18.96\\\">paid,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 287.5595 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 291.7418 588.0242)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 305.8043 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 309.9866 588.0242)\\\" x=\\\"0 3.33 8.89 17.22 22.78 25.06\\\">remain</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 340.6116 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 344.7938 588.0242)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 358.6952 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 362.8775 588.0242)\\\" x=\\\"0 5 10.56 18.89\\\">same</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 387.3306 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 391.5129 588.0242)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.0744 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 406.2567 588.0242)\\\" x=\\\"0 5.56 8.89 11.17 16.73\\\">prior</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 426.3202 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 430.5025 588.0242)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 438.8423 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 443.0246 588.0242)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.9259 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 461.1082 588.0242)\\\" x=\\\"0 3.33 8.89 14.45 20.01 25.57 30.57 33.35 38.91\\\">requested</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 505.5858 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 509.768 588.0242)\\\" x=\\\"0 5 10.56 16.12 21.68 27.24 32.8\\\">change.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 545.354 588.0242)\\\" x=\\\"0 4.1823\\\">  </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.7185 588.0242)\\\" x=\\\"0 6.67 12.23\\\">Any</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 588.0242)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 576.7059)\\\" x=\\\"0 3.33 8.89 11.67 17.23 22.79 27.79 33.35\\\">refences</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 71.4545 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 75.2825 576.7059)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 83.1243 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 86.9523 576.7059)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 102.5725 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 106.4005 576.7059)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 155.3165 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 159.1445 576.7059)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 167.4844 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 171.3124 576.7059)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 185.2138 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 189.0418 576.7059)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57 33.9\\\">number,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.7264 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 229.5544 576.7059)\\\" x=\\\"0 2.78 6.11 11.67 17.23 22.79 28.35 33.91 38.91 43.91\\\">frequency,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.2488 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 280.0768 576.7059)\\\" x=\\\"0 2.78 5.06 13.39 15.67 21.23\\\">timing</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 306.8688 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 310.6968 576.7059)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 327.3814 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 331.2094 576.7059)\\\" x=\\\"0 5.56 13.89 19.45 25.01 30.57\\\">amount</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 364.5639 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 368.3919 576.7059)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 376.7318 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 380.5598 576.7059)\\\" x=\\\"0 7.22 12.78 18.34 23.9 26.18 31.74\\\">Regular</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 415.6379 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 419.466 576.7059)\\\" x=\\\"0 6.67 12.23 17.23 25.56 31.12 36.68 39.46\\\">Payments</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 463.9289 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 467.7569 576.7059)\\\" x=\\\"0 3.33 8.89 11.67 17.23 20.56\\\">refers</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 493.3184 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 497.1465 576.7059)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 505.4863 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 509.3143 576.7059)\\\" x=\\\"0 5 10.56 15.56\\\">such</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 530.4374 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 534.2654 576.7059)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57 33.9\\\">number,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 576.7059)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 565.3875)\\\" x=\\\"0 2.78 6.11 11.67 17.23 22.79 28.35 33.91 38.91 43.91 46.69 49.35 52.13 54.41 62.74 68.3 70.96 76.52 82.08 87.64 90.3 95.86 104.19 109.75 115.31 120.87 123.65 126.31 131.87 136.87 139.53 147.86 153.42 158.42 161.08 166.64 172.2 174.86 183.19 188.75 194.31 196.59 199.37 201.65 207.21 212.77 215.43 220.99 225.99 228.65 235.32 240.88 246.44 252 254.66 260.22 263 265.66 270.66 276.22 281.78 285.11 287.77 291.1 296.66 302.22 307.78 313.34 318.34 321.12\\\">frequency, time and amount as may be modified by Snap at your request.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 552.0691)\\\" x=\\\"0 6.67 13.34 20.01 26.68 33.9 40.57 47.24 50.02 55.58 58.36 64.47 71.14\\\">SEVERABILITY.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 107.016 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 110.2288 552.0691)\\\" x=\\\"0 2.78\\\">If</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 115.7855 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 118.9983 552.0691)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 124.5598 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 127.7726 552.0691)\\\" x=\\\"0 5 10.56 16.12 19.45\\\">court</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 150.004 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 153.2169 552.0691)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 162.1085 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 165.3213 552.0691)\\\" x=\\\"0 5.56 8.34 13.9 19.46\\\">other</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 188.1142 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 191.327 552.0691)\\\" x=\\\"0 5.56 7.84 12.84 18.4 23.96 26.74\\\">dispute</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 223.6317 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 226.8445 552.0691)\\\" x=\\\"0 3.33 8.89 13.89 19.45 21.73 27.29 30.07 32.35 37.91\\\">resolution</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 270.3211 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 273.5339 552.0691)\\\" x=\\\"0 5.56 11.12 16.68\\\">body</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 295.2185 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 298.4313 552.0691)\\\" x=\\\"0 2.78 5.06 10.62 16.18\\\">finds</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.6129 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 322.8257 552.0691)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.9488 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 342.1616 552.0691)\\\" x=\\\"0 5.56 11.12 14.45\\\">part</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.393 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 362.6058 552.0691)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 370.9457 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 374.1585 552.0691)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 389.7786 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 392.9914 552.0691)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 441.9074 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 445.1202 552.0691)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 453.4601 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 456.6729 552.0691)\\\" x=\\\"0 5.56\\\">be</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.7959 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 471.0087 552.0691)\\\" x=\\\"0 5 10.56 12.84\\\">void</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.4121 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 492.6249 552.0691)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.5165 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 504.7293 552.0691)\\\" x=\\\"0 5.56 11.12 16.68 22.24 25.02 30.58 33.91 38.91 44.47 50.03 55.59 57.87 63.43\\\">u* D E M O *e,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 552.0691)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 540.7508)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 48.7201 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 53.1394 540.7508)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 102.0554 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 106.4747 540.7508)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 113.755 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 118.1743 540.7508)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 126.5142 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 130.9335 540.7508)\\\" x=\\\"0 5.56\\\">be</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 142.0565 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 146.4758 540.7508)\\\" x=\\\"0 3.33 8.89 14.45\\\">read</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 166.4905 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 170.9097 540.7508)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 181.4713 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 185.8906 540.7508)\\\" x=\\\"0 2.28\\\">if</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 190.9492 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 195.3685 540.7508)\\\" x=\\\"0 2.78 8.34 13.9\\\">that</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 212.0482 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 216.4675 540.7508)\\\" x=\\\"0 5.56 11.12 14.45\\\">part</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.6989 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 238.1182 540.7508)\\\" x=\\\"0 7.22 12.78 16.11\\\">were</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.793 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 264.2123 540.7508)\\\" x=\\\"0 5.56 11.12 16.12 21.68\\\">never</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 289.227 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 293.6463 540.7508)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.2078 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 303.6271 540.7508)\\\" x=\\\"0 5.56 11.12 14.45\\\">part</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 320.8585 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 325.2778 540.7508)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 333.6177 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.037 540.7508)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 353.6571 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 358.0764 540.7508)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13 48.91\\\">Agreement.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 409.7707 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 414.19 540.7508)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 431.4215 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 435.8408 540.7508)\\\" x=\\\"0 3.33 8.89 13.89\\\">rest</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 452.5107 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 456.93 540.7508)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 465.2699 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 469.6891 540.7508)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 483.5905 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 488.0098 540.7508)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 536.9258 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 541.3451 540.7508)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 555.4076 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 559.8269 540.7508)\\\" x=\\\"0 5.56\\\">be</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 540.7508)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 529.4324)\\\" x=\\\"0 5.56 11.12 13.9 19.46 22.79 27.79 33.35 38.91 44.47 46.75 52.31\\\">enforceable.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 516.1141)\\\" x=\\\"0 6.67 13.89 21.67 28.89 31.67 38.34 41.12 47.23 53.9\\\">PROHIBITED</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 94.2182 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 97.4569 516.1141)\\\" x=\\\"0 6.67 13.89 20 26.67\\\">ACTS.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 126.9051 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 130.1438 516.1141)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 147.9368 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 151.1754 516.1141)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 165.2379 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 168.4766 516.1141)\\\" x=\\\"0 5 10.56 16.12\\\">keep</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 190.1612 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 193.3999 516.1141)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 207.3013 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.5399 516.1141)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 248.3329 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 251.5716 516.1141)\\\" x=\\\"0 2.78 6.11 11.67\\\">free</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 268.8031 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 272.0417 516.1141)\\\" x=\\\"0 2.78 6.11 11.67\\\">from</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 292.0417 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 295.2804 516.1141)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 311.4035 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 314.6422 516.1141)\\\" x=\\\"0 2.28 4.56 10.12 15.68\\\">liens</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.3258 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.5645 516.1141)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 347.4561 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 350.6947 516.1141)\\\" x=\\\"0 5 7.28 12.84 15.12 23.45 28.45\\\">claims.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 381.9252 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 385.1639 516.1141)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 402.9569 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 406.1956 516.1141)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 420.2581 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 423.4968 516.1141)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 437.3981 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 440.6368 516.1141)\\\" x=\\\"0 5.56 11.12 18.34\\\">pawn</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 464.5431 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 467.7818 516.1141)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 476.6734 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 479.912 516.1141)\\\" x=\\\"0 5.56 7.84 13.4 18.96 24.52\\\">pledge</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.9999 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 513.2386 516.1141)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 527.14 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 530.3787 516.1141)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 516.1141)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 504.7957)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 50.893 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 55.1549 504.7957)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 69.2174 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 73.4794 504.7957)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 87.3807 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 91.6427 504.7957)\\\" x=\\\"0 8.33 13.89 18.89\\\">move</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 116.0958 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 120.3578 504.7957)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 134.2592 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 138.5211 504.7957)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 176.3141 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 180.576 504.7957)\\\" x=\\\"0 5.56 11.12 13.9 18.9 21.18 26.74\\\">outside</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 212.8807 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 217.1427 504.7957)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.4825 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 229.7445 504.7957)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 243.6458 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 247.9078 504.7957)\\\" x=\\\"0 5.56 11.12 16.68 20.01 25.57 30.57\\\">address</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 283.484 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 287.7459 504.7957)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 303.869 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 308.1309 504.7957)\\\" x=\\\"0 5.56 8.89 14.45 19.45 21.73 27.29 32.85\\\">provided</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 346.5489 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 350.8109 504.7957)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.1507 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 363.4127 504.7957)\\\" x=\\\"0 5.56 10.56\\\">us,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 376.7525 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 381.0145 504.7957)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 397.699 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 401.961 504.7957)\\\" x=\\\"0 5.56\\\">as</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 412.5225 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 416.7845 504.7957)\\\" x=\\\"0 5.56 11.12 16.68 22.24 25.02 30.58 36.14\\\">updated,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 455.7103 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 459.9722 504.7957)\\\" x=\\\"0 5.56 11.12 13.4 18.96 23.96\\\">unless</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 488.9371 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 493.199 504.7957)\\\" x=\\\"0 2.28\\\">it</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 498.2576 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 502.5196 504.7957)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.7998 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 514.0618 504.7957)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 522.4016 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 526.6636 504.7957)\\\" x=\\\"0 3.33 8.89 11.67 17.23 20.56\\\">return</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.7867 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0486 504.7957)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 504.7957)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 493.4773)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 70.893 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 74.775 493.4773)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 83.1148 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 86.9968 493.4773)\\\" x=\\\"0 5.56 10.56\\\">us,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 100.3367 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 104.2187 493.4773)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 113.1103 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 116.9923 493.4773)\\\" x=\\\"0 5.56 11.12\\\">our</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 131.4454 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 135.3274 493.4773)\\\" x=\\\"0 5.56 11.12 16.12 18.4 23.96 29.52 35.08 40.64\\\">designee.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 178.7551 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 182.6371 493.4773)\\\" x=\\\"0 6.11\\\">To</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 194.307 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 198.189 493.4773)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 212.0904 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 215.9724 493.4773)\\\" x=\\\"0 5.56 10.56 13.34 18.9 24.46\\\">extent</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 243.2136 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 247.0956 493.4773)\\\" x=\\\"0 5.56 10.56\\\">use</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 263.2187 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 267.1007 493.4773)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.4405 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 279.3225 493.4773)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 293.2239 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 297.1059 493.4773)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 334.8988 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.7808 493.4773)\\\" x=\\\"0 3.33 8.89 14.45 20.01 22.29 25.62 31.18\\\">requires</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 374.9674 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 378.8494 493.4773)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 394.9724 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 398.8544 493.4773)\\\" x=\\\"0 8.33 10.61 16.17 18.45 26.78 32.34\\\">minimum</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 439.5282 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 443.4102 493.4773)\\\" x=\\\"0 5 8.33 10.61 13.39 18.95 22.28 24.56\\\">criteria</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 473.5323 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 477.4143 493.4773)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.0842 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 492.9662 493.4773)\\\" x=\\\"0 5.56 10.56 16.12\\\">use,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 511.8676 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 515.7496 493.4773)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24 28.52 34.08\\\">including</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 555.3981 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 559.2801 493.4773)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 493.4773)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 482.159)\\\" x=\\\"0 5.56 10.56 16.12 24.45 30.01 32.29\\\">example</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 70.9565 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 74.5435 482.159)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 80.105 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 83.6921 482.159)\\\" x=\\\"0 5.56 11.12 14.45 22.78 25.06 27.84\\\">permit,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 114.3123 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 117.8993 482.159)\\\" x=\\\"0 2.28 4.56 9.56 15.12 20.68 25.68 31.24\\\">license,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 151.9228 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 155.5098 482.159)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 164.4014 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 167.9885 482.159)\\\" x=\\\"0 8.33 10.61 16.17 18.45 26.78 32.34\\\">minimum</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 208.6624 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 212.2494 482.159)\\\" x=\\\"0 5.56 11.12 16.68\\\">age,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.7123 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 235.2994 482.159)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 251.4224 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 255.0095 482.159)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 269.072 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 272.6591 482.159)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 286.5605 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 290.1476 482.159)\\\" x=\\\"0 5.56 7.84 10.12 15.68\\\">allow</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 313.0528 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 316.6399 482.159)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 332.7629 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 336.35 482.159)\\\" x=\\\"0 2.28 10.61 16.17 19.5 25.06 30.62 36.18\\\">improper</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.8666 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 379.4537 482.159)\\\" x=\\\"0 5.56 10.56\\\">use</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 395.5767 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 399.1638 482.159)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 407.5037 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 411.0907 482.159)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 424.9921 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 428.5792 482.159)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 469.1505 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 472.7376 482.159)\\\" x=\\\"0 6.67\\\">As</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.4075 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 487.9946 482.159)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64 45.2\\\">applicable,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 535.9828 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 539.5699 482.159)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.2399 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 554.8269 482.159)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 482.159)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 470.8406)\\\" x=\\\"0 5.56 11.12 16.68 19.46\\\">boat,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 55.3412 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 60.5175 470.8406)\\\" x=\\\"0 8.33 13.89 16.67 22.23 25.56 27.84 32.84 38.4\\\">motorized</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 104.4823 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 109.6586 470.8406)\\\" x=\\\"0 5 10.56 16.12 18.4 23.4 25.68 31.24\\\">vehicle,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 143.6821 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 148.8584 470.8406)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 157.75 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 162.9263 470.8406)\\\" x=\\\"0 5.56 8.34 13.9 19.46 22.79 30.01 32.29 37.29\\\">otherwise</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 205.7827 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.959 470.8406)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64 45.2\\\">applicable,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 258.9473 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 264.1236 470.8406)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.2466 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 285.4229 470.8406)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.4854 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 304.6617 470.8406)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 318.5631 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 323.7394 470.8406)\\\" x=\\\"0 5.56 11.12 14.45 22.78 25.06\\\">permit</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.5812 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 356.7575 470.8406)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 372.8805 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 378.0568 470.8406)\\\" x=\\\"0 5.56 11.12 14.45 19.45 25.01 30.57\\\">person,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 411.4113 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 416.5876 470.8406)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24 28.52 34.08\\\">including</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.236 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 461.4123 470.8406)\\\" x=\\\"0 5 10.56 16.12 19.45 24.45 30.01 32.29 35.07\\\">yourself,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.2639 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 504.4402 470.8406)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.78 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 517.9563 470.8406)\\\" x=\\\"0 5.56 11.12 16.68 20.01 25.57 28.35\\\">operate</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.8723 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0486 470.8406)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 470.8406)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 459.5223)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 70.893 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 75.2445 459.5223)\\\" x=\\\"0 7.22 12.78 15.06 17.34\\\">while</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 98.1497 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 102.5012 459.5223)\\\" x=\\\"0 5 10.56 15.56\\\">such</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 123.6243 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 127.9757 459.5223)\\\" x=\\\"0 5.56 11.12 14.45 19.45 25.01\\\">person</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 158.5519 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 162.9034 459.5223)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 170.1837 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 174.5351 459.5223)\\\" x=\\\"0 2.28 10.61 16.17 21.73 24.01 27.34 32.9\\\">impaired</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 213.0019 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 217.3534 459.5223)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 227.915 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 232.2664 459.5223)\\\" x=\\\"0 5.56 8.89 14.45 20.01 25.01\\\">drugs,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 260.0594 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 264.4109 459.5223)\\\" x=\\\"0 5.56 7.84 12.84 18.4 23.96 29.52\\\">alcohol</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 296.2175 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 300.569 459.5223)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 309.4606 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 313.8121 459.5223)\\\" x=\\\"0 2.78 6.11 11.67\\\">from</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 333.8121 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.1636 459.5223)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 354.2866 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 358.6381 459.5223)\\\" x=\\\"0 5.56 8.34 13.9 19.46\\\">other</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 381.4311 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 385.7826 459.5223)\\\" x=\\\"0 5 10.56 16.12 21.12 26.68\\\">cause.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 415.2455 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 419.5969 459.5223)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 437.3899 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 441.7414 459.5223)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 455.8039 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 460.1554 459.5223)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.0567 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 478.4082 459.5223)\\\" x=\\\"0 5.56 10.56\\\">use</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 494.5313 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 498.8828 459.5223)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.7841 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 517.1356 459.5223)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 554.9286 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 559.2801 459.5223)\\\" x=\\\"0 2.78 8.34\\\">for</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 459.5223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 448.2039)\\\" x=\\\"0 5 10.56 18.89 27.22 32.78 36.11 41.11 43.39 48.95 51.23 53.89 59.45 65.01 68.34 73.9 79.46 84.46 90.02 95.02\\\">commercial purposes.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 434.8855)\\\" x=\\\"0 9.44 16.11 23.33 30.55 33.33 40.55 48.33\\\">WARNING:</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 84.2084 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 87.8242 434.8855)\\\" x=\\\"0 7.22 12.78 15.06 20.62 25.62\\\">Unless</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 118.4492 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 122.065 434.8855)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 138.188 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 141.8038 434.8855)\\\" x=\\\"0 5.56 11.12 16.12\\\">have</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 163.4883 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 167.1041 434.8855)\\\" x=\\\"0 5.56 10.56 16.12 21.68 23.96 27.29 32.85\\\">acquired</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 205.5221 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 209.1378 434.8855)\\\" x=\\\"0 5.56 12.78 18.34 23.9 27.23 32.23 37.79 40.07\\\">ownership</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 254.7775 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 258.3933 434.8855)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 266.7331 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 270.3489 434.8855)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 284.2503 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 287.866 434.8855)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 328.4373 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 332.0531 434.8855)\\\" x=\\\"0 5.56 8.34 11.12 16.68 25.01 30.57 33.35 35.63 41.19\\\">attempting</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 378.806 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 382.4218 434.8855)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 390.7616 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 394.3774 434.8855)\\\" x=\\\"0 5 10.56 12.84 15.12\\\">sell,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 412.2778 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 415.8936 434.8855)\\\" x=\\\"0 5.56 11.12 18.34 23.9\\\">pawn,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 442.5781 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 446.1939 434.8855)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 455.0855 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 458.7013 434.8855)\\\" x=\\\"0 2.28 4.56 10.12\\\">lien</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.3849 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 478.0007 434.8855)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 491.902 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 495.5178 434.8855)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 533.3108 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 536.9265 434.8855)\\\" x=\\\"0 5 7.28 12.84 15.12 20.68 23.46 29.02\\\">violates</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 434.8855)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 423.5672)\\\" x=\\\"0 5 7.78 13.34 16.12 21.68 24.34 26.62 32.18 39.4\\\">state law.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 410.2488)\\\" x=\\\"0 6.67 13.34 20.01 22.79 30.57 37.79 46.12 52.79 60.01 66.12\\\">ASSIGNMENT.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 101.9965 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 104.9066 410.2488)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 122.6995 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 125.6096 410.2488)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 144.5012 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 147.4112 410.2488)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 161.3126 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 164.2227 410.2488)\\\" x=\\\"0 5.56 10.56 15.56 17.84 23.4\\\">assign</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 193.1875 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 196.0976 410.2488)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 211.7177 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 214.6278 410.2488)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 263.5438 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 266.4538 410.2488)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.3454 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 278.2555 410.2488)\\\" x=\\\"0 2.78 6.11 11.67 17.23 22.23 25.01 30.57\\\">transfer</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.1569 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 315.0669 410.2488)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 328.9683 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 331.8784 410.2488)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79\\\">Property</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 369.6713 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 372.5814 410.2488)\\\" x=\\\"0 7.22 9.5 12.28 17.84 23.4 28.96\\\">without</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 404.3246 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.2346 410.2488)\\\" x=\\\"0 5.56 11.12\\\">our</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 421.6877 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 424.5978 410.2488)\\\" x=\\\"0 5.56 8.89 11.17 16.73\\\">prior</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 444.6613 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 447.5713 410.2488)\\\" x=\\\"0 7.22 10.55 12.83 15.61 18.39 23.95\\\">written</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 477.0831 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 479.9931 410.2488)\\\" x=\\\"0 5.56 11.12 14.45 22.78 25.06 30.06 35.06 37.34 42.9 48.46\\\">permission.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 531.2382 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 534.1483 410.2488)\\\" x=\\\"0 9.44\\\">We</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.1483 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 552.0584 410.2488)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 410.2488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 398.9305)\\\" x=\\\"0 5.56 10.56 15.56 17.84 23.4 28.96 31.62 37.18 39.46 41.74 44.4 49.96 52.74 55.4 60.96 66.52 69.85 72.51 75.84 78.12 83.68 89.24 92.02 97.02 99.68 105.24 110.8 116.36 121.92 125.25 127.91 130.69 136.25 138.53 143.53 146.19 152.86 158.42 161.75 167.31 172.87 181.2 186.76 192.32 195.1 197.88 200.54 207.21 212.77 217.77 220.43 225.99 231.55 234.88 239.88 245.44 251 253.66 260.88 266.44 269.1 274.66 279.66 284.66 286.94 292.5 298.06 300.72 303 305.78 308.44 311.22 316.78 319.44 327.77 333.33 338.33 340.99 344.32 349.88 355.44 360.44 365.44 367.72 373.28 378.84 381.5 383.78 386.56\\\">assign all of our ri* D E M O *this Agreement. Any person we assign it to may reassign it.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 385.6121)\\\" x=\\\"0 6.67 13.89 21.11 28.89 36.11\\\">ACCORD</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 76.435 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 79.3433 385.6121)\\\" x=\\\"0 6.67 13.89\\\">AND</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 100.4566 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 103.3649 385.6121)\\\" x=\\\"0 6.67 13.34 19.45 22.23 28.9 35.01 41.68 48.9 55.01 57.79 65.57 72.79\\\">SATISFACTION.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 178.9265 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 181.8348 385.6121)\\\" x=\\\"0 6.67 12.23\\\">Any</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 199.0662 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 201.9746 385.6121)\\\" x=\\\"0 5 7.78 13.34 16.12 21.68 30.01 35.57 41.13\\\">statement</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.8857 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 248.794 385.6121)\\\" x=\\\"0 5.56 10.56 15.56 21.12 29.45 35.01 40.57 46.13 51.13 53.41 58.97\\\">accompanying</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 313.3351 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 316.2434 385.6121)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.6965 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.6049 385.6121)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 376.9593 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 379.8677 385.6121)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.2075 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 391.1159 385.6121)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 405.0172 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.9256 385.6121)\\\" x=\\\"0 5.56 8.34 11.12 16.68 21.68\\\">effect</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 432.3836 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 435.2919 385.6121)\\\" x=\\\"0 2.78 8.34 13.9\\\">that</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 451.9716 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 454.88 385.6121)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.3331 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 477.2414 385.6121)\\\" x=\\\"0 5.56 11.12 13.4 18.96 24.52 29.52\\\">balance</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.3293 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 515.2376 385.6121)\\\" x=\\\"0 2.28\\\">is</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 522.5179 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 525.4263 385.6121)\\\" x=\\\"0 5.56 11.12 13.4\\\">paid</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 544.3911 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 547.2995 385.6121)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 555.1412 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 558.0496 385.6121)\\\" x=\\\"0 2.78 8.34 10.62\\\">full</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 385.6121)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 374.2937)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.1625 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 50.8231 374.2937)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 64.7245 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 68.3851 374.2937)\\\" x=\\\"0 5.56 7.84 13.4\\\">bind</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 87.35 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 91.0106 374.2937)\\\" x=\\\"0 5.56 10.56\\\">us.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 104.3505 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 108.0111 374.2937)\\\" x=\\\"0 7.78 13.34\\\">Our</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 124.681 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 128.3417 374.2937)\\\" x=\\\"0 5.56 11.12 16.68 22.24 27.24 29.52\\\">deposit</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.6464 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 164.307 374.2937)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 172.6468 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 176.3075 374.2937)\\\" x=\\\"0 5.56 11.12\\\">any</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 192.4305 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 196.0912 374.2937)\\\" x=\\\"0 5 10.56 15.56\\\">such</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 217.2142 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 220.8748 374.2937)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57\\\">payment</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.2293 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 262.89 374.2937)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.9525 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 280.6131 374.2937)\\\" x=\\\"0 5.56 11.12\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 294.5145 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 298.1751 374.2937)\\\" x=\\\"0 5 10.56 16.12 21.12 23.9 26.18 28.96 34.52 37.3\\\">constitute</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 341.0365 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 344.6971 374.2937)\\\" x=\\\"0 5.56\\\">an</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.8201 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 359.4808 374.2937)\\\" x=\\\"0 5.56 10.56 15.56 21.12 24.45\\\">accord</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 389.4954 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 393.1561 374.2937)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 409.8406 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 413.5013 374.2937)\\\" x=\\\"0 5 10.56 13.34 15.62 20.62 23.4 28.96 33.96 36.74 39.02 44.58 50.14\\\">satisfaction,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.4212 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 470.0818 374.2937)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.7664 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 490.427 374.2937)\\\" x=\\\"0 7.22\\\">we</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 503.2102 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 506.8709 374.2937)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 525.7625 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 529.4231 374.2937)\\\" x=\\\"0 5.56 11.12 16.68 18.96\\\">apply</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.388 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 557.0486 374.2937)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 374.2937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 362.9754)\\\" x=\\\"0 5.56 11.12 16.12 24.45 30.01 35.57 38.35 41.01 43.79 49.35 52.01 57.01 62.57 68.13 71.46 74.12 79.68 84.68 89.68 95.24 100.8 106.36 109.14\\\">payment to your account.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 349.657)\\\" x=\\\"0 2.78 10 16.67 23.89 31.11 37.78 45 52.22 58.89 61.67 64.33 73.77 79.33 81.99 87.55 93.11 95.77 101.33 106.89 109.67 112.33 115.66 121.22 126.78 132.34 134.62 137.95 143.51 146.17 151.17 156.73 162.29 164.95 167.73 173.29 175.95 181.51 187.07 190.4 195.4 200.96 206.52 211.52 217.08 219.74 222.02 227.58 232.58 238.14 241.47 247.03 252.59 257.59 263.15 265.81 268.59 271.92 277.48 285.81 288.47 294.03 299.03 301.69 307.25 312.81 318.37 321.03 328.25 333.81 336.47 342.03 347.59 352.59 358.15 360.81 366.37 371.93 374.71 377.37 382.93 386.26 391.82 396.82 399.1 404.66 410.22 415.78 418.44 424 429.56 434.56 437.22 439.5 445.06 450.06 455.62 458.95 464.51 470.07 475.07 480.63 483.29 486.07 491.63 494.29 499.29 504.85 510.41\\\">INSURANCE. We do not require you to purchase insurance from us and we have not provided any insurance to you.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 336.3387)\\\" x=\\\"0 7.22 13.89 21.11 27.78 30.56 37.23 43.34 46.12 48.78 56 61.56 67.12 72.68 75.34 80.34 85.9 91.46 94.79 97.45 100.78 106.34 111.9 117.46 123.02 128.02 130.8 133.58 136.24 143.46 149.02 151.68 157.24 160.57 166.13 168.79 172.12 177.68 183.24 188.8 191.08 194.41 199.97 205.53 208.19 210.97 216.53 219.19 224.75 228.08 233.64 238.64 240.92 246.48 252.04 254.7 259.7 265.26 270.82 273.48 280.7 282.98 285.76 291.32 293.98 299.54 302.2 309.42 312.75 315.03 317.81 320.59 326.15 331.71 334.37 337.7 343.26 348.26 353.82 356.1 361.66 364.44 367.1 369.88 375.44 378.77 381.43 386.99 392.55 397.55 403.11 405.77 411.33 416.89 421.89 430.22 435.78 441.34 444.12 446.78 455.11 460.67 466.23 471.79\\\">RECEIPT. Upon your request, we are required to provide you with a written receipt for each payment made.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 323.0203)\\\" x=\\\"0 7.78 15.56 22.23 28.9 36.12 43.34 46.12 53.34\\\">GOVERNING</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 94.2182 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 97.2444 323.0203)\\\" x=\\\"0 5.56 12.23 21.67\\\">LAW.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 121.6926 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 124.7189 323.0203)\\\" x=\\\"0 6.11 11.67\\\">The</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 141.9503 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 144.9765 323.0203)\\\" x=\\\"0 2.28 7.84\\\">law</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.04 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 163.0663 323.0203)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 171.4061 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 174.4323 323.0203)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 188.3337 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 191.3599 323.0203)\\\" x=\\\"0 5 7.78 13.34 16.12\\\">state</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 213.0396 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 216.0658 323.0203)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 223.9076 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 226.9339 323.0203)\\\" x=\\\"0 7.22 12.78 15.06 20.06\\\">which</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 252.5589 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 255.5851 323.0203)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 271.7082 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 274.7344 323.0203)\\\" x=\\\"0 3.33 8.89 13.89 16.17 21.73\\\">reside</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.0293 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 305.0555 323.0203)\\\" x=\\\"0 7.22 12.78 18.34\\\">when</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 328.9618 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 331.988 323.0203)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.1111 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 351.1373 323.0203)\\\" x=\\\"0 5 7.28 12.84 18.4 23.96\\\">signed</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.6637 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 383.6899 323.0203)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 399.31 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 402.3363 323.0203)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 451.2523 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 454.2785 323.0203)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 470.9631 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 473.9893 323.0203)\\\" x=\\\"0 5.56 11.12 16.68 18.96 21.24 26.24 31.8 37.36 39.64\\\">applicable</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 519.1993 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 522.2255 323.0203)\\\" x=\\\"0 2.78 8.34 13.9 19.46 22.79 28.35\\\">federal</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.8603 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 555.8865 323.0203)\\\" x=\\\"0 2.28 7.84\\\">law</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 323.0203)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 311.7019)\\\" x=\\\"0 7.22 9.5 11.78\\\">will</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.1625 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 50.5142 311.7019)\\\" x=\\\"0 5.56 11.12 16.12 21.68 25.01\\\">govern</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 81.0904 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 84.4421 311.7019)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 98.3434 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 101.6951 311.7019)\\\" x=\\\"0 6.67 12.23 15.56 21.12 26.68 35.01 40.57 46.13\\\">Agreement</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 150.6111 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 153.9628 311.7019)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 170.6474 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 173.9991 311.7019)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 187.9005 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 191.2521 311.7019)\\\" x=\\\"0 2.28 7.84 10.62 16.18 19.51 25.07 28.4 33.96 36.74 42.3 45.08 47.36 52.92\\\">interpretation</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 249.7385 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 253.0902 311.7019)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 261.43 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 264.7817 311.7019)\\\" x=\\\"0 2.28 5.06\\\">it,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 272.6186 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 275.9703 311.7019)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.68\\\">except</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 305.4332 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 308.7849 311.7019)\\\" x=\\\"0 2.78 8.34 13.9\\\">that</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 325.4646 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 328.8163 311.7019)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 342.7176 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 346.0693 311.7019)\\\" x=\\\"0 6.11 11.67 17.23 22.79 26.12 31.68\\\">Federal</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.0342 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 383.3859 311.7019)\\\" x=\\\"0 6.67 10 15.56 17.84 20.62 23.95 29.51 32.29 34.57 40.13\\\">Arbitration</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 429.0792 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 432.4309 311.7019)\\\" x=\\\"0 6.67 11.67\\\">Act</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 446.8791 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 450.2308 311.7019)\\\" x=\\\"0 5.56 10.56 16.12 19.45 25.01 30.01 35.01 37.29\\\">expressly</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 492.5258 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 495.8775 311.7019)\\\" x=\\\"0 5.56 11.12 16.12 21.68 25.01 30.57\\\">governs</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 531.4536 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 534.8053 311.7019)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 548.7067 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 552.0584 311.7019)\\\" x=\\\"0 5 10.56 13.89\\\">Jury</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 311.7019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 300.3836)\\\" x=\\\"0 6.11 9.44 11.72 17.28 19.56 22.22 31.66 37.22 39.5 44.5 50.06 53.39 56.05 61.61 67.17 72.73 75.39 82.06 85.39 90.95 93.23 96.01 99.34 104.9 107.68 109.96 115.52 121.08 123.74 130.96 133.24 138.8 144.36 149.36 154.92 157.7 160.36 167.03 172.59 178.15 180.81 186.37 191.37 196.37 201.93 207.49 214.71 216.99 222.55 228.11 233.67 239.23 241.89 244.67 250.23 255.79 258.57 261.23 266.23 271.79 277.35 280.01 283.34 288.9 293.9 296.18 301.74 307.3 309.96 315.52 318.3 320.96 323.74 329.3 334.86 337.52 343.08 348.64 354.2 357.53 363.09 368.09 373.09 375.75 378.03 380.31 385.31 388.09 393.65 399.21 401.87 407.43 412.99 418.55 423.55 429.11 431.77 437.33 442.89 445.55 448.33 453.89 459.45 462.11 468.78 474.34 477.67 483.23 488.79 497.12 502.68 508.24 511.02 513.68 520.9 526.46 529.24 534.8\\\">Trial Waiver and Arbitration Clause. You acknowledge that you reside at the address listed above on the Agreement Date.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 287.0652)\\\" x=\\\"0 7.22 15 22.22 28.89 36.11 44.44 51.11\\\">CONSUMER</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 91.435 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 94.8938 287.0652)\\\" x=\\\"0 7.22 13.89 20.56 28.34 35.56 41.67\\\">REPORT.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 139.3421 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 142.8009 287.0652)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 160.5939 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 164.0527 287.0652)\\\" x=\\\"0 5.56 11.12 16.12\\\">have</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 185.7373 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 189.1961 287.0652)\\\" x=\\\"0 5.56 11.12 13.9 19.46 25.02 28.35 30.63 35.63 41.19\\\">authorized</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 235.9539 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 239.4128 287.0652)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 249.9743 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 253.4331 287.0652)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 261.773 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 265.2318 287.0652)\\\" x=\\\"0 5.56 11.12 13.9 19.46 21.74\\\">obtain</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 292.5365 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 295.9953 287.0652)\\\" x=\\\"0 5.56 11.12\\\">one</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.6799 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 316.1388 287.0652)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 325.0304 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 328.4892 287.0652)\\\" x=\\\"0 8.33 13.89 17.22\\\">more</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.2724 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 354.7312 287.0652)\\\" x=\\\"0 5 10.56 16.12 21.12 26.68 35.01 40.57\\\">consumer</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 398.6375 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 402.0963 287.0652)\\\" x=\\\"0 3.33 8.89 14.45 20.01 23.34 26.12\\\">reports</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 433.2194 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 436.6782 287.0652)\\\" x=\\\"0 5.56\\\">on</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.8013 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 451.2601 287.0652)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.3832 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 470.842 287.0652)\\\" x=\\\"0 2.28\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 478.6838 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 482.1427 287.0652)\\\" x=\\\"0 5 10.56 16.12 21.68 27.24 32.24 35.02 37.3 42.86\\\">connection</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 530.5704 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 534.0292 287.0652)\\\" x=\\\"0 7.22 9.5 12.28\\\">with</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.871 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 555.3299 287.0652)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 287.0652)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 275.7469)\\\" x=\\\"0 2.78 6.11 11.67 17.23 22.23 27.79 32.79 35.57 37.85 43.41 48.97\\\">transaction.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 262.4285)\\\" x=\\\"0 7.22 14.44 21.11 28.33 31.11\\\">CREDIT</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 70.3217 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 73.874 262.4285)\\\" x=\\\"0 7.22 13.89 20.56 28.34 35.56 41.67 44.45 51.67 59.45\\\">REPORTING.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.1005 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 139.6529 262.4285)\\\" x=\\\"0 9.44\\\">We</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 154.6529 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 158.2051 262.4285)\\\" x=\\\"0 8.33 13.89\\\">may</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 177.0967 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 180.6491 262.4285)\\\" x=\\\"0 3.33 8.89 14.45 20.01 23.34\\\">report</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 206.7721 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 210.3244 262.4285)\\\" x=\\\"0 2.28 7.84 10.62 16.18 19.51 27.84 33.4 36.18 38.46 44.02\\\">information</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.9094 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 263.4617 262.4285)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 271.8015 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 275.3538 262.4285)\\\" x=\\\"0 5 8.33 13.89 19.45 21.73\\\">credit</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.8655 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 303.4178 262.4285)\\\" x=\\\"0 5.56 11.12 14.45 20.01 25.57 31.13\\\">bureaus</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 339.5555 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 343.1078 262.4285)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.9994 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 355.5517 262.4285)\\\" x=\\\"0 5.56 8.34 13.9 19.46\\\">other</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 378.3447 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 381.897 262.4285)\\\" x=\\\"0 2.78 8.34 10.62 13.95 19.51 22.84 28.4 33.96 37.29 40.07 42.35 47.91\\\">third-parties</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.812 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 438.3644 262.4285)\\\" x=\\\"0 5.56 11.12 16.68 22.24\\\">about</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 463.3888 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 466.9411 262.4285)\\\" x=\\\"0 5 10.56 16.12\\\">your</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.3942 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 489.9465 262.4285)\\\" x=\\\"0 5.56 10.56 15.56 21.12 26.68 32.24 35.02\\\">account,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 527.7492 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 531.3015 262.4285)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24 28.52 34.08\\\">including</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 262.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 251.1102)\\\" x=\\\"0 2.28 7.84 10.62 16.18 18.84 24.4 27.73 30.39 38.72 41 46 51 56.56 62.12 64.78 70.34 75.9 80.9 89.23 94.79 100.35 103.13 108.13 110.91 113.57 119.13 124.69 130.25 132.91 138.47 144.03 149.03 151.69 157.25 162.81 167.81 170.09 172.87 175.15 180.15 185.71 188.37 193.93 197.26 199.92 205.48 211.04 216.6 222.16 224.94 227.22 232.22 237.78 240.44 246 251 256 261.56 267.12 272.68 275.46 278.12 280.4 285.96 288.74 294.3 297.63 305.96 311.52 314.3 316.58 322.14 327.7 330.36 338.69 344.25 349.25 351.91 357.47 363.03 365.69 369.02 374.58 377.36 379.64 385.2 390.2 392.98 398.54 404.1 406.76 409.04 414.6 417.26 422.26 427.82 433.38 436.71 439.37 444.37 447.7 453.26 458.82 461.1 463.88 466.54 469.87 475.43 480.99 486.55 489.88 492.66\\\">late or missed payments, and any positive or negative account information may be reflected in your credit report.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 237.7918)\\\" x=\\\"0 2.78 10 17.22 23.89 32.22 39.44 42.22 48.33 51.11 58.33 65 71.11 73.89 81.67 88.89\\\">INDEMNIFICATION.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 124.765 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 128.29 237.7918)\\\" x=\\\"0 6.67 12.23\\\">You</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.083 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 149.608 237.7918)\\\" x=\\\"0 5.56 11.12 14.45 20.01\\\">agree</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 175.1842 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 178.7092 237.7918)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 187.0491 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 190.5741 237.7918)\\\" x=\\\"0 2.28 7.84 13.4 18.96 27.29 32.85 35.13 37.91\\\">indemnify</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.4891 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 237.0141 237.7918)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.5756 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 251.1006 237.7918)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 267.7852 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 271.3102 237.7918)\\\" x=\\\"0 5.56 11.12 13.4\\\">hold</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.2751 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 293.8001 237.7918)\\\" x=\\\"0 5.56\\\">us</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 304.3616 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 307.8866 237.7918)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 324.5712 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 328.0962 237.7918)\\\" x=\\\"0 5.56 11.12\\\">our</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 342.5493 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 346.0743 237.7918)\\\" x=\\\"0 5.56 10.56 15.56 17.84 23.4 28.96 34.52 40.08 45.08\\\">assignees,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.9405 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 397.4655 237.7918)\\\" x=\\\"0 5.56 11.12 16.68 22.24 25.02 30.02\\\">agents,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.2683 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 433.7933 237.7918)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 450.4779 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 454.0029 237.7918)\\\" x=\\\"0 2.28 7.84 12.84 18.4 21.73 27.29 30.62\\\">insurers</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.6279 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 493.1529 237.7918)\\\" x=\\\"0 5.56 11.12 14.45 22.78 25.06 30.62 35.62\\\">harmless</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 533.7779 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 537.3029 237.7918)\\\" x=\\\"0 2.78 6.11 11.67\\\">from</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 557.3029 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 560.8279 237.7918)\\\" x=\\\"0 5.56 7.84\\\">all</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 237.7918)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 226.4734)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57 36.13 41.13\\\">damages,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 77.016 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 80.4241 226.4734)\\\" x=\\\"0 2.28 7.84 10.12 15.68 19.01 21.29 26.85 31.85\\\">injuries,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 115.0579 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 118.466 226.4734)\\\" x=\\\"0 5 7.28 12.84 15.12 23.45 28.45\\\">claims,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 149.6965 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 153.1046 226.4734)\\\" x=\\\"0 5.56 11.12 19.45 25.01 30.57 36.13 41.13\\\">demands,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 197.0206 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 200.4287 226.4734)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 217.1132 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 220.5214 226.4734)\\\" x=\\\"0 5.56 10.56 16.12 21.68 27.24 32.24 37.8 42.8\\\">expenses,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 266.1073 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 269.5154 226.4734)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24 28.52 34.08\\\">including</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 309.1638 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 312.5719 226.4734)\\\" x=\\\"0 3.33 8.89 14.45 19.45 25.01 30.57 36.13 41.69 43.97\\\">reasonable</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 362.1129 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 365.521 226.4734)\\\" x=\\\"0 5.56 8.34 11.12 16.68 20.01 25.57 31.13 36.13 38.04\\\">attorney&apos;s</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 408.563 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 411.9711 226.4734)\\\" x=\\\"0 2.78 8.34 13.9\\\">fees</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.8725 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 434.2806 226.4734)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 442.6204 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 446.0285 226.4734)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 459.9299 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 463.338 226.4734)\\\" x=\\\"0 5.56 10.56 13.34 18.9 24.46\\\">extent</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 490.5792 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 493.9873 226.4734)\\\" x=\\\"0 5.56 11.12 14.45 22.78 25.06 27.84 30.62 36.18\\\">permitted</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 535.7305 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 539.1386 226.4734)\\\" x=\\\"0 5.56\\\">by</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.7001 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 553.1082 226.4734)\\\" x=\\\"0 2.28 7.84 15.06\\\">law,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 226.4734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 215.1551)\\\" x=\\\"0 5.56 8.89 11.17 16.17 18.45 24.01\\\">arising</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 62.6752 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 67.1149 215.1551)\\\" x=\\\"0 5.56 11.12\\\">out</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 81.0163 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 85.4561 215.1551)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 93.7959 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 98.2356 215.1551)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 112.137 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 116.5767 215.1551)\\\" x=\\\"0 5 10.56 16.12 21.68 23.96 26.74 29.02 34.58 40.14\\\">condition,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 159.5016 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 163.9413 215.1551)\\\" x=\\\"0 8.33 13.89 16.17 21.73 24.51 30.07 35.63 41.19 46.75 51.75 57.31\\\">maintenance,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 224.039 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 228.4787 215.1551)\\\" x=\\\"0 5.56 10.56\\\">use</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 244.6017 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 249.0415 215.1551)\\\" x=\\\"0 5.56\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.9331 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 262.3728 215.1551)\\\" x=\\\"0 5.56 11.12 16.68 20.01 25.57 28.35 30.63 36.19\\\">operation</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 304.1307 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 308.5704 215.1551)\\\" x=\\\"0 5.56\\\">of</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 316.9102 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 321.35 215.1551)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.2514 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 339.6911 215.1551)\\\" x=\\\"0 6.67 10 15.56 21.12 26.68 30.01 32.79 37.79\\\">Property,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.2624 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 384.7021 215.1551)\\\" x=\\\"0 2.28 7.84 12.84 15.12 20.68 26.24 28.52 34.08\\\">including</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 424.3506 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 428.7903 215.1551)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.3518 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 438.7916 215.1551)\\\" x=\\\"0 5 7.28 12.84 15.12\\\">claim</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 462.2437 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 466.6835 215.1551)\\\" x=\\\"0 5.56 11.12 16.68 22.24\\\">under</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 492.2597 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 496.6994 215.1551)\\\" x=\\\"0 2.78 8.34\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 510.6008 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 515.0405 215.1551)\\\" x=\\\"0 5 7.78 11.11 13.39 18.39\\\">strict</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 536.2075 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 540.6472 215.1551)\\\" x=\\\"0 2.28 4.56 10.12 15.68 17.96 20.24 22.52 25.3\\\">liability</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 215.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 203.8367)\\\" x=\\\"0 5.56 11.12 16.12 18.9 22.23 24.51 30.07 35.63\\\">doctrine.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 190.5184)\\\" x=\\\"0 7.2217 15 21.1084 23.8867 31.1084 37.7783 44.4482\\\">NOTICES.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 80.3266 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 82.9828 190.5184)\\\" x=\\\"0 7.2217 12.7832 15.5615 17.8418 22.8418 28.4033\\\">Notices</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 116.3861 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 119.0424 190.5184)\\\" x=\\\"0 8.3301 13.8916\\\">may</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 137.934 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 140.5902 190.5184)\\\" x=\\\"0 5.5615\\\">be</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 151.7133 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 154.3695 190.5184)\\\" x=\\\"0 5.5615 7.8418 12.8418 18.4033\\\">given</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 178.3344 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 180.9906 190.5184)\\\" x=\\\"0 5.5615 11.123 14.4531 19.4531 25.0146 30.5762 36.1377 38.418 40.6982\\\">personally</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 226.6889 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 229.3451 190.5184)\\\" x=\\\"0 5.5615\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.2367 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 240.893 190.5184)\\\" x=\\\"0 5 10.5615 16.123\\\">sent</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.7943 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 262.4506 190.5184)\\\" x=\\\"0 5.5615\\\">by</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 273.0121 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 275.6684 190.5184)\\\" x=\\\"0 2.7783 5.0586 8.3887 13.3887\\\">first</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.8353 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 294.4916 190.5184)\\\" x=\\\"0 5 7.2803 12.8418 17.8418\\\">class</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 317.3334 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 319.9896 190.5184)\\\" x=\\\"0 8.3301 13.8916 16.1719 18.4522\\\">mail.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 341.2201 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 343.8764 190.5184)\\\" x=\\\"0 7.2217 12.7832 15.5615 17.8418 22.8418\\\">Notice</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 372.2797 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 374.9359 190.5184)\\\" x=\\\"0 8.3301 13.8916 16.1719 18.4522 24.0137\\\">mailed</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 404.5111 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.1674 190.5184)\\\" x=\\\"0 2.7783\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 415.5072 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 418.1635 190.5184)\\\" x=\\\"0 5.5615\\\">us</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 428.725 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 431.3812 190.5184)\\\" x=\\\"0 8.3301 13.8916 18.8916\\\">must</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 453.0512 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 455.7074 190.5184)\\\" x=\\\"0 5.5615\\\">be</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.8305 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 469.4867 190.5184)\\\" x=\\\"0 5 10.5615 16.1231\\\">sent</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 488.3881 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 491.0443 190.5184)\\\" x=\\\"0 2.7783\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.3842 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 502.0404 190.5184)\\\" x=\\\"0 2.7783 8.3398\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 515.9418 190.5184)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 518.5981 190.5184)\\\" x=\\\"0 5.5615 11.123 16.6846 20.0146 25.5762 30.5762\\\">address</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 179.2)\\\" x=\\\"0 5 10.5615 16.1231 23.3447\\\">shown</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 62.0063 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 64.6625 179.2)\\\" x=\\\"0 2.2803\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 72.5043 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 75.1606 179.2)\\\" x=\\\"0 2.7783 8.3398 10.6201\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 90.7807 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 93.4369 179.2)\\\" x=\\\"0 6.6699 12.2314 15.5615 21.123 26.6846 35.0146 40.5762 46.1377 48.916\\\">Agreement,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 145.1312 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 147.7875 179.2)\\\" x=\\\"0 5.6115\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 156.7791 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 159.4854 179.2)\\\" x=\\\"0 5.6115\\\">as</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 170.1469 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 172.8531 179.2)\\\" x=\\\"0 7.2717\\\">we</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 185.7363 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 188.4426 179.2)\\\" x=\\\"0 5.5615 8.3398 13.9014 19.4629 22.793 30.0147 32.2949 37.2949\\\">otherwise</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.299 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 233.9553 179.2)\\\" x=\\\"0 5.5615 7.8418 11.1719 16.7334 21.7334\\\">direct</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 258.467 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 261.1232 179.2)\\\" x=\\\"0 2.7783 6.1084 11.6699\\\">from</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.1232 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 283.7795 179.2)\\\" x=\\\"0 2.7783 5.0586 13.3887\\\">time</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.7297 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 305.3859 179.2)\\\" x=\\\"0 2.8283\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 313.8258 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 316.532 179.2)\\\" x=\\\"0 2.7783 5.0586 13.3887 18.9502\\\">time.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.2605 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 340.9168 179.2)\\\" x=\\\"0 7.2217 12.7832 15.5615 17.8418 22.8418 28.4033\\\">Notices</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 374.3201 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 376.9764 179.2)\\\" x=\\\"0 2.8283\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 385.4162 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 388.1225 179.2)\\\" x=\\\"0 5.6115\\\">us</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 398.784 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 401.4902 179.2)\\\" x=\\\"0 5.5615 8.8916\\\">are</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 415.9434 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 418.5996 179.2)\\\" x=\\\"0 5.5615 11.1231 16.6846 25.0147 30.5762\\\">deemed</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.7373 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 457.3936 179.2)\\\" x=\\\"0 5.5615 7.8418 12.8418 18.4033\\\">given</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 481.3584 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 484.0147 179.2)\\\" x=\\\"0 7.2217 12.7832 18.3447\\\">when</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 507.9209 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 510.5771 179.2)\\\" x=\\\"0 2.7783 8.3398 13.9014\\\">they</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.4785 179.2)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 532.1348 179.2)\\\" x=\\\"0 5.5615 8.8916\\\">are</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 167.8816)\\\" x=\\\"0 5.5615 11.1231 14.4531 19.4531 25.0146 30.5762 36.1377 38.418 40.6982\\\">personally</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 78.7982 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 81.4545 167.8816)\\\" x=\\\"0 5.5615 7.8418 12.8418 18.4033\\\">given</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 105.4193 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 108.0756 167.8816)\\\" x=\\\"0 5.5615\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 116.9672 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 119.6234 167.8816)\\\" x=\\\"0 5.5615 10.5615 13.3398 18.9014 24.4629 26.7432 29.0234\\\">actually</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 153.6469 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 156.3031 167.8816)\\\" x=\\\"0 3.3301 8.8916 13.8916 19.4531 21.7334 26.7334 32.2949\\\">received</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 194.1596 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 196.8158 167.8816)\\\" x=\\\"0 5.6615\\\">at</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 205.3557 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 208.1119 167.8816)\\\" x=\\\"0 5.6115 11.223\\\">our</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 222.715 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 225.4213 167.8816)\\\" x=\\\"0 5.5615 11.123 16.6846 20.0146 25.5762 30.5762 35.5762\\\">address.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 263.7758 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 266.432 167.8816)\\\" x=\\\"0 7.2217 12.7832 15.5615 17.8418 22.8418 28.4033\\\">Notices</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.8353 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 302.4916 167.8816)\\\" x=\\\"0 5.6115 8.9916\\\">are</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 317.0947 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 319.801 167.8816)\\\" x=\\\"0 5.5615 11.123 16.6846 25.0146 30.5762\\\">deemed</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.9387 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 358.5949 167.8816)\\\" x=\\\"0 5.5615 7.8418 12.8418 18.4033\\\">given</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 382.5598 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 385.216 167.8816)\\\" x=\\\"0 2.8783\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.7559 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 396.5121 167.8816)\\\" x=\\\"0 5.05 10.6615\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 412.7852 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 415.4914 167.8816)\\\" x=\\\"0 7.2717 12.8832 18.4947\\\">when</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 439.5977 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 442.3039 167.8816)\\\" x=\\\"0 2.8283 8.4398 14.0514\\\">they</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 461.4053 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 464.1115 167.8816)\\\" x=\\\"0 5.6115 8.9916\\\">are</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 478.7147 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 481.4209 167.8816)\\\" x=\\\"0 5.5615 11.1231 14.4531 19.4531 25.0146 30.5762 36.1377 38.418 40.6982\\\">personally</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 527.1191 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 529.7754 167.8816)\\\" x=\\\"0 5.5615 7.8418 12.8418 18.4033\\\">given</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.7402 167.8816)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 556.3965 167.8816)\\\" x=\\\"0 5.6615\\\">or</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 156.5633)\\\" x=\\\"0 7.2717 12.8832 18.4947\\\">when</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 57.2063 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 59.9125 156.5633)\\\" x=\\\"0 5.5615 7.8418 13.4033 18.4033 23.9648\\\">placed</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 89.4389 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 92.0951 156.5633)\\\" x=\\\"0 2.3803\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 100.1369 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 102.8932 156.5633)\\\" x=\\\"0 2.8283 8.4398\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 116.9445 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 119.6508 156.5633)\\\" x=\\\"0 8.3301 13.8916 16.1719 18.4522\\\">mail,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 140.8813 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 143.5375 156.5633)\\\" x=\\\"0 5.5615 11.123 16.6846 20.0147 25.5762 30.5762 35.5762 41.1377\\\">addressed</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 190.2367 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 192.893 156.5633)\\\" x=\\\"0 2.7783\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 201.2328 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 203.8891 156.5633)\\\" x=\\\"0 5 10.5615\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 220.0121 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 222.6684 156.5633)\\\" x=\\\"0 5.5615\\\">at</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.0082 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 233.6645 156.5633)\\\" x=\\\"0 5 10.5615 16.123\\\">your</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 253.1176 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 255.7738 156.5633)\\\" x=\\\"0 5.5615 11.1231 16.6846 20.0147 25.5762 30.5762\\\">address</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.35 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 294.0062 156.5633)\\\" x=\\\"0 2.7783 8.3399 13.9014\\\">then</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 313.4691 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 316.1254 156.5633)\\\" x=\\\"0 5 10.5615 16.1231 23.3447\\\">shown</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 345.0316 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 347.6879 156.5633)\\\" x=\\\"0 5.5615\\\">on</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 358.8109 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 361.4672 156.5633)\\\" x=\\\"0 5.5615 11.1231\\\">our</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.9203 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 378.5766 156.5633)\\\" x=\\\"0 3.3301 8.8916 13.8916 19.4531 22.7832 28.3447 33.3447\\\">records,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 414.6996 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 417.3559 156.5633)\\\" x=\\\"0 5.5615 10.5615 16.123\\\">even</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 439.0404 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 441.6967 156.5633)\\\" x=\\\"0 2.7783 8.3398 13.9014 19.4629 25.0244\\\">though</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 472.2826 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 474.9389 156.5633)\\\" x=\\\"0 5 10.5615\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 491.0619 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 493.7182 156.5633)\\\" x=\\\"0 8.3301 10.6104 16.1719 21.7334\\\">might</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 518.2299 156.5633)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 520.8861 156.5633)\\\" x=\\\"0 5.5615 11.123\\\">not</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 145.2449)\\\" x=\\\"0 5.5615 10.5615 13.3398 18.9014 24.4629 26.7432 29.0234\\\">actually</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 67.1234 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 69.7797 145.2449)\\\" x=\\\"0 3.3301 8.8916 13.8916 19.4531 21.7334 26.7334\\\">receive</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 102.0746 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 104.7309 145.2449)\\\" x=\\\"0 5.5615 11.123\\\">our</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 119.184 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 121.8402 145.2449)\\\" x=\\\"0 8.3301 13.8916 16.1719 18.4521 24.0137\\\">mailed</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 151.4154 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 154.0717 145.2449)\\\" x=\\\"0 5.5615 11.1231 13.9014 16.1816 21.1816 26.7432\\\">notice.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 183.5932 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 186.2494 145.2449)\\\" x=\\\"0 6.6699 12.2314\\\">You</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 204.0424 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 206.6986 145.2449)\\\" x=\\\"0 5.8115 11.6231 15.2031 21.0146\\\">agree</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.5248 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 236.4311 145.2449)\\\" x=\\\"0 2.9283 8.6398 14.3514\\\">that</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 253.7107 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 256.517 145.2449)\\\" x=\\\"0 5.8615\\\">30</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 268.24 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 271.1963 145.2449)\\\" x=\\\"0 5.7115 11.4231 16.5731 21.7231\\\">days&apos;</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 294.9785 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 297.7848 145.2449)\\\" x=\\\"0 5.6615 11.3231 14.2014 16.5816 21.6816\\\">notice</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 325.1279 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 327.8842 145.2449)\\\" x=\\\"0 2.5803\\\">is</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.7645 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.7207 145.2449)\\\" x=\\\"0 3.4301 9.0916 14.7531 19.8531 25.5146 31.1762 36.8377 42.4992 44.8795 50.541\\\">reasonable,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 392.14 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 394.8963 145.2449)\\\" x=\\\"0 5.6615 11.3231 13.7033 19.3648 24.4648\\\">unless</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 424.4611 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 427.2174 145.2449)\\\" x=\\\"0 5.15 8.0783 13.7899 16.7182\\\">state</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 449.6471 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 452.4533 145.2449)\\\" x=\\\"0 2.5303 8.3418\\\">law</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.2668 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 471.173 145.2449)\\\" x=\\\"0 3.4301 9.0916 14.7531 20.4146 22.7949 26.225 31.8865\\\">requires</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 508.1596 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 510.9158 145.2449)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 517.0773 145.2449)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 520.3336 145.2449)\\\" x=\\\"0 2.3803 8.0418 13.7033 19.3649 25.0264\\\">longer</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 133.9266)\\\" x=\\\"0 5.6615 11.3231 14.7531 17.1334 22.7949 28.4564\\\">period,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 64.4348 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 67.191 133.9266)\\\" x=\\\"0 2.5803\\\">in</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 75.6328 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 78.5891 133.9266)\\\" x=\\\"0 7.3717 13.0832 15.5135 20.6635\\\">which</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 104.9641 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 107.7703 133.9266)\\\" x=\\\"0 5.15 10.8615 16.0115\\\">case</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 129.4934 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 132.2996 133.9266)\\\" x=\\\"0 5.25 11.0615\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 149.1727 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 152.0789 133.9266)\\\" x=\\\"0 5.7115 11.423 14.9031 20.6146\\\">agree</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 178.4051 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 181.2113 133.9266)\\\" x=\\\"0 2.9283 8.6398 14.3514\\\">that</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 198.491 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 201.2973 133.9266)\\\" x=\\\"0 3.0283 8.8398\\\">the</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 215.9486 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 218.8549 133.9266)\\\" x=\\\"0 5.05 7.8783 13.4898 16.3182 21.9297 25.3098 28.7898 34.5014 40.2129 45.9244 48.3547 51.8348 57.5463\\\">state-required</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 282.1127 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 284.9189 133.9266)\\\" x=\\\"0 5.6615 11.3231 14.7531 17.1334 22.7949\\\">period</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 313.3754 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 316.1316 133.9266)\\\" x=\\\"0 2.5803\\\">is</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 324.0119 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 329.5182 133.9266)\\\" x=\\\"0 3.3301 8.8916 14.4531 19.4531 25.0147 30.5762 36.1377 41.6992 43.9795 49.541\\\">reasonable.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 381.8375 133.9266)\\\" x=\\\"0 2.6562\\\">  </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 387.15 133.9266)\\\" x=\\\"0 6.6699 12.2314\\\">You</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 404.943 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 407.5992 133.9266)\\\" x=\\\"0 5.5615 11.123 13.9014 19.4629 25.0244 28.3545 30.6348 35.6348\\\">authorize</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 448.7955 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 451.4518 133.9266)\\\" x=\\\"0 5.5615\\\">us</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 462.0133 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 464.6695 133.9266)\\\" x=\\\"0 2.7783\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 473.0094 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 475.6656 133.9266)\\\" x=\\\"0 5 10.5615 16.123\\\">send</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 497.3502 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 500.0064 133.9266)\\\" x=\\\"0 5.5615 11.1231 13.9014 16.1816 21.1816 26.7432\\\">notices</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 531.7496 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 534.4059 133.9266)\\\" x=\\\"0 2.7783\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 542.7457 133.9266)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 545.402 133.9266)\\\" x=\\\"0 5 10.5615 16.123\\\">your</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 122.6082)\\\" x=\\\"0 5.56 13.89 19.45 21.73 24.01 26.67 32.23 37.79 43.35 46.68 52.24 57.24 62.24 64.9 70.46 76.02 78.3 83.86 88.86 93.86 96.52 102.08 105.41 110.97 116.53 118.81 124.37 126.65 129.43 134.99 140.55 143.21 148.77 153.77 156.43 158.71 164.27 171.49\\\">email address unless prohibited by law.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 33.1 109.2898)\\\" x=\\\"0 5 12.22 19.44\\\">JURY</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 59.2133 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 63.5195 109.2898)\\\" x=\\\"0 6.11 13.33 16.11 22.78\\\">TRIAL</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 91.8594 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 96.1656 109.2898)\\\" x=\\\"0 9.44 16.11 18.89 25.56 32.23\\\">WAIVER</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 135.6138 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 139.9201 109.2898)\\\" x=\\\"0 6.67 13.89\\\">AND</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 161.0334 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 165.3396 109.2898)\\\" x=\\\"0 6.67 13.89 20.56 23.34 29.45 36.67 43.34 49.45 52.23 60.01\\\">ARBITRATION</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 232.5662 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 236.8724 109.2898)\\\" x=\\\"0 7.22 12.78 19.45 26.67 33.34 40.01\\\">CLAUSE.</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 279.6654 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 283.9716 109.2898)\\\" x=\\\"0 6.67\\\">By</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 295.6415 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 299.9478 109.2898)\\\" x=\\\"0 5 7.28 12.84 18.4 20.68 26.24 31.8\\\">signing,</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 334.5327 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 338.8389 109.2898)\\\" x=\\\"0 5 10.56\\\">you</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 354.962 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 359.2682 109.2898)\\\" x=\\\"0 5.56 11.12 14.45 20.01\\\">agree</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 384.8444 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 389.1507 109.2898)\\\" x=\\\"0 2.78\\\">to</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 397.4905 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 401.7967 109.2898)\\\" x=\\\"0 2.78 8.34 10.62\\\">this</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 417.4168 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 421.7231 109.2898)\\\" x=\\\"0 5 10.56 13.89\\\">Jury</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 440.6147 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 444.9209 109.2898)\\\" x=\\\"0 6.11 9.44 11.72 17.28\\\">Trial</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 464.4815 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 468.7877 109.2898)\\\" x=\\\"0 9.44 15 17.28 22.28 27.84\\\">Waiver</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.9596 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 504.2658 109.2898)\\\" x=\\\"0 5.56 11.12\\\">and</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 520.9504 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 525.2566 109.2898)\\\" x=\\\"0 6.67 10 15.56 17.84 20.62 23.95 29.51 32.29 34.57 40.13\\\">Arbitration</text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 570.95 109.2898)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip3-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 33.1 97.9715)\\\" x=\\\"0 7.22 9.5 15.06 20.62 25.62 31.18 33.84 37.17 40.5 47.72 50 55.56 61.12 66.12 71.68 75.01 78.34\\\">Clause (“Clause”).</text></g><clipPath id=\\\"clip3-3\\\"><path d=\\\"M 35 76 L 573 76 L 573 94 L 35 94 L 35 76 z \\\"/></clipPath><path clip-path=\\\"url(#clip3-3)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 93.8719 L 572.95 93.8719 L 572.95 76.8719 L 35.45 76.8719 L 35.45 93.8719 z \\\"/><path clip-path=\\\"url(#clip3-3)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.15 91.8719 L 572.45 91.8719 L 572.45 80.5535 L 39.15 80.5535 L 39.15 91.8719 z \\\"/><path clip-path=\\\"url(#clip3-3)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 253.9396 91.8719 L 357.9396 91.8719 L 357.9396 79.8719 L 253.9396 79.8719 L 253.9396 91.8719 z \\\"/><g clip-path=\\\"url(#clip3-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 253.9396 82.6531)\\\" x=\\\"0 6.67 12.23 17.23 22.23 27.79 31.12 36.68 42.24 47.8 53.36 56.02 61.58 67.14 72.7 75.36 82.03 87.03 92.59 98.15\\\">Background and Scope</text></g><clipPath id=\\\"clip3-4\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip3-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 94.3719 L 573.45 94.3719 L 573.45 93.3719 L 34.95 93.3719 L 34.95 94.3719 z \\\"/><path clip-path=\\\"url(#clip3-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 77.3719 L 573.45 77.3719 L 573.45 76.3719 L 34.95 76.3719 L 34.95 77.3719 z \\\"/><path clip-path=\\\"url(#clip3-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 93.3719 L 573.45 93.3719 L 573.45 77.3719 L 572.45 77.3719 L 572.45 93.3719 z \\\"/><path clip-path=\\\"url(#clip3-4)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 93.3719 L 35.95 93.3719 L 35.95 77.3719 L 34.95 77.3719 L 34.95 93.3719 z \\\"/><g clip-path=\\\"url(#clip3-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 36.5264)\\\" x=\\\"0 6.498 11.997 14.391 16.785 21.789 26.793 29.295 34.299 39.303 44.307 504 506.3906 508.7812 511.1719 513.5625 515.9531 518.3438 520.7344 523.125 525.5156\\\">UT  07/2019          </text></g><g clip-path=\\\"url(#clip3-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 26.3398)\\\" x=\\\"0 6.003 11.007 16.011 21.015\\\">Page </text></g><g clip-path=\\\"url(#clip3-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 55.8097 26.3398)\\\" x=\\\"0\\\">4</text></g><g clip-path=\\\"url(#clip3-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.815 26.3398)\\\" x=\\\"0 2.394 7.398 9.9\\\"> of </text></g><g clip-path=\\\"url(#clip3-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f3-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 73.1021 26.3398)\\\" x=\\\"0\\\">7</text></g><g clip-path=\\\"url(#clip3-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#d9d9d9\\\" style=\\\"font-family:f3-0; font-size:54pt; white-space:pre\\\" transform=\\\"matrix(0.707 0.707 0.707 -0.707 135.6027 198.5094)\\\" x=\\\"0 56.016 96.048 136.08 176.112 216.144 236.16 284.184 324.216 344.232 364.248 416.232 456.264 480.24\\\">* D E M O *are</text></g><g clip-path=\\\"url(#clip3-4)\\\"><text stroke=\\\"none\\\" fill=\\\"#002ba6\\\" style=\\\"font-family:f3-0; font-size:9pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.932 772)\\\" x=\\\"0 9.336 16.008 22.68 29.352 36.024 39.36 47.364 54.036 57.372 60.708 69.372 76.044 80.04 86.712 90.048 94.044 97.38 104.712 111.384 115.38 118.716 126.72 132.72 139.392 142.056 148.728 155.4 158.736 161.4 168.072 174.744 178.08 187.416 194.088 196.752 202.752 206.088 210.084 213.42 220.092 223.428 226.764 233.436 239.436 242.772 246.108 249.444 258.108 266.772 275.436 278.772 285.444 292.116 298.788 305.46 312.132 315.468 321.468 328.14\\\">Qoppa Software - For Evaluation Only - https://www.qoppa.com</text></g></g></svg></svg></g></svg><br>\\n<?xml version='1.0' encoding='UTF-8'?><svg id=\\\"qoppa_document\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" version=\\\"1.1\\\" xmlns=\\\"http://www.w3.org/2000/svg\\\" xmlns:xlink=\\\"http://www.w3.org/1999/xlink\\\"><!-- jPDFWeb v2019R1.03 - Demo Version --><style>title p { display: block; }</style><g id=\\\"qoppa_viewxform\\\" transform=\\\"matrix(1 0 0 1 0 0)\\\"><style type=\\\"text/css\\\">@font-face {font-family:f4-0;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f4-1;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f4-2;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}</style><svg id=\\\"qoppa_page_p4\\\" class=\\\"qoppa_page\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\"><rect class=\\\"qoppa_pageborder\\\" x=\\\"0.5pt\\\" y=\\\"0.5pt\\\" width=\\\"611pt\\\" height=\\\"791pt\\\" fill=\\\"none\\\" /><svg class=\\\"qoppa_pagecontents\\\" x=\\\"0pt\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" viewBox=\\\"0 0 612 792\\\" ><g class=\\\"qoppa_contentstream\\\" transform=\\\"matrix(1 0 0 -1 0 792)\\\" fill=\\\"black\\\" stroke=\\\"black\\\" stroke-width=\\\"1\\\" stroke-linecap=\\\"butt\\\" stroke-linejoin=\\\"miter\\\" stroke-miterlimit=\\\"10\\\"><clipPath id=\\\"clip4-1\\\"><path d=\\\"M 35 748 L 130 748 L 130 770 L 35 770 L 35 748 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-1)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 769.7 L 129.35 769.7 L 129.35 748.5906 L 35.45 748.5906 L 35.45 769.7 z \\\"/><path clip-path=\\\"url(#clip4-1)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 767.7 L 125.25 767.7 L 125.25 758.6453 L 39.55 758.6453 L 39.55 767.7 z \\\"/><path clip-path=\\\"url(#clip4-1)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 47.9683 767.7 L 116.9684 767.7 L 116.9684 757.7 L 47.9683 757.7 L 47.9683 767.7 z \\\"/><g clip-path=\\\"url(#clip4-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.9684 760.325)\\\" x=\\\"0 7.552 12 16.448 18.672 20.8 22.624 26.624 28.752 33.2 35.864 40.312 42.136 44.36 47.024 51.472 53.696 55.52 59.968 64.416\\\">What is arbitration?</text></g><clipPath id=\\\"clip4-2\\\"><path d=\\\"M 129 748 L 206 748 L 206 770 L 129 770 L 129 748 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 138.6945 760.325)\\\" x=\\\"0 5.336 9.784 11.912 16.36 18.184 20.408 24.856 27.52 31.968 36.416 38.64 40.464 44.464 48.912 51.04 53.264\\\">An alternative to</text></g><g clip-path=\\\"url(#clip4-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 157.5461 751.2703)\\\" x=\\\"0 4 8.448 12.896 15.56 17.784\\\">court.</text></g><clipPath id=\\\"clip4-3\\\"><path d=\\\"M 205 748 L 573 748 L 573 770 L 205 770 L 205 748 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 760.325)\\\" x=\\\"0 2.224\\\">In</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 216.5219 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 220.3852 760.325)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 26.768 31.216 35.664\\\">arbitration,</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 258.2758 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 262.139 760.325)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 266.5883 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 270.4515 760.325)\\\" x=\\\"0 2.224 6.672 8.496 11.16\\\">third</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 286.0609 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 289.9242 760.325)\\\" x=\\\"0 4.448 8.896 11.56 13.784\\\">party</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 307.7094 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 311.5727 760.325)\\\" x=\\\"0 2.664 5.504 10.84 13.504 17.952 19.776 22 26.448 29.112 31.952\\\">(&quot;Arbiter&quot;)</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 346.1898 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 350.0531 760.325)\\\" x=\\\"0 4 8.448 10.272 14.272 18.72\\\">solves</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 372.7758 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 376.639 760.325)\\\" x=\\\"0 5.776 7.6 11.6 16.048 20.496 22.72 27.168\\\">Disputes</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 407.8109 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 411.6742 760.325)\\\" x=\\\"0 1.824\\\">in</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 417.9477 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 421.8109 760.325)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 426.2601 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 430.1234 760.325)\\\" x=\\\"0 4.448 8.896 13.344 16.008 17.832 22.28\\\">hearing</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.8578 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 460.7211 760.325)\\\" x=\\\"0 2.664 5.504 9.952 14.4 18.848 21.512 23.336 27.784 32.232 35.072 37.736\\\">(&quot;hearing&quot;).</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 500.6859 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 504.5492 760.325)\\\" x=\\\"0 5.336 9.784 14.232\\\">You,</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.0062 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 524.8695 760.325)\\\" x=\\\"0 2.664 7.112 8.936 13.384 15.608 20.056\\\">related</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.3773 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 553.2406 760.325)\\\" x=\\\"0 2.224 6.672 8.496 11.16\\\">third</text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-3)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 751.2703)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056 24.056 26.28 28.408 32.856 37.304 41.752 43.88 49.656 54.104 56.328 58.456 64.232 68.68 70.504 74.504 78.952 81.08 83.304 87.752 92.2 94.328 96.992 98.816 103.264 107.712 109.936 112.064 114.288 118.736 120.864 125.312 129.76 131.888 134.112 138.56 140.688 144.688 149.136 153.584 156.248 158.472 160.696 162.824 168.16 172.608 176.608 181.056 183.184 186.024 190.472 194.92 197.584 199.808 201.632 206.08 210.08 212.92 215.048 217.272 221.72 224.384 228.832 233.28 235.408 237.232 241.68 244.344 248.344 250.472 252.696 255.36 257.184 261.632 263.456 267.456\\\">parties, and we, waive the right to go to court. Such &quot;parties&quot; forgo jury trials.</text></g><clipPath id=\\\"clip4-4\\\"><path d=\\\"M 35 727 L 130 727 L 130 749 L 35 749 L 35 727 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-4)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 748.5906 L 129.35 748.5906 L 129.35 727.4813 L 35.45 727.4813 L 35.45 748.5906 z \\\"/><path clip-path=\\\"url(#clip4-4)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 746.5906 L 125.25 746.5906 L 125.25 728.4813 L 39.55 728.4813 L 39.55 746.5906 z \\\"/><path clip-path=\\\"url(#clip4-4)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 41.6461 746.5906 L 123.6461 746.5906 L 123.6461 736.5906 L 41.6461 736.5906 L 41.6461 746.5906 z \\\"/><g clip-path=\\\"url(#clip4-4)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 41.6461 739.2156)\\\" x=\\\"0 2.224 6.224 8.352 10.176 12.4 14.528 18.976 20.8 23.024 25.248 29.696 32.36 36.808 41.256 43.48 45.608 47.832 50.496 54.944 61.608 63.736 67.736 72.184 76.632 79.296\\\">Is it different from court</text></g><path clip-path=\\\"url(#clip4-4)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 56.4156 737.5359 L 108.4156 737.5359 L 108.4156 727.5359 L 56.4156 727.5359 L 56.4156 737.5359 z \\\"/><g clip-path=\\\"url(#clip4-4)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 56.4156 730.1609)\\\" x=\\\"0 4.448 8.896 13.344 15.472 17.296 21.744 24.408 28.408 30.536 32.76 35.424 37.248 41.696 43.52 47.52\\\">and jury trials?</text></g><clipPath id=\\\"clip4-5\\\"><path d=\\\"M 129 727 L 206 727 L 206 749 L 129 749 L 129 727 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-5)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 159.5461 739.2156)\\\" x=\\\"0 5.336 9.784 13.784\\\">Yes.</text></g><clipPath id=\\\"clip4-6\\\"><path d=\\\"M 205 727 L 573 727 L 573 749 L 205 749 L 205 727 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 739.2156)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 223.6351 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 226.6552 739.2156)\\\" x=\\\"0 4.448 8.896 13.344 16.008 17.832 22.28\\\">hearing</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 253.3896 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 256.4096 739.2156)\\\" x=\\\"0 1.824\\\">is</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.2338 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 265.2539 739.2156)\\\" x=\\\"0 4.448 7.112 8.936 12.936 17.384 19.608\\\">private</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 289.3125 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 292.3325 739.2156)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 305.6802 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 308.7002 739.2156)\\\" x=\\\"0 1.824 6.272 10.272\\\">less</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 322.9737 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 325.9937 739.2156)\\\" x=\\\"0 2.224 6.672 9.336 16 20.448\\\">formal</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.2672 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 351.2872 739.2156)\\\" x=\\\"0 2.224 6.672 11.12\\\">than</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 366.8575 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 369.8776 739.2156)\\\" x=\\\"0 4 8.448 12.896 15.56 17.784\\\">court.</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 389.8854 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 392.9055 739.2156)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608\\\">Arbiters</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 420.5148 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 423.5349 739.2156)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 438.6482 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 441.6682 739.2156)\\\" x=\\\"0 1.824 3.648 10.312 12.136\\\">limit</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.0276 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 459.0477 739.2156)\\\" x=\\\"0 4.448 7.112 11.56 14.224 18.672 23.12 27.568 30.232 32.056 36.504\\\">pre-hearing</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 500.0086 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 503.0286 739.2156)\\\" x=\\\"0 2.224 6.672 10.672\\\">fact</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 515.9232 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 518.9432 739.2156)\\\" x=\\\"0 2.224 4.048 8.496 12.944 14.768 19.216 23.664\\\">finding,</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 544.8338 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 547.8539 739.2156)\\\" x=\\\"0 4 8.448 10.272 12.096 16.544\\\">called</text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 739.2156)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 730.1609)\\\" x=\\\"0 2.84 7.288 9.112 13.112 17.112 21.56 25.56 30.008 32.672 36.672 38.896 41.736 43.864 48.752 53.2 57.648 59.776 64.224 68.672 72.672 74.496 78.496 80.32 84.768 89.216 91.344 93.168 97.168 99.296 101.52 103.344 107.792 112.24 114.064 116.288 118.416 124.192 128.64 133.088 135.752 137.976 141.976 144.104 146.768 151.216 153.88 158.328 160.152 164.152 166.28 170.728 174.728 179.176 181.84 184.064 188.512 191.176 195.624 197.752 203.088 205.752 210.2 212.024 214.248 218.696 221.36 225.36\\\">&quot;discovery.&quot; The decision is final. Courts rarely overturn Arbiters.</text></g><clipPath id=\\\"clip4-7\\\"><path d=\\\"M 35 706 L 130 706 L 130 728 L 35 728 L 35 706 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-7)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 727.4813 L 129.35 727.4813 L 129.35 706.3719 L 35.45 706.3719 L 35.45 727.4813 z \\\"/><path clip-path=\\\"url(#clip4-7)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 725.4813 L 125.25 725.4813 L 125.25 707.3719 L 39.55 707.3719 L 39.55 725.4813 z \\\"/><path clip-path=\\\"url(#clip4-7)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 44.2789 725.4813 L 121.2789 725.4813 L 121.2789 715.4813 L 44.2789 715.4813 L 44.2789 725.4813 z \\\"/><g clip-path=\\\"url(#clip4-7)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 44.2789 718.1062)\\\" x=\\\"0 7.552 12 16.448 18.576 23.024 27.472 31.92 35.92 38.048 40.272 44.72 49.168 51.296 57.072 58.896 63.344 67.792 71.792\\\">Who does the Clause</text></g><path clip-path=\\\"url(#clip4-7)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 70.3941 716.4266 L 95.3941 716.4266 L 95.3941 706.4266 L 70.3941 706.4266 L 70.3941 716.4266 z \\\"/><g clip-path=\\\"url(#clip4-7)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 70.3941 709.0516)\\\" x=\\\"0 4 8.448 12.448 16.896 19.56\\\">cover?</text></g><clipPath id=\\\"clip4-8\\\"><path d=\\\"M 129 706 L 206 706 L 206 728 L 129 728 L 129 706 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 144.5226 718.1062)\\\" x=\\\"0 5.336 9.784 14.232 16.456 18.584 24.36 28.36 30.584 32.712 37.16 41.608\\\">You, Us, and</text></g><g clip-path=\\\"url(#clip4-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 154.4348 709.0516)\\\" x=\\\"0 6.224 8.448 12.896 17.344 20.008 24.008\\\">Others.</text></g><clipPath id=\\\"clip4-9\\\"><path d=\\\"M 205 706 L 573 706 L 573 728 L 205 728 L 205 706 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 718.1062)\\\" x=\\\"0 4.888 9.336 11.16\\\">This</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.0101 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 228.5163 718.1062)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496\\\">Clause</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 253.4655 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 256.9716 718.1062)\\\" x=\\\"0 4.448 8.896 12.896 17.344 20.008 24.456\\\">governs</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 285.4326 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 288.9387 718.1062)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 300.0598 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 303.5659 718.1062)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056 24.056\\\">parties,</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.8472 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 333.3533 718.1062)\\\" x=\\\"0 2.224 6.672 11.12 12.944\\\">their</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.9627 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 352.4688 718.1062)\\\" x=\\\"0 4.448 8.896 10.72 13.384 17.384\\\">heirs,</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 372.0782 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 375.5844 718.1062)\\\" x=\\\"0 4 8.448 12.448 16.448 20.896 24.896 28.896 33.344 36.008 40.008\\\">successors,</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 417.8187 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 421.3249 718.1062)\\\" x=\\\"0 4.448 8.448 12.448 14.272 18.72 23.168 27.168\\\">assigns,</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 450.7194 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 454.2255 718.1062)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.5732 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 471.0793 718.1062)\\\" x=\\\"0 2.224 6.672 8.496 11.16\\\">third</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.6887 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 490.1949 718.1062)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056\\\">parties</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 514.2535 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 517.7596 718.1062)\\\" x=\\\"0 2.664 7.112 8.936 13.384 15.608 20.056\\\">related</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 542.2674 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 545.7735 718.1062)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.4454 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 555.9515 718.1062)\\\" x=\\\"0 4.448 8.896\\\">any</text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 718.1062)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 709.0516)\\\" x=\\\"0 5.776 7.6 11.6 16.048 20.496 22.72 27.168\\\">Dispute.</text></g><clipPath id=\\\"clip4-10\\\"><path d=\\\"M 35 630 L 130 630 L 130 707 L 35 707 L 35 630 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-10)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 706.3719 L 129.35 706.3719 L 129.35 630.9344 L 35.45 630.9344 L 35.45 706.3719 z \\\"/><path clip-path=\\\"url(#clip4-10)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 704.3719 L 125.25 704.3719 L 125.25 686.2625 L 39.55 686.2625 L 39.55 704.3719 z \\\"/><path clip-path=\\\"url(#clip4-10)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 47.7711 704.3719 L 117.7711 704.3719 L 117.7711 694.3719 L 47.7711 694.3719 L 47.7711 704.3719 z \\\"/><g clip-path=\\\"url(#clip4-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.7711 696.9969)\\\" x=\\\"0 7.552 12 13.824 17.824 22.272 24.4 30.176 32 36 40.448 44.896 47.12 51.568 55.568 57.696 62.144 64.808\\\">Which Disputes are</text></g><path clip-path=\\\"url(#clip4-10)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 65.9449 695.3172 L 98.9449 695.3172 L 98.9449 685.3172 L 65.9449 685.3172 L 65.9449 695.3172 z \\\"/><g clip-path=\\\"url(#clip4-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 65.9449 687.9422)\\\" x=\\\"0 4 8.448 12.448 16.896 19.56 24.008 28.456\\\">covered?</text></g><clipPath id=\\\"clip4-11\\\"><path d=\\\"M 129 630 L 206 630 L 206 707 L 129 707 L 129 630 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 145.298 696.9969)\\\" x=\\\"0 5.336 7.16 8.984 11.112 16.888 18.712 22.712 27.16 31.608 33.832 38.28 42.28\\\">All Disputes.</text></g><clipPath id=\\\"clip4-12\\\"><path d=\\\"M 205 630 L 573 630 L 573 707 L 205 707 L 205 630 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 696.9969)\\\" x=\\\"0 2.224\\\">In</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 216.5219 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 220.3165 696.9969)\\\" x=\\\"0 2.224 6.672 8.496\\\">this</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 232.8126 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 236.6072 696.9969)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496 24.944\\\">Clause,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 263.7791 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 267.5738 696.9969)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 278.6949 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 282.4895 696.9969)\\\" x=\\\"0 5.776 10.224 12.888\\\">word</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.8293 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 303.624 696.9969)\\\" x=\\\"0 2.84 8.616 10.44 14.44 18.888 23.336 25.56 30.008 34.008\\\">&quot;Disputes&quot;</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 340.4755 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 344.2702 696.9969)\\\" x=\\\"0 4.448 8.896\\\">has</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 357.1686 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 360.9633 696.9969)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 372.0844 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 375.879 696.9969)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456 24.904 28.904\\\">broadest</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 407.0118 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 410.8065 696.9969)\\\" x=\\\"0 4.448 8.896 12.896 16.896 18.72 23.168 24.992\\\">possible</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 440.2518 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 444.0464 696.9969)\\\" x=\\\"0 6.664 11.112 15.56 20.008 21.832 26.28 30.728\\\">meaning.</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 477.0034 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 480.7981 696.9969)\\\" x=\\\"0 4.888 9.336 11.16\\\">This</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 495.9582 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 499.7529 696.9969)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496\\\">Clause</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 524.7021 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 528.4968 696.9969)\\\" x=\\\"0 4.448 8.896 12.896 17.344 20.008 24.456\\\">governs</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 556.9577 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 560.7523 696.9969)\\\" x=\\\"0 4.448 6.272\\\">all</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 696.9969)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 687.9422)\\\" x=\\\"0 2.84 8.616 10.44 14.44 18.888 23.336 25.56 30.008 34.008\\\">&quot;Disputes&quot;</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 246.7015 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 248.8785 687.9422)\\\" x=\\\"0 1.824 6.272 10.272 14.72 16.544 20.544 22.368 26.816\\\">involving</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.148 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 282.3249 687.9422)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 293.446 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 295.6229 687.9422)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056 24.056\\\">parties.</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 321.9041 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 324.081 687.9422)\\\" x=\\\"0 4.888 9.336 11.16\\\">This</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 339.2412 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 341.4181 687.9422)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44\\\">includes</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 370.8634 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 373.0403 687.9422)\\\" x=\\\"0 4.448 6.272\\\">all</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 381.1379 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 383.3148 687.9422)\\\" x=\\\"0 4 5.824 10.272 12.096 18.76\\\">claims</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 406.0765 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 408.2534 687.9422)\\\" x=\\\"0 4.448 8.448 12.896\\\">even</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 425.6011 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 427.778 687.9422)\\\" x=\\\"0 1.824 6.272 10.72 12.544 15.208 19.656 23.656 25.88 27.704\\\">indirectly</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 459.485 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 461.6619 687.9422)\\\" x=\\\"0 2.664 7.112 8.936 13.384 15.608 20.056\\\">related</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.1698 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 488.3466 687.9422)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 495.0185 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 497.1954 687.9422)\\\" x=\\\"0 4 8.448 12.896\\\">your</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.7579 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 514.9348 687.9422)\\\" x=\\\"0 4.448 8.896 13.344 15.168 16.992 20.992 25.44 27.664 29.488 33.936\\\">application</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.3254 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 555.5023 687.9422)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 687.9422)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 678.8875)\\\" x=\\\"0 4.448 8.896 11.56 16.008 20.456 27.12 31.568 36.016 38.24\\\">agreements</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 252.0961 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 254.4013 678.8875)\\\" x=\\\"0 5.776 7.6 9.824\\\">with</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 268.6747 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 270.9799 678.8875)\\\" x=\\\"0 4.448 8.448\\\">us.</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.6518 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 283.957 678.8875)\\\" x=\\\"0 4.888 9.336 11.16\\\">This</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.1172 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 301.4224 678.8875)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44\\\">includes</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 330.8677 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 333.1729 678.8875)\\\" x=\\\"0 4 5.824 10.272 12.096 18.76\\\">claims</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.9346 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 358.2398 678.8875)\\\" x=\\\"0 2.664 7.112 8.936 13.384 15.608 20.056\\\">related</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 382.7477 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 385.0529 678.8875)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 391.7247 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 394.0299 678.8875)\\\" x=\\\"0 1.824 6.272 8.496 12.944 15.608 22.272 26.72 28.944 30.768 35.216\\\">information</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 433.6979 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 436.0031 678.8875)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 448.9016 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 451.2068 678.8875)\\\" x=\\\"0 4.448 7.112 11.56 15.56 17.384 21.832 26.28 30.28 32.104\\\">previously</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 487.3161 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 489.6213 678.8875)\\\" x=\\\"0 4.448 8.896 12.896\\\">gave</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 506.969 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 509.2742 678.8875)\\\" x=\\\"0 4.448 8.448\\\">us.</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 519.9461 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 522.2513 678.8875)\\\" x=\\\"0 2.224\\\">It</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.6966 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 529.0018 678.8875)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44\\\">includes</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 558.4471 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 560.7523 678.8875)\\\" x=\\\"0 4.448 6.272\\\">all</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 678.8875)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 669.8328)\\\" x=\\\"0 4.448 8.896 12.896\\\">past</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 224.9711 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 227.1634 669.8328)\\\" x=\\\"0 4.448 8.896 11.56 16.008 20.456 27.12 31.568 36.016 38.24 42.24\\\">agreements.</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 271.6321 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 273.8245 669.8328)\\\" x=\\\"0 2.224\\\">It</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 278.2698 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 280.4621 669.8328)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44 29.44\\\">includes,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.13 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 314.3223 669.8328)\\\" x=\\\"0 4.448\\\">as</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 322.7716 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 324.9639 669.8328)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 340.0772 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 342.2695 669.8328)\\\" x=\\\"0 4.448\\\">be</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.1679 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 353.3602 669.8328)\\\" x=\\\"0 4.448 8.896 13.344 15.168 16.992 20.992 25.44 29.888 31.712 36.16\\\">applicable,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 391.7508 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 393.9431 669.8328)\\\" x=\\\"0 4.448 8.896\\\">any</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 406.8416 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 409.0339 669.8328)\\\" x=\\\"0 4.448 8.896 13.344 15.168 17.392 19.216 23.664 28.112 32.56\\\">additional</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 443.4245 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 445.6168 669.8328)\\\" x=\\\"0 4.448 8.896 11.56 13.384 17.832 22.28 26.28\\\">periods,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.1246 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 476.3169 669.8328)\\\" x=\\\"0 4.448 8.448 10.672 15.12 19.568 23.568 25.392 29.84 34.288 38.288\\\">extensions,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 516.8326 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 519.0249 669.8328)\\\" x=\\\"0 2.664 7.112 11.56 16.008 21.784 26.232 28.056 32.056\\\">renewals,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.31 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 555.5023 669.8328)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 669.8328)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 660.7781)\\\" x=\\\"0 4.448 6.272 10.72 15.168 19.168\\\">plans.</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.2445 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 233.5225 660.7781)\\\" x=\\\"0 2.224\\\">It</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 237.9678 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 240.2458 660.7781)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44\\\">includes</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 269.6911 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 271.9691 660.7781)\\\" x=\\\"0 4 5.824 10.272 12.096 18.76\\\">claims</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 294.7308 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 297.0088 660.7781)\\\" x=\\\"0 2.664 7.112 8.936 13.384 15.608 20.056\\\">related</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 321.5167 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 323.7946 660.7781)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 330.4665 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 332.7445 660.7781)\\\" x=\\\"0 4.448 8.896 15.56 20.008 24.456 28.904\\\">damaged</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 366.1039 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 368.3819 660.7781)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456 23.12 25.344 29.344\\\">property,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 399.9522 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 402.2302 660.7781)\\\" x=\\\"0 4.448 8.896 12.896 17.344 21.792 24.016\\\">buyout,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 428.4724 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 430.7504 660.7781)\\\" x=\\\"0 2.664 7.112 8.936 13.384 17.384 19.608 24.056 26.28 30.728 37.392 41.84 46.288 48.512\\\">r* D E M O *t,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 481.4887 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 483.7667 660.7781)\\\" x=\\\"0 1.824 6.272 10.272 14.272\\\">loss,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 500.2627 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 502.5408 660.7781)\\\" x=\\\"0 4.448 8.896 15.56 20.008 24.456 28.904\\\">damage,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 533.6736 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 535.9516 660.7781)\\\" x=\\\"0 5.776 10.224 12.888 15.552 20 24.448 26.672 30.672\\\">warranty,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 660.7781)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 651.7234)\\\" x=\\\"0 6.664 11.112 12.936 17.384 19.608 24.056 28.504 32.952 37.4 41.4 45.848\\\">maintenance,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.9281 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 260.595 651.7234)\\\" x=\\\"0 4 8.448 10.272 12.096 16.544 20.544 22.768 24.592 29.04 33.488\\\">collection,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 296.3099 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 298.9768 651.7234)\\\" x=\\\"0 4.448 8.896 12.896 16.896 21.344 25.344 29.344 31.168 35.616 40.064\\\">possession,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 341.2697 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 343.9366 651.7234)\\\" x=\\\"0 4.448 7.112 8.936 12.936 17.384 21.384 25.384\\\">privacy,</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.546 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 374.2129 651.7234)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 387.5606 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 390.2275 651.7234)\\\" x=\\\"0 4 8.448 12.448 14.672 19.12 25.784 30.232\\\">customer</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 423.1259 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 425.7928 651.7234)\\\" x=\\\"0 1.824 6.272 8.496 12.944 15.608 22.272 26.72 28.944 30.768 35.216 39.664\\\">information.</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.6834 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 470.3503 651.7234)\\\" x=\\\"0 2.224\\\">It</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.7957 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 477.4626 651.7234)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44\\\">includes</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 506.9079 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 509.5748 651.7234)\\\" x=\\\"0 4 5.824 10.272 12.096 18.76\\\">claims</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 532.3365 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 535.0034 651.7234)\\\" x=\\\"0 2.664 7.112 8.936 13.384 15.608 20.056\\\">related</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.5112 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 562.1781 651.7234)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 651.7234)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 642.6688)\\\" x=\\\"0 4 8.448 10.672 12.896 14.72 19.168\\\">setting</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.4672 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 236.1411 642.6688)\\\" x=\\\"0 4.448 8.448 10.272 14.72\\\">aside</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 255.313 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 257.987 642.6688)\\\" x=\\\"0 2.224 6.672 8.496\\\">this</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 270.4831 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 273.157 642.6688)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496 24.944\\\">Clause.</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 300.3289 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 303.0029 642.6688)\\\" x=\\\"0 2.224\\\">It</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 307.4482 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 310.1221 642.6688)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44\\\">includes</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 339.5674 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 342.2414 642.6688)\\\" x=\\\"0 4 5.824 10.272 12.096 18.76\\\">claims</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 365.0031 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 367.6771 642.6688)\\\" x=\\\"0 4.448 8.896 13.344 17.792\\\">about</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 387.6966 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 390.3706 642.6688)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 401.4917 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 404.1656 642.6688)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496 24.944 26.472\\\">Clause&apos;s</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.6422 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 437.3161 642.6688)\\\" x=\\\"0 4 8.448 10.272 12.096 16.544 18.368 20.592\\\">validity</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 461.9099 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 464.5838 642.6688)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 477.9315 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 480.6055 642.6688)\\\" x=\\\"0 4 8 12.448 16.896 21.344\\\">scope.</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 504.1758 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 506.8497 642.6688)\\\" x=\\\"0 2.224\\\">It</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 511.295 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 513.969 642.6688)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44\\\">includes</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 543.4143 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 546.0883 642.6688)\\\" x=\\\"0 4 5.824 10.272 12.096 18.76\\\">claims</text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 642.6688)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 633.6141)\\\" x=\\\"0 4.448 8.896 13.344 17.792 20.016 22.144 27.92 32.368 36.816 39.04 43.488 47.936 50.6 52.728 54.952 59.4 61.528 65.976 68.64 73.088 74.912 77.136 79.8 84.248 86.472 90.92\\\">about whether to arbitrate.</text></g><clipPath id=\\\"clip4-13\\\"><path d=\\\"M 35 578 L 130 578 L 130 631 L 35 631 L 35 578 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-13)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 630.9344 L 129.35 630.9344 L 129.35 578.6609 L 35.45 578.6609 L 35.45 630.9344 z \\\"/><path clip-path=\\\"url(#clip4-13)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 628.9344 L 125.25 628.9344 L 125.25 619.8797 L 39.55 619.8797 L 39.55 628.9344 z \\\"/><path clip-path=\\\"url(#clip4-13)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 41.1227 628.9344 L 124.1227 628.9344 L 124.1227 618.9344 L 41.1227 618.9344 L 41.1227 628.9344 z \\\"/><g clip-path=\\\"url(#clip4-13)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 41.1227 621.5594)\\\" x=\\\"0 5.336 8 12.448 14.576 18.576 23.024 27.472 29.6 35.376 39.824 41.648 45.648 47.472 51.92 56.368 58.496 61.16 62.984 67.432 71.88 74.104 78.104\\\">Are you waiving rights?</text></g><clipPath id=\\\"clip4-14\\\"><path d=\\\"M 129 578 L 206 578 L 206 631 L 129 631 L 129 578 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-14)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 159.5461 621.5594)\\\" x=\\\"0 5.336 9.784 13.784\\\">Yes.</text></g><clipPath id=\\\"clip4-15\\\"><path d=\\\"M 205 578 L 573 578 L 573 631 L 205 631 L 205 578 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-15)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 621.5594)\\\" x=\\\"0 5.336 9.784 14.232\\\">You </text></g><g clip-path=\\\"url(#clip4-15)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 225.85 621.5594)\\\" x=\\\"0 5.776 10.224 12.048 16.048\\\">waive</text></g><path clip-path=\\\"url(#clip4-15)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 225.85 620.213 L 225.85 620.213 L 245.85 620.213 L 246.1833 620.213 L 246.1833 619.5464 L 245.85 619.5464 L 225.85 619.5464 L 225.5167 619.5464 L 225.5167 620.213 z \\\"/><g clip-path=\\\"url(#clip4-15)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.85 621.5594)\\\" x=\\\"0 2.128 6.128 10.576 15.024 17.688 19.816 22.48 24.304 28.752 33.2 35.424 39.424 41.552 43.776 48.224\\\"> your rights to:</text></g><g clip-path=\\\"url(#clip4-15)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 611.5047)\\\" x=\\\"0 4.448 6.672 8.8 14.576 19.024 23.024 27.472 29.6 31.424 35.872 38.536 40.36 44.808 48.808 50.936 54.936 59.384 61.208 65.208 69.656 71.784 77.56 79.384 83.384 87.832 92.28 94.504 98.952 102.952\\\">1. Have juries solve Disputes.</text></g><g clip-path=\\\"url(#clip4-15)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 601.45)\\\" x=\\\"0 4.448 6.672 8.8 14.576 19.024 23.024 27.472 29.6 33.6 38.048 42.496 45.16 47.384 51.384 53.608 55.736 60.184 62.408 66.856 71.304 73.968 76.096 78.32 82.768 87.216 91.664 93.792 97.792 104.456 108.904 110.728 112.552 115.216 119.216 121.04 125.488 127.312 133.976 137.976 140.104 144.104 148.552 153 155.664 157.888 161.888 164.112 166.24 170.24 174.688 176.512 180.512 184.96 187.088 192.864 194.688 198.688 203.136 207.584 209.808 214.256 218.256\\\">2. Have courts, other than small-claims courts, solve Disputes.</text></g><g clip-path=\\\"url(#clip4-15)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 591.3953)\\\" x=\\\"0 4.448 6.672 8.8 14.136 18.584 21.248 25.248 29.696 31.824 36.272 40.272 42.4 46.848 48.976 53.424 56.088 57.912 61.912 66.36 68.584 73.032 75.16 79.608 81.832 84.056 88.504 91.168 95.616 100.064 104.064 106.192 110.64 115.088 119.536 123.984 126.648 131.096 132.92 135.048 139.496 142.16 144.288 146.112 150.56 152.688 157.136 159.264 161.928 166.376 170.824 173.488 177.936 181.936 186.384 190.832 193.056 197.504 199.728 201.552 205.552 210 212.128 216.128 220.576 225.024 229.472 233.472 235.296 237.52 241.52\\\">3. Serve as a private attorney general or in a* D E M O *tive capacity.</text></g><g clip-path=\\\"url(#clip4-15)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 581.3406)\\\" x=\\\"0 4.448 6.672 8.8 14.136 18.584 20.712 22.536 26.984 29.112 33.56 35.688 39.688 41.512 45.96 49.96 53.96 56.088 60.536 64.536 66.76 68.584 73.032 77.48\\\">4. Be in a class action.</text></g><clipPath id=\\\"clip4-16\\\"><path d=\\\"M 35 530 L 130 530 L 130 579 L 35 579 L 35 530 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-16)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 578.6609 L 129.35 578.6609 L 129.35 530.3875 L 35.45 530.3875 L 35.45 578.6609 z \\\"/><path clip-path=\\\"url(#clip4-16)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 576.6609 L 125.25 576.6609 L 125.25 558.5516 L 39.55 558.5516 L 39.55 576.6609 z \\\"/><path clip-path=\\\"url(#clip4-16)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 44.0152 576.6609 L 121.0152 576.6609 L 121.0152 566.6609 L 44.0152 566.6609 L 44.0152 576.6609 z \\\"/><g clip-path=\\\"url(#clip4-16)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 44.0152 569.2859)\\\" x=\\\"0 5.336 8 12.448 14.576 18.576 23.024 27.472 29.6 35.376 39.824 41.648 45.648 47.472 51.92 56.368 58.496 62.496 64.32 68.768 72.768\\\">Are you waiving class</text></g><path clip-path=\\\"url(#clip4-16)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 58.6109 567.6063 L 106.6109 567.6063 L 106.6109 557.6063 L 58.6109 557.6063 L 58.6109 567.6063 z \\\"/><g clip-path=\\\"url(#clip4-16)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 58.6109 560.2312)\\\" x=\\\"0 4.448 8.448 10.672 12.496 16.944 21.392 23.52 26.184 28.008 32.456 36.904 39.128 43.128\\\">action rights?</text></g><clipPath id=\\\"clip4-17\\\"><path d=\\\"M 129 530 L 206 530 L 206 579 L 129 579 L 129 530 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-17)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 159.5461 569.2859)\\\" x=\\\"0 5.336 9.784 13.784\\\">Yes.</text></g><clipPath id=\\\"clip4-18\\\"><path d=\\\"M 205 530 L 573 530 L 573 579 L 205 579 L 205 530 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 569.2859)\\\" x=\\\"0 5.7774 12 17.7774 23.5547 28.4414\\\">COURTS</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 243.6273 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 245.7523 569.2859)\\\" x=\\\"0 5.3359 11.1133\\\">AND</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.643 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 264.768 569.2859)\\\" x=\\\"0 5.3359 11.1133 16.4492 18.6719 23.5586 28.8945 34.6719\\\">ARBITERS</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 304.7758 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 306.9008 569.2859)\\\" x=\\\"0\\\">W</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 306.9008 567.9396 L 306.9008 567.9396 L 314.9008 567.9396 L 315.2341 567.9396 L 315.2341 567.2729 L 314.9008 567.2729 L 306.9008 567.2729 L 306.5674 567.2729 L 306.5674 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 314.4515 569.2859)\\\" x=\\\"0\\\">O</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 314.4515 567.9396 L 314.4515 567.9396 L 320.4515 567.9396 L 320.7849 567.9396 L 320.7849 567.2729 L 320.4515 567.2729 L 314.4515 567.2729 L 314.1182 567.2729 L 314.1182 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 320.6742 569.2859)\\\" x=\\\"0\\\">N</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 320.6742 567.9396 L 320.6742 567.9396 L 326.6742 567.9396 L 327.0075 567.9396 L 327.0075 567.2729 L 326.6742 567.2729 L 320.6742 567.2729 L 320.3409 567.2729 L 320.3409 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 326.4515 569.2859)\\\" x=\\\"0\\\">&apos;</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 326.4515 567.9396 L 326.4515 567.9396 L 328.4515 567.9396 L 328.7849 567.9396 L 328.7849 567.2729 L 328.4515 567.2729 L 326.4515 567.2729 L 326.1182 567.2729 L 326.1182 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 327.9789 569.2859)\\\" x=\\\"0\\\">T</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 327.9789 567.9396 L 327.9789 567.9396 L 332.9789 567.9396 L 333.3122 567.9396 L 333.3122 567.2729 L 332.9789 567.2729 L 327.9789 567.2729 L 327.6456 567.2729 L 327.6456 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 332.8656 569.2859)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 332.8656 567.9396 L 332.8656 567.9396 L 334.8656 567.9396 L 335.1989 567.9396 L 335.1989 567.2729 L 334.8656 567.2729 L 332.8656 567.2729 L 332.5323 567.2729 L 332.5323 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 334.9906 569.2859)\\\" x=\\\"0\\\">A</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 334.9906 567.9396 L 334.9906 567.9396 L 339.9906 567.9396 L 340.3239 567.9396 L 340.3239 567.2729 L 339.9906 567.2729 L 334.9906 567.2729 L 334.6573 567.2729 L 334.6573 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 340.3265 569.2859)\\\" x=\\\"0\\\">L</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 340.3265 567.9396 L 340.3265 567.9396 L 344.3265 567.9396 L 344.6599 567.9396 L 344.6599 567.2729 L 344.3265 567.2729 L 340.3265 567.2729 L 339.9932 567.2729 L 339.9932 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 344.7758 569.2859)\\\" x=\\\"0\\\">L</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 344.7758 567.9396 L 344.7758 567.9396 L 348.7758 567.9396 L 349.1091 567.9396 L 349.1091 567.2729 L 348.7758 567.2729 L 344.7758 567.2729 L 344.4424 567.2729 L 344.4424 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 349.225 569.2859)\\\" x=\\\"0\\\">O</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 349.225 567.9396 L 349.225 567.9396 L 355.225 567.9396 L 355.5583 567.9396 L 355.5583 567.2729 L 355.225 567.2729 L 349.225 567.2729 L 348.8917 567.2729 L 348.8917 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 355.4477 569.2859)\\\" x=\\\"0\\\">W</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 355.4477 567.9396 L 355.4477 567.9396 L 363.4477 567.9396 L 363.781 567.9396 L 363.781 567.2729 L 363.4477 567.2729 L 355.4477 567.2729 L 355.1143 567.2729 L 355.1143 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 362.9984 569.2859)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 362.9984 567.9396 L 362.9984 567.9396 L 364.9984 567.9396 L 365.3318 567.9396 L 365.3318 567.2729 L 364.9984 567.2729 L 362.9984 567.2729 L 362.6651 567.2729 L 362.6651 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 365.1234 569.2859)\\\" x=\\\"0\\\">C</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 365.1234 567.9396 L 365.1234 567.9396 L 371.1234 567.9396 L 371.4568 567.9396 L 371.4568 567.2729 L 371.1234 567.2729 L 365.1234 567.2729 L 364.7901 567.2729 L 364.7901 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 370.9008 569.2859)\\\" x=\\\"0\\\">L</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 370.9008 567.9396 L 370.9008 567.9396 L 374.9008 567.9396 L 375.2341 567.9396 L 375.2341 567.2729 L 374.9008 567.2729 L 370.9008 567.2729 L 370.5674 567.2729 L 370.5674 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 375.35 569.2859)\\\" x=\\\"0\\\">A</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 375.35 567.9396 L 375.35 567.9396 L 380.35 567.9396 L 380.6833 567.9396 L 380.6833 567.2729 L 380.35 567.2729 L 375.35 567.2729 L 375.0167 567.2729 L 375.0167 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 380.6859 569.2859)\\\" x=\\\"0\\\">S</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 380.6859 567.9396 L 380.6859 567.9396 L 385.6859 567.9396 L 386.0193 567.9396 L 386.0193 567.2729 L 385.6859 567.2729 L 380.6859 567.2729 L 380.3526 567.2729 L 380.3526 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 386.0219 569.2859)\\\" x=\\\"0\\\">S</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 386.0219 567.9396 L 386.0219 567.9396 L 391.0219 567.9396 L 391.3552 567.9396 L 391.3552 567.2729 L 391.0219 567.2729 L 386.0219 567.2729 L 385.6885 567.2729 L 385.6885 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 391.3578 569.2859)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 391.3578 567.9396 L 391.3578 567.9396 L 393.3578 567.9396 L 393.6911 567.9396 L 393.6911 567.2729 L 393.3578 567.2729 L 391.3578 567.2729 L 391.0245 567.2729 L 391.0245 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 393.4828 569.2859)\\\" x=\\\"0\\\">A</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 393.4828 567.9396 L 393.4828 567.9396 L 398.4828 567.9396 L 398.8161 567.9396 L 398.8161 567.2729 L 398.4828 567.2729 L 393.4828 567.2729 L 393.1495 567.2729 L 393.1495 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 398.8187 569.2859)\\\" x=\\\"0\\\">C</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 398.8187 567.9396 L 398.8187 567.9396 L 404.8187 567.9396 L 405.1521 567.9396 L 405.1521 567.2729 L 404.8187 567.2729 L 398.8187 567.2729 L 398.4854 567.2729 L 398.4854 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 404.5961 569.2859)\\\" x=\\\"0\\\">T</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 404.5961 567.9396 L 404.5961 567.9396 L 409.5961 567.9396 L 409.9294 567.9396 L 409.9294 567.2729 L 409.5961 567.2729 L 404.5961 567.2729 L 404.2628 567.2729 L 404.2628 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 409.4828 569.2859)\\\" x=\\\"0\\\">I</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 409.4828 567.9396 L 409.4828 567.9396 L 411.4828 567.9396 L 411.8161 567.9396 L 411.8161 567.2729 L 411.4828 567.2729 L 409.4828 567.2729 L 409.1495 567.2729 L 409.1495 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 411.7055 569.2859)\\\" x=\\\"0\\\">O</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 411.7055 567.9396 L 411.7055 567.9396 L 417.7055 567.9396 L 418.0388 567.9396 L 418.0388 567.2729 L 417.7055 567.2729 L 411.7055 567.2729 L 411.3721 567.2729 L 411.3721 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 417.9281 569.2859)\\\" x=\\\"0\\\">N</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 417.9281 567.9396 L 417.9281 567.9396 L 423.9281 567.9396 L 424.2614 567.9396 L 424.2614 567.2729 L 423.9281 567.2729 L 417.9281 567.2729 L 417.5948 567.2729 L 417.5948 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 423.7055 569.2859)\\\" x=\\\"0\\\">S</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 423.7055 567.9396 L 423.7055 567.9396 L 428.7055 567.9396 L 429.0388 567.9396 L 429.0388 567.2729 L 428.7055 567.2729 L 423.7055 567.2729 L 423.3721 567.2729 L 423.3721 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 429.0414 569.2859)\\\" x=\\\"0\\\">.</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 429.0414 567.9396 L 429.0414 567.9396 L 431.0414 567.9396 L 431.3747 567.9396 L 431.3747 567.2729 L 431.0414 567.2729 L 429.0414 567.2729 L 428.7081 567.2729 L 428.7081 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 431.264 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 433.389 569.2859)\\\" x=\\\"0 5.3359 9.7852\\\">You</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.6234 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 449.7484 569.2859)\\\" x=\\\"0\\\">w</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 449.7484 567.9396 L 449.7484 567.9396 L 455.7484 567.9396 L 456.0818 567.9396 L 456.0818 567.2729 L 455.7484 567.2729 L 449.7484 567.2729 L 449.4151 567.2729 L 449.4151 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 455.5258 569.2859)\\\" x=\\\"0\\\">a</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 455.5258 567.9396 L 455.5258 567.9396 L 459.5258 567.9396 L 459.8591 567.9396 L 459.8591 567.2729 L 459.5258 567.2729 L 455.5258 567.2729 L 455.1924 567.2729 L 455.1924 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 459.975 569.2859)\\\" x=\\\"0\\\">i</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 459.975 567.9396 L 459.975 567.9396 L 461.975 567.9396 L 462.3083 567.9396 L 462.3083 567.2729 L 461.975 567.2729 L 459.975 567.2729 L 459.6417 567.2729 L 459.6417 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 461.7992 569.2859)\\\" x=\\\"0\\\">v</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 461.7992 567.9396 L 461.7992 567.9396 L 465.7992 567.9396 L 466.1325 567.9396 L 466.1325 567.2729 L 465.7992 567.2729 L 461.7992 567.2729 L 461.4659 567.2729 L 461.4659 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 465.7992 569.2859)\\\" x=\\\"0\\\">e</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 465.7992 567.9396 L 465.7992 567.9396 L 469.7992 567.9396 L 470.1325 567.9396 L 470.1325 567.2729 L 469.7992 567.2729 L 465.7992 567.2729 L 465.4659 567.2729 L 465.4659 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 470.2484 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 472.3734 569.2859)\\\" x=\\\"0 4 8.4492 12.8984\\\">your</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 487.9359 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 490.0609 569.2859)\\\" x=\\\"0 2.6641 4.4883 8.9375 13.3867 15.6094\\\">rights</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.6703 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 511.7953 569.2859)\\\" x=\\\"0 2.2227\\\">to</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 518.4672 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 520.5922 569.2859)\\\" x=\\\"0 4.4492\\\">be</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 529.4906 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 531.6156 569.2859)\\\" x=\\\"0 1.8242\\\">in</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 537.889 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 540.014 569.2859)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 544.4633 569.2859)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 546.5883 569.2859)\\\" x=\\\"0\\\">c</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 546.5883 567.9396 L 546.5883 567.9396 L 550.5883 567.9396 L 550.9216 567.9396 L 550.9216 567.2729 L 550.5883 567.2729 L 546.5883 567.2729 L 546.2549 567.2729 L 546.2549 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 550.5883 569.2859)\\\" x=\\\"0\\\">l</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 550.5883 567.9396 L 550.5883 567.9396 L 552.5883 567.9396 L 552.9216 567.9396 L 552.9216 567.2729 L 552.5883 567.2729 L 550.5883 567.2729 L 550.2549 567.2729 L 550.2549 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 552.4125 569.2859)\\\" x=\\\"0\\\">a</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 552.4125 567.9396 L 552.4125 567.9396 L 556.4125 567.9396 L 556.7458 567.9396 L 556.7458 567.2729 L 556.4125 567.2729 L 552.4125 567.2729 L 552.0792 567.2729 L 552.0792 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 556.8617 569.2859)\\\" x=\\\"0\\\">s</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 556.8617 567.9396 L 556.8617 567.9396 L 560.8617 567.9396 L 561.1951 567.9396 L 561.1951 567.2729 L 560.8617 567.2729 L 556.8617 567.2729 L 556.5284 567.2729 L 556.5284 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 560.8617 569.2859)\\\" x=\\\"0\\\">s</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 560.8617 567.9396 L 560.8617 567.9396 L 564.8617 567.9396 L 565.1951 567.9396 L 565.1951 567.2729 L 564.8617 567.2729 L 560.8617 567.2729 L 560.5284 567.2729 L 560.5284 567.9396 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 560.2312)\\\" x=\\\"0\\\">a</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 209.85 558.8849 L 209.85 558.8849 L 213.85 558.8849 L 214.1833 558.8849 L 214.1833 558.2182 L 213.85 558.2182 L 209.85 558.2182 L 209.5167 558.2182 L 209.5167 558.8849 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 214.2992 560.2312)\\\" x=\\\"0\\\">c</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 214.2992 558.8849 L 214.2992 558.8849 L 218.2992 558.8849 L 218.6325 558.8849 L 218.6325 558.2182 L 218.2992 558.2182 L 214.2992 558.2182 L 213.9659 558.2182 L 213.9659 558.8849 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 218.2992 560.2312)\\\" x=\\\"0\\\">t</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 218.2992 558.8849 L 218.2992 558.8849 L 220.2992 558.8849 L 220.6325 558.8849 L 220.6325 558.2182 L 220.2992 558.2182 L 218.2992 558.2182 L 217.9659 558.2182 L 217.9659 558.8849 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 220.5219 560.2312)\\\" x=\\\"0\\\">i</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 220.5219 558.8849 L 220.5219 558.8849 L 222.5219 558.8849 L 222.8552 558.8849 L 222.8552 558.2182 L 222.5219 558.2182 L 220.5219 558.2182 L 220.1885 558.2182 L 220.1885 558.8849 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 222.3461 560.2312)\\\" x=\\\"0\\\">o</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 222.3461 558.8849 L 222.3461 558.8849 L 226.3461 558.8849 L 226.6794 558.8849 L 226.6794 558.2182 L 226.3461 558.2182 L 222.3461 558.2182 L 222.0128 558.2182 L 222.0128 558.8849 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 226.7953 560.2312)\\\" x=\\\"0\\\">n</text></g><path clip-path=\\\"url(#clip4-18)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 226.7953 558.8849 L 226.7953 558.8849 L 230.7953 558.8849 L 231.1286 558.8849 L 231.1286 558.2182 L 230.7953 558.2182 L 226.7953 558.2182 L 226.462 558.2182 L 226.462 558.8849 z \\\"/><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 231.2445 560.2312)\\\" x=\\\"0\\\">,</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.4672 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 235.5922 560.2312)\\\" x=\\\"0 4.4492\\\">as</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 244.0414 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 246.1664 560.2312)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 250.6156 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 252.7406 560.2312)\\\" x=\\\"0 2.6641 7.1133 11.5625 14.2266 18.6758 22.6758 27.125 31.5742 33.7969 38.2461 40.4688 42.293 46.293\\\">representative</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 303.4828 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 305.6078 560.2312)\\\" x=\\\"0 4.4492 8.8984\\\">and</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 318.9555 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 321.0805 560.2312)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 325.5297 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 327.6547 560.2312)\\\" x=\\\"0 6.6641 11.1133 17.7773 22.2266 26.6758 29.3398\\\">member.</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.2172 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 361.3422 560.2312)\\\" x=\\\"0 6.2227 10.6719 12.4961\\\">Only</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 377.8383 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 379.9633 560.2312)\\\" x=\\\"0 1.8242 6.2734 10.7227 12.5469 16.5469 18.3711 22.8203 27.2695 31.7188\\\">individual</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 413.5062 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 415.6312 560.2312)\\\" x=\\\"0 4.4492 7.1133 11.5625 13.3867 15.6094 18.2734 22.7227 24.9453 26.7695 31.2188 35.668\\\">arbitration,</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 453.5219 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 455.6469 560.2312)\\\" x=\\\"0 4.4492\\\">or</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 462.7601 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 464.8851 560.2312)\\\" x=\\\"0 4 10.6641 15.1133 16.9375 18.7617 21.4258 25.4258 27.25 31.6992 33.5234 40.1875\\\">small-claims</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.0727 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 511.1977 560.2312)\\\" x=\\\"0 4 8.4492 12.8984 15.5625 17.7851 21.7851\\\">courts,</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 535.2055 560.2312)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 537.3305 560.2312)\\\" x=\\\"0 5.7773 7.6016 9.4258\\\">will</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 551.1766)\\\" x=\\\"0 4 8.4492 10.2734 14.2734\\\">solve</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 228.5726 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 230.6976 551.1766)\\\" x=\\\"0 5.7773 7.6016 11.6016 16.0508 20.5 22.7227 27.1719 31.1719\\\">Disputes.</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 264.0922 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 266.2172 551.1766)\\\" x=\\\"0 5.3359 9.7852\\\">You</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.4515 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 282.5765 551.1766)\\\" x=\\\"0 5.7774 10.2266 12.0508 16.0508\\\">waive</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 303.0765 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 304.9015 551.1766)\\\" x=\\\"0 4 8.4492 12.8984\\\">your</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 320.464 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 322.289 551.1766)\\\" x=\\\"0 2.6641 4.4883 8.9375 13.3867\\\">right</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 337.8984 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 339.7234 551.1766)\\\" x=\\\"0 2.2227\\\">to</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 346.3953 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 348.2203 551.1766)\\\" x=\\\"0 4.4492 8.8984 12.8984\\\">have</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 365.568 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 367.393 551.1766)\\\" x=\\\"0 2.6641 7.1133 11.5625 14.2266 18.6758 22.6758 27.125 31.5742 33.7969 38.2461 40.4687 42.293 46.293\\\">representative</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 418.1351 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 419.9601 551.1766)\\\" x=\\\"0 4 5.8242 10.2734 12.0977 18.7617 22.7617\\\">claims.</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 444.9445 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 446.7695 551.1766)\\\" x=\\\"0 5.7774 10.2266 12.0508 16.5 20.5\\\">Unless</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 471.2695 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 473.0945 551.1766)\\\" x=\\\"0 2.6641 7.1133 11.1133 15.5625 18.2266 22.2266 26.6758\\\">reversed</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 504.2195 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 506.0445 551.1766)\\\" x=\\\"0 4.4492\\\">on</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 514.943 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 516.768 551.1766)\\\" x=\\\"0 4.4492 8.8984 13.3477 17.7969 22.2461 24.0703\\\">appeal,</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 543.0609 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 544.8859 551.1766)\\\" x=\\\"0 1.8242\\\">if</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 548.9328 551.1766)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 550.7578 551.1766)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 542.1219)\\\" x=\\\"0 4 8.4492 12.8984 15.5625\\\">court</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 227.6351 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 229.4601 542.1219)\\\" x=\\\"0 1.8242 6.2734 10.2734 14.7227 16.5469 18.3711 22.8203 27.2695 29.4922 33.9414\\\">invalidates</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 267.4015 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 269.2265 542.1219)\\\" x=\\\"0 2.2227 6.6719 8.4961\\\">this</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.7226 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 283.5477 542.1219)\\\" x=\\\"0 5.7773 10.2266 12.0508 16.0508 20.5 23.1641\\\">waiver,</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.9344 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 310.7594 542.1219)\\\" x=\\\"0 2.2226 6.6719 11.1211\\\">then</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 326.3297 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 328.4547 542.1219)\\\" x=\\\"0 2.2227 6.6719\\\">the</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 339.5758 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 341.4008 542.1219)\\\" x=\\\"0 4.4492 8.8984 11.5625 16.0117 20.4609 27.125 31.5742 36.0234\\\">agreement</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 379.6469 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 381.4719 542.1219)\\\" x=\\\"0 2.2227\\\">to</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.1437 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 389.9687 542.1219)\\\" x=\\\"0 4.4492 7.1133 11.5625 13.3867 15.6094 18.2734 22.7227 24.9453\\\">arbitrate</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.3633 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 421.1883 542.1219)\\\" x=\\\"0 5.7774 7.6016 9.4258\\\">will</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 432.4383 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 434.2633 542.1219)\\\" x=\\\"0 4.4492\\\">be</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 443.1617 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 444.9867 542.1219)\\\" x=\\\"0 4 8.4492 10.2734 14.7227\\\">void,</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 461.932 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 463.757 542.1219)\\\" x=\\\"0 4.4492 8.8984\\\">and</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 477.1047 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 478.9297 542.1219)\\\" x=\\\"0 5.7773 7.6016 11.6016 16.0508 20.5 22.7227 27.1719\\\">Disputes</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 510.1016 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 511.9266 542.1219)\\\" x=\\\"0 5.7773 7.6016 9.4258\\\">will</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 523.1766 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 525.0016 542.1219)\\\" x=\\\"0 4.4492\\\">be</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 533.9 542.1219)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 535.725 542.1219)\\\" x=\\\"0 2.6641 7.1133 11.1133 15.5625 17.3867 21.3867 25.8359\\\">resolved</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 533.0672)\\\" x=\\\"0 4.4492\\\">by</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 218.2992 533.0672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 220.1242 533.0672)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 224.5734 533.0672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 226.3984 533.0672)\\\" x=\\\"0 1.8242 6.2734 10.7227 15.1719 19.6211\\\">judge,</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 248.2422 533.0672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 250.0672 533.0672)\\\" x=\\\"0 4.4492 8.8984\\\">but</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 261.1883 533.0672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 263.0133 533.0672)\\\" x=\\\"0 4.4492 8.8984\\\">not</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 274.1344 533.0672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 275.9594 533.0672)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.4086 533.0672)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 282.2336 533.0672)\\\" x=\\\"0 1.8242 6.2734 8.9375 12.9375\\\">jury.</text></g><clipPath id=\\\"clip4-19\\\"><path d=\\\"M 35 491 L 130 491 L 130 531 L 35 531 L 35 491 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-19)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 530.3875 L 129.35 530.3875 L 129.35 491.1688 L 35.45 491.1688 L 35.45 530.3875 z \\\"/><path clip-path=\\\"url(#clip4-19)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 528.3875 L 125.25 528.3875 L 125.25 519.3328 L 39.55 519.3328 L 39.55 528.3875 z \\\"/><path clip-path=\\\"url(#clip4-19)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 49.9664 528.3875 L 114.9664 528.3875 L 114.9664 518.3875 L 49.9664 518.3875 L 49.9664 528.3875 z \\\"/><g clip-path=\\\"url(#clip4-19)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 49.9664 521.0125)\\\" x=\\\"0 7.552 12 16.448 18.672 20.8 22.624 27.072 32.848 34.976 39.424 43.872 48.32 50.144 51.968 56.416 60.416\\\">What law applies?</text></g><clipPath id=\\\"clip4-20\\\"><path d=\\\"M 129 491 L 206 491 L 206 531 L 129 531 L 129 491 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-20)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.009 521.0125)\\\" x=\\\"0 4.888 9.336 13.784 15.912 20.8 25.248 29.696 34.144 36.808 41.256\\\">The Federal</text></g><g clip-path=\\\"url(#clip4-20)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 142.4308 511.9578)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 19.16 23.608 25.832 27.656 32.104 36.552 38.68 44.016 48.016\\\">Arbitration Act</text></g><g clip-path=\\\"url(#clip4-20)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 153.1555 502.9031)\\\" x=\\\"0 2.664 5.504 10.392 15.728 21.064 23.904 26.568\\\">(&quot;FAA&quot;).</text></g><clipPath id=\\\"clip4-21\\\"><path d=\\\"M 205 491 L 573 491 L 573 531 L 205 531 L 205 491 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 521.0125)\\\" x=\\\"0 4.888 9.336 11.16\\\">This</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.0101 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 228.9725 521.0125)\\\" x=\\\"0 2.224 4.888 9.336 13.784 17.784 22.232 26.232 28.456 30.28 34.728\\\">transaction</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 268.1522 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 272.1145 521.0125)\\\" x=\\\"0 1.824 6.272 10.272 14.72 16.544 20.544 24.992\\\">involves</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 301.1106 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 305.0729 521.0125)\\\" x=\\\"0 1.824 6.272 8.496 12.944 15.608 19.608 21.832 26.28 28.504\\\">interstate</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.026 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 341.9884 521.0125)\\\" x=\\\"0 4 8.448 15.112 21.776 26.224 28.888 32.888 37.336\\\">commerce.</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 381.5509 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 385.5132 521.0125)\\\" x=\\\"0 4.888 9.336 13.784 17.784\\\">Thus,</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 405.521 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 409.4834 521.0125)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 420.6045 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 424.5668 521.0125)\\\" x=\\\"0 4.888 10.224\\\">FAA</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 440.1254 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 444.0877 521.0125)\\\" x=\\\"0 4.448 8.896 12.896 17.344 20.008 24.456 28.456\\\">governs.</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.7713 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 478.7336 521.0125)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 483.179 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 487.1413 521.0125)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 491.5905 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 495.5528 521.0125)\\\" x=\\\"0 4 8.448 12.896 15.56\\\">court</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 513.338 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 517.3003 521.0125)\\\" x=\\\"0 2.224 4.048 8.496 12.944\\\">finds</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 534.2456 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 538.208 521.0125)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.3291 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 553.2914 521.0125)\\\" x=\\\"0 4.888 10.224\\\">FAA</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 521.0125)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 511.9578)\\\" x=\\\"0 4.448 8.896 13.344 17.344 21.792 23.32\\\">doesn&apos;t</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 235.3969 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 237.5853 511.9578)\\\" x=\\\"0 4.448 8.896 13.344 15.168 19.168\\\">apply,</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 258.9798 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 261.1682 511.9578)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 274.5159 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 276.7043 511.9578)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 287.8254 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 290.0138 511.9578)\\\" x=\\\"0 2.224 4.048 8.496 12.944 14.768 19.216\\\">finding</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 313.6818 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 315.8702 511.9578)\\\" x=\\\"0 4 8.448 12.896 14.424\\\">can&apos;t</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 332.5186 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 334.7071 511.9578)\\\" x=\\\"0 4.448\\\">be</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 343.6055 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 345.7939 511.9578)\\\" x=\\\"0 4.448 8.896 13.344 17.792 22.24 24.064 28.512 32.96\\\">appealed,</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.9853 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 383.1737 511.9578)\\\" x=\\\"0 2.224 6.672 11.12\\\">then</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 398.7441 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 400.9325 511.9578)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 412.0536 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 414.242 511.9578)\\\" x=\\\"0 4 6.224 10.672 12.896\\\">state</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 431.5857 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 433.7742 511.9578)\\\" x=\\\"0 1.824 6.272\\\">law</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 445.825 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 448.0134 511.9578)\\\" x=\\\"0 5.776 10.224 14.672 17.336\\\">where</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 469.8024 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 471.9908 511.9578)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.8893 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 487.0777 511.9578)\\\" x=\\\"0 5.776 10.224 12.888\\\">were</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 504.4175 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 506.606 511.9578)\\\" x=\\\"0 5.776 10.224 14.672\\\">when</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 525.731 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 527.9194 511.9578)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 540.8178 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 543.0062 511.9578)\\\" x=\\\"0 4 5.824 10.272 14.72 19.168 23.616\\\">signed,</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 511.9578)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 502.9031)\\\" x=\\\"0 4.448 8.896 12.896 17.344 20.008 24.456 28.456\\\">governs.</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 240.5336 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 243.9142 502.9031)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.6993 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 261.0799 502.9031)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 284.6893 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 288.0699 502.9031)\\\" x=\\\"0 6.664 11.112 15.112\\\">must</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 305.4058 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 308.7864 502.9031)\\\" x=\\\"0 4.448 8.896 13.344 15.168\\\">apply</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 327.9582 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 331.3388 502.9031)\\\" x=\\\"0 4 8.448 12.896 16.896 19.12 23.568 28.016 30.24 32.064 36.064\\\">substantive</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.8545 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 375.235 502.9031)\\\" x=\\\"0 1.824 6.272\\\">law</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 387.2858 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 390.6664 502.9031)\\\" x=\\\"0 4 8.448 12.896 16.896 18.72 22.72 24.944 29.392 33.84\\\">consistent</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 426.7328 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 430.1134 502.9031)\\\" x=\\\"0 5.776 7.6 9.824\\\">with</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 444.3868 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 447.7674 502.9031)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 458.8885 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 462.2691 502.9031)\\\" x=\\\"0 4.888 10.224 15.56\\\">FAA.</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 480.0503 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 483.4309 502.9031)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 497.2161 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 500.5966 502.9031)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 524.206 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 527.5866 502.9031)\\\" x=\\\"0 6.664 11.112 15.112\\\">must</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 544.9225 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 548.3031 502.9031)\\\" x=\\\"0 2.224 6.672 8.496 10.32 14.768\\\">follow</text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 502.9031)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 493.8484)\\\" x=\\\"0 4 6.224 10.672 12.896 17.344 19.568 24.016 28.016 30.144 34.592 36.816 38.944 40.768 42.592 49.256 51.08 53.304 57.752 59.976 61.8 66.248 70.696 72.824 77.272 81.72 86.168 88.296 92.744 95.408 97.232 101.232 103.056 104.88 109.328 113.776 118.224 120.352 124.352 126.176 130.624 132.448 139.112 143.112\\\">statutes of limitation and privilege claims.</text></g><clipPath id=\\\"clip4-22\\\"><path d=\\\"M 35 433 L 130 433 L 130 492 L 35 492 L 35 433 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-22)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 491.1688 L 129.35 491.1688 L 129.35 433.8406 L 35.45 433.8406 L 35.45 491.1688 z \\\"/><path clip-path=\\\"url(#clip4-22)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 489.1688 L 125.25 489.1688 L 125.25 471.0594 L 39.55 471.0594 L 39.55 489.1688 z \\\"/><path clip-path=\\\"url(#clip4-22)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 45.443 489.1688 L 119.443 489.1688 L 119.443 479.1688 L 45.443 479.1688 L 45.443 489.1688 z \\\"/><g clip-path=\\\"url(#clip4-22)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 45.443 481.7937)\\\" x=\\\"0 5.776 10.224 14.672 16.8 19.024 23.472 27.92 30.048 34.496 38.944 41.608 43.832 45.656 50.104 54.104 56.232 58.456 61.12 65.12 67.248 69.472\\\">Can the * D E M O * to</text></g><path clip-path=\\\"url(#clip4-22)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 46.6363 480.1141 L 118.6363 480.1141 L 118.6363 470.1141 L 46.6363 470.1141 L 46.6363 480.1141 z \\\"/><g clip-path=\\\"url(#clip4-22)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 46.6363 472.7391)\\\" x=\\\"0 4 8.448 10.272 14.272 18.72 20.848 26.624 28.448 32.448 36.896 41.344 43.568 48.016 52.016 54.144 56.368 58.192 60.856 64.856 67.08\\\">solve Disputes first?</text></g><clipPath id=\\\"clip4-23\\\"><path d=\\\"M 129 433 L 206 433 L 206 492 L 129 492 L 129 433 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-23)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 159.5461 481.7937)\\\" x=\\\"0 5.336 9.784 13.784\\\">Yes.</text></g><clipPath id=\\\"clip4-24\\\"><path d=\\\"M 205 433 L 573 433 L 573 492 L 205 492 L 205 433 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 481.7937)\\\" x=\\\"0 7.552\\\">We</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 221.85 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 224.092 481.7937)\\\" x=\\\"0 4 8.448\\\">can</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 236.9904 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 239.2324 481.7937)\\\" x=\\\"0 2.224 4.888\\\">try</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 248.1191 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 250.3611 481.7937)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.033 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 259.275 481.7937)\\\" x=\\\"0 4 8.448 10.272 14.272\\\">solve</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 277.9976 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 280.2396 481.7937)\\\" x=\\\"0 5.776 7.6 11.6 16.048 20.496 22.72 27.168\\\">Disputes</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 311.4115 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 313.6535 481.7937)\\\" x=\\\"0 1.824\\\">if</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 317.7004 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 319.9424 481.7937)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 332.8408 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 335.0828 481.7937)\\\" x=\\\"0 4 8.448 10.272\\\">call</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 347.1805 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 349.4224 481.7937)\\\" x=\\\"0 4.448\\\">us</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 357.8717 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 360.1137 481.7937)\\\" x=\\\"0 4.448\\\">at</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 366.7855 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 369.0275 481.7937)\\\" x=\\\"0 2.664 7.112 11.56 16.008\\\">(100)</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 387.7033 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 389.9453 481.7937)\\\" x=\\\"0 4.448 8.896 13.344 16.008 20.456 24.904 29.352 33.8\\\">000-0006.</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 425.9766 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 428.2185 481.7937)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 432.6639 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 434.9058 481.7937)\\\" x=\\\"0 2.224 6.672 8.496\\\">this</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.4019 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 449.6439 481.7937)\\\" x=\\\"0 4.448 8.896 13.344 17.344 21.792 23.32\\\">doesn&apos;t</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 475.1908 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 477.4328 481.7937)\\\" x=\\\"0 4 8.448 10.272 14.272\\\">solve</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 496.1555 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 498.3974 481.7937)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.5185 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 511.7605 481.7937)\\\" x=\\\"0 5.776 7.6 11.6 16.048 20.496 22.72 27.168\\\">Dispute,</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 541.1551 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 543.3971 481.7937)\\\" x=\\\"0 6.664 11.112 12.936\\\">mail</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 558.1588 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 560.4008 481.7937)\\\" x=\\\"0 4.448\\\">us</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 481.7937)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 472.7391)\\\" x=\\\"0 5.776 8.44 10.264 12.488 14.712 19.16\\\">written</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.4594 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 235.6405 472.7391)\\\" x=\\\"0 4.448 8.896 11.12 12.944 16.944 21.392\\\">notice,</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.2577 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 261.4388 472.7391)\\\" x=\\\"0 5.776 7.6 9.824 14.272 16.096\\\">within</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.9857 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 284.1668 472.7391)\\\" x=\\\"0 4.448 8.896\\\">100</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 297.5145 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 299.6956 472.7391)\\\" x=\\\"0 4.448 8.896 12.896\\\">days</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 316.594 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 318.7752 472.7391)\\\" x=\\\"0 4.448\\\">of</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 325.447 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 327.6282 472.7391)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.7493 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 340.9304 472.7391)\\\" x=\\\"0 5.776 7.6 11.6 16.048 20.496 22.72\\\">Dispute</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 368.1023 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 370.2834 472.7391)\\\" x=\\\"0 4.448 8.896 11.12 15.568\\\">date.</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.0763 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 390.2575 472.7391)\\\" x=\\\"0 2.224\\\">In</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 396.9293 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 399.1105 472.7391)\\\" x=\\\"0 4 8.448 12.896\\\">your</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 414.673 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 416.8541 472.7391)\\\" x=\\\"0 4.448 8.896 11.12 12.944 16.944 21.392\\\">notice,</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 440.4713 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 442.6524 472.7391)\\\" x=\\\"0 2.224 6.672 8.496\\\">tell</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 452.9727 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 455.1539 472.7391)\\\" x=\\\"0 4.448\\\">us</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 463.6031 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 465.7842 472.7391)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 476.9053 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 479.0864 472.7391)\\\" x=\\\"0 4.448 8.896 11.12 15.568 17.392 19.216\\\">details</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 502.3052 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 504.4863 472.7391)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 517.834 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 520.0151 472.7391)\\\" x=\\\"0 4.448 8.896\\\">how</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 534.6909 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 536.872 472.7391)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.7704 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 551.9515 472.7391)\\\" x=\\\"0 5.776 10.224 14.672\\\">want</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 472.7391)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 463.6844)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 216.5219 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 219.4635 463.6844)\\\" x=\\\"0 4 8.448 10.272 14.272\\\">solve</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.1861 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 241.1277 463.6844)\\\" x=\\\"0 1.824 4.048\\\">it.</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.3973 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 250.3389 463.6844)\\\" x=\\\"0 7.552\\\">We</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.3389 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 265.2805 463.6844)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.5305 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 279.4721 463.6844)\\\" x=\\\"0 2.224 4.888\\\">try</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 288.3588 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 291.3004 463.6844)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 297.9723 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 300.9139 463.6844)\\\" x=\\\"0 4 8.448 10.272 14.272\\\">solve</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.6366 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 322.5782 463.6844)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 333.6993 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 336.6409 463.6844)\\\" x=\\\"0 5.776 7.6 11.6 16.048 20.496 22.72 27.168\\\">Dispute.</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 366.0354 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 368.977 463.6844)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 373.4224 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 376.364 463.6844)\\\" x=\\\"0 5.776\\\">we</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 386.5905 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 389.5321 463.6844)\\\" x=\\\"0 6.664 11.112 15.112\\\">make</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 409.0947 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 412.0363 463.6844)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 416.4855 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 419.4271 463.6844)\\\" x=\\\"0 5.776 8.44 10.264 12.488 14.712 19.16\\\">written</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 443.0365 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 445.9781 463.6844)\\\" x=\\\"0 4.448 6.672 8.896 13.344\\\">offer</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 461.9859 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 464.9275 463.6844)\\\" x=\\\"0 2.664 5.504 10.84 15.288 17.512 19.736 21.56 26.008 32.672 37.12 41.568\\\">(&quot;Settlement</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 508.7205 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 511.6621 463.6844)\\\" x=\\\"0 6.224 8.448 10.672 15.12 17.784 20.624 23.288\\\">Offer&quot;),</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 537.1699 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 540.1115 463.6844)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.0099 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 555.9515 463.6844)\\\" x=\\\"0 4 8.448\\\">can</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 463.6844)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 454.6297)\\\" x=\\\"0 2.664 7.112 8.936 13.384 17.384\\\">reject</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 229.4594 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 233.7138 454.6297)\\\" x=\\\"0 1.824\\\">it</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 237.7606 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 242.015 454.6297)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 255.3627 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 259.6171 454.6297)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 29.392\\\">arbitrate.</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.2343 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 295.4887 454.6297)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 299.934 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 304.1884 454.6297)\\\" x=\\\"0 5.776\\\">we</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 314.4149 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 318.6693 454.6297)\\\" x=\\\"0 4.448 8.896 13.344 14.872\\\">don&apos;t</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.767 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 340.0214 454.6297)\\\" x=\\\"0 4 8.448 10.272 14.272\\\">solve</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 358.744 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 362.9984 454.6297)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 374.1195 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 378.3739 454.6297)\\\" x=\\\"0 5.776 7.6 11.6 16.048 20.496 22.72 27.168\\\">Dispute,</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 407.7684 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 412.0228 454.6297)\\\" x=\\\"0 4.448 6.272 8.496 12.944 17.392\\\">either</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 432.0814 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 436.3358 454.6297)\\\" x=\\\"0 4.448 8.896 11.56 13.784\\\">party</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.121 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 458.3754 454.6297)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 473.4887 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 477.7431 454.6297)\\\" x=\\\"0 4 6.224 10.672 13.336\\\">start</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 493.3016 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 497.556 454.6297)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 26.768 31.216 35.664\\\">arbitration.</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 535.4467 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 539.7011 454.6297)\\\" x=\\\"0 4.888\\\">To</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.037 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 553.2914 454.6297)\\\" x=\\\"0 4 6.224 10.672 13.336\\\">start</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 454.6297)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 445.575)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 26.768 31.216 35.664\\\">arbitration,</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.7406 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 250.0233 445.575)\\\" x=\\\"0 4 8.448 12.896 15.12 19.568 23.568\\\">contact</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.8162 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 278.0989 445.575)\\\" x=\\\"0 4.448\\\">an</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 286.9973 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 289.28 445.575)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.8893 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 315.172 445.575)\\\" x=\\\"0 4.448\\\">or</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 322.2853 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 324.5679 445.575)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 26.768 31.216\\\">arbitration</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 360.2359 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 362.5185 445.575)\\\" x=\\\"0 4.448 7.112 11.56 16.008\\\">group</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 382.9795 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 385.2621 445.575)\\\" x=\\\"0 1.824 3.648 7.648 9.872 14.32 18.768\\\">listed.</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 406.2543 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 408.5369 445.575)\\\" x=\\\"0 5.776\\\">No</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 418.7635 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 421.0461 445.575)\\\" x=\\\"0 4.448 8.896 11.56 13.784\\\">party</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 438.8313 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 441.1139 445.575)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 452.3639 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 454.6466 445.575)\\\" x=\\\"0 4.448 6.272 10.272 14.272 16.096 20.544 24.544\\\">disclose</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 483.6427 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 485.9253 445.575)\\\" x=\\\"0 4 8.448 10.672 12.896 14.72 19.168 25.832 30.28 34.728\\\">settlement</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 522.8785 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 525.1611 445.575)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456 24.456 28.904 30.728\\\">proposals</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.8955 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 562.1781 445.575)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 445.575)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 436.5203)\\\" x=\\\"0 2.224 6.672 11.12 13.248 18.584 21.248 25.696 27.52 29.744 34.192 36.856 38.984 43.432 47.88 50.544 52.368 56.816 61.264 63.392 67.84 70.504 74.952 76.776 79 81.664 86.112 88.336 90.16 94.608 99.056\\\">the Arbiter during arbitration.</text></g><clipPath id=\\\"clip4-25\\\"><path d=\\\"M 35 412 L 130 412 L 130 434 L 35 434 L 35 412 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-25)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 433.8406 L 129.35 433.8406 L 129.35 412.7313 L 35.45 412.7313 L 35.45 433.8406 z \\\"/><path clip-path=\\\"url(#clip4-25)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 431.8406 L 125.25 431.8406 L 125.25 413.7313 L 39.55 413.7313 L 39.55 431.8406 z \\\"/><path clip-path=\\\"url(#clip4-25)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 40.0543 431.8406 L 127.0543 431.8406 L 127.0543 421.8406 L 40.0543 421.8406 L 40.0543 431.8406 z \\\"/><g clip-path=\\\"url(#clip4-25)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.0543 424.4656)\\\" x=\\\"0 5.776 10.224 16 18.128 22.128 26.576 31.024 35.472 37.296 41.744 43.872 47.872 52.32 56.768 58.896 62.896 67.344 71.792 74.016 78.464 82.464\\\">How should you contact</text></g><path clip-path=\\\"url(#clip4-25)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 75.9508 422.7859 L 88.9508 422.7859 L 88.9508 412.7859 L 75.9508 412.7859 L 75.9508 422.7859 z \\\"/><g clip-path=\\\"url(#clip4-25)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 75.9508 415.4109)\\\" x=\\\"0 4.448 8.448\\\">us?</text></g><clipPath id=\\\"clip4-26\\\"><path d=\\\"M 129 412 L 206 412 L 206 434 L 129 434 L 129 412 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-26)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 153.3273 424.4656)\\\" x=\\\"0 5.336 9.336 11.464 18.128 22.576 24.4 26.224\\\">By mail.</text></g><clipPath id=\\\"clip4-27\\\"><path d=\\\"M 205 412 L 573 412 L 573 434 L 205 434 L 205 412 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 424.4656)\\\" x=\\\"0 5.336 9.784 14.232\\\">Send</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 228.5336 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 231.2172 424.4656)\\\" x=\\\"0 6.664 11.112 12.936\\\">mail</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.9789 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 248.6625 424.4656)\\\" x=\\\"0 2.224 6.672\\\">to:</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.557 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 260.2406 424.4656)\\\" x=\\\"0 5.336 9.784 14.232\\\">Snap</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 278.9242 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 281.6078 424.4656)\\\" x=\\\"0 5.776 10.664\\\">RTO</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 298.4945 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 301.1781 424.4656)\\\" x=\\\"0 4.448 8.896\\\">LLC</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 315.8539 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 318.5375 424.4656)\\\" x=\\\"0 5.336 7.56 9.784 14.232 18.68 20.904 22.728 27.176 31.624\\\">Attention:</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 352.3851 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 355.0687 424.4656)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 19.16 23.608 25.832 27.656 32.104 36.552\\\">Arbitration.</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.8461 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 396.5297 424.4656)\\\" x=\\\"0 5.336 7.56 13.784\\\">P.O.</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 412.5336 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 415.2172 424.4656)\\\" x=\\\"0 5.336 9.784\\\">Box</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 429.0023 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 431.6859 424.4656)\\\" x=\\\"0 4.448 8.896 13.344 17.792 22.24\\\">26561,</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.1547 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 458.8383 424.4656)\\\" x=\\\"0 5.336 9.784 11.608\\\">Salt</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 472.6703 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 475.3539 424.4656)\\\" x=\\\"0 4.448 8.896 12.896\\\">Lake</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 492.7015 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 495.3851 424.4656)\\\" x=\\\"0 5.776 7.6 9.824 13.824\\\">City,</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 511.432 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 514.1156 424.4656)\\\" x=\\\"0 5.776\\\">UT</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 524.7797 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 527.4633 424.4656)\\\" x=\\\"0 4.448 8.896 13.344 17.792 22.24\\\">84126.</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.932 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 554.6156 424.4656)\\\" x=\\\"0 5.336 9.784\\\">You</text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 424.4656)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 415.4109)\\\" x=\\\"0 4 8.448 12.896 15.024 19.024 23.472 25.296 27.12 29.248 33.696 37.696 39.824 44.272 46.936 49.064 53.512 57.512 61.96 64.088 68.088 72.536 75.2 77.424 79.248 81.472 83.296 87.744 92.192 94.32 100.984 105.432 107.256 109.08 111.208 113.432 117.88 120.008 124.008 128.456 132.904 135.128 136.952 139.616 146.28 148.408 151.072 155.52 159.52 163.968 165.792 170.24 172.464\\\">can call us or use certified mail to confirm receipt.</text></g><clipPath id=\\\"clip4-28\\\"><path d=\\\"M 35 373 L 130 373 L 130 413 L 35 413 L 35 373 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-28)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 412.7313 L 129.35 412.7313 L 129.35 373.5125 L 35.45 373.5125 L 35.45 412.7313 z \\\"/><path clip-path=\\\"url(#clip4-28)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 410.7313 L 125.25 410.7313 L 125.25 392.6219 L 39.55 392.6219 L 39.55 410.7313 z \\\"/><path clip-path=\\\"url(#clip4-28)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 41.9508 410.7313 L 122.9508 410.7313 L 122.9508 400.7313 L 41.9508 400.7313 L 41.9508 410.7313 z \\\"/><g clip-path=\\\"url(#clip4-28)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 41.9508 403.3562)\\\" x=\\\"0 5.776 10.224 14.672 16.8 20.8 27.464 31.912 33.736 35.56 38.224 42.224 44.048 48.496 50.32 56.984 60.984 63.112 67.112 71.56 76.008 78.672\\\">Can small-claims court</text></g><path clip-path=\\\"url(#clip4-28)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 43.3219 401.6766 L 122.3219 401.6766 L 122.3219 391.6766 L 43.3219 391.6766 L 43.3219 401.6766 z \\\"/><g clip-path=\\\"url(#clip4-28)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 43.3219 394.3016)\\\" x=\\\"0 4 8.448 10.272 14.272 18.72 20.848 24.848 29.296 35.96 40.408 42.536 48.312 50.136 54.136 58.584 63.032 65.256 69.704 73.704\\\">solve s* D E M O *s?</text></g><clipPath id=\\\"clip4-29\\\"><path d=\\\"M 129 373 L 206 373 L 206 413 L 129 413 L 129 373 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-29)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 159.5461 403.3562)\\\" x=\\\"0 5.336 9.784 13.784\\\">Yes.</text></g><clipPath id=\\\"clip4-30\\\"><path d=\\\"M 205 373 L 573 373 L 573 413 L 205 413 L 205 373 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 403.3562)\\\" x=\\\"0 5.3359 9.7852 13.7852\\\">Each</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 228.0844 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 229.9094 403.3562)\\\" x=\\\"0 4.4492 8.8984 11.5625 13.7851\\\">party</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.6945 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 249.5195 403.3562)\\\" x=\\\"0 4.4492 8.8984\\\">has</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.418 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 264.243 403.3562)\\\" x=\\\"0 2.2227 6.6719\\\">the</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.3641 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 277.1891 403.3562)\\\" x=\\\"0 2.6641 4.4883 8.9375 13.3867\\\">right</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 292.7984 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 294.6234 403.3562)\\\" x=\\\"0 2.2227\\\">to</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 301.2953 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 303.1203 403.3562)\\\" x=\\\"0 4.4492 7.1133 11.5625 13.3867 15.6094 18.2734 22.7227 24.9453 29.3945\\\">arbitrate,</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 334.7375 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 336.5625 403.3562)\\\" x=\\\"0 4.4492\\\">or</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 343.6758 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 345.5008 403.3562)\\\" x=\\\"0 2.2227\\\">to</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 352.1727 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 353.9976 403.3562)\\\" x=\\\"0 4.4492\\\">go</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 362.8961 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 364.7211 403.3562)\\\" x=\\\"0 2.2227\\\">to</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.393 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 373.218 403.3562)\\\" x=\\\"0 4 10.6641 15.1133 16.9375 18.7617 21.4258 25.4258 27.25 31.6992 33.5234 40.1875\\\">small-claims</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 417.4055 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 419.2305 403.3562)\\\" x=\\\"0 4 8.4492 12.8984 15.5625\\\">court</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 437.0156 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 438.8406 403.3562)\\\" x=\\\"0 1.8242\\\">if</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 442.8875 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 444.7125 403.3562)\\\" x=\\\"0 2.2227 6.6719\\\">the</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 455.8336 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 457.6586 403.3562)\\\" x=\\\"0 4 10.6641 15.1133 16.9375 18.7617 21.4258 25.4258 27.25 31.6992 33.5234 40.1875\\\">small-claims</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.8461 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 503.6711 403.3562)\\\" x=\\\"0 4 8.4492 12.8984 15.5625\\\">court</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.4562 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 523.2812 403.3562)\\\" x=\\\"0 4.4492 8.8984\\\">has</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 536.1797 403.3562)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 538.0047 403.3562)\\\" x=\\\"0 2.2227 6.6719\\\">the</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 394.3016)\\\" x=\\\"0 4.4492 8.8984 14.6758 19.125\\\">power</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 231.639 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 233.464 394.3016)\\\" x=\\\"0 2.2227\\\">to</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 240.1359 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 241.9609 394.3016)\\\" x=\\\"0 4.4492 8.8984 13.3477\\\">hear</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.9726 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 260.0976 394.3016)\\\" x=\\\"0 2.2226 6.6719\\\">the</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 271.2187 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 273.3437 394.3016)\\\" x=\\\"0 5.7773 7.6016 11.6016 16.0508 20.5 22.7227 27.1719\\\">Dispute.</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.7383 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 304.8633 394.3016)\\\" x=\\\"0 5.3359 8 12.4492 14.2734 16.4961 19.1602 23.6094 25.832 27.6562 32.1055\\\">Arbitration</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 341.418 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 343.543 394.3016)\\\" x=\\\"0 5.7773 7.6016 9.4258\\\">will</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 354.793 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 356.918 394.3016)\\\" x=\\\"0 4 8.4492 10.2734 14.2734\\\">solve</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.6406 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 377.7656 394.3016)\\\" x=\\\"0 4.4492 6.2734\\\">all</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 385.8633 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 387.9883 394.3016)\\\" x=\\\"0 5.7774 7.6016 11.6016 16.0508 20.5 22.7227 27.1719\\\">Disputes</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 419.1601 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 421.2851 394.3016)\\\" x=\\\"0 2.2227 6.6719 11.1211\\\">that</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.6289 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 436.7539 394.3016)\\\" x=\\\"0 2.2226 6.6719\\\">the</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.875 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 450 394.3016)\\\" x=\\\"0 4 10.6641 15.1133 16.9375 18.7617 21.4258 25.4258 27.25 31.6992 33.5234 40.1875\\\">small-claims</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 494.1875 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 496.3125 394.3016)\\\" x=\\\"0 4 8.4492 12.8984 15.5625\\\">court</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 514.0976 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 516.2226 394.3016)\\\" x=\\\"0 4.4492 8.8984 13.3477\\\">does</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 533.5703 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 535.6953 394.3016)\\\" x=\\\"0 4.4492 8.8984\\\">not</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 546.8164 394.3016)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 548.9414 394.3016)\\\" x=\\\"0 4.4492 8.8984 12.8984\\\">have</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 385.2469)\\\" x=\\\"0 2.2227 6.6719\\\">the</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 220.9711 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 223.0961 385.2469)\\\" x=\\\"0 4.4492 8.8984 14.6758 19.125\\\">power</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 244.8852 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 247.0101 385.2469)\\\" x=\\\"0 2.2227\\\">to</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 253.682 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 255.807 385.2469)\\\" x=\\\"0 4.4492 8.8984 13.3477 16.0117\\\">hear.</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 274.0414 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 276.1664 385.2469)\\\" x=\\\"0 2.2226\\\">If</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.6117 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 282.7367 385.2469)\\\" x=\\\"0 2.2227 6.6719 11.1211 13.7852\\\">there</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 300.9711 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 303.0961 385.2469)\\\" x=\\\"0 1.8242\\\">is</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.9203 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 311.0453 385.2469)\\\" x=\\\"0 4.4492\\\">an</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.9437 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 322.0687 385.2469)\\\" x=\\\"0 4.4492 8.8984 13.3477 17.7969 22.2461\\\">appeal</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 346.139 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 348.264 385.2469)\\\" x=\\\"0 2.2227 4.8867 9.3359\\\">from</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 364.264 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 366.389 385.2469)\\\" x=\\\"0 4 10.6641 15.1133 16.9375 18.7617 21.4258 25.4258 27.25 31.6992 33.5234 40.1875\\\">small-claims</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 410.5765 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 412.7015 385.2469)\\\" x=\\\"0 4 8.4492 12.8984 15.5625 17.7852\\\">court,</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 432.7094 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 434.8344 385.2469)\\\" x=\\\"0 4.4492\\\">or</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 441.9477 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 444.0727 385.2469)\\\" x=\\\"0 1.8242\\\">if</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 448.1195 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 450.2445 385.2469)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.6937 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 456.8187 385.2469)\\\" x=\\\"0 5.7773 7.6016 11.6016 16.0508 20.5 22.7227\\\">Dispute</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 483.9906 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 486.1156 385.2469)\\\" x=\\\"0 4 8.4492 12.8984 17.3476 21.7969 26.2461\\\">changes</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 516.3617 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 518.4867 385.2469)\\\" x=\\\"0 4\\\">so</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.9359 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 529.0609 385.2469)\\\" x=\\\"0 2.2227 6.6719 11.1211\\\">that</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 542.4047 385.2469)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 544.5297 385.2469)\\\" x=\\\"0 2.2227 6.6719\\\">the</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 376.1922)\\\" x=\\\"0 4 10.6641 15.1133 16.9375 18.7617 21.4258 25.4258 27.25 31.6992 33.5234 40.1875\\\">small-claims</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 254.0375 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 256.1625 376.1922)\\\" x=\\\"0 4 8.4492 12.8984 15.5625\\\">court</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 273.9477 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 276.0727 376.1922)\\\" x=\\\"0 1.8242 6.2734 10.2734 14.7226\\\">loses</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 294.7953 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 296.9203 376.1922)\\\" x=\\\"0 2.2227 6.6719\\\">the</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.0414 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 310.1664 376.1922)\\\" x=\\\"0 4.4492 8.8984 14.6758 19.125\\\">power</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 331.9555 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 333.7805 376.1922)\\\" x=\\\"0 2.2227\\\">to</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 340.4523 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 342.2773 376.1922)\\\" x=\\\"0 4.4492 8.8984 13.3477\\\">hear</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 358.289 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 360.1141 376.1922)\\\" x=\\\"0 1.8242 4.0469\\\">it,</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 366.3836 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 368.2086 376.1922)\\\" x=\\\"0 2.2226 6.6719 11.1211\\\">then</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.7789 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 385.6039 376.1922)\\\" x=\\\"0 2.2227 6.6719\\\">the</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 396.725 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 398.55 376.1922)\\\" x=\\\"0 5.7773 7.6016 11.6016 16.0508 20.5 22.7227\\\">Dispute</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 425.7219 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 427.5469 376.1922)\\\" x=\\\"0 5.7773 7.6016 9.4258\\\">will</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 438.7969 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 440.6219 376.1922)\\\" x=\\\"0 4.4492 8.8984 10.7227\\\">only</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 455.3445 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 457.1695 376.1922)\\\" x=\\\"0 4.4492\\\">be</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.068 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 467.893 376.1922)\\\" x=\\\"0 4.4492 8.8984 13.3477 16.0117\\\">heard</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 488.3539 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 490.1789 376.1922)\\\" x=\\\"0 4.4492\\\">by</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 498.6281 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 500.4531 376.1922)\\\" x=\\\"0 4.4492\\\">an</text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.3516 376.1922)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 511.1766 376.1922)\\\" x=\\\"0 5.3359 8 12.4492 14.2734 16.4961 20.9453 23.6094\\\">Arbiter.</text></g><clipPath id=\\\"clip4-31\\\"><path d=\\\"M 35 343 L 130 343 L 130 374 L 35 374 L 35 343 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-31)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 373.5125 L 129.35 373.5125 L 129.35 343.3484 L 35.45 343.3484 L 35.45 373.5125 z \\\"/><path clip-path=\\\"url(#clip4-31)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 371.5125 L 125.25 371.5125 L 125.25 362.4578 L 39.55 362.4578 L 39.55 371.5125 z \\\"/><path clip-path=\\\"url(#clip4-31)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 41.5875 371.5125 L 123.5875 371.5125 L 123.5875 361.5125 L 41.5875 361.5125 L 41.5875 371.5125 z \\\"/><g clip-path=\\\"url(#clip4-31)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 41.5875 364.1375)\\\" x=\\\"0 5.776 10.224 12.352 16.8 19.024 23.472 27.92 30.584 32.712 37.16 41.608 43.832 45.656 50.104 54.552 58.552 60.68 65.128 69.128 70.952 74.952 77.176\\\">Do other options exist?</text></g><clipPath id=\\\"clip4-32\\\"><path d=\\\"M 129 343 L 206 343 L 206 374 L 129 374 L 129 343 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-32)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 159.5461 364.1375)\\\" x=\\\"0 5.336 9.784 13.784\\\">Yes.</text></g><clipPath id=\\\"clip4-33\\\"><path d=\\\"M 205 343 L 573 343 L 573 374 L 205 374 L 205 343 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 364.1375)\\\" x=\\\"0 5.336 9.784 12.008\\\">Both</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 226.307 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 228.8021 364.1375)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056\\\">parties</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 252.8607 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 255.3557 364.1375)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 270.469 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 272.964 364.1375)\\\" x=\\\"0 4.448 8.448\\\">use</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 285.8625 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 288.3575 364.1375)\\\" x=\\\"0 1.824 6.272 12.048 14.272 18.72\\\">lawful</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.9044 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 311.3995 364.1375)\\\" x=\\\"0 4 8.448 10.272 12.496 15.16 19.608 24.056 25.88\\\">self-help</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 341.7315 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 344.2265 364.1375)\\\" x=\\\"0 2.664 7.112 13.776 18.224 22.672 24.496 28.944 32.944\\\">remedies.</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 379.3984 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 381.8935 364.1375)\\\" x=\\\"0 4.888 9.336 11.16\\\">This</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 397.0536 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 399.5487 364.1375)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44\\\">includes</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 428.994 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 431.489 364.1375)\\\" x=\\\"0 4 8.448 10.672 13.336 17.784 20.008\\\">set-off</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 453.7195 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 456.2146 364.1375)\\\" x=\\\"0 4.448\\\">or</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 463.3279 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 465.8229 364.1375)\\\" x=\\\"0 2.664 7.112 11.56 16.008 20.008 24.008 28.456 32.456 36.456 38.28 42.728\\\">repossession</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 513.0065 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 515.5015 364.1375)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 528.8492 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 531.3443 364.1375)\\\" x=\\\"0 4 8.448 10.272\\\">sale</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 546.0669 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 548.562 364.1375)\\\" x=\\\"0 4.448\\\">of</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 555.2339 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 557.7289 364.1375)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 364.1375)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 355.0828)\\\" x=\\\"0 5.336 8 12.448 16.896 21.344 24.008 26.232 30.232\\\">Property.</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 242.307 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 245.9017 355.0828)\\\" x=\\\"0 5.336 9.784 12.008\\\">Both</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.3587 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 265.9534 355.0828)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056\\\">parties</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.0119 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 293.6066 355.0828)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 308.7199 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 312.3145 355.0828)\\\" x=\\\"0 4 8.448 12.896\\\">seek</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.213 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 332.8076 355.0828)\\\" x=\\\"0 2.664 7.112 13.776 18.224 22.672 24.496 28.944\\\">remedies</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 365.7568 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 369.3515 355.0828)\\\" x=\\\"0 5.776 10.224 12.048 16.048\\\">which</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 389.8515 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 393.4461 355.0828)\\\" x=\\\"0 4.448 8.896 13.344 14.872\\\">don&apos;t</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 410.5438 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 414.1384 355.0828)\\\" x=\\\"0 4 5.824 10.272 12.096\\\">claim</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 432.9002 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 436.4948 355.0828)\\\" x=\\\"0 6.664 11.112 15.56 20.008\\\">money</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 460.5065 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 464.1012 355.0828)\\\" x=\\\"0 4.448 8.896 15.56 20.008 24.456 28.904 32.904\\\">damages.</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.234 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 502.8287 355.0828)\\\" x=\\\"0 4.888 9.336 11.16\\\">This</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 517.9888 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 521.5835 355.0828)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44\\\">includes</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 551.0288 355.0828)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 554.6234 355.0828)\\\" x=\\\"0 4.448 7.112 11.56\\\">pre-</text></g><g clip-path=\\\"url(#clip4-33)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 346.0281)\\\" x=\\\"0 1.824 6.272 10.72 15.168 21.832 26.28 30.728 32.952 35.08 39.08 43.528 45.352 49.352 53.8 56.464 60.912 63.136 65.264 67.088 71.536 73.36 77.808 82.256 86.256 88.48 90.304 94.752 99.2 103.2 105.424 107.552 112 114.664 116.792 121.24 125.688 130.136 131.96 134.184 138.632 143.08 144.904 149.352 151.48 154.144 158.592 160.416 162.24 166.688 168.912\\\">judgment seizure, injunctions, or equitable relief.</text></g><clipPath id=\\\"clip4-34\\\"><path d=\\\"M 35 295 L 130 295 L 130 344 L 35 344 L 35 295 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-34)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.45 343.3484 L 129.35 343.3484 L 129.35 295.075 L 35.45 295.075 L 35.45 343.3484 z \\\"/><path clip-path=\\\"url(#clip4-34)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.55 341.3484 L 125.25 341.3484 L 125.25 323.2391 L 39.55 323.2391 L 39.55 341.3484 z \\\"/><path clip-path=\\\"url(#clip4-34)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 55.0406 341.3484 L 110.0406 341.3484 L 110.0406 331.3484 L 55.0406 331.3484 L 55.0406 341.3484 z \\\"/><g clip-path=\\\"url(#clip4-34)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 55.0406 333.9734)\\\" x=\\\"0 7.552 9.376 11.2 13.024 15.152 17.376 21.824 23.648 27.648 29.776 35.552 37.376 41.824 46.272 50.272\\\">Will this Clause</text></g><path clip-path=\\\"url(#clip4-34)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 47.3375 332.2938 L 118.3375 332.2938 L 118.3375 322.2938 L 47.3375 322.2938 L 47.3375 332.2938 z \\\"/><g clip-path=\\\"url(#clip4-34)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 47.3375 324.9187)\\\" x=\\\"0 4 8.448 12.896 15.12 16.944 21.392 25.84 30.288 32.416 34.64 39.088 41.216 45.664 50.112 54.112 58.56 61.224 65.672\\\">continue to govern?</text></g><clipPath id=\\\"clip4-35\\\"><path d=\\\"M 129 295 L 206 295 L 206 344 L 129 344 L 129 295 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-35)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 146.8976 333.9734)\\\" x=\\\"0 5.336 9.784 13.784 16.008 18.136 22.584 27.032 28.856 33.304 37.304\\\">Yes, unless</text></g><g clip-path=\\\"url(#clip4-35)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 135.7785 324.9187)\\\" x=\\\"0 4.448 6.672 11.12 15.568 18.232 24.008 25.832 29.832 34.28 36.408 40.856 45.304 47.968 52.416 56.864 61.312\\\">otherwise agreed.</text></g><clipPath id=\\\"clip4-36\\\"><path d=\\\"M 205 295 L 573 295 L 573 344 L 205 344 L 205 295 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 333.9734)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 223.6351 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 227.574 333.9734)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496\\\">Clause</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 252.5233 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 256.4622 333.9734)\\\" x=\\\"0 4 6.224 10.672 14.672\\\">stays</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.134 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 279.0729 333.9734)\\\" x=\\\"0 4.448 6.672 8.896 13.344 17.344 19.568 21.392 25.392 29.84\\\">effective,</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 311.1354 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 315.0743 333.9734)\\\" x=\\\"0 4.448 8.896 10.72 15.168 19.168\\\">unless</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.2462 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 342.1851 333.9734)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 353.3062 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 357.2451 333.9734)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056\\\">parties</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 381.3037 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 385.2426 333.9734)\\\" x=\\\"0 4 5.824 10.272\\\">sign</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 399.9652 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 403.9041 333.9734)\\\" x=\\\"0 4.448\\\">an</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 412.8026 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 416.7415 333.9734)\\\" x=\\\"0 4.448 8.896 11.56 16.008 20.456 27.12 31.568 36.016\\\">agreement</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.9875 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 458.9264 333.9734)\\\" x=\\\"0 4 6.224 10.672 12.896 14.72 19.168\\\">stating</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 482.5436 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 486.4825 333.9734)\\\" x=\\\"0 1.824\\\">it</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 490.5294 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 494.4683 333.9734)\\\" x=\\\"0 4.448 8.896 13.344 17.344 21.792 23.32 25.544\\\">doesn&apos;t.</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 522.2378 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 526.1767 333.9734)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 539.9619 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 543.9008 333.9734)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496\\\">Clause</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 333.9734)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 324.9187)\\\" x=\\\"0 4.448 8.896 12.896 17.344 20.008 24.456\\\">governs</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.3109 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 241.2057 324.9187)\\\" x=\\\"0 1.824\\\">if</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.2526 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 248.1473 324.9187)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 261.0458 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 263.9405 324.9187)\\\" x=\\\"0 2.664 7.112 11.112 15.112 16.936 21.384\\\">rescind</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 289.7765 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 292.6712 324.9187)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 303.7923 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 306.6871 324.9187)\\\" x=\\\"0 2.224 4.888 9.336 13.784 17.784 22.232 26.232 28.456 30.28 34.728 39.176\\\">transaction.</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.0894 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 350.9842 324.9187)\\\" x=\\\"0 2.224\\\">It</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.4295 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 358.3243 324.9187)\\\" x=\\\"0 4.448 8.896 12.896 17.344 20.008 24.456\\\">governs</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 386.7852 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 389.68 324.9187)\\\" x=\\\"0 1.824\\\">if</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.7268 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 396.6216 324.9187)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 409.52 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 412.4148 324.9187)\\\" x=\\\"0 4.448 8.896 11.12 15.568 20.016 21.84 24.064\\\">default,</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 438.7038 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 441.5986 324.9187)\\\" x=\\\"0 2.664 7.112 11.56 16.008 21.784\\\">renew,</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 465.6103 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 468.5051 324.9187)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456 24.456\\\">prepay,</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 495.1887 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 498.0834 324.9187)\\\" x=\\\"0 4.448\\\">or</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 505.1967 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 508.0915 324.9187)\\\" x=\\\"0 4.448 8.896 12.896\\\">pay.</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 523.2126 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 526.1073 324.9187)\\\" x=\\\"0 2.224\\\">It</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 530.5527 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 533.4474 324.9187)\\\" x=\\\"0 4.448 8.896 12.896 17.344 20.008 24.456\\\">governs</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 561.9084 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 564.8031 324.9187)\\\" x=\\\"0 1.824\\\">if</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 324.9187)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 315.8641)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 222.7484 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 227.0199 315.8641)\\\" x=\\\"0 2.224 6.672 9.336 16 17.824 22.272 26.72 28.944 33.392\\\">terminate,</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.6371 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 266.9086 315.8641)\\\" x=\\\"0 1.824\\\">if</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 270.9555 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 275.2269 315.8641)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 288.1254 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 292.3969 315.8641)\\\" x=\\\"0 2.664 7.112 8.936 13.384 17.384 19.608 24.056 26.28 30.728\\\">reinstate,</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 325.35 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 329.6215 315.8641)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 342.9691 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 347.2406 315.8641)\\\" x=\\\"0 1.824\\\">if</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.2875 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 355.559 315.8641)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 368.4574 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 372.7289 315.8641)\\\" x=\\\"0 2.664 7.112 9.336 13.784 16.448\\\">return</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.6273 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 397.8988 315.8641)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 409.0199 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 413.2914 315.8641)\\\" x=\\\"0 5.336 8 12.448 16.896 21.344 24.008 26.232 30.232\\\">Property.</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 445.7484 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 450.0199 315.8641)\\\" x=\\\"0 2.224\\\">It</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.4652 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 458.7367 315.8641)\\\" x=\\\"0 4.448 8.896 12.896 17.344 20.008 24.456\\\">governs</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 487.1977 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 491.4691 315.8641)\\\" x=\\\"0 1.824\\\">if</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 495.516 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 499.7875 315.8641)\\\" x=\\\"0 4 8.448 12.896\\\">your</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 515.35 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 519.6215 315.8641)\\\" x=\\\"0 5.336 9.784 12.448 16.896 21.344 28.008 32.456 36.904\\\">Agreement</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 558.7543 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 563.0258 315.8641)\\\" x=\\\"0 1.824\\\">is</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 315.8641)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.85 306.8094)\\\" x=\\\"0 1.824 8.488 12.936 17.384 21.384 23.608 28.056\\\">impacted</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 242.3578 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 248.4078 306.8094)\\\" x=\\\"0 4.448\\\">by</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.857 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 262.907 306.8094)\\\" x=\\\"0 4.448 8.896 13.344 17.344 20.008 24.456 28.904 31.128 35.128 39.128\\\">bankruptcy.</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 304.2625 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 310.3125 306.8094)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 324.0976 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 330.1477 306.8094)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496\\\">Clause</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.0969 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 361.1469 306.8094)\\\" x=\\\"0 2.664 7.112 13.776 18.224 20.048 24.496\\\">remains</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 389.6469 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 395.6969 306.8094)\\\" x=\\\"0 4.448 6.672 8.896 13.344 17.344 19.568 21.392 25.392 29.84\\\">effective,</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 427.7594 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 433.8094 306.8094)\\\" x=\\\"0 4.448 8.896 12.896 17.344 19.168 21.392\\\">despite</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 459.6531 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 465.7031 306.8094)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 470.1523 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 476.2023 306.8094)\\\" x=\\\"0 2.224 4.888 9.336 13.784 17.784 22.232 26.232 28.456 30.28 34.728 39.176 40.704\\\">transaction&apos;s</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 520.9094 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 526.9594 306.8094)\\\" x=\\\"0 2.224 6.672 9.336 16 17.824 22.272 26.72 28.944 30.768 35.216 39.664\\\">termination,</text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.85 306.8094)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-36)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.85 297.7547)\\\" x=\\\"0 4.448 11.112 15.56 20.008 24.456 31.12 35.568 40.016 42.24 44.464 46.592 51.04 55.04 59.488 61.312 63.976 68.424 70.648 72.472 76.92 81.368 83.592 85.72 90.168 92.832 94.96 99.408 103.856 106.52 108.744 113.192 115.856 122.52 126.968 131.416 135.416 139.864\\\">amendment, expiration, or performance.</text></g><clipPath id=\\\"clip4-37\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 770.2 L 129.85 770.2 L 129.85 769.2 L 34.95 769.2 L 34.95 770.2 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 769.2 L 35.95 769.2 L 35.95 749.0906 L 34.95 749.0906 L 34.95 769.2 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 770.2 L 206.25 770.2 L 206.25 769.2 L 129.85 769.2 L 129.85 770.2 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 769.2 L 129.85 769.2 L 129.85 749.0906 L 128.85 749.0906 L 128.85 769.2 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 770.2 L 573.45 770.2 L 573.45 769.2 L 206.25 769.2 L 206.25 770.2 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 769.2 L 573.45 769.2 L 573.45 749.0906 L 572.45 749.0906 L 572.45 769.2 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 769.2 L 206.25 769.2 L 206.25 749.0906 L 205.25 749.0906 L 205.25 769.2 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 749.0906 L 129.85 749.0906 L 129.85 748.0906 L 34.95 748.0906 L 34.95 749.0906 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 748.0906 L 35.95 748.0906 L 35.95 727.9813 L 34.95 727.9813 L 34.95 748.0906 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 749.0906 L 206.25 749.0906 L 206.25 748.0906 L 129.85 748.0906 L 129.85 749.0906 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 748.0906 L 129.85 748.0906 L 129.85 727.9813 L 128.85 727.9813 L 128.85 748.0906 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 749.0906 L 573.45 749.0906 L 573.45 748.0906 L 206.25 748.0906 L 206.25 749.0906 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 748.0906 L 573.45 748.0906 L 573.45 727.9813 L 572.45 727.9813 L 572.45 748.0906 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 748.0906 L 206.25 748.0906 L 206.25 727.9813 L 205.25 727.9813 L 205.25 748.0906 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 727.9813 L 129.85 727.9813 L 129.85 726.9813 L 34.95 726.9813 L 34.95 727.9813 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 726.9813 L 35.95 726.9813 L 35.95 706.8719 L 34.95 706.8719 L 34.95 726.9813 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 727.9813 L 206.25 727.9813 L 206.25 726.9813 L 129.85 726.9813 L 129.85 727.9813 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 726.9813 L 129.85 726.9813 L 129.85 706.8719 L 128.85 706.8719 L 128.85 726.9813 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 727.9813 L 573.45 727.9813 L 573.45 726.9813 L 206.25 726.9813 L 206.25 727.9813 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 726.9813 L 573.45 726.9813 L 573.45 706.8719 L 572.45 706.8719 L 572.45 726.9813 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 726.9813 L 206.25 726.9813 L 206.25 706.8719 L 205.25 706.8719 L 205.25 726.9813 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 706.8719 L 129.85 706.8719 L 129.85 705.8719 L 34.95 705.8719 L 34.95 706.8719 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 705.8719 L 35.95 705.8719 L 35.95 631.4344 L 34.95 631.4344 L 34.95 705.8719 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 706.8719 L 206.25 706.8719 L 206.25 705.8719 L 129.85 705.8719 L 129.85 706.8719 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 705.8719 L 129.85 705.8719 L 129.85 631.4344 L 128.85 631.4344 L 128.85 705.8719 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 706.8719 L 573.45 706.8719 L 573.45 705.8719 L 206.25 705.8719 L 206.25 706.8719 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 705.8719 L 573.45 705.8719 L 573.45 631.4344 L 572.45 631.4344 L 572.45 705.8719 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 705.8719 L 206.25 705.8719 L 206.25 631.4344 L 205.25 631.4344 L 205.25 705.8719 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 631.4344 L 129.85 631.4344 L 129.85 630.4344 L 34.95 630.4344 L 34.95 631.4344 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 630.4344 L 35.95 630.4344 L 35.95 579.1609 L 34.95 579.1609 L 34.95 630.4344 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 631.4344 L 206.25 631.4344 L 206.25 630.4344 L 129.85 630.4344 L 129.85 631.4344 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 630.4344 L 129.85 630.4344 L 129.85 579.1609 L 128.85 579.1609 L 128.85 630.4344 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 631.4344 L 573.45 631.4344 L 573.45 630.4344 L 206.25 630.4344 L 206.25 631.4344 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 630.4344 L 573.45 630.4344 L 573.45 579.1609 L 572.45 579.1609 L 572.45 630.4344 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 630.4344 L 206.25 630.4344 L 206.25 579.1609 L 205.25 579.1609 L 205.25 630.4344 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 579.1609 L 129.85 579.1609 L 129.85 578.1609 L 34.95 578.1609 L 34.95 579.1609 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 578.1609 L 35.95 578.1609 L 35.95 530.8875 L 34.95 530.8875 L 34.95 578.1609 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 579.1609 L 206.25 579.1609 L 206.25 578.1609 L 129.85 578.1609 L 129.85 579.1609 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 578.1609 L 129.85 578.1609 L 129.85 530.8875 L 128.85 530.8875 L 128.85 578.1609 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 579.1609 L 573.45 579.1609 L 573.45 578.1609 L 206.25 578.1609 L 206.25 579.1609 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 578.1609 L 573.45 578.1609 L 573.45 530.8875 L 572.45 530.8875 L 572.45 578.1609 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 578.1609 L 206.25 578.1609 L 206.25 530.8875 L 205.25 530.8875 L 205.25 578.1609 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 530.8875 L 129.85 530.8875 L 129.85 529.8875 L 34.95 529.8875 L 34.95 530.8875 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 529.8875 L 35.95 529.8875 L 35.95 491.6688 L 34.95 491.6688 L 34.95 529.8875 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 530.8875 L 206.25 530.8875 L 206.25 529.8875 L 129.85 529.8875 L 129.85 530.8875 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 529.8875 L 129.85 529.8875 L 129.85 491.6688 L 128.85 491.6688 L 128.85 529.8875 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 530.8875 L 573.45 530.8875 L 573.45 529.8875 L 206.25 529.8875 L 206.25 530.8875 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 529.8875 L 573.45 529.8875 L 573.45 491.6688 L 572.45 491.6688 L 572.45 529.8875 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 529.8875 L 206.25 529.8875 L 206.25 491.6688 L 205.25 491.6688 L 205.25 529.8875 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 491.6688 L 129.85 491.6688 L 129.85 490.6688 L 34.95 490.6688 L 34.95 491.6688 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 490.6688 L 35.95 490.6688 L 35.95 434.3406 L 34.95 434.3406 L 34.95 490.6688 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 491.6688 L 206.25 491.6688 L 206.25 490.6688 L 129.85 490.6688 L 129.85 491.6688 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 490.6688 L 129.85 490.6688 L 129.85 434.3406 L 128.85 434.3406 L 128.85 490.6688 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 491.6688 L 573.45 491.6688 L 573.45 490.6688 L 206.25 490.6688 L 206.25 491.6688 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 490.6688 L 573.45 490.6688 L 573.45 434.3406 L 572.45 434.3406 L 572.45 490.6688 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 490.6688 L 206.25 490.6688 L 206.25 434.3406 L 205.25 434.3406 L 205.25 490.6688 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 434.3406 L 129.85 434.3406 L 129.85 433.3406 L 34.95 433.3406 L 34.95 434.3406 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 433.3406 L 35.95 433.3406 L 35.95 413.2313 L 34.95 413.2313 L 34.95 433.3406 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 434.3406 L 206.25 434.3406 L 206.25 433.3406 L 129.85 433.3406 L 129.85 434.3406 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 433.3406 L 129.85 433.3406 L 129.85 413.2313 L 128.85 413.2313 L 128.85 433.3406 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 434.3406 L 573.45 434.3406 L 573.45 433.3406 L 206.25 433.3406 L 206.25 434.3406 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 433.3406 L 573.45 433.3406 L 573.45 413.2313 L 572.45 413.2313 L 572.45 433.3406 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 433.3406 L 206.25 433.3406 L 206.25 413.2313 L 205.25 413.2313 L 205.25 433.3406 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 413.2313 L 129.85 413.2313 L 129.85 412.2313 L 34.95 412.2313 L 34.95 413.2313 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 412.2313 L 35.95 412.2313 L 35.95 374.0125 L 34.95 374.0125 L 34.95 412.2313 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 413.2313 L 206.25 413.2313 L 206.25 412.2313 L 129.85 412.2313 L 129.85 413.2313 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 412.2313 L 129.85 412.2313 L 129.85 374.0125 L 128.85 374.0125 L 128.85 412.2313 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 413.2313 L 573.45 413.2313 L 573.45 412.2313 L 206.25 412.2313 L 206.25 413.2313 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 412.2313 L 573.45 412.2313 L 573.45 374.0125 L 572.45 374.0125 L 572.45 412.2313 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 412.2313 L 206.25 412.2313 L 206.25 374.0125 L 205.25 374.0125 L 205.25 412.2313 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 374.0125 L 129.85 374.0125 L 129.85 373.0125 L 34.95 373.0125 L 34.95 374.0125 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 373.0125 L 35.95 373.0125 L 35.95 343.8484 L 34.95 343.8484 L 34.95 373.0125 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 374.0125 L 206.25 374.0125 L 206.25 373.0125 L 129.85 373.0125 L 129.85 374.0125 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 373.0125 L 129.85 373.0125 L 129.85 343.8484 L 128.85 343.8484 L 128.85 373.0125 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 374.0125 L 573.45 374.0125 L 573.45 373.0125 L 206.25 373.0125 L 206.25 374.0125 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 373.0125 L 573.45 373.0125 L 573.45 343.8484 L 572.45 343.8484 L 572.45 373.0125 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 373.0125 L 206.25 373.0125 L 206.25 343.8484 L 205.25 343.8484 L 205.25 373.0125 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 343.8484 L 129.85 343.8484 L 129.85 342.8484 L 34.95 342.8484 L 34.95 343.8484 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 295.575 L 129.85 295.575 L 129.85 294.575 L 34.95 294.575 L 34.95 295.575 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.95 342.8484 L 35.95 342.8484 L 35.95 295.575 L 34.95 295.575 L 34.95 342.8484 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 343.8484 L 206.25 343.8484 L 206.25 342.8484 L 129.85 342.8484 L 129.85 343.8484 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 129.85 295.575 L 206.25 295.575 L 206.25 294.575 L 129.85 294.575 L 129.85 295.575 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.85 342.8484 L 129.85 342.8484 L 129.85 295.575 L 128.85 295.575 L 128.85 342.8484 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 343.8484 L 573.45 343.8484 L 573.45 342.8484 L 206.25 342.8484 L 206.25 343.8484 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206.25 295.575 L 573.45 295.575 L 573.45 294.575 L 206.25 294.575 L 206.25 295.575 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.45 342.8484 L 573.45 342.8484 L 573.45 295.575 L 572.45 295.575 L 572.45 342.8484 z \\\"/><path clip-path=\\\"url(#clip4-37)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205.25 342.8484 L 206.25 342.8484 L 206.25 295.575 L 205.25 295.575 L 205.25 342.8484 z \\\"/><g clip-path=\\\"url(#clip4-37)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 286.1385 282.8562)\\\" x=\\\"0 6.67 10 15.56 20.56 26.12 31.12\\\">Process</text></g><clipPath id=\\\"clip4-38\\\"><path d=\\\"M 35 214 L 128 214 L 128 272 L 35 272 L 35 214 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-38)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.2 271.652 L 127.6 271.652 L 127.6 214.3238 L 35.2 214.3238 L 35.2 271.652 z \\\"/><path clip-path=\\\"url(#clip4-38)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.3 269.652 L 123.5 269.652 L 123.5 251.5426 L 39.3 251.5426 L 39.3 269.652 z \\\"/><path clip-path=\\\"url(#clip4-38)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 44.7652 269.652 L 118.7652 269.652 L 118.7652 259.652 L 44.7652 259.652 L 44.7652 269.652 z \\\"/><g clip-path=\\\"url(#clip4-38)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 44.7652 262.277)\\\" x=\\\"0 5.776 10.224 16 18.128 22.576 27.024 31.472 35.472 37.6 42.048 44.712 49.16 50.984 53.208 55.872 60.32 62.544 64.368 68.816\\\">How does arbitration</text></g><path clip-path=\\\"url(#clip4-38)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 71.3961 260.5973 L 92.3961 260.5973 L 92.3961 250.5973 L 71.3961 250.5973 L 71.3961 260.5973 z \\\"/><g clip-path=\\\"url(#clip4-38)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 71.3961 253.2223)\\\" x=\\\"0 4 6.224 10.672 13.336 15.56\\\">start?</text></g><clipPath id=\\\"clip4-39\\\"><path d=\\\"M 127 214 L 206 214 L 206 272 L 127 272 L 127 214 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-39)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 137.6496 262.277)\\\" x=\\\"0 6.664 11.112 12.936 14.76 16.584 21.032 25.48 27.608 32.056 34.184 38.632 43.08 45.304 47.128 51.128 55.576\\\">Mailing a notice.</text></g><clipPath id=\\\"clip4-40\\\"><path d=\\\"M 205 214 L 574 214 L 574 272 L 205 272 L 205 214 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 262.277)\\\" x=\\\"0 5.336 7.16 9.384 13.832 18.28\\\">Either</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 230.5453 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 233.8153 262.277)\\\" x=\\\"0 4.448 8.896 11.56 13.784\\\">party</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 251.6004 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 254.8704 262.277)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 269.9837 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 273.2536 262.277)\\\" x=\\\"0 6.664 11.112 12.936\\\">mail</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 288.0154 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 291.2853 262.277)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.4064 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 305.6764 262.277)\\\" x=\\\"0 4.448 6.672 11.12 15.568\\\">other</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 323.9108 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 327.1807 262.277)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 331.6299 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 334.8999 262.277)\\\" x=\\\"0 2.664 7.112 11.56 16.008 20.456 24.456\\\">request</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 361.5835 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 364.8535 262.277)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.5253 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 374.7953 262.277)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 29.392\\\">arbitrate,</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 406.4125 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 409.6825 262.277)\\\" x=\\\"0 4.448 8.448 12.896\\\">even</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 427.0301 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 430.3001 262.277)\\\" x=\\\"0 1.824\\\">if</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.3469 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 437.6169 262.277)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 442.0661 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 445.3361 262.277)\\\" x=\\\"0 1.824 6.272 12.048 16.048 20.496 22.32\\\">lawsuit</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 469.883 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 473.1529 262.277)\\\" x=\\\"0 4.448 8.896\\\">has</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.0514 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 489.3213 262.277)\\\" x=\\\"0 4.448 8.896 13.344\\\">been</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 507.1182 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 510.3882 262.277)\\\" x=\\\"0 2.224 4.048 5.872 10.32 14.768\\\">filed.</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 527.3804 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 530.6503 262.277)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 544.4355 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 547.7055 262.277)\\\" x=\\\"0 4.448 8.896 11.12 12.944 16.944\\\">notice</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 262.277)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 253.2223)\\\" x=\\\"0 4 8.448 12.896 17.344 19.168\\\">should</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.2211 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 236.4008 253.2223)\\\" x=\\\"0 4.448 8.896 12.896 16.896 19.56 21.384 25.832\\\">describe</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 266.6859 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 269.8656 253.2223)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.9867 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 284.1664 253.2223)\\\" x=\\\"0 5.776 7.6 11.6 16.048 20.496 22.72\\\">Dispute</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 311.3383 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 314.518 253.2223)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 327.8656 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 331.0453 253.2223)\\\" x=\\\"0 2.664 7.112 8.936 10.76 15.208\\\">relief</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.4789 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 351.6586 253.2223)\\\" x=\\\"0 4 8.448 12.896 17.344 21.792 24.016\\\">sought.</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 377.9008 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 381.0805 253.2223)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 394.8656 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 398.0453 253.2223)\\\" x=\\\"0 2.664 7.112 11.112 15.56 17.384 21.384 23.208 27.656\\\">receiving</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.1547 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 433.3344 253.2223)\\\" x=\\\"0 4.448 8.896 11.56 13.784\\\">party</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 451.1195 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 454.2992 253.2223)\\\" x=\\\"0 6.664 11.112 15.112\\\">must</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 471.6351 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 474.8148 253.2223)\\\" x=\\\"0 6.664 11.112 12.936\\\">mail</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.5765 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 492.7562 253.2223)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 497.2055 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 500.3851 253.2223)\\\" x=\\\"0 2.664 7.112 11.112 15.56 20.008 24.456 28.456\\\">response</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 533.2953 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 536.475 253.2223)\\\" x=\\\"0 5.776 7.6 9.824 14.272 16.096\\\">within</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 557.0219 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 560.2015 253.2223)\\\" x=\\\"0 4.448\\\">20</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 253.2223)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 244.1676)\\\" x=\\\"0 4.448 8.896 12.896 16.896\\\">days.</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 228.7211 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 231.1538 244.1676)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 235.5991 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 238.0317 244.1676)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 250.9302 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 253.3629 244.1676)\\\" x=\\\"0 6.664 11.112 12.936\\\">mail</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 268.1246 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 270.5573 244.1676)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.6783 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 284.111 244.1676)\\\" x=\\\"0 4.448 8.896 15.56 20.008 24.456 28.904\\\">demand,</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 315.2438 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 317.6765 244.1676)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 330.575 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 333.0076 244.1676)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.1209 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 350.5536 244.1676)\\\" x=\\\"0 4 8.448 12.896 17.344 21.344\\\">choose</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 376.3505 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 378.7831 244.1676)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 389.9042 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 392.3369 244.1676)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 26.768 31.216\\\">arbitration</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 428.0049 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 430.4375 244.1676)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456\\\">group.</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 453.1211 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 455.5538 244.1676)\\\" x=\\\"0 6.224 8.888\\\">Or,</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.6632 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 469.0959 244.1676)\\\" x=\\\"0 4 8.448 12.896\\\">your</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.6584 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 487.091 244.1676)\\\" x=\\\"0 4.448 8.896 15.56 20.008 24.456\\\">demand</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 516.0012 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 518.4339 244.1676)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 533.5471 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 535.9798 244.1676)\\\" x=\\\"0 4 6.224 10.672 12.896\\\">state</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.3236 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 555.7562 244.1676)\\\" x=\\\"0 2.224 6.672 11.12\\\">that</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 244.1676)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 235.1129)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 222.4984 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 224.7098 235.1129)\\\" x=\\\"0 5.776 10.224 14.672\\\">want</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 241.6082 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 243.8196 235.1129)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 254.9407 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 257.152 235.1129)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056\\\">parties</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.2106 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 283.4219 235.1129)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.0938 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 292.3052 235.1129)\\\" x=\\\"0 4 8.448 12.896 17.344 21.344\\\">choose</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 318.1021 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 320.3134 235.1129)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 324.7626 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 326.974 235.1129)\\\" x=\\\"0 1.824 6.272 10.272 14.72\\\">local</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 343.5208 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 345.7322 235.1129)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608\\\">Arbiter.</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.5642 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 373.7756 235.1129)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 378.2209 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 380.4322 235.1129)\\\" x=\\\"0 2.664 7.112 8.936 13.384 15.608 20.056\\\">related</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 404.94 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 407.1514 235.1129)\\\" x=\\\"0 2.224 6.672 8.496 11.16\\\">third</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 422.7608 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 424.9721 235.1129)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056\\\">parties</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 449.0307 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 451.2421 235.1129)\\\" x=\\\"0 4.448\\\">or</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 458.3553 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 460.5667 235.1129)\\\" x=\\\"0 5.776\\\">we</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 470.7932 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 473.0046 235.1129)\\\" x=\\\"0 6.664 11.112 12.936\\\">mail</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 487.7663 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 489.9777 235.1129)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.0988 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 503.3101 235.1129)\\\" x=\\\"0 4.448 8.896 15.56 20.008 24.456 28.904\\\">demand,</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 534.4429 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 536.6543 235.1129)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.5527 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 551.7641 235.1129)\\\" x=\\\"0 6.664 11.112 15.112\\\">must</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 235.1129)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 226.0582)\\\" x=\\\"0 2.664 7.112 11.112 15.56 20.008 24.456\\\">respond</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.5101 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 241.2739 226.0582)\\\" x=\\\"0 1.824\\\">in</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 247.5474 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 250.3112 226.0582)\\\" x=\\\"0 4.448\\\">20</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.2096 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 261.9734 226.0582)\\\" x=\\\"0 4.448 8.896 12.896 16.896\\\">days.</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.0945 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 283.8583 226.0582)\\\" x=\\\"0 5.336 9.784 14.232\\\">Your</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 300.7567 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 303.5205 226.0582)\\\" x=\\\"0 2.664 7.112 11.112 15.56 20.008 24.456 28.456\\\">response</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 336.4306 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 339.1944 226.0582)\\\" x=\\\"0 6.664 11.112 15.112\\\">must</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 356.5304 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 359.2942 226.0582)\\\" x=\\\"0 4 8.448 12.896 17.344 21.344\\\">choose</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 385.091 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 387.8548 226.0582)\\\" x=\\\"0 4.448\\\">an</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 396.7533 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 399.517 226.0582)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 26.768 31.216\\\">arbitration</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 435.185 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 437.9488 226.0582)\\\" x=\\\"0 4.448 7.112 11.56 16.008\\\">group</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 458.4097 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 461.1735 226.0582)\\\" x=\\\"0 4.448\\\">or</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.2868 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 471.0506 226.0582)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456 24.456\\\">propose</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.9607 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 502.7245 226.0582)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 507.1737 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 509.9375 226.0582)\\\" x=\\\"0 1.824 6.272 10.272 14.72\\\">local</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.4844 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 529.2482 226.0582)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608\\\">Arbiter.</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 555.0802 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 557.844 226.0582)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 562.2893 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 565.0531 226.0582)\\\" x=\\\"0 1.824\\\">it</text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 226.0582)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-40)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 217.0035)\\\" x=\\\"0 4.448 8.896 13.344 17.344 21.792 23.32 25.544 27.768 29.896 35.672 40.12 42.248 48.912 53.36 57.36 59.488 63.488 67.936 72.384 76.832 80.832 85.28 87.408 89.632 94.08 98.528 100.656 105.104 107.768 112.216 116.664 121.112\\\">doesn&apos;t, we may choose the group.</text></g><clipPath id=\\\"clip4-41\\\"><path d=\\\"M 35 137 L 128 137 L 128 215 L 35 215 L 35 137 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-41)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.2 214.3238 L 127.6 214.3238 L 127.6 137.8863 L 35.2 137.8863 L 35.2 214.3238 z \\\"/><path clip-path=\\\"url(#clip4-41)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.3 212.3238 L 123.5 212.3238 L 123.5 203.2691 L 39.3 203.2691 L 39.3 212.3238 z \\\"/><path clip-path=\\\"url(#clip4-41)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 53.191 212.3238 L 110.191 212.3238 L 110.191 202.3238 L 53.191 202.3238 L 53.191 212.3238 z \\\"/><g clip-path=\\\"url(#clip4-41)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 53.191 204.9488)\\\" x=\\\"0 7.552 12 16.448 18.576 23.024 25.688 30.136 31.96 34.184 36.848 41.296 43.52 47.968 51.968\\\">* D E M O *tes?</text></g><clipPath id=\\\"clip4-42\\\"><path d=\\\"M 127 137 L 206 137 L 206 215 L 127 215 L 127 137 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-42)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 134.4621 204.9488)\\\" x=\\\"0 5.336 10.672 16.008 18.232 20.36 24.36 29.696 36.36 41.696 43.92 46.048 50.496 53.16 55.288 59.736\\\">AAA, JAMS, or an</text></g><g clip-path=\\\"url(#clip4-42)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 140.1164 195.8941)\\\" x=\\\"0 4.448 8.896 11.56 16.008 20.456 24.904 27.032 32.368 35.032 39.48 41.304 43.528 47.976 50.64\\\">agreed Arbiter.</text></g><clipPath id=\\\"clip4-43\\\"><path d=\\\"M 205 137 L 574 137 L 574 215 L 205 215 L 205 137 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 204.9488)\\\" x=\\\"0 5.336 9.784\\\">You</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 223.8344 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 226.373 204.9488)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 241.4863 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 244.025 204.9488)\\\" x=\\\"0 4 8.448 10.272 14.72 18.72\\\">select</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 264.9703 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 267.509 204.9488)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 278.6301 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 281.1687 204.9488)\\\" x=\\\"0 5.336 12 16.448 19.112 20.936 24.936 29.384\\\">American</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 315.0047 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 317.5433 204.9488)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 19.16 23.608 25.832 27.656 32.104\\\">Arbitration</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 354.098 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 356.6367 204.9488)\\\" x=\\\"0 5.336 9.336 13.336 17.784 21.784 23.608 28.056 30.28 32.104 36.552\\\">Association</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 397.6406 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 400.1793 204.9488)\\\" x=\\\"0 2.664 5.504 10.84 16.176 21.512 24.352\\\">(&quot;AAA&quot;)</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 427.1949 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 429.7336 204.9488)\\\" x=\\\"0 2.664 7.112 9.776 14.224 18.672 23.12 25.784 30.232 34.68 39.128 41.792 46.24 50.688 55.136 59.584\\\">(1-800-778-7879)</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 491.9953 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 494.534 204.9488)\\\" x=\\\"0 4.448 6.672 8.896 13.344 15.568 17.792 20.016 25.792 31.568 37.344 39.568 44.016 48.464 51.128 53.352 57.8 60.464\\\">http://www.adr.org</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 559.448 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 561.9867 204.9488)\\\" x=\\\"0 4.448\\\">or</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 204.9488)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 195.8941)\\\" x=\\\"0 4 9.336 16\\\">JAMS</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 185.8395)\\\" x=\\\"0 2.664 7.112 9.776 14.224 18.672 23.12 25.784 30.232 34.68 39.128 41.792 46.24 50.688 55.136 59.584\\\">(1-800-352-5267)</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 271.8617 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 274.6277 185.8395)\\\" x=\\\"0 4.448 6.672 8.896 13.344 15.568 17.792 20.016 25.792 31.568 37.344 39.568 41.392 45.84 52.504 56.504 60.952 65.4 68.064 70.288 74.288 78.736 85.4\\\">http://www.jamsadr.com.</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 362.2527 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 365.0186 185.8395)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 378.8038 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 381.5697 185.8395)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056\\\">parties</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 405.6283 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 408.3943 185.8395)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 423.5075 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 426.2735 185.8395)\\\" x=\\\"0 4.448 6.272 10.272\\\">also</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 440.9961 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 443.7621 185.8395)\\\" x=\\\"0 4.448 8.896 11.56 16.008\\\">agree</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 464.223 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 466.989 185.8395)\\\" x=\\\"0 1.824\\\">in</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 473.2624 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 476.0284 185.8395)\\\" x=\\\"0 5.776 8.44 10.264 12.488 14.312 18.76\\\">writing</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.2393 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 502.0053 185.8395)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 508.6771 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 511.4431 185.8395)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 515.8923 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 518.6583 185.8395)\\\" x=\\\"0 1.824 6.272 10.272 14.72\\\">local</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 535.2051 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 537.9711 185.8395)\\\" x=\\\"0 4.448 6.672 8.896 13.344 16.008 20.456 24.904 28.904\\\">attorney,</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 185.8395)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 176.7848)\\\" x=\\\"0 2.664 7.112 9.336 11.16 13.824 18.272\\\">retired</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 232.3227 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 235.2385 176.7848)\\\" x=\\\"0 1.824 6.272 10.72 15.168 19.616\\\">judge,</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.0823 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 259.9982 176.7848)\\\" x=\\\"0 4.448\\\">or</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 267.1114 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 270.0273 176.7848)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 293.6367 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 296.5526 176.7848)\\\" x=\\\"0 1.824\\\">in</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.826 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 305.7419 176.7848)\\\" x=\\\"0 4.448 8.896 13.344\\\">good</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 323.5388 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 326.4547 176.7848)\\\" x=\\\"0 4 6.224 10.672 15.12 19.568 21.392 25.84\\\">standing</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 356.7477 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 359.6635 176.7848)\\\" x=\\\"0 5.776 7.6 9.824\\\">with</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 373.937 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 376.8529 176.7848)\\\" x=\\\"0 4.448\\\">an</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 385.7513 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 388.6672 176.7848)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 26.768 31.216\\\">arbitration</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 424.3351 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 427.251 176.7848)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456\\\">group.</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 449.9346 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 452.8505 176.7848)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 466.6357 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 469.5516 176.7848)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 493.1609 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 496.0768 176.7848)\\\" x=\\\"0 6.664 11.112 15.112\\\">must</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 513.4127 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 516.3286 176.7848)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944\\\">arbitrate</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 545.7232 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 548.6391 176.7848)\\\" x=\\\"0 4.448 8.896 13.344 17.792\\\">under</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 176.7848)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 167.7301)\\\" x=\\\"0 5.336 10.672\\\">AAA</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.6078 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 228.6503 167.7301)\\\" x=\\\"0 4.448\\\">or</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 235.7636 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 238.8062 167.7301)\\\" x=\\\"0 4 9.336 16\\\">JAMS</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 260.1421 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 263.1846 167.7301)\\\" x=\\\"0 4 8.448 12.896 16.896 21.344 28.008 32.456\\\">consumer</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 298.3096 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 301.3522 167.7301)\\\" x=\\\"0 2.664 7.112 8.936 13.384 17.384\\\">rules.</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 320.9615 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 324.0041 167.7301)\\\" x=\\\"0 5.336 9.784\\\">You</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.2384 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 341.281 167.7301)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 356.3943 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 359.4368 167.7301)\\\" x=\\\"0 4.448 8.896\\\">get</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 370.5579 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 373.6004 167.7301)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 378.0497 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 381.0922 167.7301)\\\" x=\\\"0 4 8.448 12.896\\\">copy</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 397.9906 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 401.0331 167.7301)\\\" x=\\\"0 4.448\\\">of</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 407.705 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 410.7476 167.7301)\\\" x=\\\"0 2.224 6.672 11.12 15.12\\\">these</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.3179 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 433.3604 167.7301)\\\" x=\\\"0 2.664 7.112 8.936 13.384\\\">rules</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 450.7471 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 453.7897 167.7301)\\\" x=\\\"0 2.224 4.888 9.336\\\">from</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 469.7897 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 472.8322 167.7301)\\\" x=\\\"0 4 8.448 12.448\\\">such</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 489.7306 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 492.7732 167.7301)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456\\\">group.</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 515.4568 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 518.4993 167.7301)\\\" x=\\\"0 5.336 9.784\\\">Any</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 532.2845 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 535.327 167.7301)\\\" x=\\\"0 2.664 7.112 8.936 13.384\\\">rules</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.7137 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 555.7562 167.7301)\\\" x=\\\"0 2.224 6.672 11.12\\\">that</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 167.7301)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 158.6754)\\\" x=\\\"0 4 8.448 12.896 15.12 16.944 18.768 22.768\\\">conflict</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 234.5922 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 237.7758 158.6754)\\\" x=\\\"0 5.776 7.6 9.824\\\">with</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 252.0492 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 255.2328 158.6754)\\\" x=\\\"0 4.448 8.896\\\">any</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 268.1312 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 271.3148 158.6754)\\\" x=\\\"0 4.448\\\">of</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 277.9867 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 281.1703 158.6754)\\\" x=\\\"0 4.448 8.896\\\">our</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 292.7328 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 295.9164 158.6754)\\\" x=\\\"0 4.448 8.896 11.56 16.008 20.456 27.12 31.568 36.016 38.24\\\">agreements</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 338.1625 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 341.3461 158.6754)\\\" x=\\\"0 5.776 7.6 9.824\\\">with</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 355.6195 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 358.8031 158.6754)\\\" x=\\\"0 4 8.448 12.896\\\">you,</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 373.9242 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 377.1078 158.6754)\\\" x=\\\"0 4.448 8.896 13.344 14.872\\\">don&apos;t</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 394.2055 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 397.389 158.6754)\\\" x=\\\"0 4.448 8.896 13.344 15.168 19.168\\\">apply.</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 418.7836 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 421.9672 158.6754)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 426.4125 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 429.5961 158.6754)\\\" x=\\\"0 2.224 6.672 11.12 15.12\\\">these</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 449.1664 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 452.35 158.6754)\\\" x=\\\"0 4.448 8.896 11.12 12.944 17.392 21.84\\\">options</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 478.1937 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 481.3773 158.6754)\\\" x=\\\"0 4.448 7.112 11.56 16.008 17.536\\\">aren&apos;t</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.139 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 504.3227 158.6754)\\\" x=\\\"0 4.448 8.448 12.896 14.72 16.544 20.992 25.44 27.264 31.712\\\">available,</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 538.264 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 541.4476 158.6754)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 554.7953 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 557.9789 158.6754)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 158.6754)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 149.6207)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056\\\">parties</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.6586 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 236.2535 149.6207)\\\" x=\\\"0 4 8.448 12.896 14.424\\\">can&apos;t</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 252.9019 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 255.4968 149.6207)\\\" x=\\\"0 4.448 8.896 11.56 16.008\\\">agree</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 275.9578 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 278.5527 149.6207)\\\" x=\\\"0 4.448\\\">on</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 287.4511 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 290.046 149.6207)\\\" x=\\\"0 4.448 8.896 13.344 15.568 20.016 24.464 27.128\\\">another,</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.4015 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 321.9964 149.6207)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 326.4456 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 329.0405 149.6207)\\\" x=\\\"0 4 8.448 12.896 15.56\\\">court</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 346.8256 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 349.4205 149.6207)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 364.5338 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 367.1287 149.6207)\\\" x=\\\"0 4 8.448 12.896 17.344 21.344\\\">choose</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 392.9256 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 395.5205 149.6207)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 406.6416 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 409.2365 149.6207)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456\\\">group.</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 431.9201 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 434.515 149.6207)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 448.3001 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 450.895 149.6207)\\\" x=\\\"0 4.448 8.896 11.56 13.784 15.608 20.056\\\">parties</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 474.9536 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 477.5485 149.6207)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 488.7985 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 491.3934 149.6207)\\\" x=\\\"0 2.224 6.672 11.12\\\">then</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 506.9637 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 509.5586 149.6207)\\\" x=\\\"0 4.448 8.896 11.12 15.568 17.392\\\">obtain</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 531.4024 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 533.9973 149.6207)\\\" x=\\\"0 4.448\\\">an</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 542.8957 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 545.4906 149.6207)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 149.6207)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-43)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 140.566)\\\" x=\\\"0 4.448 8.896 13.344 17.792 20.456 22.584 26.584 31.032 35.032 39.48 41.608 46.056 48.72 53.168 57.616 62.064 63.592 67.592 69.72 72.384 76.832 78.656 83.104 87.104 89.328 91.456 96.792 101.24 105.24 109.688 111.816 117.152 119.816 124.264 126.088 128.312 132.76 135.424 137.552 144.216 148.664 152.664 154.888 157.016 161.464 165.912 168.136 172.584 175.248 179.248 183.696 185.824 189.824 194.272 198.72 201.384 203.512 207.96 212.408 215.072 219.52 223.968 230.632 235.08 239.528 241.752 245.752 247.88 253.656 255.48 257.704 262.152 264.28 268.728 272.728 274.952 277.08 281.528 285.528 287.656 289.88 294.328 298.776 302.776 304.904 309.352 312.016 316.464 318.592 324.368 327.032 328.856 331.08 333.304 337.752 342.2\\\">under such group&apos;s rules. Such Arbiter must enforce your agreements with us, as they are written.</text></g><clipPath id=\\\"clip4-44\\\"><path d=\\\"M 35 116 L 128 116 L 128 138 L 35 138 L 35 116 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-44)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.2 137.8863 L 127.6 137.8863 L 127.6 116.777 L 35.2 116.777 L 35.2 137.8863 z \\\"/><path clip-path=\\\"url(#clip4-44)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.3 135.8863 L 123.5 135.8863 L 123.5 117.777 L 39.3 117.777 L 39.3 135.8863 z \\\"/><path clip-path=\\\"url(#clip4-44)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.6754 135.8863 L 125.6754 135.8863 L 125.6754 125.8863 L 39.6754 125.8863 L 39.6754 135.8863 z \\\"/><g clip-path=\\\"url(#clip4-44)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 39.6754 128.5113)\\\" x=\\\"0 7.552 9.376 11.2 13.024 15.152 17.376 21.824 26.272 28.4 32.848 37.296 41.744 44.408 46.232 50.68 55.128 57.256 61.704 66.152 68.28 72.728 77.176 79\\\">Will the hearing be held</text></g><path clip-path=\\\"url(#clip4-44)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 66.9449 126.8316 L 95.9449 126.8316 L 95.9449 116.8316 L 66.9449 116.8316 L 66.9449 126.8316 z \\\"/><g clip-path=\\\"url(#clip4-44)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 66.9449 119.4567)\\\" x=\\\"0 4.448 8.896 13.344 16.008 20.456 24.456\\\">nearby?</text></g><clipPath id=\\\"clip4-45\\\"><path d=\\\"M 127 116 L 206 116 L 206 138 L 127 138 L 127 116 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-45)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 158.5461 128.5113)\\\" x=\\\"0 5.336 9.784 13.784\\\">Yes.</text></g><clipPath id=\\\"clip4-46\\\"><path d=\\\"M 205 116 L 574 116 L 574 138 L 205 138 L 205 116 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-46)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 128.5113)\\\" x=\\\"0 4.888 9.336 13.784 15.912 21.248 23.912 28.36 30.184 32.408 36.856 39.52 41.648 47.424 49.248 51.072 52.896 55.024 59.472 62.136 66.584 71.032 73.696 75.824 78.048 82.496 86.944 89.072 93.52 97.968 102.416 105.08 106.904 111.352 115.8 117.928 123.704 125.528 127.752 132.2 134.024 138.472 140.6 145.048 149.496 151.624 158.288 160.112 161.936 166.384 170.384 172.512 176.96 179.184 181.312 185.312 189.76 194.208 196.872 199 203.448 207.896 214.56 219.008 221.136 225.584 228.248 230.376 236.152 240.6 245.048 247.712 252.16 254.288 256.512 260.96 265.408 267.536 269.76 272.424 276.872 281.32 285.32 289.768 293.768 295.992 297.816 302.264 306.712 308.84 313.288 317.288 321.288 325.736 328.4 331.064 335.512 339.96\\\">The Arbiter will order the hearing within 30 miles of your home or where the transaction occurred.</text></g><clipPath id=\\\"clip4-47\\\"><path d=\\\"M 35 74 L 128 74 L 128 117 L 35 117 L 35 74 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-47)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.2 116.777 L 127.6 116.777 L 127.6 74.777 L 35.2 74.777 L 35.2 116.777 z \\\"/><path clip-path=\\\"url(#clip4-47)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.3 114.777 L 123.5 114.777 L 123.5 105.7223 L 39.3 105.7223 L 39.3 114.777 z \\\"/><path clip-path=\\\"url(#clip4-47)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 43.6695 114.777 L 119.6695 114.777 L 119.6695 104.777 L 43.6695 104.777 L 43.6695 114.777 z \\\"/><g clip-path=\\\"url(#clip4-47)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 43.6695 107.402)\\\" x=\\\"0 7.552 12 16.448 18.672 20.8 25.248 29.696 34.144 38.592 40.816 42.944 47.392 51.84 56.288 60.736 65.184 67.008 71.008\\\">What about appeals?</text></g><clipPath id=\\\"clip4-48\\\"><path d=\\\"M 127 74 L 206 74 L 206 117 L 127 117 L 127 74 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-48)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 145.2277 107.402)\\\" x=\\\"0 5.336 9.784 14.232 18.68 23.128 24.952 28.952 31.08 35.528 38.192\\\">Appeals are</text></g><g clip-path=\\\"url(#clip4-48)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 153.8098 98.3473)\\\" x=\\\"0 1.824 3.648 10.312 12.136 14.36 18.808 23.256\\\">limited.</text></g><clipPath id=\\\"clip4-49\\\"><path d=\\\"M 205 74 L 574 74 L 574 117 L 205 117 L 205 74 z \\\"/></clipPath><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 107.402)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 223.3852 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 227.8141 107.402)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608 25.136\\\">Arbiter&apos;s</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.9508 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 261.3798 107.402)\\\" x=\\\"0 4.448 8.896 12.896 14.72 18.72 20.544 24.992\\\">decision</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 290.8251 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 295.2541 107.402)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 306.5041 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 310.933 107.402)\\\" x=\\\"0 4.448\\\">be</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.8314 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 324.2604 107.402)\\\" x=\\\"0 2.224 4.048 8.496 12.944 14.768\\\">final.</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 341.2526 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 345.6815 107.402)\\\" x=\\\"0\\\">A</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.0175 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 355.4464 107.402)\\\" x=\\\"0 4.448 8.896 11.56 13.784\\\">party</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 373.2316 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 377.6605 107.402)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 392.7738 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 397.2028 107.402)\\\" x=\\\"0 2.224 4.048 5.872\\\">file</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 407.5231 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 411.952 107.402)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 423.0731 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 427.5021 107.402)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608 25.136\\\">Arbiter&apos;s</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 456.6388 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 461.0678 107.402)\\\" x=\\\"0 4.448 10.224 14.672 17.336\\\">award</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 482.8568 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 487.2858 107.402)\\\" x=\\\"0 5.776 7.6 9.824\\\">with</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.5592 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 505.9882 107.402)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 517.1093 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 521.5382 107.402)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456\\\">proper</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 544.6632 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 549.0922 107.402)\\\" x=\\\"0 4 8.448 12.896 15.56 17.784\\\">court.</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 107.402)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 98.3473)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 19.16 23.608 25.832 27.656 32.104\\\">Arbitration</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 246.1547 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 248.4088 98.3473)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 259.6588 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 261.913 98.3473)\\\" x=\\\"0 4 8.448 10.272 14.272\\\">solve</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.6356 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 282.8898 98.3473)\\\" x=\\\"0 4.448 8.896 13.344 17.792 22.24 24.064\\\">appeals</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 310.9601 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 313.2142 98.3473)\\\" x=\\\"0 4.448\\\">of</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 319.8861 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 322.1403 98.3473)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 326.5895 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 328.8436 98.3473)\\\" x=\\\"0 4 10.664 15.112 16.936 18.76 21.424 25.424 27.248 31.696 33.52 40.184\\\">small-claims</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 373.0311 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 375.2853 98.3473)\\\" x=\\\"0 4 8.448 12.896 15.56\\\">court</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 393.0704 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 395.3246 98.3473)\\\" x=\\\"0 1.824 6.272 10.72 15.168 19.616 26.28 30.728 35.176 37.4\\\">judgement.</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 434.9535 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 437.2077 98.3473)\\\" x=\\\"0\\\">A</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 442.5436 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 444.7977 98.3473)\\\" x=\\\"0 4.448 8.896 11.56 13.784\\\">party</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 462.5829 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 464.837 98.3473)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 479.9503 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 482.2045 98.3473)\\\" x=\\\"0 4.448 8.896 13.344 17.792 22.24\\\">appeal</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 506.2748 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 508.5289 98.3473)\\\" x=\\\"0 4.448 8.896 13.344 17.792\\\">under</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 528.9899 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 531.244 98.3473)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 542.3651 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 544.6193 98.3473)\\\" x=\\\"0 4.888 10.224 15.56\\\">FAA.</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 562.4005 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 564.6547 98.3473)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 98.3473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 89.2926)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 220.7211 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 223.3349 89.2926)\\\" x=\\\"0 4.448 11.112 15.56 20.008 24.456\\\">amount</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 250.0185 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 252.6324 89.2926)\\\" x=\\\"0 1.824\\\">in</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 258.9058 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 261.5196 89.2926)\\\" x=\\\"0 4 8.448 12.896 15.12 17.784 22.232 26.232 30.68 33.344 37.344\\\">controversy</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.8673 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 305.4811 89.2926)\\\" x=\\\"0 4.448 8.448 12.448 16.896 21.344 25.792\\\">exceeds</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 335.278 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 337.8918 89.2926)\\\" x=\\\"0 4.448 8.896 11.12 15.568 20.016 24.464 26.688 31.136 35.584\\\">$1,500.00,</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.7043 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 378.3182 89.2926)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 382.7674 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 385.3812 89.2926)\\\" x=\\\"0 4.448 8.896 11.56 13.784\\\">party</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.1664 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 405.7802 89.2926)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 420.8935 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 423.5074 89.2926)\\\" x=\\\"0 4.448 8.896 13.344 17.792 22.24\\\">appeal</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 447.5777 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 450.1915 89.2926)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 461.3126 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 463.9264 89.2926)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608 25.136\\\">Arbiter&apos;s</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 493.0632 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 495.677 89.2926)\\\" x=\\\"0 2.224 4.048 8.496 12.944 14.768 19.216 23.664\\\">finding.</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.5676 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 524.1815 89.2926)\\\" x=\\\"0 5.336 9.784 13.784\\\">Such</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 542.4158 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 545.0297 89.2926)\\\" x=\\\"0 4.448 8.896 13.344 17.792 22.24\\\">appeal</text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 89.2926)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip4-49)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 80.2379)\\\" x=\\\"0 5.776 7.6 9.424 11.248 13.376 17.824 22.272 24.4 26.624 31.072 33.2\\\">will be to a</text></g><clipPath id=\\\"clip4-50\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 272.152 L 128.1 272.152 L 128.1 271.152 L 34.7 271.152 L 34.7 272.152 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 271.152 L 35.7 271.152 L 35.7 214.8238 L 34.7 214.8238 L 34.7 271.152 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.1 272.152 L 206 272.152 L 206 271.152 L 128.1 271.152 L 128.1 272.152 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127.1 271.152 L 128.1 271.152 L 128.1 214.8238 L 127.1 214.8238 L 127.1 271.152 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 272.152 L 573.7 272.152 L 573.7 271.152 L 206 271.152 L 206 272.152 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.7 271.152 L 573.7 271.152 L 573.7 214.8238 L 572.7 214.8238 L 572.7 271.152 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 271.152 L 206 271.152 L 206 214.8238 L 205 214.8238 L 205 271.152 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 214.8238 L 128.1 214.8238 L 128.1 213.8238 L 34.7 213.8238 L 34.7 214.8238 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 213.8238 L 35.7 213.8238 L 35.7 138.3863 L 34.7 138.3863 L 34.7 213.8238 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.1 214.8238 L 206 214.8238 L 206 213.8238 L 128.1 213.8238 L 128.1 214.8238 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127.1 213.8238 L 128.1 213.8238 L 128.1 138.3863 L 127.1 138.3863 L 127.1 213.8238 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 214.8238 L 573.7 214.8238 L 573.7 213.8238 L 206 213.8238 L 206 214.8238 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.7 213.8238 L 573.7 213.8238 L 573.7 138.3863 L 572.7 138.3863 L 572.7 213.8238 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 213.8238 L 206 213.8238 L 206 138.3863 L 205 138.3863 L 205 213.8238 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 138.3863 L 128.1 138.3863 L 128.1 137.3863 L 34.7 137.3863 L 34.7 138.3863 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 137.3863 L 35.7 137.3863 L 35.7 117.277 L 34.7 117.277 L 34.7 137.3863 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.1 138.3863 L 206 138.3863 L 206 137.3863 L 128.1 137.3863 L 128.1 138.3863 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127.1 137.3863 L 128.1 137.3863 L 128.1 117.277 L 127.1 117.277 L 127.1 137.3863 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 138.3863 L 573.7 138.3863 L 573.7 137.3863 L 206 137.3863 L 206 138.3863 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.7 137.3863 L 573.7 137.3863 L 573.7 117.277 L 572.7 117.277 L 572.7 137.3863 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 137.3863 L 206 137.3863 L 206 117.277 L 205 117.277 L 205 137.3863 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 117.277 L 128.1 117.277 L 128.1 116.277 L 34.7 116.277 L 34.7 117.277 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 75.277 L 128.1 75.277 L 128.1 74.277 L 34.7 74.277 L 34.7 75.277 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 116.277 L 35.7 116.277 L 35.7 75.277 L 34.7 75.277 L 34.7 116.277 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.1 117.277 L 206 117.277 L 206 116.277 L 128.1 116.277 L 128.1 117.277 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.1 75.277 L 206 75.277 L 206 74.277 L 128.1 74.277 L 128.1 75.277 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127.1 116.277 L 128.1 116.277 L 128.1 75.277 L 127.1 75.277 L 127.1 116.277 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 117.277 L 573.7 117.277 L 573.7 116.277 L 206 116.277 L 206 117.277 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 75.277 L 573.7 75.277 L 573.7 74.277 L 206 74.277 L 206 75.277 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.7 116.277 L 573.7 116.277 L 573.7 75.277 L 572.7 75.277 L 572.7 116.277 z \\\"/><path clip-path=\\\"url(#clip4-50)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 116.277 L 206 116.277 L 206 75.277 L 205 75.277 L 205 116.277 z \\\"/><g clip-path=\\\"url(#clip4-50)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 36.5264)\\\" x=\\\"0 6.498 11.997 14.391 16.785 21.789 26.793 29.295 34.299 39.303 44.307 504 506.3906 508.7812 511.1719 513.5625 515.9531 518.3438 520.7344 523.125 525.5156\\\">UT  07/2019          </text></g><g clip-path=\\\"url(#clip4-50)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 26.3398)\\\" x=\\\"0 6.003 11.007 16.011 21.015\\\">Page </text></g><g clip-path=\\\"url(#clip4-50)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 55.8097 26.3398)\\\" x=\\\"0\\\">5</text></g><g clip-path=\\\"url(#clip4-50)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.815 26.3398)\\\" x=\\\"0 2.394 7.398 9.9\\\"> of </text></g><g clip-path=\\\"url(#clip4-50)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f4-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 73.1021 26.3398)\\\" x=\\\"0\\\">7</text></g><g clip-path=\\\"url(#clip4-50)\\\"><text stroke=\\\"none\\\" fill=\\\"#d9d9d9\\\" style=\\\"font-family:f4-0; font-size:54pt; white-space:pre\\\" transform=\\\"matrix(0.707 0.707 0.707 -0.707 135.6027 198.5094)\\\" x=\\\"0 56.016 96.048 136.08 176.112 216.144 236.16 284.184 324.216 344.232 364.248 416.232 456.264 480.24\\\">Qoppa Software</text></g><g clip-path=\\\"url(#clip4-50)\\\"><text stroke=\\\"none\\\" fill=\\\"#002ba6\\\" style=\\\"font-family:f4-0; font-size:9pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.932 772)\\\" x=\\\"0 9.336 16.008 22.68 29.352 36.024 39.36 47.364 54.036 57.372 60.708 69.372 76.044 80.04 86.712 90.048 94.044 97.38 104.712 111.384 115.38 118.716 126.72 132.72 139.392 142.056 148.728 155.4 158.736 161.4 168.072 174.744 178.08 187.416 194.088 196.752 202.752 206.088 210.084 213.42 220.092 223.428 226.764 233.436 239.436 242.772 246.108 249.444 258.108 266.772 275.436 278.772 285.444 292.116 298.788 305.46 312.132 315.468 321.468 328.14\\\">Qoppa Software - For Evaluation Only - https://www.qoppa.com</text></g></g></svg></svg></g></svg><br>\\n<?xml version='1.0' encoding='UTF-8'?><svg id=\\\"qoppa_document\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" version=\\\"1.1\\\" xmlns=\\\"http://www.w3.org/2000/svg\\\" xmlns:xlink=\\\"http://www.w3.org/1999/xlink\\\"><!-- jPDFWeb v2019R1.03 - Demo Version --><style>title p { display: block; }</style><g id=\\\"qoppa_viewxform\\\" transform=\\\"matrix(1 0 0 1 0 0)\\\"><style type=\\\"text/css\\\">@font-face {font-family:f5-0;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f5-1;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f5-2;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}</style><svg id=\\\"qoppa_page_p5\\\" class=\\\"qoppa_page\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\"><rect class=\\\"qoppa_pageborder\\\" x=\\\"0.5pt\\\" y=\\\"0.5pt\\\" width=\\\"611pt\\\" height=\\\"791pt\\\" fill=\\\"none\\\" /><svg class=\\\"qoppa_pagecontents\\\" x=\\\"0pt\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" viewBox=\\\"0 0 612 792\\\" ><g class=\\\"qoppa_contentstream\\\" transform=\\\"matrix(1 0 0 -1 0 792)\\\" fill=\\\"black\\\" stroke=\\\"black\\\" stroke-width=\\\"1\\\" stroke-linecap=\\\"butt\\\" stroke-linejoin=\\\"miter\\\" stroke-miterlimit=\\\"10\\\"><clipPath id=\\\"clip5-1\\\"><path d=\\\"M 35 727 L 128 727 L 128 770 L 35 770 L 35 727 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-1)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.2 769.7 L 127.6 769.7 L 127.6 727.7 L 35.2 727.7 L 35.2 769.7 z \\\"/><clipPath id=\\\"clip5-2\\\"><path d=\\\"M 205 727 L 574 727 L 574 770 L 205 770 L 205 727 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 760.325)\\\" x=\\\"0 4.448 7.112 12.448 15.112 19.56 21.384 23.608 28.056\\\">3-Arbiter</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 240.3227 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 243.109 760.325)\\\" x=\\\"0 4.448 8.896 13.344 17.792\\\">panel</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 262.7301 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 265.5165 760.325)\\\" x=\\\"0 2.224 4.888 9.336\\\">from</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 281.5165 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 284.3029 760.325)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 295.424 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 298.2103 760.325)\\\" x=\\\"0 4 8.448 15.112\\\">same</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 317.7728 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 320.5592 760.325)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 26.768 31.216\\\">arbitration</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 356.2272 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 359.0136 760.325)\\\" x=\\\"0 4.448 7.112 11.56 16.008 20.456\\\">group.</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 381.6972 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 384.4835 760.325)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 398.2687 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 401.0551 760.325)\\\" x=\\\"0 4.448 8.896 13.344 17.792 22.24\\\">appeal</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 425.1254 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 427.9118 760.325)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 439.1618 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 441.9481 760.325)\\\" x=\\\"0 4.448\\\">be</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 450.8466 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 453.6329 760.325)\\\" x=\\\"0 4.448\\\">de</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 462.5314 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 465.3178 760.325)\\\" x=\\\"0 4.448 8.896 12.896 17.344\\\">novo,</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 484.8881 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 487.6745 760.325)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.0221 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 503.8085 760.325)\\\" x=\\\"0 4 8.448 10.272 14.272 18.72\\\">solved</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.9804 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 529.7667 760.325)\\\" x=\\\"0 4.448\\\">by</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 538.216 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 541.0023 760.325)\\\" x=\\\"0 6.664 11.112 12.936 17.384 20.048 21.872 24.096\\\">majority</text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 569.1 760.325)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-2)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 751.2703)\\\" x=\\\"0 4 8.448 10.672 15.12\\\">vote.</text></g><clipPath id=\\\"clip5-3\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-3)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 770.2 L 128.1 770.2 L 128.1 769.2 L 34.7 769.2 L 34.7 770.2 z \\\"/><path clip-path=\\\"url(#clip5-3)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 728.2 L 128.1 728.2 L 128.1 727.2 L 34.7 727.2 L 34.7 728.2 z \\\"/><path clip-path=\\\"url(#clip5-3)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 34.7 769.2 L 35.7 769.2 L 35.7 728.2 L 34.7 728.2 L 34.7 769.2 z \\\"/><path clip-path=\\\"url(#clip5-3)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.1 770.2 L 206 770.2 L 206 769.2 L 128.1 769.2 L 128.1 770.2 z \\\"/><path clip-path=\\\"url(#clip5-3)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128.1 728.2 L 206 728.2 L 206 727.2 L 128.1 727.2 L 128.1 728.2 z \\\"/><path clip-path=\\\"url(#clip5-3)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127.1 769.2 L 128.1 769.2 L 128.1 728.2 L 127.1 728.2 L 127.1 769.2 z \\\"/><path clip-path=\\\"url(#clip5-3)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 770.2 L 573.7 770.2 L 573.7 769.2 L 206 769.2 L 206 770.2 z \\\"/><path clip-path=\\\"url(#clip5-3)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 728.2 L 573.7 728.2 L 573.7 727.2 L 206 727.2 L 206 728.2 z \\\"/><path clip-path=\\\"url(#clip5-3)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.7 769.2 L 573.7 769.2 L 573.7 728.2 L 572.7 728.2 L 572.7 769.2 z \\\"/><path clip-path=\\\"url(#clip5-3)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 769.2 L 206 769.2 L 206 728.2 L 205 728.2 L 205 769.2 z \\\"/><g clip-path=\\\"url(#clip5-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 241.2386 715.4812)\\\" x=\\\"0 6.67 10 15.56 17.84 20.62 23.95 29.51 32.29 34.57 40.13 45.69 48.35 54.46 60.02 65.58 70.58 73.24 78.8 84.36 89.92 92.58 99.25 106.47 112.03 115.36 120.92\\\">Ar* D E M O *ees and Awards</text></g><clipPath id=\\\"clip5-4\\\"><path d=\\\"M 35 680 L 128 680 L 128 705 L 35 705 L 35 680 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-4)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.6 704.277 L 127.5 704.277 L 127.5 680.277 L 35.6 680.277 L 35.6 704.277 z \\\"/><path clip-path=\\\"url(#clip5-4)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.7 700.777 L 123.4 700.777 L 123.4 682.6676 L 39.7 682.6676 L 39.7 700.777 z \\\"/><path clip-path=\\\"url(#clip5-4)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 52.677 700.777 L 110.677 700.777 L 110.677 690.777 L 52.677 690.777 L 52.677 700.777 z \\\"/><g clip-path=\\\"url(#clip5-4)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 52.677 693.4019)\\\" x=\\\"0 7.552 9.376 11.2 13.024 15.152 20.928 25.376 27.504 31.952 36.4 40.4 44.848 49.296 53.296\\\">Will we advance</text></g><path clip-path=\\\"url(#clip5-4)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 51.093 691.7223 L 112.093 691.7223 L 112.093 681.7223 L 51.093 681.7223 L 51.093 691.7223 z \\\"/><g clip-path=\\\"url(#clip5-4)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 51.093 684.3473)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 19.16 23.608 25.832 27.656 32.104 36.552 38.68 43.568 48.016 52.464 56.464\\\">Arbitration Fees?</text></g><clipPath id=\\\"clip5-5\\\"><path d=\\\"M 127 680 L 206 680 L 206 705 L 127 705 L 127 680 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-5)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 135.7422 693.4019)\\\" x=\\\"0 5.336 9.784 13.784 16.008 18.136 22.584 27.032 29.256 31.384 35.384 39.832 44.28 46.408 53.072 57.52\\\">Yes, but you may</text></g><g clip-path=\\\"url(#clip5-5)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 148.541 684.3473)\\\" x=\\\"0 4.448 8.896 12.896 15.024 19.024 23.472 27.472 29.696 33.696\\\">pay costs.</text></g><clipPath id=\\\"clip5-6\\\"><path d=\\\"M 205 680 L 573 680 L 573 705 L 205 705 L 205 680 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 693.4019)\\\" x=\\\"0 7.552\\\">We</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 221.6 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 224.0728 693.4019)\\\" x=\\\"0 4.448 8.896 12.896 17.344 21.792 25.792\\\">advance</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 254.3189 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 256.7917 693.4019)\\\" x=\\\"0 4 8.448 12.896\\\">your</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 272.3542 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 274.827 693.4019)\\\" x=\\\"0 2.84 8.176 10.84 15.288 17.112 19.336 22 26.448 28.672 30.496 34.944\\\">&quot;Arbitration</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 314.2216 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 316.6944 693.4019)\\\" x=\\\"0 4.888 9.336 13.784 17.784\\\">Fees&quot;</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 337.3194 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 339.7922 693.4019)\\\" x=\\\"0 1.824\\\">if</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 343.8391 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 346.3119 693.4019)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.2103 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 361.6831 693.4019)\\\" x=\\\"0 4.448 8.448\\\">ask</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 374.1323 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 376.6051 693.4019)\\\" x=\\\"0 4.448\\\">us</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 385.0544 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 387.5272 693.4019)\\\" x=\\\"0 2.224 6.672\\\">to.</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 396.4217 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 398.8945 693.4019)\\\" x=\\\"0 4.888 9.336 11.16\\\">This</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 414.0547 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 416.5275 693.4019)\\\" x=\\\"0 1.824 6.272 10.272 12.096 16.544 20.992 25.44\\\">includes</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 445.9728 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 448.4456 693.4019)\\\" x=\\\"0 2.224 4.048 5.872 7.696 12.144 16.592\\\">filing,</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.262 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 469.7348 693.4019)\\\" x=\\\"0 4.448 8.896 15.56 17.384 21.832 23.656 27.656 29.88 32.544 36.992 39.216 41.04 45.04 49.488\\\">administrative,</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 521.4497 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 523.9225 693.4019)\\\" x=\\\"0 4.448 8.896 13.344 16.008 17.832 22.28 26.728\\\">hearing,</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.8795 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 555.3523 693.4019)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 693.4019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-6)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 684.3473)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608 25.136 29.136 31.264 33.488 37.936 42.384 46.384 48.608 50.736 56.072 60.52 64.968 67.096 71.544 75.992 79.992 82.12 86.12 90.568 95.016 97.68 99.808 104.256 106.48 108.704 113.152 115.816 120.264 124.712 128.712 130.84 133.064 137.512 141.96 145.96 148.088 152.536 156.984 161.432 163.56 168.008 170.232 174.68 179.128 181.792 183.92 188.368 192.368 196.816 201.264 205.712 209.712 214.16 218.16\\\">Arbiter&apos;s fees. You pay your attorney fees and other expenses.</text></g><clipPath id=\\\"clip5-7\\\"><path d=\\\"M 35 656 L 128 656 L 128 681 L 35 681 L 35 656 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-7)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.6 680.277 L 127.5 680.277 L 127.5 656.6769 L 35.6 656.6769 L 35.6 680.277 z \\\"/><path clip-path=\\\"url(#clip5-7)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.7 676.277 L 123.4 676.277 L 123.4 658.1676 L 39.7 658.1676 L 39.7 676.277 z \\\"/><path clip-path=\\\"url(#clip5-7)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 50.0715 676.277 L 113.0715 676.277 L 113.0715 666.277 L 50.0715 666.277 L 50.0715 676.277 z \\\"/><g clip-path=\\\"url(#clip5-7)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 50.0715 668.9019)\\\" x=\\\"0 5.336 8 12.448 14.576 19.024 23.472 30.136 34.584 39.032 43.48 47.48 49.608 54.056 58.504\\\">Are damages and</text></g><path clip-path=\\\"url(#clip5-7)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 40.4641 667.2223 L 123.4641 667.2223 L 123.4641 657.2223 L 40.4641 657.2223 L 40.4641 667.2223 z \\\"/><g clip-path=\\\"url(#clip5-7)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.4641 659.8473)\\\" x=\\\"0 4.448 6.672 8.896 13.344 16.008 20.456 24.904 28.904 31.032 33.256 37.704 42.152 46.152 48.28 52.728 57.176 61.176 65.176 67 71.448 73.272 77.72\\\">attorney fees possible?</text></g><clipPath id=\\\"clip5-8\\\"><path d=\\\"M 127 656 L 206 656 L 206 681 L 127 681 L 127 656 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-8)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 139.625 668.9019)\\\" x=\\\"0 5.336 9.784 13.784 16.008 18.136 19.96 22.184 24.312 28.76 30.584 32.408 36.856 42.632 47.08 51.528\\\">Yes, if allowed.</text></g><clipPath id=\\\"clip5-9\\\"><path d=\\\"M 205 656 L 573 656 L 573 681 L 205 681 L 205 656 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 668.9019)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 223.3852 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 225.9124 668.9019)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 249.5218 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 252.049 668.9019)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 267.1623 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 269.6895 668.9019)\\\" x=\\\"0 4.448 10.224 14.672 17.336\\\">award</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.4786 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 294.0058 668.9019)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 305.1269 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 307.6542 668.9019)\\\" x=\\\"0 4 8.448 15.112\\\">same</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 327.2167 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 329.7439 668.9019)\\\" x=\\\"0 4.448 8.896 15.56 20.008 24.456 28.904\\\">damages</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 362.6541 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 365.1813 668.9019)\\\" x=\\\"0 4.448\\\">as</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 373.6305 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 376.1578 668.9019)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 380.607 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 383.1342 668.9019)\\\" x=\\\"0 4 8.448 12.896 15.56 17.784\\\">court.</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.142 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 405.6693 668.9019)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608\\\">Arbiters</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 433.2786 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 435.8059 668.9019)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 450.9192 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 453.4464 668.9019)\\\" x=\\\"0 4.448 10.224 14.672 17.336\\\">award</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 475.2355 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 477.7627 668.9019)\\\" x=\\\"0 2.664 7.112 11.56 15.56 20.008 24.456 28.904 33.352 35.176\\\">reasonable</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 517.3955 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 519.9227 668.9019)\\\" x=\\\"0 4.448 6.672 8.896 13.344 16.008 20.456 24.904\\\">attorney</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 548.829 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 551.3562 668.9019)\\\" x=\\\"0 2.224 6.672 11.12 15.12\\\">fees,</text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 668.9019)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 659.8473)\\\" x=\\\"0 4.448 8.896 13.344 15.472 19.92 23.92 28.368 32.816 37.264 41.264 45.712 49.712 51.936 54.064 55.888 58.112 60.24 64.688 66.512 68.336 72.784 78.56 83.008 87.456 89.584 94.032 98.032 100.16 101.984 106.432 112.208\\\">and expenses, * D E M O *by law.</text></g><clipPath id=\\\"clip5-10\\\"><path d=\\\"M 35 633 L 128 633 L 128 657 L 35 657 L 35 633 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-10)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.6 656.6769 L 127.5 656.6769 L 127.5 633.077 L 35.6 633.077 L 35.6 656.6769 z \\\"/><path clip-path=\\\"url(#clip5-10)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.7 652.6769 L 123.4 652.6769 L 123.4 634.5676 L 39.7 634.5676 L 39.7 652.6769 z \\\"/><path clip-path=\\\"url(#clip5-10)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 40.675 652.6769 L 124.675 652.6769 L 124.675 642.6769 L 40.675 642.6769 L 40.675 652.6769 z \\\"/><g clip-path=\\\"url(#clip5-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 40.675 645.3019)\\\" x=\\\"0 7.552 9.376 11.2 13.024 15.152 19.152 23.6 28.048 30.176 34.624 39.072 43.072 45.2 50.536 53.2 57.648 59.472 61.696 64.36 68.808 71.032 72.856 77.304\\\">Will you pay Arbitration</text></g><path clip-path=\\\"url(#clip5-10)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 52.7473 643.6223 L 110.7473 643.6223 L 110.7473 633.6223 L 52.7473 633.6223 L 52.7473 643.6223 z \\\"/><g clip-path=\\\"url(#clip5-10)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 52.7473 636.2473)\\\" x=\\\"0 4.888 9.336 13.784 17.784 19.912 21.736 23.96 26.088 30.088 34.536 38.984 41.112 46.888 48.712 53.16\\\">Fees if you win?</text></g><clipPath id=\\\"clip5-11\\\"><path d=\\\"M 127 633 L 206 633 L 206 657 L 127 657 L 127 633 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-11)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 160.2754 645.3019)\\\" x=\\\"0 5.776 10.224\\\">No.</text></g><clipPath id=\\\"clip5-12\\\"><path d=\\\"M 205 633 L 573 633 L 573 657 L 205 657 L 205 633 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 645.3019)\\\" x=\\\"0 2.224 4.448 6.576 8.8 13.248 17.696 19.824 25.16 27.824 32.272 34.096 36.32 40.768 43.432 45.56 50.008 55.784 60.232 62.896 67.344 71.344 73.472 77.472 81.92 86.368 88.496 90.72 95.168 99.616 104.064 108.064 110.288 112.416 116.416 120.864 125.312 127.44 131.888 136.336 140.784 142.312 144.536 146.664 149.328 153.776 155.6 162.264 166.712 171.16 173.824 177.824 182.272 184.4 188.848 192.848 194.976 197.2 201.648 206.096 208.224 213.56 216.224 220.672 222.496 224.72 227.384 231.832 234.056 235.88 240.328 244.776 246.904 251.792 256.24 260.688 264.688\\\">If the Arbiter awards you funds, you don&apos;t reimburse us the Arbitration Fees.</text></g><clipPath id=\\\"clip5-13\\\"><path d=\\\"M 35 601 L 128 601 L 128 634 L 35 634 L 35 601 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-13)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.6 633.077 L 127.5 633.077 L 127.5 601.9129 L 35.6 601.9129 L 35.6 633.077 z \\\"/><path clip-path=\\\"url(#clip5-13)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.7 629.077 L 123.4 629.077 L 123.4 610.9676 L 39.7 610.9676 L 39.7 629.077 z \\\"/><path clip-path=\\\"url(#clip5-13)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 51.1711 629.077 L 112.1711 629.077 L 112.1711 619.077 L 51.1711 619.077 L 51.1711 629.077 z \\\"/><g clip-path=\\\"url(#clip5-13)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 51.1711 621.702)\\\" x=\\\"0 7.552 9.376 11.2 13.024 15.152 19.152 23.6 28.048 30.176 34.624 38.624 43.072 45.736 47.864 52.312 56.76\\\">Will you ever pay</text></g><path clip-path=\\\"url(#clip5-13)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 51.093 620.0223 L 112.093 620.0223 L 112.093 610.0223 L 51.093 610.0223 L 51.093 620.0223 z \\\"/><g clip-path=\\\"url(#clip5-13)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 51.093 612.6473)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 19.16 23.608 25.832 27.656 32.104 36.552 38.68 43.568 48.016 52.464 56.464\\\">Arbitration Fees?</text></g><clipPath id=\\\"clip5-14\\\"><path d=\\\"M 127 601 L 206 601 L 206 634 L 127 634 L 127 601 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-14)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 152.2715 621.702)\\\" x=\\\"0 5.336 9.784 13.784 16.008 21.784 26.232\\\">Yes/No.</text></g><clipPath id=\\\"clip5-15\\\"><path d=\\\"M 205 601 L 573 601 L 573 634 L 205 634 L 205 601 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 621.702)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 214.0453 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 217.6688 621.702)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 228.7898 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 232.4133 621.702)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.0227 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 259.6461 621.702)\\\" x=\\\"0 4.448 8.896 13.344 17.344 21.792 23.32\\\">doesn&apos;t</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 285.193 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 288.8164 621.702)\\\" x=\\\"0 4.448 10.224 14.672 17.336\\\">award</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 310.6055 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 314.2289 621.702)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 327.1273 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 330.7508 621.702)\\\" x=\\\"0 2.224 6.672 11.12 15.568 19.568\\\">funds,</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 352.5437 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 356.1672 621.702)\\\" x=\\\"0 2.224 6.672 11.12\\\">then</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.7375 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 375.3609 621.702)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 388.2594 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 391.8828 621.702)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 406.9961 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 410.6195 621.702)\\\" x=\\\"0 2.664 7.112 11.56 16.008\\\">repay</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.6312 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 434.2547 621.702)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 445.3758 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 448.9992 621.702)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 19.16 23.608 25.832 27.656 32.104\\\">Arbitration</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 485.5539 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 489.1773 621.702)\\\" x=\\\"0 4.888 9.336 13.784 17.784\\\">Fees.</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 509.1851 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 512.8086 621.702)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.5937 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 530.2172 621.702)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.8265 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 557.45 621.702)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 621.702)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 612.6473)\\\" x=\\\"0 4.448 8.896 12.896 14.72 19.168\\\">decide</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 233.2211 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 236.7228 612.6473)\\\" x=\\\"0 5.776 10.224 14.672 16.896 21.344 25.792\\\">whether</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 265.1838 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 268.6855 612.6473)\\\" x=\\\"0 4 8.448 12.896 14.424 16.248\\\">you&apos;ll</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 286.7597 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 290.2614 612.6473)\\\" x=\\\"0 4.448 8.896 12.896\\\">pay.</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 305.3825 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 308.8842 612.6473)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 313.3295 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 316.8312 612.6473)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.7297 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 333.2314 612.6473)\\\" x=\\\"0 6.664 11.112 15.112\\\">must</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 350.5673 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 354.0691 612.6473)\\\" x=\\\"0 4.448 8.896\\\">pay</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 366.9675 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 370.4692 612.6473)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 19.16 23.608 25.832 27.656 32.104\\\">Arbitration</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 407.0239 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 410.5256 612.6473)\\\" x=\\\"0 4.888 9.336 13.784 17.784\\\">Fees,</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.5334 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 434.0351 612.6473)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 445.1562 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 448.658 612.6473)\\\" x=\\\"0 4.448 11.112 15.56 20.008 24.456\\\">amount</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 475.3415 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 478.8433 612.6473)\\\" x=\\\"0 5.776 10.224 14.672 16.2\\\">won&apos;t</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 497.269 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 500.7708 612.6473)\\\" x=\\\"0 4.448 8.448 12.448 16.896 21.344\\\">exceed</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.5676 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 530.0694 612.6473)\\\" x=\\\"0 4 6.224 10.672 12.896\\\">state</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 547.4131 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 550.9148 612.6473)\\\" x=\\\"0 4 8.448 12.896 15.56\\\">court</text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 612.6473)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 603.5926)\\\" x=\\\"0 4 8.448 12.448 14.672 18.672\\\">costs.</text></g><clipPath id=\\\"clip5-16\\\"><path d=\\\"M 35 534 L 128 534 L 128 602 L 35 602 L 35 534 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-16)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.6 601.9129 L 127.5 601.9129 L 127.5 534.5301 L 35.6 534.5301 L 35.6 601.9129 z \\\"/><path clip-path=\\\"url(#clip5-16)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.7 597.9129 L 123.4 597.9129 L 123.4 579.8035 L 39.7 579.8035 L 39.7 597.9129 z \\\"/><path clip-path=\\\"url(#clip5-16)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 45.2063 597.9129 L 118.2063 597.9129 L 118.2063 587.9129 L 45.2063 587.9129 L 45.2063 597.9129 z \\\"/><g clip-path=\\\"url(#clip5-16)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 45.2063 590.5379)\\\" x=\\\"0 7.552 12 16.448 18.672 20.8 25.248 29.696 34.144 38.592 43.04 47.488 51.488 53.616 55.44 57.664 59.792 63.792 68.24\\\">What happens if you</text></g><path clip-path=\\\"url(#clip5-16)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 73.3 588.8582 L 90.3 588.8582 L 90.3 578.8582 L 73.3 578.8582 L 73.3 588.8582 z \\\"/><g clip-path=\\\"url(#clip5-16)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 73.3 581.4832)\\\" x=\\\"0 5.776 7.6 12.048\\\">win?</text></g><clipPath id=\\\"clip5-17\\\"><path d=\\\"M 127 534 L 206 534 L 206 602 L 127 602 L 127 534 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-17)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 131.9356 590.5379)\\\" x=\\\"0 5.336 9.784 14.232 16.36 20.36 24.808 29.256 31.08 35.528 37.656 42.104 46.552 48.776 50.904 57.568 62.016 64.68\\\">You could get more</text></g><g clip-path=\\\"url(#clip5-17)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 139.2246 581.4832)\\\" x=\\\"0 2.224 6.672 11.12 15.568 17.696 19.92 24.368 28.816 30.944 36.28 38.944 43.392 45.216 47.44 51.888\\\">than the Arbiter</text></g><g clip-path=\\\"url(#clip5-17)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 150.0449 572.4285)\\\" x=\\\"0 4.448 10.224 14.672 17.336 21.784 26.232 30.68\\\">awarded.</text></g><clipPath id=\\\"clip5-18\\\"><path d=\\\"M 205 534 L 573 534 L 573 602 L 205 602 L 205 534 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 590.5379)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 214.0453 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 216.367 590.5379)\\\" x=\\\"0 4.448\\\">an</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 225.2654 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 227.5871 590.5379)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608 25.136\\\">Arbiter&apos;s</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 256.7238 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 259.0455 590.5379)\\\" x=\\\"0 4.448 10.224 14.672 17.336\\\">award</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 280.8345 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 283.1562 590.5379)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 289.8281 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 292.1498 590.5379)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 305.0482 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 307.3699 590.5379)\\\" x=\\\"0 4.448 8.448 12.448 16.896 21.344 25.792\\\">exceeds</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 337.1667 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 339.4884 590.5379)\\\" x=\\\"0 4.448 8.896\\\">our</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 351.0509 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 353.3726 590.5379)\\\" x=\\\"0 1.824 6.272 10.272\\\">last</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 365.8687 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 368.1903 590.5379)\\\" x=\\\"0 5.336 9.784 12.008 14.232 16.056 20.504 27.168 31.616 36.064\\\">Settlement</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 406.4794 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 408.8011 590.5379)\\\" x=\\\"0 6.224 8.448 10.672 15.12 17.784\\\">Offer,</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 428.805 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 431.1266 590.5379)\\\" x=\\\"0 5.776\\\">we</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 441.3532 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 443.6749 590.5379)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.9249 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 457.2465 590.5379)\\\" x=\\\"0 4.448 8.896\\\">pay</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 470.145 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 472.4666 590.5379)\\\" x=\\\"0\\\">3</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 476.9159 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 479.2375 590.5379)\\\" x=\\\"0 4.448 11.112 15.56 20.008 24.456 26.68 30.68\\\">amounts.</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 512.1438 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 514.4654 590.5379)\\\" x=\\\"0 7.552\\\">We</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 526.4654 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 528.7871 590.5379)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 540.0371 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 542.3588 590.5379)\\\" x=\\\"0 4.448 8.896\\\">pay</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 555.2572 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 557.5789 590.5379)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 590.5379)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 581.4832)\\\" x=\\\"0 4.448 7.112 11.56 16.008 18.232 22.68\\\">greater</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 234.9477 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 238.6632 581.4832)\\\" x=\\\"0 4.448\\\">of</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 245.3351 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 249.0506 581.4832)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 260.1717 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 263.8872 581.4832)\\\" x=\\\"0 4.448 10.224 14.672 17.336\\\">award</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 285.6762 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 289.3918 581.4832)\\\" x=\\\"0 4.448 11.112 15.56 20.008 24.456\\\">amount</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 316.0754 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 319.7909 581.4832)\\\" x=\\\"0 4.448\\\">or</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 326.9042 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 330.6197 581.4832)\\\" x=\\\"0 4.448 8.896 13.344 17.792 20.016 24.464\\\">$500.00</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.5376 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 363.2532 581.4832)\\\" x=\\\"0 2.664 5.504 9.952 14.4 18.848 23.296\\\">(&quot;bonus</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 390.5539 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 394.2695 581.4832)\\\" x=\\\"0 4.448 8.896 12.896 19.56 24.008 28.456 30.68 33.52 36.184\\\">payment&quot;).</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 432.6796 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 436.3951 581.4832)\\\" x=\\\"0 7.552\\\">We</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 448.3951 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 452.1107 581.4832)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 463.3607 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 467.0762 581.4832)\\\" x=\\\"0 4.448 8.896\\\">pay</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 479.9746 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 483.6901 581.4832)\\\" x=\\\"0 4 8.448 12.896\\\">your</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.2526 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 502.9682 581.4832)\\\" x=\\\"0 4.448 6.672 8.896 13.344 16.008 20.456 24.904\\\">attorney</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 531.8744 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 535.5899 581.4832)\\\" x=\\\"0 2.224 8 9.824 13.824\\\">twice</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 553.8634 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 557.5789 581.4832)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 581.4832)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 572.4285)\\\" x=\\\"0 4.448 6.672 8.896 13.344 16.008 20.456 24.904\\\">attorney</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 238.5063 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 242.1723 572.4285)\\\" x=\\\"0 2.224 6.672 11.12\\\">fees</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.2934 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 260.9594 572.4285)\\\" x=\\\"0 4 8.448 12.896 15.12 19.568 22.232 24.896 29.344\\\">conferred</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 294.7563 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 298.4224 572.4285)\\\" x=\\\"0 2.664 5.504 9.952 12.176 14.4 18.848 21.512 25.96 30.408\\\">(&quot;attorney</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 332.8325 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 336.4986 572.4285)\\\" x=\\\"0 4.448 7.112 11.56 18.224 20.048 24.496 31.16 34 36.664\\\">premium&quot;).</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.3892 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 379.0552 572.4285)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 383.5005 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 387.1666 572.4285)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 398.2877 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 401.9537 572.4285)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 425.5631 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 429.2291 572.4285)\\\" x=\\\"0 4.448 7.112 11.56 16.008 18.672 22.672\\\">orders,</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.1276 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 457.7936 572.4285)\\\" x=\\\"0 5.776\\\">we</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.0202 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 471.6862 572.4285)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 482.9362 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 486.6023 572.4285)\\\" x=\\\"0 4.448 8.896\\\">pay</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 499.5007 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 503.1667 572.4285)\\\" x=\\\"0 2.664 7.112 11.56 15.56 20.008 24.456 28.904 33.352 35.176\\\">reasonable</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 542.7996 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 546.4656 572.4285)\\\" x=\\\"0 4.448 8.448 12.896 17.344 20.008\\\">expert</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 572.4285)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 563.3738)\\\" x=\\\"0 5.776 7.6 9.824 14.272 18.72 22.72\\\">witness</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 236.3227 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 238.5023 563.3738)\\\" x=\\\"0 4 8.448 12.448 14.672\\\">costs</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 257.1741 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 259.3537 563.3738)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 272.7014 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 274.881 563.3738)\\\" x=\\\"0 4.448 6.672 11.12 15.568\\\">other</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 293.1153 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 295.2949 563.3738)\\\" x=\\\"0 4 8.448 12.448 14.672\\\">costs</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 313.9668 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 316.1464 563.3738)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 329.0448 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 331.2244 563.3738)\\\" x=\\\"0 1.824 6.272 10.272 14.72 17.384 20.048 24.496\\\">incurred</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 360.1736 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 362.3532 563.3738)\\\" x=\\\"0 2.664 5.504 9.504 13.952 17.952\\\">(&quot;cost</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 382.529 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 384.7086 563.3738)\\\" x=\\\"0 4.448 7.112 11.56 18.224 20.048 24.496 31.16 34 36.664\\\">premium&quot;).</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 423.5992 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 425.7788 563.3738)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 430.2241 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 432.4037 563.3738)\\\" x=\\\"0 5.776\\\">we</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 442.6303 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 444.8099 563.3738)\\\" x=\\\"0 4.448 8.896 12.896 17.344\\\">never</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 464.8216 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 467.0012 563.3738)\\\" x=\\\"0 6.664 11.112 15.56\\\">made</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 487.0129 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 489.1925 563.3738)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 493.6417 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 495.8213 563.3738)\\\" x=\\\"0 5.336 9.784 12.008 14.232 16.056 20.504 27.168 31.616 36.064\\\">Settlement</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 534.1103 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 536.2899 563.3738)\\\" x=\\\"0 6.224 8.448 10.672 15.12 17.784\\\">Offer,</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 556.2938 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 558.4734 563.3738)\\\" x=\\\"0 5.776\\\">we</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 563.3738)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 554.3191)\\\" x=\\\"0 5.776 7.6 9.424\\\">will</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 220.85 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 224.1983 554.3191)\\\" x=\\\"0 4.448 8.896\\\">pay</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 237.0968 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 240.4451 554.3191)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 251.5662 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 254.9145 554.3191)\\\" x=\\\"0 4.448 8.896 13.344 17.792\\\">bonus</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 276.7114 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 280.0597 554.3191)\\\" x=\\\"0 4.448 8.896 12.896 19.56 24.008 28.456 30.68\\\">payment,</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.966 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 316.3143 554.3191)\\\" x=\\\"0 4.448 6.672 8.896 13.344 16.008 20.456 24.904\\\">attorney</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 345.2206 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 348.5689 554.3191)\\\" x=\\\"0 4.448 7.112 11.56 18.224 20.048 24.496 31.16\\\">premium,</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 381.9556 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 385.3039 554.3191)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 398.6516 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 401.9999 554.3191)\\\" x=\\\"0 4.448 8.896\\\">any</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 414.8984 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 418.2467 554.3191)\\\" x=\\\"0 4 8.448 12.448\\\">cost</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 432.9186 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 436.2669 554.3191)\\\" x=\\\"0 4.448 7.112 11.56 18.224 20.048 24.496 31.16\\\">premium.</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 469.6536 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 473.002 554.3191)\\\" x=\\\"0 4.888 9.336\\\">The</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 486.7871 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 490.1355 554.3191)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944\\\">Arbiter</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 513.7448 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 517.0932 554.3191)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 532.2064 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 535.5548 554.3191)\\\" x=\\\"0 4.448 7.112 11.56 16.008\\\">order</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 554.2306 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 557.5789 554.3191)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 554.3191)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 545.2645)\\\" x=\\\"0 4.448 7.112 11.56 15.56 20.008 24.008\\\">process</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 237.6117 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 240.0494 545.2645)\\\" x=\\\"0 2.224 6.672\\\">for</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 249.3853 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 251.8229 545.2645)\\\" x=\\\"0 4.448 8.896 12.896 19.56 24.008 28.456 30.68\\\">payment.</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 284.7292 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 287.1668 545.2645)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 291.6121 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 294.0498 545.2645)\\\" x=\\\"0\\\">a</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 298.499 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 300.9366 545.2645)\\\" x=\\\"0 1.824 6.272\\\">law</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 312.9874 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 315.425 545.2645)\\\" x=\\\"0 4.448 6.272 8.096 12.544 18.32\\\">allows</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 337.7493 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 340.1869 545.2645)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 353.0853 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 355.523 545.2645)\\\" x=\\\"0 6.664 11.112 13.776 18.224\\\">more,</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 375.9722 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 378.4098 545.2645)\\\" x=\\\"0 2.224 6.672 8.496\\\">this</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 390.9059 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 393.3436 545.2645)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496\\\">Clause</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 418.2928 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 420.7304 545.2645)\\\" x=\\\"0 5.776 10.224 14.672 16.2\\\">won&apos;t</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 439.1562 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 441.5938 545.2645)\\\" x=\\\"0 4.448 7.112 11.56 15.56 20.008 24.456\\\">prevent</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 468.2774 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 470.7151 545.2645)\\\" x=\\\"0 4 8.448 12.448\\\">such</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 487.6135 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 490.0511 545.2645)\\\" x=\\\"0 4.448 10.224 14.672 17.336 21.784\\\">award.</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 514.0628 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 516.5005 545.2645)\\\" x=\\\"0 7.552\\\">We</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 528.5005 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 530.9381 545.2645)\\\" x=\\\"0 5.776 10.224 14.672 16.2\\\">won&apos;t</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 549.3639 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 551.8015 545.2645)\\\" x=\\\"0 4 8.448 12.896\\\">seek</text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 545.2645)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 536.2098)\\\" x=\\\"0 4.448 6.672 8.896 13.344 16.008 20.456 24.904 28.904 31.032 33.256 37.704 42.152 46.152 48.28 52.728 57.176 61.624 63.752 68.2 72.2 76.648 81.096 85.544 89.544 93.992 97.992\\\">attorney fees and expenses.</text></g><clipPath id=\\\"clip5-19\\\"><path d=\\\"M 35 510 L 128 510 L 128 535 L 35 535 L 35 510 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-19)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.6 534.5301 L 127.5 534.5301 L 127.5 510.5301 L 35.6 510.5301 L 35.6 534.5301 z \\\"/><path clip-path=\\\"url(#clip5-19)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.7 530.5301 L 123.4 530.5301 L 123.4 512.4207 L 39.7 512.4207 L 39.7 530.5301 z \\\"/><path clip-path=\\\"url(#clip5-19)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 51.2317 530.5301 L 112.2317 530.5301 L 112.2317 520.5301 L 51.2317 520.5301 L 51.2317 530.5301 z \\\"/><g clip-path=\\\"url(#clip5-19)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 51.2317 523.1551)\\\" x=\\\"0 5.776 10.224 14.672 16.8 21.248 25.696 27.824 32.272 38.048 42.496 45.16 49.608 51.736 56.184\\\">Can an award be</text></g><path clip-path=\\\"url(#clip5-19)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 62.1535 521.4754 L 101.1535 521.4754 L 101.1535 511.4754 L 62.1535 511.4754 L 62.1535 521.4754 z \\\"/><g clip-path=\\\"url(#clip5-19)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 62.1535 514.1004)\\\" x=\\\"0 4.448 8.448 12.896 14.72 19.168 20.992 25.44 29.888 34.336\\\">explained?</text></g><clipPath id=\\\"clip5-20\\\"><path d=\\\"M 127 510 L 206 510 L 206 535 L 127 535 L 127 510 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-20)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 158.4961 523.1551)\\\" x=\\\"0 5.336 9.784 13.784\\\">Yes.</text></g><clipPath id=\\\"clip5-21\\\"><path d=\\\"M 205 510 L 573 510 L 573 535 L 205 535 L 205 510 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 523.1551)\\\" x=\\\"0\\\">A</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 214.9359 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 218.2265 523.1551)\\\" x=\\\"0 4.448 8.896 11.56 13.784\\\">party</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 236.0117 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 239.3023 523.1551)\\\" x=\\\"0 6.664 11.112\\\">may</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 254.4155 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 257.7061 523.1551)\\\" x=\\\"0 2.664 7.112 11.56 16.008 20.456 24.456\\\">request</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 284.3897 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 287.6803 523.1551)\\\" x=\\\"0 4.448 8.896 11.12 15.568 17.392 19.216\\\">details</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 310.899 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 314.1896 523.1551)\\\" x=\\\"0 2.224 4.888 9.336\\\">from</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 330.1896 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 333.4802 523.1551)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 344.6013 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 347.8919 523.1551)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608\\\">Arbiter,</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 373.7239 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 377.0145 523.1551)\\\" x=\\\"0 5.776 7.6 9.824 14.272 16.096\\\">within</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 397.5613 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 400.8519 523.1551)\\\" x=\\\"0 4.448\\\">14</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 409.7504 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 413.0409 523.1551)\\\" x=\\\"0 4.448 8.896 12.896\\\">days</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 429.9394 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 433.23 523.1551)\\\" x=\\\"0 4.448\\\">of</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 439.9018 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 443.1924 523.1551)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 454.3135 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 457.6041 523.1551)\\\" x=\\\"0 2.664 7.112 8.936 10.76 15.208 19.656\\\">ruling.</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 479.4869 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 482.7775 523.1551)\\\" x=\\\"0 5.776 10.224 14.672\\\">Upon</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 501.9025 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 505.193 523.1551)\\\" x=\\\"0 4 8.448 12.448\\\">such</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 522.0915 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 525.3821 523.1551)\\\" x=\\\"0 2.664 7.112 11.56 16.008 20.456 24.456 26.68\\\">request,</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 554.2883 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 557.5789 523.1551)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 523.1551)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 514.1004)\\\" x=\\\"0 5.336 8 12.448 14.272 16.496 20.944 23.608 25.736 31.512 33.336 35.16 36.984 39.112 43.56 47.56 52.008 53.832 58.28 60.104 64.552 66.68 68.904 73.352 77.8 79.928 82.592 87.04 88.864 90.688 95.136 99.584 101.712 103.536 107.984 110.112 115.888 118.552 120.376 122.6 124.424 128.872 133.32\\\">Arbiter will explain the ruling in writing.</text></g><clipPath id=\\\"clip5-22\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 704.777 L 128 704.777 L 128 703.777 L 35.1 703.777 L 35.1 704.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 703.777 L 36.1 703.777 L 36.1 680.777 L 35.1 680.777 L 35.1 703.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128 704.777 L 206 704.777 L 206 703.777 L 128 703.777 L 128 704.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127 703.777 L 128 703.777 L 128 680.777 L 127 680.777 L 127 703.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 704.777 L 573.3 704.777 L 573.3 703.777 L 206 703.777 L 206 704.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.3 703.777 L 573.3 703.777 L 573.3 680.777 L 572.3 680.777 L 572.3 703.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 703.777 L 206 703.777 L 206 680.777 L 205 680.777 L 205 703.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 680.777 L 128 680.777 L 128 679.777 L 35.1 679.777 L 35.1 680.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 679.777 L 36.1 679.777 L 36.1 657.1769 L 35.1 657.1769 L 35.1 679.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128 680.777 L 206 680.777 L 206 679.777 L 128 679.777 L 128 680.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127 679.777 L 128 679.777 L 128 657.1769 L 127 657.1769 L 127 679.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 680.777 L 573.3 680.777 L 573.3 679.777 L 206 679.777 L 206 680.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.3 679.777 L 573.3 679.777 L 573.3 657.1769 L 572.3 657.1769 L 572.3 679.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 679.777 L 206 679.777 L 206 657.1769 L 205 657.1769 L 205 679.777 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 657.1769 L 128 657.1769 L 128 656.1769 L 35.1 656.1769 L 35.1 657.1769 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 656.1769 L 36.1 656.1769 L 36.1 633.577 L 35.1 633.577 L 35.1 656.1769 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128 657.1769 L 206 657.1769 L 206 656.1769 L 128 656.1769 L 128 657.1769 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127 656.1769 L 128 656.1769 L 128 633.577 L 127 633.577 L 127 656.1769 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 657.1769 L 573.3 657.1769 L 573.3 656.1769 L 206 656.1769 L 206 657.1769 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.3 656.1769 L 573.3 656.1769 L 573.3 633.577 L 572.3 633.577 L 572.3 656.1769 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 656.1769 L 206 656.1769 L 206 633.577 L 205 633.577 L 205 656.1769 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 633.577 L 128 633.577 L 128 632.577 L 35.1 632.577 L 35.1 633.577 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 632.577 L 36.1 632.577 L 36.1 602.4129 L 35.1 602.4129 L 35.1 632.577 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128 633.577 L 206 633.577 L 206 632.577 L 128 632.577 L 128 633.577 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127 632.577 L 128 632.577 L 128 602.4129 L 127 602.4129 L 127 632.577 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 633.577 L 573.3 633.577 L 573.3 632.577 L 206 632.577 L 206 633.577 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.3 632.577 L 573.3 632.577 L 573.3 602.4129 L 572.3 602.4129 L 572.3 632.577 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 632.577 L 206 632.577 L 206 602.4129 L 205 602.4129 L 205 632.577 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 602.4129 L 128 602.4129 L 128 601.4129 L 35.1 601.4129 L 35.1 602.4129 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 601.4129 L 36.1 601.4129 L 36.1 535.0301 L 35.1 535.0301 L 35.1 601.4129 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128 602.4129 L 206 602.4129 L 206 601.4129 L 128 601.4129 L 128 602.4129 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127 601.4129 L 128 601.4129 L 128 535.0301 L 127 535.0301 L 127 601.4129 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 602.4129 L 573.3 602.4129 L 573.3 601.4129 L 206 601.4129 L 206 602.4129 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.3 601.4129 L 573.3 601.4129 L 573.3 535.0301 L 572.3 535.0301 L 572.3 601.4129 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 601.4129 L 206 601.4129 L 206 535.0301 L 205 535.0301 L 205 601.4129 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 535.0301 L 128 535.0301 L 128 534.0301 L 35.1 534.0301 L 35.1 535.0301 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 511.0301 L 128 511.0301 L 128 510.0301 L 35.1 510.0301 L 35.1 511.0301 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 534.0301 L 36.1 534.0301 L 36.1 511.0301 L 35.1 511.0301 L 35.1 534.0301 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128 535.0301 L 206 535.0301 L 206 534.0301 L 128 534.0301 L 128 535.0301 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128 511.0301 L 206 511.0301 L 206 510.0301 L 128 510.0301 L 128 511.0301 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127 534.0301 L 128 534.0301 L 128 511.0301 L 127 511.0301 L 127 534.0301 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 535.0301 L 573.3 535.0301 L 573.3 534.0301 L 206 534.0301 L 206 535.0301 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 511.0301 L 573.3 511.0301 L 573.3 510.0301 L 206 510.0301 L 206 511.0301 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.3 534.0301 L 573.3 534.0301 L 573.3 511.0301 L 572.3 511.0301 L 572.3 534.0301 z \\\"/><path clip-path=\\\"url(#clip5-22)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 534.0301 L 206 534.0301 L 206 511.0301 L 205 511.0301 L 205 534.0301 z \\\"/><g clip-path=\\\"url(#clip5-22)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 273.1062 500.3113)\\\" x=\\\"0 7.78 10.56 16.12 21.68 25.01 27.67 35.45 41.01 43.79 46.07 51.63 57.19\\\">Other Options</text></g><clipPath id=\\\"clip5-23\\\"><path d=\\\"M 35 438 L 128 438 L 128 490 L 35 490 L 35 438 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-23)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.6 489.107 L 127.5 489.107 L 127.5 438.107 L 35.6 438.107 L 35.6 489.107 z \\\"/><path clip-path=\\\"url(#clip5-23)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.7 485.607 L 123.4 485.607 L 123.4 458.443 L 39.7 458.443 L 39.7 485.607 z \\\"/><path clip-path=\\\"url(#clip5-23)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 48.2942 485.607 L 115.2942 485.607 L 115.2942 475.607 L 48.2942 475.607 L 48.2942 485.607 z \\\"/><g clip-path=\\\"url(#clip5-23)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 48.2942 478.232)\\\" x=\\\"0 2.224 4.448 6.576 10.576 15.024 19.472 21.6 26.048 30.496 34.944 36.472 38.696 40.824 46.6 51.048 55.496 57.72 59.848 62.072\\\">If you don&apos;t want to</text></g><path clip-path=\\\"url(#clip5-23)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 43.8078 476.5524 L 119.8078 476.5524 L 119.8078 466.5524 L 43.8078 466.5524 L 43.8078 476.5524 z \\\"/><g clip-path=\\\"url(#clip5-23)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 43.8078 469.1774)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 29.392 31.616 33.744 37.744 42.192 46.64 48.768 52.768 57.216 61.664 63.792 67.792 70.016 71.84 73.664\\\">arbitrate, can you still</text></g><path clip-path=\\\"url(#clip5-23)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 49.8254 467.4977 L 113.8254 467.4977 L 113.8254 457.4977 L 49.8254 457.4977 L 49.8254 467.4977 z \\\"/><g clip-path=\\\"url(#clip5-23)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 49.8254 460.1227)\\\" x=\\\"0 4.448 8.896 11.12 13.248 17.696 19.824 22.048 24.712 29.16 33.608 37.608 42.056 46.056 48.28 50.104 54.552 59\\\">get a transaction?</text></g><clipPath id=\\\"clip5-24\\\"><path d=\\\"M 127 438 L 206 438 L 206 490 L 127 490 L 127 438 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-24)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.1817 478.232)\\\" x=\\\"0 5.336 9.784 13.784 16.008 18.136 23.472 27.92 32.368 34.496 38.496 42.944 47.392 49.52 53.968 58.416\\\">Yes. You can get</text></g><g clip-path=\\\"url(#clip5-24)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 137.2266 469.1774)\\\" x=\\\"0 4.448 8.896 11.56 13.688 17.688 22.136 24.8 28.8 30.624 34.624 39.072 43.072 45.2 49.648 54.096\\\">our* D E M O *nd</text></g><g clip-path=\\\"url(#clip5-24)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 143.668 460.1227)\\\" x=\\\"0 4.448 8.896 12.896 14.72 19.168 23.616 25.744 30.192 34.64 36.864 38.992 41.216\\\">decide not to</text></g><g clip-path=\\\"url(#clip5-24)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 150.6914 451.068)\\\" x=\\\"0 4.448 7.112 11.56 13.384 15.608 18.272 22.72 24.944 29.392\\\">arbitrate.</text></g><clipPath id=\\\"clip5-25\\\"><path d=\\\"M 205 438 L 573 438 L 573 490 L 205 490 L 205 438 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-25)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 478.232)\\\" x=\\\"0 5.776 10.224 14.672 18.672 20.496 24.944 29.392 32.056 34.184 36.408 40.856 45.304 49.304 53.752 55.88 59.88 64.328 68.776 70.6 74.6 79.048 83.048\\\">Consider these choices:</text></g><g clip-path=\\\"url(#clip5-25)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 469.1774)\\\" x=\\\"0 4.448 6.672 8.8 11.024 15.472 17.696 22.144 24.808 31.472 35.92 37.744 39.872 45.648 47.472 51.472 55.92 60.368 62.592 67.04 69.168 74.944 79.392 83.392 87.84 89.664 94.112 96.336 98.16 102.608 107.056 109.28 111.408 117.184 121.632 126.08 128.304 132.752 136.752 138.976 141.104 145.552 149.552 151.776 153.904 158.352 162.8 167.248 169.376 173.824 176.048 178.272 182.72 189.384 193.832 196.056 198.184 200.408 204.856 206.984 210.984 215.432 217.656 219.88 221.704 226.152 228.28 232.728 237.176 241.176 243.304 249.08 250.904 254.904 259.352 263.8 266.024 270.472 274.472\\\">1. Informal Dispute Resolution. Contact us, and attempt to settle any Disputes.</text></g><g clip-path=\\\"url(#clip5-25)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 460.1227)\\\" x=\\\"0 4.448 6.672 8.8 14.136 20.8 25.248 27.072 28.896 31.56 35.56 37.384 41.832 43.656 50.32 54.32 56.448 62.224 66.672 71.12 73.784 76.008 78.232 80.36 85.696 90.144 94.592 98.592 100.72 102.944 107.392 109.52 113.52 117.968 119.792 123.792 128.24 130.368 136.144 137.968 141.968 146.416 150.864 153.088 157.536 161.536 163.664 165.488 169.936 172.064 176.064 182.728 187.176 189 190.824 193.488 197.488 199.312 203.76 205.584 212.248 216.248 218.376 222.376 226.824 231.272 233.936 236.16 238.384 240.512 246.288 248.112 250.336 254.784 256.608 261.056 263.184 267.184 269.408 273.856 276.08 280.528 282.656 284.48 288.928 294.704 296.832 298.656 300.48 307.144 308.968 311.192 315.192\\\">2. Small-claims Court. Seek to solve Disputes in small-claims court, within state law limits.</text></g><g clip-path=\\\"url(#clip5-25)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 451.068)\\\" x=\\\"0 4.448 6.672 8.8 15.024 19.472 21.696 23.824 28.272 30.4 34.848 39.296 43.744 47.744 52.192 54.32 61.872 63.696 65.92 70.368 74.816 79.264 81.488 83.616 85.84 90.288 94.736 96.864 102.64 104.464 108.912 113.36 117.36 121.808 124.032 126.16 133.712 136.376 138.2 140.424 144.872 147 149.224 153.672 155.8 160.248 164.248 166.376 170.824 175.272 179.72 181.848 186.296 190.296 194.296 196.424 198.648 203.096 205.76 207.888 212.336 216.784 218.912 224.248 228.696 231.36 235.808 240.256 246.92 251.368 255.816 258.04 260.168 265.944 267.768 269.992 274.44 278.888 283.336 285.56 287.688 289.912 294.36 298.808 300.936 306.712 308.536 312.984 317.432 321.432 325.88\\\">3. Get a Lease Without the Clause. Write to us and ask for an Agreement without the Clause.</text></g><g clip-path=\\\"url(#clip5-25)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 442.0133)\\\" x=\\\"0 4.448 6.672 8.8 15.024 19.472 21.696 24.36 30.584 35.032 37.256 39.384 43.832 46.056 48.184 53.52 56.184 60.632 62.456 64.68 67.344 71.792 74.016 75.84 80.288 84.736 86.96 89.088 94.424 96.248 100.696 105.144 107.272 111.72 116.168 120.616 122.744 124.968 129.416 133.864 138.312 140.44 142.664 144.488 151.152 155.6 157.424 161.424 163.552 168 172.448 174.672 177.336 181.784 186.232 188.456\\\">4. Opt-Out of Arbitration. Sign and then timely opt-out.</text></g><clipPath id=\\\"clip5-26\\\"><path d=\\\"M 35 405 L 128 405 L 128 439 L 35 439 L 35 405 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-26)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 35.6 438.107 L 127.5 438.107 L 127.5 405.107 L 35.6 405.107 L 35.6 438.107 z \\\"/><path clip-path=\\\"url(#clip5-26)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 39.7 434.607 L 123.4 434.607 L 123.4 416.4977 L 39.7 416.4977 L 39.7 434.607 z \\\"/><path clip-path=\\\"url(#clip5-26)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 42.1633 434.607 L 121.1633 434.607 L 121.1633 424.607 L 42.1633 424.607 L 42.1633 434.607 z \\\"/><g clip-path=\\\"url(#clip5-26)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 42.1633 427.232)\\\" x=\\\"0 5.776 10.224 14.672 16.8 20.8 25.248 29.696 31.824 36.272 40.72 42.944 45.608 50.056 54.504 56.728 58.856 63.304 65.528 67.656 69.88 74.328\\\">Can you opt-out of the</text></g><path clip-path=\\\"url(#clip5-26)\\\" fill=\\\"#e7e7f8\\\" stroke=\\\"none\\\" d=\\\"M 66.8508 425.5524 L 96.8508 425.5524 L 96.8508 415.5524 L 66.8508 415.5524 L 66.8508 425.5524 z \\\"/><g clip-path=\\\"url(#clip5-26)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 66.8508 418.1774)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496 24.944\\\">Clause?</text></g><clipPath id=\\\"clip5-27\\\"><path d=\\\"M 127 405 L 206 405 L 206 439 L 127 439 L 127 405 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-27)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 140.7617 427.232)\\\" x=\\\"0 5.336 9.784 13.784 16.008 18.136 25.688 27.512 29.736 34.184 36.008 40.456 42.584 47.032\\\">Yes. Within 60</text></g><g clip-path=\\\"url(#clip5-27)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 156.9395 418.1774)\\\" x=\\\"0 4.448 8.896 12.896 16.896\\\">days.</text></g><clipPath id=\\\"clip5-28\\\"><path d=\\\"M 205 405 L 573 405 L 573 439 L 205 439 L 205 405 z \\\"/></clipPath><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 427.232)\\\" x=\\\"0 7.552 10.216 12.04 14.264\\\">Write</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 228.3109 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 232.8069 427.232)\\\" x=\\\"0 4.448\\\">us</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 241.2562 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 245.7522 427.232)\\\" x=\\\"0 5.776 7.6 9.824 14.272 16.096\\\">within</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 266.299 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 270.795 427.232)\\\" x=\\\"0 4.448\\\">60</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 279.6935 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 284.1895 427.232)\\\" x=\\\"0 4 8.448 10.272 14.72 19.168 23.616 28.064\\\">calendar</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 314.9238 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 319.4198 427.232)\\\" x=\\\"0 4.448 8.896 12.896\\\">days</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 336.3183 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 340.8143 427.232)\\\" x=\\\"0 4.448\\\">of</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 347.4861 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 351.9821 427.232)\\\" x=\\\"0 4 5.824 10.272 14.72 16.544 20.992\\\">signing</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 377.4274 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 381.9234 427.232)\\\" x=\\\"0 4 8.448 12.896\\\">your</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 397.4859 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 401.9819 427.232)\\\" x=\\\"0 4.448 8.896 11.56 16.008 20.456 27.12 31.568 36.016\\\">agreement</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 440.228 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 444.724 427.232)\\\" x=\\\"0 2.224\\\">to</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 451.3959 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 455.8919 427.232)\\\" x=\\\"0 4.448 8.896 11.12 13.784 18.232 22.68\\\">opt-out</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 480.7981 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 485.2941 427.232)\\\" x=\\\"0 4.448\\\">of</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 491.966 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 496.462 427.232)\\\" x=\\\"0 2.224 6.672\\\">the</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 507.5831 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 512.0791 427.232)\\\" x=\\\"0 5.776 7.6 12.048 16.496 20.496\\\">Clause</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 537.0283 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 541.5243 427.232)\\\" x=\\\"0 2.224 6.672\\\">for</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 550.8602 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 555.3562 427.232)\\\" x=\\\"0 2.224 6.672 11.12\\\">that</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 427.232)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 209.6 418.1774)\\\" x=\\\"0 4.448 8.896 11.56 16.008 20.456 27.12 31.568 36.016 38.24\\\">agreement.</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 250.0688 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 252.4616 418.1774)\\\" x=\\\"0 4.448 6.272 10.272\\\">List</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 264.9577 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 267.3505 418.1774)\\\" x=\\\"0 4 8.448 12.896\\\">your</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 282.913 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 285.3058 418.1774)\\\" x=\\\"0 4.448 8.896 15.56 20.008\\\">name,</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 307.5402 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 309.933 418.1774)\\\" x=\\\"0 4.448 8.896 13.344 16.008 20.456 24.456 28.456\\\">address,</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 340.6166 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 343.0095 418.1774)\\\" x=\\\"0 4.448 8.448 12.448 16.896 21.344 25.792\\\">account</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 371.029 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 373.4218 418.1774)\\\" x=\\\"0 4.448 8.896 15.56 20.008 24.456\\\">number</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 400.5468 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 402.9397 418.1774)\\\" x=\\\"0 4.448 8.896\\\">and</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 416.2873 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 418.6801 418.1774)\\\" x=\\\"0 4.448 8.896 11.12 15.568\\\">date.</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 436.4731 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 438.8659 418.1774)\\\" x=\\\"0 4.448 6.272 10.272\\\">List</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 451.362 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 453.7549 418.1774)\\\" x=\\\"0 2.224 6.672 11.12\\\">that</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 467.0986 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 469.4914 418.1774)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 482.3899 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 484.7827 418.1774)\\\" x=\\\"0 2.84 7.288 11.736\\\">&quot;opt</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 498.7437 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 501.1365 418.1774)\\\" x=\\\"0 4.448 8.896 11.12 13.344\\\">out.&quot;</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 517.3201 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 519.7129 418.1774)\\\" x=\\\"0 2.224\\\">If</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 524.1582 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 526.551 418.1774)\\\" x=\\\"0 4 8.448\\\">you</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 539.4495 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 541.8423 418.1774)\\\" x=\\\"0 4.448 8.896\\\">opt</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 552.9634 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 555.3562 418.1774)\\\" x=\\\"0 4.448 8.896 11.12\\\">out,</text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 568.7 418.1774)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip5-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 209.6 409.1227)\\\" x=\\\"0 1.824 4.048 6.176 11.952 13.776 15.6 17.424 19.552 24 28.448 30.272 34.272 36.4 40.848 45.296 49.744 51.568 55.568 57.696 59.92 64.368 66.496 68.72 73.168 77.616 79.84 81.968 86.416 90.864 93.528 97.976 102.424 109.088 113.536 117.984 120.208\\\">it will only apply to that agreement.</text></g><clipPath id=\\\"clip5-29\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 489.607 L 128 489.607 L 128 488.607 L 35.1 488.607 L 35.1 489.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 488.607 L 36.1 488.607 L 36.1 438.607 L 35.1 438.607 L 35.1 488.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128 489.607 L 206 489.607 L 206 488.607 L 128 488.607 L 128 489.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127 488.607 L 128 488.607 L 128 438.607 L 127 438.607 L 127 488.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 489.607 L 573.3 489.607 L 573.3 488.607 L 206 488.607 L 206 489.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.3 488.607 L 573.3 488.607 L 573.3 438.607 L 572.3 438.607 L 572.3 488.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 488.607 L 206 488.607 L 206 438.607 L 205 438.607 L 205 488.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 438.607 L 128 438.607 L 128 437.607 L 35.1 437.607 L 35.1 438.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 405.607 L 128 405.607 L 128 404.607 L 35.1 404.607 L 35.1 405.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 35.1 437.607 L 36.1 437.607 L 36.1 405.607 L 35.1 405.607 L 35.1 437.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128 438.607 L 206 438.607 L 206 437.607 L 128 437.607 L 128 438.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 128 405.607 L 206 405.607 L 206 404.607 L 128 404.607 L 128 405.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 127 437.607 L 128 437.607 L 128 405.607 L 127 405.607 L 127 437.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 438.607 L 573.3 438.607 L 573.3 437.607 L 206 437.607 L 206 438.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 206 405.607 L 573.3 405.607 L 573.3 404.607 L 206 404.607 L 206 405.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 572.3 437.607 L 573.3 437.607 L 573.3 405.607 L 572.3 405.607 L 572.3 437.607 z \\\"/><path clip-path=\\\"url(#clip5-29)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 205 437.607 L 206 437.607 L 206 405.607 L 205 405.607 L 205 437.607 z \\\"/><g clip-path=\\\"url(#clip5-29)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 162.1492 377.7699)\\\" x=\\\"0 6.67 10 12.28 17.84 20.62 23.28 28.84 34.4 39.96 42.62 45.95 51.51 54.29 59.85 62.13 67.69 70.35 75.91 78.57 84.13 89.69 93.02 98.58 101.24 106.24 111.8 117.36 122.36 125.02 130.58 133.91 136.57 142.13 144.41 149.97 154.97 157.75 161.08 166.64 172.2 174.48 179.48 182.14 187.14 192.7 198.26 203.26 205.92 211.48 214.26 216.92 219.7 225.26 227.54 232.54 235.2 241.87 247.43 250.76 256.32 261.88 270.21 275.77 281.33\\\">Print and retain a hard copy or electronic copy of this Agreement</text></g><g clip-path=\\\"url(#clip5-29)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 36.5264)\\\" x=\\\"0 6.498 11.997 14.391 16.785 21.789 26.793 29.295 34.299 39.303 44.307 504 506.3906 508.7812 511.1719 513.5625 515.9531 518.3438 520.7344 523.125 525.5156\\\">UT  07/2019          </text></g><g clip-path=\\\"url(#clip5-29)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 26.3398)\\\" x=\\\"0 6.003 11.007 16.011 21.015\\\">Page </text></g><g clip-path=\\\"url(#clip5-29)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 55.8097 26.3398)\\\" x=\\\"0\\\">6</text></g><g clip-path=\\\"url(#clip5-29)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.815 26.3398)\\\" x=\\\"0 2.394 7.398 9.9\\\"> of </text></g><g clip-path=\\\"url(#clip5-29)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f5-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 73.1021 26.3398)\\\" x=\\\"0\\\">7</text></g><g clip-path=\\\"url(#clip5-29)\\\"><text stroke=\\\"none\\\" fill=\\\"#d9d9d9\\\" style=\\\"font-family:f5-0; font-size:54pt; white-space:pre\\\" transform=\\\"matrix(0.707 0.707 0.707 -0.707 135.6027 198.5094)\\\" x=\\\"0 56.016 96.048 136.08 176.112 216.144 236.16 284.184 324.216 344.232 364.248 416.232 456.264 480.24\\\">Qoppa Software</text></g><g clip-path=\\\"url(#clip5-29)\\\"><text stroke=\\\"none\\\" fill=\\\"#002ba6\\\" style=\\\"font-family:f5-0; font-size:9pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.932 772)\\\" x=\\\"0 9.336 16.008 22.68 29.352 36.024 39.36 47.364 54.036 57.372 60.708 69.372 76.044 80.04 86.712 90.048 94.044 97.38 104.712 111.384 115.38 118.716 126.72 132.72 139.392 142.056 148.728 155.4 158.736 161.4 168.072 174.744 178.08 187.416 194.088 196.752 202.752 206.088 210.084 213.42 220.092 223.428 226.764 233.436 239.436 242.772 246.108 249.444 258.108 266.772 275.436 278.772 285.444 292.116 298.788 305.46 312.132 315.468 321.468 328.14\\\">Qoppa Software - For Evaluation Only - https://www.qoppa.com</text></g></g></svg></svg></g></svg><br>\\n<?xml version='1.0' encoding='UTF-8'?><svg id=\\\"qoppa_document\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" version=\\\"1.1\\\" xmlns=\\\"http://www.w3.org/2000/svg\\\" xmlns:xlink=\\\"http://www.w3.org/1999/xlink\\\"><!-- jPDFWeb v2019R1.03 - Demo Version --><style>title p { display: block; }</style><g id=\\\"qoppa_viewxform\\\" transform=\\\"matrix(1 0 0 1 0 0)\\\"><style type=\\\"text/css\\\">@font-face {font-family:f6-0;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f6-1;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}@font-face {font-family:f6-2;src:url(\\\"data:application/font-woff;charset=utf-8;base64,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\\\");}</style><svg id=\\\"qoppa_page_p6\\\" class=\\\"qoppa_page\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\"><rect class=\\\"qoppa_pageborder\\\" x=\\\"0.5pt\\\" y=\\\"0.5pt\\\" width=\\\"611pt\\\" height=\\\"791pt\\\" fill=\\\"none\\\" /><svg class=\\\"qoppa_pagecontents\\\" x=\\\"0pt\\\" y=\\\"0pt\\\" width=\\\"612pt\\\" height=\\\"792pt\\\" viewBox=\\\"0 0 612 792\\\" ><g class=\\\"qoppa_contentstream\\\" transform=\\\"matrix(1 0 0 -1 0 792)\\\" fill=\\\"black\\\" stroke=\\\"black\\\" stroke-width=\\\"1\\\" stroke-linecap=\\\"butt\\\" stroke-linejoin=\\\"miter\\\" stroke-miterlimit=\\\"10\\\"><clipPath id=\\\"clip6-1\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 284.4843 735.5809)\\\" x=\\\"0 6.67 11.67 17.23 19.51 25.07 27.35\\\">Exhibit</text></g><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(0.99 0 0 -1 314.4843 735.5809)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 317.4843 735.5809)\\\" x=\\\"0\\\">A</text></g><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 94.4 699.1621)\\\" x=\\\"0 3.2783 9.3398 14.8398 20.9014 23.6816 29.1816\\\">Invoice</text></g><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 129.6432 699.1621)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 132.7994 699.1621)\\\" x=\\\"0\\\">#</text></g><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 138.8609 699.1621)\\\" x=\\\"0\\\"> </text></g><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 142.0172 699.1621)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 142.0172 697.4792 L 142.0172 697.4792 L 145.0172 697.4792 L 145.4339 697.4792 L 145.4339 696.6458 L 145.0172 696.6458 L 142.0172 696.6458 L 141.6005 696.6458 L 141.6005 697.4792 z \\\"/><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 145.1734 699.1621)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 145.1734 697.4792 L 145.1734 697.4792 L 148.1734 697.4792 L 148.5901 697.4792 L 148.5901 696.6458 L 148.1734 696.6458 L 145.1734 696.6458 L 144.7568 696.6458 L 144.7568 697.4792 z \\\"/><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 148.3297 699.1621)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 148.3297 697.4792 L 148.3297 697.4792 L 151.3297 697.4792 L 151.7464 697.4792 L 151.7464 696.6458 L 151.3297 696.6458 L 148.3297 696.6458 L 147.913 696.6458 L 147.913 697.4792 z \\\"/><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 151.4859 699.1621)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 151.4859 697.4792 L 151.4859 697.4792 L 154.4859 697.4792 L 154.9026 697.4792 L 154.9026 696.6458 L 154.4859 696.6458 L 151.4859 696.6458 L 151.0693 696.6458 L 151.0693 697.4792 z \\\"/><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 154.6422 699.1621)\\\" x=\\\"0\\\"> </text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 154.6422 697.4792 L 154.6422 697.4792 L 157.6422 697.4792 L 158.0589 697.4792 L 158.0589 696.6458 L 157.6422 696.6458 L 154.6422 696.6458 L 154.2255 696.6458 L 154.2255 697.4792 z \\\"/><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 157.7984 699.1621)\\\" x=\\\"0\\\">0</text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 157.7984 697.4792 L 157.7984 697.4792 L 163.7984 697.4792 L 164.2151 697.4792 L 164.2151 696.6458 L 163.7984 696.6458 L 157.7984 696.6458 L 157.3818 696.6458 L 157.3818 697.4792 z \\\"/><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 163.86 699.1621)\\\" x=\\\"0\\\">4</text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 163.86 697.4792 L 163.86 697.4792 L 169.86 697.4792 L 170.2766 697.4792 L 170.2766 696.6458 L 169.86 696.6458 L 163.86 696.6458 L 163.4433 696.6458 L 163.4433 697.4792 z \\\"/><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 169.9215 699.1621)\\\" x=\\\"0\\\">1</text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 169.9215 697.4792 L 169.9215 697.4792 L 175.9215 697.4792 L 176.3382 697.4792 L 176.3382 696.6458 L 175.9215 696.6458 L 169.9215 696.6458 L 169.5048 696.6458 L 169.5048 697.4792 z \\\"/><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 175.983 699.1621)\\\" x=\\\"0\\\">2</text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 175.983 697.4792 L 175.983 697.4792 L 181.983 697.4792 L 182.3997 697.4792 L 182.3997 696.6458 L 181.983 696.6458 L 175.983 696.6458 L 175.5663 696.6458 L 175.5663 697.4792 z \\\"/><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 182.0445 699.1621)\\\" x=\\\"0\\\">9</text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 182.0445 697.4792 L 182.0445 697.4792 L 188.0445 697.4792 L 188.4612 697.4792 L 188.4612 696.6458 L 188.0445 696.6458 L 182.0445 696.6458 L 181.6279 696.6458 L 181.6279 697.4792 z \\\"/><g clip-path=\\\"url(#clip6-1)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:7.5pt\\\" transform=\\\"matrix(1 0 0 -1 188.1061 699.1621)\\\" x=\\\"0\\\">9</text></g><path clip-path=\\\"url(#clip6-1)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 188.1061 697.4792 L 188.1061 697.4792 L 194.1061 697.4792 L 194.5227 697.4792 L 194.5227 696.6458 L 194.1061 696.6458 L 188.1061 696.6458 L 187.6894 696.6458 L 187.6894 697.4792 z \\\"/><clipPath id=\\\"clip6-2\\\"><path d=\\\"M 71 551 L 537 551 L 537 572 L 71 572 L 71 551 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-2)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 286.9417 561.1477)\\\" x=\\\"0 6.003 9 14.004 19.008 24.012 28.512 31.014\\\">Products</text></g><clipPath id=\\\"clip6-3\\\"><path d=\\\"M 71 531 L 165 531 L 165 552 L 71 552 L 71 531 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-3)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 106.4173 541.1477)\\\" x=\\\"0 7.497 12.501 17.505 22.509\\\">Model</text></g><clipPath id=\\\"clip6-4\\\"><path d=\\\"M 164 531 L 258 531 L 258 552 L 164 552 L 164 531 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-4)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 189.1385 541.1477)\\\" x=\\\"0 6.498 11.502 16.002 20.502 23.499 25.551 30.555 33.057 35.109 40.113\\\">Description</text></g><clipPath id=\\\"clip6-5\\\"><path d=\\\"M 257 531 L 351 531 L 351 552 L 257 552 L 257 531 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-5)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 297.6995 541.1477)\\\" x=\\\"0 7.002 9.504\\\">Qty</text></g><clipPath id=\\\"clip6-6\\\"><path d=\\\"M 350 531 L 444 531 L 444 552 L 350 552 L 350 531 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-6)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 387.4212 541.1477)\\\" x=\\\"0 6.003 9 11.052 15.552\\\">Price</text></g><clipPath id=\\\"clip6-7\\\"><path d=\\\"M 443 531 L 537 531 L 537 552 L 443 552 L 443 531 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-7)\\\"><text stroke=\\\"#000\\\" stroke-width=\\\"0.01\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 460.2107 541.1477)\\\" x=\\\"0 6.003 10.503 13.005 18.009 23.013 28.017 33.021 38.025 40.419 46.422 49.419 51.471 55.971\\\">Extended Price</text></g><clipPath id=\\\"clip6-8\\\"><path d=\\\"M 164 511 L 258 511 L 258 532 L 164 532 L 164 511 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-8)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 178.6472 522.0696)\\\" x=\\\"0 5.336 9.784 12.448 16.448 18.272 22.272 26.72 30.72 32.848 37.296 41.744 46.192 48.32 53.208 57.656 62.104\\\">Services and Fees</text></g><clipPath id=\\\"clip6-9\\\"><path d=\\\"M 257 511 L 351 511 L 351 532 L 257 532 L 257 511 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-9)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 302.4754 522.0696)\\\" x=\\\"0\\\">1</text></g><clipPath id=\\\"clip6-10\\\"><path d=\\\"M 350 511 L 444 511 L 444 532 L 350 532 L 350 511 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-10)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 378.8426 522.0696)\\\" x=\\\"0 4.448 6.576 11.024 13.248 17.696 22.144 26.592 28.816 33.264\\\">$ 3,784.97</text></g><clipPath id=\\\"clip6-11\\\"><path d=\\\"M 443 511 L 537 511 L 537 532 L 443 532 L 443 511 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-11)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 471.8426 522.0696)\\\" x=\\\"0 4.448 6.576 11.024 13.248 17.696 22.144 26.592 28.816 33.264\\\">$ 3,784.97</text></g><clipPath id=\\\"clip6-12\\\"><path d=\\\"M 164 491 L 258 491 L 258 512 L 164 512 L 164 491 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-12)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 196.364 502.0696)\\\" x=\\\"0 6.664 11.112 13.336 15.56 18.224 22.672 26.672\\\">Mattress</text></g><clipPath id=\\\"clip6-13\\\"><path d=\\\"M 257 491 L 351 491 L 351 512 L 257 512 L 257 491 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-13)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt\\\" transform=\\\"matrix(1 0 0 -1 302.4754 502.0696)\\\" x=\\\"0\\\">1</text></g><clipPath id=\\\"clip6-14\\\"><path d=\\\"M 350 491 L 444 491 L 444 512 L 350 512 L 350 491 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-14)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 386.6277 502.0696)\\\" x=\\\"0 4.448 6.576 11.024 13.248 17.696\\\">$ 1.00</text></g><clipPath id=\\\"clip6-15\\\"><path d=\\\"M 443 491 L 537 491 L 537 512 L 443 512 L 443 491 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-15)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 479.6277 502.0696)\\\" x=\\\"0 4.448 6.576 11.024 13.248 17.696\\\">$ 1.00</text></g><clipPath id=\\\"clip6-16\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 71.2 572.4446 L 537.2 572.4446 L 537.2 571.4446 L 71.2 571.4446 L 71.2 572.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 536.2 571.4446 L 537.2 571.4446 L 537.2 552.4446 L 536.2 552.4446 L 536.2 571.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 71.2 571.4446 L 72.2 571.4446 L 72.2 552.4446 L 71.2 552.4446 L 71.2 571.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 71.2 552.4446 L 165.2 552.4446 L 165.2 551.4446 L 71.2 551.4446 L 71.2 552.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 71.2 551.4446 L 72.2 551.4446 L 72.2 532.4446 L 71.2 532.4446 L 71.2 551.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 165.2 552.4446 L 258.2 552.4446 L 258.2 551.4446 L 165.2 551.4446 L 165.2 552.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 164.2 551.4446 L 165.2 551.4446 L 165.2 532.4446 L 164.2 532.4446 L 164.2 551.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 258.2 552.4446 L 351.2 552.4446 L 351.2 551.4446 L 258.2 551.4446 L 258.2 552.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 257.2 551.4446 L 258.2 551.4446 L 258.2 532.4446 L 257.2 532.4446 L 257.2 551.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 351.2 552.4446 L 444.2 552.4446 L 444.2 551.4446 L 351.2 551.4446 L 351.2 552.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 350.2 551.4446 L 351.2 551.4446 L 351.2 532.4446 L 350.2 532.4446 L 350.2 551.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 444.2 552.4446 L 537.2 552.4446 L 537.2 551.4446 L 444.2 551.4446 L 444.2 552.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 536.2 551.4446 L 537.2 551.4446 L 537.2 532.4446 L 536.2 532.4446 L 536.2 551.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 443.2 551.4446 L 444.2 551.4446 L 444.2 532.4446 L 443.2 532.4446 L 443.2 551.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 71.2 532.4446 L 165.2 532.4446 L 165.2 531.4446 L 71.2 531.4446 L 71.2 532.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 71.2 531.4446 L 72.2 531.4446 L 72.2 512.4446 L 71.2 512.4446 L 71.2 531.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 165.2 532.4446 L 258.2 532.4446 L 258.2 531.4446 L 165.2 531.4446 L 165.2 532.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 164.2 531.4446 L 165.2 531.4446 L 165.2 512.4446 L 164.2 512.4446 L 164.2 531.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 258.2 532.4446 L 351.2 532.4446 L 351.2 531.4446 L 258.2 531.4446 L 258.2 532.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 257.2 531.4446 L 258.2 531.4446 L 258.2 512.4446 L 257.2 512.4446 L 257.2 531.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 351.2 532.4446 L 444.2 532.4446 L 444.2 531.4446 L 351.2 531.4446 L 351.2 532.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 350.2 531.4446 L 351.2 531.4446 L 351.2 512.4446 L 350.2 512.4446 L 350.2 531.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 444.2 532.4446 L 537.2 532.4446 L 537.2 531.4446 L 444.2 531.4446 L 444.2 532.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 536.2 531.4446 L 537.2 531.4446 L 537.2 512.4446 L 536.2 512.4446 L 536.2 531.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 443.2 531.4446 L 444.2 531.4446 L 444.2 512.4446 L 443.2 512.4446 L 443.2 531.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 71.2 512.4446 L 165.2 512.4446 L 165.2 511.4446 L 71.2 511.4446 L 71.2 512.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 71.2 492.4446 L 165.2 492.4446 L 165.2 491.4446 L 71.2 491.4446 L 71.2 492.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 71.2 511.4446 L 72.2 511.4446 L 72.2 492.4446 L 71.2 492.4446 L 71.2 511.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 165.2 512.4446 L 258.2 512.4446 L 258.2 511.4446 L 165.2 511.4446 L 165.2 512.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 165.2 492.4446 L 258.2 492.4446 L 258.2 491.4446 L 165.2 491.4446 L 165.2 492.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 164.2 511.4446 L 165.2 511.4446 L 165.2 492.4446 L 164.2 492.4446 L 164.2 511.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 258.2 512.4446 L 351.2 512.4446 L 351.2 511.4446 L 258.2 511.4446 L 258.2 512.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 258.2 492.4446 L 351.2 492.4446 L 351.2 491.4446 L 258.2 491.4446 L 258.2 492.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 257.2 511.4446 L 258.2 511.4446 L 258.2 492.4446 L 257.2 492.4446 L 257.2 511.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 351.2 512.4446 L 444.2 512.4446 L 444.2 511.4446 L 351.2 511.4446 L 351.2 512.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 351.2 492.4446 L 444.2 492.4446 L 444.2 491.4446 L 351.2 491.4446 L 351.2 492.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 350.2 511.4446 L 351.2 511.4446 L 351.2 492.4446 L 350.2 492.4446 L 350.2 511.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 444.2 512.4446 L 537.2 512.4446 L 537.2 511.4446 L 444.2 511.4446 L 444.2 512.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 444.2 492.4446 L 537.2 492.4446 L 537.2 491.4446 L 444.2 491.4446 L 444.2 492.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 536.2 511.4446 L 537.2 511.4446 L 537.2 492.4446 L 536.2 492.4446 L 536.2 511.4446 z \\\"/><path clip-path=\\\"url(#clip6-16)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 443.2 511.4446 L 444.2 511.4446 L 444.2 492.4446 L 443.2 492.4446 L 443.2 511.4446 z \\\"/><clipPath id=\\\"clip6-17\\\"><path d=\\\"M 264 464 L 404 464 L 404 478 L 264 478 L 264 464 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-17)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 359.9359 468.3239)\\\" x=\\\"0 5.336 9.784 14.232 16.36 21.248 25.696 27.92 32.368 34.192\\\">Sub Total:</text></g><clipPath id=\\\"clip6-18\\\"><path d=\\\"M 403 464 L 535 464 L 535 478 L 403 478 L 403 464 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-18)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.55 468.3239)\\\" x=\\\"0 4.448 6.576 11.024 13.248 17.696 22.144 26.592 28.816 33.264\\\">$ 3,785.97</text></g><clipPath id=\\\"clip6-19\\\"><path d=\\\"M 264 451 L 404 451 L 404 465 L 264 465 L 264 451 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-19)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 358.6078 454.8239)\\\" x=\\\"0 5.336 9.784 11.608 16.056 20.056 22.184 27.072 31.52 35.52\\\">Sales Tax:</text></g><clipPath id=\\\"clip6-20\\\"><path d=\\\"M 403 451 L 535 451 L 535 465 L 403 465 L 403 451 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-20)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.55 454.8239)\\\" x=\\\"0 4.448 6.576 11.024 15.472 17.696 22.144\\\">$ 86.03</text></g><clipPath id=\\\"clip6-21\\\"><path d=\\\"M 264 437 L 404 437 L 404 452 L 264 452 L 264 437 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-21)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 348.7758 441.3239)\\\" x=\\\"0 4.888 9.336 11.56 16.008 17.832 19.96 22.184 26.632 30.632 35.08 36.904 40.904 45.352\\\">Total Invoice:</text></g><clipPath id=\\\"clip6-22\\\"><path d=\\\"M 403 437 L 535 437 L 535 452 L 403 452 L 403 437 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-22)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.55 441.3239)\\\" x=\\\"0 4.448 6.576 11.024 13.248 17.696 22.144 26.592 28.816 33.264\\\">$ 3,872.00</text></g><clipPath id=\\\"clip6-23\\\"><path d=\\\"M 264 424 L 404 424 L 404 438 L 264 438 L 264 424 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-23)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 284.3578 427.8239)\\\" x=\\\"0 5.336 12 14.224 16.352 22.128 26.576 31.024 33.152 38.04 42.488 46.936 51.384 55.384 57.512 60.176 65.952 68.176 72.624 74.752 80.088 82.752 87.2 91.2 93.328 98.216 102.664 107.112 109.776\\\">Amt Due Today (w/o Proc Fee):</text></g><clipPath id=\\\"clip6-24\\\"><path d=\\\"M 403 424 L 535 424 L 535 438 L 403 438 L 403 424 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-24)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.55 427.8239)\\\" x=\\\"0 4.448 6.576 11.024 13.248 17.696 22.144 26.592 28.816 33.264\\\">$ 3,784.30</text></g><clipPath id=\\\"clip6-25\\\"><path d=\\\"M 264 410 L 404 410 L 404 425 L 264 425 L 264 410 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-25)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 302.4242 414.3239)\\\" x=\\\"0 5.336 9.784 14.232 16.056 18.184 23.96 28.408 32.408 34.632 36.76 42.536 46.984 50.984 55.432 57.56 62.896 67.344 69.472 74.36 78.808 83.256 87.704 91.704\\\">Addl Cust Cash Pd Today:</text></g><clipPath id=\\\"clip6-26\\\"><path d=\\\"M 403 410 L 535 410 L 535 425 L 403 425 L 403 410 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-26)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.55 414.3239)\\\" x=\\\"0 4.448 6.576 11.024 13.248 17.696\\\">$ 0.00</text></g><clipPath id=\\\"clip6-27\\\"><path d=\\\"M 264 397 L 404 397 L 404 411 L 264 411 L 264 397 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-27)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 333.8422 400.8239)\\\" x=\\\"0 5.336 9.784 14.232 18.68 20.808 26.584 31.032 35.032 39.48 41.608 47.384 51.384 55.832 60.28\\\">Snap Cash Used:</text></g><clipPath id=\\\"clip6-28\\\"><path d=\\\"M 403 397 L 535 397 L 535 411 L 403 411 L 403 397 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-28)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.55 400.8239)\\\" x=\\\"0 4.448 6.576 11.024 15.472 17.696 22.144\\\">$ 87.70</text></g><clipPath id=\\\"clip6-29\\\"><path d=\\\"M 264 383 L 404 383 L 404 398 L 264 398 L 264 383 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-29)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 274.8227 387.3239)\\\" x=\\\"0 5.336 8 12.448 16.448 18.576 23.464 27.912 32.36 34.488 40.264 44.712 46.536 48.36 52.808 56.808 59.032 63.48 67.928 70.056 72.72 77.168 81.168 83.296 89.96 94.408 97.072 101.072 105.52 109.968 114.416 116.64 119.304\\\">Proc Fee Collected (by Merchant):</text></g><clipPath id=\\\"clip6-30\\\"><path d=\\\"M 403 383 L 535 383 L 535 398 L 403 398 L 403 383 z \\\"/></clipPath><g clip-path=\\\"url(#clip6-30)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 403.55 387.3239)\\\" x=\\\"0 4.448 6.576 11.024 13.248 17.696\\\">$ 0.00</text></g><clipPath id=\\\"clip6-31\\\"><path d=\\\"M 0 0 L 612 0 L 612 792 L 0 792 L 0 0 z \\\"/></clipPath><path clip-path=\\\"url(#clip6-31)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 403.55 464.9489 L 534.3 464.9489 L 534.3 464.4489 L 403.55 464.4489 L 403.55 464.9489 z \\\"/><path clip-path=\\\"url(#clip6-31)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 403.55 451.4489 L 534.3 451.4489 L 534.3 450.9489 L 403.55 450.9489 L 403.55 451.4489 z \\\"/><path clip-path=\\\"url(#clip6-31)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 403.55 437.9489 L 534.3 437.9489 L 534.3 437.4489 L 403.55 437.4489 L 403.55 437.9489 z \\\"/><path clip-path=\\\"url(#clip6-31)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 403.55 424.4489 L 534.3 424.4489 L 534.3 423.9489 L 403.55 423.9489 L 403.55 424.4489 z \\\"/><path clip-path=\\\"url(#clip6-31)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 403.55 410.9489 L 534.3 410.9489 L 534.3 410.4489 L 403.55 410.4489 L 403.55 410.9489 z \\\"/><path clip-path=\\\"url(#clip6-31)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 403.55 397.4489 L 534.3 397.4489 L 534.3 396.9489 L 403.55 396.9489 L 403.55 397.4489 z \\\"/><path clip-path=\\\"url(#clip6-31)\\\" fill=\\\"#000\\\" stroke=\\\"none\\\" d=\\\"M 403.55 383.9489 L 534.3 383.9489 L 534.3 383.4489 L 403.55 383.4489 L 403.55 383.9489 z \\\"/><g clip-path=\\\"url(#clip6-31)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 36.5264)\\\" x=\\\"0 6.498 11.997 14.391 16.785 21.789 26.793 29.295 34.299 39.303 44.307 504 506.3906 508.7812 511.1719 513.5625 515.9531 518.3438 520.7344 523.125 525.5156\\\">UT  07/2019          </text></g><g clip-path=\\\"url(#clip6-31)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 32.4 26.3398)\\\" x=\\\"0 6.003 11.007 16.011 21.015\\\">Page </text></g><g clip-path=\\\"url(#clip6-31)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 55.8097 26.3398)\\\" x=\\\"0\\\">7</text></g><g clip-path=\\\"url(#clip6-31)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 60.815 26.3398)\\\" x=\\\"0 2.394 7.398 9.9\\\"> of </text></g><g clip-path=\\\"url(#clip6-31)\\\"><text stroke=\\\"none\\\" fill=\\\"#000\\\" style=\\\"font-family:f6-1; font-size:6.75pt\\\" transform=\\\"matrix(1 0 0 -1 73.1021 26.3398)\\\" x=\\\"0\\\">7</text></g><g clip-path=\\\"url(#clip6-31)\\\"><text stroke=\\\"none\\\" fill=\\\"#d9d9d9\\\" style=\\\"font-family:f6-0; font-size:54pt; white-space:pre\\\" transform=\\\"matrix(0.707 0.707 0.707 -0.707 135.6027 198.5094)\\\" x=\\\"0 56.016 96.048 136.08 176.112 216.144 236.16 284.184 324.216 344.232 364.248 416.232 456.264 480.24\\\">Qoppa Software</text></g><g clip-path=\\\"url(#clip6-31)\\\"><text stroke=\\\"none\\\" fill=\\\"#002ba6\\\" style=\\\"font-family:f6-0; font-size:9pt; white-space:pre\\\" transform=\\\"matrix(1 0 0 -1 136.932 772)\\\" x=\\\"0 9.336 16.008 22.68 29.352 36.024 39.36 47.364 54.036 57.372 60.708 69.372 76.044 80.04 86.712 90.048 94.044 97.38 104.712 111.384 115.38 118.716 126.72 132.72 139.392 142.056 148.728 155.4 158.736 161.4 168.072 174.744 178.08 187.416 194.088 196.752 202.752 206.088 210.084 213.42 220.092 223.428 226.764 233.436 239.436 242.772 246.108 249.444 258.108 266.772 275.436 278.772 285.444 292.116 298.788 305.46 312.132 315.468 321.468 328.14\\\">Qoppa Software - For Evaluation Only - https://www.qoppa.com</text></g></g></svg></svg></g></svg><br>\\n</body> \\n </html>\\n\"\n        }\n    },\n    \"success\": true,\n    \"status\": 200\n}"}],"_postman_id":"6aee82df-81d2-4b62-b8e2-386d679214da"},{"name":"Sign agreement","event":[{"listen":"test","script":{"exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});\r","pm.test(\"Success message\", function () {\r","    pm.expect(pm.response.text()).to.include(\"success\");\r","});"],"type":"text/javascript","id":"591a2fdb-a535-4faa-a443-6102da7594f1"}}],"id":"ef99f9de-4be9-4c94-8256-483f3292a4d3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"<p>(optional - ID generated by the client)</p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"agreementInformation\": {\r\n    \"signedTime\": \"2020-02-21T18:00:00Z\",\r\n    \"signedMethod\": \"acceptance\",\r\n    \"signedBy\": \"John Doe\",\r\n    \"device\": \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36\",\r\n    \"deviceIP\": \"10.1.1.10\"\r\n  }\r\n}"},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/signed?document=agreement","description":"<h1 id=\"sign-agreement\">Sign Agreement</h1>\n<p>This endpoint sets the signed date on the application, marks the agreement as signed, and changes the application status from PENDING_SIGNED_DOCS to PENDING_DEL (Pending Delivery) status and PENDING_SHIPPING sub-status.</p>\n<h1 id=\"request-object\">Request Object</h1>\n<h2 id=\"customerinformationhash\"><code>customerInformation:hash</code></h2>\n<blockquote>\n<h4 id=\"signedtimestring\"><code>signedTime:string</code></h4>\n<ul>\n<li>Required</li>\n<li>Date time at which the agreement sign date is in UTC Standard. Example 2020-02-21T18:00:00Z</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"signedmethodstring\"><code>signedMethod:string</code></h4>\n<ul>\n<li>Required</li>\n<li>Signed method. Valid value is only acceptance</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"signedbystring\"><code>signedBy:string</code></h4>\n<ul>\n<li>Optional</li>\n<li>Name of the person signing the lease</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"devicestring\"><code>device:string</code></h4>\n<ul>\n<li>Optional</li>\n<li>Device type on which the agreement is signed</li>\n</ul>\n</blockquote>\n<blockquote>\n<h4 id=\"deviceipstring\"><code>deviceIP:string</code></h4>\n<ul>\n<li>Optional</li>\n<li>Device address from where the agreement is signed</li>\n</ul>\n</blockquote>\n<h1 id=\"response-object\">Response Object</h1>\n<h2 id=\"datahash\"><code>data:hash</code></h2>\n<blockquote>\n<ul>\n<li>Empty value ( {} ) for successful responses.</li>\n</ul>\n</blockquote>\n<h2 id=\"successboolean\"><code>success:boolean</code></h2>\n<blockquote>\n<ul>\n<li>Value with the result of the request. Possible values are true or false</li>\n</ul>\n</blockquote>\n<h2 id=\"captureboolean\"><code>capture:boolean</code></h2>\n<blockquote>\n<ul>\n<li>Value indicating if the capture endpoint needs to be called to complete the application process. Possible values are true or false</li>\n</ul>\n</blockquote>\n<h2 id=\"statusinteger\"><code>status:integer</code></h2>\n<blockquote>\n<ul>\n<li>Value with status code of the request. For example: 200, 400, 404</li>\n</ul>\n</blockquote>\n","urlObject":{"path":["platform","v1","application","{{applicationId}}","signed"],"host":["{{baseUrl}}"],"query":[{"key":"document","value":"agreement"}],"variable":[]}},"response":[{"id":"9e0b8c4b-7423-4f22-8e94-df110535f242","name":"Not Found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer pORU5GTWtNeE1UQkJPVE5DUl....JiWYvnmRQSSCozUr6Xt7RXRK","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123"}],"body":{"mode":"raw","raw":"{\r\n  \"agreementInformation\": {\r\n    \"signedTime\": \"2020-02-21T18:00:00Z\",\r\n    \"signedMethod\": \"acceptance\",\r\n    \"signedBy\": \"John Doe\",\r\n    \"device\": \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36\",\r\n    \"deviceIP\": \"10.1.1.10\"\r\n  }\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api-sandbox.snapfinance.com/platform/v1/application/{{applicationId}}/signed?document=agreement","protocol":"https","host":["api-sandbox","snapfinance","com"],"path":["platform","v1","application","{{applicationId}}","signed"],"query":[{"key":"document","value":"agreement"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"133"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 16 Jul 2020 17:03:16 GMT"},{"key":"x-amzn-RequestId","value":"d596e661-4e08-4944-a32a-e2e9d077101f"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"Pxo9DGyiPHcF25Q="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f108853-ef2b033fb25f0eb879f3d58e"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 0a72bb7be10458e1aefa37a097f21894.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"BW7lO-fv-dBAE-rM71lbkJaSyoAtnfHQkpMjtTQ6XjLCR9GCTyzCBA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"status\": 404,\n    \"error\": [\n        {\n            \"type\": \"validation_error\",\n            \"message\": \"Application not found\",\n            \"code\": \"application_not_found\"\n        }\n    ]\n}"},{"id":"62249812-b4f2-4ad2-9a57-4a26f29d6786","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123"}],"body":{"mode":"raw","raw":"{\r\n  \"agreementInformation\": {\r\n    \"signedTime\": \"2020-02-21T18:00:00Z\",\r\n    \"signedMethod\": \"acceptance\",\r\n    \"signedBy\": \"John Doe\",\r\n    \"device\": \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36\",\r\n    \"deviceIP\": \"10.1.1.10\"\r\n  }\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{baseUrl}}/platform/v1/application/{{applicationId}}/signed?document=agreement","host":["{{baseUrl}}"],"path":["platform","v1","application","{{applicationId}}","signed"],"query":[{"key":"document","value":"agreement"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"39"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:25:11 GMT"},{"key":"x-amzn-RequestId","value":"1fb9d04e-d5d8-4c52-ab99-f280f30974e6"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P02TZGf6vHcFvIA="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d0e2-d14a91504ec81fad79cc0598"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"TGhuOXXJY2_ad54jcWoH4dSCFk37DVH5IoBeHg8qehauxewnMC9pxA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {},\n    \"status\": 200,\n    \"capture\": true \n}"},{"id":"be602e62-c6dd-4f9f-8e7c-c62c3a88522d","name":"Not Found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer pORU5GTWtNeE1UQkJPVE5DUl....JiWYvnmRQSSCozUr6Xt7RXRK","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123"}],"body":{"mode":"raw","raw":"{\r\n  \"agreementInformation\": {\r\n    \"signedTime\": \"2020-02-21T18:00:00Z\",\r\n    \"signedMethod\": \"acceptance\",\r\n    \"signedBy\": \"John Doe\",\r\n    \"device\": \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36\",\r\n    \"deviceIP\": \"10.1.1.10\"\r\n  }\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api-sandbox.snapfinance.com/platform/v1/application/{{applicationId}}/signed?document=agreement","protocol":"https","host":["api-sandbox","snapfinance","com"],"path":["platform","v1","application","{{applicationId}}","signed"],"query":[{"key":"document","value":"agreement"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"133"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 16 Jul 2020 17:03:16 GMT"},{"key":"x-amzn-RequestId","value":"d596e661-4e08-4944-a32a-e2e9d077101f"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"Pxo9DGyiPHcF25Q="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f108853-ef2b033fb25f0eb879f3d58e"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 0a72bb7be10458e1aefa37a097f21894.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"BW7lO-fv-dBAE-rM71lbkJaSyoAtnfHQkpMjtTQ6XjLCR9GCTyzCBA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"status\": 404,\n    \"error\": [\n        {\n            \"type\": \"validation_error\",\n            \"message\": \"Application not found\",\n            \"code\": \"application_not_found\"\n        }\n    ]\n}"},{"id":"de692bc4-495f-456a-9a7a-a7857804f60f","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123"}],"body":{"mode":"raw","raw":"{\r\n  \"agreementInformation\": {\r\n    \"signedTime\": \"2020-02-21T18:00:00Z\",\r\n    \"signedMethod\": \"acceptance\",\r\n    \"signedBy\": \"John Doe\",\r\n    \"device\": \"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36\",\r\n    \"deviceIP\": \"10.1.1.10\"\r\n  }\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{baseUrl}}/platform/v1/application/{{applicationId}}/signed?document=agreement","host":["{{baseUrl}}"],"path":["platform","v1","application","{{applicationId}}","signed"],"query":[{"key":"document","value":"agreement"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"39"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:25:11 GMT"},{"key":"x-amzn-RequestId","value":"1fb9d04e-d5d8-4c52-ab99-f280f30974e6"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P02TZGf6vHcFvIA="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d0e2-d14a91504ec81fad79cc0598"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"TGhuOXXJY2_ad54jcWoH4dSCFk37DVH5IoBeHg8qehauxewnMC9pxA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {},\n    \"status\": 200,\n    \"capture\": true \n}"}],"_postman_id":"ef99f9de-4be9-4c94-8256-483f3292a4d3"},{"name":"Capture Application","event":[{"listen":"test","script":{"exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});\r","pm.test(\"Success message\", function () {\r","    pm.expect(pm.response.text()).to.include(\"success\");\r","});"],"type":"text/javascript","id":"6228bffe-01f0-4352-a279-f1c7ce9536d1"}}],"id":"f9019445-656a-402d-afbe-2e85d3945269","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"<p>(optional - ID generated by the client)</p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\t\"deliveryDate\": \"2023-12-15\"\r\n}"},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/capture","description":"<h1 id=\"capture-application\">Capture Application</h1>\n<p>This endpoint updates the application delivery date changes its status from PENDING_DEL to COMPLETE and initiates the process to fund the application.</p>\n<h1 id=\"request-object\">Request Object</h1>\n<blockquote>\n<h2 id=\"deliverydatestring-date\"><code>deliveryDate:string (Date)</code></h2>\n<ul>\n<li>Required</li>\n<li>Date should be in YYYY-MM-DD format. Delivery Date in ISO format</li>\n</ul>\n</blockquote>\n<h1 id=\"response-object\">Response Object</h1>\n<h2 id=\"datahash\"><code>data:hash</code></h2>\n<blockquote>\n<ul>\n<li>Empty value ( {} ) for successful responses.</li>\n</ul>\n</blockquote>\n<h2 id=\"successboolean\"><code>success:boolean</code></h2>\n<blockquote>\n<ul>\n<li>Value with the result of the request. Possible values are TRUE or FALSE</li>\n</ul>\n</blockquote>\n<h2 id=\"statusinteger\"><code>status:integer</code></h2>\n<blockquote>\n<ul>\n<li>Value with status code of the request. For example: 200, 400, 404</li>\n</ul>\n</blockquote>\n","urlObject":{"path":["platform","v1","application","{{applicationId}}","capture"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"793adb13-8524-4f70-a262-62b40fc4ef34","name":"Not Found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer pORU5GTWtNeE1UQkJPVE5DUl....JiWYvnmRQSSCozUr6Xt7RXRK","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123"}],"body":{"mode":"raw","raw":"{\r\n\t\"deliveryDate\": \"2020-07-08\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api-sandbox.snapfinance.com/platform/v1/application/{{applicationId}}/capture"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"133"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 16 Jul 2020 18:26:55 GMT"},{"key":"x-amzn-RequestId","value":"1473e786-3ec1-4200-9c73-39d1dec008cd"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"Px1NXHxcPHcFhSQ="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f109bef-9cb725502fac17205c442a40"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 6492b42e2fc3684cc00b54d685c2328c.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"ma8Z6BOstjyboUIGZiQ8QtDYb4JzTQsi-XrqvRI5Zqd1rnmd9xcfsw=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"status\": 404,\n    \"error\": [\n        {\n            \"type\": \"validation_error\",\n            \"message\": \"Application not found\",\n            \"code\": \"application_not_found\"\n        }\n    ]\n}"},{"id":"ead01085-25fc-49cb-9641-38b7c326a311","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123"}],"body":{"mode":"raw","raw":"{\r\n\t\"deliveryDate\": \"2020-07-08\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/capture"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"39"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:26:10 GMT"},{"key":"x-amzn-RequestId","value":"925cf780-dcfc-4f9b-86a5-720b308c2514"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P02dPHvfvHcF4Sw="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d121-f3cf0d83e94684f53be9c37d"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"bSFAKB6f-njXKj6ZNGK2dnkYOt15wbujC4tyWTxf6YIqdCOwiNAlJQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {},    \n    \"status\": 200\n}"},{"id":"87302a6d-a948-4f86-ad90-bf649eb12af5","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123"}],"body":{"mode":"raw","raw":"{\r\n\t\"deliveryDate\": \"2020-07-08\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/capture"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"39"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:26:10 GMT"},{"key":"x-amzn-RequestId","value":"925cf780-dcfc-4f9b-86a5-720b308c2514"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P02dPHvfvHcF4Sw="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d121-f3cf0d83e94684f53be9c37d"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"bSFAKB6f-njXKj6ZNGK2dnkYOt15wbujC4tyWTxf6YIqdCOwiNAlJQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {},    \n    \"status\": 200\n}"},{"id":"9f7b1a48-377a-4276-8635-32a22587c9a9","name":"Not Found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer pORU5GTWtNeE1UQkJPVE5DUl....JiWYvnmRQSSCozUr6Xt7RXRK","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123"}],"body":{"mode":"raw","raw":"{\r\n\t\"deliveryDate\": \"2020-07-08\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api-sandbox.snapfinance.com/platform/v1/application/{{applicationId}}/capture"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"133"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 16 Jul 2020 18:26:55 GMT"},{"key":"x-amzn-RequestId","value":"1473e786-3ec1-4200-9c73-39d1dec008cd"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"Px1NXHxcPHcFhSQ="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f109bef-9cb725502fac17205c442a40"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 6492b42e2fc3684cc00b54d685c2328c.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"ma8Z6BOstjyboUIGZiQ8QtDYb4JzTQsi-XrqvRI5Zqd1rnmd9xcfsw=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"status\": 404,\n    \"error\": [\n        {\n            \"type\": \"validation_error\",\n            \"message\": \"Application not found\",\n            \"code\": \"application_not_found\"\n        }\n    ]\n}"}],"_postman_id":"f9019445-656a-402d-afbe-2e85d3945269"},{"name":"Refund","event":[{"listen":"test","script":{"exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});\r","pm.test(\"Success message\", function () {\r","    pm.expect(pm.response.text()).to.include(\"success\");\r","});"],"type":"text/javascript","id":"9eb55cf2-e448-4540-9736-751a2bcb1135"}}],"id":"6bf428eb-e9ec-4406-9f0c-6633d15760dc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"<p>(optional - ID generated by the client)</p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"products\": [\r\n    {\r\n      \"amount\": \"1.00\",\r\n      \"itemId\": \"ABC\",\r\n      \"quantity\": 1\r\n    }\r\n  ]\r\n}"},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/refund","description":"<h1 id=\"refund\">Refund</h1>\n<p>This endpoint refunds full or partial payment on LTO applications and changes its sub-status to either Refunded or Partially Refunded. There are two ways to do it, check the next request options.</p>\n<h1 id=\"request-object-option-1\">Request Object Option 1</h1>\n<p>Using specific information of a product(s):</p>\n<blockquote>\n<h2 id=\"productshash-array\"><code>products:hash array</code></h2>\n<ul>\n<li>Required</li>\n<li>An array with at least one product</li>\n</ul>\n<h4 id=\"productsamountstring-numeric\"><code>products.amount:string (Numeric)</code></h4>\n<blockquote>\n<ul>\n<li>Required</li>\n<li>Exact price of the product</li>\n</ul>\n</blockquote>\n<h4 id=\"productsitemidstring\"><code>products.itemId:string</code></h4>\n<blockquote>\n<ul>\n<li>Required</li>\n<li>Item ID of the product</li>\n</ul>\n</blockquote>\n<h4 id=\"productsquantityinteger\"><code>products.quantity:Integer</code></h4>\n<blockquote>\n<ul>\n<li>Required</li>\n<li>Quantity of the product</li>\n</ul>\n</blockquote>\n</blockquote>\n<h1 id=\"request-object-option-2\">Request Object Option 2</h1>\n<p>Using an specific amount:</p>\n<blockquote>\n<h2 id=\"adjustmenthash\"><code>adjustment:hash</code></h2>\n<h4 id=\"amountstring-numeric\"><code>amount:string (Numeric)</code></h4>\n<blockquote>\n<ul>\n<li>Required</li>\n<li>Negative refund amount</li>\n</ul>\n</blockquote>\n</blockquote>\n<h1 id=\"response-object\">Response Object</h1>\n<h2 id=\"datahash\"><code>data:hash</code></h2>\n<blockquote>\n<ul>\n<li>Empty value ( {} ) for successful responses.</li>\n</ul>\n</blockquote>\n<h2 id=\"successboolean\"><code>success:boolean</code></h2>\n<blockquote>\n<ul>\n<li>Value with the result of the request. Possible values are TRUE or FALSE</li>\n</ul>\n</blockquote>\n<h2 id=\"statusinteger\"><code>status:integer</code></h2>\n<blockquote>\n<ul>\n<li>Value with status code of the request. For example: 200, 400, 404</li>\n</ul>\n</blockquote>\n","urlObject":{"path":["platform","v1","application","{{applicationId}}","refund"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"d9b02bcc-9f10-4e69-8ebf-14495c5411a1","name":"OK Option 2","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer pORU5GTWtNeE1UQkJPVE5DUl....JiWYvnmRQSSCozUr6Xt7RXRK","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"adjustment\": \r\n    {\r\n      \"amount\": \"-50.00\"\r\n    }\r\n}"},"url":"https://api-sandbox.snapfinance.com/platform/v1/application/{{applicationId}}/refund"},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{    \r\n    \"success\": true,\r\n    \"data\": {},\r\n    \"status\": 200\r\n}"},{"id":"67d17ca8-5fbc-45d9-8bd8-ec3b26088ea2","name":"OK Option 1","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123"}],"body":{"mode":"raw","raw":"{\r\n  \"products\": [\r\n    {\r\n      \"amount\": \"1.00\",\r\n      \"itemId\": \"ABC\",\r\n      \"quantity\": 1\r\n    }\r\n  ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/refund"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"39"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:26:57 GMT"},{"key":"x-amzn-RequestId","value":"0cb73793-f0dd-4438-829c-415c7155efcf"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P02kwF5hPHcF8_g="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d151-db105366d62996e40114bb32"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"9BdrvPsnb7WioJYWC4JtSltOW4weJHXSdPS6hO4PeZYYukvhSSSg5A=="}],"cookie":[],"responseTime":null,"body":"{    \n    \"success\": true,\n    \"data\": {},\n    \"status\": 200\n}"},{"id":"ac016dcc-9f78-465a-84da-ef784761cd60","name":"Not Found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123"}],"body":{"mode":"raw","raw":"{\r\n  \"products\": [\r\n    {\r\n      \"amount\": \"1.00\",\r\n      \"itemId\": \"ABC\",\r\n      \"quantity\": 1\r\n    }\r\n  ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/refund"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"133"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:21:20 GMT"},{"key":"x-amzn-RequestId","value":"88317457-385d-42c2-8a60-b6109127bbcc"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P01wCEOjvHcFZVg="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d000-bbce4d1ff03d29d0fd1a8420"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"16cCiP5eIHIHnMoJ09EmaduydYyFgSDM_PsbyiGc54g12GLNGF57MA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,    \n    \"error\": [\n        {\n            \"type\": \"validation_error\",\n            \"message\": \"Application not found\",\n            \"code\": \"application_not_found\"\n        }\n    ],\n    \"status\": 404\n}"},{"id":"a817cad1-70e2-4ac5-a58c-a113ec2daf2e","name":"Not Found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123"}],"body":{"mode":"raw","raw":"{\r\n  \"products\": [\r\n    {\r\n      \"amount\": \"1.00\",\r\n      \"itemId\": \"ABC\",\r\n      \"quantity\": 1\r\n    }\r\n  ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/refund"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"133"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:21:20 GMT"},{"key":"x-amzn-RequestId","value":"88317457-385d-42c2-8a60-b6109127bbcc"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P01wCEOjvHcFZVg="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d000-bbce4d1ff03d29d0fd1a8420"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"16cCiP5eIHIHnMoJ09EmaduydYyFgSDM_PsbyiGc54g12GLNGF57MA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,    \n    \"error\": [\n        {\n            \"type\": \"validation_error\",\n            \"message\": \"Application not found\",\n            \"code\": \"application_not_found\"\n        }\n    ],\n    \"status\": 404\n}"},{"id":"aac4a82d-2f2d-45b3-bd78-e21f7b7a22f1","name":"OK Option 2","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer pORU5GTWtNeE1UQkJPVE5DUl....JiWYvnmRQSSCozUr6Xt7RXRK","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"adjustment\": \r\n    {\r\n      \"amount\": \"-50.00\"\r\n    }\r\n}"},"url":"https://api-sandbox.snapfinance.com/platform/v1/application/{{applicationId}}/refund"},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{    \r\n    \"success\": true,\r\n    \"data\": {},\r\n    \"status\": 200\r\n}"},{"id":"e995b7f1-826b-42f3-968c-0d3c003dbcb6","name":"OK Option 1","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123"}],"body":{"mode":"raw","raw":"{\r\n  \"products\": [\r\n    {\r\n      \"amount\": \"1.00\",\r\n      \"itemId\": \"ABC\",\r\n      \"quantity\": 1\r\n    }\r\n  ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/refund"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"39"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:26:57 GMT"},{"key":"x-amzn-RequestId","value":"0cb73793-f0dd-4438-829c-415c7155efcf"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P02kwF5hPHcF8_g="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d151-db105366d62996e40114bb32"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"9BdrvPsnb7WioJYWC4JtSltOW4weJHXSdPS6hO4PeZYYukvhSSSg5A=="}],"cookie":[],"responseTime":null,"body":"{    \n    \"success\": true,\n    \"data\": {},\n    \"status\": 200\n}"}],"_postman_id":"6bf428eb-e9ec-4406-9f0c-6633d15760dc"},{"name":"Cancel application","event":[{"listen":"test","script":{"exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});\r","pm.test(\"Success message\", function () {\r","    pm.expect(pm.response.text()).to.include(\"success\");\r","});"],"type":"text/javascript","id":"00f5642f-29df-44cd-9c04-4010fd705347"}}],"id":"6281d1e8-623f-4853-bba5-29a302825605","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"<p>(optional - ID generated by the client)</p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"reason\": \"Cancellation reason\"\r\n}"},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/cancel","description":"<h1 id=\"cancel-application\">Cancel Application</h1>\n<p>This endpoint cancels the application that is not funded and changes the application status to Withdrawn.</p>\n<h2 id=\"path-params\">PATH PARAMS</h2>\n<blockquote>\n<h2 id=\"applicationidstring\"><code>applicationId:string</code></h2>\n<ul>\n<li>Required</li>\n<li>ApplicationId is returned when calling the create application endpoint</li>\n</ul>\n</blockquote>\n<p><strong>Important:</strong></p>\n<p><em>This endpoint could be called just if the application has the status: Pending Sign Documents, Pending Delivery, or Complete.</em></p>\n<h1 id=\"request-object\">Request Object</h1>\n<blockquote>\n<h2 id=\"reasonstring\"><code>reason:string</code></h2>\n<ul>\n<li>Required</li>\n<li>Cancel reason</li>\n</ul>\n</blockquote>\n<h1 id=\"response-object\">Response Object</h1>\n<h2 id=\"datahash\"><code>data:hash</code></h2>\n<blockquote>\n<ul>\n<li>Empty value ( {} ) for successful responses.</li>\n</ul>\n</blockquote>\n<h2 id=\"successboolean\"><code>success:boolean</code></h2>\n<blockquote>\n<ul>\n<li>Value with the result of the request. Possible values are TRUE or FALSE</li>\n</ul>\n</blockquote>\n<h2 id=\"statusinteger\"><code>status:integer</code></h2>\n<blockquote>\n<ul>\n<li>Value with status code of the request. For example: 200, 400, 404</li>\n</ul>\n</blockquote>\n","urlObject":{"path":["platform","v1","application","{{applicationId}}","cancel"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"a0b7775c-6f2c-4da4-8fe6-41354d40f8b0","name":"Payment Required","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer pORU5GTWtNeE1UQkJPVE5DUl....JiWYvnmRQSSCozUr6Xt7RXRK","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123"}],"body":{"mode":"raw","raw":"{\r\n  \"reason\": \"Just testing\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api-sandbox.snapfinance.com/platform/v1/application/{{applicationId}}/cancel"},"status":"Payment Required","code":402,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"151"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:29:25 GMT"},{"key":"x-amzn-RequestId","value":"77c416aa-f789-4e69-a93c-17495af51014"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P027vEpuvHcFo3A="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d1e4-e3ee5d7f37aa94e31d23df69"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"pL1yn6tOUtAkDwobO--gyPVNysomUz0yDMCvY4E05pjbg273scoTJQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"status\": 402,\n    \"error\": [\n        {\n            \"type\": \"validation_error\",\n            \"message\": \"Application already in a canceled status\",\n            \"code\": \"application_canceled\"\n        }\n    ]\n}"},{"id":"0ebd3175-988a-41cf-8d23-ddae26bc9b7a","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123"}],"body":{"mode":"raw","raw":"{\r\n  \"reason\": \"Just testing\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/cancel"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"39"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:29:58 GMT"},{"key":"x-amzn-RequestId","value":"199232de-ba00-41d0-a06c-e24528b078bd"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P03A7HF7vHcFxFw="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d205-2e6265be9b369c6c0d906ec8"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"f7vbn4H0wim_lwjCA-23_AoRofr_dvM5Fl3yCcUSLEfkg3eK6wtkzQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {},\n    \"status\": 200\n}"},{"id":"9e67b980-646c-44a1-b779-179c63f105c8","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123"}],"body":{"mode":"raw","raw":"{\r\n  \"reason\": \"Just testing\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/application/{{applicationId}}/cancel"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"39"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:29:58 GMT"},{"key":"x-amzn-RequestId","value":"199232de-ba00-41d0-a06c-e24528b078bd"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P03A7HF7vHcFxFw="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d205-2e6265be9b369c6c0d906ec8"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"f7vbn4H0wim_lwjCA-23_AoRofr_dvM5Fl3yCcUSLEfkg3eK6wtkzQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {},\n    \"status\": 200\n}"},{"id":"43f390ec-5c84-47fc-8c06-d8638ad72e37","name":"Payment Required","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer pORU5GTWtNeE1UQkJPVE5DUl....JiWYvnmRQSSCozUr6Xt7RXRK","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123"}],"body":{"mode":"raw","raw":"{\r\n  \"reason\": \"Just testing\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api-sandbox.snapfinance.com/platform/v1/application/{{applicationId}}/cancel"},"status":"Payment Required","code":402,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"151"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 16:29:25 GMT"},{"key":"x-amzn-RequestId","value":"77c416aa-f789-4e69-a93c-17495af51014"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P027vEpuvHcFo3A="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11d1e4-e3ee5d7f37aa94e31d23df69"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 4147caa9bd44f24d893d2277818f3b16.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"pL1yn6tOUtAkDwobO--gyPVNysomUz0yDMCvY4E05pjbg273scoTJQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"status\": 402,\n    \"error\": [\n        {\n            \"type\": \"validation_error\",\n            \"message\": \"Application already in a canceled status\",\n            \"code\": \"application_canceled\"\n        }\n    ]\n}"}],"_postman_id":"6281d1e8-623f-4853-bba5-29a302825605"},{"name":"Send verification code","event":[{"listen":"test","script":{"exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);       \r","});\r","\r","pm.test(\"Check response body\", function () {\r","    var jsonData = pm.response.json();\r","    pm.expect(jsonData.success).to.eql(true);\r","    pm.expect(jsonData.status).to.eql(200);\r","    pm.expect(pm.response.text()).to.include(\"verificationResourceId\");\r","});\r","\r","pm.test(\"Set the verificationResourceId\", function () {\r","    var jsonData = pm.response.json();\r","    pm.environment.set(\"verificationResourceId\", jsonData.data.verificationResourceId);\r","});"],"type":"text/javascript","id":"2d29db42-c739-4803-b07e-e70de0038b60"}}],"id":"cc36d190-a452-4bdf-9599-2a96eee77e31","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"<p>(optional - ID generated by the client)</p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"channel\": \"SMS\",\n    \"recipient\": \"8995014900\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/verification","description":"<h1 id=\"send-verification-code\">Send Verification Code</h1>\n<p>This endpoint sends the customer verification code to specified channel.</p>\n<h1 id=\"request-object\">Request Object</h1>\n<blockquote>\n<h2 id=\"channelstring\"><code>channel:string</code></h2>\n<ul>\n<li>Required</li>\n<li>Defines the channel to send the verification code. Allowed values are SMS and EMAIL</li>\n</ul>\n</blockquote>\n<blockquote>\n<h2 id=\"recipientstring\"><code>recipient:string</code></h2>\n<ul>\n<li>Required</li>\n<li>Defines the recipient. Valid phone number or valid email</li>\n</ul>\n</blockquote>\n<h1 id=\"response-object\">Response Object</h1>\n<h2 id=\"datahash\"><code>data:hash</code></h2>\n<blockquote>\n<h4 id=\"verificationresourceidstring\"><code>verificationResourceId:string</code></h4>\n<ul>\n<li>ID generated when sending the code</li>\n</ul>\n</blockquote>\n<h2 id=\"successboolean\"><code>success:boolean</code></h2>\n<blockquote>\n<ul>\n<li>Value with the result of the request. Possible values are TRUE or FALSE</li>\n</ul>\n</blockquote>\n<h2 id=\"statusinteger\"><code>status:integer</code></h2>\n<blockquote>\n<ul>\n<li>Value with status code of the request. For example: 200, 400, 404</li>\n</ul>\n</blockquote>\n","urlObject":{"path":["platform","v1","verification"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"25c824ad-2ee8-446f-8c0b-afabd82d6c01","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer pORU5GTWtNeE1UQkJPVE5DUl....JiWYvnmRQSSCozUr6Xt7RXRK","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123","disabled":true}],"body":{"mode":"raw","raw":"{\n    \"channel\": \"SM\",\n    \"recipient\": \"8995014900\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api-sandbox.snapfinance.com/platform/v1/verification"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"145"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 14:01:47 GMT"},{"key":"x-amzn-RequestId","value":"5dd1edde-4f1b-400b-990f-e5e905c0e139"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P0hTyGIRPHcFvqg="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11af4b-2f9b161e7dcc01419ae11a30"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 9c1e51085ad77fbbab78fe2feb46cf98.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"Are2v91iZHxd0dM57t9bjElcdzRLoRw0tpJhp-JNg41y_21p4CjiEA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,    \n    \"error\": [\n        {\n            \"code\": \"channel_invalid\",\n            \"type\": \"validation_error\",\n            \"message\": \"Channel is invalid, allowed values: SMS\"\n        }\n    ],\n    \"status\": 400\n}"},{"id":"e24d0cc4-10be-41d4-97dd-38f259692522","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123","disabled":true}],"body":{"mode":"raw","raw":"{\n    \"channel\": \"SMS\",\n    \"recipient\": \"8995014900\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/verification"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"130"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 14:01:26 GMT"},{"key":"x-amzn-RequestId","value":"025c2aae-41bd-4354-9cc7-b27c86b808a3"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P0hQTE49PHcF6CQ="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11af35-71eb5a455d6916a4a770b6c7"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 9c1e51085ad77fbbab78fe2feb46cf98.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"c3jkDwbniXPByQivU6SIIYTGeXf06gG8KZClzDJJfA1lnZYLTakPjw=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"verificationResourceId\": \"{{verificationResourceId}}\"\n    },\n    \"status\": 200\n}"},{"id":"e23d609e-1c46-4399-90d5-14fa269781e1","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer pORU5GTWtNeE1UQkJPVE5DUl....JiWYvnmRQSSCozUr6Xt7RXRK","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123","disabled":true}],"body":{"mode":"raw","raw":"{\n    \"channel\": \"SM\",\n    \"recipient\": \"8995014900\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api-sandbox.snapfinance.com/platform/v1/verification"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"145"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 14:01:47 GMT"},{"key":"x-amzn-RequestId","value":"5dd1edde-4f1b-400b-990f-e5e905c0e139"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P0hTyGIRPHcFvqg="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11af4b-2f9b161e7dcc01419ae11a30"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 9c1e51085ad77fbbab78fe2feb46cf98.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"Are2v91iZHxd0dM57t9bjElcdzRLoRw0tpJhp-JNg41y_21p4CjiEA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,    \n    \"error\": [\n        {\n            \"code\": \"channel_invalid\",\n            \"type\": \"validation_error\",\n            \"message\": \"Channel is invalid, allowed values: SMS\"\n        }\n    ],\n    \"status\": 400\n}"},{"id":"e52cb95d-d641-4a5b-84f8-c6c906ed77c6","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123","disabled":true}],"body":{"mode":"raw","raw":"{\n    \"channel\": \"SMS\",\n    \"recipient\": \"8995014900\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/verification"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"130"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 14:01:26 GMT"},{"key":"x-amzn-RequestId","value":"025c2aae-41bd-4354-9cc7-b27c86b808a3"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P0hQTE49PHcF6CQ="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11af35-71eb5a455d6916a4a770b6c7"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 9c1e51085ad77fbbab78fe2feb46cf98.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"c3jkDwbniXPByQivU6SIIYTGeXf06gG8KZClzDJJfA1lnZYLTakPjw=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"verificationResourceId\": \"{{verificationResourceId}}\"\n    },\n    \"status\": 200\n}"}],"_postman_id":"cc36d190-a452-4bdf-9599-2a96eee77e31"},{"name":"Check verification code","event":[{"listen":"test","script":{"exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);       \r","});\r","\r","pm.test(\"Check response body\", function () {\r","    var jsonData = pm.response.json();\r","    pm.expect(jsonData.success).to.eql(true);\r","    pm.expect(jsonData.status).to.eql(200);\r","    pm.expect(jsonData.data.status).to.eql(\"VALID\");\r","});"],"type":"text/javascript","id":"dc1f6dfa-36f8-4f3c-8d81-3f12dabb5da0"}}],"id":"21adfb73-a322-424a-a9fe-584712cbe86f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"<p>(optional - ID generated by the client)</p>\n","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"verificationCode\": \"111111\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/verification/{{verificationResourceId}}/check","description":"<h1 id=\"check-verification-code\">Check Verification Code</h1>\n<p>This endpoint checks the verification code sent to a specified channel.</p>\n<h2 id=\"path-params\">PATH PARAMS</h2>\n<blockquote>\n<h2 id=\"verificationresourceidstring\"><code>verificationResourceId:string</code></h2>\n<ul>\n<li>Required</li>\n<li>verificationResourceId is returned when calling the send the verification code</li>\n</ul>\n</blockquote>\n<h1 id=\"request-object\">Request Object</h1>\n<blockquote>\n<h2 id=\"verificationcodestring\"><code>verificationCode:string</code></h2>\n<ul>\n<li>Required</li>\n<li>Verification code sent by the API. String with six characters.</li>\n</ul>\n</blockquote>\n<h1 id=\"response-object\">Response Object</h1>\n<h2 id=\"datahash\"><code>data:hash</code></h2>\n<blockquote>\n<h4 id=\"statusstring\"><code>status:string</code></h4>\n<ul>\n<li>Status of the request. Possible values are VALID or INVALID</li>\n</ul>\n</blockquote>\n<h2 id=\"successboolean\"><code>success:boolean</code></h2>\n<blockquote>\n<ul>\n<li>Value with the result of the request. Possible values are TRUE or FALSE</li>\n</ul>\n</blockquote>\n<h2 id=\"statusinteger\"><code>status:integer</code></h2>\n<blockquote>\n<ul>\n<li>Value with status code of the request. For example: 200, 400, 404</li>\n</ul>\n</blockquote>\n","urlObject":{"path":["platform","v1","verification","{{verificationResourceId}}","check"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"ee72a57d-6dec-4885-b04c-6dbd0787338d","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer pORU5GTWtNeE1UQkJPVE5DUl....JiWYvnmRQSSCozUr6Xt7RXRK","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123","disabled":true}],"body":{"mode":"raw","raw":"{\n    \"verificationCode\": \"111\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api-sandbox.snapfinance.com/platform/v1/verification/6f9df6d...6526ddcdf/check"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"171"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 14:02:36 GMT"},{"key":"x-amzn-RequestId","value":"9a49906c-4bdd-4ed1-954a-add21bce905b"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P0hbcFltvHcF1rQ="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11af7c-b7fed7fa8e462109908a2cba"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 9c1e51085ad77fbbab78fe2feb46cf98.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"LjzSbNbtEPjXBwxAj9bJx24LWoFijUJMdpmvV6GzfDcRL9Tm5JvZlg=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,    \n    \"error\": [\n        {\n            \"code\": \"verificationResourceId_invalid\",\n            \"type\": \"validation_error\",\n            \"message\": \"Verification resource id is null, empty or invalid\"\n        }\n    ],\n    \"status\": 400\n}"},{"id":"e8f90955-ae20-4206-8dfc-5ca012cce540","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123","disabled":true}],"body":{"mode":"raw","raw":"{\n    \"verificationCode\": \"111\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/verification/{{verificationResourceId}}/check"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"55"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 14:02:10 GMT"},{"key":"x-amzn-RequestId","value":"733f9c45-6751-4271-8b66-7995fcc2a0d1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P0hXTH_7PHcFl8A="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11af61-0f3ab03c826d986e7e24c7fc"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 9c1e51085ad77fbbab78fe2feb46cf98.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"IzpbGYZW-mmNs-SnGV-rT7iBzjplPcs_lt_jgwMjOxgvsD1Lq0Gq6g=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"status\": \"VALID\"\n    },\n    \"status\": 200\n}"},{"id":"3ee716b0-e65f-4001-b4d1-656f250e2464","name":"Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer pORU5GTWtNeE1UQkJPVE5DUl....JiWYvnmRQSSCozUr6Xt7RXRK","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123","disabled":true}],"body":{"mode":"raw","raw":"{\n    \"verificationCode\": \"111\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api-sandbox.snapfinance.com/platform/v1/verification/6f9df6d...6526ddcdf/check"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"171"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 14:02:36 GMT"},{"key":"x-amzn-RequestId","value":"9a49906c-4bdd-4ed1-954a-add21bce905b"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P0hbcFltvHcF1rQ="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11af7c-b7fed7fa8e462109908a2cba"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 9c1e51085ad77fbbab78fe2feb46cf98.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"LjzSbNbtEPjXBwxAj9bJx24LWoFijUJMdpmvV6GzfDcRL9Tm5JvZlg=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,    \n    \"error\": [\n        {\n            \"code\": \"verificationResourceId_invalid\",\n            \"type\": \"validation_error\",\n            \"message\": \"Verification resource id is null, empty or invalid\"\n        }\n    ],\n    \"status\": 400\n}"},{"id":"5019c9c5-fb50-4f5e-b7c7-5c9b410d5a00","name":"OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade","type":"text"},{"key":"Authorization","value":"Bearer {{bearerToken}}","type":"text"},{"key":"Request-id","value":"","description":"(optional - ID generated by the client)","type":"text"},{"key":"Request-Id","value":"123","disabled":true}],"body":{"mode":"raw","raw":"{\n    \"verificationCode\": \"111\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/verification/{{verificationResourceId}}/check"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"55"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 17 Jul 2020 14:02:10 GMT"},{"key":"x-amzn-RequestId","value":"733f9c45-6751-4271-8b66-7995fcc2a0d1"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubdomains; preload"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Security-Policy","value":"default-src none; img-src self; script-src self; style-src self; object-src none"},{"key":"x-amz-apigw-id","value":"P0hXTH_7PHcFl8A="},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Amzn-Trace-Id","value":"Root=1-5f11af61-0f3ab03c826d986e7e24c7fc"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 9c1e51085ad77fbbab78fe2feb46cf98.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MIA3-C2"},{"key":"X-Amz-Cf-Id","value":"IzpbGYZW-mmNs-SnGV-rT7iBzjplPcs_lt_jgwMjOxgvsD1Lq0Gq6g=="}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"data\": {\n        \"status\": \"VALID\"\n    },\n    \"status\": 200\n}"}],"_postman_id":"21adfb73-a322-424a-a9fe-584712cbe86f"},{"name":"Send SMS Link","event":[{"listen":"test","script":{"exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});"],"type":"text/javascript","id":"d253b20f-1649-4dd4-802d-a14477b5f77f"}}],"id":"62edf2da-0606-4ab1-a8e8-232ecc49abd9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{accessToken}}","type":"text"},{"key":"x-snap-api-version","value":"v1","type":"text"},{"key":"correlation-id","value":"22466724-18b4-4d57-8a77-7e4880437538","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"phoneNumber\": \"1234567890\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/sms-link","description":"<p>Send SMS link to customer's phone number. This endpoint allows partners to send an SMS with a link to start the application process.</p>\n","urlObject":{"path":["platform","v1","sms-link"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"e1ef7dbc-a085-4196-9074-66793c107ab4","name":"Success Response","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"phoneNumber\": \"1234567890\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/platform/v1/sms-link"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"SMS sent successfully\"\n}"}],"_postman_id":"62edf2da-0606-4ab1-a8e8-232ecc49abd9"}],"id":"d4f8fefc-6667-41ac-b43b-911a2daabcd8","_postman_id":"d4f8fefc-6667-41ac-b43b-911a2daabcd8","description":""}],"id":"6fb2c349-88ce-4b9b-803d-16f50f2b2bf3","_postman_id":"6fb2c349-88ce-4b9b-803d-16f50f2b2bf3","description":""}],"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"6c94551f-d3e2-49c9-bd6a-d733bd985905"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"46bba71a-560f-43f9-b73a-1844d6dba96a"}}]}